Archive: VIAddVersionKey language problem


VIAddVersionKey language problem
Hello,

I've got a problem with Polish letters in version info on Version Tab

my code looks like:


VIProductVersion "1.2.3.4"
VIAddVersionKey /LANG=1045 ProductName 'xyz'
VIAddVersionKey CompanyName 'xyz'
VIAddVersionKey FileVersion 'xyz'
VIAddVersionKey FileDescription 'xyz'
VIAddVersionKey OriginalFilename 'xyz'
VIAddVersionKey LegalCopyright 'Copyright (c) 2004 ...'
VIAddVersionKey ProductVersion 'xyz'
VIAddVersionKey Comments '${__TIMESTAMP__}'


eg.
Comments field content : 17 wrze***339;nia 2004 08:35:40
Should be : 17 wrzeΒΆnia 2004 08:35:40
[similar in other fields]


Using OS Win2000 SP4 PL.

Please, anyone can help with this ?
Kobus

what text-encoding are you using?


Sorry don't understand question :(

In Operating System Settings/Regional Settings I have Polish(programers) keyboard set.
(win-1250 ???)

kobus


Have you included the language file before those lines? Since Polish's code page is not the default 1252 you should include the language file which contains the right code page.


That's it !!! :) Now works !

I load this file indirectly

 !insertmacro MUI_LANGUAGE "Polish"

but after calling VIAddVersionKey funcion :)

Thanks goes to all that give me some hints
Kobus