我已经成功实现了 i18next,顺便说一句,这是一个很棒的库!尽管我仍在寻找“最佳实践”。这是我现在的设置,总的来说我喜欢:
var userLanguage = 'en'; // set at runtime
i18n.init({
lng : userLanguage,
shortcutFunction : 'defaultValue',
fallbackLng : false,
load : 'unspecific',
resGetPath : 'locales/__lng__/__ns__.json'
});
在 DOM 中,我做这样的事情:
<span data-i18n="demo.myFirstExample">My first example</span>
在 JS 中,我会做这样的事情:
return i18n.t('demo.mySecondExample', 'My second example');
这意味着我在代码本身中维护英文翻译。translation.json
但是,我使用 i18next-parser使用单独的文件维护其他语言:
gulp.task('i18next', function()
{
gulp.src('app/**')
.pipe(i18next({
locales : ['nl','de'],
output : '../locales'
}))
.pipe(gulp.dest('locales'));
});
这一切都很好。唯一的问题是,当我设置'en'
为 时userLanguage
,i18next
坚持获取/locales/en/translation.json
文件,即使它不包含任何翻译。{}
为了防止 404,我目前在该文件中提供了一个空的 json 对象。
有没有办法完全防止加载空的 .json 文件?