mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #2796 from fellinga/feature/lang-select
add optional lang select
This commit is contained in:
		| @@ -33,7 +33,7 @@ module.exports = { | ||||
|     */ | ||||
|     init: function(settings) { | ||||
|         log.init(settings); | ||||
|         i18n.init(); | ||||
|         i18n.init(settings); | ||||
|     }, | ||||
|  | ||||
|     /** | ||||
|   | ||||
| @@ -142,7 +142,7 @@ function getCurrentLocale() { | ||||
|     return undefined; | ||||
| } | ||||
|  | ||||
| function init() { | ||||
| function init(settings) { | ||||
|     if (!initPromise) { | ||||
|         // Keep this as a 'when' promise as top-level red.js uses 'otherwise' | ||||
|         // and embedded users of NR may have copied that. | ||||
| @@ -160,7 +160,7 @@ function init() { | ||||
|                     suffix: '__' | ||||
|                 } | ||||
|             }; | ||||
|             var lang = getCurrentLocale(); | ||||
|             var lang = settings.lang || getCurrentLocale(); | ||||
|             if (lang) { | ||||
|                 opt.lng = lang; | ||||
|             } | ||||
|   | ||||
							
								
								
									
										2
									
								
								packages/node_modules/node-red/settings.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								packages/node_modules/node-red/settings.js
									
									
									
									
										vendored
									
									
								
							| @@ -248,6 +248,8 @@ module.exports = { | ||||
|     // their values. Setting this to true will cause the keys to be listed. | ||||
|     exportGlobalContextKeys: false, | ||||
|  | ||||
|     // Uncomment the following to run node-red in your preferred language: | ||||
|     // lang: "de", | ||||
|  | ||||
|     // Context Storage | ||||
|     // The following property can be used to enable context storage. The configuration | ||||
|   | ||||
		Reference in New Issue
	
	Block a user