You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.8 KiB
JavaScript
128 lines
2.8 KiB
JavaScript
var EN = require("../www/common/translations/messages.json");
|
|
|
|
var simpleTags = [
|
|
'<br>',
|
|
'<a href="/login/">',
|
|
'<a href="/register/">',
|
|
|
|
// FIXME
|
|
"<a href='#'>",
|
|
'<a href="#docs">',
|
|
'<h3>',
|
|
'</h3>',
|
|
|
|
// FIXME register_notes
|
|
'<ul class="cp-notes-list">',
|
|
'</ul>',
|
|
'<li>',
|
|
'</li>',
|
|
'<span class="red">',
|
|
'</span>',
|
|
];
|
|
|
|
['a', 'b', 'em', 'p', 'i'].forEach(function (tag) {
|
|
simpleTags.push('<' + tag + '>');
|
|
simpleTags.push('</' + tag + '>');
|
|
});
|
|
|
|
// these keys are known to be problematic
|
|
var KNOWN_ISSUES = [ // FIXME
|
|
//'newVersion',
|
|
//'fm_info_anonymous',
|
|
//'register_notes',
|
|
];
|
|
|
|
var special_rules = {};
|
|
|
|
special_rules.en = function (s) {
|
|
// Prefer the american -ize suffix for verbs rather than -ise
|
|
return /[^w]ise/.test(s);
|
|
};
|
|
|
|
special_rules.fr = function (s) {
|
|
/*
|
|
hacky regexp to check whether there are any instances of ':'
|
|
which do not have the preceding space as is expected.
|
|
ignore instances where the following character is a '/'
|
|
because this is probably a URL (http(s)://)
|
|
*/
|
|
return /\S[:;\?\!][^\/]{1,}/.test(s);
|
|
};
|
|
|
|
var noop = function () {};
|
|
|
|
var processLang = function (map, lang, primary) {
|
|
var announced = false;
|
|
var announce = function () {
|
|
if (announced) { return; }
|
|
announced = true;
|
|
console.log("NEXT LANGUAGE: ", lang);
|
|
};
|
|
|
|
var special = special_rules[lang] || noop;
|
|
Object.keys(map).forEach(function (k) {
|
|
if (!EN[k]) { return; }
|
|
if (KNOWN_ISSUES.indexOf(k) !== -1) { return; }
|
|
|
|
var s = map[k];
|
|
if (typeof(s) !== 'string') { return; }
|
|
var usesHTML;
|
|
|
|
s.replace(/<.*?>/g, function (html) {
|
|
if (simpleTags.indexOf(html) !== -1) { return; }
|
|
announce();
|
|
usesHTML = true;
|
|
if (!primary) {
|
|
console.log("{%s}", html);
|
|
}
|
|
});
|
|
|
|
var weirdCapitalization;
|
|
s.replace(/cryptpad(\.fr)*/gi, function (brand) {
|
|
if (['CryptPad', 'cryptpad.fr'].includes(brand)) { return; }
|
|
weirdCapitalization = true;
|
|
});
|
|
|
|
var specialViolation = special(s);
|
|
|
|
if (usesHTML || weirdCapitalization || specialViolation) {
|
|
announce();
|
|
console.log("%s", s);
|
|
console.log("[%s]\n", k);
|
|
}
|
|
});
|
|
};
|
|
|
|
processLang(EN, 'en', true);
|
|
|
|
[
|
|
'ar',
|
|
//'bn_BD',
|
|
'ca',
|
|
'de',
|
|
'es',
|
|
'fi',
|
|
'fr',
|
|
'hi',
|
|
'it',
|
|
'ja',
|
|
'nb',
|
|
'nl',
|
|
'pl',
|
|
'pt-br',
|
|
'ro',
|
|
'ru',
|
|
'sv',
|
|
//'te',
|
|
'tr',
|
|
'zh',
|
|
].forEach(function (lang) {
|
|
try {
|
|
var map = require("../www/common/translations/messages." + lang + ".json");
|
|
if (!Object.keys(map).length) { return; }
|
|
processLang(map, lang);
|
|
} catch (err) {
|
|
console.error(err);
|
|
}
|
|
});
|