mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
Turkish language added (#1165)
* Add files via upload * Add files via upload
This commit is contained in:
@@ -31,6 +31,7 @@ export type AvailableLocale =
|
|||||||
| 'sq'
|
| 'sq'
|
||||||
| 'sr'
|
| 'sr'
|
||||||
| 'sv'
|
| 'sv'
|
||||||
|
| 'tr'
|
||||||
| 'uk'
|
| 'uk'
|
||||||
| 'zh-CN'
|
| 'zh-CN'
|
||||||
| 'zh-TW';
|
| 'zh-TW';
|
||||||
@@ -149,6 +150,10 @@ export const availableLanguages: AvailableLanguageObject = {
|
|||||||
code: 'sr',
|
code: 'sr',
|
||||||
display: 'српски језик',
|
display: 'српски језик',
|
||||||
},
|
},
|
||||||
|
tr: {
|
||||||
|
code: 'tr',
|
||||||
|
display: 'Türkçe',
|
||||||
|
},
|
||||||
ar: {
|
ar: {
|
||||||
code: 'ar',
|
code: 'ar',
|
||||||
display: 'العربية',
|
display: 'العربية',
|
||||||
|
|||||||
@@ -85,6 +85,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise<any> => {
|
|||||||
return import('../i18n/locale/sr.json');
|
return import('../i18n/locale/sr.json');
|
||||||
case 'sv':
|
case 'sv':
|
||||||
return import('../i18n/locale/sv.json');
|
return import('../i18n/locale/sv.json');
|
||||||
|
case 'tr':
|
||||||
|
return import('../i18n/locale/tr.json');
|
||||||
case 'uk':
|
case 'uk':
|
||||||
return import('../i18n/locale/uk.json');
|
return import('../i18n/locale/uk.json');
|
||||||
case 'zh-CN':
|
case 'zh-CN':
|
||||||
|
|||||||
Reference in New Issue
Block a user