@seelen-ui/lib 2.4.6 → 2.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/esm/gen/types/AppExtraFlag.d.ts +6 -5
  2. package/esm/gen/types/AppExtraFlag.d.ts.map +1 -1
  3. package/esm/gen/types/AppExtraFlag.js +6 -5
  4. package/esm/gen/types/SeelenCommandArgument.d.ts +0 -3
  5. package/esm/gen/types/SeelenCommandArgument.d.ts.map +1 -1
  6. package/esm/gen/types/SeelenCommandReturn.d.ts +0 -2
  7. package/esm/gen/types/SeelenCommandReturn.d.ts.map +1 -1
  8. package/esm/gen/types/mod.d.ts +0 -1
  9. package/esm/gen/types/mod.d.ts.map +1 -1
  10. package/esm/gen/types/mod.js +0 -1
  11. package/esm/src/constants/mod.d.ts +194 -196
  12. package/esm/src/constants/mod.d.ts.map +1 -1
  13. package/esm/src/constants/mod.js +52 -61
  14. package/esm/src/handlers/commands.d.ts +0 -1
  15. package/esm/src/handlers/commands.d.ts.map +1 -1
  16. package/esm/src/handlers/commands.js +0 -1
  17. package/package.json +1 -1
  18. package/script/gen/types/AppExtraFlag.d.ts +6 -5
  19. package/script/gen/types/AppExtraFlag.d.ts.map +1 -1
  20. package/script/gen/types/AppExtraFlag.js +6 -5
  21. package/script/gen/types/SeelenCommandArgument.d.ts +0 -3
  22. package/script/gen/types/SeelenCommandArgument.d.ts.map +1 -1
  23. package/script/gen/types/SeelenCommandReturn.d.ts +0 -2
  24. package/script/gen/types/SeelenCommandReturn.d.ts.map +1 -1
  25. package/script/gen/types/mod.d.ts +0 -1
  26. package/script/gen/types/mod.d.ts.map +1 -1
  27. package/script/gen/types/mod.js +0 -1
  28. package/script/src/constants/mod.d.ts +194 -196
  29. package/script/src/constants/mod.d.ts.map +1 -1
  30. package/script/src/constants/mod.js +52 -61
  31. package/script/src/handlers/commands.d.ts +0 -1
  32. package/script/src/handlers/commands.d.ts.map +1 -1
  33. package/script/src/handlers/commands.js +0 -1
  34. package/esm/gen/types/SeelenCommandTranslateTextArgs.d.ts +0 -6
  35. package/esm/gen/types/SeelenCommandTranslateTextArgs.d.ts.map +0 -1
  36. package/esm/gen/types/SeelenCommandTranslateTextArgs.js +0 -2
  37. package/script/gen/types/SeelenCommandTranslateTextArgs.d.ts +0 -6
  38. package/script/gen/types/SeelenCommandTranslateTextArgs.d.ts.map +0 -1
  39. package/script/gen/types/SeelenCommandTranslateTextArgs.js +0 -3
