summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermessage.cpp
diff options
context:
space:
mode:
authorYuri Chebotarev <ychebotarev@productengine.com>2010-03-16 15:24:28 +0200
committerYuri Chebotarev <ychebotarev@productengine.com>2010-03-16 15:24:28 +0200
commit13710336cb46a26f00751b1badac2f2dfc14350a (patch)
tree4f46065a4ea53dc7cb4397e1186d2efa6ea33464 /indra/newview/llviewermessage.cpp
parentf41274cae3c8bfe6767ee7dceeb6e3d1563d9695 (diff)
EXT-5989 [HARD CODED]. ".... paid you...... L$... " - message needs translation
Reviwed https://codereview.productengine.com/secondlife/r/13/ --HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rw-r--r--indra/newview/llviewermessage.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index b90e3dcda4..e882597c59 100644
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -4484,11 +4484,13 @@ void process_money_balance_reply( LLMessageSystem* msg, void** )
std::string ammount = desc.substr(marker_pos + marker.length(),desc.length() - marker.length() - marker_pos);
//reform description
- std::string paid_you = LLTrans::getString("paid_you_ldollars");
- std::string new_description = base_name + paid_you + ammount;
+ LLStringUtil::format_map_t str_args;
+ str_args["NAME"] = base_name;
+ str_args["AMOUNT"] = ammount;
+ std::string new_description = LLTrans::getString("paid_you_ldollars", str_args);
+
args["MESSAGE"] = new_description;
-
args["NAME"] = name;
LLSD payload;
payload["from_id"] = from_id;