WixUI_Advanced in russian localization carries the text on the button
Advanced. *Avanced *translated as "*Дополнительно*." This is a correct
translation. *The problem is the width of a button.* Look at screenshot:
https://dl.dropbox.com/u/7983994/ShareX/2012-07/installer.png*
*
I wrote this simple patch.

--- a/src/ext/UIExtension/wixlib/AdvancedWelcomeEulaDlg.wxs    Thu Jul 05
01:05:28 2012
+++ b/src/ext/UIExtension/wixlib/AdvancedWelcomeEulaDlg.wxs    Thu Jul 05
01:05:21 2012
@@ -23,6 +23,6 @@
         <Control Id="LicenseAcceptedCheckBox" Type="CheckBox" X="20"
Y="180" Width="226" Height="18" CheckBoxValue="1"
Property="LicenseAccepted" Text="!

(loc.WelcomeEulaDlgLicenseAcceptedCheckBox)"/>
-        <Control Id="Print" Type="PushButton" X="88" Y="243" Width="56"
Height="17" Text="!(loc.WixUIPrint)">
+        <Control Id="Print" Type="PushButton" X="50" Y="243" Width="56"
Height="17" Text="!(loc.WixUIPrint)">
           <Publish Event="DoAction" Value="WixUIPrintEula">1</Publish>
         </Control>
-        <Control Id="Advanced" Type="PushButton" X="156" Y="243"
Width="56" Height="17" Text="!(loc.AdvancedWelcomeEulaDlgAdvanced)">
+        <Control Id="Advanced" Type="PushButton" X="124" Y="243"
Width="85" Height="17" Text="!(loc.AdvancedWelcomeEulaDlgAdvanced)">
           <Condition Action="disable"><![CDATA[LicenseAccepted <>
"1"]]></Condition>
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to