Name of shortcut created by wix installer to support latin as well as Russian,Japanese and Korean strings -


i need create installer using wix create shortcut entry. name of shortcut vary language property specified user while installing. have taken approach of replicating component tag different languages. product codepage 1252.

<component id='xyzappshortcutfr' guid='xxxxxx'> <condition>language="fr"</condition> <shortcut id='shortcutfr' name='démarrer $(var.shortcutname)' target='[installdir]$(var.targetexe)' workingdirectory='installdir' > </shortcut> </component>  <component id='xyzappshortcutfr' guid='xxxxxx'> <condition>language="ru"</condition> <shortcut id='shortcutfr' name='начало$(var.shortcutname)' target='[installdir]$(var.targetexe)' workingdirectory='installdir' > </shortcut> </component> 

it fails error:a string provided characters not available in specified database code page. how make installer generic support latin languages along korean/japanese..?

the right way how should transforms... need make couple of installations.... each language one, make transform files... , need make bootstraper (burn) , apply right transform installer... more here: http://wix.tramontana.co.hu/tutorial/transforms/morphing-installers


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -