Package Exports
- yaml-locales-webpack-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (yaml-locales-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
YAML to Locales plugin for Webpack
Plugin for Webpack, which creates localization files of Google Chrome extension from one YAML file.
Installation
# npm
npm install --save-dev yaml-locales-webpack-plugin
# yarn
yarn add --dev yaml-locales-webpack-plugin
Usage
webpack.config.js
const YamlLocalesWebpackPlugin = require('yaml-locales-webpack-plugin');
module.exports = {
plugins: [new YamlLocalesWebpackPlugin()]
};
Options
new YamlLocalesWebpackPlugin(options?: object)
Name | Type | Default | Description |
---|---|---|---|
yamlFile |
string |
'./src/i18n-messages.yaml' |
Path to the YAML file with translations |
defaultLanguage |
string |
'en' |
Default language |
onlySupportedLanguages |
boolean |
true |
Only supported Chrome Web Store languages |
messageKeys |
string[] |
['message', 'msg', 'm'] |
Keys in the YAML file to describe messages |
descriptionKeys |
string[] |
['description', 'desc', 'd'] |
Keys in the YAML file for descriptions |
Example of a YAML file
key_1: Message for key_1 (default language)
key_2:
message: Message for key_2 (default language)
description: Description for key_2 (default language)
key_3:
m: Message for key_3 (default language)
d: Description for key_3 (default language)
key_4:
en: Message for key_4 (EN)
ru: Сообщение для key_4 (RU)
uk: Повідомлення для key_4 (UK)
key_5:
en:
m: Message for key_5 (EN)
d: Description for key_5 (EN)
uk: Повідомлення для key_5 (UK)
key_6:
description: Description for key_6 (language-independent)
en: Message for key_6 (EN)
uk: Повідомлення для key_6 (UK)
key_7:
message: Message for key_6 (language-independent)
en:
description: Description for key_6 (EN)
uk:
description: Опис для key_6 (UK)