@@ -1,299 +1,297 @@
1
- declare const _languageList: readonly [{
2
- readonly label: "Deutsch";
3
- readonly enLabel: "German";
4
- readonly value: "de";
5
- }, {
6
- readonly label: "English";
7
- readonly enLabel: "English";
8
- readonly value: "en";
9
- }, {
10
- readonly label: "Español";
11
- readonly enLabel: "Spanish";
12
- readonly value: "es";
13
- }, {
14
- readonly label: "한국어";
15
- readonly enLabel: "Korean";
16
- readonly value: "ko";
17
- }, {
18
- readonly label: "中文 (简体)";
19
- readonly enLabel: "Chinese (Simplified)";
20
- readonly value: "zh-CN";
21
- }, {
22
- readonly label: "中文 (繁體)";
23
- readonly enLabel: "Chinese (Traditional)";
24
- readonly value: "zh-TW";
1
+ export type SupportedLanguagesCode = (typeof SupportedLanguages)[number]["value"];
2
+ export interface SupportedLanguage {
3
+ label: string;
4
+ enLabel: string;
5
+ /** language code @example 'de' 'es' 'zh' 'en-US' 'en-UK' */
6
+ value: string;
7
+ }
8
+ export declare const SupportedLanguages: readonly [{
9
+ readonly label: "Afrikaans";
10
+ readonly enLabel: "Afrikaans";
11
+ readonly value: "af";
25
12
  }, {
26
- readonly label: "Français";
27
- readonly enLabel: "French";
28
- readonly value: "fr";
13
+ readonly label: "አማርኛ";
14
+ readonly enLabel: "Amharic";
15
+ readonly value: "am";
29
16
  }, {
30
17
  readonly label: "العربية";
31
18
  readonly enLabel: "Arabic";
32
19
  readonly value: "ar";
33
20
  }, {
34
- readonly label: "Português (Portugal)";
35
- readonly enLabel: "Portuguese (Portugal)";
36
- readonly value: "pt-PT";
37
- }, {
38
- readonly label: "Português (Brasil)";
39
- readonly enLabel: "Portuguese (Brazil)";
40
- readonly value: "pt-BR";
41
- }, {
42
- readonly label: "Русский";
43
- readonly enLabel: "Russian";
44
- readonly value: "ru";
45
- }, {
46
- readonly label: "हिन्दी";
47
- readonly enLabel: "Hindi";
48
- readonly value: "hi";
49
- }, {
50
- readonly label: "日本語";
51
- readonly enLabel: "Japanese";
52
- readonly value: "ja";
53
- }, {
54
- readonly label: "Italiano";
55
- readonly enLabel: "Italian";
56
- readonly value: "it";
57
- }, {
58
- readonly label: "Nederlands";
59
- readonly enLabel: "Dutch";
60
- readonly value: "nl";
61
- }, {
62
- readonly label: "Türkçe";
63
- readonly enLabel: "Turkish";
64
- readonly value: "tr";
65
- }, {
66
- readonly label: "Polski";
67
- readonly enLabel: "Polish";
68
- readonly value: "pl";
21
+ readonly label: "Azərbaycan";
22
+ readonly enLabel: "Azerbaijani";
23
+ readonly value: "az";
69
24
  }, {
70
- readonly label: "Українська";
71
- readonly enLabel: "Ukrainian";
72
- readonly value: "uk";
25
+ readonly label: "Български";
26
+ readonly enLabel: "Bulgarian";
27
+ readonly value: "bg";
73
28
  }, {
74
- readonly label: "Ελληνικά";
75
- readonly enLabel: "Greek";
76
- readonly value: "el";
29
+ readonly label: "বাংলা";
30
+ readonly enLabel: "Bengali";
31
+ readonly value: "bn";
77
32
  }, {
78
- readonly label: "עברית";
79
- readonly enLabel: "Hebrew";
80
- readonly value: "he";
33
+ readonly label: "Bosanski";
34
+ readonly enLabel: "Bosnian";
35
+ readonly value: "bs";
81
36
  }, {
82
- readonly label: "Svenska";
83
- readonly enLabel: "Swedish";
84
- readonly value: "sv";
37
+ readonly label: "Català";
38
+ readonly enLabel: "Catalan";
39
+ readonly value: "ca";
85
40
  }, {
86
- readonly label: "Norsk";
87
- readonly enLabel: "Norwegian";
88
- readonly value: "no";
41
+ readonly label: "Čeština";
42
+ readonly enLabel: "Czech";
43
+ readonly value: "cs";
89
44
  }, {
90
- readonly label: "Suomi";
91
- readonly enLabel: "Finnish";
92
- readonly value: "fi";
45
+ readonly label: "Cymraeg";
46
+ readonly enLabel: "Welsh";
47
+ readonly value: "cy";
93
48
  }, {
94
49
  readonly label: "Dansk";
95
50
  readonly enLabel: "Danish";
96
51
  readonly value: "da";
97
52
  }, {
98
- readonly label: "Magyar";
99
- readonly enLabel: "Hungarian";
100
- readonly value: "hu";
101
- }, {
102
- readonly label: "Română";
103
- readonly enLabel: "Romanian";
104
- readonly value: "ro";
105
- }, {
106
- readonly label: "Čeština";
107
- readonly enLabel: "Czech";
108
- readonly value: "cs";
109
- }, {
110
- readonly label: "Slovenský";
111
- readonly enLabel: "Slovak";
112
- readonly value: "sk";
113
- }, {
114
- readonly label: "Hrvatski";
115
- readonly enLabel: "Croatian";
116
- readonly value: "hr";
53
+ readonly label: "Deutsch";
54
+ readonly enLabel: "German";
55
+ readonly value: "de";
117
56
  }, {
118
- readonly label: "Български";
119
- readonly enLabel: "Bulgarian";
120
- readonly value: "bg";
57
+ readonly label: "Ελληνικά";
58
+ readonly enLabel: "Greek";
59
+ readonly value: "el";
121
60
  }, {
122
- readonly label: "Lietuvių";
123
- readonly enLabel: "Lithuanian";
124
- readonly value: "lt";
61
+ readonly label: "English";
62
+ readonly enLabel: "English";
63
+ readonly value: "en";
125
64
  }, {
126
- readonly label: "Latviešu";
127
- readonly enLabel: "Latvian";
128
- readonly value: "lv";
65
+ readonly label: "Español";
66
+ readonly enLabel: "Spanish";
67
+ readonly value: "es";
129
68
  }, {
130
69
  readonly label: "Eesti";
131
70
  readonly enLabel: "Estonian";
132
71
  readonly value: "et";
133
72
  }, {
134
- readonly label: "Tagalog";
135
- readonly enLabel: "Filipino";
136
- readonly value: "tl";
137
- }, {
138
- readonly label: "Tiếng Việt";
139
- readonly enLabel: "Vietnamese";
140
- readonly value: "vi";
141
- }, {
142
- readonly label: "ไทย";
143
- readonly enLabel: "Thai";
144
- readonly value: "th";
145
- }, {
146
- readonly label: "Indonesia";
147
- readonly enLabel: "Indonesian";
148
- readonly value: "id";
149
- }, {
150
- readonly label: "Malay";
151
- readonly enLabel: "Malay";
152
- readonly value: "ms";
153
- }, {
154
- readonly label: "Català";
155
- readonly enLabel: "Catalan";
156
- readonly value: "ca";
157
- }, {
158
- readonly label: "Afrikaans";
159
- readonly enLabel: "Afrikaans";
160
- readonly value: "af";
161
- }, {
162
- readonly label: "বাংলা";
163
- readonly enLabel: "Bengali";
164
- readonly value: "bn";
73
+ readonly label: "Euskara";
74
+ readonly enLabel: "Basque";
75
+ readonly value: "eu";
165
76
  }, {
166
77
  readonly label: "فارسی";
167
78
  readonly enLabel: "Persian";
168
79
  readonly value: "fa";
169
80
  }, {
170
- readonly label: "ਪੰਜਾਬੀ";
171
- readonly enLabel: "Punjabi";
172
- readonly value: "pa";
81
+ readonly label: "Suomi";
82
+ readonly enLabel: "Finnish";
83
+ readonly value: "fi";
173
84
  }, {
174
- readonly label: "Kiswahili";
175
- readonly enLabel: "Swahili";
176
- readonly value: "sw";
85
+ readonly label: "Français";
86
+ readonly enLabel: "French";
87
+ readonly value: "fr";
177
88
  }, {
178
- readonly label: "தமிழ்";
179
- readonly enLabel: "Tamil";
180
- readonly value: "ta";
89
+ readonly label: "ગુજરાતી";
90
+ readonly enLabel: "Gujarati";
91
+ readonly value: "gu";
181
92
  }, {
182
- readonly label: "اردو";
183
- readonly enLabel: "Urdu";
184
- readonly value: "ur";
93
+ readonly label: "עברית";
94
+ readonly enLabel: "Hebrew";
95
+ readonly value: "he";
185
96
  }, {
186
- readonly label: "Cymraeg";
187
- readonly enLabel: "Welsh";
188
- readonly value: "cy";
97
+ readonly label: "हिन्दी";
98
+ readonly enLabel: "Hindi";
99
+ readonly value: "hi";
189
100
  }, {
190
- readonly label: "አማርኛ";
191
- readonly enLabel: "Amharic";
192
- readonly value: "am";
101
+ readonly label: "Hrvatski";
102
+ readonly enLabel: "Croatian";
103
+ readonly value: "hr";
104
+ }, {
105
+ readonly label: "Magyar";
106
+ readonly enLabel: "Hungarian";
107
+ readonly value: "hu";
193
108
  }, {
194
109
  readonly label: "Հայերեն";
195
110
  readonly enLabel: "Armenian";
196
111
  readonly value: "hy";
197
112
  }, {
198
- readonly label: "Azərbaycan";
199
- readonly enLabel: "Azerbaijani";
200
- readonly value: "az";
113
+ readonly label: "Indonesia";
114
+ readonly enLabel: "Indonesian";
115
+ readonly value: "id";
201
116
  }, {
202
- readonly label: "Euskara";
203
- readonly enLabel: "Basque";
204
- readonly value: "eu";
117
+ readonly label: "Íslenska";
118
+ readonly enLabel: "Icelandic";
119
+ readonly value: "is";
205
120
  }, {
206
- readonly label: "Bosanski";
207
- readonly enLabel: "Bosnian";
208
- readonly value: "bs";
121
+ readonly label: "Italiano";
122
+ readonly enLabel: "Italian";
123
+ readonly value: "it";
124
+ }, {
125
+ readonly label: "日本語";
126
+ readonly enLabel: "Japanese";
127
+ readonly value: "ja";
209
128
  }, {
210
129
  readonly label: "ქართული";
211
130
  readonly enLabel: "Georgian";
212
131
  readonly value: "ka";
213
- }, {
214
- readonly label: "ગુજરાતી";
215
- readonly enLabel: "Gujarati";
216
- readonly value: "gu";
217
- }, {
218
- readonly label: "Íslenska";
219
- readonly enLabel: "Icelandic";
220
- readonly value: "is";
221
132
  }, {
222
133
  readonly label: "ភាសាខ្មែរ";
223
134
  readonly enLabel: "Khmer";
224
135
  readonly value: "km";
136
+ }, {
137
+ readonly label: "한국어";
138
+ readonly enLabel: "Korean";
139
+ readonly value: "ko";
225
140
  }, {
226
141
  readonly label: "Kurdî";
227
142
  readonly enLabel: "Kurdish";
228
143
  readonly value: "ku";
144
+ }, {
145
+ readonly label: "Lëtzebuergesch";
146
+ readonly enLabel: "Luxembourgish";
147
+ readonly value: "lb";
229
148
  }, {
230
149
  readonly label: "ລາວ";
231
150
  readonly enLabel: "Lao";
232
151
  readonly value: "lo";
233
152
  }, {
234
- readonly label: "Lëtzebuergesch";
235
- readonly enLabel: "Luxembourgish";
236
- readonly value: "lb";
153
+ readonly label: "Lietuvių";
154
+ readonly enLabel: "Lithuanian";
155
+ readonly value: "lt";
156
+ }, {
157
+ readonly label: "Latviešu";
158
+ readonly enLabel: "Latvian";
159
+ readonly value: "lv";
237
160
  }, {
238
161
  readonly label: "Македонски";
239
162
  readonly enLabel: "Macedonian";
240
163
  readonly value: "mk";
241
- }, {
242
- readonly label: "Malti";
243
- readonly enLabel: "Maltese";
244
- readonly value: "mt";
245
164
  }, {
246
165
  readonly label: "Монгол";
247
166
  readonly enLabel: "Mongolian";
248
167
  readonly value: "mn";
168
+ }, {
169
+ readonly label: "Malay";
170
+ readonly enLabel: "Malay";
171
+ readonly value: "ms";
172
+ }, {
173
+ readonly label: "Malti";
174
+ readonly enLabel: "Maltese";
175
+ readonly value: "mt";
249
176
  }, {
250
177
  readonly label: "नेपाली";
251
178
  readonly enLabel: "Nepali";
252
179
  readonly value: "ne";
180
+ }, {
181
+ readonly label: "Nederlands";
182
+ readonly enLabel: "Dutch";
183
+ readonly value: "nl";
184
+ }, {
185
+ readonly label: "Norsk";
186
+ readonly enLabel: "Norwegian";
187
+ readonly value: "no";
188
+ }, {
189
+ readonly label: "ਪੰਜਾਬੀ";
190
+ readonly enLabel: "Punjabi";
191
+ readonly value: "pa";
192
+ }, {
193
+ readonly label: "Polski";
194
+ readonly enLabel: "Polish";
195
+ readonly value: "pl";
253
196
  }, {
254
197
  readonly label: "پښتو";
255
198
  readonly enLabel: "Pashto";
256
199
  readonly value: "ps";
257
200
  }, {
258
- readonly label: "Српски";
259
- readonly enLabel: "Serbian";
260
- readonly value: "sr";
201
+ readonly label: "Português (Brasil)";
202
+ readonly enLabel: "Portuguese (Brazil)";
203
+ readonly value: "pt-BR";
204
+ }, {
205
+ readonly label: "Português (Portugal)";
206
+ readonly enLabel: "Portuguese (Portugal)";
207
+ readonly value: "pt-PT";
208
+ }, {
209
+ readonly label: "Română";
210
+ readonly enLabel: "Romanian";
211
+ readonly value: "ro";
212
+ }, {
213
+ readonly label: "Русский";
214
+ readonly enLabel: "Russian";
215
+ readonly value: "ru";
261
216
  }, {
262
217
  readonly label: "සිංහල";
263
218
  readonly enLabel: "Sinhala";
264
219
  readonly value: "si";
220
+ }, {
221
+ readonly label: "Slovenský";
222
+ readonly enLabel: "Slovak";
223
+ readonly value: "sk";
265
224
  }, {
266
225
  readonly label: "Soomaali";
267
226
  readonly enLabel: "Somali";
268
227
  readonly value: "so";
269
228
  }, {
270
- readonly label: "Тоҷикӣ";
271
- readonly enLabel: "Tajik";
272
- readonly value: "tg";
229
+ readonly label: "Српски";
230
+ readonly enLabel: "Serbian";
231
+ readonly value: "sr";
232
+ }, {
233
+ readonly label: "Svenska";
234
+ readonly enLabel: "Swedish";
235
+ readonly value: "sv";
236
+ }, {
237
+ readonly label: "Kiswahili";
238
+ readonly enLabel: "Swahili";
239
+ readonly value: "sw";
240
+ }, {
241
+ readonly label: "தமிழ்";
242
+ readonly enLabel: "Tamil";
243
+ readonly value: "ta";
273
244
  }, {
274
245
  readonly label: "తెలుగు";
275
246
  readonly enLabel: "Telugu";
276
247
  readonly value: "te";
248
+ }, {
249
+ readonly label: "Тоҷикӣ";
250
+ readonly enLabel: "Tajik";
251
+ readonly value: "tg";
252
+ }, {
253
+ readonly label: "ไทย";
254
+ readonly enLabel: "Thai";
255
+ readonly value: "th";
256
+ }, {
257
+ readonly label: "Tagalog";
258
+ readonly enLabel: "Filipino";
259
+ readonly value: "tl";
260
+ }, {
261
+ readonly label: "Türkçe";
262
+ readonly enLabel: "Turkish";
263
+ readonly value: "tr";
264
+ }, {
265
+ readonly label: "Українська";
266
+ readonly enLabel: "Ukrainian";
267
+ readonly value: "uk";
268
+ }, {
269
+ readonly label: "اردو";
270
+ readonly enLabel: "Urdu";
271
+ readonly value: "ur";
277
272
  }, {
278
273
  readonly label: "Oʻzbek";
279
274
  readonly enLabel: "Uzbek";
280
275
  readonly value: "uz";
276
+ }, {
277
+ readonly label: "Tiếng Việt";
278
+ readonly enLabel: "Vietnamese";
279
+ readonly value: "vi";
281
280
  }, {
282
281
  readonly label: "Yorùbá";
283
282
  readonly enLabel: "Yoruba";
284
283
  readonly value: "yo";
284
+ }, {
285
+ readonly label: "中文 (简体)";
286
+ readonly enLabel: "Chinese (Simplified)";
287
+ readonly value: "zh-CN";
288
+ }, {
289
+ readonly label: "中文 (繁體)";
290
+ readonly enLabel: "Chinese (Traditional)";
291
+ readonly value: "zh-TW";
285
292
  }, {
286
293
  readonly label: "isiZulu";
287
294
  readonly enLabel: "Zulu";
288
295
  readonly value: "zu";
289
296
  }];
290
- export type SupportedLanguagesCode = (typeof _languageList)[number]["value"];
291
- export interface SupportedLanguage {
292
- label: string;
293
- enLabel: string;
294
- /** language code @example 'de' 'es' 'zh' 'en-US' 'en-UK' */
295
- value: string;
296
- }
297
- export declare const SupportedLanguages: SupportedLanguage[];
298
- export {};
299
297
  //# sourceMappingURL=mod.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../../src/src/constants/mod.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiFT,CAAC;AAEX,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAE7E,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,4DAA4D;IAC5D,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,kBAAkB,EAAE,iBAAiB,EAGd,CAAC"}
1
+ {"version":3,"file":"mod.d.ts","sourceRoot":"","sources":["../../../src/src/constants/mod.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,kBAAkB,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,CAAC,CAAC;AAClF,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,4DAA4D;IAC5D,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyErB,CAAC"}
@@ -1,83 +1,74 @@
1
- const _languageList = [
1
+ export const SupportedLanguages = [
2
+ { label: "Afrikaans", enLabel: "Afrikaans", value: "af" },
3
+ { label: "አማርኛ", enLabel: "Amharic", value: "am" },
4
+ { label: "العربية", enLabel: "Arabic", value: "ar" },
5
+ { label: "Azərbaycan", enLabel: "Azerbaijani", value: "az" },
6
+ { label: "Български", enLabel: "Bulgarian", value: "bg" },
7
+ { label: "বাংলা", enLabel: "Bengali", value: "bn" },
8
+ { label: "Bosanski", enLabel: "Bosnian", value: "bs" },
9
+ { label: "Català", enLabel: "Catalan", value: "ca" },
10
+ { label: "Čeština", enLabel: "Czech", value: "cs" },
11
+ { label: "Cymraeg", enLabel: "Welsh", value: "cy" },
12
+ { label: "Dansk", enLabel: "Danish", value: "da" },
2
13
  { label: "Deutsch", enLabel: "German", value: "de" },
14
+ { label: "Ελληνικά", enLabel: "Greek", value: "el" },
3
15
  { label: "English", enLabel: "English", value: "en" },
4
16
  { label: "Español", enLabel: "Spanish", value: "es" },
5
- { label: "한국어", enLabel: "Korean", value: "ko" },
6
- { label: "中文 (简体)", enLabel: "Chinese (Simplified)", value: "zh-CN" },
7
- { label: "中文 (繁體)", enLabel: "Chinese (Traditional)", value: "zh-TW" },
17
+ { label: "Eesti", enLabel: "Estonian", value: "et" },
18
+ { label: "Euskara", enLabel: "Basque", value: "eu" },
19
+ { label: "فارسی", enLabel: "Persian", value: "fa" },
20
+ { label: "Suomi", enLabel: "Finnish", value: "fi" },
8
21
  { label: "Français", enLabel: "French", value: "fr" },
9
- { label: "العربية", enLabel: "Arabic", value: "ar" },
10
- {
11
- label: "Português (Portugal)",
12
- enLabel: "Portuguese (Portugal)",
13
- value: "pt-PT",
14
- },
15
- {
16
- label: "Português (Brasil)",
17
- enLabel: "Portuguese (Brazil)",
18
- value: "pt-BR",
19
- },
20
- { label: "Русский", enLabel: "Russian", value: "ru" },
21
- { label: "हिन्दी", enLabel: "Hindi", value: "hi" },
22
- { label: "日本語", enLabel: "Japanese", value: "ja" },
23
- { label: "Italiano", enLabel: "Italian", value: "it" },
24
- { label: "Nederlands", enLabel: "Dutch", value: "nl" },
25
- { label: "Türkçe", enLabel: "Turkish", value: "tr" },
26
- { label: "Polski", enLabel: "Polish", value: "pl" },
27
- { label: "Українська", enLabel: "Ukrainian", value: "uk" },
28
- { label: "Ελληνικά", enLabel: "Greek", value: "el" },
22
+ { label: "ગુજરાતી", enLabel: "Gujarati", value: "gu" },
29
23
  { label: "עברית", enLabel: "Hebrew", value: "he" },
30
- { label: "Svenska", enLabel: "Swedish", value: "sv" },
31
- { label: "Norsk", enLabel: "Norwegian", value: "no" },
32
- { label: "Suomi", enLabel: "Finnish", value: "fi" },
33
- { label: "Dansk", enLabel: "Danish", value: "da" },
34
- { label: "Magyar", enLabel: "Hungarian", value: "hu" },
35
- { label: "Română", enLabel: "Romanian", value: "ro" },
36
- { label: "Čeština", enLabel: "Czech", value: "cs" },
37
- { label: "Slovenský", enLabel: "Slovak", value: "sk" },
24
+ { label: "हिन्दी", enLabel: "Hindi", value: "hi" },
38
25
  { label: "Hrvatski", enLabel: "Croatian", value: "hr" },
39
- { label: "Български", enLabel: "Bulgarian", value: "bg" },
40
- { label: "Lietuvių", enLabel: "Lithuanian", value: "lt" },
41
- { label: "Latviešu", enLabel: "Latvian", value: "lv" },
42
- { label: "Eesti", enLabel: "Estonian", value: "et" },
43
- { label: "Tagalog", enLabel: "Filipino", value: "tl" }, // or fil
44
- { label: "Tiếng Việt", enLabel: "Vietnamese", value: "vi" },
45
- { label: "ไทย", enLabel: "Thai", value: "th" },
46
- { label: "Indonesia", enLabel: "Indonesian", value: "id" },
47
- { label: "Malay", enLabel: "Malay", value: "ms" },
48
- { label: "Català", enLabel: "Catalan", value: "ca" },
49
- { label: "Afrikaans", enLabel: "Afrikaans", value: "af" },
50
- { label: "বাংলা", enLabel: "Bengali", value: "bn" },
51
- { label: "فارسی", enLabel: "Persian", value: "fa" },
52
- { label: "ਪੰਜਾਬੀ", enLabel: "Punjabi", value: "pa" },
53
- { label: "Kiswahili", enLabel: "Swahili", value: "sw" },
54
- { label: "தமிழ்", enLabel: "Tamil", value: "ta" },
55
- { label: "اردو", enLabel: "Urdu", value: "ur" },
56
- { label: "Cymraeg", enLabel: "Welsh", value: "cy" },
57
- { label: "አማርኛ", enLabel: "Amharic", value: "am" },
26
+ { label: "Magyar", enLabel: "Hungarian", value: "hu" },
58
27
  { label: "Հայերեն", enLabel: "Armenian", value: "hy" },
59
- { label: "Azərbaycan", enLabel: "Azerbaijani", value: "az" },
60
- { label: "Euskara", enLabel: "Basque", value: "eu" },
61
- { label: "Bosanski", enLabel: "Bosnian", value: "bs" },
62
- { label: "ქართული", enLabel: "Georgian", value: "ka" },
63
- { label: "ગુજરાતી", enLabel: "Gujarati", value: "gu" },
28
+ { label: "Indonesia", enLabel: "Indonesian", value: "id" },
64
29
  { label: "Íslenska", enLabel: "Icelandic", value: "is" },
30
+ { label: "Italiano", enLabel: "Italian", value: "it" },
31
+ { label: "日本語", enLabel: "Japanese", value: "ja" },
32
+ { label: "ქართული", enLabel: "Georgian", value: "ka" },
65
33
  { label: "ភាសាខ្មែរ", enLabel: "Khmer", value: "km" },
34
+ { label: "한국어", enLabel: "Korean", value: "ko" },
66
35
  { label: "Kurdî", enLabel: "Kurdish", value: "ku" },
67
- { label: "ລາວ", enLabel: "Lao", value: "lo" },
68
36
  { label: "Lëtzebuergesch", enLabel: "Luxembourgish", value: "lb" },
37
+ { label: "ລາວ", enLabel: "Lao", value: "lo" },
38
+ { label: "Lietuvių", enLabel: "Lithuanian", value: "lt" },
39
+ { label: "Latviešu", enLabel: "Latvian", value: "lv" },
69
40
  { label: "Македонски", enLabel: "Macedonian", value: "mk" },
70
- { label: "Malti", enLabel: "Maltese", value: "mt" },
71
41
  { label: "Монгол", enLabel: "Mongolian", value: "mn" },
42
+ { label: "Malay", enLabel: "Malay", value: "ms" },
43
+ { label: "Malti", enLabel: "Maltese", value: "mt" },
72
44
  { label: "नेपाली", enLabel: "Nepali", value: "ne" },
45
+ { label: "Nederlands", enLabel: "Dutch", value: "nl" },
46
+ { label: "Norsk", enLabel: "Norwegian", value: "no" },
47
+ { label: "ਪੰਜਾਬੀ", enLabel: "Punjabi", value: "pa" },
48
+ { label: "Polski", enLabel: "Polish", value: "pl" },
73
49
  { label: "پښتو", enLabel: "Pashto", value: "ps" },
74
- { label: "Српски", enLabel: "Serbian", value: "sr" },
50
+ { label: "Português (Brasil)", enLabel: "Portuguese (Brazil)", value: "pt-BR" },
51
+ { label: "Português (Portugal)", enLabel: "Portuguese (Portugal)", value: "pt-PT" },
52
+ { label: "Română", enLabel: "Romanian", value: "ro" },
53
+ { label: "Русский", enLabel: "Russian", value: "ru" },
75
54
  { label: "සිංහල", enLabel: "Sinhala", value: "si" },
55
+ { label: "Slovenský", enLabel: "Slovak", value: "sk" },
76
56
  { label: "Soomaali", enLabel: "Somali", value: "so" },
77
- { label: "Тоҷикӣ", enLabel: "Tajik", value: "tg" },
57
+ { label: "Српски", enLabel: "Serbian", value: "sr" },
58
+ { label: "Svenska", enLabel: "Swedish", value: "sv" },
59
+ { label: "Kiswahili", enLabel: "Swahili", value: "sw" },
60
+ { label: "தமிழ்", enLabel: "Tamil", value: "ta" },
78
61
  { label: "తెలుగు", enLabel: "Telugu", value: "te" },
62
+ { label: "Тоҷикӣ", enLabel: "Tajik", value: "tg" },
63
+ { label: "ไทย", enLabel: "Thai", value: "th" },
64
+ { label: "Tagalog", enLabel: "Filipino", value: "tl" },
65
+ { label: "Türkçe", enLabel: "Turkish", value: "tr" },
66
+ { label: "Українська", enLabel: "Ukrainian", value: "uk" },
67
+ { label: "اردو", enLabel: "Urdu", value: "ur" },
79
68
  { label: "Oʻzbek", enLabel: "Uzbek", value: "uz" },
69
+ { label: "Tiếng Việt", enLabel: "Vietnamese", value: "vi" },
80
70
  { label: "Yorùbá", enLabel: "Yoruba", value: "yo" },
71
+ { label: "中文 (简体)", enLabel: "Chinese (Simplified)", value: "zh-CN" },
72
+ { label: "中文 (繁體)", enLabel: "Chinese (Traditional)", value: "zh-TW" },
81
73
  { label: "isiZulu", enLabel: "Zulu", value: "zu" },
82
74
  ];
83
- export const SupportedLanguages = _languageList.toSorted((a, b) => a.label.localeCompare(b.label));
@@ -17,7 +17,6 @@ export declare enum SeelenCommand {
17
17
  RequestToUserInputShortcut = "request_to_user_input_shortcut",
18
18
  CheckForUpdates = "check_for_updates",
19
19
  InstallLastAvailableUpdate = "install_last_available_update",
20
- TranslateText = "translate_text",
21
20
  SystemGetForegroundWindowColor = "get_foreground_window_color",
22
21
  SystemGetMonitors = "get_connected_monitors",
23
22
  SystemGetColors = "get_system_colors",
@@ -1 +1 @@
1
- {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../../src/src/handlers/commands.ts"],"names":[],"mappings":"AACA,oBAAY,aAAa;IACvB,uBAAuB,yBAAyB;IAChD,eAAe,qBAAqB;IACpC,GAAG,QAAQ;IACX,UAAU,iBAAiB;IAC3B,aAAa,oBAAoB;IACjC,SAAS,gBAAgB;IACzB,aAAa,oBAAoB;IACjC,QAAQ,cAAc;IACtB,oBAAoB,4BAA4B;IAChD,WAAW,kBAAkB;IAC7B,eAAe,sBAAsB;IACrC,QAAQ,cAAc;IACtB,OAAO,aAAa;IACpB,kBAAkB,wBAAwB;IAC1C,WAAW,iBAAiB;IAC5B,0BAA0B,mCAAmC;IAC7D,eAAe,sBAAsB;IACrC,0BAA0B,kCAAkC;IAC5D,aAAa,mBAAmB;IAChC,8BAA8B,gCAAgC;IAC9D,iBAAiB,2BAA2B;IAC5C,eAAe,sBAAsB;IACrC,kBAAkB,yBAAyB;IAC3C,uBAAuB,+BAA+B;IACtD,uBAAuB,+BAA+B;IACtD,8BAA8B,uCAAuC;IACrE,gCAAgC,yCAAyC;IACzE,YAAY,mBAAmB;IAC/B,kBAAkB,0BAA0B;IAC5C,cAAc,oBAAoB;IAClC,cAAc,qBAAqB;IACnC,gBAAgB,wBAAwB;IACxC,kBAAkB,0BAA0B;IAC5C,oBAAoB,4BAA4B;IAChD,gBAAgB,uBAAuB;IACvC,kBAAkB,yBAAyB;IAC3C,kCAAkC,2CAA2C;IAC7E,eAAe,sBAAsB;IACrC,eAAe,sBAAsB;IACrC,eAAe,sBAAsB;IACrC,iBAAiB,yBAAyB;IAC1C,kBAAkB,yBAAyB;IAC3C,sBAAsB,uCAAuC;IAC7D,gBAAgB,uBAAuB;IACvC,sBAAsB,8BAA8B;IACpD,6BAA6B,qCAAqC;IAClE,uBAAuB,+BAA+B;IACtD,aAAa,mBAAmB;IAChC,uBAAuB,+BAA+B;IACtD,uBAAuB,+BAA+B;IACtD,OAAO,aAAa;IACpB,oBAAoB,4BAA4B;IAChD,kBAAkB,0BAA0B;IAC5C,mBAAmB,0BAA0B;IAC7C,iBAAiB,yBAAyB;IAC1C,4BAA4B,oCAAoC;IAChE,sBAAsB,6BAA6B;IACnD,qBAAqB,4BAA4B;IACjD,mBAAmB,0BAA0B;IAC7C,qBAAqB,4BAA4B;IACjD,0BAA0B,kCAAkC;IAC5D,eAAe,sBAAsB;IACrC,gBAAgB,uBAAuB;IACvC,SAAS,eAAe;IACxB,oBAAoB,4BAA4B;IAChD,SAAS,eAAe;IACxB,cAAc,qBAAqB;IACnC,eAAe,sBAAsB;IACrC,qBAAqB,6BAA6B;IAClD,wBAAwB,gCAAgC;IACxD,wBAAwB,gCAAgC;IACxD,cAAc,qBAAqB;IACnC,YAAY,mBAAmB;IAC/B,YAAY,kBAAkB;IAC9B,MAAM,YAAY;IAClB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,WAAW,kBAAkB;IAC7B,UAAU,iBAAiB;IAC3B,oBAAoB,4BAA4B;IAChD,wBAAwB,gCAAgC;IACxD,UAAU,iBAAiB;IAC3B,sBAAsB,8BAA8B;IACpD,YAAY,kBAAkB;IAC9B,eAAe,sBAAsB;IACrC,WAAW,iBAAiB;IAC5B,WAAW,iBAAiB;IAC5B,UAAU,gBAAgB;IAC1B,cAAc,qBAAqB;IACnC,eAAe,sBAAsB;IACrC,iBAAiB,wBAAwB;IACzC,gBAAgB,uBAAuB;IACvC,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,kBAAkB,0BAA0B;IAC5C,wBAAwB,iCAAiC;IACzD,gBAAgB,sBAAsB;IACtC,kBAAkB,wBAAwB;IAC1C,qBAAqB,4BAA4B;IACjD,oBAAoB,0BAA0B;CAC/C"}
1
+ {"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../../src/src/handlers/commands.ts"],"names":[],"mappings":"AACA,oBAAY,aAAa;IACvB,uBAAuB,yBAAyB;IAChD,eAAe,qBAAqB;IACpC,GAAG,QAAQ;IACX,UAAU,iBAAiB;IAC3B,aAAa,oBAAoB;IACjC,SAAS,gBAAgB;IACzB,aAAa,oBAAoB;IACjC,QAAQ,cAAc;IACtB,oBAAoB,4BAA4B;IAChD,WAAW,kBAAkB;IAC7B,eAAe,sBAAsB;IACrC,QAAQ,cAAc;IACtB,OAAO,aAAa;IACpB,kBAAkB,wBAAwB;IAC1C,WAAW,iBAAiB;IAC5B,0BAA0B,mCAAmC;IAC7D,eAAe,sBAAsB;IACrC,0BAA0B,kCAAkC;IAC5D,8BAA8B,gCAAgC;IAC9D,iBAAiB,2BAA2B;IAC5C,eAAe,sBAAsB;IACrC,kBAAkB,yBAAyB;IAC3C,uBAAuB,+BAA+B;IACtD,uBAAuB,+BAA+B;IACtD,8BAA8B,uCAAuC;IACrE,gCAAgC,yCAAyC;IACzE,YAAY,mBAAmB;IAC/B,kBAAkB,0BAA0B;IAC5C,cAAc,oBAAoB;IAClC,cAAc,qBAAqB;IACnC,gBAAgB,wBAAwB;IACxC,kBAAkB,0BAA0B;IAC5C,oBAAoB,4BAA4B;IAChD,gBAAgB,uBAAuB;IACvC,kBAAkB,yBAAyB;IAC3C,kCAAkC,2CAA2C;IAC7E,eAAe,sBAAsB;IACrC,eAAe,sBAAsB;IACrC,eAAe,sBAAsB;IACrC,iBAAiB,yBAAyB;IAC1C,kBAAkB,yBAAyB;IAC3C,sBAAsB,uCAAuC;IAC7D,gBAAgB,uBAAuB;IACvC,sBAAsB,8BAA8B;IACpD,6BAA6B,qCAAqC;IAClE,uBAAuB,+BAA+B;IACtD,aAAa,mBAAmB;IAChC,uBAAuB,+BAA+B;IACtD,uBAAuB,+BAA+B;IACtD,OAAO,aAAa;IACpB,oBAAoB,4BAA4B;IAChD,kBAAkB,0BAA0B;IAC5C,mBAAmB,0BAA0B;IAC7C,iBAAiB,yBAAyB;IAC1C,4BAA4B,oCAAoC;IAChE,sBAAsB,6BAA6B;IACnD,qBAAqB,4BAA4B;IACjD,mBAAmB,0BAA0B;IAC7C,qBAAqB,4BAA4B;IACjD,0BAA0B,kCAAkC;IAC5D,eAAe,sBAAsB;IACrC,gBAAgB,uBAAuB;IACvC,SAAS,eAAe;IACxB,oBAAoB,4BAA4B;IAChD,SAAS,eAAe;IACxB,cAAc,qBAAqB;IACnC,eAAe,sBAAsB;IACrC,qBAAqB,6BAA6B;IAClD,wBAAwB,gCAAgC;IACxD,wBAAwB,gCAAgC;IACxD,cAAc,qBAAqB;IACnC,YAAY,mBAAmB;IAC/B,YAAY,kBAAkB;IAC9B,MAAM,YAAY;IAClB,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,IAAI,SAAS;IACb,WAAW,kBAAkB;IAC7B,UAAU,iBAAiB;IAC3B,oBAAoB,4BAA4B;IAChD,wBAAwB,gCAAgC;IACxD,UAAU,iBAAiB;IAC3B,sBAAsB,8BAA8B;IACpD,YAAY,kBAAkB;IAC9B,eAAe,sBAAsB;IACrC,WAAW,iBAAiB;IAC5B,WAAW,iBAAiB;IAC5B,UAAU,gBAAgB;IAC1B,cAAc,qBAAqB;IACnC,eAAe,sBAAsB;IACrC,iBAAiB,wBAAwB;IACzC,gBAAgB,uBAAuB;IACvC,WAAW,iBAAiB;IAC5B,cAAc,oBAAoB;IAClC,kBAAkB,0BAA0B;IAC5C,wBAAwB,iCAAiC;IACzD,gBAAgB,sBAAsB;IACtC,kBAAkB,wBAAwB;IAC1C,qBAAqB,4BAA4B;IACjD,oBAAoB,0BAA0B;CAC/C"}