Update translate.js

This commit is contained in:
2018-09-22 20:42:16 +08:00
parent 7c780a428d
commit 236f2addcd

View File

@@ -1,6 +1,6 @@
'use strict';
var systemLang = 'en';
var systemLang = 'cn';
var systemDictionary = {};
function translateWord(text, lang, dictionary) {
@@ -21,7 +21,7 @@ function translateWord(text, lang, dictionary) {
}
}
} else if (typeof text === 'string' && !text.match(/_tooltip$/)) {
console.log('"' + text + '": {"en": "' + text + '", "de": "' + text + '", "ru": "' + text + '", "pt": "' + text + '", "nl": "' + text + '", "fr": "' + text + '"},');
console.log('"' + text + '": {"en": "' + text + '", "cn": "' + text + '"},');
} else if (typeof text !== 'string') {
console.warn('Trying to translate non-text:' + text);
}