From 58cd554af7bf2e498a8bf64252bd0e40e305ce91 Mon Sep 17 00:00:00 2001
From: Vadim ProductEngine <vsavchuk@productengine.com>
Date: Tue, 25 Oct 2011 19:25:31 +0200
Subject: [PATCH] STORM-1667 FIXED Fixed rendering of viewer release notes URL.

Adding back code that was accidentally removed in changeset ff333a95d1aa.
---
 indra/newview/llfloaterabout.cpp | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/indra/newview/llfloaterabout.cpp b/indra/newview/llfloaterabout.cpp
index 22f500ba150..83fb887d81b 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)
 	{
-- 
GitLab