diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2010-03-16 14:49:20 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2010-03-16 14:49:20 +0200 |
commit | 5675afccbb30d44f367dd50d99b41fcf64c9c4f9 (patch) | |
tree | 0913ef4d38d50a6167b2890bd1e5e9acbaf58ff5 /indra/newview/llstartup.cpp | |
parent | 04e692b3f1fbd98bc9fabc76e258c89b95458468 (diff) |
fixed EXT-6363 [HARD CODED] "Login Failed." is hardcoded
moved out "Login failed." to strings.xml
Reviewed by Q at https://codereview.productengine.com/secondlife/r/27/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 025dd6029a..d4d6a74f0c 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1040,7 +1040,7 @@ bool idle_startup() if(STATE_LOGIN_PROCESS_RESPONSE == LLStartUp::getStartupState()) { std::ostringstream emsg; - emsg << "Login failed.\n"; + emsg << LLTrans::getString("LoginFailed") << "\n"; if(LLLoginInstance::getInstance()->authFailure()) { LL_INFOS("LLStartup") << "Login failed, LLLoginInstance::getResponse(): " |