mirror of
https://github.com/node-red/node-red
synced 2024-11-23 08:59:13 +00:00
Only attempt to load one locale per catalog
This commit is contained in:
parent
e6ed8ee509
commit
d9cf6a4431
@ -19,13 +19,14 @@ RED.i18n = (function() {
|
||||
return {
|
||||
init: function(done) {
|
||||
i18n.init({
|
||||
resGetPath: 'locales/__ns__?lang=__lng__',
|
||||
resGetPath: 'locales/__ns__',
|
||||
dynamicLoad: false,
|
||||
load:'current',
|
||||
ns: {
|
||||
namespaces: ["editor","node-red"],
|
||||
defaultNs: "editor"
|
||||
},
|
||||
fallbackLng: ['en']
|
||||
fallbackLng: ['en-US']
|
||||
},function() {
|
||||
done();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user