2021-02-24 10:37:17 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const DIR = '_locales/';
|
|
|
|
const RX_LNG_CODE = /^\w\w(_\w{2,3})?$/; // like `en` or `en_GB`
|
|
|
|
|
|
|
|
const makeFileName = lng => `${DIR}${lng}/messages.json`;
|
2022-09-16 09:47:37 +00:00
|
|
|
const readLngJson = lng => JSON.parse(fs.readFileSync(makeFileName(lng), 'utf8'));
|
2021-02-24 10:37:17 +00:00
|
|
|
const sortAlpha = ([a], [b]) => a < b ? -1 : a > b;
|
|
|
|
|
|
|
|
const src = readLngJson('en');
|
|
|
|
for (const val of Object.values(src)) {
|
|
|
|
const {placeholders} = val;
|
|
|
|
if (placeholders) {
|
|
|
|
const sorted = {};
|
|
|
|
for (const [k, v] of Object.entries(placeholders).sort(sortAlpha)) {
|
|
|
|
sorted[k] = v;
|
|
|
|
}
|
|
|
|
val.placeholders = sorted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let numTotal = 0;
|
|
|
|
let numFixed = 0;
|
|
|
|
|
|
|
|
for (const /**@type Dirent*/ entry of fs.readdirSync(DIR, {withFileTypes: true})) {
|
|
|
|
const lng = entry.name;
|
|
|
|
if (lng !== 'en' && entry.isDirectory() && RX_LNG_CODE.test(lng)) {
|
|
|
|
numFixed += fixLngFile(lng) ? 1 : 0;
|
|
|
|
numTotal++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log(`${numFixed} files fixed out of ${numTotal}`);
|
|
|
|
|
|
|
|
function fixLngFile(lng) {
|
|
|
|
let numUnknown = 0;
|
|
|
|
let numUntranslated = 0;
|
|
|
|
let numVarsFixed = 0;
|
|
|
|
const json = readLngJson(lng);
|
|
|
|
const res = {};
|
|
|
|
for (const [key, val] of Object.entries(json).sort(sortAlpha)) {
|
|
|
|
const {placeholders, message} = src[key] || {};
|
|
|
|
if (!message) {
|
|
|
|
numUnknown++;
|
|
|
|
} else if (!val.message || val.message === message) {
|
|
|
|
numUntranslated++;
|
|
|
|
} else {
|
|
|
|
delete val.description;
|
|
|
|
if (placeholders && !val.placeholders) {
|
|
|
|
numVarsFixed++;
|
|
|
|
val.placeholders = placeholders;
|
|
|
|
}
|
|
|
|
res[key] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const jsonStr = JSON.stringify(json, null, 2);
|
|
|
|
const resStr = JSON.stringify(res, null, 2);
|
|
|
|
if (resStr !== jsonStr) {
|
|
|
|
let err;
|
|
|
|
if (resStr === '{}') {
|
2022-01-30 11:23:02 +00:00
|
|
|
fs.rmSync(`${DIR}${lng}`, {recursive: true, force: true});
|
2021-02-24 10:37:17 +00:00
|
|
|
err = 'no translations -> deleted';
|
|
|
|
} else {
|
2022-09-16 09:47:37 +00:00
|
|
|
fs.writeFileSync(makeFileName(lng), resStr + '\n', 'utf8');
|
2021-02-24 10:37:17 +00:00
|
|
|
err = [
|
|
|
|
numUnknown && `${numUnknown} unknown (dropped)`,
|
|
|
|
numUntranslated && `${numUntranslated} untranslated (dropped)`,
|
|
|
|
numVarsFixed && `${numVarsFixed} missing placeholders (restored)`,
|
|
|
|
].filter(Boolean).join(', ');
|
|
|
|
}
|
|
|
|
if (err) console.log(`${lng}: ${err}`);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|