Hello,

Thanks Phill.

I use DisplayInternalUI="yes" in my MsiPackage. So, all of msi progress 
message are display in MSI and all are localized in msi but the DisplayName 
are display on Burn Progress bar status. See my MsiPackage below.

So, I want to localized it. I tried it as !(loc.PerformingActionOnCMS) but 
at localized language it not work. it still display English only. My Burn 
all text are localized excluding DisplayName.

         <MsiPackage
             Id="Setup"
             SourceFile="..\Release\Setup.msi"
             Vital="yes"
             DisplayInternalUI="yes"
             ForcePerMachine="yes"
             InstallCondition="VersionNT>=v6.0 AND VersionNT64"
             DisplayName="!(loc.PerformingActionOnCMS)">
       </MsiPackage>

Thanks,

Mrugesh Patel


-----Original Message----- 
From: Phill Hogland
Sent: Tuesday, March 17, 2015 6:00 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Burn MsiPackage DisplayName property 
doesnotlocalized

>>But I need to localized Progress message which is display on progress bar.

The progress messages which are displayed in Burn are provided by the MSI
package and reflect whether it has been localized.  Each msi package needs
to be built for a specific culture.  I set the 'culture' property in the MSI
projects properties, which causes MSBuild to batch build each localized msi
package.  Originally I created transforms and 'embedded' the transforms in a
single msi, including only one msi in the burn chain.  I then discovered
that this approach is not supported when using Burn.  So now I include each
localized msi in my chain, as detailed  here
<http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Re-burn-bootstrapper-access-lang-as-a-property-or-variab-le-td7599256.html#a7599259>
, and I find that it works reliably with the progress messages localized.  I
do not use a UI in the MSI, as I find the approach of implementing the UI in
Burn to be easier to manage.



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Burn-MsiPackage-DisplayName-property-does-not-localized-tp7599572p7599583.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, 
sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for 
all
things parallel software development, from weekly thought leadership blogs 
to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users 


------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to