diff options
author | Danni <danninov@users.noreply.github.com> | 2024-01-10 03:47:48 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 02:17:48 +0530 |
commit | d7f4e1391c385f11fbb61b7f1ffa6da65957b6a1 (patch) | |
tree | bbf5de195fbb79a3fe01c3432b034853003776e2 /src/locale/languages.ts | |
parent | dda5ca27feb54e7101cb80d9a38a7edd5440d0ec (diff) | |
download | voidsky-d7f4e1391c385f11fbb61b7f1ffa6da65957b6a1.tar.zst |
Add Indonesian localization (#2356)
* Add Indonesian (id) locale * Add Indonesian translation messages * Update team number and add some translation * Update for better ID translation * Apply suggestions from code review Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com> Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com> * Apply suggestions from code review Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com> * Change translation post to postingan * Update translation * Fix error * Apply suggestions from code review Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com> * Add Thinkbyte1024 and mary-ext to language team ID * Update username to lowercase --------- Co-authored-by: Aditya Dirgantara <ccoremapd@icloud.com> Co-authored-by: Mary <148872143+mary-ext@users.noreply.github.com> Co-authored-by: Ansh <anshnanda10@gmail.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 6514bf92c..cacd144f1 100644 --- a/src/locale/languages.ts +++ b/src/locale/languages.ts @@ -8,6 +8,7 @@ export enum AppLanguage { en = 'en', // DISABLED until this translation is fixed -prf // de = 'de', + id = 'id', es = 'es', fr = 'fr', hi = 'hi', @@ -26,6 +27,7 @@ export const APP_LANGUAGES: AppLanguageConfig[] = [ {code2: AppLanguage.en, name: 'English'}, // DISABLED until this translation is fixed -prf // {code2: AppLanguage.de, name: 'Deutsch'}, + {code2: AppLanguage.id, name: 'Indonesian'}, {code2: AppLanguage.es, name: 'Español'}, {code2: AppLanguage.fr, name: 'Français'}, {code2: AppLanguage.hi, name: 'हिंदी'}, |