diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-10-25 19:25:31 +0200 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-10-25 19:25:31 +0200 |
commit | 58cd554af7bf2e498a8bf64252bd0e40e305ce91 (patch) | |
tree | 40b8b5ce3162bfee36b8e9039c32b8f7cd336158 /indra/newview | |
parent | b7a349f231977d5917b29faacca143a85d925576 (diff) |
STORM-1667 FIXED Fixed rendering of viewer release notes URL.
Adding back code that was accidentally removed in changeset ff333a95d1aa.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterabout.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp index 22f500ba15..83fb887d81 100644 --- a/indra/newview/llfloaterabout.cpp +++ b/indra/newview/llfloaterabout.cpp @@ -384,6 +384,9 @@ void LLFloaterAbout::setSupportText(const std::string& server_release_notes_url) // Render the LLSD from getInfo() as a format_map_t LLStringUtil::format_map_t args; + // allow the "Release Notes" URL label to be localized + args["ReleaseNotes"] = LLTrans::getString("ReleaseNotes"); + for (LLSD::map_const_iterator ii(info.beginMap()), iend(info.endMap()); ii != iend; ++ii) { |