Add script to prune unused translations
This commit is contained in:
parent
17c610559f
commit
8a9de7343c
2 changed files with 59 additions and 1 deletions
|
@ -29,12 +29,14 @@
|
||||||
],
|
],
|
||||||
"bin": {
|
"bin": {
|
||||||
"reskindex": "scripts/reskindex.js",
|
"reskindex": "scripts/reskindex.js",
|
||||||
"matrix-gen-i18n": "scripts/gen-i18n.js"
|
"matrix-gen-i18n": "scripts/gen-i18n.js",
|
||||||
|
"matrix-prune-i18n": "scripts/prune-i18n.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"reskindex": "node scripts/reskindex.js -h header",
|
"reskindex": "node scripts/reskindex.js -h header",
|
||||||
"reskindex:watch": "node scripts/reskindex.js -h header -w",
|
"reskindex:watch": "node scripts/reskindex.js -h header -w",
|
||||||
"i18n": "matrix-gen-i18n",
|
"i18n": "matrix-gen-i18n",
|
||||||
|
"prunei18n": "matrix-prune-i18n",
|
||||||
"build": "npm run reskindex && babel src -d lib --source-maps --copy-files",
|
"build": "npm run reskindex && babel src -d lib --source-maps --copy-files",
|
||||||
"build:watch": "babel src -w -d lib --source-maps --copy-files",
|
"build:watch": "babel src -w -d lib --source-maps --copy-files",
|
||||||
"emoji-data-strip": "node scripts/emoji-data-strip.js",
|
"emoji-data-strip": "node scripts/emoji-data-strip.js",
|
||||||
|
|
56
scripts/prune-i18n.js
Executable file
56
scripts/prune-i18n.js
Executable file
|
@ -0,0 +1,56 @@
|
||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2017 New Vector Ltd
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Looks through all the translation files and removes any strings
|
||||||
|
* which don't appear in en_EN.json.
|
||||||
|
* Use this if you remove a translation, but merge any outstanding changes
|
||||||
|
* from weblate first or you'll need to resolve the conflict in weblate.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const path = require('path');
|
||||||
|
|
||||||
|
const I18NDIR = 'src/i18n/strings';
|
||||||
|
|
||||||
|
const enStrings = JSON.parse(fs.readFileSync(path.join(I18NDIR, 'en_EN.json')));
|
||||||
|
|
||||||
|
for (const filename of fs.readdirSync(I18NDIR)) {
|
||||||
|
if (filename === 'en_EN.json') continue;
|
||||||
|
if (filename === 'basefile.json') continue;
|
||||||
|
if (!filename.endsWith('.json')) continue;
|
||||||
|
|
||||||
|
const trs = JSON.parse(fs.readFileSync(path.join(I18NDIR, filename)));
|
||||||
|
const oldLen = Object.keys(trs).length;
|
||||||
|
for (const tr of Object.keys(trs)) {
|
||||||
|
if (enStrings[tr] === undefined) {
|
||||||
|
delete trs[tr];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const removed = oldLen - Object.keys(trs).length;
|
||||||
|
if (removed > 0) {
|
||||||
|
console.log(`${filename}: removed ${removed} translations`);
|
||||||
|
// XXX: This is totally relying on the impl serialising the JSON object in the
|
||||||
|
// same order as they were parsed from the file. JSON.stringify() has a specific argument
|
||||||
|
// that can be used to control the order, but JSON.parse() lacks any kind of equivalent.
|
||||||
|
// Empirically this does maintain the order on my system, so I'm going to leave it like
|
||||||
|
// this for now.
|
||||||
|
fs.writeFileSync(path.join(I18NDIR, filename), JSON.stringify(trs, undefined, 4) + "\n");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue