italian version
git-svn-id: svn://kolibrios.org@3587 a494cfbc-eb01-0410-851d-a64ba20cac60
Before Width: | Height: | Size: 816 B After Width: | Height: | Size: 713 B |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 974 B |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 800 B |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 720 B |
@ -1 +1 @@
|
||||
lang fix ru
|
||||
lang fix en
|
||||
|
17
programs/games/bnc/trunk/makefile
Normal file
@ -0,0 +1,17 @@
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=bnc
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
echo "lang fix en" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
ru:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
20
programs/games/gomoku/trunk/makefile
Normal file
@ -0,0 +1,20 @@
|
||||
#Makefile per la compilazione
|
||||
|
||||
#Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=gomoku
|
||||
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}
|
||||
|
||||
clean:
|
||||
rm -f ${OUT} ${LANG}
|
@ -10,10 +10,10 @@ as MACROS.INC and DEBUG.INC files, simplify the developing greatly.
|
||||
Today I let you to judge a desktop calendar, similar to the Windows one.
|
||||
Application abilities are:
|
||||
|
||||
1. Interface is translated into Russian,English, German, French, and Finnish
|
||||
(not completely - there was no help). Day sequence difference is taken
|
||||
into account as well. You may change localization through 'lang' constant
|
||||
while compiling.
|
||||
1. Interface is translated into Russian,English, German, French, Italian
|
||||
and Finnish (not completely - there was no help). Day sequence
|
||||
difference is taken into account as well. You may change localization
|
||||
through 'lang' constant while compiling.
|
||||
2. Calendar is equipped with additional buttons 'Today' and 'New style' that
|
||||
are self-explaining.
|
||||
3. I tied to follow world GUI standards: use TAB to move along fields; while
|
||||
|
@ -16,6 +16,7 @@
|
||||
dd 0x0 ; çàðåçåðâèðîâàíî
|
||||
|
||||
include 'MACROS.INC' ; ìàêðîñû îáëåã÷àþò æèçíü àññåìáëåðùèêîâ!
|
||||
include 'lang.inc'
|
||||
|
||||
;---------------------------------------------------------------------
|
||||
;--- ÍÀ×ÀËÎ ÏÐÎÃÐÀÌÌÛ ----------------------------------------------
|
||||
@ -87,7 +88,11 @@ draw_window:
|
||||
; 1 - íà÷èíàåì ðèñîâàòü
|
||||
; ÑÎÇÄÀèÌ ÎÊÍÎ
|
||||
|
||||
if lang eq it
|
||||
mcall 0, <100,250>, <100,110>, 0x03AABBCC, 0x805080D0, 0x005080D0
|
||||
else
|
||||
mcall 0, <100,230>, <100,110>, 0x03AABBCC, 0x805080D0, 0x005080D0
|
||||
end if
|
||||
mcall 71, 1 ,header
|
||||
mcall 8,<15,42>,<40,20>,2,0xaaaaaa
|
||||
call draw_buttons
|
||||
@ -96,7 +101,11 @@ draw_window:
|
||||
mcall
|
||||
call draw_buttons
|
||||
|
||||
if lang eq it
|
||||
mcall 4, <16,25>, 0x80ffffff,text1
|
||||
else
|
||||
mcall 4, <25,25>, 0x80ffffff,text1
|
||||
end if
|
||||
mov edx,text2
|
||||
|
||||
add ebx,3 shl 16+20
|
||||
@ -113,13 +122,25 @@ draw_window:
|
||||
|
||||
draw_buttons:
|
||||
pusha
|
||||
if lang eq it
|
||||
add ebx,60 shl 16
|
||||
else
|
||||
add ebx,50 shl 16
|
||||
end if
|
||||
inc edx
|
||||
mcall
|
||||
if lang eq it
|
||||
add ebx,60 shl 16
|
||||
else
|
||||
add ebx,50 shl 16
|
||||
end if
|
||||
inc edx
|
||||
mcall
|
||||
if lang eq it
|
||||
add ebx,60 shl 16
|
||||
else
|
||||
add ebx,50 shl 16
|
||||
end if
|
||||
inc edx
|
||||
mcall
|
||||
popa
|
||||
@ -128,9 +149,16 @@ draw_buttons:
|
||||
;--- ÄÀÍÍÛÅ ÏÐÎÃÐÀÌÌÛ ----------------------------------------------
|
||||
;---------------------------------------------------------------------
|
||||
header db ' ATAPI Device Tray Control',0
|
||||
if lang eq it
|
||||
text3 db 'espelli espelli espelli espelli',0
|
||||
text2 db 'carica carica carica carica',0
|
||||
text1 db '/cd0/ /cd1/ /cd2/ /cd3/',0
|
||||
else
|
||||
text3 db 'eject eject eject eject',0
|
||||
text2 db 'load load load load',0
|
||||
text1 db '/cd0/ /cd1/ /cd2/ /cd3/',0
|
||||
end if
|
||||
|
||||
;---------------------------------------------------------------------
|
||||
|
||||
I_END: ; ìåòêà êîíöà ïðîãðàììû
|
||||
|
19
programs/system/cd_tray/makefile
Normal file
@ -0,0 +1,19 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=CD_tray
|
||||
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}
|
@ -7,7 +7,7 @@
|
||||
|
||||
; <--- include all MeOS stuff --->
|
||||
include "lang.inc"
|
||||
include "..\..\..\MACROS.INC"
|
||||
include "..\..\..\macros.inc"
|
||||
|
||||
TEST_SIZE = 100000 ; ¤®«¦® ¤¥«¨âìáï 4
|
||||
|
||||
|
17
programs/system/clip/trunk/makefile
Normal file
@ -0,0 +1,17 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
|
||||
en:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} \@clip.ASM \@clip
|
||||
${FASM} cliptest.ASM cliptest
|
||||
${FASM} test2.asm test2
|
||||
${KPACK} \@clip
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} \@clip test2 cliptest
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
; <--- include all MeOS stuff --->
|
||||
include "lang.inc"
|
||||
include "..\..\..\MACROS.INC"
|
||||
include "..\..\..\macros.inc"
|
||||
|
||||
; <--- start of MenuetOS application --->
|
||||
MEOS_APP_START
|
||||
|
16
programs/system/colrdial/makefile
Normal file
@ -0,0 +1,16 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=color_dialog
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
16
programs/system/commouse/trunk/makefile
Normal file
@ -0,0 +1,16 @@
|
||||
#!gmake
|
||||
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=commouse
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
@ -690,6 +690,19 @@ tbte_2:
|
||||
check_text db '@ ¢ª«/¢ëª«',0
|
||||
title db '„¨á¯¥âç¥à ¯à®æ¥áᮢ - Ctrl/Alt/Del',0
|
||||
;--------------------------------------
|
||||
else if lang eq it
|
||||
text:
|
||||
db 'NOME-PROGRAMMA PID USO CPU % '
|
||||
db 'MEMORY START/USAGE W-STACK W-POS'
|
||||
text_len = $-text
|
||||
|
||||
tbts: db 'INDIETRO AVANTI RIAVVIA SISTEMA'
|
||||
tbte:
|
||||
tbts_3 db 'START'
|
||||
tbte_2:
|
||||
check_text db '@ on/off',0
|
||||
title db 'Gestore processi - Ctrl/Alt/Del',0
|
||||
;--------------------------------------
|
||||
else
|
||||
text:
|
||||
db 'NAME/TERMINATE PID CPU-USAGE % '
|
||||
|
32
programs/system/cpu/trunk/makefile
Normal file
@ -0,0 +1,32 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=cpu
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
echo "lang fix en" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
ru:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
et:
|
||||
echo "lang fix et" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
ge:
|
||||
echo "lang fix ge" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
it:
|
||||
echo "lang fix it" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
@ -28,6 +28,8 @@ use32
|
||||
dd 0x0
|
||||
dd 0x0
|
||||
|
||||
include 'lang.inc' ; language support
|
||||
|
||||
include '..\..\..\macros.inc' ; useful macroses
|
||||
include 'draw.inc'
|
||||
include 'brand.inc' ;Brand ID decoding
|
||||
@ -1724,7 +1726,13 @@ include 'gif_lite.inc' ; parse GIF files
|
||||
title db 'CPUID 2.21 by S.Kuzmin & the KolibriOS team',0
|
||||
|
||||
tsum:
|
||||
if lang eq it
|
||||
db 'Frequenza: . MHz'
|
||||
else
|
||||
db 'Frequency: . MHz'
|
||||
end if
|
||||
|
||||
|
||||
tsumlen:
|
||||
|
||||
total dd 0x0
|
||||
@ -1733,7 +1741,13 @@ rating dd 0x0
|
||||
rat dd 0x0 ;
|
||||
|
||||
ram:
|
||||
if lang eq it
|
||||
db 'RAM libera: su'
|
||||
else
|
||||
db 'Available RAM: out of'
|
||||
end if
|
||||
|
||||
|
||||
ramlen:
|
||||
|
||||
NEF:
|
||||
@ -1749,7 +1763,13 @@ mblen:
|
||||
;logcpuslen:
|
||||
|
||||
speed :
|
||||
if lang eq it
|
||||
db 'Performance'
|
||||
else
|
||||
db 'PERFORMANCE:'
|
||||
end if
|
||||
|
||||
|
||||
speedlen:
|
||||
|
||||
kbpersec:
|
||||
@ -1757,7 +1777,13 @@ db 'KB/SEC'
|
||||
kbperseclen:
|
||||
|
||||
instruct:
|
||||
if lang eq it
|
||||
db 'Set istruzioni'
|
||||
else
|
||||
db 'Instruction sets'
|
||||
end if
|
||||
|
||||
|
||||
instructlen:
|
||||
|
||||
standard db 'Standard and Extended features plus Performance test',0
|
||||
@ -1779,23 +1805,54 @@ brandid:
|
||||
brandidlen:
|
||||
|
||||
oblom:
|
||||
if lang eq it
|
||||
db 'CPUID non e disponibile'
|
||||
else
|
||||
db 'SORRY, CPUID IS NOT AVAILABLE'
|
||||
end if
|
||||
|
||||
oblomlen:
|
||||
other:
|
||||
if lang eq it
|
||||
db 'Questo vendor non e supportato'
|
||||
else
|
||||
db 'SORRY, THIS VENDOR IS NOT SUPPORTED YET'
|
||||
end if
|
||||
|
||||
otherlen:
|
||||
|
||||
cpuname:
|
||||
if lang eq it
|
||||
db 'Vendor CPU '
|
||||
else
|
||||
db 'CPU VENDOR: '
|
||||
end if
|
||||
|
||||
cpunamelen:
|
||||
fam:
|
||||
if lang eq it
|
||||
db 'Famiglia: std ext'
|
||||
else
|
||||
db 'FAMILY: std ext'
|
||||
end if
|
||||
|
||||
|
||||
famlen:
|
||||
mode:
|
||||
if lang eq it
|
||||
db 'Modello: std ext'
|
||||
else
|
||||
db 'MODEL: std ext'
|
||||
end if
|
||||
|
||||
modelen:
|
||||
step:
|
||||
if lang eq it
|
||||
db 'Stepping:'
|
||||
else
|
||||
db 'STEPPING:'
|
||||
end if
|
||||
|
||||
steplen:
|
||||
|
||||
cache2:
|
||||
@ -1822,11 +1879,22 @@ cacheP4:
|
||||
cacheP4len:
|
||||
|
||||
tech:
|
||||
if lang eq it
|
||||
db 'Tecnologia: 0. micron '
|
||||
else
|
||||
db 'Technology: 0. micron '
|
||||
end if
|
||||
|
||||
|
||||
techlen:
|
||||
|
||||
typen:
|
||||
if lang eq it
|
||||
db 'Tipo:'
|
||||
else
|
||||
db 'Type:'
|
||||
end if
|
||||
|
||||
typenlen:
|
||||
|
||||
pr:
|
||||
@ -1842,7 +1910,12 @@ freql:
|
||||
freqllen:
|
||||
|
||||
name:
|
||||
if lang eq it
|
||||
db 'Codename:'
|
||||
else
|
||||
db 'CODENAME:'
|
||||
end if
|
||||
|
||||
namelen:
|
||||
|
||||
AMDn:
|
||||
@ -2110,7 +2183,12 @@ NG:
|
||||
NGlen:
|
||||
|
||||
stm:
|
||||
if lang eq it
|
||||
db 'Nome: '
|
||||
else
|
||||
db 'Internal name:'
|
||||
end if
|
||||
|
||||
stmlen:
|
||||
|
||||
athloncoef db 110, 115, 120, 125, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 100, 105, 120
|
||||
|
23
programs/system/cpuid/trunk/makefile
Normal file
@ -0,0 +1,23 @@
|
||||
#!gmake
|
||||
|
||||
|
||||
###########################
|
||||
### Esempio per Kolibri ###
|
||||
###########################
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=CPUID
|
||||
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}
|
16
programs/system/cropflat/makefile
Normal file
@ -0,0 +1,16 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=cropflat
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
@ -76,6 +76,8 @@ if lang eq ru
|
||||
title db '<27>€‘’<E28098>Ž‰Š€ ŽŠŽ<C5A0>',0
|
||||
else if lang eq et
|
||||
title db 'AKNA SEADED - VALI VÄRV JA VAJUTA OBJEKTILE',0
|
||||
else if lang eq it
|
||||
title db 'Impostazioni - definire il colore e cliccare lo oggetto',0
|
||||
else
|
||||
title db 'WINDOWS SETTINGS - DEFINE COLOR AND CLICK ON TARGET',0
|
||||
end if
|
||||
|
28
programs/system/desktop/trunk/makefile
Normal file
@ -0,0 +1,28 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=desktop
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
echo "lang fix en" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
et:
|
||||
echo "lang fix et" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
ru:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
sp:
|
||||
echo "lang fix sp" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
it:
|
||||
echo "lang fix it" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
17
programs/system/docpack/trunk/makefile
Normal file
@ -0,0 +1,17 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=docpack
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
ru:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|
@ -160,6 +160,14 @@ else if lang eq ge
|
||||
label4:
|
||||
db 'Save your settings (Ctrl-S)',0
|
||||
|
||||
else if lang eq it
|
||||
label2:
|
||||
db ' Spegni Kernel',0
|
||||
label3:
|
||||
db ' Riavvio Annulla',0
|
||||
label4:
|
||||
db 'Salva impostazioni (Ctrl-S)',0
|
||||
|
||||
else
|
||||
label2:
|
||||
db 'Power off Kernel',0
|
||||
|
29
programs/system/end/light/makefile
Normal file
@ -0,0 +1,29 @@
|
||||
#!gmake
|
||||
|
||||
# Macro
|
||||
FASM=/opt/bin/fasm
|
||||
KPACK=/opt/bin/kpack
|
||||
LANG=lang.inc
|
||||
FILE=end
|
||||
SOURCE=${FILE}.asm
|
||||
OUT=${FILE}.bin
|
||||
|
||||
en:
|
||||
echo "lang fix en" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
ge:
|
||||
echo "lang fix ge" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
ru:
|
||||
echo "lang fix ru" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
it:
|
||||
echo "lang fix it" > ${LANG}
|
||||
${FASM} ${SOURCE} ${OUT}
|
||||
${KPACK} ${OUT}
|
||||
|
||||
clean:
|
||||
rm -f ${LANG} ${OUT}
|