@sumor/i18n

i18n

Sumor Cloud 도구.
더 많은 문서

이것은 Node.js 및 브라우저용 가벼운 i18n 라이브러리입니다. i18n 리소스를 쉽게 관리하고 프로젝트에 적용할 수 있습니다.

CI Test Coverage Audit

설치

npm i @sumor/i18n --save

전제 조건

Node.JS 버전

Node.JS 버전 16.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)

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

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

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