forked from FoundKeyGang/FoundKey
.yaml -> .yml
This commit is contained in:
parent
bb59dd6e11
commit
cf1e320cfa
1 changed files with 18 additions and 16 deletions
|
@ -11,8 +11,8 @@ import version from './src/version';
|
|||
const constants = require('./src/const.json');
|
||||
|
||||
const languages = {
|
||||
'en': yaml.safeLoad(fs.readFileSync('./locales/en.yaml', 'utf-8')),
|
||||
'ja': yaml.safeLoad(fs.readFileSync('./locales/ja.yaml', 'utf-8'))
|
||||
'en': yaml.safeLoad(fs.readFileSync('./locales/en.yml', 'utf-8')),
|
||||
'ja': yaml.safeLoad(fs.readFileSync('./locales/ja.yml', 'utf-8'))
|
||||
};
|
||||
|
||||
const env = process.env.NODE_ENV;
|
||||
|
@ -35,7 +35,8 @@ module.exports = (Object as any).entries(languages).map(([lang, locale]) => {
|
|||
exclude: /node_modules/,
|
||||
loader: StringReplacePlugin.replace({
|
||||
replacements: [
|
||||
{ pattern: /%i18n:(.+?)%/g, replacement: (_, key) => {
|
||||
{
|
||||
pattern: /%i18n:(.+?)%/g, replacement: (_, key) => {
|
||||
let text = locale;
|
||||
const error = key.split('.').some(k => {
|
||||
if (text.hasOwnProperty(k)) {
|
||||
|
@ -51,7 +52,8 @@ module.exports = (Object as any).entries(languages).map(([lang, locale]) => {
|
|||
} else {
|
||||
return text.replace(/'/g, '\\\'').replace(/"/g, '\\"');
|
||||
}
|
||||
} }
|
||||
}
|
||||
}
|
||||
]
|
||||
})
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue