i18n

一个Sumor Cloud工具。
更多文档

这是一个适用于Node.js和浏览器的轻量级i18n库。 您可以轻松使用它来管理您的i18n资源。 并将其应用于您的项目。

CI Test Coverage Audit

安装

npm i @sumor/i18n --save

先决条件

Node.JS版本

需要Node.JS版本18.x或更高

需要Node.JS ES模块

由于此包是用ES模块编写的, 请在您的package.json文件中更改以下代码:

{
  "type": "module"
}

用法

import getI18n from '@sumor/i18n'

const i18nConfig = {
  en: {
    demo: {
      hello: 'Hello',
      welcome: 'Welcome',
      greeting: 'Hello, {name}',
      test: 'Test'
    }
  },
  zh: {
    demo: {
      hello: '你好',
      welcome: '欢迎'
    }
  },
  'zh-TW': {
    demo: {
      hello: '妳好',
      greeting: '妳好, {name}'
    }
  }
}

const i18n = getI18n('zh-TW', i18nConfig)

// 匹配zh-TW
console.log(i18n('demo.hello')) // 妳好
console.log(i18n('demo.greeting', { name: 'John' })) // 妳好, John

// 匹配zh
console.log(i18n('demo.welcome')) // 欢迎

// 匹配en
console.log(i18n('demo.test')) // Test