diff options
author | Richard Linden <none@none> | 2012-01-06 09:19:10 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-06 09:19:10 -0800 |
commit | 377e35af14ec8e6aa689a9aa9817705b4d699e83 (patch) | |
tree | 64f68341d5ae363769d482f8bb5ca411a4724c97 | |
parent | 66fcc2da3925cd16939e4438dad749b2c22dbc27 (diff) |
looking for better fix to EXP-1695
[I18N] [INCORRECT CURRENCY LAYOUT/FORMAT] - Currency in
Group Profile > Land/Asset and New Group (French viewer)
Backed out changeset: c01a6186b15c
-rw-r--r-- | indra/newview/llpanelgrouplandmoney.cpp | 3 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_group_general.xml | 13 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/strings.xml | 2 |
3 files changed, 5 insertions, 13 deletions
diff --git a/indra/newview/llpanelgrouplandmoney.cpp b/indra/newview/llpanelgrouplandmoney.cpp index b6c0c2ee24..e66dd5690c 100644 --- a/indra/newview/llpanelgrouplandmoney.cpp +++ b/indra/newview/llpanelgrouplandmoney.cpp @@ -1447,7 +1447,8 @@ void LLGroupMoneyPlanningTabEventHandler::processReply(LLMessageSystem* msg, text.append(time_str); text.append(".\n\n"); - text.append(llformat("%-24s %6d L$\n\n", LLTrans::getString("GroupMoneyBalance").c_str(), balance )); + text.append(llformat("%-23sL$%6d\n", LLTrans::getString("GroupMoneyBalance").c_str(), balance )); + text.append(1, '\n'); } // [DEV-29503] Hide the individual info since diff --git a/indra/newview/skins/default/xui/en/panel_group_general.xml b/indra/newview/skins/default/xui/en/panel_group_general.xml index adde982c60..38b680ba86 100644 --- a/indra/newview/skins/default/xui/en/panel_group_general.xml +++ b/indra/newview/skins/default/xui/en/panel_group_general.xml @@ -225,22 +225,13 @@ Hover your mouse over the options for more help. height="23" increment="1" label_width="15" + label="L$" layout="topleft" max_val="99999" left="30" name="spin_enrollment_fee" tool_tip="New members must pay this fee to join the group when Enrollment Fee is checked." - width="150" /> - <text - follows="left|top" - type="string" - height="16" - left_pad="2" - name="currency_label" - top_delta="5" - width="18"> - L$ - </text> + width="170" /> <combo_box follows="left|top" height="23" diff --git a/indra/newview/skins/default/xui/en/strings.xml b/indra/newview/skins/default/xui/en/strings.xml index 2ae56bc729..492e51e0fd 100644 --- a/indra/newview/skins/default/xui/en/strings.xml +++ b/indra/newview/skins/default/xui/en/strings.xml @@ -2272,7 +2272,7 @@ Returns a string with the requested data about the region <string name="NextStipendDay" value="The next stipend day is " /> <string name="GroupPlanningDate">[mthnum,datetime,utc]/[day,datetime,utc]/[year,datetime,utc]</string> <string name="GroupIndividualShare" value=" Group Individual Share" /> - <string name="GroupColumn" value="Group" /> + <string name="GroupColumn" value=" Group" /> <string name="Balance">Balance</string> <string name="Credits">Credits</string> <string name="Debits">Debits</string> |