1.0.1 • Published 5 years ago

webpack-chrome-i18n-plugin v1.0.1

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

webpack-chrome-i18n-plugin

img

Chrome Extension i18n 国际化支持的 Webpack plugin

Install

$ yarn add webpack-chrome-i18n-plugin

Usage

const WebpackChromeI18nPlugin = require('webpack-chrome-i18n-plugin');

[
  new WebpackChromeI18nPlugin({
    filename: './i18n.json',
    localizes: ['zh_CN']
  })
]

i18n.json

i18n.json 格式如下:

{
  "localize_key": {
    "zh_CN": {
      "message": "icepy"
    },
    "en": {
      "message": "icepy"
    },
    "zh_TW": {
      "message": "icepy"
    }
  }
}