Did you set Package/@SummaryCodepage.

I don't use the Text element (or any MSI UI so can't advise on that, but I
build MSI(s) and mba which supports French.

I added a wxl file to the project and set header of that file as follows:

<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Culture="fr-FR"
                 Codepage="1252"
                 Language="1036"
                 xmlns="http://schemas.microsoft.com/wix/2006/localization";>
  
  <String Id="LCID">1036</String>
  <String Id="Codepage">1252</String>
  <String Id="SummaryCodepage">1252</String>

  <String Id="DownVersionErrorMsg">Une version plus récente de [ProductName]
est déjà installée.</String>

</WixLocalization>

Then set Product/@Language="!(loc.LCID)" and
Package/@SummaryCodepage="!(loc.SummaryCodepage)"

I don't set Product/@Codepage as that gets set by the wxl file.

Also set the Cultures property in the project file, Properties/Build.

I don't know if this will help on the Text UI issue.




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WXS-File-How-to-insert-accents-in-TEXT-Tag-tp7598028p7598087.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to