Skip to content

Commit 96dd72c

Browse files
buiizjohannesjo
authored andcommittedOct 9, 2024
feat: Added Ukrainian language support.
1 parent 20d1b74 commit 96dd72c

File tree

6 files changed

+1718
-36
lines changed

6 files changed

+1718
-36
lines changed
 

‎project.inlang/settings.json

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
{
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+
}
3738
}
38-

‎src/app/app.constants.ts

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import '@angular/common/locales/global/pt';
2626
import '@angular/common/locales/global/nl';
2727
import '@angular/common/locales/global/nb';
2828
import '@angular/common/locales/global/hr';
29+
import '@angular/common/locales/global/uk';
2930

3031
export const DAY_STARTS_AT_DEFAULT_H = 9;
3132
export const DAY_STARTS_AT: string = '9:00';
@@ -68,6 +69,7 @@ export enum LanguageCode {
6869
ru = 'ru',
6970
sk = 'sk',
7071
tr = 'tr',
72+
uk = 'uk',
7173
zh = 'zh',
7274
zh_tw = 'zh_tw',
7375
}
@@ -92,6 +94,7 @@ export enum LanguageCodeMomentMap {
9294
ru = 'ru',
9395
sk = 'sk',
9496
tr = 'tr',
97+
uk = 'uk',
9598
zh = 'zh-cn',
9699
zh_tw = 'zh-tw',
97100
}

‎src/app/features/config/form-cfgs/language-selection-form.const.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export const LANGUAGE_SELECTION_FORM_FORM: ConfigFormSection<LanguageConfig> = {
3232
{ label: T.GCF.LANG.RU, value: LanguageCode.ru },
3333
{ label: T.GCF.LANG.SK, value: LanguageCode.sk },
3434
{ label: T.GCF.LANG.TR, value: LanguageCode.tr },
35+
{ label: T.GCF.LANG.UK, value: LanguageCode.uk },
3536
{ label: T.GCF.LANG.ZH, value: LanguageCode.zh },
3637
{ label: T.GCF.LANG.ZH_TW, value: LanguageCode.zh_tw },
3738
],

‎src/app/t.const.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1455,6 +1455,7 @@ const T = {
14551455
SK: 'GCF.LANG.SK',
14561456
TITLE: 'GCF.LANG.TITLE',
14571457
TR: 'GCF.LANG.TR',
1458+
UK: 'GCF.LANG.UK',
14581459
ZH: 'GCF.LANG.ZH',
14591460
ZH_TW: 'GCF.LANG.ZH_TW',
14601461
},

‎src/assets/i18n/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -1432,6 +1432,7 @@
14321432
"SK": "Slovak",
14331433
"TITLE": "Language",
14341434
"TR": "Türkçe",
1435+
"UK": "Українська",
14351436
"ZH": "中文(简体)",
14361437
"ZH_TW": "中文(繁體)"
14371438
},

‎src/assets/i18n/uk.json

+1,676
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.