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
Post a Comment