diff options
author | Ramzi Ramey <ramzi@lindenlab.com> | 2009-10-13 21:42:37 +0000 |
---|---|---|
committer | Ramzi Ramey <ramzi@lindenlab.com> | 2009-10-13 21:42:37 +0000 |
commit | 1dfb1a1eb7bdc05b4b1110f3b9d9557704b32b0e (patch) | |
tree | d205e34ec542b07fd3378408bb43faab60da6815 /indra/newview/skins | |
parent | f024f38c42166dd94afa046faf84b34f21926ed0 (diff) |
I18N: Pref > Graphics > windowsize combo will not honor its translations
These werent constructed with a label=, so it was falling back to the display of the value= parameter. Only label=s are localized.
Diffstat (limited to 'indra/newview/skins')
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_preferences_graphics1.xml | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/indra/newview/skins/default/xui/en/panel_preferences_graphics1.xml b/indra/newview/skins/default/xui/en/panel_preferences_graphics1.xml index ecfb0048a3..84fcf21623 100644 --- a/indra/newview/skins/default/xui/en/panel_preferences_graphics1.xml +++ b/indra/newview/skins/default/xui/en/panel_preferences_graphics1.xml @@ -48,41 +48,36 @@ length="1" enabled="true" name="640x480" - value="640 x 480"> - 640x480 - </combo_box.item> + value="640 x 480" + label="640x480"/> <combo_box.item type="string" length="1" enabled="true" name="800x600" - value="800 x 600"> - 800x600 - </combo_box.item> + value="800 x 600" + label="800x600"/> <combo_box.item type="string" length="1" enabled="true" name="720x480" - value="720 x 480"> - 720x480 (NTSC) - </combo_box.item> + value="720 x 480" + label="720x480 (NTSC)"/> <combo_box.item type="string" length="1" enabled="true" name="768x576" - value="768 x 576"> - 768x576 (PAL) - </combo_box.item> + value="768 x 576" + label="768x576 (PAL)"/> <combo_box.item type="string" length="1" enabled="true" name="1024x768" - value="1024 x 768"> - 1024x768 - </combo_box.item> + value="1024 x 768" + label="1024x768"/> <combo_box.commit_callback function="Pref.setControlFalse" parameter="FullScreenAutoDetectAspectRatio" /> |