mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-06 17:51:50 +01:00
* 🌍 i18n: Add Danish and Czech localization support * 🌍 i18n: Correct Czech language code from 'sc-CZ' to 'cs-CZ' * 🌍 i18n: Add Catalan localization support
88 lines
3.2 KiB
TypeScript
88 lines
3.2 KiB
TypeScript
import i18n from 'i18next';
|
|
import { initReactI18next } from 'react-i18next';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
|
|
// Import your JSON translations
|
|
import translationEn from './en/translation.json';
|
|
import translationAr from './ar/translation.json';
|
|
import translationCa from './ca/translation.json';
|
|
import translationCs from './cs/translation.json';
|
|
import translationDa from './da/translation.json';
|
|
import translationDe from './de/translation.json';
|
|
import translationEs from './es/translation.json';
|
|
import translationEt from './et/translation.json';
|
|
import translationFa from './fa/translation.json';
|
|
import translationFr from './fr/translation.json';
|
|
import translationIt from './it/translation.json';
|
|
import translationPl from './pl/translation.json';
|
|
import translationPt_BR from './pt-BR/translation.json';
|
|
import translationPt_PT from './pt-PT/translation.json';
|
|
import translationRu from './ru/translation.json';
|
|
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 translationTh from './th/translation.json';
|
|
import translationTr from './tr/translation.json';
|
|
import translationVi from './vi/translation.json';
|
|
import translationNl from './nl/translation.json';
|
|
import translationId from './id/translation.json';
|
|
import translationHe from './he/translation.json';
|
|
import translationHu from './hu/translation.json';
|
|
import translationFi from './fi/translation.json';
|
|
import translationZh_Hans from './zh-Hans/translation.json';
|
|
import translationZh_Hant from './zh-Hant/translation.json';
|
|
|
|
export const defaultNS = 'translation';
|
|
|
|
export const resources = {
|
|
en: { translation: translationEn },
|
|
ar: { translation: translationAr },
|
|
ca: { translation: translationCa },
|
|
cs: { translation: translationCs },
|
|
'zh-Hans': { translation: translationZh_Hans },
|
|
'zh-Hant': { translation: translationZh_Hant },
|
|
da: { translation: translationDa },
|
|
de: { translation: translationDe },
|
|
es: { translation: translationEs },
|
|
et: { translation: translationEt },
|
|
fa: { translation: translationFa },
|
|
fr: { translation: translationFr },
|
|
it: { translation: translationIt },
|
|
pl: { translation: translationPl },
|
|
'pt-BR': { translation: translationPt_BR },
|
|
'pt-PT': { translation: translationPt_PT },
|
|
ru: { translation: translationRu },
|
|
ja: { translation: translationJa },
|
|
ka: { translation: translationKa },
|
|
sv: { translation: translationSv },
|
|
ko: { translation: translationKo },
|
|
th: { translation: translationTh },
|
|
tr: { translation: translationTr },
|
|
vi: { translation: translationVi },
|
|
nl: { translation: translationNl },
|
|
id: { translation: translationId },
|
|
he: { translation: translationHe },
|
|
hu: { translation: translationHu },
|
|
fi: { translation: translationFi },
|
|
} as const;
|
|
|
|
i18n
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
fallbackLng: {
|
|
'zh-TW': ['zh-Hant', 'en'],
|
|
'zh-HK': ['zh-Hant', 'en'],
|
|
zh: ['zh-Hans', 'en'],
|
|
default: ['en'],
|
|
},
|
|
fallbackNS: 'translation',
|
|
ns: ['translation'],
|
|
debug: false,
|
|
defaultNS,
|
|
resources,
|
|
interpolation: { escapeValue: false },
|
|
});
|
|
|
|
export default i18n;
|