angular-cn/public/resources/js/translate.js
Zhicheng Wang f9fe9094e4 增加误判的英文字符
重构名称
2016-05-13 15:37:56 +08:00

43 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(function () {
var nodes = document.querySelectorAll('p, li, h1, h2, h3, h4, h5, h6, header, a, button, small');
_.each(nodes, function (node) {
if (isTranslationResult(node)) {
var prevNode = node.previousElementSibling;
if (prevNode && isPureEnglish(prevNode.innerText) && !prevNode.classList.contains('nav-list-item')) {
if (location.hostname === 'localhost') {
prevNode.classList.add('original-english-debug');
} else {
prevNode.classList.add('original-english');
}
}
node.title = prevNode.innerText;
}
});
function isPureEnglish(text) {
return /^[\1-\255—]*$/.test(text);
}
function isClonedNode(node1, node2) {
return node1.parentNode === node2.parentNode && node1.tagName === node2.tagName && node1.className === node2.className;
}
function indexOf(node) {
var i = 0;
var aNode = node.parentNode.firstChild;
while (aNode !== node) {
++i;
if (aNode.tagName !== node.tagName) {
i = 0;
}
aNode = aNode.nextElementSibling;
}
return i;
}
function isTranslationResult(node) {
var prevNode = node.previousElementSibling;
return indexOf(node) % 2 === 1 && prevNode && isClonedNode(node, prevNode) && isPureEnglish(prevNode.innerText);
}
})();