diff options
author | roth <68660484+roth-dev@users.noreply.github.com> | 2024-12-19 06:33:19 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 15:33:19 -0800 |
commit | 323c974c6bd150b4e1c9acfe84665353585d520b (patch) | |
tree | 8e463567aa23db556cafa4201e148986c77175f5 /src/locale/languages.ts | |
parent | 9b35521d3c2d03e23fca412e895bd4936e2ee918 (diff) | |
download | voidsky-323c974c6bd150b4e1c9acfe84665353585d520b.tar.zst |
Add Khmer Localization (#6914)
* add khmer language * update translate * update translate * add missing localization key * update khmer wording * update khmer wording * add missing translate * add missing translate * chore: add khmer local date-time format * Update src/locale/i18n.ts Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com> Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Diffstat (limited to 'src/locale/languages.ts')
-rw-r--r-- | src/locale/languages.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/locale/languages.ts b/src/locale/languages.ts index ad20b16eb..ae6ffa7e6 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -21,6 +21,7 @@ export enum AppLanguage { id = 'id', it = 'it', ja = 'ja', + km = 'km', ko = 'ko', nl = 'nl', pl = 'pl', @@ -58,6 +59,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.id, name: 'Bahasa Indonesia – Indonesian'}, {code2: AppLanguage.it, name: 'Italiano – Italian'}, {code2: AppLanguage.ja, name: '日本語 – Japanese'}, + {code2: AppLanguage.km, name: 'ភាសាខ្មែរ – Khmer'}, {code2: AppLanguage.ko, name: '한국어 – Korean'}, {code2: AppLanguage.nl, name: 'Nederlands – Dutch'}, {code2: AppLanguage.pl, name: 'Polski – Polish'}, |