waha-shared 1.0.110 → 1.0.111
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/assets/fonts/KhmerOSContent-Regular.ttf +0 -0
- package/assets/fonts/UKIJTuz-Regular.ttf +0 -0
- package/dist/data/bibleTexts/bibleTexts.json +1 -1
- package/dist/data/bibleTexts/bibleTexts.zod.d.ts +5 -5
- package/dist/data/bibleTexts/bibleTexts.zod.js +1 -0
- package/dist/data/bibleTexts/index.d.ts +1 -1
- package/dist/data/curriculumFoundations/curriculumFoundations.json +9 -0
- package/dist/data/curriculumFoundations/curriculumFoundations.zod.d.ts +3 -0
- package/dist/data/curriculumFoundations/curriculumFoundations.zod.js +1 -0
- package/dist/data/curriculumFoundations/index.d.ts +1 -0
- package/dist/data/curriculumQuestions/curriculumQuestions.json +21 -80
- package/dist/data/curriculumQuestions/curriculumQuestions.zod.d.ts +3 -0
- package/dist/data/curriculumQuestions/curriculumQuestions.zod.js +1 -0
- package/dist/data/curriculumQuestions/index.d.ts +1 -0
- package/dist/data/curriculumTopics/curriculumTopics.json +5 -0
- package/dist/data/curriculumTopics/curriculumTopics.zod.d.ts +3 -0
- package/dist/data/curriculumTopics/curriculumTopics.zod.js +1 -0
- package/dist/data/curriculumTopics/index.d.ts +1 -0
- package/dist/data/releaseNotes/releaseNotes.json +40 -2
- package/dist/data/translationsFtb/translationsFtb.json +35 -35
- package/dist/data/translationsQuestion/translationsQuestion.json +39 -39
- package/dist/data/translationsSet/translationsSet.json +317 -317
- package/dist/data/translationsSpokenQuestion/translationsSpokenQuestion.json +33 -33
- package/dist/functions/crowdin.d.ts +7 -3
- package/dist/functions/crowdin.js +2 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -10,14 +10,14 @@ export declare const BibleTexts: z.ZodArray<z.ZodObject<{
|
|
|
10
10
|
nameEnglish: z.ZodOptional<z.ZodString>;
|
|
11
11
|
textSource: z.ZodObject<{
|
|
12
12
|
includeSectionTitles: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
-
source: z.ZodEnum<["dbl", "bibleBrain", "usfm", "usfx", "yvp", "custom"]>;
|
|
13
|
+
source: z.ZodEnum<["dbl", "bibleBrain", "usfm", "usfx", "yvp", "custom", "usx"]>;
|
|
14
14
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
15
15
|
}, "strict", z.ZodTypeAny, {
|
|
16
|
-
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp";
|
|
16
|
+
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp" | "usx";
|
|
17
17
|
sourceId?: string | undefined;
|
|
18
18
|
includeSectionTitles?: boolean | undefined;
|
|
19
19
|
}, {
|
|
20
|
-
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp";
|
|
20
|
+
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp" | "usx";
|
|
21
21
|
sourceId?: string | undefined;
|
|
22
22
|
includeSectionTitles?: boolean | undefined;
|
|
23
23
|
}>;
|
|
@@ -26,7 +26,7 @@ export declare const BibleTexts: z.ZodArray<z.ZodObject<{
|
|
|
26
26
|
bibleTextId: string;
|
|
27
27
|
languageId: string;
|
|
28
28
|
textSource: {
|
|
29
|
-
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp";
|
|
29
|
+
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp" | "usx";
|
|
30
30
|
sourceId?: string | undefined;
|
|
31
31
|
includeSectionTitles?: boolean | undefined;
|
|
32
32
|
};
|
|
@@ -40,7 +40,7 @@ export declare const BibleTexts: z.ZodArray<z.ZodObject<{
|
|
|
40
40
|
bibleTextId: string;
|
|
41
41
|
languageId: string;
|
|
42
42
|
textSource: {
|
|
43
|
-
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp";
|
|
43
|
+
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp" | "usx";
|
|
44
44
|
sourceId?: string | undefined;
|
|
45
45
|
includeSectionTitles?: boolean | undefined;
|
|
46
46
|
};
|
|
@@ -3,7 +3,7 @@ export declare const bibleTexts: {
|
|
|
3
3
|
bibleTextId: string;
|
|
4
4
|
languageId: string;
|
|
5
5
|
textSource: {
|
|
6
|
-
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp";
|
|
6
|
+
source: "custom" | "dbl" | "bibleBrain" | "usfm" | "usfx" | "yvp" | "usx";
|
|
7
7
|
sourceId?: string | undefined;
|
|
8
8
|
includeSectionTitles?: boolean | undefined;
|
|
9
9
|
};
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"data": [
|
|
4
4
|
{
|
|
5
5
|
"curriculumId": "eng",
|
|
6
|
+
"crowdinProjectId": "549537",
|
|
6
7
|
"sets": [
|
|
7
8
|
"01.001",
|
|
8
9
|
"01.002",
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
},
|
|
18
19
|
{
|
|
19
20
|
"curriculumId": "mfe",
|
|
21
|
+
"crowdinProjectId": "866752",
|
|
20
22
|
"sets": [
|
|
21
23
|
"01.072",
|
|
22
24
|
"01.073",
|
|
@@ -31,6 +33,7 @@
|
|
|
31
33
|
},
|
|
32
34
|
{
|
|
33
35
|
"curriculumId": "arz",
|
|
36
|
+
"crowdinProjectId": "866732",
|
|
34
37
|
"sets": [
|
|
35
38
|
"01.054",
|
|
36
39
|
"01.055",
|
|
@@ -45,6 +48,7 @@
|
|
|
45
48
|
},
|
|
46
49
|
{
|
|
47
50
|
"curriculumId": "afb",
|
|
51
|
+
"crowdinProjectId": "866742",
|
|
48
52
|
"sets": [
|
|
49
53
|
"01.030",
|
|
50
54
|
"01.031",
|
|
@@ -62,6 +66,7 @@
|
|
|
62
66
|
},
|
|
63
67
|
{
|
|
64
68
|
"curriculumId": "hic",
|
|
69
|
+
"crowdinProjectId": "866748",
|
|
65
70
|
"sets": [
|
|
66
71
|
"01.017",
|
|
67
72
|
"01.018",
|
|
@@ -74,6 +79,7 @@
|
|
|
74
79
|
},
|
|
75
80
|
{
|
|
76
81
|
"curriculumId": "hin",
|
|
82
|
+
"crowdinProjectId": "866744",
|
|
77
83
|
"sets": [
|
|
78
84
|
"01.010",
|
|
79
85
|
"01.011",
|
|
@@ -86,6 +92,7 @@
|
|
|
86
92
|
},
|
|
87
93
|
{
|
|
88
94
|
"curriculumId": "tur",
|
|
95
|
+
"crowdinProjectId": "866738",
|
|
89
96
|
"sets": [
|
|
90
97
|
"01.021",
|
|
91
98
|
"01.022",
|
|
@@ -100,6 +107,7 @@
|
|
|
100
107
|
},
|
|
101
108
|
{
|
|
102
109
|
"curriculumId": "ais",
|
|
110
|
+
"crowdinProjectId": "866736",
|
|
103
111
|
"sets": [
|
|
104
112
|
"01.042",
|
|
105
113
|
"01.043",
|
|
@@ -117,6 +125,7 @@
|
|
|
117
125
|
},
|
|
118
126
|
{
|
|
119
127
|
"curriculumId": "ase",
|
|
128
|
+
"crowdinProjectId": "549537",
|
|
120
129
|
"sets": [
|
|
121
130
|
"01.063",
|
|
122
131
|
"01.064",
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CurriculumFoundations: z.ZodArray<z.ZodObject<{
|
|
3
3
|
curriculumId: z.ZodString;
|
|
4
|
+
crowdinProjectId: z.ZodString;
|
|
4
5
|
sets: z.ZodArray<z.ZodString, "many">;
|
|
5
6
|
}, "strict", z.ZodTypeAny, {
|
|
6
7
|
curriculumId: string;
|
|
8
|
+
crowdinProjectId: string;
|
|
7
9
|
sets: string[];
|
|
8
10
|
}, {
|
|
9
11
|
curriculumId: string;
|
|
12
|
+
crowdinProjectId: string;
|
|
10
13
|
sets: string[];
|
|
11
14
|
}>, "many">;
|
|
12
15
|
export type CurriculumFoundations = z.infer<typeof CurriculumFoundations>;
|
|
@@ -5,6 +5,7 @@ const zod_1 = require("zod");
|
|
|
5
5
|
exports.CurriculumFoundations = zod_1.z.array(zod_1.z
|
|
6
6
|
.object({
|
|
7
7
|
curriculumId: zod_1.z.string(),
|
|
8
|
+
crowdinProjectId: zod_1.z.string(),
|
|
8
9
|
sets: zod_1.z
|
|
9
10
|
.array(zod_1.z.string())
|
|
10
11
|
.describe('An array of set ids that make up this foundations curriculum. Set ids must be linked to valid sets present in data/sets.json.'),
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"data": [
|
|
4
4
|
{
|
|
5
5
|
"curriculumId": "mfe",
|
|
6
|
+
"crowdinProjectId": "866752",
|
|
6
7
|
"questionSets": [
|
|
7
8
|
{
|
|
8
9
|
"questionSetId": "ft-a-church",
|
|
@@ -57,12 +58,7 @@
|
|
|
57
58
|
},
|
|
58
59
|
{
|
|
59
60
|
"questionSetId": "ft-f-first-meeting",
|
|
60
|
-
"questions": [
|
|
61
|
-
"f.001",
|
|
62
|
-
"f.002",
|
|
63
|
-
"f.003",
|
|
64
|
-
"f.008"
|
|
65
|
-
]
|
|
61
|
+
"questions": ["f.001", "f.002", "f.003", "f.008"]
|
|
66
62
|
},
|
|
67
63
|
{
|
|
68
64
|
"questionSetId": "ft-f-standard",
|
|
@@ -162,18 +158,11 @@
|
|
|
162
158
|
},
|
|
163
159
|
{
|
|
164
160
|
"questionSetId": "mt-a-video-only",
|
|
165
|
-
"questions": [
|
|
166
|
-
"a.video"
|
|
167
|
-
]
|
|
161
|
+
"questions": ["a.video"]
|
|
168
162
|
},
|
|
169
163
|
{
|
|
170
164
|
"questionSetId": "mt-f-first",
|
|
171
|
-
"questions": [
|
|
172
|
-
"f.009",
|
|
173
|
-
"f.002",
|
|
174
|
-
"f.010",
|
|
175
|
-
"f.013"
|
|
176
|
-
]
|
|
165
|
+
"questions": ["f.009", "f.002", "f.010", "f.013"]
|
|
177
166
|
},
|
|
178
167
|
{
|
|
179
168
|
"questionSetId": "mt-f-no-prayer",
|
|
@@ -206,6 +195,7 @@
|
|
|
206
195
|
},
|
|
207
196
|
{
|
|
208
197
|
"curriculumId": "eng",
|
|
198
|
+
"crowdinProjectId": "549537",
|
|
209
199
|
"questionSets": [
|
|
210
200
|
{
|
|
211
201
|
"questionSetId": "ft-a-church",
|
|
@@ -260,12 +250,7 @@
|
|
|
260
250
|
},
|
|
261
251
|
{
|
|
262
252
|
"questionSetId": "ft-f-first-meeting",
|
|
263
|
-
"questions": [
|
|
264
|
-
"f.001",
|
|
265
|
-
"f.002",
|
|
266
|
-
"f.003",
|
|
267
|
-
"f.008"
|
|
268
|
-
]
|
|
253
|
+
"questions": ["f.001", "f.002", "f.003", "f.008"]
|
|
269
254
|
},
|
|
270
255
|
{
|
|
271
256
|
"questionSetId": "ft-f-standard",
|
|
@@ -326,18 +311,11 @@
|
|
|
326
311
|
},
|
|
327
312
|
{
|
|
328
313
|
"questionSetId": "mt-a-video-only",
|
|
329
|
-
"questions": [
|
|
330
|
-
"a.video"
|
|
331
|
-
]
|
|
314
|
+
"questions": ["a.video"]
|
|
332
315
|
},
|
|
333
316
|
{
|
|
334
317
|
"questionSetId": "mt-f-first",
|
|
335
|
-
"questions": [
|
|
336
|
-
"f.009",
|
|
337
|
-
"f.002",
|
|
338
|
-
"f.010",
|
|
339
|
-
"f.013"
|
|
340
|
-
]
|
|
318
|
+
"questions": ["f.009", "f.002", "f.010", "f.013"]
|
|
341
319
|
},
|
|
342
320
|
{
|
|
343
321
|
"questionSetId": "mt-f-no-prayer",
|
|
@@ -370,6 +348,7 @@
|
|
|
370
348
|
},
|
|
371
349
|
{
|
|
372
350
|
"curriculumId": "tha",
|
|
351
|
+
"crowdinProjectId": "866754",
|
|
373
352
|
"questionSets": [
|
|
374
353
|
{
|
|
375
354
|
"questionSetId": "ft-a-church",
|
|
@@ -432,12 +411,7 @@
|
|
|
432
411
|
},
|
|
433
412
|
{
|
|
434
413
|
"questionSetId": "ft-f-first-meeting",
|
|
435
|
-
"questions": [
|
|
436
|
-
"f.001",
|
|
437
|
-
"f.002",
|
|
438
|
-
"f.003",
|
|
439
|
-
"f.008"
|
|
440
|
-
]
|
|
414
|
+
"questions": ["f.001", "f.002", "f.003", "f.008"]
|
|
441
415
|
},
|
|
442
416
|
{
|
|
443
417
|
"questionSetId": "ft-f-standard",
|
|
@@ -504,18 +478,11 @@
|
|
|
504
478
|
},
|
|
505
479
|
{
|
|
506
480
|
"questionSetId": "mt-a-video-only",
|
|
507
|
-
"questions": [
|
|
508
|
-
"a.video"
|
|
509
|
-
]
|
|
481
|
+
"questions": ["a.video"]
|
|
510
482
|
},
|
|
511
483
|
{
|
|
512
484
|
"questionSetId": "mt-f-first",
|
|
513
|
-
"questions": [
|
|
514
|
-
"f.009",
|
|
515
|
-
"f.002",
|
|
516
|
-
"f.010",
|
|
517
|
-
"f.013"
|
|
518
|
-
]
|
|
485
|
+
"questions": ["f.009", "f.002", "f.010", "f.013"]
|
|
519
486
|
},
|
|
520
487
|
{
|
|
521
488
|
"questionSetId": "mt-f-no-prayer",
|
|
@@ -548,6 +515,7 @@
|
|
|
548
515
|
},
|
|
549
516
|
{
|
|
550
517
|
"curriculumId": "afb",
|
|
518
|
+
"crowdinProjectId": "866742",
|
|
551
519
|
"questionSets": [
|
|
552
520
|
{
|
|
553
521
|
"questionSetId": "ft-a-church",
|
|
@@ -577,12 +545,7 @@
|
|
|
577
545
|
},
|
|
578
546
|
{
|
|
579
547
|
"questionSetId": "ft-f-first-meeting",
|
|
580
|
-
"questions": [
|
|
581
|
-
"f.001",
|
|
582
|
-
"f.002",
|
|
583
|
-
"f.003",
|
|
584
|
-
"f.008"
|
|
585
|
-
]
|
|
548
|
+
"questions": ["f.001", "f.002", "f.003", "f.008"]
|
|
586
549
|
},
|
|
587
550
|
{
|
|
588
551
|
"questionSetId": "ft-f-standard",
|
|
@@ -643,18 +606,11 @@
|
|
|
643
606
|
},
|
|
644
607
|
{
|
|
645
608
|
"questionSetId": "mt-a-video-only",
|
|
646
|
-
"questions": [
|
|
647
|
-
"a.video"
|
|
648
|
-
]
|
|
609
|
+
"questions": ["a.video"]
|
|
649
610
|
},
|
|
650
611
|
{
|
|
651
612
|
"questionSetId": "mt-f-first",
|
|
652
|
-
"questions": [
|
|
653
|
-
"f.001",
|
|
654
|
-
"f.002",
|
|
655
|
-
"f.003",
|
|
656
|
-
"f.008"
|
|
657
|
-
]
|
|
613
|
+
"questions": ["f.001", "f.002", "f.003", "f.008"]
|
|
658
614
|
},
|
|
659
615
|
{
|
|
660
616
|
"questionSetId": "mt-f-no-prayer",
|
|
@@ -686,6 +642,7 @@
|
|
|
686
642
|
},
|
|
687
643
|
{
|
|
688
644
|
"curriculumId": "hin",
|
|
645
|
+
"crowdinProjectId": "866744",
|
|
689
646
|
"questionSets": [
|
|
690
647
|
{
|
|
691
648
|
"questionSetId": "ft-a-church",
|
|
@@ -713,20 +670,11 @@
|
|
|
713
670
|
},
|
|
714
671
|
{
|
|
715
672
|
"questionSetId": "ft-f-first-meeting",
|
|
716
|
-
"questions": [
|
|
717
|
-
"f.014",
|
|
718
|
-
"f.018"
|
|
719
|
-
]
|
|
673
|
+
"questions": ["f.014", "f.018"]
|
|
720
674
|
},
|
|
721
675
|
{
|
|
722
676
|
"questionSetId": "ft-f-standard",
|
|
723
|
-
"questions": [
|
|
724
|
-
"f.014",
|
|
725
|
-
"f.015",
|
|
726
|
-
"f.016",
|
|
727
|
-
"f.017",
|
|
728
|
-
"f.018"
|
|
729
|
-
]
|
|
677
|
+
"questions": ["f.014", "f.015", "f.016", "f.017", "f.018"]
|
|
730
678
|
},
|
|
731
679
|
{
|
|
732
680
|
"questionSetId": "mt-a-no-engagement",
|
|
@@ -774,18 +722,11 @@
|
|
|
774
722
|
},
|
|
775
723
|
{
|
|
776
724
|
"questionSetId": "mt-a-video-only",
|
|
777
|
-
"questions": [
|
|
778
|
-
"a.video"
|
|
779
|
-
]
|
|
725
|
+
"questions": ["a.video"]
|
|
780
726
|
},
|
|
781
727
|
{
|
|
782
728
|
"questionSetId": "mt-f-first",
|
|
783
|
-
"questions": [
|
|
784
|
-
"f.009",
|
|
785
|
-
"f.002",
|
|
786
|
-
"f.010",
|
|
787
|
-
"f.013"
|
|
788
|
-
]
|
|
729
|
+
"questions": ["f.009", "f.002", "f.010", "f.013"]
|
|
789
730
|
},
|
|
790
731
|
{
|
|
791
732
|
"questionSetId": "mt-f-no-prayer",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CurriculumQuestions: z.ZodArray<z.ZodObject<{
|
|
3
3
|
curriculumId: z.ZodString;
|
|
4
|
+
crowdinProjectId: z.ZodString;
|
|
4
5
|
questionSets: z.ZodArray<z.ZodObject<{
|
|
5
6
|
questionSetId: z.ZodString;
|
|
6
7
|
questions: z.ZodArray<z.ZodString, "many">;
|
|
@@ -13,12 +14,14 @@ export declare const CurriculumQuestions: z.ZodArray<z.ZodObject<{
|
|
|
13
14
|
}>, "many">;
|
|
14
15
|
}, "strict", z.ZodTypeAny, {
|
|
15
16
|
curriculumId: string;
|
|
17
|
+
crowdinProjectId: string;
|
|
16
18
|
questionSets: {
|
|
17
19
|
questionSetId: string;
|
|
18
20
|
questions: string[];
|
|
19
21
|
}[];
|
|
20
22
|
}, {
|
|
21
23
|
curriculumId: string;
|
|
24
|
+
crowdinProjectId: string;
|
|
22
25
|
questionSets: {
|
|
23
26
|
questionSetId: string;
|
|
24
27
|
questions: string[];
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"data": [
|
|
4
4
|
{
|
|
5
5
|
"curriculumId": "eng",
|
|
6
|
+
"crowdinProjectId": "549537",
|
|
6
7
|
"sets": [
|
|
7
8
|
"02.001",
|
|
8
9
|
"02.002",
|
|
@@ -43,6 +44,7 @@
|
|
|
43
44
|
},
|
|
44
45
|
{
|
|
45
46
|
"curriculumId": "mya",
|
|
47
|
+
"crowdinProjectId": "866750",
|
|
46
48
|
"sets": [
|
|
47
49
|
"02.001",
|
|
48
50
|
"02.002",
|
|
@@ -84,14 +86,17 @@
|
|
|
84
86
|
},
|
|
85
87
|
{
|
|
86
88
|
"curriculumId": "hin",
|
|
89
|
+
"crowdinProjectId": "866744",
|
|
87
90
|
"sets": ["02.036", "02.037"]
|
|
88
91
|
},
|
|
89
92
|
{
|
|
90
93
|
"curriculumId": "ase",
|
|
94
|
+
"crowdinProjectId": "549537",
|
|
91
95
|
"sets": ["02.073"]
|
|
92
96
|
},
|
|
93
97
|
{
|
|
94
98
|
"curriculumId": "tur",
|
|
99
|
+
"crowdinProjectId": "866738",
|
|
95
100
|
"sets": [
|
|
96
101
|
"02.038",
|
|
97
102
|
"02.039",
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CurriculumTopics: z.ZodArray<z.ZodObject<{
|
|
3
3
|
curriculumId: z.ZodString;
|
|
4
|
+
crowdinProjectId: z.ZodString;
|
|
4
5
|
sets: z.ZodArray<z.ZodString, "many">;
|
|
5
6
|
}, "strict", z.ZodTypeAny, {
|
|
6
7
|
curriculumId: string;
|
|
8
|
+
crowdinProjectId: string;
|
|
7
9
|
sets: string[];
|
|
8
10
|
}, {
|
|
9
11
|
curriculumId: string;
|
|
12
|
+
crowdinProjectId: string;
|
|
10
13
|
sets: string[];
|
|
11
14
|
}>, "many">;
|
|
12
15
|
export type CurriculumTopics = z.infer<typeof CurriculumTopics>;
|
|
@@ -5,6 +5,7 @@ const zod_1 = require("zod");
|
|
|
5
5
|
exports.CurriculumTopics = zod_1.z.array(zod_1.z
|
|
6
6
|
.object({
|
|
7
7
|
curriculumId: zod_1.z.string(),
|
|
8
|
+
crowdinProjectId: zod_1.z.string(),
|
|
8
9
|
sets: zod_1.z
|
|
9
10
|
.array(zod_1.z.string())
|
|
10
11
|
.describe('An array of set ids that make up this topics curriculum. Set ids must be linked to valid sets present in data/sets.json.'),
|
|
@@ -2,8 +2,45 @@
|
|
|
2
2
|
"$schema": "./releaseNotes.schema.json",
|
|
3
3
|
"data": [
|
|
4
4
|
{
|
|
5
|
-
"version": "6.4.
|
|
5
|
+
"version": "6.4.2",
|
|
6
6
|
"showInApp": false,
|
|
7
|
+
"notes": {
|
|
8
|
+
"eng": "Actually fixed Uyghur (and Khmer) font issue.",
|
|
9
|
+
"ara": "تم إصلاح مشكلة الخط في الأويغورية (والخميرية) بالفعل.",
|
|
10
|
+
"ceb": "Naayo na gyud ang isyu sa font sa Uyghur (ug Khmer).",
|
|
11
|
+
"cmn": "实际上已经修复了维吾尔语(以及高棉语)的字体问题。",
|
|
12
|
+
"deu": "Das Schriftartenproblem bei Uigurisch (und Khmer) wurde tatsächlich behoben.",
|
|
13
|
+
"esp": "De hecho, ya se corrigió el problema de fuente en uigur (y en jemer).",
|
|
14
|
+
"fra": "En fait, le problème de police en ouïghour (et en khmer) a déjà été corrigé.",
|
|
15
|
+
"hau": "A zahiri an gyara matsalar rubutu (font) ta Uyghur (da Khmer).",
|
|
16
|
+
"hin": "वास्तव में उइगुर (और खमेर) फ़ॉन्ट की समस्या ठीक कर दी गई है।",
|
|
17
|
+
"hun": "Valójában már javítva lett az ujgur (és a khmer) betűtípusprobléma.",
|
|
18
|
+
"ind": "Sebenarnya masalah font Uyghur (dan Khmer) sudah diperbaiki.",
|
|
19
|
+
"jpn": "実際に、ウイグル語(およびクメール語)のフォント問題は修正されました。",
|
|
20
|
+
"khm": "តាមពិត បញ្ហាពុម្ពអក្សរភាសាអ៊ុយហ្គួរ (និងខ្មែរ) ត្រូវបានជួសជុលរួចហើយ។",
|
|
21
|
+
"mar": "खरं तर उइगुर (आणि ख्मेर) फॉन्टची समस्या दुरुस्त केली आहे.",
|
|
22
|
+
"mon": "Үнэндээ уйгур (мөн кхмер) үсгийн фонтын асуудлыг зассан.",
|
|
23
|
+
"mya": "တကယ်တော့ ဥယဂါ (နှင့် ခမာ) ဖောင့်ပြဿနာကို ပြင်ပြီးပါပြီ။",
|
|
24
|
+
"pes": "در واقع مشکل فونتِ اویغوری (و خِمِری) برطرف شده است.",
|
|
25
|
+
"por": "Na verdade, o problema de fonte em uigur (e khmer) já foi corrigido.",
|
|
26
|
+
"ron": "De fapt, problema de font pentru uigură (și khmeră) a fost deja remediată.",
|
|
27
|
+
"rus": "На самом деле проблема со шрифтом для уйгурского (и кхмерского) уже исправлена.",
|
|
28
|
+
"spa": "De hecho, ya se corrigió el problema de fuente en uigur (y en jemer).",
|
|
29
|
+
"swe": "Faktiskt har teckensnittsproblemet för uiguriska (och khmer) redan åtgärdats.",
|
|
30
|
+
"swz": "Empeleni, inkinga yefonti ye-Uyghur (neye-Khmer) seyilungisiwe.",
|
|
31
|
+
"tel": "నిజానికి ఉయ్ఘూర్ (మరియు ఖ్మేర్) ఫాంట్ సమస్యను ఇప్పటికే పరిష్కరించారు.",
|
|
32
|
+
"tgl": "Sa totoo lang, naayos na ang isyu sa font ng Uyghur (at Khmer).",
|
|
33
|
+
"tha": "จริง ๆ แล้วปัญหาแบบอักษรของภาษาอุยกูร์ (และภาษาเขมร) ได้รับการแก้ไขแล้ว",
|
|
34
|
+
"tur": "Aslında Uygurca (ve Kmerce) yazı tipi sorunu düzeltildi.",
|
|
35
|
+
"uig": "ئەمەلىيەتتە ئۇيغۇرچە (ۋە خېمېرچە) خەت نۇسخا مەسىلىسى تۈزىتىلدى.",
|
|
36
|
+
"ukr": "Насправді проблему зі шрифтом для уйгурської (і кхмерської) вже виправлено.",
|
|
37
|
+
"urd": "درحقیقت اویغور (اور خمیر) فونٹ کا مسئلہ ٹھیک کر دیا گیا ہے۔",
|
|
38
|
+
"vie": "Thực ra, vấn đề phông chữ tiếng Duy Ngô Nhĩ (và tiếng Khmer) đã được khắc phục rồi.",
|
|
39
|
+
"zsm": "Sebenarnya isu fon Uyghur (dan Khmer) sudah diperbaiki."
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"version": "6.4.1",
|
|
7
44
|
"notes": {
|
|
8
45
|
"eng": "Fixing dark mode issues.",
|
|
9
46
|
"ara": "إصلاح مشكلات الوضع الداكن.",
|
|
@@ -37,7 +74,8 @@
|
|
|
37
74
|
"urd": "ڈارک موڈ کے مسائل ٹھیک کرنا۔",
|
|
38
75
|
"vie": "Khắc phục sự cố chế độ tối.",
|
|
39
76
|
"zsm": "Membaiki isu mod gelap."
|
|
40
|
-
}
|
|
77
|
+
},
|
|
78
|
+
"showInApp": false
|
|
41
79
|
},
|
|
42
80
|
{
|
|
43
81
|
"version": "6.4.0",
|