@matthewbschneider/i18n-webpack-plugin
v1.0.2
Published
Rewrite original embed localization into your bundle with support webpack 5
Downloads
3
Maintainers
Readme
npm
npm i -D @matthewbschneider/i18n-webpack-plugin
yarn
yarn add -D @matthewbschneider/i18n-webpack-plugin
This plugin creates bundles with translations baked in. So you can serve the translated bundle to your clients. Example:
console.log(__("Hello World"));
console.log(__("Missing Text"));
var path = require("path");
var I18nPlugin = require("@zainulbr/i18n-webpack-plugin");
var languages = {
"en": null,
"de": require("./de.json")
};
module.exports = Object.keys(languages).map(function(language) {
return {
name: language,
// mode: "development || "production",
entry: "./example",
output: {
path: path.join(__dirname, "dist"),
filename: language + ".output.js"
},
plugins: [
new I18nPlugin(
languages[language]
)
]
};
});
{
"Hello World": "Hallo Welt"
}
current example. original example from un maintenance repo
plugins: [
...
new I18nPlugin(languageConfig, optionsObj)
],
optionsObj.functionName
: the default value is__
, you can change it to other function name.optionsObj.failOnMissing
: the default value isfalse
, which will show a warning message, if the mapping text cannot be found. If set totrue
, the message will be an error message.optionsObj.hideMessage
: the default value isfalse
, which will show the warning/error message. If set totrue
, the message will be hidden.optionsObj.nested
: the default value isfalse
. If set totrue
, the keys inlanguageConfig
can be nested. This option is interpreted only iflanguageConfig
isn't a function.