Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2020-12-22 19:07:42 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2020-12-22 19:07:42 +0300
commit4a6f86a45e4fb317c20faf2e32828b5d339190ac (patch)
treec4f461bc14b717f512a54f52e37a41f84a921322 /scripts
parent0899cabd5eaab1976c1cf3173e94311075029786 (diff)
Migrate old app translations
Signed-off-by: Marius David Wieschollek <passwords.public@mdns.eu>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/sync-message-descriptions.mjs14
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/sync-message-descriptions.mjs b/scripts/sync-message-descriptions.mjs
index b568d34..ba1d94a 100644
--- a/scripts/sync-message-descriptions.mjs
+++ b/scripts/sync-message-descriptions.mjs
@@ -1,13 +1,25 @@
import LanguageTags from '../src/platform/generic/_locales/en/messages.json';
+import LanguageTagsBg from '../src/platform/generic/_locales/bg/messages.json';
import LanguageTagsDe from '../src/platform/generic/_locales/de/messages.json';
+import LanguageTagsEs from '../src/platform/generic/_locales/es/messages.json';
+import LanguageTagsFr from '../src/platform/generic/_locales/fr/messages.json';
import LanguageTagsIt from '../src/platform/generic/_locales/it/messages.json';
+import LanguageTagsPl from '../src/platform/generic/_locales/pl/messages.json';
+import LanguageTagsRu from '../src/platform/generic/_locales/ru/messages.json';
+import LanguageTagsTr from '../src/platform/generic/_locales/tr/messages.json';
import fs from 'fs';
import path from 'path';
let languages = {
+ bg: LanguageTagsBg,
de: LanguageTagsDe,
- it: LanguageTagsIt
+ es: LanguageTagsEs,
+ fr: LanguageTagsFr,
+ it: LanguageTagsIt,
+ pl: LanguageTagsPl,
+ ru: LanguageTagsRu,
+ tr: LanguageTagsTr
},
changes = {};