forked from KolibriOS/kolibrios
italian version
git-svn-id: svn://kolibrios.org@3580 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
01573335f1
commit
96fb03f671
@ -648,7 +648,11 @@ code
|
||||
mcall
|
||||
|
||||
mov eax, 4
|
||||
mov ebx, 20 shl 16 + 22 + topbuttonsbarheight/2 - 4
|
||||
if lang eq it
|
||||
mov ebx, 7 shl 16 + 22 + topbuttonsbarheight/2 - 4
|
||||
else
|
||||
mov ebx, 20 shl 16 + 22 + topbuttonsbarheight/2 - 4
|
||||
end if
|
||||
mov ecx, [syscolors.work_button_text]
|
||||
mov edx, new_game
|
||||
mov esi, new_game_len
|
||||
@ -1992,6 +1996,16 @@ if lang eq ru
|
||||
|
||||
s: db "10"
|
||||
|
||||
else if lang eq it
|
||||
title db 'Freecell',0
|
||||
|
||||
new_game: db "Nuova partita"
|
||||
new_game_len = $ - new_game
|
||||
|
||||
exit: db "Esci"
|
||||
exit_len = $ - exit
|
||||
|
||||
s: db "10"
|
||||
else
|
||||
title db 'Freecell',0
|
||||
|
||||
|
24
programs/games/freecell/makefile
Normal file
24
programs/games/freecell/makefile
Normal file
@ -0,0 +1,24 @@
|
||||
#Makefile per la compilazione
|
||||
|
||||
#Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=freecell
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
echo "lang fix en" > lang.inc
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
ru:
|
||||
echo "lang fix ru" > lang.inc
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
it:
|
||||
echo "lang fix it" > lang.inc
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${OUT} ${LANG}
|
Loading…
Reference in New Issue
Block a user