加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
i18next-scanner.app.config.js 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
/* eslint no-console: 0 */
/* eslint strict: 0 */
const fs = require('fs');
const chalk = require('chalk');
const languages = require('./build.config').languages;
module.exports = {
src: [
'src/app/**/*.{html,hbs,js,jsx}',
// Use ! to filter out files or directories
'!src/app/{vendor,i18n}/**',
'!test/**',
'!**/node_modules/**'
],
dest: './',
options: {
debug: false,
removeUnusedKeys: true,
sort: false,
func: {
list: [], // Use an empty array to bypass the default list: i18n.t, i18next.t
extensions: ['.js', '.jsx']
},
trans: {
component: 'I18n',
i18nKey: 'i18nKey',
defaultsKey: 'defaults',
extensions: ['.js', '.jsx'],
fallbackKey: function(ns, value) {
return value;
}
},
lngs: languages,
ns: [
'gcode',
'resource' // default
],
defaultNs: 'resource',
defaultValue: (lng, ns, key) => {
if (lng === 'en') {
return key; // Use key as value for base language
}
return ''; // Return empty string for other languages
},
resource: {
loadPath: 'src/app/i18n/{{lng}}/{{ns}}.json',
savePath: 'src/app/i18n/{{lng}}/{{ns}}.json', // or 'src/app/i18n/${lng}/${ns}.saveAll.json'
jsonIndent: 4
},
nsSeparator: ':', // namespace separator
keySeparator: '.', // key separator
interpolation: {
prefix: '{{',
suffix: '}}'
}
},
transform: function(file, enc, done) {
'use strict';
const parser = this.parser;
const content = fs.readFileSync(file.path, enc);
let count = 0;
parser.parseFuncFromString(content, { list: ['i18n._', 'i18n.__'] }, (key, options) => {
parser.set(key, Object.assign({}, options, {
nsSeparator: false,
keySeparator: false
}));
++count;
});
if (count > 0) {
console.log(`[i18next-scanner] transform: count=${chalk.cyan(count)}, file=${chalk.yellow(JSON.stringify(file.relative))}`);
}
done();
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化