1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/tools/validate-translation.js
2020-11-05 16:58:23 +00:00

34 lines
726 B
JavaScript

'use strict';
// Dependencies:
//
// sudo apt install gettext
const rootDir = `${__dirname}/../..`;
const fs = require('fs-extra');
const localesDir = `${rootDir}/packages/tools/locales`;
const { execCommand } = require('./tool-utils.js');
async function main() {
const files = fs.readdirSync(localesDir);
let hasErrors = false;
for (const file of files) {
if (!file.endsWith('.po')) continue;
const fullPath = `${localesDir}/${file}`;
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);
});