1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-20 06:56:40 +02:00
keeweb/util/copy-languages.js

8 lines
227 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) {
2017-05-06 14:53:32 +02:00
fs.writeFileSync(`app/scripts/locales/${lang}.json`, fs.readFileSync(`../keeweb-plugins/docs/translations/${lang}/${lang}.json`));
2017-05-05 20:27:06 +02:00
}