Skip to content

Commit

Permalink
feat(i18n): added new languages [Translation Delivery] (SAP#11086)
Browse files Browse the repository at this point in the history
* chore: translation delivery - commit by LX Lab

Change-Id: I806e975d7c1afdd9d10390690033d988112ad343
(cherry picked from commit e38ab2e)

* chore: translation delivery - commit by LX Lab

Change-Id: Ie0543dc8686bf112ee442bbef758db0abbbd28b0
(cherry picked from commit 59d0bee)

* chore: generated translations

(cherry picked from commit c366d6a)

* chore: translation delivery - commit by LX Lab

Change-Id: I23c3b5b286007ced64f87a45e17ad1bb702858ef
(cherry picked from commit 6edac8c)

* chore: generated translations

(cherry picked from commit 8905413)

* chore: added language variables

(cherry picked from commit 2205df4)

* chore: fixed missing export name

(cherry picked from commit eee0844)

---------

Co-authored-by: service-tip-git <[email protected]>
  • Loading branch information
g-cheishvili and service-tip-git authored Dec 13, 2023
1 parent 4339b1a commit 0bd4fd3
Show file tree
Hide file tree
Showing 105 changed files with 41,705 additions and 6,260 deletions.
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/arabic.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_ar';

export const FD_LANGUAGE_ARABIC = json as FdLanguage;
5 changes: 5 additions & 0 deletions libs/i18n/src/lib/languages/chinese_simplified.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_zh_CN';

export const FD_LANGUAGE_CHINESE_SIMPLIFIED = json as FdLanguage;
export const FD_LANGUAGE_CHINESE = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/chinese_traditional.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_zh_TW';

export const FD_LANGUAGE_CHINESE_TRADITIONAL = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/croatian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_hr';

export const FD_LANGUAGE_CROATIAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/danish.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_da';

export const FD_LANGUAGE_DANISH = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/dutch.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_nl';

export const FD_LANGUAGE_DUTCH = json as FdLanguage;
2 changes: 0 additions & 2 deletions libs/i18n/src/lib/languages/english.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import { FdLanguage } from '../models';
import json from '../translations/translations';

Expand Down
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/finnish.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_fi';

export const FD_LANGUAGE_FINNISH = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/greek.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_el';

export const FD_LANGUAGE_GREEK = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/hebrew.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_he';

export const FD_LANGUAGE_HEBREW = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/hungarian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_hu';

export const FD_LANGUAGE_HUNGARIAN = json as FdLanguage;
23 changes: 22 additions & 1 deletion libs/i18n/src/lib/languages/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@
export * from './albanian';
export * from './arabic';
export * from './bulgarian';
export * from './chinese';
export * from './chinese_simplified';
export * from './chinese_traditional';
export * from './croatian';
export * from './czech';
export * from './danish';
export * from './dutch';
export * from './english';
export * from './finnish';
export * from './french';
export * from './georgian';
export * from './german';
export * from './greek';
export * from './hebrew';
export * from './hindi';
export * from './hungarian';
export * from './italian';
export * from './japanese';
export * from './kazakh';
export * from './korean';
export * from './malay';
export * from './norwegian';
export * from './polish';
export * from './portuguese';
export * from './romanian';
export * from './russian';
export * from './serbian';
export * from './slovak';
export * from './slovenian';
export * from './spanish';
export * from './swedish';
export * from './thai';
export * from './turkish';
export * from './ukrainian';
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/japanese.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_ja';

export const FD_LANGUAGE_JAPANESE = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/kazakh.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_kk';

export const FD_LANGUAGE_KAZAKH = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/korean.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_ko';

export const FD_LANGUAGE_KOREAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/malay.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_ms';

export const FD_LANGUAGE_MALAY = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/norwegian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_no';

export const FD_LANGUAGE_NORWEGIAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/romanian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_ro';

export const FD_LANGUAGE_ROMANIAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/serbian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_sh';

export const FD_LANGUAGE_SERBIAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/slovak.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_sk';

export const FD_LANGUAGE_SLOVAK = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/slovenian.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_sl';

export const FD_LANGUAGE_SLOVENIAN = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/spanish.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_es';

export const FD_LANGUAGE_SPANISH = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/swedish.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_sv';

export const FD_LANGUAGE_SWEDISH = json as FdLanguage;
4 changes: 4 additions & 0 deletions libs/i18n/src/lib/languages/thai.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FdLanguage } from '../models';
import json from '../translations/translations_th';

export const FD_LANGUAGE_THAI = json as FdLanguage;
Loading

0 comments on commit 0bd4fd3

Please sign in to comment.