2019-12-10 23:10:47 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// Dependencies:
|
|
|
|
//
|
|
|
|
// sudo apt install gettext
|
|
|
|
|
2020-11-05 18:58:23 +02:00
|
|
|
const rootDir = `${__dirname}/../..`;
|
2019-12-10 23:10:47 +02:00
|
|
|
const fs = require('fs-extra');
|
2020-11-05 18:58:23 +02:00
|
|
|
const localesDir = `${rootDir}/packages/tools/locales`;
|
2019-12-10 23:10:47 +02:00
|
|
|
const { execCommand } = require('./tool-utils.js');
|
|
|
|
|
|
|
|
async function main() {
|
2020-11-05 18:58:23 +02:00
|
|
|
const files = fs.readdirSync(localesDir);
|
2019-12-10 23:10:47 +02:00
|
|
|
let hasErrors = false;
|
|
|
|
for (const file of files) {
|
|
|
|
if (!file.endsWith('.po')) continue;
|
2020-11-05 18:58:23 +02:00
|
|
|
const fullPath = `${localesDir}/${file}`;
|
2019-12-10 23:10:47 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
await execCommand(`msgfmt -v "${fullPath}"`);
|
|
|
|
} catch (error) {
|
|
|
|
hasErrors = true;
|
|
|
|
console.error(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hasErrors) throw new Error('Some .po files could not be validated');
|
|
|
|
}
|
|
|
|
|
|
|
|
main().catch((error) => {
|
|
|
|
console.error(error);
|
|
|
|
process.exit(1);
|
|
|
|
});
|