Skip to content
Snippets Groups Projects
Unverified Commit 5a7e688e authored by Marcelo Schmidt's avatar Marcelo Schmidt
Browse files

Ignore ug and zh-HK

parent 3233ef0e
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,11 @@ googleTranslate.getSupportedLanguages(function(err, langs) {
if (file === 'en.i18n.json') { return callback(); }
var lang = file.replace('.i18n.json', '');
if (lang === 'ug' || lang === 'zh-HK') {
return callback();
}
var destContents = fs.readFileSync(path + file, 'utf-8');
var destJson = JSON.parse(destContents);
var toTranslate = {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment