Hi, all
It is necessary to translate all the names of the keys in the game from English to Polish, replacing the Russian text.
File to edit in Notepad ++, save file in ANSI encoding with Polish support.
File:
http://ge.tt/7SXeGYv2For example:
In the file of the English version:
...
#patch [Localization]
IF LoadPlugins( "MenuLocalization" )
MenuSetKeyName( MOUSE_DX, "MOUSE-X" );
MenuSetKeyName( MOUSE_DY, "MOUSE-Y" );
MenuSetKeyName( MOUSE_WHEELUP, "WHEEL UP" );
MenuSetKeyName( MOUSE_WHEELDOWN, "WHEEL DOWN" );
...
In the file of the Russian version:
...
#patch [Localization]
IF LoadPlugins( "MenuLocalization" )
MenuSetKeyName( MOUSE_DX, "
МЫШЬ-X" )
MenuSetKeyName( MOUSE_DY, "
МЫШЬ-Y" )
MenuSetKeyName( MOUSE_WHEELUP, "
КОЛЕСИКО ВВЕРХ" )
MenuSetKeyName( MOUSE_WHEELDOWN, "
КОЛЕСИКО ВНИЗ" )
...
All that is highlighted in red, you should replace the names in Polish.
And send me the finished file. Thanks.
MfG MaGoth,