diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-02-12 22:07:55 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-02-12 22:07:55 +0200 |
commit | 630c107eb98b36a26902d653f00c57abcc67ccb3 (patch) | |
tree | 2e54a0b42aff1f220083d0f6a479c8b3d3317b9f | |
parent | 713eb289b0128cae540866f38e0baff187ef3392 (diff) |
Fixed critical bug (EXT-5313) Duplicated xui xml IDs, blocking l10n, for public beta.
- Added suffixes to duplicating "OK" and "Cancel" buttons names in notification templates.
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/skins/default/xui/en/notifications.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/skins/default/xui/en/notifications.xml b/indra/newview/skins/default/xui/en/notifications.xml index 51f0f6839c..0fbd860648 100644 --- a/indra/newview/skins/default/xui/en/notifications.xml +++ b/indra/newview/skins/default/xui/en/notifications.xml @@ -19,7 +19,7 @@ <button default="true" index="0" - name="OK" + name="OK_okbutton" text="$yestext"/> </form> </template> @@ -29,7 +29,7 @@ <button default="true" index="0" - name="OK" + name="OK_okignore" text="$yestext"/> <ignore text="$ignoretext"/> </form> @@ -40,11 +40,11 @@ <button default="true" index="0" - name="OK" + name="OK_okcancelbuttons" text="$yestext"/> <button index="1" - name="Cancel" + name="Cancel_okcancelbuttons" text="$notext"/> </form> </template> @@ -54,11 +54,11 @@ <button default="true" index="0" - name="OK" + name="OK_okcancelignore" text="$yestext"/> <button index="1" - name="Cancel" + name="Cancel_okcancelignore" text="$notext"/> <ignore text="$ignoretext"/> </form> @@ -69,7 +69,7 @@ <button default="true" index="0" - name="OK" + name="OK_okhelpbuttons" text="$yestext"/> <button index="1" @@ -91,7 +91,7 @@ text="$notext"/> <button index="2" - name="Cancel" + name="Cancel_yesnocancelbuttons" text="$canceltext"/> </form> </template> |