diff options
| author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-09-07 22:13:05 +0300 | 
|---|---|---|
| committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-09-07 22:13:05 +0300 | 
| commit | 535710ae25a7f161d2aacf6e12d94a8dfe599d08 (patch) | |
| tree | 2a29106a843e2147c7166f64d093e855f9af2987 | |
| parent | 82b1b1bc6ee91e1778a16634fb9e2988da23fd71 (diff) | |
STORM-1587 FIXED Alert notifications were shown in English, no matter what viewer language was.
| -rw-r--r-- | indra/newview/llappviewer.cpp | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 7e597fe5dc..4e1ef59765 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -786,6 +786,12 @@ bool LLAppViewer::init()  		&LLUI::sGLScaleFactor);  	LL_INFOS("InitInfo") << "UI initialized." << LL_ENDL ; +	// Setup paths and LLTrans after LLUI::initClass has been called. +	LLUI::setupPaths(); +	LLTransUtil::parseStrings("strings.xml", default_trans_args); +	LLTransUtil::parseLanguageStrings("language_settings.xml"); + +	// Setup notifications after LLUI::setupPaths() has been called.  	LLNotifications::instance();  	LL_INFOS("InitInfo") << "Notifications initialized." << LL_ENDL ; @@ -831,12 +837,6 @@ bool LLAppViewer::init()  		LLError::setPrintLocation(true);  	} - -	// Setup paths and LLTrans after LLUI::initClass has been called -	LLUI::setupPaths(); -	LLTransUtil::parseStrings("strings.xml", default_trans_args);		 -	LLTransUtil::parseLanguageStrings("language_settings.xml"); -	  	// LLKeyboard relies on LLUI to know what some accelerator keys are called.  	LLKeyboard::setStringTranslatorFunc( LLTrans::getKeyboardString );  | 
