In many cases, you need to make your own version of the .wxs file to replace
that dialog in the wizard. However, in your case, you only want to change
the text on the buttons. So, it's much easier. You only need to add a .wxl
file to your project with the strings that match the text and tooltip of
each button. 

For example (for the "All" button):

<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Culture="en-us"
xmlns="http://schemas.microsoft.com/wix/2006/localization";>
   <String Id="SetupTypeDlgCompleteButtonTooltip">All</String>
   <String Id="SetupTypeDlgCompleteButton">All</String>
</WixLocalization>

You can do this because when the WiX team made their original .wxl files,
they marked all of their default strings as overridable.
-- 
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Progress-pictures-available-tp703054p5389913.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to