scratch-blocks/i18n/create_scratch_msgs.js
chrisgarrity 8db6469cb5 Check for additional placeholders in translations
validation didn’t check for extra placeholders if there were none in the original.
2018-07-19 14:02:20 -04:00

69 lines
2.3 KiB
JavaScript

const fs = require('fs');
const path = require('path');
const glob = require('glob');
const assert = require('assert');
// Globals
const PATH_INPUT = path.resolve(__dirname, '../msg/json/*.json');
const PATH_OUTPUT = path.resolve(__dirname, '../msg');
let en = fs.readFileSync(path.resolve(__dirname, '../msg/json/en.json'));
en = JSON.parse(en);
const enKeys = Object.keys(en).sort().toString();
// Check that translation is valid:
// entry: array [key, translation] corresponding to a single string from <locale>.json
// - messages with placeholders have the same number of placeholders
// - messages must not have newlines embedded
const validateEntry = function (entry) {
const re = /(%\d)/g;
const [key, translation] = entry;
const enMatch = en[key].match(re);
const tMatch = translation.match(re);
const enCount = enMatch ? enMatch.length : 0;
const tCount = tMatch ? tMatch.length : 0;
assert.strictEqual(tCount, enCount, `${key}:${en[key]} - "${translation}" placeholder mismatch`);
if (enCount > 0) {
assert.notStrictEqual(tMatch, null, `${key} is missing a placeholder: ${translation}`);
assert.strictEqual(
tMatch.sort().toString(),
enMatch.sort().toString(),
`${key} is missing or has duplicate placeholders: ${translation}`
);
}
assert.strictEqual(translation.match(/[\n]/), null, `${key} contains a newline character ${translation}`);
};
const validate = function (json, name) {
assert.strictEqual(Object.keys(json).sort().toString(), enKeys, `${name}: Locale json keys do not match en.json`);
Object.entries(json).forEach(validateEntry);
};
let file = `// This file was automatically generated. Do not modify.
'use strict';
goog.provide('Blockly.ScratchMsgs.allLocales');
goog.require('Blockly.ScratchMsgs');
`;
let files = glob.sync(PATH_INPUT);
files.forEach(function (uri) {
const name = path.parse(uri).name;
if (name !== 'qqq' && name !== 'synonyms') {
let body = fs.readFileSync(uri);
// Convert file body into an object (let this throw if invalid JSON)
body = JSON.parse(body);
validate(body, name);
file += '\n';
file += `Blockly.ScratchMsgs.locales["${name}"] =\n`;
file += JSON.stringify(body, null, 4);
file += ';\n';
}
});
// write combined file
fs.writeFileSync(`${PATH_OUTPUT}/scratch_msgs.js`, file);