Re: [WiX-users] if(language==en-US) logic?

2014-03-02 Thread John Ludlow
http://stackoverflow.com/questions/1805405/find-vista-language-using-wix This SO question might be helpful On 1 Mar 2014 10:15, Bin Yin ybdes...@gmail.com wrote: is there any logic in WiX as: if (OSLanguage==en-US) { copy file1 to dir1 } else if(OSLanguage==zh-CN) { copy file2

[WiX-users] if(language==en-US) logic?

2014-03-01 Thread Bin Yin
is there any logic in WiX as: if (OSLanguage==en-US) { copy file1 to dir1 } else if(OSLanguage==zh-CN) { copy file2 to dir2 } else if(OSLanguage==de-DE) { copy file3 to dir3 } else { copy file4 to dir4 }