-
Notifications
You must be signed in to change notification settings - Fork 405
/
lang.js
197 lines (196 loc) · 3.68 KB
/
lang.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
const langMap = {
"en-us": {
name: "English",
async strings() {
return await import("../lang/en-us.json");
},
},
"es-sv": {
name: "Español",
async strings() {
return await import("../lang/es-sv.json");
},
},
"fr-fr": {
name: "Francais",
async strings() {
return await import("../lang/fr-fr.json");
},
},
"tl-ph": {
name: "Tagalog",
async strings() {
return await import("../lang/tl-ph.json");
},
},
"de-de": {
name: "Deutsch",
async strings() {
return await import("../lang/de-de.json");
},
},
"id-id": {
name: "Indonesian",
async strings() {
return await import("../lang/id-id.json");
},
},
"uz-uz": {
name: "O'zbekcha",
async strings() {
return await import("../lang/uz-uz.json");
},
},
"ru-ru": {
name: "Русский",
async strings() {
return await import("../lang/ru-ru.json");
},
},
"pl-pl": {
name: "Polski",
async strings() {
return await import("../lang/pl-pl.json");
},
},
"pt-br": {
name: "Português",
async strings() {
return await import("../lang/pt-br.json");
},
},
"pu-in": {
name: "ਪੰਜਾਬੀ",
async strings() {
return await import("../lang/pu-in.json");
},
},
"tr-tr": {
name: "Türkçe",
async strings() {
return await import("../lang/tr-tr.json");
},
},
"uk-ua": {
name: "Українська",
async strings() {
return await import("../lang/uk-ua.json");
},
},
"hi-in": {
name: "हिंदी",
async strings() {
return await import("../lang/hi-in.json");
},
},
"zh-cn": {
name: "中文简体",
async strings() {
return await import("../lang/zh-cn.json");
},
},
"zh-hant": {
name: "繁體中文",
async strings() {
return await import("../lang/zh-hant.json");
},
},
"zh-tw": {
name: "繁體中文 (台灣)",
async strings() {
return await import("../lang/zh-tw.json");
},
},
"ir-fa": {
name: "فارسی",
async strings() {
return await import("../lang/ir-fa.json");
},
},
"ar-ye": {
name: "العربية",
async strings() {
return await import("../lang/ar-ye.json");
},
},
"ja-jp": {
name: "日本語",
async strings() {
return await import("../lang/ja-jp.json");
},
},
"bn-bd": {
name: "বাংলা",
async strings() {
return await import("../lang/bn-bd.json");
},
},
"cs-cz": {
name: "Čeština",
async strings() {
return await import("../lang/cs-cz.json");
},
},
"vi-vn": {
name: "Tiếng Việt",
async strings() {
return await import("../lang/vi-vn.json");
},
},
"be-by": {
name: "Беларуская",
async strings() {
return await import("../lang/be-by.json");
},
},
"hu-hu": {
name: "Magyar",
async strings() {
return await import("../lang/hu-hu.json");
},
},
"ml-in": {
name: "മലയാളം",
async strings() {
return await import("../lang/ml-in.json");
},
},
"mm-unicode": {
name: "ဗမာစာ(Unicode)",
async strings() {
return await import("../lang/mm-unicode.json");
},
},
"mm-zawgyi": {
name: "ဗမာစာ(Zawgyi)",
async strings() {
return await import("../lang/mm-zawgyi.json");
},
},
"ko-kr": {
name: "한국어",
async strings() {
return await import("../lang/ko-kr.json");
},
},
"it-it": {
name: "Italiano",
async strings() {
return await import("../lang/it-it.json");
},
},
};
export default {
async set(code) {
code = code?.toLowerCase();
const lang = langMap[code] || langMap["en-us"];
const strings = await lang.strings();
window.strings = strings;
},
list: Object.keys(langMap).map((code) => [code, langMap[code].name]),
getName(code) {
code = code?.toLowerCase();
code = code in langMap ? code : "en-us";
return langMap[code].name;
},
};