1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/util/copy-languages.js

8 lines
219 B
JavaScript
Raw Normal View History

2017-05-05 20:27:06 +02:00
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-translations/docs/${lang}/${lang}.json`));
}