2018-06-01 17:38:13 +00:00
|
|
|
import I18n from 'react-native-i18n';
|
|
|
|
import en from './locales/en';
|
2018-07-25 13:14:12 +00:00
|
|
|
import ru from './locales/ru';
|
2018-09-21 17:24:32 +00:00
|
|
|
import pt from './locales/pt-BR';
|
2018-06-01 17:38:13 +00:00
|
|
|
|
|
|
|
I18n.fallbacks = true;
|
|
|
|
|
|
|
|
I18n.translations = {
|
2018-09-21 17:24:32 +00:00
|
|
|
en, ru, pt
|
2018-06-01 17:38:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default I18n;
|