1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-25 07:37:46 +02:00
keeweb/util/copy-languages.js
2019-08-18 08:05:38 +02:00

11 lines
249 B
JavaScript

const fs = require('fs');
const langs = ['de-DE', 'fr-FR'];
for (const lang of langs) {
fs.writeFileSync(
`app/scripts/locales/${lang}.json`,
fs.readFileSync(`../keeweb-plugins/docs/translations/${lang}/${lang}.json`)
);
}