13

我想在我的反应应用程序中为我的 i18n 使用 ICU 标准。我想存储我的语言文件,例如http://userguide.icu-project.org/locale/localizing#TOC-.txt-resource-bundles

de {
  key1 { "Deutsche Sprache "
         "schwere Sprache" }
  key2 { "Düsseldorf" }
}

我找到了这个库http://formatjs.io/react/http://formatjs.io/支持 ICU,但是我找不到任何好的示例如何将我的语言文件与我的应用程序连接。

我正在阅读他们的教程,看来我可以使用该组件<FormattedMessage>。所以例如

var intlData = {
    "locales": "en-US",
    "messages": {
        "photos": "{name} took {numPhotos, plural,\n  =0 {no photos}\n  =1 {one photo}\n  other {# photos}\n} on {takenDate, date, long}.\n"
    }
};

React.render(
    <Component {...intlData} />,
    document.getElementById('example')
);

然后在某些组件中我有

...
render: function () {
        return (
            <p>
                <FormattedMessage
                    message={this.getIntlMessage('photos')}
                    name="Annie"
                    numPhotos={1000}
                    takenDate={Date.now()} />
            </p>
        );
    }

我最大的问题是如何转换我的语言文件,例如

en-US {
  photos { "{name} took {numPhotos, plural,\n  =0 {no photos}\n  =1 {one photo}\n  other {# photos}\n} on {takenDate, date, long}.\n" }
}

成格式:

var intlData = {
    "locales": "en-US",
    "messages": {
        "photos": "{name} took {numPhotos, plural,\n  =0 {no photos}\n  =1 {one photo}\n  other {# photos}\n} on {takenDate, date, long}.\n"
    }
};

是否有任何解析器/转换器?

4

1 回答 1

6

你应该检查这个存储库https://github.com/gpbl/isomorphic500。在 intl 子目录中有不同语言的输入文件。

您还可以查看他们采用哪种类型的解析!希望这可以帮助。

于 2015-07-27T12:29:50.093 回答