We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f344566 commit 15ee910Copy full SHA for 15ee910
electron_app/src/lang/index.js
@@ -1,5 +1,8 @@
1
const en = require('./en.json');
2
const es = require('./es.json');
3
+const de = require('./de.json');
4
+const fr = require('./fr.json');
5
+const ru = require('./ru.json');
6
const mySettings = require('./../Settings');
7
8
const languageSettings = {
@@ -16,6 +19,18 @@ const languageSettings = {
16
19
this.currentLanguage = 'es';
17
20
this.strings = es;
18
21
return;
22
+ case 'de':
23
+ this.currentLanguage = 'de';
24
+ this.strings = de;
25
+ return;
26
+ case 'fr':
27
+ this.currentLanguage = 'fr';
28
+ this.strings = fr;
29
30
+ case 'ru':
31
+ this.currentLanguage = 'ru';
32
+ this.strings = ru;
33
34
default:
35
this.currentLanguage = 'en';
36
this.strings = en;
0 commit comments