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

2014-03-03 Thread Bin Yin
if it is working. -Messaggio originale- Da: Bin Yin [mailto:ybdes...@gmail.com] Inviato: sabato 1 marzo 2014 11.06 A: wix-users@lists.sourceforge.net Oggetto: [WiX-users] if(language==en-US) logic? is there any logic in WiX as: if (OSLanguage==en-US) { copy file1 to dir1

[WiX-users] how to localize WiX Bootstrapper UIs

2014-03-01 Thread Bin Yin
I cannot use WiX project I18n processhttp://wixtoolset.org/documentation/manual/v3/howtos/ui_and_localization/make_installer_localizable.html to internationalize the ShareFileWixBootstrapper project. I've tried other

[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 }

[WiX-users] is it possible to localize license content

2014-03-01 Thread Bin Yin
I've find a related solution from http://stackoverflow.com/questions/3627633/is-it-possible-to-localize-eula-in-wix-using-wxl-file . It looks like we should create a replacement dialog to localize the license content. Is there any easier solution to localize the license content?