-
Notifications
You must be signed in to change notification settings - Fork 468
/
Copy pathmain_zh-TW.user.js
509 lines (444 loc) · 20.5 KB
/
main_zh-TW.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
// ==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.9.3-2025-01-26
// @author 沙漠之子
// @license GPL-3.0
// @match https://github.com/*
// @match https://skills.github.com/*
// @match https://gist.github.com/*
// @match https://education.github.com/*
// @match https://www.githubstatus.com/*
// @require https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/locals_zh-TW.js?v1.9.3-2025-01-26
// @run-at document-start
// @grant GM_xmlhttpRequest
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_registerMenuCommand
// @grant GM_unregisterMenuCommand
// @grant GM_notification
// @connect fanyi.iflyrec.com
// @supportURL https://github.com/maboloshi/github-chinese/issues
// ==/UserScript==
(function (window, document, undefined) {
'use strict';
const lang = 'zh-TW'; // 設置默認語言
let enable_RegExp = GM_getValue("enable_RegExp", 1),
page = false,
cachedPage = null,
characterData = null,
ignoreMutationSelectors = [],
ignoreSelectors = [],
tranSelectors = [],
regexpRules = [];
function updateConfig(page) {
if (cachedPage !== page && page) {
cachedPage = page;
const { characterDataPage, ignoreMutationSelectorPage, ignoreSelectorPage } = I18N.conf;
characterData = characterDataPage.includes(page);
// 忽略突變元素選擇器
ignoreMutationSelectors = ignoreMutationSelectorPage['*'].concat(ignoreMutationSelectorPage[page] || []);
// 忽略元素選擇器
ignoreSelectors = ignoreSelectorPage['*'].concat(ignoreSelectorPage[page] || []);
// 通過 CSS 選擇器翻譯的規則
tranSelectors = (I18N[lang][page]?.selector || []).concat(I18N[lang]['public'].selector || []);
// 正則詞條
regexpRules = (I18N[lang][page].regexp || []).concat(I18N[lang]['public'].regexp || []);
}
}
function initPage() {
const page = getPage();
updateConfig(page);
return page;
}
/**
* watchUpdate 函數:監視頁面變化,根據變化的節點進行翻譯
*/
function watchUpdate() {
// 檢測瀏覽器是否支持 MutationObserver
const MutationObserver =
window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver;
// 緩存當前頁面的 URL
let previousURL = location.href;
// 監聽 document.body 下 DOM 變化,用於處理節點變化
new MutationObserver(mutations => {
const currentURL = location.href;
// 如果頁面的 URL 發生變化
if (currentURL !== previousURL) {
previousURL = currentURL;
page = initPage();
console.log(`DOM變化觸發: 鏈接變化 page= ${page}`);
}
if (page) {
// 使用 mutations.flatMap 進行篩選突變:
// 1. 針對`節點增加`突變,後期叠代翻譯的對象調整為`addedNodes`中記錄的新增節點,而不是`target`,此舉大幅減少重復叠代翻譯
// 2. 對於其它`屬性`和特定頁面`文本節點`突變,仍舊直接處理`target`
// 3. 使用`nodes.filter()`篩選丟棄特定頁面`特定忽略元素`內突變的節點
const filteredMutations = mutations.flatMap(({ target, addedNodes, type }) => {
let nodes = [];
if (type === 'childList' && addedNodes.length > 0) {
nodes = Array.from(addedNodes); // `節點增加`,將`addedNodes`轉換為數組
} else if (type === 'attributes' || (characterData && type === 'characterData')) {
nodes = [target]; // 否則,僅處理目標節點
}
// 對每個節點進行篩選,忽略特定選擇器
return nodes.filter(node =>
!ignoreMutationSelectors.some(selector => node.parentElement?.closest(selector))
);
});
// 處理每個變化
filteredMutations.forEach(node => traverseNode(node));
}
}).observe(document.body, {
characterData: true,
subtree: true,
childList: true,
attributeFilter: ['value', 'placeholder', 'aria-label', 'data-confirm', 'data-visible-text'], // 僅觀察特定屬性變化
});
}
/**
* traverseNode 函數:遍歷指定的節點,並對節點進行翻譯。
* @param {Node} node - 需要遍歷的節點。
*/
function traverseNode(node) {
// 跳過忽略
const skipNode = node => ignoreSelectors.some(selector => node.matches?.(selector));
if (skipNode(node)) return;
if (node.nodeType === Node.ELEMENT_NODE) { // 元素節點處理
// 處理不同標簽的元素屬性翻譯
switch (node.tagName) {
case "RELATIVE-TIME": // 翻譯時間元素
transTimeElement(node.shadowRoot);
watchTimeElement(node.shadowRoot);
return;
case "INPUT":
case "TEXTAREA": // 輸入框 按鈕 文本域
if (['button', 'submit', 'reset'].includes(node.type)) {
transElement(node.dataset, 'confirm'); // 翻譯 瀏覽器 提示對話框
transElement(node, 'value');
} else {
transElement(node, 'placeholder');
}
break;
case "BUTTON":
if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel'); // 翻譯 瀏覽器 提示對話框
transElement(node, 'title'); // 翻譯 瀏覽器 提示對話框
transElement(node.dataset, 'confirm'); // 翻譯 瀏覽器 提示對話框 ok
transElement(node.dataset, 'confirmText'); // 翻譯 瀏覽器 提示對話框 ok
transElement(node.dataset, 'confirmCancelText'); // 取消按鈕 提醒
transElement(node, 'cancelConfirmText'); // 取消按鈕 提醒
transElement(node.dataset, 'disableWith'); // 按鈕等待提示
break;
case "OPTGROUP":
transElement(node, 'label'); // 翻譯 <optgroup> 的 label 屬性
break;
case "A":
transElement(node, 'title'); // title 屬性
transElement(node, 'ariaLabel'); // aria-label 屬性
break;
case "SPAN":
transElement(node, 'title'); // title 屬性
if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel');
transElement(node.dataset, 'visibleText'); // 按鈕提示
break;
default:
// 僅當 元素存在'tooltipped'樣式 aria-label 才起效果
if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel'); // 帶提示的元素,類似 tooltip 效果的
}
node.childNodes.forEach(child => traverseNode(child)); // 遍歷子節點
} else if (node.nodeType === Node.TEXT_NODE && node.length <= 500) { // 文本節點翻譯
transElement(node, 'data');
}
}
/**
* getPage 函數:獲取頁面的類型。
* @param {URL object} URL - 需要分析的 URL。
* @returns {string|boolean} 頁面的類型,如果無法確定類型,那麽返回 false。
*/
function getPage(url = window.location) {
// 站點映射
const siteMapping = {
'gist.github.com': 'gist',
'www.githubstatus.com': 'status',
'skills.github.com': 'skills',
'education.github.com': 'education',
};
const site = siteMapping[url.hostname] || 'github';
const pathname = url.pathname;
// 是否登錄
const isLogin = document.body.classList.contains("logged-in");
// 獲取 analytics-location
const analyticsLocation = document.head.querySelector('meta[name="analytics-location"]')?.content || '';
// 判斷頁面類型
const isOrganization = /\/<org-login>/.test(analyticsLocation) || /^\/(?:orgs|organizations)/.test(pathname);
const isRepository = /\/<user-name>\/<repo-name>/.test(analyticsLocation);
const isProfile = document.body.classList.contains("page-profile") || analyticsLocation === '/<user-name>';
const isSession = document.body.classList.contains("session-authentication");
const { rePagePathRepo, rePagePathOrg, rePagePath } = I18N.conf;
let t, page = false;
if (isSession) {
page = 'session-authentication';
} else if (site === 'gist' || site === 'status' || site === 'skills' || site === 'education') {
page = site;
} else if (isProfile) {
t = url.search.match(/tab=([^&]+)/);
page = t ? 'page-profile/' + t[1] : pathname.includes('/stars') ? 'page-profile/stars' : 'page-profile';
} else if (pathname === '/' && site === 'github') {
page = isLogin ? 'page-dashboard' : 'homepage';
} else if (isRepository) {
t = pathname.match(rePagePathRepo);
page = t ? 'repository/' + t[1] : 'repository';
} else if (isOrganization) {
t = pathname.match(rePagePathOrg);
page = t ? 'orgs/' + (t[1] || t.slice(-1)[0]) : 'orgs';
} else {
t = pathname.match(rePagePath);
page = t ? (t[1] || t.slice(-1)[0]) : false;
}
if (!page || !I18N[lang][page]) {
console.log(`請註意對應 page ${page} 詞庫節點不存在`);
page = false;
}
return page;
}
/**
* transTitle 函數:翻譯頁面標題
*/
function transTitle() {
const text = document.title; // 標題文本內容
let translatedText = I18N[lang]['title']['static'][text] || '';
if (!translatedText) {
const res = I18N[lang]['title'].regexp || [];
for (let [a, b] of res) {
translatedText = text.replace(a, b);
if (translatedText !== text) break;
}
}
document.title = translatedText;
}
/**
* transTimeElement 函數:翻譯時間元素文本內容。
* @param {Element} el - 需要翻譯的元素。
*/
function transTimeElement(el) {
const text = el.childNodes.length > 0 ? el.lastChild.textContent : el.textContent;
const translatedText = text.replace(/^on/, "");
if (translatedText !== text) {
el.textContent = translatedText;
}
}
/**
* watchTimeElement 函數:監視時間元素變化, 觸發和調用時間元素翻譯
* @param {Element} el - 需要監視的元素。
*/
function watchTimeElement(el) {
const MutationObserver =
window.MutationObserver ||
window.WebKitMutationObserver ||
window.MozMutationObserver;
new MutationObserver(mutations => {
transTimeElement(mutations[0].addedNodes[0]);
}).observe(el, {
childList: true
});
}
/**
* transElement 函數:翻譯指定元素的文本內容或屬性。
* @param {Element|DOMStringMap} el - 需要翻譯的元素或元素的數據集 (node.dataset)。
* @param {string} field - 需要翻譯的屬性名稱或文本內容字段。
*/
function transElement(el, field) {
const text = el[field]; // 獲取需要翻譯的文本
if (!text) return false; // 當 text 為空時,退出函數
const translatedText = transText(text); // 翻譯後的文本
if (translatedText) {
el[field] = translatedText; // 替換翻譯後的內容
}
}
/**
* transText 函數:翻譯文本內容。
* @param {string} text - 需要翻譯的文本內容。
* @returns {string|boolean} 翻譯後的文本內容,如果沒有找到對應的翻譯,那麽返回 false。
*/
function transText(text) {
// 判斷是否需要跳過翻譯
// 1. 檢查內容是否為空或者僅包含空白字符或數字。
// 2. 檢查內容是否僅包含中文字符。
// 3. 檢查內容是否不包含英文字母和符號。
const shouldSkip = text => /^[\s0-9]*$/.test(text) || /^[\u4e00-\u9fa5]+$/.test(text) || !/[a-zA-Z,.]/.test(text);
if (shouldSkip(text)) return false;
// 清理文本內容
const trimmedText = text.trim(); // 去除首尾空格
const cleanedText = trimmedText.replace(/\xa0|[\s]+/g, ' '); // 去除多余空白字符(包括 空格 換行符)
// 嘗試獲取翻譯結果
const translatedText = fetchTranslatedText(cleanedText);
// 如果找到翻譯並且不與清理後的文本相同,則返回替換後的結果
if (translatedText && translatedText !== cleanedText) {
return text.replace(trimmedText, translatedText); // 替換原字符,保留首尾空白部分
}
return false;
}
/**
* fetchTranslatedText 函數:從特定頁面的詞庫中獲得翻譯文本內容。
* @param {string} text - 需要翻譯的文本內容。
* @returns {string|boolean} 翻譯後的文本內容,如果沒有找到對應的翻譯,那麽返回 false。
*/
function fetchTranslatedText(text) {
// 靜態翻譯
let translatedText = I18N[lang][page]['static'][text] || I18N[lang]['public']['static'][text]; // 默認翻譯 公共部分
if (typeof translatedText === 'string') {
return translatedText;
}
// 正則翻譯
if (enable_RegExp) {
for (let [a, b] of regexpRules) {
translatedText = text.replace(a, b);
if (translatedText !== text) {
return translatedText;
}
}
}
return false; // 沒有翻譯條目
}
/**
* transDesc 函數:為指定的元素添加一個翻譯按鈕,並為該按鈕添加點擊事件。
* @param {string} selector - CSS選擇器,用於選擇需要添加翻譯按鈕的元素。
*/
function transDesc(selector) {
// 使用 CSS 選擇器選擇元素
const element = document.querySelector(selector);
// 如果元素不存在 或者 translate-me 元素已存在,那麽直接返回
if (!element || document.getElementById('translate-me')) return false;
// 在元素後面插入一個翻譯按鈕
const buttonHTML = `<div id='translate-me' style='color: rgb(27, 149, 224); font-size: small; cursor: pointer'>翻譯</div>`;
element.insertAdjacentHTML('afterend', buttonHTML);
const button = element.nextSibling;
// 為翻譯按鈕添加點擊事件
button.addEventListener('click', () => {
// 獲取元素的文本內容
const descText = element.textContent.trim();
// 如果文本內容為空,那麽直接返回
if (!descText) return false;
// 調用 transDescText 函數進行翻譯
transDescText(descText, translatedText => {
// 翻譯完成後,隱藏翻譯按鈕,並在元素後面插入翻譯結果
button.style.display = "none";
const translatedHTML = `<span style='font-size: small'>由 <a target='_blank' style='color:rgb(27, 149, 224);' href='https://fanyi.iflyrec.com/text-translate'>訊飛聽見</a> 翻譯👇</span><br/>${translatedText}`;
element.insertAdjacentHTML('afterend', translatedHTML);
});
});
}
/**
* transDescText 函數:將指定的文本發送到訊飛的翻譯服務進行翻譯。
* @param {string} text - 需要翻譯的文本。
* @param {function} callback - 翻譯完成後的回調函數,該函數接受一個參數,即翻譯後的文本。
*/
function transDescText(text, callback) {
// 使用 GM_xmlhttpRequest 函數發送 HTTP 請求
GM_xmlhttpRequest({
method: "POST", // 請求方法為 POST
url: "https://fanyi.iflyrec.com/TJHZTranslationService/v2/textAutoTranslation", // 請求的 URL
headers: { // 請求頭
'Content-Type': 'application/json',
'Origin': 'https://fanyi.iflyrec.com',
},
data: JSON.stringify({
"from": 2,
"to": 1,
"type": 1,
"contents": [{
"text": text
}]
}), // 請求的數據
responseType: "json", // 響應的數據類型為 JSON
onload: (res) => {
try {
const { status, response } = res;
const translatedText = (status === 200) ? response.biz[0].sectionResult[0].dst : "翻譯失敗";
callback(translatedText);
} catch (error) {
console.error('翻譯失敗', error);
callback("翻譯失敗");
}
},
onerror: (error) => {
console.error('網絡請求失敗', error);
callback("網絡請求失敗");
}
});
}
/**
* transBySelector 函數:通過 CSS 選擇器找到頁面上的元素,並將其文本內容替換為預定義的翻譯。
*/
function transBySelector() {
if (tranSelectors.length > 0) {
// 遍歷每個翻譯規則
for (let [selector, translatedText] of tranSelectors) {
// 使用 CSS 選擇器找到對應的元素
const element = document.querySelector(selector);
// 如果找到了元素,那麽將其文本內容替換為翻譯後的文本
if (element) {
element.textContent = translatedText;
}
}
}
}
/**
* registerMenuCommand 函數:註冊菜單。
*/
function registerMenuCommand() {
const toggleRegExp = () => {
enable_RegExp = !enable_RegExp;
GM_setValue("enable_RegExp", enable_RegExp);
GM_notification(`已${enable_RegExp ? '開啟' : '關閉'}正則功能`);
if (enable_RegExp) {
location.reload();
}
GM_unregisterMenuCommand(id);
id = GM_registerMenuCommand(`${enable_RegExp ? '關閉' : '開啟'}正則功能`, toggleRegExp);
};
let id = GM_registerMenuCommand(`${enable_RegExp ? '關閉' : '開啟'}正則功能`, toggleRegExp);
}
/**
* init 函數:初始化翻譯功能。
*/
function init() {
// 獲取當前頁面的翻譯規則
page = initPage();
console.log(`開始page= ${page}`);
if (page) traverseNode(document.body);
// 監視頁面變化
watchUpdate();
}
// 設置中文環境
document.documentElement.lang = lang;
// 監測 HTML Lang 值, 設置中文環境
new MutationObserver(mutations => {
if (document.documentElement.lang === "en") {
document.documentElement.lang = lang;
}
}).observe(document.documentElement, {
attributeFilter: ['lang']
});
// 監聽 Turbo 完成事件
document.addEventListener('turbo:load', () => {
if (page) {
transTitle(); // 翻譯頁面標題
transBySelector();
if (page === "repository") { //倉庫簡介翻譯
transDesc(".f4.my-3");
} else if (page === "gist") { // Gist 簡介翻譯
transDesc(".gist-content [itemprop='about']");
}
}
});
// 初始化菜單
registerMenuCommand();
// 在頁面初始加載完成時執行
window.addEventListener('DOMContentLoaded', init);
})(window, document);