1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

add optional lang select

This commit is contained in:
fellinga 2020-12-27 12:59:12 +01:00
parent 9b1c114c3f
commit 4943bde3d4
3 changed files with 4 additions and 2 deletions

View File

@ -33,7 +33,7 @@ module.exports = {
*/ */
init: function(settings) { init: function(settings) {
log.init(settings); log.init(settings);
i18n.init(); i18n.init(settings);
}, },
/** /**

View File

@ -160,7 +160,7 @@ function init() {
suffix: '__' suffix: '__'
} }
}; };
var lang = getCurrentLocale(); var lang = settings.lang || getCurrentLocale();
if (lang) { if (lang) {
opt.lng = lang; opt.lng = lang;
} }

View File

@ -248,6 +248,8 @@ module.exports = {
// their values. Setting this to true will cause the keys to be listed. // their values. Setting this to true will cause the keys to be listed.
exportGlobalContextKeys: false, exportGlobalContextKeys: false,
// Uncomment the following to run node-red in your preferred language:
// lang: "de",
// Context Storage // Context Storage
// The following property can be used to enable context storage. The configuration // The following property can be used to enable context storage. The configuration