Rocket.Chat.ReactNative/app/i18n/index.js

12 lines
180 B
JavaScript
Raw Normal View History

2018-06-01 17:38:13 +00:00
import I18n from 'react-native-i18n';
import en from './locales/en';
import ru from './locales/ru';
2018-06-01 17:38:13 +00:00
I18n.fallbacks = true;
I18n.translations = {
en, ru
2018-06-01 17:38:13 +00:00
};
export default I18n;