Turkish language added (#1165)

* Add files via upload

* Add files via upload
This commit is contained in:
GkhnGRBZ
2024-12-21 00:37:46 +03:00
committed by GitHub
parent 347a24a97b
commit 1da2f258a7
2 changed files with 7 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ export type AvailableLocale =
| 'sq'
| 'sr'
| 'sv'
| 'tr'
| 'uk'
| 'zh-CN'
| 'zh-TW';
@@ -149,6 +150,10 @@ export const availableLanguages: AvailableLanguageObject = {
code: 'sr',
display: 'српски језик',
},
tr: {
code: 'tr',
display: 'Türkçe',
},
ar: {
code: 'ar',
display: 'العربية',

View File

@@ -85,6 +85,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise<any> => {
return import('../i18n/locale/sr.json');
case 'sv':
return import('../i18n/locale/sv.json');
case 'tr':
return import('../i18n/locale/tr.json');
case 'uk':
return import('../i18n/locale/uk.json');
case 'zh-CN':