diff options
author | Oz Linden <oz@lindenlab.com> | 2010-08-29 08:38:34 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2010-08-29 08:38:34 -0400 |
commit | 05913a83a5f0f7f076ad915f3de4c23330f6d32b (patch) | |
tree | 893a24c2f3b10f2da722158b4bad967c97613c13 /indra/newview/llimview.cpp | |
parent | 1a8d917a6d0d2393a0f0248d0072dd7cfd487609 (diff) | |
parent | 75a66a146b8f4b3127eb86fec10c24cc45d3f6d7 (diff) |
Merge changes from product-engine branch
Diffstat (limited to 'indra/newview/llimview.cpp')
-rw-r--r-- | indra/newview/llimview.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index b00a663a9a..129c9aec14 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -3077,7 +3077,9 @@ public: std::string saved; if(offline == IM_OFFLINE) { - saved = llformat("(Saved %s) ", formatted_time(timestamp).c_str()); + LLStringUtil::format_map_t args; + args["[LONG_TIMESTAMP]"] = formatted_time(timestamp); + saved = LLTrans::getString("Saved_message", args); } std::string buffer = saved + message; |