mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 14:37:06 +01:00
Add languages to config
- Spanish - German - French - Italian - Japanese - Russian - Portugese - Polish - Chinese (simplified)
This commit is contained in:
parent
999b6afd0e
commit
ba20dc0972
@ -2,9 +2,27 @@ import { PostProcessorModule } from 'i18next';
|
|||||||
import i18n from 'i18next';
|
import i18n from 'i18next';
|
||||||
import { initReactI18next } from 'react-i18next';
|
import { initReactI18next } from 'react-i18next';
|
||||||
import en from './locales/en.json';
|
import en from './locales/en.json';
|
||||||
|
import es from './locales/es.json';
|
||||||
|
import fr from './locales/fr.json';
|
||||||
|
import ja from './locales/ja.json';
|
||||||
|
import pl from './locales/pl.json';
|
||||||
|
import zhHans from './locales/zh-Hans.json';
|
||||||
|
import de from './locales/de.json';
|
||||||
|
import it from './locales/it.json';
|
||||||
|
import ru from './locales/ru.json';
|
||||||
|
import ptBr from './locales/pt-BR.json';
|
||||||
|
|
||||||
const resources = {
|
const resources = {
|
||||||
en: { translation: en },
|
en: { translation: en },
|
||||||
|
es: { translation: es },
|
||||||
|
de: { translation: de },
|
||||||
|
it: { translation: it },
|
||||||
|
ru: { translation: ru },
|
||||||
|
'pt-BR': { translation: ptBr },
|
||||||
|
fr: { translation: fr },
|
||||||
|
ja: { translation: ja },
|
||||||
|
pl: { translation: pl },
|
||||||
|
'zh-Hans': { translation: zhHans },
|
||||||
};
|
};
|
||||||
|
|
||||||
export const languages = [
|
export const languages = [
|
||||||
@ -12,6 +30,42 @@ export const languages = [
|
|||||||
label: 'English',
|
label: 'English',
|
||||||
value: 'en',
|
value: 'en',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'Español',
|
||||||
|
value: 'es',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Deutsch',
|
||||||
|
value: 'de',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Français',
|
||||||
|
value: 'fr',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Italiano',
|
||||||
|
value: 'it',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '日本語',
|
||||||
|
value: 'ja',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Русский',
|
||||||
|
value: 'ru',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Português (Brasil)',
|
||||||
|
value: 'pt-BR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Polski',
|
||||||
|
value: 'pl',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '简体中文',
|
||||||
|
value: 'zh-Hans',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const lowerCasePostProcessor: PostProcessorModule = {
|
const lowerCasePostProcessor: PostProcessorModule = {
|
||||||
|
Loading…
Reference in New Issue
Block a user