-
Notifications
You must be signed in to change notification settings - Fork 470
/
Copy pathmain(greasyfork).user.js
364 lines (308 loc) · 12.7 KB
/
main(greasyfork).user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
// ==UserScript==
// @name GitHub 中文化插件
// @namespace https://github.com/maboloshi/github-chinese
// @description 中文化 GitHub 界面的部分菜单及内容。原作者为楼教主(http://www.52cik.com/)。
// @copyright 2021, 沙漠之子 (https://maboloshi.github.io/Blog)
// @icon https://github.githubassets.com/pinned-octocat.svg
// @version 1.7.3
// @author 沙漠之子
// @license GPL-3.0
// @match https://github.com/*
// @match https://gist.github.com/*
// @require https://greasyfork.org/scripts/435207-github-%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6-%E4%B8%AD%E6%96%87%E8%AF%8D%E5%BA%93%E8%A7%84%E5%88%99/code/GitHub%20%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6%20-%20%E4%B8%AD%E6%96%87%E8%AF%8D%E5%BA%93%E8%A7%84%E5%88%99.js?v1.7.3
// @run-at document-end
// @grant GM_xmlhttpRequest
// @connect www.githubs.cn
// ==/UserScript==
(function (window, document, undefined) {
'use strict';
var lang = 'zh'; // 中文
// 要翻译的页面
var page = getPage();
transTitle(); // 页面标题翻译
traverseNode(document.body); // 立即翻译页面
watchUpdate();
// 翻译描述
translateDesc(".f4.my-3"); //仓库简介翻译
translateDesc(".gist-content [itemprop='about']"); // Gist 简介翻译
/**
* 监听节点变化, 触发和调用翻译函数
*
* 2021-10-07 11:28:30
* 使用原生API 代替 jQuery 的 `ajaxComplete`函数
*/
function watchUpdate() {
const m =
window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver;
var currentPath = location.pathname;
new m(function (mutations) {
/**
* 仅翻译变更部分 不在全局匹配
*
* 且仅监听:
* 1. 节点增加
* 2. 节点属性的变化
*
* 2021-10-10 15:24:49
* 遍历节点 函数 walk 需相应打2个补丁 适配
* */
if(location.pathname !== currentPath) {
currentPath = location.pathname;
page = getPage(); // 仅当,页面地址发生变化时运行
}
for(let mutation of mutations) { // for速度比forEach快
if (mutation.addedNodes || mutation.type === 'attributes') { // 仅当节点增加 或者属性更改
traverseNode(mutation.target);
}
}
}).observe(document.body, {
subtree: true,
characterData: true,
childList: true,
attributeFilter: ['value', 'placeholder', 'aria-label', 'data', 'data-confirm'], // 仅观察特定属性变化(试验测试阶段,有问题再恢复)
});
new m(function(mutations) {
transTitle();
}).observe(
document.querySelector('title'),
{ characterData: true, childList: true }
);
}
/**
* 遍历节点
*
* @param {Element} node 节点
*/
function traverseNode(node) {
// 跳过忽略
if (I18N.conf.reIgnoreId.test(node.id) ||
I18N.conf.reIgnoreClass.test(node.className) ||
I18N.conf.reIgnoreTag.test(node.tagName) ||
(node.getAttribute && I18N.conf.reIgnoreItemprop.test(node.getAttribute("itemprop")))
) {
return;
}
var nodes = node.childNodes;
for (var i = 0, len = nodes.length; i <= len; i++) { // 遍历节点
var el = nodes[i] ? nodes[i] : node; //可能还要优化 该节点不存在子节点
// todo 1. 修复多属性翻译问题; 2. 添加事件翻译, 如论预览信息;
if (el.nodeType === Node.ELEMENT_NODE) { // 元素节点处理
// 元素节点属性翻译
if (el.tagName === 'INPUT' || el.tagName === 'TEXTAREA') { // 输入框 按钮 文本域
if (el.type === 'button' || el.type === 'submit') {
transElement(el, 'value');
} else {
transElement(el, 'placeholder');
}
} else if (el.hasAttribute('aria-label')) { // 带提示的元素,类似 tooltip 效果的
transElement(el, 'aria-label', true);
if (el.hasAttribute('data-copy-feedback')) { // 复制成功提示
transElement(el,'data-copy-feedback',true );
}
if (el.hasAttribute('data-confirm')) { // 翻译 浏览器 提示对话框
transElement(el, 'data-confirm', true);
}
} else if (el.tagName === 'BUTTON' && el.hasAttribute('data-confirm')) {
transElement(el, 'data-confirm', true); // 翻译 浏览器 提示对话框
} else if (el.tagName === 'BUTTON' && el.hasAttribute('data-confirm-cancel-text')) {
transElement(el, 'data-confirm-cancel-text', true); // 取消按钮 提醒
} else if (el.hasAttribute('cancel-confirm-text')) {
transElement(el, 'cancel-confirm-text', true); // 取消按钮 提醒
} else if (el.tagName === 'OPTGROUP') { // 翻译 <optgroup> 的 label 属性
transElement(el, 'label');
}
if (el.hasAttribute('data-disable-with')) { // 按钮等待提示
transElement(el.dataset, 'disableWith');
}
if (el != node) {
traverseNode(el); // 遍历子节点
}
} else if (el.nodeType === Node.TEXT_NODE) { // 文本节点翻译
if (el.length <= 500){ // 修复 许可证编辑框初始化载入内容被翻译
transElement(el, 'data');
}
}
}
}
/**
* 获取翻译页面
*
* 2021-10-07 11:48:50
* 参考 v2.0 中规则
*/
function getPage() {
// 站点,如 gist, developer, help 等,默认主站是 github
const site = location.host.replace(/\.?github\.com$/, '') || 'github'; // 站点
const pathname = location.pathname; // 当前路径
const isLogin = /logged-in/.test(document.body.className); // 是否登录
// 用于确定 个人首页,组织首页,仓库页 然后做判断
const analyticsLocation = (document.getElementsByName('analytics-location')[0] || 0).content || '';
//const isProfile = analyticsLocation === '/<user-name>'; // 仅个人首页 其标签页识别不了 优先使用Class 过滤
// 如 maboloshi?tab=repositories 等
const isOrganization = /\/<org-login>/.test(analyticsLocation); // 组织页
const isRepository = /\/<user-name>\/<repo-name>/.test(analyticsLocation); // 仓库页
if (site === 'gist') { // Gist 站点
return 'gist';
}
if (pathname === '/' && site === 'github') { // github.com 首页
return isLogin ? 'page-dashboard' : 'homepage';
} //登录 或 未登录
// 仅个人首页 其标签页识别不了 优先使用 Class 过滤(/page-profile/)
// if (isProfile) { // 个人首页
// return 'page-profile';
// }
if (isRepository) { // 仓库页
let t = pathname.match(I18N.conf.rePagePathRepo);
return t ? 'repository/'+t[1] : 'repository';
}
if (isOrganization) { // 组织页
let t = pathname.match(I18N.conf.rePagePathOrg);
return t ? 'orgs/'+t[1] : 'orgs';
}
// 匹配 body 的 class
var page = document.body.className.match(I18N.conf.rePageClass);
if (!page) { // 扩展 pathname 匹配
page = pathname.match(I18N.conf.rePagePath);
}
return page ? page[1] : false; // 取页面 key
}
/**
* 翻译页面标题
*/
function transTitle() {
var title = translate(document.title, 'title');
if (title === false) { // 无翻译则退出
return false;
}
document.title = title;
}
/**
* 翻译节点对应属性内容
*
* @param {object} el 对象
* @param {string} field 属性字段
* @param {boolean} isAttr 是否是 attr 属性
*
* @returns {boolean}
*/
function transElement(el, field, isAttr) {
var transText = false; // 翻译后的文本
if (isAttr === undefined) { // 非属性翻译
transText = translate(el[field], page);
} else {
transText = translate(el.getAttribute(field), page);
}
if (transText === false) { // 无翻译则退出
return false;
}
// 替换翻译后的内容
if (isAttr === undefined) {
el[field] = transText;
} else {
el.setAttribute(field, transText);
}
}
/**
* 翻译文本
*
* @param {string} text 待翻译字符串
* @param {string} page 页面字段
*
* @returns {string|boolean}
*/
function translate(text, page) { // 翻译
if (!isNaN(text)) {
return false;
} // 内容为空, 空白字符和或数字 不翻译
var str;
var _key = text.trim(); // 去除首尾空格的 key
var _key_neat = _key
.replace(/\xa0/g, ' ') // 替换 空格导致的 bug
.replace(/\s{2,}/g, ' ') // 去除多余空白字符,(试验测试阶段,有问题再恢复)
.replace(/[\s\r\n]+/g, ' '); // 替换中间的换行符为空格; 后期正则翻译规则可以不用考虑换行符的问题了
if (page === 'title') {
return transPage('title', _key_neat);
} // 翻译网页标题
str = transPage('pubilc', _key_neat); // 公共翻译
if (str !== false && str !== _key_neat) { // 公共翻译完成
return text.replace(_key, str); // 替换原字符,保留空白部分
}
if (page === false) {
return false;
} // 未知页面不翻译
str = transPage(page, _key_neat); // 翻译已知页面
if (str === false || str === '') {
return false;
} // 未知内容不翻译
return text.replace(_key, str); // 替换原字符,保留空白部分
}
/**
* 翻译页面内容
*
* @param {string} page 页面
* @param {string} key 待翻译内容
* @param {boolean} isRegexp 是否仅翻译正则部分
*
* @returns {string|boolean}
*/
function transPage(page, key, isRegexp=false) {
var str; // 翻译结果
var res; // 正则数组
// 静态翻译
if (!isRegexp) {
str = I18N[lang][page]['static'][key];
if (typeof str === 'string') {
return str;
}
}
// 正则翻译
res = I18N[lang][page].regexp;
if (res) {
for (var i = 0, len = res.length; i < len; i++) {
str = key.replace(res[i][0], res[i][1]);
if (str !== key) {
return str;
}
}
}
return false; // 没有翻译条目
}
/**
* 翻译描述
*
* 2021-10-06 16:41:54
* 来自:k1995/github-i18n-plugin
* 改写为原生代码
*/
function translateDesc(el) {
let element = document.querySelector(el);
if (!element) {
return;
}
element.insertAdjacentHTML('afterend', "<a id='translate-me' href='#' style='color:rgb(27, 149, 224);font-size: small'>翻译</a>");
let translate_me = document.getElementById('translate-me')
translate_me.onclick = function() {
// get description text
const desc = element.textContent.trim();
if(!desc) {
return;
}
GM_xmlhttpRequest({
method: "GET",
url: `https://www.githubs.cn/translate?q=`+ encodeURIComponent(desc),
onload: function(res) {
if (res.status === 200) {
translate_me.style.display="none";
// render result
const text = res.responseText;
element.insertAdjacentHTML('afterend', "<span style='font-size: small'>由 <a target='_blank' style='color:rgb(27, 149, 224);' href='https://www.githubs.cn'>GitHub中文社区</a> 翻译👇</span><br/>"+text);
} else {
alert("翻译失败");
}
}
});
};
}
})(window, document);