mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-07 02:01:50 +01:00
🌍 i18n: Support for Icelandic, Lithuanian, Nynorsk and Slovak (#11649)
This commit is contained in:
parent
754d921b51
commit
fcb363403a
7 changed files with 20 additions and 0 deletions
|
|
@ -103,17 +103,21 @@ export const LangSelector = ({
|
|||
{ value: 'he-HE', label: localize('com_nav_lang_hebrew') },
|
||||
{ value: 'hu-HU', label: localize('com_nav_lang_hungarian') },
|
||||
{ value: 'hy-AM', label: localize('com_nav_lang_armenian') },
|
||||
{ value: 'is', label: localize('com_nav_lang_icelandic') },
|
||||
{ value: 'it-IT', label: localize('com_nav_lang_italian') },
|
||||
{ value: 'nb', label: localize('com_nav_lang_norwegian_bokmal') },
|
||||
{ value: 'nn', label: localize('com_nav_lang_norwegian_nynorsk') },
|
||||
{ value: 'pl-PL', label: localize('com_nav_lang_polish') },
|
||||
{ value: 'pt-BR', label: localize('com_nav_lang_brazilian_portuguese') },
|
||||
{ value: 'pt-PT', label: localize('com_nav_lang_portuguese') },
|
||||
{ value: 'ru-RU', label: localize('com_nav_lang_russian') },
|
||||
{ value: 'sk', label: localize('com_nav_lang_slovak') },
|
||||
{ value: 'ja-JP', label: localize('com_nav_lang_japanese') },
|
||||
{ value: 'ka-GE', label: localize('com_nav_lang_georgian') },
|
||||
{ value: 'cs-CZ', label: localize('com_nav_lang_czech') },
|
||||
{ value: 'sv-SE', label: localize('com_nav_lang_swedish') },
|
||||
{ value: 'ko-KR', label: localize('com_nav_lang_korean') },
|
||||
{ value: 'lt-LT', label: localize('com_nav_lang_lithuanian') },
|
||||
{ value: 'lv-LV', label: localize('com_nav_lang_latvian') },
|
||||
{ value: 'vi-VN', label: localize('com_nav_lang_vietnamese') },
|
||||
{ value: 'th-TH', label: localize('com_nav_lang_thai') },
|
||||
|
|
|
|||
|
|
@ -509,16 +509,20 @@
|
|||
"com_nav_lang_german": "Deutsch",
|
||||
"com_nav_lang_hebrew": "עברית",
|
||||
"com_nav_lang_hungarian": "Magyar",
|
||||
"com_nav_lang_icelandic": "Íslenska",
|
||||
"com_nav_lang_indonesia": "Indonesia",
|
||||
"com_nav_lang_italian": "Italiano",
|
||||
"com_nav_lang_japanese": "日本語",
|
||||
"com_nav_lang_korean": "한국어",
|
||||
"com_nav_lang_latvian": "Latviski",
|
||||
"com_nav_lang_lithuanian": "Lietuvių",
|
||||
"com_nav_lang_norwegian_bokmal": "Norsk Bokmål",
|
||||
"com_nav_lang_norwegian_nynorsk": "Norsk Nynorsk",
|
||||
"com_nav_lang_persian": "فارسی",
|
||||
"com_nav_lang_polish": "Polski",
|
||||
"com_nav_lang_portuguese": "Português",
|
||||
"com_nav_lang_russian": "Русский",
|
||||
"com_nav_lang_slovak": "Slovenčina",
|
||||
"com_nav_lang_slovenian": "Slovenščina",
|
||||
"com_nav_lang_spanish": "Español",
|
||||
"com_nav_lang_swedish": "Svenska",
|
||||
|
|
|
|||
|
|
@ -22,19 +22,23 @@ import translationJa from './ja/translation.json';
|
|||
import translationKa from './ka/translation.json';
|
||||
import translationSv from './sv/translation.json';
|
||||
import translationKo from './ko/translation.json';
|
||||
import translationLt from './lt/translation.json';
|
||||
import translationLv from './lv/translation.json';
|
||||
import translationTh from './th/translation.json';
|
||||
import translationTr from './tr/translation.json';
|
||||
import translationUg from './ug/translation.json';
|
||||
import translationVi from './vi/translation.json';
|
||||
import translationNl from './nl/translation.json';
|
||||
import translationNn from './nn/translation.json';
|
||||
import translationId from './id/translation.json';
|
||||
import translationIs from './is/translation.json';
|
||||
import translationHe from './he/translation.json';
|
||||
import translationHu from './hu/translation.json';
|
||||
import translationHy from './hy/translation.json';
|
||||
import translationFi from './fi/translation.json';
|
||||
import translationZh_Hans from './zh-Hans/translation.json';
|
||||
import translationZh_Hant from './zh-Hant/translation.json';
|
||||
import translationSk from './sk/translation.json';
|
||||
import translationBo from './bo/translation.json';
|
||||
import translationUk from './uk/translation.json';
|
||||
import translationBs from './bs/translation.json';
|
||||
|
|
@ -67,17 +71,21 @@ export const resources = {
|
|||
ka: { translation: translationKa },
|
||||
sv: { translation: translationSv },
|
||||
ko: { translation: translationKo },
|
||||
lt: { translation: translationLt },
|
||||
lv: { translation: translationLv },
|
||||
th: { translation: translationTh },
|
||||
tr: { translation: translationTr },
|
||||
ug: { translation: translationUg },
|
||||
vi: { translation: translationVi },
|
||||
nl: { translation: translationNl },
|
||||
nn: { translation: translationNn },
|
||||
id: { translation: translationId },
|
||||
is: { translation: translationIs },
|
||||
he: { translation: translationHe },
|
||||
hu: { translation: translationHu },
|
||||
hy: { translation: translationHy },
|
||||
fi: { translation: translationFi },
|
||||
sk: { translation: translationSk },
|
||||
bo: { translation: translationBo },
|
||||
sl: { translation: translationSl },
|
||||
uk: { translation: translationUk },
|
||||
|
|
|
|||
1
client/src/locales/is/translation.json
Normal file
1
client/src/locales/is/translation.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
client/src/locales/lt/translation.json
Normal file
1
client/src/locales/lt/translation.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
client/src/locales/nn/translation.json
Normal file
1
client/src/locales/nn/translation.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
client/src/locales/sk/translation.json
Normal file
1
client/src/locales/sk/translation.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
Loading…
Add table
Add a link
Reference in a new issue