mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
36 lines
801 B
JavaScript
36 lines
801 B
JavaScript
'use strict';
|
|
|
|
// Dependencies:
|
|
//
|
|
// sudo apt install gettext
|
|
|
|
require('app-module-path').addPath(`${__dirname}/../ReactNativeClient`);
|
|
|
|
const rootDir = `${__dirname}/..`;
|
|
const fs = require('fs-extra');
|
|
const cliLocalesDir = `${rootDir}/CliClient/locales`;
|
|
const { execCommand } = require('./tool-utils.js');
|
|
|
|
async function main() {
|
|
const files = fs.readdirSync(cliLocalesDir);
|
|
let hasErrors = false;
|
|
for (const file of files) {
|
|
if (!file.endsWith('.po')) continue;
|
|
const fullPath = `${cliLocalesDir}/${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);
|
|
});
|