forked from KolibriOS/kolibrios
italian version
git-svn-id: svn://kolibrios.org@3645 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
819a12b8d2
commit
2f59aa1b32
@ -19,6 +19,7 @@
|
|||||||
dd 0x0 ; path
|
dd 0x0 ; path
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
include '../../../macros.inc'
|
include '../../../macros.inc'
|
||||||
|
include 'lang.inc'
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
START:
|
START:
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
@ -183,6 +184,28 @@ newline:
|
|||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
align 4
|
align 4
|
||||||
; DATA AREA
|
; DATA AREA
|
||||||
|
if lang eq it
|
||||||
|
text:
|
||||||
|
db 'largehzza 0000 : 0 for full screen width <'
|
||||||
|
db 'pulsanti 0000 : 0 no frames , 1 frames <'
|
||||||
|
db 'soften_up 0001 : 0 no , 1 si <'
|
||||||
|
db 'soften_down 0001 : 0 no , 1 si <'
|
||||||
|
db 'minimize_left 0001 : 0 no , 1 si <'
|
||||||
|
db 'minimize_right 0001 : 0 no , 1 si <'
|
||||||
|
db 'posizione icone 0100 : posizione in pixel <'
|
||||||
|
db 'menu_enable 0001 : 0 no , 1 si <'
|
||||||
|
db 'setup_enable 0001 : 0 no , 1 si <'
|
||||||
|
db 'graph_text 0001 : 0 grafica , 1 text <'
|
||||||
|
db 'soften_middle 0001 : 0 no , 1 si <'
|
||||||
|
db 'icone 0001 : 0 start , 1 attivato <'
|
||||||
|
db ' '
|
||||||
|
db ' Applica '
|
||||||
|
db 'x'
|
||||||
|
|
||||||
|
labelt:
|
||||||
|
db 'Setup pannello'
|
||||||
|
labellen:
|
||||||
|
else
|
||||||
text:
|
text:
|
||||||
db 'width 0000 : 0 for full screen width <'
|
db 'width 0000 : 0 for full screen width <'
|
||||||
db 'buttons 0000 : 0 no frames , 1 frames <'
|
db 'buttons 0000 : 0 no frames , 1 frames <'
|
||||||
@ -199,10 +222,11 @@ text:
|
|||||||
db ' '
|
db ' '
|
||||||
db ' APPLY '
|
db ' APPLY '
|
||||||
db 'x'
|
db 'x'
|
||||||
;------------------------------------------------------------------------------
|
|
||||||
labelt:
|
labelt:
|
||||||
db 'Panel setup'
|
db 'Panel setup'
|
||||||
labellen:
|
labellen:
|
||||||
|
end if
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
align 4
|
align 4
|
||||||
ent dd 17
|
ent dd 17
|
||||||
|
18
programs/system/test/trunk/makefile
Normal file
18
programs/system/test/trunk/makefile
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#!gmake
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=test
|
||||||
|
SOURCE=${FILE}.asm
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
echo "lang fix en" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
it:
|
||||||
|
echo "lang fix it" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${LANG} ${OUT}
|
@ -15,6 +15,7 @@ use32
|
|||||||
dd 0x0 , 0x0 ; I_Param , I_Icon
|
dd 0x0 , 0x0 ; I_Param , I_Icon
|
||||||
|
|
||||||
include '../../../macros.inc'
|
include '../../../macros.inc'
|
||||||
|
include 'lang.inc'
|
||||||
|
|
||||||
START: ; start of execution
|
START: ; start of execution
|
||||||
|
|
||||||
@ -91,11 +92,8 @@ still:
|
|||||||
notest8:
|
notest8:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
jmp still
|
jmp still
|
||||||
|
|
||||||
|
|
||||||
; *********************************************
|
; *********************************************
|
||||||
; ******* WINDOW DEFINITIONS AND DRAW ********
|
; ******* WINDOW DEFINITIONS AND DRAW ********
|
||||||
; *********************************************
|
; *********************************************
|
||||||
@ -142,9 +140,28 @@ draw_window:
|
|||||||
|
|
||||||
; DATA AREA
|
; DATA AREA
|
||||||
|
|
||||||
|
if lang eq it
|
||||||
|
text:
|
||||||
|
db 'Il programma usa 0x10000 byte di memoria'
|
||||||
|
db ' '
|
||||||
|
db 'Open debug board for rezult information '
|
||||||
|
db ' '
|
||||||
|
db ' CLI '
|
||||||
|
db ' '
|
||||||
|
db ' STI '
|
||||||
|
db ' '
|
||||||
|
db ' MOV [0x10000],BYTE 1 '
|
||||||
|
db ' '
|
||||||
|
db ' JMP DWORD 0x10000 '
|
||||||
|
db ' '
|
||||||
|
db ' MOV ESP,0 & PUSH EAX '
|
||||||
|
db ' '
|
||||||
|
db ' IN Al,0x60 '
|
||||||
|
db ' '
|
||||||
|
db ' OUT 0x60,AL '
|
||||||
|
db 'x '
|
||||||
|
else
|
||||||
text:
|
text:
|
||||||
|
|
||||||
db 'Application uses 0x10000 bytes of memory'
|
db 'Application uses 0x10000 bytes of memory'
|
||||||
db ' '
|
db ' '
|
||||||
db 'Open debug board for rezult information '
|
db 'Open debug board for rezult information '
|
||||||
@ -163,11 +180,9 @@ text:
|
|||||||
db ' '
|
db ' '
|
||||||
db ' OUT 0x60,AL '
|
db ' OUT 0x60,AL '
|
||||||
db 'x '
|
db 'x '
|
||||||
|
end if
|
||||||
|
|
||||||
|
|
||||||
tlabel:
|
tlabel:
|
||||||
db 'Kolibri protection test',0
|
db 'Kolibri protection test',0
|
||||||
|
|
||||||
|
|
||||||
I_END:
|
I_END:
|
||||||
|
19
programs/system/vrr/trunk/makefile
Normal file
19
programs/system/vrr/trunk/makefile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=vrr
|
||||||
|
SOURCE=${FILE}.asm
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
echo "lang fix en" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
it:
|
||||||
|
echo "lang fix it" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${LANG} ${OUT}
|
@ -20,6 +20,7 @@ use32
|
|||||||
dd 0x0 , 0x0 ; I_Param , I_Icon
|
dd 0x0 , 0x0 ; I_Param , I_Icon
|
||||||
|
|
||||||
include '..\..\..\macros.inc'
|
include '..\..\..\macros.inc'
|
||||||
|
include 'lang.inc'
|
||||||
START: ; start of execution
|
START: ; start of execution
|
||||||
|
|
||||||
mov eax,14
|
mov eax,14
|
||||||
@ -1045,6 +1046,36 @@ blinkcol dd 0ffh
|
|||||||
;_m3 dw 0,0,0,0,0
|
;_m3 dw 0,0,0,0,0
|
||||||
;_m4 dw 0,0,0,0,0
|
;_m4 dw 0,0,0,0,0
|
||||||
|
|
||||||
|
if lang eq it
|
||||||
|
title db 'Vertical Refresh Rate v2.0 (C) 2003 TRANS',0
|
||||||
|
|
||||||
|
_m1280x1024 db '1280x1024'
|
||||||
|
_m1024x768 db '1024x768 '
|
||||||
|
_m800x600 db ' 800x600 '
|
||||||
|
_m640x480 db ' 640x480 '
|
||||||
|
_mk db 'Key1Key2'
|
||||||
|
|
||||||
|
curmode db 'Modalita intera: '
|
||||||
|
db ' x x Hz'
|
||||||
|
cmlen=$-curmode
|
||||||
|
selmode db ' Select mode: '
|
||||||
|
selcans db '----x----x---Hz'
|
||||||
|
noherz db '---'
|
||||||
|
width db 'Width',11h,10h
|
||||||
|
tmode db ' Modalita '
|
||||||
|
actions db ' Azioni '
|
||||||
|
button1 db 'Ok' ;len=2
|
||||||
|
button2 db 'Cancella' ;len=6
|
||||||
|
button3 db 'Torna' ;len=6
|
||||||
|
button4 db 'Default' ;len=7
|
||||||
|
|
||||||
|
strt db 'LAUNCHER '
|
||||||
|
|
||||||
|
warn00 db ' A T T E N Z I O N E ! '
|
||||||
|
len_warn00=$-warn00
|
||||||
|
warn01 db 'D R I V E R V I D E O N O N I N S T A L L A T O'
|
||||||
|
len_warn01=$-warn01
|
||||||
|
else
|
||||||
title db 'Vertical Refresh Rate v2.0 (C) 2003 TRANS',0
|
title db 'Vertical Refresh Rate v2.0 (C) 2003 TRANS',0
|
||||||
|
|
||||||
_m1280x1024 db '1280x1024'
|
_m1280x1024 db '1280x1024'
|
||||||
@ -1073,7 +1104,7 @@ warn00 db ' W A R N I N G ! '
|
|||||||
len_warn00=$-warn00
|
len_warn00=$-warn00
|
||||||
warn01 db 'V i d e o D r i v e r N O T I n s t a l l e d'
|
warn01 db 'V i d e o D r i v e r N O T I n s t a l l e d'
|
||||||
len_warn01=$-warn01
|
len_warn01=$-warn01
|
||||||
|
end if
|
||||||
|
|
||||||
drvinfo: ; 512 bytes driver info area
|
drvinfo: ; 512 bytes driver info area
|
||||||
; +0 - Full driver name
|
; +0 - Full driver name
|
||||||
@ -1090,5 +1121,3 @@ _m1:
|
|||||||
|
|
||||||
buffer:
|
buffer:
|
||||||
I_END:
|
I_END:
|
||||||
|
|
||||||
|
|
||||||
|
15
programs/system/vrr_m/trunk/makefile
Normal file
15
programs/system/vrr_m/trunk/makefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=vrr_m
|
||||||
|
SOURCE=${FILE}.asm
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${LANG} ${OUT}
|
16
programs/system/zkey/trunk/makefile
Normal file
16
programs/system/zkey/trunk/makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=ZKEY
|
||||||
|
SOURCE=${FILE}.ASM
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${LANG} ${OUT}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user