@magmamath/frontend-config 1.0.31 → 1.1.1
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.
- package/dist/index.d.mts +0 -8
- package/dist/index.d.ts +0 -8
- package/dist/index.js +1451 -629
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1432 -632
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createEvent, restore } from 'effector';
|
|
2
|
-
import Svg, { Path, G, Defs, ClipPath
|
|
3
|
-
import {
|
|
2
|
+
import Svg, { Path, Rect, G, Defs, ClipPath } from 'react-native-svg';
|
|
3
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
4
4
|
|
|
5
5
|
// src/shared/constants/dates.constants.ts
|
|
6
6
|
var DateFormat = /* @__PURE__ */ ((DateFormat2) => {
|
|
@@ -15,6 +15,8 @@ var DateFormat = /* @__PURE__ */ ((DateFormat2) => {
|
|
|
15
15
|
DateFormat2["YEAR_MONTH_DAY"] = "YYYY-MM-DD";
|
|
16
16
|
DateFormat2["FULL_WITH_SECONDS"] = "DD MMM YYYY HH:mm:ss";
|
|
17
17
|
DateFormat2["FULL_WITH_SECONDS_US"] = "DD MMM YYYY hh:mm:ss A";
|
|
18
|
+
DateFormat2["MONTH_DAY_TIME"] = "MMM D HH:mm";
|
|
19
|
+
DateFormat2["MONTH_DAY_TIME_US"] = "MMM D hh:mm A";
|
|
18
20
|
return DateFormat2;
|
|
19
21
|
})(DateFormat || {});
|
|
20
22
|
var DateLocale = {
|
|
@@ -31,6 +33,11 @@ var DateLocale = {
|
|
|
31
33
|
DE: "de",
|
|
32
34
|
"de-DE": "de"
|
|
33
35
|
};
|
|
36
|
+
var MomentDateLocale = {
|
|
37
|
+
GB: "en-gb",
|
|
38
|
+
SE: "sv",
|
|
39
|
+
DE: "de"
|
|
40
|
+
};
|
|
34
41
|
|
|
35
42
|
// src/shared/constants/common.constants.ts
|
|
36
43
|
var Platform = /* @__PURE__ */ ((Platform3) => {
|
|
@@ -129,6 +136,769 @@ var MatrixMode = /* @__PURE__ */ ((MatrixMode2) => {
|
|
|
129
136
|
return MatrixMode2;
|
|
130
137
|
})(MatrixMode || {});
|
|
131
138
|
|
|
139
|
+
// src/shared/constants/grades.constants.ts
|
|
140
|
+
var Grade = /* @__PURE__ */ ((Grade2) => {
|
|
141
|
+
Grade2[Grade2["OTHER"] = -1] = "OTHER";
|
|
142
|
+
Grade2[Grade2["ZERO"] = 0] = "ZERO";
|
|
143
|
+
Grade2[Grade2["ONE"] = 1] = "ONE";
|
|
144
|
+
Grade2[Grade2["TWO"] = 2] = "TWO";
|
|
145
|
+
Grade2[Grade2["THREE"] = 3] = "THREE";
|
|
146
|
+
Grade2[Grade2["FOUR"] = 4] = "FOUR";
|
|
147
|
+
Grade2[Grade2["FIVE"] = 5] = "FIVE";
|
|
148
|
+
Grade2[Grade2["SIX"] = 6] = "SIX";
|
|
149
|
+
Grade2[Grade2["SEVEN"] = 7] = "SEVEN";
|
|
150
|
+
Grade2[Grade2["EIGHT"] = 8] = "EIGHT";
|
|
151
|
+
Grade2[Grade2["NINE"] = 9] = "NINE";
|
|
152
|
+
Grade2[Grade2["TEN"] = 10] = "TEN";
|
|
153
|
+
Grade2[Grade2["ELEVEN"] = 11] = "ELEVEN";
|
|
154
|
+
Grade2[Grade2["TWELVE"] = 12] = "TWELVE";
|
|
155
|
+
Grade2[Grade2["THIRTEEN"] = 13] = "THIRTEEN";
|
|
156
|
+
Grade2[Grade2["ALGEBRA_1"] = 21] = "ALGEBRA_1";
|
|
157
|
+
Grade2[Grade2["GEOMETRY"] = 22] = "GEOMETRY";
|
|
158
|
+
Grade2[Grade2["ALGEBRA_2"] = 23] = "ALGEBRA_2";
|
|
159
|
+
Grade2[Grade2["INTEGRATED_MATH_I"] = 24] = "INTEGRATED_MATH_I";
|
|
160
|
+
Grade2[Grade2["INTEGRATED_MATH_II"] = 25] = "INTEGRATED_MATH_II";
|
|
161
|
+
Grade2[Grade2["INTEGRATED_MATH_III"] = 26] = "INTEGRATED_MATH_III";
|
|
162
|
+
Grade2[Grade2["PRECALCULUS"] = 27] = "PRECALCULUS";
|
|
163
|
+
Grade2["HS"] = "HS";
|
|
164
|
+
Grade2["HSG"] = "HSG";
|
|
165
|
+
Grade2["HSA"] = "HSA";
|
|
166
|
+
Grade2["HSS"] = "HSS";
|
|
167
|
+
Grade2["HSF"] = "HSF";
|
|
168
|
+
Grade2["HSN"] = "HSN";
|
|
169
|
+
Grade2["K"] = "K";
|
|
170
|
+
return Grade2;
|
|
171
|
+
})(Grade || {});
|
|
172
|
+
|
|
173
|
+
// src/shared/constants/numbers.constants.ts
|
|
174
|
+
var NumberDecimalSeparator = /* @__PURE__ */ ((NumberDecimalSeparator2) => {
|
|
175
|
+
NumberDecimalSeparator2["DOT"] = ".";
|
|
176
|
+
NumberDecimalSeparator2["COMMA"] = ",";
|
|
177
|
+
return NumberDecimalSeparator2;
|
|
178
|
+
})(NumberDecimalSeparator || {});
|
|
179
|
+
var NumberGroupingSeparator = /* @__PURE__ */ ((NumberGroupingSeparator2) => {
|
|
180
|
+
NumberGroupingSeparator2["SPACE"] = "space";
|
|
181
|
+
NumberGroupingSeparator2["COMMA"] = "comma";
|
|
182
|
+
NumberGroupingSeparator2["DOT"] = "dot";
|
|
183
|
+
NumberGroupingSeparator2["APOSTROPHE"] = "apostrophe";
|
|
184
|
+
return NumberGroupingSeparator2;
|
|
185
|
+
})(NumberGroupingSeparator || {});
|
|
186
|
+
|
|
187
|
+
// src/shared/constants/languages/languages.constants.ts
|
|
188
|
+
var TTSOverrideSymbol = /* @__PURE__ */ ((TTSOverrideSymbol2) => {
|
|
189
|
+
TTSOverrideSymbol2["POWER"] = "power";
|
|
190
|
+
return TTSOverrideSymbol2;
|
|
191
|
+
})(TTSOverrideSymbol || {});
|
|
192
|
+
var Language = /* @__PURE__ */ ((Language3) => {
|
|
193
|
+
Language3["AFRIKAANS"] = "Afrikaans";
|
|
194
|
+
Language3["ALBANIAN"] = "Albanian";
|
|
195
|
+
Language3["AMHARIC"] = "Amharic";
|
|
196
|
+
Language3["ARABIC"] = "Arabic";
|
|
197
|
+
Language3["ARMENIAN"] = "Armenian";
|
|
198
|
+
Language3["ASSAMESE"] = "Assamese";
|
|
199
|
+
Language3["AYMARA"] = "Aymara";
|
|
200
|
+
Language3["AZERBAIJANI"] = "Azerbaijani";
|
|
201
|
+
Language3["BAMBARA"] = "Bambara";
|
|
202
|
+
Language3["BASQUE"] = "Basque";
|
|
203
|
+
Language3["BELARUSIAN"] = "Belarusian";
|
|
204
|
+
Language3["BENGALI"] = "Bengali";
|
|
205
|
+
Language3["BHOJPURI"] = "Bhojpuri";
|
|
206
|
+
Language3["BOSNIAN"] = "Bosnian";
|
|
207
|
+
Language3["BULGARIAN"] = "Bulgarian";
|
|
208
|
+
Language3["CATALAN"] = "Catalan";
|
|
209
|
+
Language3["CEBUANO"] = "Cebuano";
|
|
210
|
+
Language3["CHINESE_SIMPLIFIED"] = "Chinese (Simplified)";
|
|
211
|
+
Language3["CHINESE_TRADITIONAL"] = "Chinese (Traditional)";
|
|
212
|
+
Language3["CORSICAN"] = "Corsican";
|
|
213
|
+
Language3["CROATIAN"] = "Croatian";
|
|
214
|
+
Language3["CZECH"] = "Czech";
|
|
215
|
+
Language3["DANISH"] = "Danish";
|
|
216
|
+
Language3["DHIVEHI"] = "Dhivehi";
|
|
217
|
+
Language3["DOGRI"] = "Dogri";
|
|
218
|
+
Language3["DUTCH"] = "Dutch";
|
|
219
|
+
Language3["ENGLISH"] = "English";
|
|
220
|
+
Language3["BRITISH_ENGLISH"] = "British English";
|
|
221
|
+
Language3["ESPERANTO"] = "Esperanto";
|
|
222
|
+
Language3["ESTONIAN"] = "Estonian";
|
|
223
|
+
Language3["EWE"] = "Ewe";
|
|
224
|
+
Language3["FINNISH"] = "Finnish";
|
|
225
|
+
Language3["FRENCH"] = "French";
|
|
226
|
+
Language3["FRISIAN"] = "Frisian";
|
|
227
|
+
Language3["GALICIAN"] = "Galician";
|
|
228
|
+
Language3["GEORGIAN"] = "Georgian";
|
|
229
|
+
Language3["GERMAN"] = "German";
|
|
230
|
+
Language3["GREEK"] = "Greek";
|
|
231
|
+
Language3["GUARANI"] = "Guarani";
|
|
232
|
+
Language3["GUJARATI"] = "Gujarati";
|
|
233
|
+
Language3["HAITIAN_CREOLE"] = "Haitian Creole";
|
|
234
|
+
Language3["HAUSA"] = "Hausa";
|
|
235
|
+
Language3["HAWAIIAN"] = "Hawaiian";
|
|
236
|
+
Language3["HEBREW"] = "Hebrew";
|
|
237
|
+
Language3["HINDI"] = "Hindi";
|
|
238
|
+
Language3["HMONG"] = "Hmong";
|
|
239
|
+
Language3["HUNGARIAN"] = "Hungarian";
|
|
240
|
+
Language3["ICELANDIC"] = "Icelandic";
|
|
241
|
+
Language3["IGBO"] = "Igbo";
|
|
242
|
+
Language3["ILOCANO"] = "Ilocano";
|
|
243
|
+
Language3["INDONESIAN"] = "Indonesian";
|
|
244
|
+
Language3["IRISH"] = "Irish";
|
|
245
|
+
Language3["ITALIAN"] = "Italian";
|
|
246
|
+
Language3["JAPANESE"] = "Japanese";
|
|
247
|
+
Language3["JAVANESE"] = "Javanese";
|
|
248
|
+
Language3["KANNADA"] = "Kannada";
|
|
249
|
+
Language3["KAZAKH"] = "Kazakh";
|
|
250
|
+
Language3["KHMER"] = "Khmer";
|
|
251
|
+
Language3["KINYARWANDA"] = "Kinyarwanda";
|
|
252
|
+
Language3["KONKANI"] = "Konkani";
|
|
253
|
+
Language3["KOREAN"] = "Korean";
|
|
254
|
+
Language3["KRIO"] = "Krio";
|
|
255
|
+
Language3["KURDISH"] = "Kurdish";
|
|
256
|
+
Language3["KURDISH_SORANI"] = "Kurdish (Sorani)";
|
|
257
|
+
Language3["KYRGYZ"] = "Kyrgyz";
|
|
258
|
+
Language3["LAO"] = "Lao";
|
|
259
|
+
Language3["LATVIAN"] = "Latvian";
|
|
260
|
+
Language3["LINGALA"] = "Lingala";
|
|
261
|
+
Language3["LITHUANIAN"] = "Lithuanian";
|
|
262
|
+
Language3["LUGANDA"] = "Luganda";
|
|
263
|
+
Language3["LUXEMBOURGISH"] = "Luxembourgish";
|
|
264
|
+
Language3["MACEDONIAN"] = "Macedonian";
|
|
265
|
+
Language3["MAITHILI"] = "Maithili";
|
|
266
|
+
Language3["MALAGASY"] = "Malagasy";
|
|
267
|
+
Language3["MALAY"] = "Malay";
|
|
268
|
+
Language3["MALAYALAM"] = "Malayalam";
|
|
269
|
+
Language3["MALTESE"] = "Maltese";
|
|
270
|
+
Language3["MAORI"] = "Maori";
|
|
271
|
+
Language3["MARATHI"] = "Marathi";
|
|
272
|
+
Language3["MEITEILON_MANIPURI"] = "Meiteilon (Manipuri)";
|
|
273
|
+
Language3["MIZO"] = "Mizo";
|
|
274
|
+
Language3["MONGOLIAN"] = "Mongolian";
|
|
275
|
+
Language3["MYANMAR_BURMESE"] = "Myanmar (Burmese)";
|
|
276
|
+
Language3["NEPALI"] = "Nepali";
|
|
277
|
+
Language3["NORWEGIAN"] = "Norwegian";
|
|
278
|
+
Language3["NYANJA_CHICHEWA"] = "Nyanja (Chichewa)";
|
|
279
|
+
Language3["ODIA_ORIYA"] = "Odia (Oriya)";
|
|
280
|
+
Language3["OROMO"] = "Oromo";
|
|
281
|
+
Language3["PASHTO"] = "Pashto";
|
|
282
|
+
Language3["PERSIAN"] = "Persian (Farsi)";
|
|
283
|
+
Language3["POLISH"] = "Polish";
|
|
284
|
+
Language3["PORTUGUESE_PORTUGAL_BRAZIL"] = "Portuguese (Portugal, Brazil)";
|
|
285
|
+
Language3["PUNJABI"] = "Punjabi";
|
|
286
|
+
Language3["QUECHUA"] = "Quechua";
|
|
287
|
+
Language3["ROMANIAN"] = "Romanian";
|
|
288
|
+
Language3["RUSSIAN"] = "Russian";
|
|
289
|
+
Language3["SAMOAN"] = "Samoan";
|
|
290
|
+
Language3["SANSKRIT"] = "Sanskrit";
|
|
291
|
+
Language3["SCOTS_GAELIC"] = "Scots Gaelic";
|
|
292
|
+
Language3["SEPEDI"] = "Sepedi";
|
|
293
|
+
Language3["SERBIAN"] = "Serbian";
|
|
294
|
+
Language3["SESOTHO"] = "Sesotho";
|
|
295
|
+
Language3["SHONA"] = "Shona";
|
|
296
|
+
Language3["SINDHI"] = "Sindhi";
|
|
297
|
+
Language3["SINHALA_SINHALESE"] = "Sinhala (Sinhalese)";
|
|
298
|
+
Language3["SLOVAK"] = "Slovak";
|
|
299
|
+
Language3["SLOVENIAN"] = "Slovenian";
|
|
300
|
+
Language3["SOMALI"] = "Somali";
|
|
301
|
+
Language3["SPANISH"] = "Spanish";
|
|
302
|
+
Language3["SUNDANESE"] = "Sundanese";
|
|
303
|
+
Language3["SWAHILI"] = "Swahili";
|
|
304
|
+
Language3["SWEDISH"] = "Swedish";
|
|
305
|
+
Language3["TAGALOG_FILIPINO"] = "Tagalog (Filipino)";
|
|
306
|
+
Language3["TAJIK"] = "Tajik";
|
|
307
|
+
Language3["TAMIL"] = "Tamil";
|
|
308
|
+
Language3["TATAR"] = "Tatar";
|
|
309
|
+
Language3["TELUGU"] = "Telugu";
|
|
310
|
+
Language3["THAI"] = "Thai";
|
|
311
|
+
Language3["TIGRINYA"] = "Tigrinya";
|
|
312
|
+
Language3["TSONGA"] = "Tsonga";
|
|
313
|
+
Language3["TURKISH"] = "Turkish";
|
|
314
|
+
Language3["TURKMEN"] = "Turkmen";
|
|
315
|
+
Language3["TWI_AKAN"] = "Twi (Akan)";
|
|
316
|
+
Language3["UKRAINIAN"] = "Ukrainian";
|
|
317
|
+
Language3["URDU"] = "Urdu";
|
|
318
|
+
Language3["UYGHUR"] = "Uyghur";
|
|
319
|
+
Language3["UZBEK"] = "Uzbek";
|
|
320
|
+
Language3["VIETNAMESE"] = "Vietnamese";
|
|
321
|
+
Language3["WELSH"] = "Welsh";
|
|
322
|
+
Language3["XHOSA"] = "Xhosa";
|
|
323
|
+
Language3["YIDDISH"] = "Yiddish";
|
|
324
|
+
Language3["YORUBA"] = "Yoruba";
|
|
325
|
+
Language3["ZULU"] = "Zulu";
|
|
326
|
+
return Language3;
|
|
327
|
+
})(Language || {});
|
|
328
|
+
var LANGUAGES_CONFIG = {
|
|
329
|
+
["Afrikaans" /* AFRIKAANS */]: {
|
|
330
|
+
code: "af",
|
|
331
|
+
voice: {
|
|
332
|
+
code: "af-ZA",
|
|
333
|
+
name: "af-ZA-Standard-A",
|
|
334
|
+
preprocessing: { commaAsSpace: true }
|
|
335
|
+
},
|
|
336
|
+
isMostUsed: true
|
|
337
|
+
},
|
|
338
|
+
["Albanian" /* ALBANIAN */]: { code: "sq", isMostUsed: true },
|
|
339
|
+
["Amharic" /* AMHARIC */]: { code: "am" },
|
|
340
|
+
["Arabic" /* ARABIC */]: {
|
|
341
|
+
code: "ar",
|
|
342
|
+
voice: {
|
|
343
|
+
code: "ar-XA",
|
|
344
|
+
name: "ar-XA-Wavenet-C",
|
|
345
|
+
preprocessing: { commaAsSpace: true }
|
|
346
|
+
},
|
|
347
|
+
isMostUsed: true
|
|
348
|
+
},
|
|
349
|
+
["Armenian" /* ARMENIAN */]: { code: "hy", isMostUsed: true },
|
|
350
|
+
["Assamese" /* ASSAMESE */]: { code: "as" },
|
|
351
|
+
["Aymara" /* AYMARA */]: { code: "ay" },
|
|
352
|
+
["Azerbaijani" /* AZERBAIJANI */]: { code: "az" },
|
|
353
|
+
["Bambara" /* BAMBARA */]: { code: "bm" },
|
|
354
|
+
["Basque" /* BASQUE */]: { code: "eu" },
|
|
355
|
+
["Belarusian" /* BELARUSIAN */]: { code: "be" },
|
|
356
|
+
["Bengali" /* BENGALI */]: {
|
|
357
|
+
code: "bn",
|
|
358
|
+
voice: {
|
|
359
|
+
code: "bn-IN",
|
|
360
|
+
name: "bn-IN-Wavenet-B",
|
|
361
|
+
preprocessing: { commaAsSpace: true }
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
["Bhojpuri" /* BHOJPURI */]: { code: "bho" },
|
|
365
|
+
["Bosnian" /* BOSNIAN */]: { code: "bs" },
|
|
366
|
+
["Bulgarian" /* BULGARIAN */]: {
|
|
367
|
+
code: "bg",
|
|
368
|
+
voice: {
|
|
369
|
+
code: "bg-BG",
|
|
370
|
+
name: "bg-bg-Standard-A",
|
|
371
|
+
preprocessing: { commaAsSpace: true }
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
["Catalan" /* CATALAN */]: {
|
|
375
|
+
code: "ca",
|
|
376
|
+
voice: {
|
|
377
|
+
code: "ca-ES",
|
|
378
|
+
name: "ca-es-Standard-A",
|
|
379
|
+
preprocessing: { commaAsSpace: true }
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
["Cebuano" /* CEBUANO */]: { code: "ceb" },
|
|
383
|
+
["Chinese (Simplified)" /* CHINESE_SIMPLIFIED */]: {
|
|
384
|
+
code: "zh-CN",
|
|
385
|
+
voice: {
|
|
386
|
+
code: "cmn-CN",
|
|
387
|
+
name: "cmn-CN-Wavenet-A",
|
|
388
|
+
preprocessing: { commaAsSpace: true }
|
|
389
|
+
},
|
|
390
|
+
isMostUsed: true
|
|
391
|
+
},
|
|
392
|
+
["Chinese (Traditional)" /* CHINESE_TRADITIONAL */]: {
|
|
393
|
+
code: "zh-TW",
|
|
394
|
+
voice: {
|
|
395
|
+
code: "yue-HK",
|
|
396
|
+
name: "yue-HK-Standard-C",
|
|
397
|
+
preprocessing: { commaAsSpace: true }
|
|
398
|
+
},
|
|
399
|
+
isMostUsed: true
|
|
400
|
+
},
|
|
401
|
+
["Corsican" /* CORSICAN */]: { code: "co" },
|
|
402
|
+
["Croatian" /* CROATIAN */]: { code: "hr" },
|
|
403
|
+
["Czech" /* CZECH */]: {
|
|
404
|
+
code: "cs",
|
|
405
|
+
voice: {
|
|
406
|
+
code: "cs-CZ",
|
|
407
|
+
name: "cs-CZ-Wavenet-A",
|
|
408
|
+
preprocessing: { commaAsSpace: true }
|
|
409
|
+
}
|
|
410
|
+
},
|
|
411
|
+
["Danish" /* DANISH */]: {
|
|
412
|
+
code: "da",
|
|
413
|
+
voice: {
|
|
414
|
+
code: "da-DK",
|
|
415
|
+
name: "da-DK-Wavenet-C",
|
|
416
|
+
preprocessing: { commaAsSpace: true }
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
["Dhivehi" /* DHIVEHI */]: { code: "dv" },
|
|
420
|
+
["Dogri" /* DOGRI */]: { code: "doi" },
|
|
421
|
+
["Dutch" /* DUTCH */]: {
|
|
422
|
+
code: "nl",
|
|
423
|
+
voice: {
|
|
424
|
+
code: "nl-NL",
|
|
425
|
+
name: "nl-NL-Wavenet-C",
|
|
426
|
+
preprocessing: { commaAsSpace: true }
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
["English" /* ENGLISH */]: {
|
|
430
|
+
code: "en",
|
|
431
|
+
voice: {
|
|
432
|
+
code: "en-US",
|
|
433
|
+
name: "en-US-Neural2-F",
|
|
434
|
+
preprocessing: {
|
|
435
|
+
commaAsSpace: true,
|
|
436
|
+
overrides: {
|
|
437
|
+
["power" /* POWER */]: " to the power of "
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
isMostUsed: true
|
|
442
|
+
},
|
|
443
|
+
["British English" /* BRITISH_ENGLISH */]: {
|
|
444
|
+
baseName: "English" /* ENGLISH */,
|
|
445
|
+
code: "en",
|
|
446
|
+
voice: {
|
|
447
|
+
code: "en-GB",
|
|
448
|
+
name: "en-GB-Neural2-F",
|
|
449
|
+
preprocessing: {
|
|
450
|
+
commaAsSpace: true,
|
|
451
|
+
overrides: {
|
|
452
|
+
["power" /* POWER */]: " to the power of "
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
["Esperanto" /* ESPERANTO */]: { code: "eo" },
|
|
458
|
+
["Estonian" /* ESTONIAN */]: { code: "et" },
|
|
459
|
+
["Ewe" /* EWE */]: { code: "ee" },
|
|
460
|
+
["Finnish" /* FINNISH */]: {
|
|
461
|
+
code: "fi",
|
|
462
|
+
voice: {
|
|
463
|
+
code: "fi-FI",
|
|
464
|
+
name: "fi-FI-Wavenet-A",
|
|
465
|
+
preprocessing: { commaAsSpace: true }
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
["French" /* FRENCH */]: {
|
|
469
|
+
code: "fr-CA",
|
|
470
|
+
voice: {
|
|
471
|
+
code: "fr-CA",
|
|
472
|
+
name: "fr-CA-Wavenet-C",
|
|
473
|
+
preprocessing: { commaAsSpace: true }
|
|
474
|
+
},
|
|
475
|
+
isMostUsed: true
|
|
476
|
+
},
|
|
477
|
+
["Frisian" /* FRISIAN */]: { code: "fy" },
|
|
478
|
+
["Galician" /* GALICIAN */]: { code: "gl" },
|
|
479
|
+
["Georgian" /* GEORGIAN */]: { code: "ka" },
|
|
480
|
+
["German" /* GERMAN */]: {
|
|
481
|
+
code: "de",
|
|
482
|
+
voice: {
|
|
483
|
+
code: "de-DE",
|
|
484
|
+
name: "de-DE-Wavenet-C",
|
|
485
|
+
preprocessing: {
|
|
486
|
+
commaAsSpace: false,
|
|
487
|
+
overrides: {
|
|
488
|
+
["power" /* POWER */]: " hoch "
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
isMostUsed: true
|
|
493
|
+
},
|
|
494
|
+
["Greek" /* GREEK */]: {
|
|
495
|
+
code: "el",
|
|
496
|
+
voice: {
|
|
497
|
+
code: "el-GR",
|
|
498
|
+
name: "el-GR-Wavenet-A",
|
|
499
|
+
preprocessing: { commaAsSpace: true }
|
|
500
|
+
},
|
|
501
|
+
isMostUsed: true
|
|
502
|
+
},
|
|
503
|
+
["Guarani" /* GUARANI */]: { code: "gn" },
|
|
504
|
+
["Gujarati" /* GUJARATI */]: {
|
|
505
|
+
code: "gu",
|
|
506
|
+
voice: {
|
|
507
|
+
code: "gu-IN",
|
|
508
|
+
name: "gu-IN-Wavenet-B",
|
|
509
|
+
preprocessing: { commaAsSpace: true }
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
["Haitian Creole" /* HAITIAN_CREOLE */]: { code: "ht", isMostUsed: true },
|
|
513
|
+
["Hausa" /* HAUSA */]: { code: "ha" },
|
|
514
|
+
["Hawaiian" /* HAWAIIAN */]: { code: "haw" },
|
|
515
|
+
["Hebrew" /* HEBREW */]: { code: "he" },
|
|
516
|
+
["Hindi" /* HINDI */]: {
|
|
517
|
+
code: "hi",
|
|
518
|
+
voice: {
|
|
519
|
+
code: "hi-IN",
|
|
520
|
+
name: "hi-IN-Wavenet-C",
|
|
521
|
+
preprocessing: { commaAsSpace: true }
|
|
522
|
+
},
|
|
523
|
+
isMostUsed: true
|
|
524
|
+
},
|
|
525
|
+
["Hmong" /* HMONG */]: { code: "hmn" },
|
|
526
|
+
["Hungarian" /* HUNGARIAN */]: {
|
|
527
|
+
code: "hu",
|
|
528
|
+
voice: {
|
|
529
|
+
code: "hu-HU",
|
|
530
|
+
name: "hu-HU-Wavenet-A",
|
|
531
|
+
preprocessing: { commaAsSpace: true }
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
["Icelandic" /* ICELANDIC */]: {
|
|
535
|
+
code: "is",
|
|
536
|
+
voice: {
|
|
537
|
+
code: "is-IS",
|
|
538
|
+
name: "is-is-Standard-A",
|
|
539
|
+
preprocessing: { commaAsSpace: true }
|
|
540
|
+
},
|
|
541
|
+
isMostUsed: true
|
|
542
|
+
},
|
|
543
|
+
["Igbo" /* IGBO */]: { code: "ig" },
|
|
544
|
+
["Ilocano" /* ILOCANO */]: { code: "ilo" },
|
|
545
|
+
["Indonesian" /* INDONESIAN */]: {
|
|
546
|
+
code: "id",
|
|
547
|
+
voice: {
|
|
548
|
+
code: "id-ID",
|
|
549
|
+
name: "id-ID-Wavenet-C",
|
|
550
|
+
preprocessing: { commaAsSpace: true }
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
["Irish" /* IRISH */]: { code: "ga" },
|
|
554
|
+
["Italian" /* ITALIAN */]: {
|
|
555
|
+
code: "it",
|
|
556
|
+
voice: {
|
|
557
|
+
code: "it-IT",
|
|
558
|
+
name: "it-IT-Wavenet-C",
|
|
559
|
+
preprocessing: { commaAsSpace: true }
|
|
560
|
+
},
|
|
561
|
+
isMostUsed: true
|
|
562
|
+
},
|
|
563
|
+
["Japanese" /* JAPANESE */]: {
|
|
564
|
+
code: "ja",
|
|
565
|
+
voice: {
|
|
566
|
+
code: "ja-JP",
|
|
567
|
+
name: "ja-JP-Wavenet-C",
|
|
568
|
+
preprocessing: { commaAsSpace: true }
|
|
569
|
+
},
|
|
570
|
+
isMostUsed: true
|
|
571
|
+
},
|
|
572
|
+
["Javanese" /* JAVANESE */]: { code: "jv" },
|
|
573
|
+
["Kannada" /* KANNADA */]: {
|
|
574
|
+
code: "kn",
|
|
575
|
+
voice: {
|
|
576
|
+
code: "kn-IN",
|
|
577
|
+
name: "kn-IN-Wavenet-B",
|
|
578
|
+
preprocessing: { commaAsSpace: true }
|
|
579
|
+
}
|
|
580
|
+
},
|
|
581
|
+
["Kazakh" /* KAZAKH */]: { code: "kk" },
|
|
582
|
+
["Khmer" /* KHMER */]: { code: "km" },
|
|
583
|
+
["Kinyarwanda" /* KINYARWANDA */]: { code: "rw" },
|
|
584
|
+
["Konkani" /* KONKANI */]: { code: "gom" },
|
|
585
|
+
["Korean" /* KOREAN */]: {
|
|
586
|
+
code: "ko",
|
|
587
|
+
voice: {
|
|
588
|
+
code: "ko-KR",
|
|
589
|
+
name: "ko-KR-Wavenet-C",
|
|
590
|
+
preprocessing: { commaAsSpace: true }
|
|
591
|
+
},
|
|
592
|
+
isMostUsed: true
|
|
593
|
+
},
|
|
594
|
+
["Krio" /* KRIO */]: { code: "kri" },
|
|
595
|
+
["Kurdish" /* KURDISH */]: { code: "ku" },
|
|
596
|
+
["Kurdish (Sorani)" /* KURDISH_SORANI */]: { code: "ckb" },
|
|
597
|
+
["Kyrgyz" /* KYRGYZ */]: { code: "ky" },
|
|
598
|
+
["Lao" /* LAO */]: { code: "lo" },
|
|
599
|
+
["Latvian" /* LATVIAN */]: {
|
|
600
|
+
code: "lv",
|
|
601
|
+
voice: {
|
|
602
|
+
code: "lv-LV",
|
|
603
|
+
name: "lv-lv-Standard-A",
|
|
604
|
+
preprocessing: { commaAsSpace: true }
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
["Lingala" /* LINGALA */]: { code: "ln" },
|
|
608
|
+
["Lithuanian" /* LITHUANIAN */]: { code: "lt" },
|
|
609
|
+
["Luganda" /* LUGANDA */]: { code: "lg" },
|
|
610
|
+
["Luxembourgish" /* LUXEMBOURGISH */]: { code: "lb" },
|
|
611
|
+
["Macedonian" /* MACEDONIAN */]: { code: "mk" },
|
|
612
|
+
["Maithili" /* MAITHILI */]: { code: "mai" },
|
|
613
|
+
["Malagasy" /* MALAGASY */]: { code: "mg" },
|
|
614
|
+
["Malay" /* MALAY */]: {
|
|
615
|
+
code: "ms",
|
|
616
|
+
voice: {
|
|
617
|
+
code: "ms-MY",
|
|
618
|
+
name: "ms-MY-Wavenet-C",
|
|
619
|
+
preprocessing: { commaAsSpace: true }
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
["Malayalam" /* MALAYALAM */]: {
|
|
623
|
+
code: "ml",
|
|
624
|
+
voice: {
|
|
625
|
+
code: "ml-IN",
|
|
626
|
+
name: "ml-IN-Wavenet-B",
|
|
627
|
+
preprocessing: { commaAsSpace: true }
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
["Maltese" /* MALTESE */]: { code: "mt" },
|
|
631
|
+
["Maori" /* MAORI */]: { code: "mi" },
|
|
632
|
+
["Marathi" /* MARATHI */]: { code: "mr" },
|
|
633
|
+
["Meiteilon (Manipuri)" /* MEITEILON_MANIPURI */]: { code: "mni-Mtei" },
|
|
634
|
+
["Mizo" /* MIZO */]: { code: "lus" },
|
|
635
|
+
["Mongolian" /* MONGOLIAN */]: { code: "mn" },
|
|
636
|
+
["Myanmar (Burmese)" /* MYANMAR_BURMESE */]: { code: "my" },
|
|
637
|
+
["Nepali" /* NEPALI */]: { code: "ne" },
|
|
638
|
+
["Norwegian" /* NORWEGIAN */]: {
|
|
639
|
+
code: "no",
|
|
640
|
+
voice: {
|
|
641
|
+
code: "nb-NO",
|
|
642
|
+
name: "nb-NO-Wavenet-C",
|
|
643
|
+
preprocessing: { commaAsSpace: true }
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
["Nyanja (Chichewa)" /* NYANJA_CHICHEWA */]: { code: "ny" },
|
|
647
|
+
["Odia (Oriya)" /* ODIA_ORIYA */]: { code: "or" },
|
|
648
|
+
["Oromo" /* OROMO */]: { code: "om" },
|
|
649
|
+
["Pashto" /* PASHTO */]: { code: "ps" },
|
|
650
|
+
["Persian (Farsi)" /* PERSIAN */]: { code: "fa" },
|
|
651
|
+
["Polish" /* POLISH */]: {
|
|
652
|
+
code: "pl",
|
|
653
|
+
voice: {
|
|
654
|
+
code: "pl-PL",
|
|
655
|
+
name: "pl-PL-Wavenet-C",
|
|
656
|
+
preprocessing: { commaAsSpace: true }
|
|
657
|
+
},
|
|
658
|
+
isMostUsed: true
|
|
659
|
+
},
|
|
660
|
+
["Portuguese (Portugal, Brazil)" /* PORTUGUESE_PORTUGAL_BRAZIL */]: {
|
|
661
|
+
code: "pt",
|
|
662
|
+
voice: {
|
|
663
|
+
code: "pt-PT",
|
|
664
|
+
name: "pt-PT-Wavenet-C",
|
|
665
|
+
preprocessing: { commaAsSpace: true }
|
|
666
|
+
},
|
|
667
|
+
isMostUsed: true
|
|
668
|
+
},
|
|
669
|
+
["Punjabi" /* PUNJABI */]: {
|
|
670
|
+
code: "pa",
|
|
671
|
+
voice: {
|
|
672
|
+
code: "pa-IN",
|
|
673
|
+
name: "pa-IN-Wavenet-C",
|
|
674
|
+
preprocessing: { commaAsSpace: true }
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
["Quechua" /* QUECHUA */]: { code: "qu" },
|
|
678
|
+
["Romanian" /* ROMANIAN */]: {
|
|
679
|
+
code: "ro",
|
|
680
|
+
voice: {
|
|
681
|
+
code: "ro-RO",
|
|
682
|
+
name: "ro-RO-Wavenet-A",
|
|
683
|
+
preprocessing: { commaAsSpace: true }
|
|
684
|
+
}
|
|
685
|
+
},
|
|
686
|
+
["Russian" /* RUSSIAN */]: {
|
|
687
|
+
code: "ru",
|
|
688
|
+
voice: {
|
|
689
|
+
code: "ru-RU",
|
|
690
|
+
name: "ru-RU-Wavenet-C",
|
|
691
|
+
preprocessing: { commaAsSpace: true }
|
|
692
|
+
},
|
|
693
|
+
isMostUsed: true
|
|
694
|
+
},
|
|
695
|
+
["Samoan" /* SAMOAN */]: { code: "sm" },
|
|
696
|
+
["Sanskrit" /* SANSKRIT */]: { code: "sa" },
|
|
697
|
+
["Scots Gaelic" /* SCOTS_GAELIC */]: { code: "gd" },
|
|
698
|
+
["Sepedi" /* SEPEDI */]: { code: "nso" },
|
|
699
|
+
["Serbian" /* SERBIAN */]: {
|
|
700
|
+
code: "sr",
|
|
701
|
+
voice: {
|
|
702
|
+
code: "sr-RS",
|
|
703
|
+
name: "sr-rs-Standard-A",
|
|
704
|
+
preprocessing: { commaAsSpace: true }
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
["Sesotho" /* SESOTHO */]: { code: "st" },
|
|
708
|
+
["Shona" /* SHONA */]: { code: "sn" },
|
|
709
|
+
["Sindhi" /* SINDHI */]: { code: "sd" },
|
|
710
|
+
["Sinhala (Sinhalese)" /* SINHALA_SINHALESE */]: { code: "si" },
|
|
711
|
+
["Slovak" /* SLOVAK */]: {
|
|
712
|
+
code: "sk",
|
|
713
|
+
voice: {
|
|
714
|
+
code: "sk-SK",
|
|
715
|
+
name: "sk-SK-Wavenet-A",
|
|
716
|
+
preprocessing: { commaAsSpace: true }
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
["Slovenian" /* SLOVENIAN */]: { code: "sl" },
|
|
720
|
+
["Somali" /* SOMALI */]: { code: "so" },
|
|
721
|
+
["Spanish" /* SPANISH */]: {
|
|
722
|
+
code: "es",
|
|
723
|
+
voice: {
|
|
724
|
+
code: "es-US",
|
|
725
|
+
name: "es-US-Neural2-A",
|
|
726
|
+
preprocessing: { commaAsSpace: true }
|
|
727
|
+
},
|
|
728
|
+
isMostUsed: true
|
|
729
|
+
},
|
|
730
|
+
["Sundanese" /* SUNDANESE */]: { code: "su" },
|
|
731
|
+
["Swahili" /* SWAHILI */]: { code: "sw" },
|
|
732
|
+
["Swedish" /* SWEDISH */]: {
|
|
733
|
+
code: "sv",
|
|
734
|
+
voice: {
|
|
735
|
+
code: "sv-SE",
|
|
736
|
+
name: "sv-SE-Wavenet-D",
|
|
737
|
+
preprocessing: {
|
|
738
|
+
commaAsSpace: false,
|
|
739
|
+
overrides: {
|
|
740
|
+
["power" /* POWER */]: " upph\xF6jt med "
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
isMostUsed: true
|
|
745
|
+
},
|
|
746
|
+
["Tagalog (Filipino)" /* TAGALOG_FILIPINO */]: { code: "tl" },
|
|
747
|
+
["Tajik" /* TAJIK */]: { code: "tg" },
|
|
748
|
+
["Tamil" /* TAMIL */]: {
|
|
749
|
+
code: "ta",
|
|
750
|
+
voice: {
|
|
751
|
+
code: "ta-IN",
|
|
752
|
+
name: "ta-IN-Wavenet-B",
|
|
753
|
+
preprocessing: { commaAsSpace: true }
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
["Tatar" /* TATAR */]: { code: "tt" },
|
|
757
|
+
["Telugu" /* TELUGU */]: {
|
|
758
|
+
code: "te",
|
|
759
|
+
voice: {
|
|
760
|
+
code: "te-IN",
|
|
761
|
+
name: "te-IN-Standard-B",
|
|
762
|
+
preprocessing: { commaAsSpace: true }
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
["Thai" /* THAI */]: {
|
|
766
|
+
code: "th",
|
|
767
|
+
voice: {
|
|
768
|
+
code: "th-TH",
|
|
769
|
+
name: "th-TH-Standard-A",
|
|
770
|
+
preprocessing: { commaAsSpace: true }
|
|
771
|
+
}
|
|
772
|
+
},
|
|
773
|
+
["Tigrinya" /* TIGRINYA */]: { code: "ti" },
|
|
774
|
+
["Tsonga" /* TSONGA */]: { code: "ts" },
|
|
775
|
+
["Turkish" /* TURKISH */]: {
|
|
776
|
+
code: "tr",
|
|
777
|
+
voice: {
|
|
778
|
+
code: "tr-TR",
|
|
779
|
+
name: "tr-TR-Wavenet-C",
|
|
780
|
+
preprocessing: { commaAsSpace: true }
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
["Turkmen" /* TURKMEN */]: { code: "tk" },
|
|
784
|
+
["Twi (Akan)" /* TWI_AKAN */]: { code: "ak" },
|
|
785
|
+
["Ukrainian" /* UKRAINIAN */]: {
|
|
786
|
+
code: "uk",
|
|
787
|
+
voice: {
|
|
788
|
+
code: "uk-UA",
|
|
789
|
+
name: "uk-UA-Wavenet-A",
|
|
790
|
+
preprocessing: { commaAsSpace: true }
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
["Urdu" /* URDU */]: { code: "ur" },
|
|
794
|
+
["Uyghur" /* UYGHUR */]: { code: "ug" },
|
|
795
|
+
["Uzbek" /* UZBEK */]: { code: "uz" },
|
|
796
|
+
["Vietnamese" /* VIETNAMESE */]: {
|
|
797
|
+
code: "vi",
|
|
798
|
+
voice: {
|
|
799
|
+
code: "vi-VN",
|
|
800
|
+
name: "vi-VN-Wavenet-C",
|
|
801
|
+
preprocessing: { commaAsSpace: true }
|
|
802
|
+
}
|
|
803
|
+
},
|
|
804
|
+
["Welsh" /* WELSH */]: { code: "cy" },
|
|
805
|
+
["Xhosa" /* XHOSA */]: { code: "xh" },
|
|
806
|
+
["Yiddish" /* YIDDISH */]: { code: "yi" },
|
|
807
|
+
["Yoruba" /* YORUBA */]: { code: "yo" },
|
|
808
|
+
["Zulu" /* ZULU */]: { code: "zu", isMostUsed: true }
|
|
809
|
+
};
|
|
810
|
+
var PRIORITY_LANGUAGES = [
|
|
811
|
+
"Spanish" /* SPANISH */,
|
|
812
|
+
"Armenian" /* ARMENIAN */,
|
|
813
|
+
"French" /* FRENCH */,
|
|
814
|
+
"Arabic" /* ARABIC */,
|
|
815
|
+
"Russian" /* RUSSIAN */
|
|
816
|
+
];
|
|
817
|
+
var MOST_USED_LANGUAGES = Object.entries(LANGUAGES_CONFIG).filter(([, data]) => data.isMostUsed).map(([name]) => name);
|
|
818
|
+
var LANGUAGES_LIST = [.../* @__PURE__ */ new Set([...PRIORITY_LANGUAGES, ...Object.keys(LANGUAGES_CONFIG)])];
|
|
819
|
+
|
|
820
|
+
// src/shared/constants/tree.constants.ts
|
|
821
|
+
var TreeLevel = /* @__PURE__ */ ((TreeLevel2) => {
|
|
822
|
+
TreeLevel2[TreeLevel2["DOMAIN"] = 0] = "DOMAIN";
|
|
823
|
+
TreeLevel2[TreeLevel2["STANDARD"] = 1] = "STANDARD";
|
|
824
|
+
TreeLevel2[TreeLevel2["SKILL"] = 2] = "SKILL";
|
|
825
|
+
return TreeLevel2;
|
|
826
|
+
})(TreeLevel || {});
|
|
827
|
+
|
|
828
|
+
// src/shared/constants/calendar.constants.ts
|
|
829
|
+
var CalendarLocale = /* @__PURE__ */ ((CalendarLocale2) => {
|
|
830
|
+
CalendarLocale2["EN"] = "en";
|
|
831
|
+
CalendarLocale2["SE"] = "sv";
|
|
832
|
+
CalendarLocale2["DE"] = "de";
|
|
833
|
+
return CalendarLocale2;
|
|
834
|
+
})(CalendarLocale || {});
|
|
835
|
+
var EN_CALENDAR_CONFIG = {
|
|
836
|
+
locale: "en" /* EN */,
|
|
837
|
+
weekFirstDay: 0 /* SUNDAY */,
|
|
838
|
+
monthNames: [
|
|
839
|
+
"January",
|
|
840
|
+
"February",
|
|
841
|
+
"March",
|
|
842
|
+
"April",
|
|
843
|
+
"May",
|
|
844
|
+
"June",
|
|
845
|
+
"July",
|
|
846
|
+
"August",
|
|
847
|
+
"September",
|
|
848
|
+
"October",
|
|
849
|
+
"November",
|
|
850
|
+
"December"
|
|
851
|
+
],
|
|
852
|
+
dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
|
|
853
|
+
dayNamesShort: ["SUN", "MON", "TUE", "WED", "THU", "FRI", "SAT"],
|
|
854
|
+
monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
|
|
855
|
+
today: "Today"
|
|
856
|
+
};
|
|
857
|
+
var SE_CALENDAR_CONFIG = {
|
|
858
|
+
locale: "sv" /* SE */,
|
|
859
|
+
weekFirstDay: 1 /* MONDAY */,
|
|
860
|
+
monthNames: [
|
|
861
|
+
"Januari",
|
|
862
|
+
"Februari",
|
|
863
|
+
"Mars",
|
|
864
|
+
"April",
|
|
865
|
+
"Maj",
|
|
866
|
+
"Juni",
|
|
867
|
+
"Juli",
|
|
868
|
+
"Augusti",
|
|
869
|
+
"September",
|
|
870
|
+
"Oktober",
|
|
871
|
+
"November",
|
|
872
|
+
"December"
|
|
873
|
+
],
|
|
874
|
+
dayNames: ["S\xF6ndag", "M\xE5ndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "L\xF6rdag"],
|
|
875
|
+
dayNamesShort: ["S\xD6N", "M\xC5N", "TIS", "ONS", "TOR", "FRE", "L\xD6R"],
|
|
876
|
+
monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"],
|
|
877
|
+
today: "Imorgon"
|
|
878
|
+
};
|
|
879
|
+
var DE_CALENDAR_CONFIG = {
|
|
880
|
+
locale: "de" /* DE */,
|
|
881
|
+
weekFirstDay: 1 /* MONDAY */,
|
|
882
|
+
monthNames: [
|
|
883
|
+
"Januar",
|
|
884
|
+
"Februar",
|
|
885
|
+
"M\xE4rz",
|
|
886
|
+
"April",
|
|
887
|
+
"Mai",
|
|
888
|
+
"Juni",
|
|
889
|
+
"Juli",
|
|
890
|
+
"August",
|
|
891
|
+
"September",
|
|
892
|
+
"Oktober",
|
|
893
|
+
"November",
|
|
894
|
+
"Dezember"
|
|
895
|
+
],
|
|
896
|
+
dayNames: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
|
|
897
|
+
dayNamesShort: ["SO", "MO", "DI", "MI", "DO", "FR", "SA"],
|
|
898
|
+
monthNamesShort: ["Jan", "Feb", "M\xE4r", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
|
|
899
|
+
today: "Heute"
|
|
900
|
+
};
|
|
901
|
+
|
|
132
902
|
// src/configs/env/env.helpers.ts
|
|
133
903
|
var ENV_BY_BUILD_TARGET = {
|
|
134
904
|
["pluto" /* PLUTO */]: "MARS" /* MARS */,
|
|
@@ -142,6 +912,53 @@ function buildTargetToEnvironment(buildTarget) {
|
|
|
142
912
|
return env;
|
|
143
913
|
}
|
|
144
914
|
|
|
915
|
+
// src/shared/constants/keyboard.constants.ts
|
|
916
|
+
var KeyboardPreset = /* @__PURE__ */ ((KeyboardPreset2) => {
|
|
917
|
+
KeyboardPreset2["DOT_MIXED"] = "DotMixed";
|
|
918
|
+
KeyboardPreset2["DOT_MIXED_ALT"] = "DotMixedAlt";
|
|
919
|
+
KeyboardPreset2["COMMA_METRIC"] = "CommaMetric";
|
|
920
|
+
return KeyboardPreset2;
|
|
921
|
+
})(KeyboardPreset || {});
|
|
922
|
+
var KeyboardCurrencyVariant = /* @__PURE__ */ ((KeyboardCurrencyVariant2) => {
|
|
923
|
+
KeyboardCurrencyVariant2["DOLLAR_CENT"] = "DollarCent";
|
|
924
|
+
KeyboardCurrencyVariant2["POUND_PENCE"] = "PoundPence";
|
|
925
|
+
KeyboardCurrencyVariant2["KRONE_EURO_POUND"] = "KroneEuroPound";
|
|
926
|
+
KeyboardCurrencyVariant2["EURO_DOLLAR_POUND"] = "EuroDollarPound";
|
|
927
|
+
return KeyboardCurrencyVariant2;
|
|
928
|
+
})(KeyboardCurrencyVariant || {});
|
|
929
|
+
var KeyboardTimeVariant = /* @__PURE__ */ ((KeyboardTimeVariant2) => {
|
|
930
|
+
KeyboardTimeVariant2["H12"] = "H12";
|
|
931
|
+
KeyboardTimeVariant2["H24"] = "H24";
|
|
932
|
+
return KeyboardTimeVariant2;
|
|
933
|
+
})(KeyboardTimeVariant || {});
|
|
934
|
+
|
|
935
|
+
// src/shared/constants/problemCreatorKeyboard.constants.ts
|
|
936
|
+
var ProblemCreatorKeyboardPreset = /* @__PURE__ */ ((ProblemCreatorKeyboardPreset2) => {
|
|
937
|
+
ProblemCreatorKeyboardPreset2["DOT_MIXED"] = "DotMixed";
|
|
938
|
+
ProblemCreatorKeyboardPreset2["COMMA_METRIC"] = "CommaMetric";
|
|
939
|
+
return ProblemCreatorKeyboardPreset2;
|
|
940
|
+
})(ProblemCreatorKeyboardPreset || {});
|
|
941
|
+
var ProblemCreatorMathEntryVariant = /* @__PURE__ */ ((ProblemCreatorMathEntryVariant2) => {
|
|
942
|
+
ProblemCreatorMathEntryVariant2["DOLLAR"] = "Dollar";
|
|
943
|
+
ProblemCreatorMathEntryVariant2["KRONE"] = "Krone";
|
|
944
|
+
ProblemCreatorMathEntryVariant2["POUND_PENCE"] = "PoundPence";
|
|
945
|
+
ProblemCreatorMathEntryVariant2["EURO"] = "Euro";
|
|
946
|
+
return ProblemCreatorMathEntryVariant2;
|
|
947
|
+
})(ProblemCreatorMathEntryVariant || {});
|
|
948
|
+
var ProblemCreatorDescriptionVariant = /* @__PURE__ */ ((ProblemCreatorDescriptionVariant2) => {
|
|
949
|
+
ProblemCreatorDescriptionVariant2["EXTENDED_MULT_BASIC_ROOTS"] = "ExtendedMultBasicRoots";
|
|
950
|
+
ProblemCreatorDescriptionVariant2["DOT_EXTENDED_ROOTS"] = "DotExtendedRoots";
|
|
951
|
+
ProblemCreatorDescriptionVariant2["DOT_BASIC_ROOTS"] = "DotBasicRoots";
|
|
952
|
+
return ProblemCreatorDescriptionVariant2;
|
|
953
|
+
})(ProblemCreatorDescriptionVariant || {});
|
|
954
|
+
|
|
955
|
+
// src/shared/constants/mathSymbols.constants.ts
|
|
956
|
+
var MultiplicationSymbol = /* @__PURE__ */ ((MultiplicationSymbol2) => {
|
|
957
|
+
MultiplicationSymbol2["CDOT"] = "CDOT";
|
|
958
|
+
MultiplicationSymbol2["TIMES"] = "TIMES";
|
|
959
|
+
return MultiplicationSymbol2;
|
|
960
|
+
})(MultiplicationSymbol || {});
|
|
961
|
+
|
|
145
962
|
// src/configs/env/platform.urls.ts
|
|
146
963
|
var PLATFORM_URLS = {
|
|
147
964
|
MARS: {
|
|
@@ -1126,7 +1943,8 @@ var ENV_MOBILE_COMMON_MARS = {
|
|
|
1126
1943
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1127
1944
|
GOOGLE_TEXT_TO_SPEECH_URL: "https://texttospeech.googleapis.com/v1beta1/text:synthesize",
|
|
1128
1945
|
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1129
|
-
SIGN_UP_BOOKING_ONBOARDING: "https://meetings-eu1.hubspot.com/meetings/martin-persson/onboarding-meeting?embed=true"
|
|
1946
|
+
SIGN_UP_BOOKING_ONBOARDING: "https://meetings-eu1.hubspot.com/meetings/martin-persson/onboarding-meeting?embed=true",
|
|
1947
|
+
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use"
|
|
1130
1948
|
};
|
|
1131
1949
|
|
|
1132
1950
|
// src/configs/env/mobile/us/env.us.mars.ts
|
|
@@ -1159,7 +1977,8 @@ var ENV_MOBILE_SE_MARS = {
|
|
|
1159
1977
|
MICROSOFT_AUTH: "https://api.mars.matteappen.se/v2/auth/microsoft",
|
|
1160
1978
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/trial/ds/?entityID=TestMatteappen",
|
|
1161
1979
|
SKOLON_AUTH: "https://api.mars.matteappen.se/v2/auth/skolon",
|
|
1162
|
-
PROBLEM_CREATOR_URL: "https://teachers.mars.matteappen.se/content/react-native/problems/add"
|
|
1980
|
+
PROBLEM_CREATOR_URL: "https://teachers.mars.matteappen.se/content/react-native/problems/add",
|
|
1981
|
+
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal"
|
|
1163
1982
|
};
|
|
1164
1983
|
|
|
1165
1984
|
// src/configs/env/mobile/gb/env.gb.mars.ts
|
|
@@ -1239,7 +2058,8 @@ var ENV_MOBILE_COMMON_PROD = {
|
|
|
1239
2058
|
GOOGLE_API_KEY: "AIzaSyCJBFfT3AjV1WjitLfO0ub40WMlSSGooMc",
|
|
1240
2059
|
GOOGLE_TEXT_TO_SPEECH_URL: "https://texttospeech.googleapis.com/v1beta1/text:synthesize",
|
|
1241
2060
|
GOOGLE_TRANSLATE_URL: "https://translation.googleapis.com/language/translate/v2",
|
|
1242
|
-
SIGN_UP_BOOKING_ONBOARDING: "https://meetings-eu1.hubspot.com/meetings/martin-persson/onboarding-meeting?embed=true"
|
|
2061
|
+
SIGN_UP_BOOKING_ONBOARDING: "https://meetings-eu1.hubspot.com/meetings/martin-persson/onboarding-meeting?embed=true",
|
|
2062
|
+
TOS_URL: "https://www.magmamath.com/legal-documents/terms-of-use"
|
|
1243
2063
|
};
|
|
1244
2064
|
|
|
1245
2065
|
// src/configs/env/mobile/us/env.us.prod.ts
|
|
@@ -1272,7 +2092,8 @@ var ENV_MOBILE_SE_PROD = {
|
|
|
1272
2092
|
MICROSOFT_AUTH: "https://api.matteappen.se/v2/auth/microsoft",
|
|
1273
2093
|
SKOLFEDERATION_AUTH: "https://fed.skolfederation.se/prod/ds/?entityID=https://matteappen.se",
|
|
1274
2094
|
SKOLON_AUTH: "https://api.matteappen.se/v2/auth/skolon",
|
|
1275
|
-
PROBLEM_CREATOR_URL: "https://teachers.matteappen.se/content/react-native/problems/add"
|
|
2095
|
+
PROBLEM_CREATOR_URL: "https://teachers.matteappen.se/content/react-native/problems/add",
|
|
2096
|
+
TOS_URL: "https://www.magma.se/legala-dokument/anvandaravtal"
|
|
1276
2097
|
};
|
|
1277
2098
|
|
|
1278
2099
|
// src/configs/env/mobile/gb/env.gb.prod.ts
|
|
@@ -1534,809 +2355,765 @@ var ENV_PRESET = {
|
|
|
1534
2355
|
}
|
|
1535
2356
|
};
|
|
1536
2357
|
|
|
1537
|
-
// src/configs/locale/
|
|
1538
|
-
var
|
|
2358
|
+
// src/configs/locale/_shared/dates/locale/dates.us.ts
|
|
2359
|
+
var DATE_CONFIG_US = {
|
|
2360
|
+
use24HourFormat: false,
|
|
2361
|
+
locale: DateLocale.US,
|
|
2362
|
+
momentLocale: MomentDateLocale.GB,
|
|
2363
|
+
formats: {
|
|
2364
|
+
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2365
|
+
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
2366
|
+
monthDayTime: "MMM D hh:mm A" /* MONTH_DAY_TIME_US */,
|
|
2367
|
+
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2368
|
+
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2369
|
+
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2370
|
+
}
|
|
2371
|
+
};
|
|
2372
|
+
|
|
2373
|
+
// src/configs/locale/_shared/dates/locale/dates.se.ts
|
|
2374
|
+
var DATE_CONFIG_SE = {
|
|
2375
|
+
use24HourFormat: true,
|
|
2376
|
+
locale: DateLocale.SV,
|
|
2377
|
+
momentLocale: MomentDateLocale.SE,
|
|
2378
|
+
formats: {
|
|
2379
|
+
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
2380
|
+
dayMonthYear: "DD-MM-YYYY" /* DAY_MONTH_YEAR */,
|
|
2381
|
+
monthDayTime: "MMM D HH:mm" /* MONTH_DAY_TIME */,
|
|
2382
|
+
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
2383
|
+
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
2384
|
+
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
2385
|
+
}
|
|
2386
|
+
};
|
|
2387
|
+
|
|
2388
|
+
// src/configs/locale/_shared/dates/locale/dates.gb.ts
|
|
2389
|
+
var DATE_CONFIG_GB = {
|
|
2390
|
+
use24HourFormat: false,
|
|
2391
|
+
locale: DateLocale.GB,
|
|
2392
|
+
momentLocale: MomentDateLocale.GB,
|
|
2393
|
+
formats: {
|
|
2394
|
+
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2395
|
+
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
2396
|
+
monthDayTime: "MMM D hh:mm A" /* MONTH_DAY_TIME_US */,
|
|
2397
|
+
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2398
|
+
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2399
|
+
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2400
|
+
}
|
|
2401
|
+
};
|
|
2402
|
+
|
|
2403
|
+
// src/configs/locale/_shared/dates/locale/dates.de.ts
|
|
2404
|
+
var DATE_CONFIG_DE = {
|
|
2405
|
+
use24HourFormat: true,
|
|
2406
|
+
locale: DateLocale.DE,
|
|
2407
|
+
momentLocale: MomentDateLocale.DE,
|
|
2408
|
+
formats: {
|
|
2409
|
+
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
2410
|
+
dayMonthYear: "DD-MM-YYYY" /* DAY_MONTH_YEAR */,
|
|
2411
|
+
monthDayTime: "MMM D HH:mm" /* MONTH_DAY_TIME */,
|
|
2412
|
+
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
2413
|
+
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
2414
|
+
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
2415
|
+
}
|
|
2416
|
+
};
|
|
2417
|
+
|
|
2418
|
+
// src/configs/locale/_shared/dates/locale/dates.ca.ts
|
|
2419
|
+
var DATE_CONFIG_CA = {
|
|
2420
|
+
use24HourFormat: false,
|
|
2421
|
+
locale: DateLocale.CA,
|
|
2422
|
+
momentLocale: MomentDateLocale.GB,
|
|
2423
|
+
formats: {
|
|
2424
|
+
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2425
|
+
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
2426
|
+
monthDayTime: "MMM D hh:mm A" /* MONTH_DAY_TIME_US */,
|
|
2427
|
+
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2428
|
+
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2429
|
+
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2430
|
+
}
|
|
2431
|
+
};
|
|
2432
|
+
|
|
2433
|
+
// src/configs/locale/_shared/dates/locale/dates.sct.ts
|
|
2434
|
+
var DATE_CONFIG_SCT = {
|
|
2435
|
+
use24HourFormat: false,
|
|
2436
|
+
locale: DateLocale.SCT,
|
|
2437
|
+
momentLocale: MomentDateLocale.GB,
|
|
2438
|
+
formats: {
|
|
2439
|
+
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2440
|
+
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
2441
|
+
monthDayTime: "MMM D hh:mm A" /* MONTH_DAY_TIME_US */,
|
|
2442
|
+
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2443
|
+
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2444
|
+
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2445
|
+
}
|
|
2446
|
+
};
|
|
2447
|
+
|
|
2448
|
+
// src/configs/locale/_shared/grades/locale/grades.us.ts
|
|
2449
|
+
var GRADES_CONFIG_US = {
|
|
2450
|
+
primary: {
|
|
2451
|
+
[-1 /* OTHER */]: { name: "Other" },
|
|
2452
|
+
["K" /* K */]: { name: "K", displayOnly: true },
|
|
2453
|
+
[0 /* ZERO */]: { name: "K" },
|
|
2454
|
+
[1 /* ONE */]: { name: "1" },
|
|
2455
|
+
[2 /* TWO */]: { name: "2" },
|
|
2456
|
+
[3 /* THREE */]: { name: "3" },
|
|
2457
|
+
[4 /* FOUR */]: { name: "4" },
|
|
2458
|
+
[5 /* FIVE */]: { name: "5" },
|
|
2459
|
+
[6 /* SIX */]: { name: "6" },
|
|
2460
|
+
[7 /* SEVEN */]: { name: "7" },
|
|
2461
|
+
[8 /* EIGHT */]: { name: "8" }
|
|
2462
|
+
},
|
|
2463
|
+
highSchool: {
|
|
2464
|
+
[9 /* NINE */]: { name: "9", displayOnly: true, excludeFromPieChart: true },
|
|
2465
|
+
// Grades from 9 to 12 are deprecated and has been replaced with algebra etc.
|
|
2466
|
+
[10 /* TEN */]: { name: "10", displayOnly: true, excludeFromPieChart: true },
|
|
2467
|
+
[11 /* ELEVEN */]: { name: "11", displayOnly: true, excludeFromPieChart: true },
|
|
2468
|
+
[12 /* TWELVE */]: { name: "12", displayOnly: true, excludeFromPieChart: true },
|
|
2469
|
+
[21 /* ALGEBRA_1 */]: { name: "Algebra 1", noPrefix: true },
|
|
2470
|
+
[22 /* GEOMETRY */]: { name: "Geometry", noPrefix: true },
|
|
2471
|
+
[23 /* ALGEBRA_2 */]: { name: "Algebra 2", noPrefix: true },
|
|
2472
|
+
[24 /* INTEGRATED_MATH_I */]: { name: "Integrated Math I", noPrefix: true },
|
|
2473
|
+
[25 /* INTEGRATED_MATH_II */]: { name: "Integrated Math II", noPrefix: true },
|
|
2474
|
+
[26 /* INTEGRATED_MATH_III */]: { name: "Integrated Math III", noPrefix: true },
|
|
2475
|
+
[27 /* PRECALCULUS */]: { name: "Precalculus", noPrefix: true },
|
|
2476
|
+
["HS" /* HS */]: { name: "HS", displayOnly: true },
|
|
2477
|
+
["HSG" /* HSG */]: { name: "HSG", displayOnly: true },
|
|
2478
|
+
["HSA" /* HSA */]: { name: "HSA", displayOnly: true },
|
|
2479
|
+
["HSS" /* HSS */]: { name: "HSS", displayOnly: true },
|
|
2480
|
+
["HSF" /* HSF */]: { name: "HSF", displayOnly: true },
|
|
2481
|
+
["HSN" /* HSN */]: { name: "HSN", displayOnly: true }
|
|
2482
|
+
}
|
|
2483
|
+
};
|
|
2484
|
+
|
|
2485
|
+
// src/configs/locale/_shared/grades/locale/grades.se.ts
|
|
2486
|
+
var GRADES_CONFIG_SE = {
|
|
2487
|
+
primary: {
|
|
2488
|
+
[-1 /* OTHER */]: { name: "\xD6vrigt" },
|
|
2489
|
+
[0 /* ZERO */]: { name: "F" },
|
|
2490
|
+
[1 /* ONE */]: { name: "1" },
|
|
2491
|
+
[2 /* TWO */]: { name: "2" },
|
|
2492
|
+
[3 /* THREE */]: { name: "3" },
|
|
2493
|
+
[4 /* FOUR */]: { name: "4" },
|
|
2494
|
+
[5 /* FIVE */]: { name: "5" },
|
|
2495
|
+
[6 /* SIX */]: { name: "6" },
|
|
2496
|
+
[7 /* SEVEN */]: { name: "7" },
|
|
2497
|
+
[8 /* EIGHT */]: { name: "8" },
|
|
2498
|
+
[9 /* NINE */]: { name: "9" },
|
|
2499
|
+
[10 /* TEN */]: { name: "Mate\xADmatik 1", noPrefix: true },
|
|
2500
|
+
[11 /* ELEVEN */]: { name: "Mate\xADmatik 2", noPrefix: true },
|
|
2501
|
+
[12 /* TWELVE */]: { name: "Mate\xADmatik 3", noPrefix: true }
|
|
2502
|
+
},
|
|
2503
|
+
highSchool: {}
|
|
2504
|
+
};
|
|
2505
|
+
|
|
2506
|
+
// src/configs/locale/_shared/grades/locale/grades.gb.ts
|
|
2507
|
+
var GRADES_CONFIG_GB = {
|
|
2508
|
+
primary: {
|
|
2509
|
+
[-1 /* OTHER */]: { name: "Other" },
|
|
2510
|
+
[0 /* ZERO */]: { name: "R" },
|
|
2511
|
+
[1 /* ONE */]: { name: "1" },
|
|
2512
|
+
[2 /* TWO */]: { name: "2" },
|
|
2513
|
+
[3 /* THREE */]: { name: "3" },
|
|
2514
|
+
[4 /* FOUR */]: { name: "4" },
|
|
2515
|
+
[5 /* FIVE */]: { name: "5" },
|
|
2516
|
+
[6 /* SIX */]: { name: "6" },
|
|
2517
|
+
[7 /* SEVEN */]: { name: "7" },
|
|
2518
|
+
[8 /* EIGHT */]: { name: "8" },
|
|
2519
|
+
[9 /* NINE */]: { name: "9" },
|
|
2520
|
+
[10 /* TEN */]: { name: "10" },
|
|
2521
|
+
[11 /* ELEVEN */]: { name: "11" },
|
|
2522
|
+
[12 /* TWELVE */]: { name: "12" }
|
|
2523
|
+
},
|
|
2524
|
+
highSchool: {}
|
|
2525
|
+
};
|
|
2526
|
+
|
|
2527
|
+
// src/configs/locale/_shared/grades/locale/grades.de.ts
|
|
2528
|
+
var GRADES_CONFIG_DE = {
|
|
2529
|
+
primary: {
|
|
2530
|
+
[-1 /* OTHER */]: { name: "Sonstiges" },
|
|
2531
|
+
[0 /* ZERO */]: { name: "K" },
|
|
2532
|
+
[1 /* ONE */]: { name: "1" },
|
|
2533
|
+
[2 /* TWO */]: { name: "2" },
|
|
2534
|
+
[3 /* THREE */]: { name: "3" },
|
|
2535
|
+
[4 /* FOUR */]: { name: "4" },
|
|
2536
|
+
[5 /* FIVE */]: { name: "5" },
|
|
2537
|
+
[6 /* SIX */]: { name: "6" },
|
|
2538
|
+
[7 /* SEVEN */]: { name: "7" },
|
|
2539
|
+
[8 /* EIGHT */]: { name: "8" },
|
|
2540
|
+
[9 /* NINE */]: { name: "9" },
|
|
2541
|
+
[10 /* TEN */]: { name: "10" },
|
|
2542
|
+
[11 /* ELEVEN */]: { name: "11" },
|
|
2543
|
+
[12 /* TWELVE */]: { name: "12" },
|
|
2544
|
+
[13 /* THIRTEEN */]: { name: "13" }
|
|
2545
|
+
},
|
|
2546
|
+
highSchool: {}
|
|
2547
|
+
};
|
|
2548
|
+
|
|
2549
|
+
// src/configs/locale/_shared/grades/locale/grades.ca.ts
|
|
2550
|
+
var GRADES_CONFIG_CA = {
|
|
2551
|
+
primary: {
|
|
2552
|
+
[-1 /* OTHER */]: { name: "Other" },
|
|
2553
|
+
[0 /* ZERO */]: { name: "K" },
|
|
2554
|
+
[1 /* ONE */]: { name: "1" },
|
|
2555
|
+
[2 /* TWO */]: { name: "2" },
|
|
2556
|
+
[3 /* THREE */]: { name: "3" },
|
|
2557
|
+
[4 /* FOUR */]: { name: "4" },
|
|
2558
|
+
[5 /* FIVE */]: { name: "5" },
|
|
2559
|
+
[6 /* SIX */]: { name: "6" },
|
|
2560
|
+
[7 /* SEVEN */]: { name: "7" },
|
|
2561
|
+
[8 /* EIGHT */]: { name: "8" }
|
|
2562
|
+
},
|
|
2563
|
+
highSchool: {
|
|
2564
|
+
[9 /* NINE */]: { name: "9" },
|
|
2565
|
+
[10 /* TEN */]: { name: "10" },
|
|
2566
|
+
[11 /* ELEVEN */]: { name: "11" },
|
|
2567
|
+
[12 /* TWELVE */]: { name: "12" }
|
|
2568
|
+
}
|
|
2569
|
+
};
|
|
2570
|
+
|
|
2571
|
+
// src/configs/locale/_shared/grades/locale/grades.sct.ts
|
|
2572
|
+
var GRADES_CONFIG_SCT = {
|
|
2573
|
+
primary: {
|
|
2574
|
+
[-1 /* OTHER */]: { name: "Other", noPrefix: true },
|
|
2575
|
+
[0 /* ZERO */]: { name: "P0", noPrefix: true, displayOnly: true },
|
|
2576
|
+
[1 /* ONE */]: { name: "P1", noPrefix: true },
|
|
2577
|
+
[2 /* TWO */]: { name: "P2", noPrefix: true },
|
|
2578
|
+
[3 /* THREE */]: { name: "P3", noPrefix: true },
|
|
2579
|
+
[4 /* FOUR */]: { name: "P4", noPrefix: true },
|
|
2580
|
+
[5 /* FIVE */]: { name: "P5", noPrefix: true },
|
|
2581
|
+
[6 /* SIX */]: { name: "P6", noPrefix: true },
|
|
2582
|
+
[7 /* SEVEN */]: { name: "P7", noPrefix: true },
|
|
2583
|
+
[8 /* EIGHT */]: { name: "S1", noPrefix: true },
|
|
2584
|
+
[9 /* NINE */]: { name: "S2", noPrefix: true },
|
|
2585
|
+
[10 /* TEN */]: { name: "S3", noPrefix: true },
|
|
2586
|
+
[11 /* ELEVEN */]: { name: "S4", noPrefix: true },
|
|
2587
|
+
[12 /* TWELVE */]: { name: "S5", noPrefix: true },
|
|
2588
|
+
[13 /* THIRTEEN */]: { name: "S6", noPrefix: true }
|
|
2589
|
+
},
|
|
2590
|
+
highSchool: {},
|
|
2591
|
+
treeGradeOffset: -1
|
|
2592
|
+
};
|
|
2593
|
+
|
|
2594
|
+
// src/configs/locale/_common/common.us.ts
|
|
2595
|
+
var LOCALE_COMMON_US = {
|
|
1539
2596
|
name: "English",
|
|
1540
2597
|
languageName: "English",
|
|
2598
|
+
country: "United States",
|
|
1541
2599
|
shortCode: "us",
|
|
1542
2600
|
languageHeader: "en-SE;q=1.0, sv-SE;q=0.9",
|
|
1543
2601
|
contentLocale: "en-SE" /* US */,
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
2602
|
+
date: DATE_CONFIG_US,
|
|
2603
|
+
grades: GRADES_CONFIG_US,
|
|
2604
|
+
numberFormatting: {
|
|
2605
|
+
groupingSeparator: "comma" /* COMMA */,
|
|
2606
|
+
decimalSeparator: "." /* DOT */
|
|
2607
|
+
},
|
|
2608
|
+
mathSymbols: {
|
|
2609
|
+
multiplication: "TIMES" /* TIMES */
|
|
2610
|
+
}
|
|
2611
|
+
};
|
|
2612
|
+
|
|
2613
|
+
// src/shared/helpers/languages.helpers.ts
|
|
2614
|
+
var getLanguageConfig = (language) => {
|
|
2615
|
+
const languageCfg = LANGUAGES_CONFIG[language];
|
|
2616
|
+
return {
|
|
2617
|
+
...languageCfg,
|
|
2618
|
+
name: language
|
|
2619
|
+
};
|
|
2620
|
+
};
|
|
2621
|
+
|
|
2622
|
+
// src/configs/locale/students-web/us/locale.us.ts
|
|
2623
|
+
var LOCALE_STUDENTS_US = {
|
|
2624
|
+
...LOCALE_COMMON_US,
|
|
2625
|
+
language: getLanguageConfig("English" /* ENGLISH */),
|
|
2626
|
+
exampleSolutions: {
|
|
2627
|
+
languageName: "English" /* ENGLISH */
|
|
1549
2628
|
},
|
|
1550
2629
|
practiceMode: {
|
|
1551
|
-
|
|
2630
|
+
locale: "en-SE" /* US */,
|
|
1552
2631
|
defaultPracticeTreeId: "66cdf9a95dc55d3a585dc53f"
|
|
1553
2632
|
},
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
voiceNameFallback: "en-US-Wavenet-C"
|
|
1559
|
-
}
|
|
1560
|
-
},
|
|
1561
|
-
translate: {
|
|
1562
|
-
languageCodeFallback: "en"
|
|
1563
|
-
},
|
|
1564
|
-
tts: {
|
|
1565
|
-
replaceCommaWithSpace: true
|
|
1566
|
-
},
|
|
1567
|
-
exampleSolutions: {
|
|
1568
|
-
languageName: "English"
|
|
1569
|
-
},
|
|
1570
|
-
problem: {
|
|
1571
|
-
choiceInputSelector: {
|
|
1572
|
-
useSmallText: true
|
|
1573
|
-
},
|
|
1574
|
-
choiceAnswerFeedback: {
|
|
1575
|
-
useSlimLayout: true
|
|
1576
|
-
},
|
|
1577
|
-
answer: {
|
|
1578
|
-
shortButton: true
|
|
1579
|
-
}
|
|
1580
|
-
},
|
|
1581
|
-
statsTab: {
|
|
1582
|
-
buttonWithMinWidth: false
|
|
1583
|
-
},
|
|
1584
|
-
smartEval: {
|
|
1585
|
-
language: "en-SE"
|
|
2633
|
+
keyboard: {
|
|
2634
|
+
preset: "DotMixed" /* DOT_MIXED */,
|
|
2635
|
+
currencyVariant: "DollarCent" /* DOLLAR_CENT */,
|
|
2636
|
+
timeVariant: "H12" /* H12 */
|
|
1586
2637
|
},
|
|
1587
2638
|
drawboard: {
|
|
1588
2639
|
basicManipulativesMaxGrade: 5
|
|
2640
|
+
},
|
|
2641
|
+
myScript: {
|
|
2642
|
+
enableSolver: false
|
|
2643
|
+
},
|
|
2644
|
+
equationWriter: {
|
|
2645
|
+
replaceBackslashWithQuote: false
|
|
1589
2646
|
}
|
|
1590
2647
|
};
|
|
1591
2648
|
|
|
1592
|
-
// src/configs/locale/
|
|
1593
|
-
var
|
|
2649
|
+
// src/configs/locale/_common/common.se.ts
|
|
2650
|
+
var LOCALE_COMMON_SE = {
|
|
1594
2651
|
name: "Svenska",
|
|
1595
2652
|
languageName: "Swedish",
|
|
2653
|
+
country: "Sweden",
|
|
1596
2654
|
shortCode: "sv",
|
|
1597
2655
|
languageHeader: "sv-SE;q=1.0, en-SE;q=0.9",
|
|
1598
2656
|
contentLocale: "sv-SE" /* SE */,
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
},
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
}
|
|
1615
|
-
},
|
|
1616
|
-
translate: {
|
|
1617
|
-
languageCodeFallback: "sv"
|
|
1618
|
-
},
|
|
1619
|
-
tts: {
|
|
1620
|
-
replaceCommaWithSpace: false
|
|
1621
|
-
},
|
|
2657
|
+
date: DATE_CONFIG_SE,
|
|
2658
|
+
grades: GRADES_CONFIG_SE,
|
|
2659
|
+
numberFormatting: {
|
|
2660
|
+
groupingSeparator: "space" /* SPACE */,
|
|
2661
|
+
decimalSeparator: "," /* COMMA */
|
|
2662
|
+
},
|
|
2663
|
+
mathSymbols: {
|
|
2664
|
+
multiplication: "CDOT" /* CDOT */
|
|
2665
|
+
}
|
|
2666
|
+
};
|
|
2667
|
+
|
|
2668
|
+
// src/configs/locale/students-web/se/locale.se.ts
|
|
2669
|
+
var LOCALE_STUDENTS_SE = {
|
|
2670
|
+
...LOCALE_COMMON_SE,
|
|
2671
|
+
language: getLanguageConfig("Swedish" /* SWEDISH */),
|
|
1622
2672
|
exampleSolutions: {
|
|
1623
|
-
languageName: "Swedish"
|
|
1624
|
-
},
|
|
1625
|
-
problem: {
|
|
1626
|
-
choiceInputSelector: {
|
|
1627
|
-
useSmallText: false
|
|
1628
|
-
},
|
|
1629
|
-
choiceAnswerFeedback: {
|
|
1630
|
-
useSlimLayout: false
|
|
1631
|
-
},
|
|
1632
|
-
answer: {
|
|
1633
|
-
shortButton: false
|
|
1634
|
-
}
|
|
2673
|
+
languageName: "Swedish" /* SWEDISH */
|
|
1635
2674
|
},
|
|
1636
|
-
|
|
1637
|
-
|
|
2675
|
+
practiceMode: {
|
|
2676
|
+
locale: "sv-SE" /* SE */,
|
|
2677
|
+
defaultPracticeTreeId: "66ce025c0594e5f65e8ed5dc",
|
|
2678
|
+
alwaysShowNavigationTab: true
|
|
1638
2679
|
},
|
|
1639
|
-
|
|
1640
|
-
|
|
2680
|
+
keyboard: {
|
|
2681
|
+
preset: "CommaMetric" /* COMMA_METRIC */,
|
|
2682
|
+
currencyVariant: "KroneEuroPound" /* KRONE_EURO_POUND */,
|
|
2683
|
+
timeVariant: "H24" /* H24 */
|
|
1641
2684
|
},
|
|
1642
2685
|
drawboard: {
|
|
1643
2686
|
basicManipulativesMaxGrade: 5
|
|
2687
|
+
},
|
|
2688
|
+
myScript: {
|
|
2689
|
+
enableSolver: true
|
|
2690
|
+
},
|
|
2691
|
+
equationWriter: {
|
|
2692
|
+
replaceBackslashWithQuote: true
|
|
1644
2693
|
}
|
|
1645
2694
|
};
|
|
1646
2695
|
|
|
1647
|
-
// src/configs/locale/
|
|
1648
|
-
var
|
|
2696
|
+
// src/configs/locale/_common/common.gb.ts
|
|
2697
|
+
var LOCALE_COMMON_GB = {
|
|
1649
2698
|
name: "British English",
|
|
1650
2699
|
languageName: "English",
|
|
2700
|
+
country: "United Kingdom",
|
|
1651
2701
|
shortCode: "gb",
|
|
1652
2702
|
languageHeader: "en-GB;q=1.0, en-SE;q=0.9",
|
|
1653
2703
|
contentLocale: "en-GB" /* GB */,
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
2704
|
+
date: DATE_CONFIG_GB,
|
|
2705
|
+
grades: GRADES_CONFIG_GB,
|
|
2706
|
+
numberFormatting: {
|
|
2707
|
+
groupingSeparator: "comma" /* COMMA */,
|
|
2708
|
+
decimalSeparator: "." /* DOT */
|
|
2709
|
+
},
|
|
2710
|
+
mathSymbols: {
|
|
2711
|
+
multiplication: "TIMES" /* TIMES */
|
|
2712
|
+
}
|
|
2713
|
+
};
|
|
2714
|
+
|
|
2715
|
+
// src/configs/locale/students-web/gb/locale.gb.ts
|
|
2716
|
+
var LOCALE_STUDENTS_GB = {
|
|
2717
|
+
...LOCALE_COMMON_GB,
|
|
2718
|
+
language: getLanguageConfig("British English" /* BRITISH_ENGLISH */),
|
|
2719
|
+
exampleSolutions: {
|
|
2720
|
+
languageName: "English" /* ENGLISH */
|
|
1659
2721
|
},
|
|
1660
2722
|
practiceMode: {
|
|
1661
|
-
|
|
2723
|
+
locale: "en-SE" /* US */,
|
|
1662
2724
|
defaultPracticeTreeId: "67090ad89e8f43b0eb82d98f"
|
|
1663
2725
|
},
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
voiceNameFallback: "en-GB-Neural2-A"
|
|
1669
|
-
}
|
|
1670
|
-
},
|
|
1671
|
-
translate: {
|
|
1672
|
-
languageCodeFallback: "en"
|
|
1673
|
-
},
|
|
1674
|
-
tts: {
|
|
1675
|
-
replaceCommaWithSpace: true
|
|
1676
|
-
},
|
|
1677
|
-
exampleSolutions: {
|
|
1678
|
-
languageName: "English"
|
|
1679
|
-
},
|
|
1680
|
-
problem: {
|
|
1681
|
-
choiceInputSelector: {
|
|
1682
|
-
useSmallText: true
|
|
1683
|
-
},
|
|
1684
|
-
choiceAnswerFeedback: {
|
|
1685
|
-
useSlimLayout: true
|
|
1686
|
-
},
|
|
1687
|
-
answer: {
|
|
1688
|
-
shortButton: true
|
|
1689
|
-
}
|
|
1690
|
-
},
|
|
1691
|
-
statsTab: {
|
|
1692
|
-
buttonWithMinWidth: false
|
|
1693
|
-
},
|
|
1694
|
-
smartEval: {
|
|
1695
|
-
language: "en-GB"
|
|
2726
|
+
keyboard: {
|
|
2727
|
+
preset: "DotMixedAlt" /* DOT_MIXED_ALT */,
|
|
2728
|
+
currencyVariant: "PoundPence" /* POUND_PENCE */,
|
|
2729
|
+
timeVariant: "H24" /* H24 */
|
|
1696
2730
|
},
|
|
1697
2731
|
drawboard: {
|
|
1698
2732
|
basicManipulativesMaxGrade: 8
|
|
2733
|
+
},
|
|
2734
|
+
myScript: {
|
|
2735
|
+
enableSolver: false
|
|
2736
|
+
},
|
|
2737
|
+
equationWriter: {
|
|
2738
|
+
replaceBackslashWithQuote: false
|
|
1699
2739
|
}
|
|
1700
2740
|
};
|
|
1701
2741
|
|
|
1702
|
-
// src/configs/locale/
|
|
1703
|
-
var
|
|
2742
|
+
// src/configs/locale/_common/common.ca.ts
|
|
2743
|
+
var LOCALE_COMMON_CA = {
|
|
1704
2744
|
name: "Canadian",
|
|
1705
2745
|
languageName: "English",
|
|
2746
|
+
country: "Canada",
|
|
1706
2747
|
shortCode: "ca",
|
|
1707
2748
|
languageHeader: "en-CA;q=1.0, en-SE;q=0.9",
|
|
1708
2749
|
contentLocale: "en-CA" /* CA */,
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
},
|
|
2750
|
+
date: DATE_CONFIG_CA,
|
|
2751
|
+
grades: GRADES_CONFIG_CA,
|
|
2752
|
+
numberFormatting: {
|
|
2753
|
+
groupingSeparator: "space" /* SPACE */,
|
|
2754
|
+
decimalSeparator: "." /* DOT */
|
|
2755
|
+
},
|
|
2756
|
+
mathSymbols: {
|
|
2757
|
+
multiplication: "TIMES" /* TIMES */
|
|
2758
|
+
}
|
|
2759
|
+
};
|
|
2760
|
+
|
|
2761
|
+
// src/configs/locale/students-web/ca/locale.ca.ts
|
|
2762
|
+
var LOCALE_STUDENTS_CA = {
|
|
2763
|
+
...LOCALE_STUDENTS_US,
|
|
2764
|
+
...LOCALE_COMMON_CA,
|
|
1715
2765
|
practiceMode: {
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
},
|
|
1719
|
-
chatbot: {
|
|
1720
|
-
languageName: "English",
|
|
1721
|
-
tts: {
|
|
1722
|
-
languageCodeFallback: "en-US",
|
|
1723
|
-
voiceNameFallback: "en-US-Wavenet-C"
|
|
1724
|
-
}
|
|
1725
|
-
},
|
|
1726
|
-
translate: {
|
|
1727
|
-
languageCodeFallback: "en"
|
|
1728
|
-
},
|
|
1729
|
-
tts: {
|
|
1730
|
-
replaceCommaWithSpace: true
|
|
1731
|
-
},
|
|
1732
|
-
exampleSolutions: {
|
|
1733
|
-
languageName: "English"
|
|
1734
|
-
},
|
|
1735
|
-
problem: {
|
|
1736
|
-
choiceInputSelector: {
|
|
1737
|
-
useSmallText: true
|
|
1738
|
-
},
|
|
1739
|
-
choiceAnswerFeedback: {
|
|
1740
|
-
useSlimLayout: true
|
|
1741
|
-
},
|
|
1742
|
-
answer: {
|
|
1743
|
-
shortButton: true
|
|
1744
|
-
}
|
|
1745
|
-
},
|
|
1746
|
-
statsTab: {
|
|
1747
|
-
buttonWithMinWidth: false
|
|
1748
|
-
},
|
|
1749
|
-
smartEval: {
|
|
1750
|
-
language: "en-CA"
|
|
1751
|
-
},
|
|
1752
|
-
drawboard: {
|
|
1753
|
-
basicManipulativesMaxGrade: 5
|
|
2766
|
+
...LOCALE_STUDENTS_US.practiceMode,
|
|
2767
|
+
locale: "en-CA" /* CA */
|
|
1754
2768
|
}
|
|
1755
2769
|
};
|
|
1756
2770
|
|
|
1757
|
-
// src/configs/locale/
|
|
1758
|
-
var
|
|
2771
|
+
// src/configs/locale/_common/common.sct.ts
|
|
2772
|
+
var LOCALE_COMMON_SCT = {
|
|
1759
2773
|
name: "Scottish English",
|
|
1760
2774
|
languageName: "English",
|
|
2775
|
+
country: "Scotland",
|
|
1761
2776
|
shortCode: "sct",
|
|
1762
2777
|
languageHeader: "en-GB;q=1.0, en-SE;q=0.9",
|
|
1763
2778
|
contentLocale: "en-GB" /* GB */,
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
},
|
|
2779
|
+
date: DATE_CONFIG_SCT,
|
|
2780
|
+
grades: GRADES_CONFIG_SCT,
|
|
2781
|
+
numberFormatting: {
|
|
2782
|
+
groupingSeparator: "comma" /* COMMA */,
|
|
2783
|
+
decimalSeparator: "." /* DOT */
|
|
2784
|
+
},
|
|
2785
|
+
mathSymbols: {
|
|
2786
|
+
multiplication: "TIMES" /* TIMES */
|
|
2787
|
+
}
|
|
2788
|
+
};
|
|
2789
|
+
|
|
2790
|
+
// src/configs/locale/students-web/sct/locale.sct.ts
|
|
2791
|
+
var LOCALE_STUDENTS_SCT = {
|
|
2792
|
+
...LOCALE_STUDENTS_GB,
|
|
2793
|
+
...LOCALE_COMMON_SCT,
|
|
1770
2794
|
practiceMode: {
|
|
1771
|
-
|
|
2795
|
+
...LOCALE_STUDENTS_GB.practiceMode,
|
|
1772
2796
|
defaultPracticeTreeId: "6772b07c6d7d8fc15b2b5fe3"
|
|
1773
|
-
},
|
|
1774
|
-
chatbot: {
|
|
1775
|
-
languageName: "English",
|
|
1776
|
-
tts: {
|
|
1777
|
-
languageCodeFallback: "en-GB",
|
|
1778
|
-
voiceNameFallback: "en-GB-Neural2-A"
|
|
1779
|
-
}
|
|
1780
|
-
},
|
|
1781
|
-
translate: {
|
|
1782
|
-
languageCodeFallback: "en"
|
|
1783
|
-
},
|
|
1784
|
-
tts: {
|
|
1785
|
-
replaceCommaWithSpace: true
|
|
1786
|
-
},
|
|
1787
|
-
exampleSolutions: {
|
|
1788
|
-
languageName: "English"
|
|
1789
|
-
},
|
|
1790
|
-
problem: {
|
|
1791
|
-
choiceInputSelector: {
|
|
1792
|
-
useSmallText: true
|
|
1793
|
-
},
|
|
1794
|
-
choiceAnswerFeedback: {
|
|
1795
|
-
useSlimLayout: true
|
|
1796
|
-
},
|
|
1797
|
-
answer: {
|
|
1798
|
-
shortButton: true
|
|
1799
|
-
}
|
|
1800
|
-
},
|
|
1801
|
-
statsTab: {
|
|
1802
|
-
buttonWithMinWidth: false
|
|
1803
|
-
},
|
|
1804
|
-
smartEval: {
|
|
1805
|
-
language: "en-SCT"
|
|
1806
|
-
},
|
|
1807
|
-
drawboard: {
|
|
1808
|
-
basicManipulativesMaxGrade: 8
|
|
1809
2797
|
}
|
|
1810
2798
|
};
|
|
1811
2799
|
|
|
1812
|
-
// src/configs/locale/
|
|
1813
|
-
var
|
|
2800
|
+
// src/configs/locale/_common/common.de.ts
|
|
2801
|
+
var LOCALE_COMMON_DE = {
|
|
1814
2802
|
name: "Deutsch",
|
|
1815
2803
|
languageName: "German",
|
|
2804
|
+
country: "Germany",
|
|
1816
2805
|
shortCode: "de",
|
|
1817
2806
|
languageHeader: "de-DE;q=1.0, en-SE;q=0.9",
|
|
1818
2807
|
contentLocale: "de-DE" /* DE */,
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
2808
|
+
date: DATE_CONFIG_DE,
|
|
2809
|
+
grades: GRADES_CONFIG_DE,
|
|
2810
|
+
numberFormatting: {
|
|
2811
|
+
groupingSeparator: "dot" /* DOT */,
|
|
2812
|
+
decimalSeparator: "," /* COMMA */
|
|
2813
|
+
},
|
|
2814
|
+
mathSymbols: {
|
|
2815
|
+
multiplication: "TIMES" /* TIMES */
|
|
2816
|
+
}
|
|
2817
|
+
};
|
|
2818
|
+
|
|
2819
|
+
// src/configs/locale/students-web/de/locale.de.ts
|
|
2820
|
+
var LOCALE_STUDENTS_DE = {
|
|
2821
|
+
...LOCALE_COMMON_DE,
|
|
2822
|
+
language: getLanguageConfig("German" /* GERMAN */),
|
|
2823
|
+
exampleSolutions: {
|
|
2824
|
+
languageName: "German" /* GERMAN */
|
|
1824
2825
|
},
|
|
1825
2826
|
practiceMode: {
|
|
1826
|
-
|
|
2827
|
+
locale: "de-DE" /* DE */,
|
|
1827
2828
|
defaultPracticeTreeId: "68f761d05054434f9b74254f"
|
|
1828
2829
|
},
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
voiceNameFallback: "de-DE-Wavenet-A"
|
|
1834
|
-
}
|
|
1835
|
-
},
|
|
1836
|
-
translate: {
|
|
1837
|
-
languageCodeFallback: "de"
|
|
1838
|
-
},
|
|
1839
|
-
tts: {
|
|
1840
|
-
replaceCommaWithSpace: false
|
|
1841
|
-
},
|
|
1842
|
-
exampleSolutions: {
|
|
1843
|
-
languageName: "German"
|
|
1844
|
-
},
|
|
1845
|
-
problem: {
|
|
1846
|
-
choiceInputSelector: {
|
|
1847
|
-
useSmallText: true
|
|
1848
|
-
},
|
|
1849
|
-
choiceAnswerFeedback: {
|
|
1850
|
-
useSlimLayout: true
|
|
1851
|
-
},
|
|
1852
|
-
answer: {
|
|
1853
|
-
shortButton: true
|
|
1854
|
-
}
|
|
1855
|
-
},
|
|
1856
|
-
statsTab: {
|
|
1857
|
-
buttonWithMinWidth: false
|
|
1858
|
-
},
|
|
1859
|
-
smartEval: {
|
|
1860
|
-
language: "de-DE"
|
|
2830
|
+
keyboard: {
|
|
2831
|
+
preset: "CommaMetric" /* COMMA_METRIC */,
|
|
2832
|
+
currencyVariant: "EuroDollarPound" /* EURO_DOLLAR_POUND */,
|
|
2833
|
+
timeVariant: "H24" /* H24 */
|
|
1861
2834
|
},
|
|
1862
2835
|
drawboard: {
|
|
1863
2836
|
basicManipulativesMaxGrade: 5
|
|
2837
|
+
},
|
|
2838
|
+
myScript: {
|
|
2839
|
+
enableSolver: false
|
|
2840
|
+
},
|
|
2841
|
+
equationWriter: {
|
|
2842
|
+
replaceBackslashWithQuote: false
|
|
2843
|
+
}
|
|
2844
|
+
};
|
|
2845
|
+
|
|
2846
|
+
// src/configs/locale/_shared/problemCreator/locale/problemCreator.de.ts
|
|
2847
|
+
var PROBLEM_CREATOR_DE = {
|
|
2848
|
+
useCommaForDecimal: true,
|
|
2849
|
+
useDotForMultiplication: false,
|
|
2850
|
+
savedProblemLocale: "de-DE" /* DE */,
|
|
2851
|
+
keyboard: {
|
|
2852
|
+
preset: "CommaMetric" /* COMMA_METRIC */,
|
|
2853
|
+
mathEntryVariant: "Euro" /* EURO */,
|
|
2854
|
+
descriptionVariant: "DotExtendedRoots" /* DOT_EXTENDED_ROOTS */
|
|
2855
|
+
}
|
|
2856
|
+
};
|
|
2857
|
+
|
|
2858
|
+
// src/configs/locale/_shared/problemCreator/locale/problemCreator.us.ts
|
|
2859
|
+
var PROBLEM_CREATOR_US = {
|
|
2860
|
+
useCommaForDecimal: false,
|
|
2861
|
+
useDotForMultiplication: false,
|
|
2862
|
+
savedProblemLocale: "en-SE" /* US */,
|
|
2863
|
+
keyboard: {
|
|
2864
|
+
preset: "DotMixed" /* DOT_MIXED */,
|
|
2865
|
+
mathEntryVariant: "Dollar" /* DOLLAR */,
|
|
2866
|
+
descriptionVariant: "ExtendedMultBasicRoots" /* EXTENDED_MULT_BASIC_ROOTS */
|
|
2867
|
+
}
|
|
2868
|
+
};
|
|
2869
|
+
|
|
2870
|
+
// src/configs/locale/_shared/problemCreator/locale/problemCreator.se.ts
|
|
2871
|
+
var PROBLEM_CREATOR_SE = {
|
|
2872
|
+
useCommaForDecimal: true,
|
|
2873
|
+
useDotForMultiplication: true,
|
|
2874
|
+
savedProblemLocale: "sv-SE" /* SE */,
|
|
2875
|
+
keyboard: {
|
|
2876
|
+
preset: "CommaMetric" /* COMMA_METRIC */,
|
|
2877
|
+
mathEntryVariant: "Krone" /* KRONE */,
|
|
2878
|
+
descriptionVariant: "DotExtendedRoots" /* DOT_EXTENDED_ROOTS */
|
|
2879
|
+
}
|
|
2880
|
+
};
|
|
2881
|
+
|
|
2882
|
+
// src/configs/locale/_shared/problemCreator/locale/problemCreator.gb.ts
|
|
2883
|
+
var PROBLEM_CREATOR_GB = {
|
|
2884
|
+
useCommaForDecimal: false,
|
|
2885
|
+
useDotForMultiplication: false,
|
|
2886
|
+
savedProblemLocale: "en-GB" /* GB */,
|
|
2887
|
+
keyboard: {
|
|
2888
|
+
preset: "DotMixed" /* DOT_MIXED */,
|
|
2889
|
+
mathEntryVariant: "PoundPence" /* POUND_PENCE */,
|
|
2890
|
+
descriptionVariant: "DotBasicRoots" /* DOT_BASIC_ROOTS */
|
|
1864
2891
|
}
|
|
1865
2892
|
};
|
|
1866
2893
|
|
|
1867
2894
|
// src/configs/locale/district-dash/us/locale.us.ts
|
|
1868
2895
|
var LOCALE_DISTRICT_US = {
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
contentLocale: "en-SE" /* US */,
|
|
1874
|
-
date: {
|
|
1875
|
-
use24HourFormat: false,
|
|
1876
|
-
locale: DateLocale.US,
|
|
1877
|
-
formats: {
|
|
1878
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
1879
|
-
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
1880
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
1881
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
1882
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
1883
|
-
}
|
|
2896
|
+
...LOCALE_COMMON_US,
|
|
2897
|
+
problemCreator: PROBLEM_CREATOR_US,
|
|
2898
|
+
tree: {
|
|
2899
|
+
lowestLevel: 1 /* STANDARD */
|
|
1884
2900
|
}
|
|
1885
2901
|
};
|
|
1886
2902
|
|
|
1887
2903
|
// src/configs/locale/district-dash/se/locale.se.ts
|
|
1888
2904
|
var LOCALE_DISTRICT_SE = {
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
contentLocale: "sv-SE" /* SE */,
|
|
1894
|
-
date: {
|
|
1895
|
-
use24HourFormat: true,
|
|
1896
|
-
locale: DateLocale.SV,
|
|
1897
|
-
formats: {
|
|
1898
|
-
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
1899
|
-
dayMonthYear: "DD-MM-YYYY" /* DAY_MONTH_YEAR */,
|
|
1900
|
-
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
1901
|
-
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
1902
|
-
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
1903
|
-
}
|
|
2905
|
+
...LOCALE_COMMON_SE,
|
|
2906
|
+
problemCreator: PROBLEM_CREATOR_SE,
|
|
2907
|
+
tree: {
|
|
2908
|
+
lowestLevel: 2 /* SKILL */
|
|
1904
2909
|
}
|
|
1905
2910
|
};
|
|
1906
2911
|
|
|
1907
2912
|
// src/configs/locale/district-dash/de/locale.de.ts
|
|
1908
2913
|
var LOCALE_DISTRICT_DE = {
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
contentLocale: "de-DE" /* DE */,
|
|
1914
|
-
date: {
|
|
1915
|
-
use24HourFormat: true,
|
|
1916
|
-
locale: DateLocale.DE,
|
|
1917
|
-
formats: {
|
|
1918
|
-
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
1919
|
-
dayMonthYear: "DD-MM-YYYY" /* DAY_MONTH_YEAR */,
|
|
1920
|
-
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
1921
|
-
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
1922
|
-
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
1923
|
-
}
|
|
2914
|
+
...LOCALE_COMMON_DE,
|
|
2915
|
+
problemCreator: PROBLEM_CREATOR_DE,
|
|
2916
|
+
tree: {
|
|
2917
|
+
lowestLevel: 1 /* STANDARD */
|
|
1924
2918
|
}
|
|
1925
2919
|
};
|
|
1926
2920
|
|
|
1927
2921
|
// src/configs/locale/district-dash/gb/locale.gb.ts
|
|
1928
2922
|
var LOCALE_DISTRICT_GB = {
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
contentLocale: "en-GB" /* GB */,
|
|
1934
|
-
date: {
|
|
1935
|
-
use24HourFormat: false,
|
|
1936
|
-
locale: DateLocale.GB,
|
|
1937
|
-
formats: {
|
|
1938
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
1939
|
-
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
1940
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
1941
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
1942
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
1943
|
-
}
|
|
2923
|
+
...LOCALE_COMMON_GB,
|
|
2924
|
+
problemCreator: PROBLEM_CREATOR_GB,
|
|
2925
|
+
tree: {
|
|
2926
|
+
lowestLevel: 1 /* STANDARD */
|
|
1944
2927
|
}
|
|
1945
2928
|
};
|
|
1946
2929
|
|
|
1947
2930
|
// src/configs/locale/district-dash/sct/locale.sct.ts
|
|
1948
2931
|
var LOCALE_DISTRICT_SCT = {
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
shortCode: "sct",
|
|
1952
|
-
languageHeader: "en-GB;q=1.0, en-SE;q=0.9",
|
|
1953
|
-
contentLocale: "en-GB" /* GB */,
|
|
1954
|
-
date: {
|
|
1955
|
-
use24HourFormat: false,
|
|
1956
|
-
locale: DateLocale.US,
|
|
1957
|
-
formats: {
|
|
1958
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
1959
|
-
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
1960
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
1961
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
1962
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
1963
|
-
}
|
|
1964
|
-
}
|
|
2932
|
+
...LOCALE_DISTRICT_GB,
|
|
2933
|
+
...LOCALE_COMMON_SCT
|
|
1965
2934
|
};
|
|
1966
2935
|
|
|
1967
2936
|
// src/configs/locale/district-dash/ca/locale.ca.ts
|
|
1968
2937
|
var LOCALE_DISTRICT_CA = {
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
contentLocale: "en-CA" /* CA */,
|
|
1974
|
-
date: {
|
|
1975
|
-
use24HourFormat: false,
|
|
1976
|
-
locale: DateLocale.US,
|
|
1977
|
-
formats: {
|
|
1978
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
1979
|
-
dayMonthYear: "YYYY-MM-DD" /* DAY_MONTH_YEAR_US */,
|
|
1980
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
1981
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
1982
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
1983
|
-
}
|
|
2938
|
+
...LOCALE_DISTRICT_US,
|
|
2939
|
+
...LOCALE_COMMON_CA,
|
|
2940
|
+
tree: {
|
|
2941
|
+
lowestLevel: 1 /* STANDARD */
|
|
1984
2942
|
}
|
|
1985
2943
|
};
|
|
1986
2944
|
|
|
1987
2945
|
// src/configs/locale/teachers-web/us/locale.us.ts
|
|
1988
2946
|
var LOCALE_TEACHERS_US = {
|
|
1989
|
-
|
|
1990
|
-
languageName: "English",
|
|
1991
|
-
country: "United States",
|
|
1992
|
-
shortCode: "us",
|
|
1993
|
-
languageHeader: "en-SE;q=1.0, sv-SE;q=0.9",
|
|
1994
|
-
contentLocale: "en-SE" /* US */,
|
|
2947
|
+
...LOCALE_COMMON_US,
|
|
1995
2948
|
emails: {
|
|
1996
2949
|
studentsList: "hello@magmamath.com"
|
|
1997
2950
|
},
|
|
1998
|
-
symbols: {
|
|
1999
|
-
decimalSeparator: "."
|
|
2000
|
-
},
|
|
2001
|
-
date: {
|
|
2002
|
-
use24HourFormat: false,
|
|
2003
|
-
locale: DateLocale.US,
|
|
2004
|
-
formats: {
|
|
2005
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2006
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2007
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2008
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2009
|
-
}
|
|
2010
|
-
},
|
|
2011
2951
|
urls: {
|
|
2012
2952
|
specialBook: "https://intercom.help/magma-math-us/en/articles/10643615-teacher-guide-using-bridges-to-mathematics-material-in-magma-math",
|
|
2013
2953
|
helpCenter: "https://intercom.help/magma-math-us/",
|
|
2014
|
-
about: "https://intercom.help/magma-math-us/en/articles/10706168-live-activity-overview"
|
|
2015
|
-
|
|
2016
|
-
bookshelf: {
|
|
2017
|
-
limitSharedExercisesTooltipWidth: false
|
|
2954
|
+
about: "https://intercom.help/magma-math-us/en/articles/10706168-live-activity-overview",
|
|
2955
|
+
onboarding: "https://www.magmamath.com/"
|
|
2018
2956
|
},
|
|
2019
2957
|
problemsList: {
|
|
2020
2958
|
showProblemComplexity: false
|
|
2021
2959
|
},
|
|
2022
2960
|
practiceMode: {
|
|
2023
|
-
|
|
2961
|
+
defaultPracticeTreeId: "66cdf9a95dc55d3a585dc53f",
|
|
2962
|
+
alwaysEnabled: false
|
|
2024
2963
|
},
|
|
2025
2964
|
matrix: {
|
|
2965
|
+
filterStandardsByGradeLevel: true,
|
|
2026
2966
|
forceShowRecommendations: false
|
|
2027
2967
|
},
|
|
2028
2968
|
pieChart: {
|
|
2029
2969
|
showExtraTreeDataContent: true
|
|
2030
2970
|
},
|
|
2031
|
-
problem: {
|
|
2032
|
-
allowCommaDecimal: false
|
|
2033
|
-
},
|
|
2034
2971
|
firstLoginBooks: {
|
|
2035
|
-
isLargeGrade: (grade) => grade >= 9
|
|
2972
|
+
isLargeGrade: (grade) => grade >= 9,
|
|
2973
|
+
mergeHighSchoolGrades: true,
|
|
2974
|
+
withGradeZero: true
|
|
2036
2975
|
},
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
showOtherGrade: false
|
|
2976
|
+
gradesModal: {
|
|
2977
|
+
withOtherOption: false
|
|
2040
2978
|
},
|
|
2041
|
-
|
|
2042
|
-
showSentEmailInfo: false
|
|
2043
|
-
}
|
|
2979
|
+
problemCreator: PROBLEM_CREATOR_US
|
|
2044
2980
|
};
|
|
2045
2981
|
|
|
2046
2982
|
// src/configs/locale/teachers-web/se/locale.se.ts
|
|
2047
2983
|
var LOCALE_TEACHERS_SE = {
|
|
2048
|
-
|
|
2049
|
-
languageName: "Swedish",
|
|
2050
|
-
country: "Sweden",
|
|
2051
|
-
shortCode: "sv",
|
|
2052
|
-
languageHeader: "sv-SE;q=1.0, en-SE;q=0.9",
|
|
2053
|
-
contentLocale: "sv-SE" /* SE */,
|
|
2984
|
+
...LOCALE_COMMON_SE,
|
|
2054
2985
|
emails: {
|
|
2055
2986
|
studentsList: "klasslista@magma.se"
|
|
2056
2987
|
},
|
|
2057
|
-
symbols: {
|
|
2058
|
-
decimalSeparator: ","
|
|
2059
|
-
},
|
|
2060
|
-
date: {
|
|
2061
|
-
use24HourFormat: true,
|
|
2062
|
-
locale: DateLocale.SV,
|
|
2063
|
-
formats: {
|
|
2064
|
-
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
2065
|
-
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
2066
|
-
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
2067
|
-
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
2068
|
-
}
|
|
2069
|
-
},
|
|
2070
2988
|
urls: {
|
|
2071
2989
|
specialBook: "https://intercom.help/matteappen/sv/articles/5007514-forsta-och-anvanda-tal-startguide",
|
|
2072
|
-
helpCenter: "https://intercom.help/matteappen/",
|
|
2073
|
-
about: "https://intercom.help/matteappen/sv/articles/10476211-liveaktivitet"
|
|
2074
|
-
|
|
2075
|
-
bookshelf: {
|
|
2076
|
-
limitSharedExercisesTooltipWidth: true
|
|
2990
|
+
helpCenter: "https://intercom.help/matteappen/sv",
|
|
2991
|
+
about: "https://intercom.help/matteappen/sv/articles/10476211-liveaktivitet",
|
|
2992
|
+
onboarding: "https://www.magma.se/"
|
|
2077
2993
|
},
|
|
2078
2994
|
problemsList: {
|
|
2079
2995
|
showProblemComplexity: true
|
|
2080
2996
|
},
|
|
2081
2997
|
practiceMode: {
|
|
2082
|
-
|
|
2998
|
+
defaultPracticeTreeId: "66ce025c0594e5f65e8ed5dc",
|
|
2999
|
+
alwaysEnabled: true
|
|
2083
3000
|
},
|
|
2084
3001
|
matrix: {
|
|
2085
3002
|
forceShowRecommendations: true,
|
|
3003
|
+
filterStandardsByGradeLevel: false,
|
|
2086
3004
|
forceMatrixMode: "SKILL" /* SKILL */
|
|
2087
3005
|
},
|
|
2088
3006
|
pieChart: {
|
|
2089
3007
|
showExtraTreeDataContent: false
|
|
2090
3008
|
},
|
|
2091
|
-
problem: {
|
|
2092
|
-
allowCommaDecimal: true
|
|
2093
|
-
},
|
|
2094
3009
|
firstLoginBooks: {
|
|
2095
|
-
isLargeGrade: (grade) => grade > 9
|
|
3010
|
+
isLargeGrade: (grade) => grade > 9,
|
|
3011
|
+
mergeHighSchoolGrades: false,
|
|
3012
|
+
withGradeZero: true
|
|
2096
3013
|
},
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
showOtherGrade: false
|
|
3014
|
+
gradesModal: {
|
|
3015
|
+
withOtherOption: false
|
|
2100
3016
|
},
|
|
2101
|
-
|
|
2102
|
-
showSentEmailInfo: true
|
|
2103
|
-
}
|
|
3017
|
+
problemCreator: PROBLEM_CREATOR_SE
|
|
2104
3018
|
};
|
|
2105
3019
|
|
|
2106
3020
|
// src/configs/locale/teachers-web/gb/locale.gb.ts
|
|
2107
3021
|
var LOCALE_TEACHERS_GB = {
|
|
2108
|
-
|
|
2109
|
-
languageName: "English",
|
|
2110
|
-
country: "United Kingdom",
|
|
2111
|
-
shortCode: "gb",
|
|
2112
|
-
languageHeader: "en-GB;q=1.0, en-SE;q=0.9",
|
|
2113
|
-
contentLocale: "en-GB" /* GB */,
|
|
3022
|
+
...LOCALE_COMMON_GB,
|
|
2114
3023
|
emails: {
|
|
2115
3024
|
studentsList: "hello@magmamaths.co.uk"
|
|
2116
3025
|
},
|
|
2117
|
-
symbols: {
|
|
2118
|
-
decimalSeparator: "."
|
|
2119
|
-
},
|
|
2120
|
-
date: {
|
|
2121
|
-
use24HourFormat: false,
|
|
2122
|
-
locale: DateLocale.GB,
|
|
2123
|
-
formats: {
|
|
2124
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2125
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2126
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2127
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2128
|
-
}
|
|
2129
|
-
},
|
|
2130
3026
|
urls: {
|
|
2131
3027
|
specialBook: "https://intercom.help/magma-math-us/en/articles/10643615-teacher-guide-using-bridges-to-mathematics-material-in-magma-math",
|
|
2132
3028
|
helpCenter: "https://intercom.help/magma-maths/",
|
|
2133
|
-
about: "https://intercom.help/magma-help/en/articles/11401497-live-activity"
|
|
2134
|
-
|
|
2135
|
-
bookshelf: {
|
|
2136
|
-
limitSharedExercisesTooltipWidth: false
|
|
3029
|
+
about: "https://intercom.help/magma-help/en/articles/11401497-live-activity",
|
|
3030
|
+
onboarding: "https://www.magmamath.com/"
|
|
2137
3031
|
},
|
|
2138
3032
|
problemsList: {
|
|
2139
3033
|
showProblemComplexity: false
|
|
2140
3034
|
},
|
|
2141
3035
|
practiceMode: {
|
|
2142
|
-
|
|
3036
|
+
defaultPracticeTreeId: "67090ad89e8f43b0eb82d98f",
|
|
3037
|
+
alwaysEnabled: false
|
|
2143
3038
|
},
|
|
2144
3039
|
matrix: {
|
|
3040
|
+
filterStandardsByGradeLevel: false,
|
|
2145
3041
|
forceShowRecommendations: false
|
|
2146
3042
|
},
|
|
2147
3043
|
pieChart: {
|
|
2148
3044
|
showExtraTreeDataContent: true
|
|
2149
3045
|
},
|
|
2150
|
-
problem: {
|
|
2151
|
-
allowCommaDecimal: false
|
|
2152
|
-
},
|
|
2153
3046
|
firstLoginBooks: {
|
|
2154
|
-
isLargeGrade: (grade) => grade === 0
|
|
3047
|
+
isLargeGrade: (grade) => grade === 0,
|
|
3048
|
+
mergeHighSchoolGrades: false,
|
|
3049
|
+
withGradeZero: true
|
|
2155
3050
|
},
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
showOtherGrade: true
|
|
3051
|
+
gradesModal: {
|
|
3052
|
+
withOtherOption: true
|
|
2159
3053
|
},
|
|
2160
|
-
|
|
2161
|
-
showSentEmailInfo: false
|
|
2162
|
-
}
|
|
3054
|
+
problemCreator: PROBLEM_CREATOR_GB
|
|
2163
3055
|
};
|
|
2164
3056
|
|
|
2165
3057
|
// src/configs/locale/teachers-web/ca/locale.ca.ts
|
|
2166
3058
|
var LOCALE_TEACHERS_CA = {
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
country: "Canada",
|
|
2170
|
-
shortCode: "ca",
|
|
2171
|
-
languageHeader: "en-CA;q=1.0, en-SE;q=0.9",
|
|
2172
|
-
contentLocale: "en-CA" /* CA */,
|
|
2173
|
-
emails: {
|
|
2174
|
-
studentsList: "hello@magmamath.com"
|
|
2175
|
-
},
|
|
2176
|
-
symbols: {
|
|
2177
|
-
decimalSeparator: "."
|
|
2178
|
-
},
|
|
2179
|
-
date: {
|
|
2180
|
-
use24HourFormat: false,
|
|
2181
|
-
locale: DateLocale.CA,
|
|
2182
|
-
formats: {
|
|
2183
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2184
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2185
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2186
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2187
|
-
}
|
|
2188
|
-
},
|
|
2189
|
-
urls: {
|
|
2190
|
-
specialBook: "https://intercom.help/magma-math-us/en/articles/10643615-teacher-guide-using-bridges-to-mathematics-material-in-magma-math",
|
|
2191
|
-
helpCenter: "https://intercom.help/magma-math-us/",
|
|
2192
|
-
about: "https://intercom.help/magma-math-us/en/articles/10706168-live-activity-overview"
|
|
2193
|
-
},
|
|
2194
|
-
bookshelf: {
|
|
2195
|
-
limitSharedExercisesTooltipWidth: false
|
|
2196
|
-
},
|
|
2197
|
-
problemsList: {
|
|
2198
|
-
showProblemComplexity: false
|
|
2199
|
-
},
|
|
2200
|
-
practiceMode: {
|
|
2201
|
-
defaultTreeIdFallback: "66cdf9a95dc55d3a585dc53f"
|
|
2202
|
-
},
|
|
2203
|
-
matrix: {
|
|
2204
|
-
forceShowRecommendations: false
|
|
2205
|
-
},
|
|
2206
|
-
pieChart: {
|
|
2207
|
-
showExtraTreeDataContent: true
|
|
2208
|
-
},
|
|
2209
|
-
problem: {
|
|
2210
|
-
allowCommaDecimal: false
|
|
2211
|
-
},
|
|
3059
|
+
...LOCALE_TEACHERS_US,
|
|
3060
|
+
...LOCALE_COMMON_CA,
|
|
2212
3061
|
firstLoginBooks: {
|
|
3062
|
+
...LOCALE_TEACHERS_US.firstLoginBooks,
|
|
2213
3063
|
isLargeGrade: null
|
|
2214
|
-
},
|
|
2215
|
-
grades: {
|
|
2216
|
-
showPrefix: true,
|
|
2217
|
-
showOtherGrade: false
|
|
2218
|
-
},
|
|
2219
|
-
getStarted: {
|
|
2220
|
-
showSentEmailInfo: false
|
|
2221
3064
|
}
|
|
2222
3065
|
};
|
|
2223
3066
|
|
|
2224
3067
|
// src/configs/locale/teachers-web/sct/locale.sct.ts
|
|
2225
3068
|
var LOCALE_TEACHERS_SCT = {
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
country: "Scotland",
|
|
2229
|
-
shortCode: "sct",
|
|
2230
|
-
languageHeader: "en-GB;q=1.0, en-SE;q=0.9",
|
|
2231
|
-
contentLocale: "en-GB" /* GB */,
|
|
2232
|
-
emails: {
|
|
2233
|
-
studentsList: "hello@magmamaths.co.uk"
|
|
2234
|
-
},
|
|
2235
|
-
symbols: {
|
|
2236
|
-
decimalSeparator: "."
|
|
2237
|
-
},
|
|
2238
|
-
date: {
|
|
2239
|
-
use24HourFormat: false,
|
|
2240
|
-
locale: DateLocale.SCT,
|
|
2241
|
-
formats: {
|
|
2242
|
-
dayMonth: "MMM DD" /* DAY_MONTH_US */,
|
|
2243
|
-
hoursMinutes: "hh:mm A" /* HOURS_MINUTES_US */,
|
|
2244
|
-
full: "YYYY-MM-DD hh:mm A" /* FULL_US */,
|
|
2245
|
-
fullWithSeconds: "DD MMM YYYY hh:mm:ss A" /* FULL_WITH_SECONDS_US */
|
|
2246
|
-
}
|
|
2247
|
-
},
|
|
2248
|
-
urls: {
|
|
2249
|
-
specialBook: "https://intercom.help/magma-math-us/en/articles/10643615-teacher-guide-using-bridges-to-mathematics-material-in-magma-math",
|
|
2250
|
-
helpCenter: "https://intercom.help/magma-maths/",
|
|
2251
|
-
about: "https://intercom.help/magma-help/en/articles/11401497-live-activity"
|
|
2252
|
-
},
|
|
2253
|
-
bookshelf: {
|
|
2254
|
-
limitSharedExercisesTooltipWidth: false
|
|
2255
|
-
},
|
|
2256
|
-
problemsList: {
|
|
2257
|
-
showProblemComplexity: false
|
|
2258
|
-
},
|
|
3069
|
+
...LOCALE_TEACHERS_GB,
|
|
3070
|
+
...LOCALE_COMMON_SCT,
|
|
2259
3071
|
practiceMode: {
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
matrix: {
|
|
2263
|
-
forceShowRecommendations: false
|
|
2264
|
-
},
|
|
2265
|
-
pieChart: {
|
|
2266
|
-
showExtraTreeDataContent: true
|
|
2267
|
-
},
|
|
2268
|
-
problem: {
|
|
2269
|
-
allowCommaDecimal: false
|
|
3072
|
+
...LOCALE_TEACHERS_GB.practiceMode,
|
|
3073
|
+
defaultPracticeTreeId: "66cdf9a95dc55d3a585dc53f"
|
|
2270
3074
|
},
|
|
2271
3075
|
firstLoginBooks: {
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
showPrefix: false,
|
|
2276
|
-
showOtherGrade: true
|
|
2277
|
-
},
|
|
2278
|
-
getStarted: {
|
|
2279
|
-
showSentEmailInfo: false
|
|
3076
|
+
...LOCALE_TEACHERS_GB.firstLoginBooks,
|
|
3077
|
+
isLargeGrade: null,
|
|
3078
|
+
withGradeZero: false
|
|
2280
3079
|
}
|
|
2281
3080
|
};
|
|
2282
3081
|
|
|
2283
3082
|
// src/configs/locale/teachers-web/de/locale.de.ts
|
|
2284
3083
|
var LOCALE_TEACHERS_DE = {
|
|
2285
|
-
|
|
2286
|
-
languageName: "German",
|
|
2287
|
-
country: "Germany",
|
|
2288
|
-
shortCode: "de",
|
|
2289
|
-
languageHeader: "de-DE;q=1.0, en-SE;q=0.9",
|
|
2290
|
-
contentLocale: "de-DE" /* DE */,
|
|
3084
|
+
...LOCALE_COMMON_DE,
|
|
2291
3085
|
emails: {
|
|
2292
3086
|
studentsList: "hallo@magmamath.com"
|
|
2293
3087
|
},
|
|
2294
|
-
symbols: {
|
|
2295
|
-
decimalSeparator: ","
|
|
2296
|
-
},
|
|
2297
|
-
date: {
|
|
2298
|
-
use24HourFormat: true,
|
|
2299
|
-
locale: DateLocale.DE,
|
|
2300
|
-
formats: {
|
|
2301
|
-
dayMonth: "DD MMM" /* DAY_MONTH */,
|
|
2302
|
-
hoursMinutes: "HH:mm" /* HOURS_MINUTES */,
|
|
2303
|
-
full: "YYYY-MM-DD HH:mm" /* FULL */,
|
|
2304
|
-
fullWithSeconds: "DD MMM YYYY HH:mm:ss" /* FULL_WITH_SECONDS */
|
|
2305
|
-
}
|
|
2306
|
-
},
|
|
2307
3088
|
urls: {
|
|
2308
3089
|
specialBook: "https://intercom.help/magma-math-us/en/articles/10643615-teacher-guide-using-bridges-to-mathematics-material-in-magma-math",
|
|
2309
3090
|
helpCenter: "https://intercom.help/hilfecenter/de/",
|
|
2310
|
-
about: "https://intercom.help/magma-math-us/en/articles/10706168-live-activity-overview"
|
|
2311
|
-
|
|
2312
|
-
bookshelf: {
|
|
2313
|
-
limitSharedExercisesTooltipWidth: false
|
|
3091
|
+
about: "https://intercom.help/magma-math-us/en/articles/10706168-live-activity-overview",
|
|
3092
|
+
onboarding: "https://www.magmamath.com/"
|
|
2314
3093
|
},
|
|
2315
3094
|
problemsList: {
|
|
2316
3095
|
showProblemComplexity: false
|
|
2317
3096
|
},
|
|
2318
3097
|
practiceMode: {
|
|
2319
|
-
|
|
3098
|
+
defaultPracticeTreeId: "68f761d05054434f9b74254f",
|
|
3099
|
+
alwaysEnabled: false
|
|
2320
3100
|
},
|
|
2321
3101
|
matrix: {
|
|
3102
|
+
filterStandardsByGradeLevel: false,
|
|
2322
3103
|
forceShowRecommendations: false
|
|
2323
3104
|
},
|
|
2324
3105
|
pieChart: {
|
|
2325
3106
|
showExtraTreeDataContent: true
|
|
2326
3107
|
},
|
|
2327
|
-
problem: {
|
|
2328
|
-
allowCommaDecimal: true
|
|
2329
|
-
},
|
|
2330
3108
|
firstLoginBooks: {
|
|
2331
|
-
isLargeGrade: null
|
|
3109
|
+
isLargeGrade: null,
|
|
3110
|
+
mergeHighSchoolGrades: false,
|
|
3111
|
+
withGradeZero: true
|
|
2332
3112
|
},
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
showOtherGrade: false
|
|
3113
|
+
gradesModal: {
|
|
3114
|
+
withOtherOption: false
|
|
2336
3115
|
},
|
|
2337
|
-
|
|
2338
|
-
showSentEmailInfo: false
|
|
2339
|
-
}
|
|
3116
|
+
problemCreator: PROBLEM_CREATOR_DE
|
|
2340
3117
|
};
|
|
2341
3118
|
var GoogleIcon = ({ size = 38 }) => {
|
|
2342
3119
|
return /* @__PURE__ */ jsxs(Svg, { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 90 92", fill: "none", width: size, height: size, children: [
|
|
@@ -2954,9 +3731,13 @@ var SSO_APPLE_CONFIG = {
|
|
|
2954
3731
|
|
|
2955
3732
|
// src/configs/locale/mobile/us/locale.us.ts
|
|
2956
3733
|
var LOCALE_MOBILE_US = {
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
3734
|
+
...LOCALE_STUDENTS_US,
|
|
3735
|
+
...LOCALE_TEACHERS_US,
|
|
3736
|
+
...LOCALE_AUTHWEB_US,
|
|
3737
|
+
practiceMode: {
|
|
3738
|
+
...LOCALE_STUDENTS_US.practiceMode,
|
|
3739
|
+
...LOCALE_TEACHERS_US.practiceMode
|
|
3740
|
+
},
|
|
2960
3741
|
sources: {
|
|
2961
3742
|
signIn: {
|
|
2962
3743
|
withOnboarding: true,
|
|
@@ -2976,17 +3757,19 @@ var LOCALE_MOBILE_US = {
|
|
|
2976
3757
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG]
|
|
2977
3758
|
}
|
|
2978
3759
|
},
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
navigatorLanguages: ["en-SE" /* US */, "en", "es-US"],
|
|
2982
|
-
locale: "en-SE" /* US */
|
|
3760
|
+
localizeCountryCode: "US",
|
|
3761
|
+
calendar: EN_CALENDAR_CONFIG
|
|
2983
3762
|
};
|
|
2984
3763
|
|
|
2985
3764
|
// src/configs/locale/mobile/se/locale.se.ts
|
|
2986
3765
|
var LOCALE_MOBILE_SE = {
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
3766
|
+
...LOCALE_STUDENTS_SE,
|
|
3767
|
+
...LOCALE_TEACHERS_SE,
|
|
3768
|
+
...LOCALE_AUTHWEB_SE,
|
|
3769
|
+
practiceMode: {
|
|
3770
|
+
...LOCALE_STUDENTS_SE.practiceMode,
|
|
3771
|
+
...LOCALE_TEACHERS_SE.practiceMode
|
|
3772
|
+
},
|
|
2990
3773
|
sources: {
|
|
2991
3774
|
signIn: {
|
|
2992
3775
|
withOnboarding: false,
|
|
@@ -3004,17 +3787,19 @@ var LOCALE_MOBILE_SE = {
|
|
|
3004
3787
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG, SSO_SKOLFEDERATION_CONFIG]
|
|
3005
3788
|
}
|
|
3006
3789
|
},
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
navigatorLanguages: ["sv-SE" /* SE */, "sv"],
|
|
3010
|
-
locale: "sv-SE" /* SE */
|
|
3790
|
+
localizeCountryCode: "SE",
|
|
3791
|
+
calendar: SE_CALENDAR_CONFIG
|
|
3011
3792
|
};
|
|
3012
3793
|
|
|
3013
3794
|
// src/configs/locale/mobile/gb/locale.gb.ts
|
|
3014
3795
|
var LOCALE_MOBILE_GB = {
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3796
|
+
...LOCALE_STUDENTS_GB,
|
|
3797
|
+
...LOCALE_TEACHERS_GB,
|
|
3798
|
+
...LOCALE_AUTHWEB_GB,
|
|
3799
|
+
practiceMode: {
|
|
3800
|
+
...LOCALE_STUDENTS_GB.practiceMode,
|
|
3801
|
+
...LOCALE_TEACHERS_GB.practiceMode
|
|
3802
|
+
},
|
|
3018
3803
|
sources: {
|
|
3019
3804
|
signIn: {
|
|
3020
3805
|
withOnboarding: false,
|
|
@@ -3032,17 +3817,19 @@ var LOCALE_MOBILE_GB = {
|
|
|
3032
3817
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG, SSO_WONDE_CONFIG]
|
|
3033
3818
|
}
|
|
3034
3819
|
},
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
navigatorLanguages: ["en-GB" /* GB */, "en-IE", "gd"],
|
|
3038
|
-
locale: "en-GB" /* GB */
|
|
3820
|
+
localizeCountryCode: "GB",
|
|
3821
|
+
calendar: EN_CALENDAR_CONFIG
|
|
3039
3822
|
};
|
|
3040
3823
|
|
|
3041
3824
|
// src/configs/locale/mobile/ca/locale.ca.ts
|
|
3042
3825
|
var LOCALE_MOBILE_CA = {
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3826
|
+
...LOCALE_STUDENTS_CA,
|
|
3827
|
+
...LOCALE_TEACHERS_CA,
|
|
3828
|
+
...LOCALE_AUTHWEB_CA,
|
|
3829
|
+
practiceMode: {
|
|
3830
|
+
...LOCALE_STUDENTS_CA.practiceMode,
|
|
3831
|
+
...LOCALE_TEACHERS_CA.practiceMode
|
|
3832
|
+
},
|
|
3046
3833
|
sources: {
|
|
3047
3834
|
signIn: {
|
|
3048
3835
|
withOnboarding: true,
|
|
@@ -3062,17 +3849,19 @@ var LOCALE_MOBILE_CA = {
|
|
|
3062
3849
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG]
|
|
3063
3850
|
}
|
|
3064
3851
|
},
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
navigatorLanguages: ["en-CA" /* CA */, "fr-CA"],
|
|
3068
|
-
locale: "en-CA" /* CA */
|
|
3852
|
+
localizeCountryCode: "CA",
|
|
3853
|
+
calendar: EN_CALENDAR_CONFIG
|
|
3069
3854
|
};
|
|
3070
3855
|
|
|
3071
3856
|
// src/configs/locale/mobile/sct/locale.sct.ts
|
|
3072
3857
|
var LOCALE_MOBILE_SCT = {
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3858
|
+
...LOCALE_STUDENTS_SCT,
|
|
3859
|
+
...LOCALE_TEACHERS_SCT,
|
|
3860
|
+
...LOCALE_AUTHWEB_SCT,
|
|
3861
|
+
practiceMode: {
|
|
3862
|
+
...LOCALE_STUDENTS_SCT.practiceMode,
|
|
3863
|
+
...LOCALE_TEACHERS_SCT.practiceMode
|
|
3864
|
+
},
|
|
3076
3865
|
sources: {
|
|
3077
3866
|
signIn: {
|
|
3078
3867
|
withOnboarding: false,
|
|
@@ -3090,17 +3879,19 @@ var LOCALE_MOBILE_SCT = {
|
|
|
3090
3879
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG, SSO_WONDE_CONFIG]
|
|
3091
3880
|
}
|
|
3092
3881
|
},
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
navigatorLanguages: ["en-GB" /* GB */, "en-IE", "gd"],
|
|
3096
|
-
locale: "en-GB" /* GB */
|
|
3882
|
+
localizeCountryCode: "SCT",
|
|
3883
|
+
calendar: EN_CALENDAR_CONFIG
|
|
3097
3884
|
};
|
|
3098
3885
|
|
|
3099
3886
|
// src/configs/locale/mobile/de/locale.de.ts
|
|
3100
3887
|
var LOCALE_MOBILE_DE = {
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3888
|
+
...LOCALE_STUDENTS_DE,
|
|
3889
|
+
...LOCALE_TEACHERS_DE,
|
|
3890
|
+
...LOCALE_AUTHWEB_DE,
|
|
3891
|
+
practiceMode: {
|
|
3892
|
+
...LOCALE_STUDENTS_DE.practiceMode,
|
|
3893
|
+
...LOCALE_TEACHERS_DE.practiceMode
|
|
3894
|
+
},
|
|
3104
3895
|
sources: {
|
|
3105
3896
|
signIn: {
|
|
3106
3897
|
withOnboarding: false,
|
|
@@ -3111,10 +3902,8 @@ var LOCALE_MOBILE_DE = {
|
|
|
3111
3902
|
list: [SSO_GOOGLE_CONFIG, SSO_APPLE_CONFIG, SSO_MICROSOFT_CONFIG]
|
|
3112
3903
|
}
|
|
3113
3904
|
},
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
navigatorLanguages: ["de-DE" /* DE */, "de"],
|
|
3117
|
-
locale: "de-DE" /* DE */
|
|
3905
|
+
localizeCountryCode: "DE",
|
|
3906
|
+
calendar: DE_CALENDAR_CONFIG
|
|
3118
3907
|
};
|
|
3119
3908
|
|
|
3120
3909
|
// src/configs/locale/locale.preset.ts
|
|
@@ -3190,6 +3979,14 @@ var AppConfigManager = class {
|
|
|
3190
3979
|
setLocaleConfig = createEvent();
|
|
3191
3980
|
$envs = restore(this.setEnvs, {});
|
|
3192
3981
|
$localeConfig = restore(this.setLocaleConfig, {});
|
|
3982
|
+
$localeFlags = this.$localeConfig.map(() => ({
|
|
3983
|
+
isUS: this.locale === "en-SE" /* US */,
|
|
3984
|
+
isSwedish: this.locale === "sv-SE" /* SE */,
|
|
3985
|
+
isBritish: this.locale === "en-GB" /* GB */,
|
|
3986
|
+
isCanadian: this.locale === "en-CA" /* CA */,
|
|
3987
|
+
isScottish: this.locale === "en-SCT" /* SCT */,
|
|
3988
|
+
isGerman: this.locale === "de-DE" /* DE */
|
|
3989
|
+
}));
|
|
3193
3990
|
constructor(opts) {
|
|
3194
3991
|
this.platform = opts.platform;
|
|
3195
3992
|
this.environment = opts.environment;
|
|
@@ -3220,6 +4017,9 @@ var AppConfigManager = class {
|
|
|
3220
4017
|
getLocaleConfig = () => {
|
|
3221
4018
|
return { ...this.$localeConfig.getState(), locale: this.locale };
|
|
3222
4019
|
};
|
|
4020
|
+
getLocaleFlags = () => {
|
|
4021
|
+
return this.$localeFlags.getState();
|
|
4022
|
+
};
|
|
3223
4023
|
onEnvsChange = (cb) => {
|
|
3224
4024
|
return this.$envs.watch(cb);
|
|
3225
4025
|
};
|
|
@@ -3243,6 +4043,6 @@ var AppConfigManager = class {
|
|
|
3243
4043
|
};
|
|
3244
4044
|
};
|
|
3245
4045
|
|
|
3246
|
-
export { ApiRegion, AppConfigManager, DateFormat, DateLocale, Environment, Locale, LoginSource, MatrixMode, Platform, PlatformBuildTarget, QRCodeSize, SSO, Source, buildTargetToEnvironment };
|
|
4046
|
+
export { ApiRegion, AppConfigManager, CalendarLocale, DE_CALENDAR_CONFIG, DateFormat, DateLocale, EN_CALENDAR_CONFIG, Environment, Grade, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, Locale, LoginSource, MOST_USED_LANGUAGES, MatrixMode, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, Platform, PlatformBuildTarget, ProblemCreatorDescriptionVariant, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, Source, TTSOverrideSymbol, TreeLevel, buildTargetToEnvironment };
|
|
3247
4047
|
//# sourceMappingURL=index.mjs.map
|
|
3248
4048
|
//# sourceMappingURL=index.mjs.map
|