最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React native localizations: Global variable - Stack Overflow

programmeradmin1浏览0评论

I am new to React, and I e from the world of iOS/Android where localized strings are all defined in dedicated files. I have looked into react-native-localization and it seems like we need to define the strings object in each class and then use the values in the rendering. This seems to be quite inefficient and fragmented to me, or maybe I have misunderstood the usage. I haven't been able to find good examples of the usage of react-native-localization. I'd really appreciate some guidance.

I am new to React, and I e from the world of iOS/Android where localized strings are all defined in dedicated files. I have looked into react-native-localization and it seems like we need to define the strings object in each class and then use the values in the rendering. This seems to be quite inefficient and fragmented to me, or maybe I have misunderstood the usage. I haven't been able to find good examples of the usage of react-native-localization. I'd really appreciate some guidance.

Share asked Sep 8, 2016 at 14:34 Rameez HussainRameez Hussain 6,76410 gold badges61 silver badges91 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

We have used react-native-localization on our project and its very useful this is our usage:

.../ApplicationRoot/utils/strings.js

import LocalizedStrings from 'react-native-localization';

let Strings = new LocalizedStrings({
  ar:{
    hello:'أهلاً',
    howareyou:'كيف حالك؟'
  },
  en:{
    hello:'Hello!',
    howareyou:'How Are You?'
  }

});


module.exports = Strings;

after that we import it in any ponent we want to use it in:

TestComponent.js:

import Strings from './utils/strings.js'

...

<Text>Strings.hello</Text>

It's possible to use this react library set up localization. It also has shorthand methods. And it also supports auto language detection of the device.

UPDATE

Use this library as the above one is deprecated

https://github./react-native-munity/react-native-localize

发布评论

评论列表(0)

  1. 暂无评论