I just copied the file from WIX source and added it to my project.




I will also try some additional tweaking, though I think I include all, 
Culture, Codepage, Language in wxl header.





Though I have discovered later that Codepage 1251 contains only slavic 
cyrillic letters, while Kazakh also has non-slavic letters, as described
 in 


http://en.wikipedia.org/wiki/Cyrillic_script 


such as Cyrillic Schwa, Ka with Descender which are making this a pain. 
Might anyone know in which Codepage this letters are included, or how to
 convert the strings?








Best regards,





Gasper

> Date: Thu, 2 Apr 2015 06:12:45 -0700
> From: phogl...@rimage.com
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Kazakh language localization
> 
> What did you copy and past them into?
> 
> A wxl file has an header that specifies the code page.  If you also create
> string entries for the Codepage, you can then use the wxl string entries to
> set the Product/@Language="!(loc.LCID)" and the
> Package/@SummaryCodepage="!(loc.SummaryCodepage)".  Something like this:
> 
> <?xml version="1.0" encoding="utf-8"?>
> <WixLocalization Culture="ko-KR"
>                  Codepage="949"
>                  Language="1042"
>                  xmlns="http://schemas.microsoft.com/wix/2006/localization";>
>   
>   <String Id="LCID">1042</String>
>   <String Id="Codepage">949</String>
>   <String Id="SummaryCodepage">949</String>
>   
> 
>   
>   <String Id="DownVersionErrorMsg">새 버젼의 [ProductName]이 이미 설치되어
> 있습니다.</String>
> 
> 
> 
> 
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Kazakh-language-localization-tp7599804p7599813.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