Skip to content
Snippets Groups Projects
Commit b06bc594 authored by Yuri Chebotarev's avatar Yuri Chebotarev
Browse files

fix for normal bug EXT-1982 [BSI] whisper and shout are malformed in Nearby...

fix for normal bug EXT-1982 [BSI] whisper and shout are malformed in Nearby Chat floater & chat toasts

--HG--
branch : product-engine
parent 7ed3d636
No related branches found
No related tags found
No related merge requests found
......@@ -2380,7 +2380,7 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data)
switch(chat.mChatType)
{
case CHAT_TYPE_WHISPER:
verb = "(" + LLTrans::getString("whisper") + ")";
verb = LLTrans::getString("whisper") + " ";
break;
case CHAT_TYPE_DEBUG_MSG:
case CHAT_TYPE_OWNER:
......@@ -2388,7 +2388,7 @@ void process_chat_from_simulator(LLMessageSystem *msg, void **user_data)
verb = "";
break;
case CHAT_TYPE_SHOUT:
verb = "(" + LLTrans::getString("shout") + ")";
verb = LLTrans::getString("shout") + " ";
break;
case CHAT_TYPE_START:
case CHAT_TYPE_STOP:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment