vn-verdnaturachat/app/i18n/index.js

85 lines
1.9 KiB
JavaScript
Raw Normal View History

import i18n from 'i18n-js';
import { I18nManager } from 'react-native';
import * as RNLocalize from 'react-native-localize';
export * from './isRTL';
2020-09-17 11:50:27 +00:00
export const LANGUAGES = [
{
label: 'English',
value: 'en',
file: require('./locales/en.json')
2020-09-17 11:50:27 +00:00
}, {
label: '简体中文',
value: 'zh-CN',
file: require('./locales/zh-CN.json')
2020-09-17 11:50:27 +00:00
}, {
label: '繁體中文',
value: 'zh-TW',
file: require('./locales/zh-TW.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Deutsch',
value: 'de',
file: require('./locales/de.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Español (ES)',
value: 'es-ES',
file: require('./locales/es-ES.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Français',
value: 'fr',
file: require('./locales/fr.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Português (BR)',
value: 'pt-BR',
file: require('./locales/pt-BR.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Português (PT)',
value: 'pt-PT',
file: require('./locales/pt-PT.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Russian',
value: 'ru',
file: require('./locales/ru.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Nederlands',
value: 'nl',
file: require('./locales/nl.json')
2020-09-17 11:50:27 +00:00
}, {
label: 'Italiano',
value: 'it',
file: require('./locales/it.json')
2020-09-17 11:50:27 +00:00
}, {
label: '日本語',
value: 'ja',
file: require('./locales/ja.json')
}, {
label: 'العربية',
value: 'ar',
file: require('./locales/ar.json')
}, {
label: 'Türkçe',
value: 'tr',
file: require('./locales/tr.json')
2020-09-17 11:50:27 +00:00
}
];
2018-06-01 17:38:13 +00:00
2020-09-17 11:50:27 +00:00
const translations = LANGUAGES.reduce((ret, item) => {
ret[item.value] = item.file;
return ret;
}, {});
i18n.translations = translations;
i18n.fallbacks = true;
const defaultLanguage = { languageTag: 'en', isRTL: false };
const availableLanguages = Object.keys(i18n.translations);
const { languageTag, isRTL } = RNLocalize.findBestAvailableLanguage(availableLanguages) || defaultLanguage;
I18nManager.forceRTL(isRTL);
I18nManager.swapLeftAndRightInRTL(isRTL);
i18n.locale = languageTag;
i18n.isRTL = I18nManager.isRTL;
2018-06-01 17:38:13 +00:00
export default i18n;