Skip to content
⌘ NSIS Forum Archive

VIAddVersionKey language problem

5 posts

kobus#

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œ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
kobus#
Sorry don't understand question 🙁

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

kobus
kichik#
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.
kobus#
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