我正在使用I18Next作为基于Javascript的翻译解决方案,以下是需要发生的事情:
i18n.init
我想要的ns.namespace
。基本上,有没有办法让i18next自动加载名称空间?保证通过t("[SomeNamespace]Key.Key2");
调用的名称空间是有效的并且肯定存在。问题只是i18next无法“自动加载”,我无法找到一种方法让i18n在调用 i18n.init后“手动”加载资源文件。
这是我目前的代码。
$.i18n.init(
{
lng: "en",
fallbackLng: "en",
useCookie: false,
resGetPath: "System/i18n/__ns__/__lng__.json",
ns: "Core"
},
function(t) {
System.I18N = t;
alert(System.I18N("LoginUI:Messages.Name"));
}
);
正如所料,它只是向我显示LoginUI:Messages.Name
,而不是System/i18n/LoginUI/en.json
中的翻译:
{
"Messages": {
"Name": "Logon Interface"
}
}
(在这种情况下,Core / en.json是无关紧要的。我目前需要的是“LoginUI / en.json”自动加载或我可以强制手动加载。)
答案 0 :(得分:3)
i18next现在提供了一个在初始化后加载其他命名空间的函数:http://i18next.com/pages/doc_init.html#loadAdditionalNS
答案 1 :(得分:2)
在深入研究源代码之后,我已经创建了一种有效的解决方案,但肯定需要长期改进。
在i18n.addjQueryFunct()
的定义中,将其添加到访问resStore(翻译存储变量):
$.i18n._getResStore = _getResStore;
$.i18n._writeResStore = _writeResStore;
function _getResStore() {
return resStore;
}
function _writeResStore(r) {
resStore = r;
}
如果要加载额外的命名空间,只需执行以下操作:
// define options, run $.i18n.init, etc...
// suppose ns = "namespace_foobar_new"
options.ns.namespaces.push(ns);
$.i18n.sync._fetchOne(lang, ns, $.extend({}, $.i18n.options, options),
function(err, data) {
store = {};
store[lang] = {}; store[lang][ns] = data;
newResStore = $.extend(true, {}, $.i18n._getResStore(), store);
$.i18n._writeResStore(newResStore);
});
呼。