forked from KolibriOS/kolibrios
italian version
git-svn-id: svn://kolibrios.org@3630 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c5b8b35a47
commit
8bb5266143
@ -14,7 +14,7 @@ altkey4 = 3
|
|||||||
altkey5 = 5
|
altkey5 = 5
|
||||||
altkey6 = 6
|
altkey6 = 6
|
||||||
altkey7 = 2
|
altkey7 = 2
|
||||||
altkey8 = 0
|
altkey8 = 8
|
||||||
altkey9 = 0
|
altkey9 = 0
|
||||||
altkey0 = 0
|
altkey0 = 0
|
||||||
|
|
||||||
@ -26,3 +26,4 @@ altkey0 = 0
|
|||||||
5 = Fr
|
5 = Fr
|
||||||
6 = Et
|
6 = Et
|
||||||
7 = Ua
|
7 = Ua
|
||||||
|
8 = It
|
||||||
|
29
programs/system/panel/trunk/makefile
Normal file
29
programs/system/panel/trunk/makefile
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=@PANEL
|
||||||
|
SOURCE=${FILE}.ASM
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
echo "lang fix en" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
${KPACK} ${OUT}
|
||||||
|
et:
|
||||||
|
echo "lang fix et" > ${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}
|
@ -142,6 +142,7 @@
|
|||||||
; * detect Revision, Class and Subclass of Device,
|
; * detect Revision, Class and Subclass of Device,
|
||||||
; * and make Description based on Class
|
; * and make Description based on Class
|
||||||
;-------------------------------------------------------------
|
;-------------------------------------------------------------
|
||||||
|
include 'lang.inc'
|
||||||
include 'macros.inc'
|
include 'macros.inc'
|
||||||
MEOS_APP_START
|
MEOS_APP_START
|
||||||
CODE
|
CODE
|
||||||
@ -411,7 +412,7 @@ Print_New_Device:
|
|||||||
add edx, 0x0014000A ; add 10 to y coordinate and set x coordinate to 20
|
add edx, 0x0014000A ; add 10 to y coordinate and set x coordinate to 20
|
||||||
ret
|
ret
|
||||||
|
|
||||||
include 'VENDORS.INC'
|
include 'vendors.inc'
|
||||||
;------------------------------------------------------------------
|
;------------------------------------------------------------------
|
||||||
; DATA AREA
|
; DATA AREA
|
||||||
DATA
|
DATA
|
||||||
@ -422,8 +423,20 @@ Form: dw 800 ; window width (no more, special for 800x600)
|
|||||||
dw 420 ; window height
|
dw 420 ; window height
|
||||||
dw 100 ; window y start
|
dw 100 ; window y start
|
||||||
|
|
||||||
|
if lang eq it
|
||||||
|
title db 'PCI Device Enumeration v 2.1n new PCI API test', 0
|
||||||
|
PCIWin mls \
|
||||||
|
'Ricordarsi di abilitare l accesso alla PCI per le applicazioni dal menu.',\
|
||||||
|
'',\
|
||||||
|
'Versione PCI = x.xx',\
|
||||||
|
'Ultimo Bus PCI = x',\
|
||||||
|
'Numerod di devices =',\
|
||||||
|
'',\
|
||||||
|
'VenID DevID Bus# Dev# Fnc Rev Class Subclass/ IRQ Compania Descrizione',\
|
||||||
|
' Interface',\
|
||||||
|
'----- ----- ---- ---- --- --- ----- --------- --- ------------------------------------------ ----------------'
|
||||||
|
else
|
||||||
title db 'PCI Device Enumeration v 2.1n new PCI API test', 0
|
title db 'PCI Device Enumeration v 2.1n new PCI API test', 0
|
||||||
|
|
||||||
PCIWin mls \
|
PCIWin mls \
|
||||||
'Please remember to enable PCI Access to Applications in Setup Menu.',\
|
'Please remember to enable PCI Access to Applications in Setup Menu.',\
|
||||||
'',\
|
'',\
|
||||||
@ -434,7 +447,7 @@ PCIWin mls \
|
|||||||
'VenID DevID Bus# Dev# Fnc Rev Class Subclass/ IRQ Company Description',\
|
'VenID DevID Bus# Dev# Fnc Rev Class Subclass/ IRQ Company Description',\
|
||||||
' Interface',\
|
' Interface',\
|
||||||
'----- ----- ---- ---- --- --- ----- --------- --- ------------------------------------------ ----------------'
|
'----- ----- ---- ---- --- --- ----- --------- --- ------------------------------------------ ----------------'
|
||||||
|
end if
|
||||||
;------------------------------------------------------------------
|
;------------------------------------------------------------------
|
||||||
; UNINITIALIZED DATA AREA
|
; UNINITIALIZED DATA AREA
|
||||||
UDATA
|
UDATA
|
||||||
|
19
programs/system/pcidev/branches/new_api/makefile
Normal file
19
programs/system/pcidev/branches/new_api/makefile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=PCIDEV
|
||||||
|
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}
|
@ -19,6 +19,8 @@
|
|||||||
; connected to the PCI Bus.
|
; connected to the PCI Bus.
|
||||||
;***************************************************************
|
;***************************************************************
|
||||||
;-----------------------------------------------------------------------------
|
;-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
include 'lang.inc' ;language support
|
||||||
include '../../../macros.inc'
|
include '../../../macros.inc'
|
||||||
|
|
||||||
include '../../../develop/libraries/box_lib/load_lib.mac'
|
include '../../../develop/libraries/box_lib/load_lib.mac'
|
||||||
@ -735,6 +737,27 @@ Form: dw 800 ; window width (no more, special for 800x600)
|
|||||||
|
|
||||||
title db 'PCI Device Enumerator v 2.3', 0
|
title db 'PCI Device Enumerator v 2.3', 0
|
||||||
|
|
||||||
|
if lang eq it
|
||||||
|
PCIWin mls \
|
||||||
|
' Don`t forget to enable PCI Access to Applications in Setup Menu.',\
|
||||||
|
'',\
|
||||||
|
'Versione PCI = x.xx; Ultimo Bus PCI = x',\
|
||||||
|
'User MMIO channel = 0F.F:F ',\
|
||||||
|
'Numbero di unità PCI = ',\
|
||||||
|
'',\
|
||||||
|
'VenID DevID Bus# Dev# Fnc Rev Class Subclass/ IRQ Compania Descrizzione',\
|
||||||
|
' Interfaccia',\
|
||||||
|
'----- ----- ---- ---- --- --- ----- --------- --- ------------------------------------------ --------------------------------'
|
||||||
|
|
||||||
|
bar_ram db 'BARx: MMIO block', 0
|
||||||
|
bar_io db 'BARx: porte IO',0
|
||||||
|
bar_um db 'BARx: unmapped',0
|
||||||
|
bar_rom db 'BAR6: Expansion ROM', 0
|
||||||
|
|
||||||
|
text_save_button:
|
||||||
|
db 'Salva lista PCI',0
|
||||||
|
.1: db '(Premere S)',0
|
||||||
|
else
|
||||||
PCIWin mls \
|
PCIWin mls \
|
||||||
' Don`t forget to enable PCI Access to Applications in Setup Menu.',\
|
' Don`t forget to enable PCI Access to Applications in Setup Menu.',\
|
||||||
'',\
|
'',\
|
||||||
@ -754,6 +777,7 @@ bar_rom db 'BAR6: Expansion ROM', 0
|
|||||||
text_save_button:
|
text_save_button:
|
||||||
db 'Save PCI list',0
|
db 'Save PCI list',0
|
||||||
.1: db '(Press S key)',0
|
.1: db '(Press S key)',0
|
||||||
|
end if
|
||||||
|
|
||||||
text_NA:
|
text_NA:
|
||||||
db '--',0
|
db '--',0
|
||||||
|
20
programs/system/pcidev/trunk/makefile
Normal file
20
programs/system/pcidev/trunk/makefile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
LANG=lang.inc
|
||||||
|
FILE=PCIDEV
|
||||||
|
SOURCE=${FILE}.ASM
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
echo "lang fix en" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
${KPACK} ${OUT}
|
||||||
|
it:
|
||||||
|
echo "lang fix it" > ${LANG}
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${LANG} ${OUT}
|
15
programs/system/psxpad/makefile
Normal file
15
programs/system/psxpad/makefile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#!gmake
|
||||||
|
|
||||||
|
# Macro
|
||||||
|
FASM=/opt/bin/fasm
|
||||||
|
KPACK=/opt/bin/kpack
|
||||||
|
FILE=psxpad
|
||||||
|
SOURCE=${FILE}.asm
|
||||||
|
OUT=${FILE}.bin
|
||||||
|
|
||||||
|
en:
|
||||||
|
${FASM} ${SOURCE} ${OUT}
|
||||||
|
${KPACK} ${OUT}
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f ${OUT}
|
Loading…
Reference in New Issue
Block a user