jo-i18n
jo-i18n是基于messageformat之上构建的国际化解决方案,得益于messageformat的优良特性,jo-i18n支持Unicode CLDR标准中的所有语言,能够帮助你处理单复数、日期和性别等语言翻译问题。
ICU标准提供了关于单复数、日期、性别等格式化的官方指导,除了被遗弃的ChoiceFormat,jo-i18n支持标准中的所有格式语法,同时jo-i18n提供了对语言标签(language tags)的检验,在BCP 47,保证了语言标签的准确合规。
jo-i18n能帮您解决什么问题?
通过jo-i18n,你可以做到业务代码和语言格式化(翻译)松耦合,也就是说,我们只需要对现有的代码进行极小的改动就能够是我们的应用变成国际化应用。
安装jo-i18n
npm install jo-i18n
简单的使用
<!--设置语言为en,如果没有设置,jo-i18n将从环境中读取当前所选语言-->
// dist.jsconst msg = '{GENDER, select, male{He} female{She} other{They} }' + ' found ' + '{RES, plural, =0{no results} one{1 result} other{# results} }' + ' in the ' + '{CAT, selectordinal, one{#st} two{#nd} few{#rd} other{#th} }' + ' category.'; const dist = 'en': 'TOTAL_ITEM': msg // index.js // 'He found 1 result in the 2nd category.' // 'She found 1 result in the 2nd category.' // 'They found 2 results in the 2nd category.'
上面的简单实例展示了jo-i18n在处理性别、单复数和序数等问题的格式化。更多格式语法
结合其他框架
Angular
jo-i18n目前很好得支持Angular框架,项目提供了translateProvider
方法为你轻松创建国际化翻译指令。
// translate.js;; angular 'yourTranslate';// index.jsangular
如上您就可以在你的模板中使用yourTranslate指令了。
我住在上海我不会被翻译
注:需要把需要翻译的字段通过extendDict
方法添加到字典表中。