File tree 6 files changed +1718
-36
lines changed
features/config/form-cfgs
6 files changed +1718
-36
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "$schema" : " https://inlang.com/schema/project-settings" ,
3
- "sourceLanguageTag" : " en" ,
4
- "languageTags" : [
5
- " ar" ,
6
- " cz" ,
7
- " de" ,
8
- " en" ,
9
- " es" ,
10
- " fa" ,
11
- " fr" ,
12
- " hr" ,
13
- " id" ,
14
- " it" ,
15
- " ja" ,
16
- " ko" ,
17
- " nb" ,
18
- " nl" ,
19
- " pl" ,
20
- " pt" ,
21
- " ru" ,
22
- " sk" ,
23
- " tr" ,
24
- " zh" ,
25
- " zh-tw"
26
- ],
27
- "modules" : [
28
- " https://cdn.jsdelivr.net/npm/@inlang/plugin-json@4/dist/index.js" ,
29
- " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@latest/dist/index.js" ,
30
- " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-identical-pattern@latest/dist/index.js" ,
31
- " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@latest/dist/index.js" ,
32
- " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-without-source@latest/dist/index.js"
33
- ],
34
- "plugin.inlang.json" : {
35
- "pathPattern" : " ./src/assets/i18n/{languageTag}.json"
36
- }
2
+ "$schema" : " https://inlang.com/schema/project-settings" ,
3
+ "sourceLanguageTag" : " en" ,
4
+ "languageTags" : [
5
+ " ar" ,
6
+ " cz" ,
7
+ " de" ,
8
+ " en" ,
9
+ " es" ,
10
+ " fa" ,
11
+ " fr" ,
12
+ " hr" ,
13
+ " id" ,
14
+ " it" ,
15
+ " ja" ,
16
+ " ko" ,
17
+ " nb" ,
18
+ " nl" ,
19
+ " pl" ,
20
+ " pt" ,
21
+ " ru" ,
22
+ " sk" ,
23
+ " tr" ,
24
+ " uk" ,
25
+ " zh" ,
26
+ " zh-tw"
27
+ ],
28
+ "modules" : [
29
+ " https://cdn.jsdelivr.net/npm/@inlang/plugin-json@4/dist/index.js" ,
30
+ " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@latest/dist/index.js" ,
31
+ " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-identical-pattern@latest/dist/index.js" ,
32
+ " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@latest/dist/index.js" ,
33
+ " https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-without-source@latest/dist/index.js"
34
+ ],
35
+ "plugin.inlang.json" : {
36
+ "pathPattern" : " ./src/assets/i18n/{languageTag}.json"
37
+ }
37
38
}
38
-
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import '@angular/common/locales/global/pt';
26
26
import '@angular/common/locales/global/nl' ;
27
27
import '@angular/common/locales/global/nb' ;
28
28
import '@angular/common/locales/global/hr' ;
29
+ import '@angular/common/locales/global/uk' ;
29
30
30
31
export const DAY_STARTS_AT_DEFAULT_H = 9 ;
31
32
export const DAY_STARTS_AT : string = '9:00' ;
@@ -68,6 +69,7 @@ export enum LanguageCode {
68
69
ru = 'ru' ,
69
70
sk = 'sk' ,
70
71
tr = 'tr' ,
72
+ uk = 'uk' ,
71
73
zh = 'zh' ,
72
74
zh_tw = 'zh_tw' ,
73
75
}
@@ -92,6 +94,7 @@ export enum LanguageCodeMomentMap {
92
94
ru = 'ru' ,
93
95
sk = 'sk' ,
94
96
tr = 'tr' ,
97
+ uk = 'uk' ,
95
98
zh = 'zh-cn' ,
96
99
zh_tw = 'zh-tw' ,
97
100
}
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export const LANGUAGE_SELECTION_FORM_FORM: ConfigFormSection<LanguageConfig> = {
32
32
{ label : T . GCF . LANG . RU , value : LanguageCode . ru } ,
33
33
{ label : T . GCF . LANG . SK , value : LanguageCode . sk } ,
34
34
{ label : T . GCF . LANG . TR , value : LanguageCode . tr } ,
35
+ { label : T . GCF . LANG . UK , value : LanguageCode . uk } ,
35
36
{ label : T . GCF . LANG . ZH , value : LanguageCode . zh } ,
36
37
{ label : T . GCF . LANG . ZH_TW , value : LanguageCode . zh_tw } ,
37
38
] ,
Original file line number Diff line number Diff line change @@ -1455,6 +1455,7 @@ const T = {
1455
1455
SK : 'GCF.LANG.SK' ,
1456
1456
TITLE : 'GCF.LANG.TITLE' ,
1457
1457
TR : 'GCF.LANG.TR' ,
1458
+ UK : 'GCF.LANG.UK' ,
1458
1459
ZH : 'GCF.LANG.ZH' ,
1459
1460
ZH_TW : 'GCF.LANG.ZH_TW' ,
1460
1461
} ,
Original file line number Diff line number Diff line change 1432
1432
"SK" : " Slovak" ,
1433
1433
"TITLE" : " Language" ,
1434
1434
"TR" : " Türkçe" ,
1435
+ "UK" : " Українська" ,
1435
1436
"ZH" : " 中文(简体)" ,
1436
1437
"ZH_TW" : " 中文(繁體)"
1437
1438
},
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments