18n

A simple i18n module

Usage no npm install needed!

<script type="module">
  import 8n from 'https://cdn.skypack.dev/18n';
</script>

README

18n

A simple i18n module

Install

$ npm install 18n

Usage

18n will read the configuration from the 18n.config.js in your package root.

Configuration

// 18n.config.js
module.exports = {
  langPath: 'languages',
  langPacks: [
    'en-us',
    'zh-cn'
  ],
  selector: () => {
    const {language} = navigator;
    switch (language) {
      case 'zh':
      case 'zh-cn':
        return 'zh-cn';
      default:
        return 'en-us';
    }
  }
};

License

MIT © LitoMore