Merge remote-tracking branch 'origin/master' into dev/netservices

Change-Id: I48c8cf4f03e281a5caeb9f27bf052285961529ff
This commit is contained in:
Niels Sascha Reedijk
2022-10-29 22:58:24 +01:00
7294 changed files with 12529 additions and 281209 deletions
+189
View File
@@ -0,0 +1,189 @@
#!/bin/sh
# 3com
# atheros813x atheros81xx attansic_l1 attansic_l2
# broadcom440x broadcom570x
# dec21xxx
# ipro100 ipro1000
# intel22x
# jmicron2x0
# marvell_yukon
# nforce
# pcnet
# rtl8139 rtl81xx
# sis19x sis900 syskonnect
# via_rhine vt612x
TOPDIR=$PWD/..
pciBsdEtherDriver()
{
driverPath=src/add-ons/kernel/drivers/network/ether/$1
bsdname=$2
headername=$3
table=$4
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${5}.h - | sed -E -n "/${bsdname}_${table}\[/,/^$/p" | sed -r -e 's/.*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | uniq
}
pciBsdWlanDriver()
{
driverPath=src/add-ons/kernel/drivers/network/wlan/$1
bsdname=$2
headername=$3
table=$4
headersuffix=$5
sourcesuffix=$6
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
}
pciBsdEtherDriver 3com xl xl devs reg
pciBsdEtherDriver atheros813x alc alc ident_table reg
pciBsdEtherDriver atheros81xx ale ale devs reg
pciBsdEtherDriver attansic_l1 age age devs reg
pciBsdEtherDriver attansic_l2 ae ae devs var
pciBsdEtherDriver broadcom440x bfe bfe devs reg
pciBsdEtherDriver broadcom570x bge bge devs reg
#dec21xxx
driverPath=src/add-ons/kernel/drivers/network/ether/dec21xxx
bsdname=dc
headername=dc
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_dcreg.h > /tmp/if_dcreg.h
echo "#undef DC_DEVID" >> /tmp/if_dcreg.h
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include /tmp/if_dcreg.h - | sed -E -n "/${bsdname}_devs\[|${bsdname}_products\[|${bsdname}_ident_table\[/,/^$/p" | sed -r -e 's/[^0x]*0x([^ ,]+).*0x([^\)]+)\).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | uniq
rm /tmp/if_dcreg.h
#intel22x
driverPath=src/add-ons/kernel/drivers/network/ether/intel22x
bsdname=igc
headername=
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/igc_hw.h > /tmp/igc_hw.h
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_igc.c | gcc -E -include /tmp/igc_hw.h - | sed -E -n "/igc_vendor_info_array\[/,/PVID_END/p" | sed -r -e 's/.*0x([^ ,]+), 0x([^,]+),.*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }'
rm /tmp/igc_hw.h
pciBsdEtherDriver ipro100 fxp fxp ident_table reg
#e1000
driverPath=src/add-ons/kernel/drivers/network/ether/ipro1000
bsdname=e1000
headername=
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/e1000_hw.h > /tmp/e1000_hw.h
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_em.c | gcc -E -include /tmp/e1000_hw.h - | sed -E -n "/em_vendor_info_array\[/,/PVID_END/p" | sed -r -e 's/.*0x([^ ,]+), 0x([^,]+),.*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }'
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_em.c | gcc -E -include /tmp/e1000_hw.h - | sed -E -n "/igb_vendor_info_array\[/,/PVID_END/p" | sed -r -e 's/.*0x([^ ,]+), 0x([^,]+),.*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }'
rm /tmp/e1000_hw.h
pciBsdEtherDriver jmicron2x0 jme jme devs reg
pciBsdEtherDriver marvell_yukon msk msk products reg
pciBsdEtherDriver nforce nfe nfe devs reg
pciBsdEtherDriver pcnet pcn pcn devs reg
pciBsdEtherDriver rtl81xx re rl devs reg
pciBsdEtherDriver rtl8139 rl rl devs reg
pciBsdEtherDriver sis19x sge sge devs reg
pciBsdEtherDriver sis900 sis sis devs reg
pciBsdEtherDriver syskonnect sk sk devs reg
pciBsdEtherDriver via_rhine vr vr devs reg
pciBsdEtherDriver vt612x vge vge devs reg
#pegasus
driverPath=src/add-ons/kernel/drivers/network/ether/pegasus
sed -e 's/#include.*//g' $TOPDIR/$driverPath/driver.c | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h - | sed -E -n "/supported_devices\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/.*0x([^ ,]+), 0x([^ \}]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
#usb_asix
driverPath=src/add-ons/kernel/drivers/network/ether/usb_asix
sed -e 's/#include.*//g' $TOPDIR/$driverPath/Driver.cpp | gcc -E - | sed -E -n "/gSupportedDevices\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \}]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
echo "usb .... .... .. .. .. 02 06 00 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_ecm"
echo "usb .... .... .. .. .. e0 01 03 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_rndis"
#usb_davicom
driverPath=src/add-ons/kernel/drivers/network/ether/usb_davicom
sed -e 's/#include.*//g' $TOPDIR/$driverPath/Driver.cpp | gcc -E - | sed -E -n "/gSupportedDevices\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \}]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
echo "pci 1050 0840 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/wb840"
echo "pci 11f6 2011 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/wb840"
#aironetwifi atheroswifi
#broadcom43xx
#iaxwifi200 idualwifi7260
#iprowifi2100 iprowifi2200 iprowifi3945 iprowifi4965
#marvell88w8363 marvell88w8335
#ralinkwifi realtekwifi
pciBsdWlanDriver aironetwifi an an devs reg _pci
#atheroswifi
driverPath=src/add-ons/kernel/drivers/network/wlan/atheroswifi
bsdname=ath
headername=ath
table=pci_id_table
headersuffix=_pci_devlist
sourcesuffix=_pci
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -DPCI_VENDOR_ID_ATHEROS=0x168c -include $TOPDIR/$driverPath/dev/$headername/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \)]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
pciBsdWlanDriver broadcom43xx bwi bwi devices reg _pci
#iaxwifi200
driverPath=src/add-ons/kernel/drivers/network/wlan/iaxwifi200
bsdname=iwx
headername=iwx
table=devices
headersuffix=reg
sourcesuffix=
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/pci/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -D__FreeBSD_version -include $TOPDIR/$driverPath/dev/pci/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^iwx_probe/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \},]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
#idualwifi7260
driverPath=src/add-ons/kernel/drivers/network/wlan/idualwifi7260
bsdname=iwm
headername=iwm
table=devices
headersuffix=reg
sourcesuffix=
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/pci/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -D__FreeBSD_version -include $TOPDIR/$driverPath/dev/pci/if_${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \}]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
pciBsdWlanDriver iprowifi2100 ipw ipw ident_table reg
pciBsdWlanDriver iprowifi2200 iwi iwi ident_table reg
pciBsdWlanDriver iprowifi3945 wpi wpi ident_table reg
pciBsdWlanDriver iprowifi4965 iwn iwn ident_table _devid
pciBsdWlanDriver marvell88w8335 malo malo products hal _pci
pciBsdWlanDriver marvell88w8363 mwl mwl pci_ids ioctl _pci
#ralinkwifi
driverPath=src/add-ons/kernel/drivers/network/wlan/ralinkwifi
bsdname=ral
table=pci_ids
sourcesuffix=_pci
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
bsdname=ural
table=devs
sourcesuffix=
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/usb/wlan/if_${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h - | sed -E -n "/${bsdname}_${table}\[/,/^\};$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ \)]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
#realtekwifi
driverPath=src/add-ons/kernel/drivers/network/wlan/realtekwifi
bsdname=rtwn
headername=rtwn
table=pci_ident_table
headersuffix=_pci_attach
sourcesuffix=_pci_attach
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/pci/${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include $TOPDIR/$driverPath/dev/$headername/pci/${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^$/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "pci %s %s .... .... ...... : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
table=devs
headersuffix=_usb_attach
sourcesuffix=_usb_attach
sed -e 's/#include.*//g' $TOPDIR/$driverPath/dev/$bsdname/usb/${bsdname}${sourcesuffix}.c | awk '/VENDORID_.*,$/ { printf("%s\t", $0); next } 1' | gcc -E -include objects/common/libs/compat/freebsd_network/usbdevs.h -include $TOPDIR/$driverPath/dev/$headername/usb/${headername}${headersuffix}.h - | sed -E -n "/${bsdname}_${table}\[/,/^typedef/p" | sed -e 's/0X/0x/g' | sed -r -e 's/[^0x]*0x([^ ,]+), 0x([^ ,]+).*/\1\t\2/' -e '/^[[:alnum:]]/!d' | awk -F'\t' -v driverPath=$driverPath 'NF > 1 { printf "usb %s %s .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : %s\n", $1, $2, driverPath }' | sort | uniq
exit 0
+849
View File
@@ -0,0 +1,849 @@
pci 10B7 9000 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9050 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9051 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9004 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9005 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9006 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 900A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9055 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9056 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 905A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9058 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9200 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9201 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9202 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9800 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 9805 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 7646 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 4500 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 5055 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 6055 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 6056 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 5057 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 5157 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 5257 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 6560 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 6562 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 10B7 6564 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/3com
pci 1969 1063 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1062 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1073 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1083 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 2060 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 2062 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1091 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1090 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 10A1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 10A0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 E091 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 E0A1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 E0B1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros813x
pci 1969 1026 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/atheros81xx
pci 1969 1048 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/attansic_l1
pci 1969 2048 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/attansic_l2
pci 14E4 4401 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/broadcom440x
pci 14E4 170c .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/broadcom440x
pci 12AE 0003 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/broadcom570x
pci 12AE 0004 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/broadcom570x
pci 1011 0019 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1282 9009 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1282 9100 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1282 9102 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1317 0981 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1317 0985 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1317 1985 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1317 9511 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1317 9513 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 125B 1400 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10D9 0512 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 11F6 9881 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10D9 0531 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10D9 0532 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 11AD c115 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 11AD 0002 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1113 1217 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1113 1216 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 115d 0003 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1186 1561 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 13d1 AB02 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 13d1 ab08 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 14f1 1803 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 17b3 ab08 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 14ea ab08 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10b7 9300 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1414 0001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1414 0002 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1737 ab08 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 1737 ab09 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10b9 5261 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 10b9 5263 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/dec21xxx
pci 8086 15F2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 15F3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 3100 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 15F8 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 15F7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 3101 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 5502 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 5504 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 0D9F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 125B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 125C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 125D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 125E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 125F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 15FD .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/intel22x
pci 8086 1029 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1030 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1031 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1032 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1033 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1034 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1035 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1036 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1037 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1038 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1039 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 103A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 103B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 103C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 103D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 103E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1050 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1051 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1059 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1064 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1065 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1068 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1069 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1091 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1092 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1093 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1094 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1209 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 01 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 02 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 03 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 04 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 05 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 06 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 07 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 08 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 09 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 0c .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 0d .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 0e .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 0f .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 1229 10 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 1229 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 2449 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 27dc .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro100
pci 8086 100E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1015 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1017 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1016 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 101E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1013 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1078 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1014 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1018 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1076 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1077 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1000 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1004 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1008 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1009 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 100C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 100D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 100F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1011 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1026 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1027 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1028 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1010 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1012 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 101D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1079 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 108A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1099 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10B5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1019 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 101A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1075 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 105E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 105F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1060 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10D9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10DA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10A4 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10BC .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10A5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10D5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10B9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 107F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 108B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 108C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 109A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 150C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10BA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10BB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1096 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1098 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1049 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 104A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 104B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 104C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C4 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 104D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1501 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10F5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10BD .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 294C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10BF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10CB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10E5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10D3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10F6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10CC .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10CD .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10CE .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10DE .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10DF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1525 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10EA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10EB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10EF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10F0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1502 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1503 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 153A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 153B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 155A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1559 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15A0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15A1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15A2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15A3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 156F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1570 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15B7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15B8 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15B9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15D7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15D8 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15E3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15D6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15BD .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15BE .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15BB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15BC .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15DF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15E0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15E1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15E2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D4E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D4F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D4C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D4D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D53 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0D55 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15FB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15FC .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15F9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15FA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15F4 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15F5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1A1E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1A1F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1A1C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1A1D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 550A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 550B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 550C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 550D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10A7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10A9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10D6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10C9 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 150A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1518 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10E6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10E7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 150D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10E8 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1526 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 10CA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 150E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 150F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1510 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1511 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1516 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1527 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 043A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0438 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 0440 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 043C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1521 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1522 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1523 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1524 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1520 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1533 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1535 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1534 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 157B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 157C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 15F6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1536 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1537 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1538 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1539 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1F40 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1F45 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 8086 1F41 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/ipro1000
pci 197B 0250 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/jmicron2x0
pci 197B 0260 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/jmicron2x0
pci 1148 9000 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 1148 9e00 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4340 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4344 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4341 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4345 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4342 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4346 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4343 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4347 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4350 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4351 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4352 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4353 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4354 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4355 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4357 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 435A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4361 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4360 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4362 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4363 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4364 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4365 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 436A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 436B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 436C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 436D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4370 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4380 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 11AB 4381 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 1186 4001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 1186 4002 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 1186 4b00 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/marvell_yukon
pci 10DE 01C3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0066 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0086 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 008C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 00D6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 00E6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 00DF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0056 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0057 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0037 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0038 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0268 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0269 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0372 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0373 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 03e5 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 03e6 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 03ee .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 03ef .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0450 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0451 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0452 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0453 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 054c .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 054d .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 054e .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 054f .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 07dc .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 07dd .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 07de .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 07df .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0760 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0761 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0762 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0763 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0ab0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0ab1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0ab2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 10DE 0ab3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/nforce
pci 1022 2000 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pcnet
pci 1022 2001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pcnet
pci 1186 4300 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 1186 4302 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8139 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8136 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8168 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8161 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10FF 8168 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8169 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8167 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 1259 c107 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 1737 1032 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 16EC 0116 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl81xx
pci 10EC 8129 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 10EC 8139 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 10EC 8039 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 10EC 8138 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 10EC 8100 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1113 1211 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1500 1360 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 4033 1360 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1186 4200 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1186 1300 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1186 1340 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 126C 1211 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1259 a117 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1259 a11e .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1743 8139 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 14ea ab06 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 14ea ab07 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 021B 8139 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 018A 0106 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 13D1 AB06 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/rtl8139
pci 1039 0190 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/sis19x
pci 1039 0191 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/sis19x
pci 1039 0900 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/sis900
pci 1039 7016 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/sis900
pci 100B 0020 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/sis900
pci 1148 4300 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 1148 4320 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 11AB 4320 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 11AB 5005 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 10b7 1700 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 1737 1032 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 1186 4c00 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 1186 4b01 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/syskonnect
pci 1106 3043 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1106 6100 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1106 3065 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1106 3106 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1106 3053 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1500 1320 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 4033 1320 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/via_rhine
pci 1106 3119 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/vt612x
usb 03f0 811c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0411 0001 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0411 0005 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0411 0009 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 045e 007a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 04bb 0904 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 04bb 0913 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0506 4601 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 050d 0121 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 056e 200c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 056e 4002 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 056e 4005 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 056e 400b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 056e abc1 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 05cc 3000 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 200c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 2202 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 2203 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 2204 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 2206 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 066b 400b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 067c 1001 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0707 0200 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0707 0201 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07a6 0986 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07a6 8511 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07a6 8513 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07a6 8515 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07aa 0004 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07aa 000d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 110c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 200c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4002 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4003 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4004 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4007 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 400b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 400c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4102 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 4104 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 07b8 abc1 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 083a 1046 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 083a 5046 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0846 1020 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 08d1 0003 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 08dd 0986 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 08dd 0987 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 08dd 0988 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 08dd 8511 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0951 000a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0e66 400c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 15e8 9100 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 200c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 4001 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 4002 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 4003 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 400b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 4102 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 2001 abc1 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/pegasus
usb 0411 003d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0411 006e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 04bb 0930 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 04f1 3008 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 050d 5055 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0557 2009 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 05ac 1402 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 077b 2226 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0789 0160 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 07aa 0017 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 07b8 420a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 07d1 3c05 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0846 1040 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 086e 1920 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 08dd 90ff .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 1720 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 1780 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 7720 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 772a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 772b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0b95 7e2b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0df6 0056 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 0df6 061c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 1189 0893 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 13b1 0018 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 14ea ab11 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 1557 7720 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 1631 6200 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 1737 0039 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 17ef 7203 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 2001 1a00 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 2001 1a02 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 2001 3c05 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb 6189 182d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_asix
usb .... .... .. .. .. 02 06 00 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_ecm
usb .... .... .. .. .. e0 01 03 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_rndis
usb 01e1 9601 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 07aa 9601 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a46 0268 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a46 6688 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a46 8515 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a46 9000 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a46 9601 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0a47 9601 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0fe6 8101 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
usb 0fe6 9700 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/usb_davicom
pci 1050 0840 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/wb840
pci 11f6 2011 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/ether/wb840
pci 14B9 0001 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/aironetwifi
pci 14B9 0350 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/aironetwifi
pci 14B9 4500 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/aironetwifi
pci 14B9 4800 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/aironetwifi
pci 14B9 A504 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/aironetwifi
pci 168c 0023 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0024 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0027 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0029 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 002A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 002B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 002C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 002D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 002E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0030 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0032 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0033 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0034 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0036 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 168c 0037 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/atheroswifi
pci 14e4 4301 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4307 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4311 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4312 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4313 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4318 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4319 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 431a .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4320 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4321 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4324 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 14e4 4325 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/broadcom43xx
pci 8086 02f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 06f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 2723 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 2725 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 2726 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 34f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 3df0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 43f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 4df0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 51f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 54f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 7a70 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 7af0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 7f70 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 a0f0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iaxwifi200
pci 8086 08b1 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 08b2 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 08b3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 08b4 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 095a .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 095b .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 24f3 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 24f4 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 24fb .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 24fd .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 2526 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 3165 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 3166 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 31dc .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 9df0 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 a370 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/idualwifi7260
pci 8086 1043 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi2100
pci 8086 4220 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi2200
pci 8086 4221 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi2200
pci 8086 4223 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi2200
pci 8086 4224 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi2200
pci 8086 4222 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi3945
pci 8086 4227 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi3945
pci 8086 0082 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0083 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0084 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0085 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0087 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0089 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 008A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 008B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0090 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0091 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0885 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0886 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0887 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0888 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 088E .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 088F .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0890 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0891 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0892 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0893 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0894 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0895 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0896 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 0897 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 08AE .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 08AF .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4229 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 422B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 422C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 422d .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4230 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4232 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4233 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4235 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4236 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4237 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4238 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 4239 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 423A .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 423B .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 423C .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 8086 423D .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/iprowifi4965
pci 11AB 1FA7 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8335
pci 11AB 1FAA .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8335
pci 11AB 1FAB .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8335
pci 11ab 2a02 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a03 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a0a .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a0b .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a0c .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a21 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 11ab 2a24 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/marvell88w8363
pci 1432 7708 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7711 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7722 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7727 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7728 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7738 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7748 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7758 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1432 7768 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1462 891a .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0201 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0301 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0302 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0401 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0601 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0681 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0701 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 0781 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3060 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3062 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3090 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3091 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3092 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3390 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3562 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3592 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 3593 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 5360 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 5362 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 5390 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 5392 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 539a .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 539b .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1814 539f .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 1a3b 1059 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0411 005e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0411 0066 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0411 0067 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0411 008b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 050d 7050 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 050d 7051 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0681 3c06 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 06f8 e000 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0707 ee13 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0769 11f3 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0b05 1706 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0b05 1707 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0db0 6861 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0db0 6865 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0db0 6869 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0eb0 9020 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 0f88 3012 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 1044 8001 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 1044 8007 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 114b 0110 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 13b1 000d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 13b1 0011 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 13b1 001a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 148f 1706 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 148f 2570 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 148f 9020 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 14b2 3c02 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 2001 3c00 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
usb 5a57 0260 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/ralinkwifi
pci 10ec 8176 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
pci 10ec 8178 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
pci 10ec 8179 .... .... ...... : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0409 0408 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0411 0242 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0411 025d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0411 029b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 04bb 0952 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 04f2 aff7 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 04f2 aff8 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 04f2 aff9 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 04f2 affa .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 050d 1004 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 050d 1102 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 050d 2102 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 050d 2103 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 056e 4008 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 056e 400f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0586 341f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0586 3426 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 06f8 e033 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 07aa 0056 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 07b8 8178 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 07b8 8179 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 07b8 8188 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 07b8 8189 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0846 9021 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0846 9041 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0846 9052 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0b05 17ab .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0b05 17ba .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0b05 17d2 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0b05 18f0 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 0179 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 018a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 0811 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 317f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8170 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8176 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8177 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8178 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8179 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 817f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 818a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 818b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8191 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8754 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 8812 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda 881a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0bda a811 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0df6 0052 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0df6 005c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0df6 0061 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0df6 0074 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0e66 0019 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0e66 0023 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 0eb0 9071 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 103c 1629 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 13b1 003f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 13d3 3357 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 13d3 3358 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 13d3 3359 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 1740 0100 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3307 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3308 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3309 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 330a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 330d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 330f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3310 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3314 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3315 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3316 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3318 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2001 3319 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 1201 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 4902 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 ab2a .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 ab2b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 ab2e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 ab30 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2019 ed17 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 20f4 624d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 20f4 648b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 20f4 805b .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0101 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0103 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0107 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0108 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0109 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 010c .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 010d .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 010e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0111 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 011e .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 011f .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2357 0120 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2604 0012 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 2c4e 0102 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 4855 0090 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 4855 0091 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 7811 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 7822 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 a811 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 a812 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 a822 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 7392 b811 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
usb 9846 9041 .. .. .. .. .. .. 0000 ffff : CONFIG__UNKNOWN__ : src/add-ons/kernel/drivers/network/wlan/realtekwifi
+1 -1
View File
@@ -273,7 +273,6 @@ rule KernelArchitectureSetup architecture
case x86 : case x86 :
HAIKU_KERNEL_PLATFORM ?= bios_ia32 ; HAIKU_KERNEL_PLATFORM ?= bios_ia32 ;
HAIKU_BOOT_TARGETS += bios_ia32 efi pxe_ia32 ; HAIKU_BOOT_TARGETS += bios_ia32 efi pxe_ia32 ;
HAIKU_ANYBOOT_LEGACY = 1 ;
HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 2880 ; # in kB
# offset in floppy image (>= sizeof(haiku_loader)) # offset in floppy image (>= sizeof(haiku_loader))
@@ -377,6 +376,7 @@ rule KernelArchitectureSetup architecture
# Common boot-related cflags which apply to all loaders # Common boot-related cflags which apply to all loaders
HAIKU_BOOT_CCFLAGS = $(HAIKU_CCFLAGS_$(architecture)) $(ccBaseFlags) ; HAIKU_BOOT_CCFLAGS = $(HAIKU_CCFLAGS_$(architecture)) $(ccBaseFlags) ;
HAIKU_BOOT_C++FLAGS = $(HAIKU_C++FLAGS_$(architecture)) $(c++BaseFlags) ; HAIKU_BOOT_C++FLAGS = $(HAIKU_C++FLAGS_$(architecture)) $(c++BaseFlags) ;
HAIKU_BOOT_OPTIM = -Os ;
HAIKU_BOOT_LINKFLAGS = ; HAIKU_BOOT_LINKFLAGS = ;
HAIKU_BOOT_LDFLAGS = -Bstatic ; HAIKU_BOOT_LDFLAGS = -Bstatic ;
+1 -1
View File
@@ -266,7 +266,7 @@ actions ResComp1
{ {
export $(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR) export $(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR)
cat "$(2[2-])" | $(CC) $(CCFLAGS) -E $(CCDEFS) $(HDRS) - \ cat "$(2[2-])" | $(CC) $(CCFLAGS) -E $(CCDEFS) $(HDRS) - \
| egrep -v '^#' | $(2[1]) $(RCHDRS) --auto-names -o "$(1)" - | grep -E -v '^#' | $(2[1]) $(RCHDRS) --auto-names -o "$(1)" -
} }
rule ResAttr attributeFile : _resourceFiles : deleteAttributeFile rule ResAttr attributeFile : _resourceFiles : deleteAttributeFile
+10 -3
View File
@@ -97,6 +97,7 @@ rule SetupBoot
ObjectC++Flags $(object) : $(HAIKU_BOOT_C++FLAGS) $(HAIKU_BOOT_$(platform)_C++FLAGS) $(2) ; ObjectC++Flags $(object) : $(HAIKU_BOOT_C++FLAGS) $(HAIKU_BOOT_$(platform)_C++FLAGS) $(2) ;
ObjectDefines $(object) : $(TARGET_KERNEL_DEFINES) ; ObjectDefines $(object) : $(TARGET_KERNEL_DEFINES) ;
ASFLAGS on $(object) = $(HAIKU_BOOT_CCFLAGS) $(HAIKU_BOOT_$(platform)_CCFLAGS) ; ASFLAGS on $(object) = $(HAIKU_BOOT_CCFLAGS) $(HAIKU_BOOT_$(platform)_CCFLAGS) ;
OPTIM on $(object) = $(HAIKU_BOOT_OPTIM) ;
# override regular CCFLAGS/C++FLAGS, as we don't want them # override regular CCFLAGS/C++FLAGS, as we don't want them
TARGET_CCFLAGS_$(TARGET_KERNEL_ARCH) on $(object) = ; TARGET_CCFLAGS_$(TARGET_KERNEL_ARCH) on $(object) = ;
@@ -182,13 +183,19 @@ rule BootMergeObject
rule BootStaticLibrary rule BootStaticLibrary
{ {
# Usage BootStaticLibrary <name> : <sources> : <extra cc flags> ; # BootStaticLibrary <name> : <sources> : <extra cc flags> ;
# This is designed to take a set of sources and libraries and create # This is designed to take a set of sources and libraries and create
# a file called lib<name>.a # a static library.
local extraFlags = $(3) ;
TARGET_PACKAGING_ARCH on $(1) = $(TARGET_KERNEL_ARCH) ; TARGET_PACKAGING_ARCH on $(1) = $(TARGET_KERNEL_ARCH) ;
SetupBoot $(2) : $(3) : false ; if $(TARGET_CC_IS_LEGACY_GCC_$(TARGET_KERNEL_ARCH)) = 0
&& [ on $(1) return $(NO_HIDDEN_VISIBILITY) ] != 1 {
extraFlags += -fvisibility=hidden ;
}
SetupBoot $(2) : $(extraFlags) : false ;
Library $(1) : $(2) ; Library $(1) : $(2) ;
} }
-2
View File
@@ -6,8 +6,6 @@ local packages = [ FFilterByBuildFeatures
HaikuExtras HaikuExtras
HaikuLoader HaikuLoader
HaikuSource HaikuSource
HaikuUserguide
HaikuWelcome
MakefileEngine MakefileEngine
NetFS NetFS
UserlandFS UserlandFS
+4 -14
View File
@@ -1589,7 +1589,7 @@ actions BuildFloppyBootImageFixupM68K
#pragma mark - CD Boot Image rules #pragma mark - CD Boot Image rules
rule BuildCDBootImage image : bootfloppy : bootefi : extrafiles rule BuildCDBootImageEFI image : bootfloppy : bootefi : extrafiles
{ {
Depends $(image) : $(bootfloppy) ; Depends $(image) : $(bootfloppy) ;
Depends $(image) : $(bootefi) ; Depends $(image) : $(bootefi) ;
@@ -1602,21 +1602,11 @@ rule BuildCDBootImage image : bootfloppy : bootefi : extrafiles
VOLID on $(image) = haiku-$(HAIKU_VERSION)-$(TARGET_ARCH) ; VOLID on $(image) = haiku-$(HAIKU_VERSION)-$(TARGET_ARCH) ;
} }
if $(HAIKU_ANYBOOT_LEGACY) = 1 { BOOTEFI on $(image) = $(bootefi) ;
BuildCDBootImageMBR $(image) : $(bootfloppy) $(extrafiles) ; BuildCDBootImageEFI1 $(image) : $(bootfloppy) $(bootefi) $(extrafiles) ;
} else {
BOOTEFI on $(image) = $(bootefi) ;
BuildCDBootImageEFI $(image) : $(bootfloppy) $(bootefi) $(extrafiles) ;
}
} }
actions BuildCDBootImageMBR actions BuildCDBootImageEFI1
{
$(RM) $(<)
xorriso -as mkisofs -b $(BOOTIMG) -r -J -V $(VOLID) -o $(<) $(>[1]) $(>[2-])
}
actions BuildCDBootImageEFI
{ {
$(RM) $(<) $(RM) $(<)
xorriso -as mkisofs -b $(BOOTIMG) -eltorito-alt-boot -no-emul-boot -e $(BOOTEFI) \ xorriso -as mkisofs -b $(BOOTIMG) -eltorito-alt-boot -no-emul-boot -e $(BOOTEFI) \
+8 -2
View File
@@ -177,13 +177,19 @@ rule KernelMergeObject
rule KernelStaticLibrary rule KernelStaticLibrary
{ {
# Usage KernelStaticLibrary <name> : <sources> : <extra cc flags> ; # KernelStaticLibrary <name> : <sources> : <extra cc flags> ;
# This is designed to take a set of sources and libraries and create # This is designed to take a set of sources and libraries and create
# a static library. # a static library.
local extraFlags = $(3) ;
TARGET_PACKAGING_ARCH on $(1) = $(TARGET_KERNEL_ARCH) ; TARGET_PACKAGING_ARCH on $(1) = $(TARGET_KERNEL_ARCH) ;
SetupKernel $(2) : $(3) : false ; if $(TARGET_CC_IS_LEGACY_GCC_$(TARGET_KERNEL_ARCH)) = 0
&& [ on $(1) return $(NO_HIDDEN_VISIBILITY) ] != 1 {
extraFlags += -fvisibility=hidden ;
}
SetupKernel $(2) : $(extraFlags) : false ;
Library $(1) : $(2) ; Library $(1) : $(2) ;
} }
+23 -24
View File
@@ -151,30 +151,29 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
# Welcome # Welcome
if [ IsOptionalHaikuImagePackageAdded Welcome ] { if [ IsOptionalHaikuImagePackageAdded Welcome ] {
AddPackageFilesToHaikuImage system packages : Echo AddHaikuImageSystemPackages
haiku_userguide_ca.hpkg haiku_userguide_ca
haiku_userguide_de.hpkg haiku_userguide_de
haiku_userguide_en.hpkg haiku_userguide_en
haiku_userguide_es.hpkg haiku_userguide_es
haiku_userguide_fi.hpkg haiku_userguide_fi
haiku_userguide_fur.hpkg haiku_userguide_fur
haiku_userguide_fr.hpkg haiku_userguide_fr
haiku_userguide_hu.hpkg haiku_userguide_hu
haiku_userguide_id.hpkg haiku_userguide_id
haiku_userguide_it.hpkg haiku_userguide_jp
haiku_userguide_jp.hpkg haiku_userguide_pl
haiku_userguide_pl.hpkg haiku_userguide_pt_br
haiku_userguide_pt_BR.hpkg haiku_userguide_pt_pt
haiku_userguide_pt_PT.hpkg haiku_userguide_ro
haiku_userguide_ro.hpkg haiku_userguide_ru
haiku_userguide_ru.hpkg haiku_userguide_sk
haiku_userguide_sk.hpkg haiku_userguide_sv_se
haiku_userguide_sv_SE.hpkg haiku_userguide_tr
haiku_userguide_tr.hpkg haiku_userguide_uk
haiku_userguide_uk.hpkg haiku_userguide_zh_cn
haiku_userguide_zh_CN.hpkg haiku_welcome
haiku_welcome.hpkg ;
: nameFromMetaInfo ;
AddSymlinkToHaikuImage home Desktop : /boot/system/bin/quicktour AddSymlinkToHaikuImage home Desktop : /boot/system/bin/quicktour
: Quick\ Tour ; : Quick\ Tour ;
-18
View File
@@ -4,21 +4,6 @@ HAIKU_ANYBOOT_DIR ?= $(HAIKU_DEFAULT_ANYBOOT_DIR) ;
HAIKU_ANYBOOT = $(HAIKU_ANYBOOT_NAME) ; HAIKU_ANYBOOT = $(HAIKU_ANYBOOT_NAME) ;
HAIKU_ANYBOOT_LABEL ?= $(HAIKU_DEFAULT_ANYBOOT_LABEL) ; HAIKU_ANYBOOT_LABEL ?= $(HAIKU_DEFAULT_ANYBOOT_LABEL) ;
rule BuildAnybootImage anybootImage : mbrPart : isoPart : imageFile {
local anyboot = <build>anyboot ;
Depends $(anybootImage) : $(anyboot) ;
Depends $(anybootImage) : $(isoPart) ;
Depends $(anybootImage) : $(mbrPart) ;
Depends $(anybootImage) : $(imageFile) ;
BuildAnybootImage1 $(anybootImage) : $(anyboot) $(mbrPart) $(isoPart) $(imageFile) ;
}
actions BuildAnybootImage1 {
$(2[1]) -b $(2[2]) $(2[3]) $(2[4]) $(1)
}
rule BuildAnybootImageEfi anybootImage : mbrPart : efiPart : isoPart : imageFile { rule BuildAnybootImageEfi anybootImage : mbrPart : efiPart : isoPart : imageFile {
local anyboot = <build>anyboot ; local anyboot = <build>anyboot ;
@@ -55,9 +40,6 @@ for platform in [ MultiBootSubDirSetup ] {
BuildAnybootImageEfi $(HAIKU_ANYBOOT) : $(baseMBR) BuildAnybootImageEfi $(HAIKU_ANYBOOT) : $(baseMBR)
: $(efiPartition) : $(HAIKU_CD_BOOT_IMAGE) : $(efiPartition) : $(HAIKU_CD_BOOT_IMAGE)
: $(HAIKU_IMAGE_NAME) ; : $(HAIKU_IMAGE_NAME) ;
} else if $(HAIKU_ANYBOOT_LEGACY) = 1 {
BuildAnybootImage $(HAIKU_ANYBOOT) : $(baseMBR)
: $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_IMAGE_NAME) ;
} }
} }
} }
+1 -5
View File
@@ -38,12 +38,8 @@ if $(TARGET_ARCH) = ppc {
MakeLocateDebug $(efiPartition) : system boot ; MakeLocateDebug $(efiPartition) : system boot ;
BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ; BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ;
BuildCDBootImage $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY) BuildCDBootImageEFI $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY)
: $(efiPartition) : $(extras) ; : $(efiPartition) : $(extras) ;
} else if $(HAIKU_ANYBOOT_LEGACY) = 1 {
BuildCDBootImage $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY) :
: $(extras) ;
} }
} }
} }
+1 -1
View File
@@ -209,7 +209,7 @@ SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
etherpci etherpci
pegasus pegasus
usb_asix usb_davicom usb_ecm usb_rndis usb_asix usb_davicom usb_rndis
wb840 wb840
] ; ] ;
+5 -1
View File
@@ -3,6 +3,10 @@
# import everything from the minimum image # import everything from the minimum image
include [ FDirName $(HAIKU_BUILD_RULES_DIR) images definitions minimum ] ; include [ FDirName $(HAIKU_BUILD_RULES_DIR) images definitions minimum ] ;
SEARCH on [ FGristFiles userguide quicktour welcome ]
= [ FDirName $(HAIKU_TOP) data bin ] ;
SYSTEM_BIN += userguide quicktour welcome ;
SYSTEM_BIN += [ FFilterByBuildFeatures SYSTEM_BIN += [ FFilterByBuildFeatures
cddb_lookup cddb_lookup
clipboard CortexAddOnHost clipboard CortexAddOnHost
@@ -10,7 +14,7 @@ SYSTEM_BIN += [ FFilterByBuildFeatures
FirstBootPrompt FirstBootPrompt
<bin>i2c@x86,x86_64 installsound <bin>i2c@x86,x86_64 installsound
mail mail2mbox mbox2mail media_client mount_nfs mail mail2mbox mbox2mail media_client mount_nfs
play recover screenshot setcontrollook setdecor spamdbm pidof play recover screenshot setcontrollook setdecor spamdbm
translate translate
WindowShade WindowShade
] ; ] ;
+1 -1
View File
@@ -63,7 +63,7 @@ AddNewDriversToPackage disk scsi : scsi_cd scsi_disk ;
AddNewDriversToPackage disk virtual : virtio_block ram_disk ; AddNewDriversToPackage disk virtual : virtio_block ram_disk ;
AddNewDriversToPackage power : $(SYSTEM_ADD_ONS_DRIVERS_POWER) ; AddNewDriversToPackage power : $(SYSTEM_ADD_ONS_DRIVERS_POWER) ;
AddNewDriversToPackage sensor : $(SYSTEM_ADD_ONS_DRIVERS_SENSOR) ; AddNewDriversToPackage sensor : $(SYSTEM_ADD_ONS_DRIVERS_SENSOR) ;
AddNewDriversToPackage network : virtio_net ; AddNewDriversToPackage network : usb_ecm virtio_net ;
AddNewDriversToPackage input : virtio_input ; AddNewDriversToPackage input : virtio_input ;
#AddNewDriversToPackage display : display_adapter@x86 ; #AddNewDriversToPackage display : display_adapter@x86 ;
+5
View File
@@ -3,6 +3,11 @@ local architecture = $(HAIKU_PACKAGING_ARCHS[1]) ;
local extrasPackage = haiku_extras.hpkg ; local extrasPackage = haiku_extras.hpkg ;
HaikuPackage $(extrasPackage) ; HaikuPackage $(extrasPackage) ;
## Apps Oddities
AddFilesToPackage bin : acpi_call ;
## Driver Oddities ## Driver Oddities
# kernel modules # kernel modules
-314
View File
@@ -1,314 +0,0 @@
# CA
local haikuUserGuidePackageCA = haiku_userguide_ca.hpkg ;
HaikuPackage $(haikuUserGuidePackageCA) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide ca ]
: ca ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageCA) : haiku_userguide_ca ;
# DE
local haikuUserGuidePackageDE = haiku_userguide_de.hpkg ;
HaikuPackage $(haikuUserGuidePackageDE) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide de ]
: de ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageDE) : haiku_userguide_de ;
# EN
local haikuUserGuidePackageEN = haiku_userguide_en.hpkg ;
HaikuPackage $(haikuUserGuidePackageEN) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide en ]
: en ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageEN) : haiku_userguide_en ;
# ES
local haikuUserGuidePackageES = haiku_userguide_es.hpkg ;
HaikuPackage $(haikuUserGuidePackageES) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide es ]
: es ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageES) : haiku_userguide_es ;
# FI
local haikuUserGuidePackageFI = haiku_userguide_fi.hpkg ;
HaikuPackage $(haikuUserGuidePackageFI) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide fi ]
: fi ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageFI) : haiku_userguide_fi ;
# FR
local haikuUserGuidePackageFR = haiku_userguide_fr.hpkg ;
HaikuPackage $(haikuUserGuidePackageFR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide fr ]
: fr ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageFR) : haiku_userguide_fr ;
# FUR
local haikuUserGuidePackageFUR = haiku_userguide_fur.hpkg ;
HaikuPackage $(haikuUserGuidePackageFUR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide fur ]
: fur ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageFUR) : haiku_userguide_fur ;
# HU
local haikuUserGuidePackageHU = haiku_userguide_hu.hpkg ;
HaikuPackage $(haikuUserGuidePackageHU) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide hu ]
: hu ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageHU) : haiku_userguide_hu ;
# ID
local haikuUserGuidePackageID = haiku_userguide_id.hpkg ;
HaikuPackage $(haikuUserGuidePackageID) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide id ]
: id ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageID) : haiku_userguide_id ;
# IT
local haikuUserGuidePackageIT = haiku_userguide_it.hpkg ;
HaikuPackage $(haikuUserGuidePackageIT) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide it ]
: it ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageIT) : haiku_userguide_it ;
# JP
local haikuUserGuidePackageJP = haiku_userguide_jp.hpkg ;
HaikuPackage $(haikuUserGuidePackageJP) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide jp ]
: jp ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageJP) : haiku_userguide_jp ;
# PL
local haikuUserGuidePackagePL = haiku_userguide_pl.hpkg ;
HaikuPackage $(haikuUserGuidePackagePL) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pl ]
: pl ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePL) : haiku_userguide_pl ;
# PT_BR
local haikuUserGuidePackagePT_BR = haiku_userguide_pt_BR.hpkg ;
HaikuPackage $(haikuUserGuidePackagePT_BR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pt_BR ]
: pt_BR ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePT_BR) : haiku_userguide_pt_BR ;
# PT_PT
local haikuUserGuidePackagePT_PT = haiku_userguide_pt_PT.hpkg ;
HaikuPackage $(haikuUserGuidePackagePT_PT) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide pt_PT ]
: pt_PT ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackagePT_PT) : haiku_userguide_pt_PT ;
# RO
local haikuUserGuidePackageRO = haiku_userguide_ro.hpkg ;
HaikuPackage $(haikuUserGuidePackageRO) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide ro ]
: ro ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageRO) : haiku_userguide_ro ;
# RU
local haikuUserGuidePackageRU = haiku_userguide_ru.hpkg ;
HaikuPackage $(haikuUserGuidePackageRU) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide ru ]
: ru ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageRU) : haiku_userguide_ru ;
# SK
local haikuUserGuidePackageSK = haiku_userguide_sk.hpkg ;
HaikuPackage $(haikuUserGuidePackageSK) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide sk ]
: sk ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageSK) : haiku_userguide_sk ;
# SV_SE
local haikuUserGuidePackageSV_SE = haiku_userguide_sv_SE.hpkg ;
HaikuPackage $(haikuUserGuidePackageSV_SE) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide sv_SE ]
: sv_SE ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageSV_SE) : haiku_userguide_sv_SE ;
# TR
local haikuUserGuidePackageTR = haiku_userguide_tr.hpkg ;
HaikuPackage $(haikuUserGuidePackageTR) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide tr ]
: tr ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageTR) : haiku_userguide_tr ;
# UK
local haikuUserGuidePackageUK = haiku_userguide_uk.hpkg ;
HaikuPackage $(haikuUserGuidePackageUK) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide uk ]
: uk ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageUK) : haiku_userguide_uk ;
# ZH_CN
local haikuUserGuidePackageZH_CN = haiku_userguide_zh_CN.hpkg ;
HaikuPackage $(haikuUserGuidePackageZH_CN) ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide zh_CN ]
: zh_CN ;
CopyDirectoryToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide images ]
: images ;
AddFilesToPackage documentation userguide : [ FDirName $(HAIKU_TOP) docs userguide Haiku-doc.css ]
: Haiku-doc.css ;
SEARCH on userguide = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : userguide ;
BuildHaikuPackage $(haikuUserGuidePackageZH_CN) : haiku_userguide_zh_CN ;
-11
View File
@@ -1,11 +0,0 @@
local haikuWelcomePackage = haiku_welcome.hpkg ;
HaikuPackage $(haikuWelcomePackage) ;
CopyDirectoryToPackage documentation : [ FDirName $(HAIKU_TOP) docs welcome ]
: welcome ;
SEARCH on welcome = [ FDirName $(HAIKU_TOP) data bin ] ;
AddFilesToPackage bin : quicktour welcome ;
BuildHaikuPackage $(haikuWelcomePackage) : haiku_welcome ;
-22
View File
@@ -22,28 +22,6 @@ if $(HAIKU_IS_BOOTSTRAP) != 1 && $(HAIKU_BUILD_TYPE) != minimum {
packages += [ FFilterByBuildFeatures packages += [ FFilterByBuildFeatures
haiku_extras haiku_extras
haiku_source haiku_source
haiku_userguide_ca
haiku_userguide_de
haiku_userguide_en
haiku_userguide_es
haiku_userguide_fi
haiku_userguide_fr
haiku_userguide_fur
haiku_userguide_hu
haiku_userguide_id
haiku_userguide_it
haiku_userguide_jp
haiku_userguide_pl
haiku_userguide_pt_BR
haiku_userguide_pt_PT
haiku_userguide_ro
haiku_userguide_ru
haiku_userguide_sk
haiku_userguide_sv_SE
haiku_userguide_tr
haiku_userguide_uk
haiku_userguide_zh_CN
haiku_welcome
makefile_engine makefile_engine
netfs netfs
userland_fs userland_fs
+1 -1
View File
@@ -374,7 +374,7 @@ fi
# install default settings for packages # install default settings for packages
for packageFile in $systemPackages; do for packageFile in $systemPackages; do
if $package list -p $packageFile | egrep '^settings/' > /dev/null; then if $package list -p $packageFile | grep -E '^settings/' > /dev/null; then
extractFile $packageFile system/settings settings extractFile $packageFile system/settings settings
fi fi
done done
@@ -1,7 +1,7 @@
1 turkish x-vnd.Haiku-DNSClientService 2825577357 1 turkish x-vnd.Haiku-DNSClientService 2825577357
DNS settings DNSClientServiceAddOn DNS Ayarları DNS settings DNSClientServiceAddOn DNS ayarları
Move down DNSSettingsView Aşağı taşı Move down DNSSettingsView Aşağı taşı
DNS settings DNSSettingsView DNS Ayarları DNS settings DNSSettingsView DNS ayarları
Remove DNSSettingsView Kaldır Remove DNSSettingsView Kaldır
Domain: DNSSettingsView Alan: Domain: DNSSettingsView Alan:
Add DNSSettingsView Ekle Add DNSSettingsView Ekle
@@ -13,7 +13,7 @@ green Nebula Screen Saver yeşil
Enable motion blur Nebula Screen Saver Hareket bulanıklığını etkinleştir Enable motion blur Nebula Screen Saver Hareket bulanıklığını etkinleştir
only a slit Nebula Screen Saver sadece bir yarık only a slit Nebula Screen Saver sadece bir yarık
fullscreen, no borders Nebula Screen Saver tam ekran, kenarlıklar olmadan fullscreen, no borders Nebula Screen Saver tam ekran, kenarlıklar olmadan
orange (original) Nebula Screen Saver turuncu (orijinal) orange (original) Nebula Screen Saver turuncu (özgün)
cyan Nebula Screen Saver camgöbeği cyan Nebula Screen Saver camgöbeği
Speed Nebula Screen Saver Hız Speed Nebula Screen Saver Hız
%ld pixels Nebula Screen Saver %ld piksel %ld pixels Nebula Screen Saver %ld piksel
@@ -1,4 +1,4 @@
1 catalan; valencian x-vnd.Haiku-ShelfScreensaver 547737841 1 catalan; valencian x-vnd.Haiku-ShelfScreensaver 547737841
Drop replicants on the full-screen window behind the preferences panel. Shelf Screen Saver Deixeu anar replicant a la finestra de pantalla completa darrere del plafó de preferències. Drop replicants on the full-screen window behind the preferences panel. Shelf Screen Saver Deixeu anar replicants a la finestra de pantalla completa darrere del plafó de preferències.
© 2012 François Revol. Shelf Screen Saver © 2012, François Revol. © 2012 François Revol. Shelf Screen Saver © 2012, François Revol.
Shelf Shelf Screen Saver Lleixa Shelf Shelf Screen Saver Lleixa
@@ -1,5 +1,5 @@
1 catalan; valencian x-vnd.haiku.zip-o-matic 2032806096 1 catalan; valencian x-vnd.haiku.zip-o-matic 2032806096
Drop files here. file:ZipOMaticWindow.cpp Deixeu anar els fitxers aquí. Drop files here. file:ZipOMaticWindow.cpp Deixeu anar fitxers aquí.
Filename: %s file:ZipOMaticWindow.cpp Nom del fitxer: %s Filename: %s file:ZipOMaticWindow.cpp Nom del fitxer: %s
Do you want to stop them? file:ZipOMatic.cpp Voleu interrompre'ls? Do you want to stop them? file:ZipOMatic.cpp Voleu interrompre'ls?
Error creating archive file:ZipOMaticWindow.cpp Error en crear l'arxiu. Error creating archive file:ZipOMaticWindow.cpp Error en crear l'arxiu.
@@ -2,4 +2,4 @@
Error TranslatorWindow Hata Error TranslatorWindow Hata
OK TranslatorWindow Tamam OK TranslatorWindow Tamam
Be Bitmap Format BaseTranslator Be Biteşlem Biçimi Be Bitmap Format BaseTranslator Be Biteşlem Biçimi
Unable to create the view. TranslatorWindow Görünüm oluşturulamıyor. Unable to create the view. TranslatorWindow Görüntü oluşturulamıyor.
+1 -1
View File
@@ -13,8 +13,8 @@ Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro
Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Аўтарскае права © 1991-2000 Silicon Graphics, Inc. Правы захаваныя. Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Аўтарскае права © 1991-2000 Silicon Graphics, Inc. Правы захаваныя.
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Аўтарскае права © 1990-2002 Info-ZIP. Правы захаваныя. Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Аўтарскае права © 1990-2002 Info-ZIP. Правы захаваныя.
Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя. Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя.
%d MiB total AboutView %d MiB усяго
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, якi з'яўляецца ўласнасцю Haiku, асаблiва ядро и праграмы, могуць распаўсюджвацца ў станаўленнi з ўмовами <MIT license>. Некаторыя сiстэмныя бiблiятэки змяшчаюць староннi код, якi распаўсюджваюцца пад лицэнзiяй <LGPL license>. Аўтарскiя правы на староннi код вы можаце знайсцi нiжэй.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, якi з'яўляецца ўласнасцю Haiku, асаблiва ядро и праграмы, могуць распаўсюджвацца ў станаўленнi з ўмовами <MIT license>. Некаторыя сiстэмныя бiблiятэки змяшчаюць староннi код, якi распаўсюджваюцца пад лицэнзiяй <LGPL license>. Аўтарскiя правы на староннi код вы можаце знайсцi нiжэй.\n\n
%d MiB total AboutView %d MiB усяго
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Аўтарскае права © 1999-2006 Brian Paul. Mesa3D Project. Правы захаваныя. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Аўтарскае права © 1999-2006 Brian Paul. Mesa3D Project. Правы захаваныя.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Аўтарскае права © 2010-2011 Google Inc. Правы захаваныя. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Аўтарскае права © 2010-2011 Google Inc. Правы захаваныя.
+5 -4
View File
@@ -1,4 +1,4 @@
1 catalan; valencian x-vnd.Haiku-About 610468518 1 catalan; valencian x-vnd.Haiku-About 2259131995
Revision AboutView Revisió Revision AboutView Revisió
The Haikuware team and their bounty program\n AboutView L'equip de Haikuware i el seu programa de recompenses\n The Haikuware team and their bounty program\n AboutView L'equip de Haikuware i el seu programa de recompenses\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tots els drets reservats. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tots els drets reservats.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Proves i triatge d'errors:\n Testing and bug triaging:\n AboutView Proves i triatge d'errors:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{processador:} other{# processadors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{processador:} other{# processadors:}}
Ralink WiFi Firmware AboutWindow Microprogramari de WiFi de Ralink Ralink WiFi Firmware AboutWindow Microprogramari de WiFi de Ralink
%d MiB total AboutView %d MiB totals
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. El codi que és únic al Haiku, especialment el nucli i tot el codi amb què les aplicacions es poden enllaçar, es distribueix segons els termes de la llicència <MIT>. Algunes biblioteques del sistema contenen codi de tercers distribuït d'acord amb la llicència <LGPL>. A continuació podeu trobar els drets reservats del codi de tercers.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. El codi que és únic al Haiku, especialment el nucli i tot el codi amb què les aplicacions es poden enllaçar, es distribueix segons els termes de la llicència <MIT>. Algunes biblioteques del sistema contenen codi de tercers distribuït d'acord amb la llicència <LGPL>. A continuació podeu trobar els drets reservats del codi de tercers.\n\n
%d MiB total AboutView %d MiB totals
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tots els drets reservats. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tots els drets reservats.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Tots els drets reservats. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Tots els drets reservats.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tots els drets reservats. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tots els drets reservats.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Aquest programari es basa en part de la feina del Independent JPEG Group. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Aquest programari es basa en part de la feina del Independent JPEG Group.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (fundador del projecte)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (fundador del projecte)\n\n
Remove replicant AboutView Suprimeix el replicant
BSD (3-clause) AboutWindow BSD (clàusula 3) BSD (3-clause) AboutWindow BSD (clàusula 3)
About this system AboutWindow Quant a aquest sistema About this system AboutWindow Quant a aquest sistema
%d MiB used (%d%%) AboutView %d MiB usats (%d%%) %d MiB used (%d%%) AboutView %d MiB usats (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView Codi font:
\nCopyrights\n\n AboutView \nDrets de reproducció\n\n \nCopyrights\n\n AboutView \nDrets de reproducció\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006, David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006, David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView L'equip de HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Conté programari del Projecte GNU, publicat segons les llicències GPL i LGPL:\nBiblioteca C GNU, coretools GNU, difutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © La Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Conté programari del Projecte GNU, publicat segons les llicències GPL i LGPL:\nBiblioteca C GNU, coretools GNU, difutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © La Free Software Foundation.
The HaikuPorts team\n AboutView L'equip de HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Conté programari del projecte FreeBSD, publicat segons la llicència BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 El projecte FreeBSD. Tots els drets reservats. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Conté programari del projecte FreeBSD, publicat segons la llicència BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 El projecte FreeBSD. Tots els drets reservats.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Tots els drets reservats. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Tots els drets reservats.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019, Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019, Fabrice Bellard, et al.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Versió: Version: AboutView Versió:
The BeGeistert team\n AboutView L'equip del BeGeistert\n The BeGeistert team\n AboutView L'equip del BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Llicència:
Intel (2xxx firmware) AboutWindow Intel (Microprogramari 2xxx) Intel (2xxx firmware) AboutWindow Intel (Microprogramari 2xxx)
License: AboutView Llicència:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView L'Universitat de Auckland i Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView L'Universitat de Auckland i Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB en total, %inaccessible MiB inaccessibles %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB en total, %inaccessible MiB inaccessibles
+3 -3
View File
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Testování a probírka chyb:\n Testing and bug triaging:\n AboutView Testování a probírka chyb:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesor} few{# Procesory} other{# Procesorů}}: {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesor} few{# Procesory} other{# Procesorů}}:
Ralink WiFi Firmware AboutWindow Firmware Ralink WiFi Ralink WiFi Firmware AboutWindow Firmware Ralink WiFi
%d MiB total AboutView %d MiB celkem
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, který je pro Haiku jedinečný, zejména jádro a veškerý kód, proti němuž mohou aplikace odkazovat, je distribuován pod podmínkami <licence MIT>. Některé knihovny systému obsahují kód třetí strany distribuovaný pod licencí <LGPL license>. Autorská práva k kódům třetích stran naleznete níže.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, který je pro Haiku jedinečný, zejména jádro a veškerý kód, proti němuž mohou aplikace odkazovat, je distribuován pod podmínkami <licence MIT>. Některé knihovny systému obsahují kód třetí strany distribuovaný pod licencí <LGPL license>. Autorská práva k kódům třetích stran naleznete níže.\n\n
%d MiB total AboutView %d MiB celkem
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všechna práva vyhrazena. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všechna práva vyhrazena.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Projekt Mesa3D. Všechna práva vyhrazena. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Projekt Mesa3D. Všechna práva vyhrazena.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všechna práva vyhrazena. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všechna práva vyhrazena.
@@ -52,8 +52,8 @@ Source Code: AboutView Zdrojový kód:
\nCopyrights\n\n AboutView \nAutorská práva\n\n \nCopyrights\n\n AboutView \nAutorská práva\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm a Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm a Werner Lemberg.
The HaikuPorts team\n AboutView Tým HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje software z projektu GNU, který je vydán pod licencí GPL a LGPL: \nGNU C knihovnu, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje software z projektu GNU, který je vydán pod licencí GPL a LGPL: \nGNU C knihovnu, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Tým HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje software z projektu FreeBSD, který je vydán pod licencí BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 Projekt FreeBSD. Všechna práva vyhrazena. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje software z projektu FreeBSD, který je vydán pod licencí BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 Projekt FreeBSD. Všechna práva vyhrazena.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všechna práva vyhrazena. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všechna práva vyhrazena.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard a spol. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard a spol.
@@ -64,8 +64,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Verze: Version: AboutView Verze:
The BeGeistert team\n AboutView Tým BeGeistert\n The BeGeistert team\n AboutView Tým BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Licence:
Intel (2xxx firmware) AboutWindow Intel (2xxx firmware) Intel (2xxx firmware) AboutWindow Intel (2xxx firmware)
License: AboutView Licence:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Aucklandská Universita a Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Aucklandská Universita a Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB celkem, %inaccessible MiB nedostupných %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB celkem, %inaccessible MiB nedostupných
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Forhenværende websted og markedsføring:
Copyright © 2003 Peter Hanappe and others. AboutView Ophavsret © 2003 Peter Hanappe og andre. Copyright © 2003 Peter Hanappe and others. AboutView Ophavsret © 2003 Peter Hanappe og andre.
Testing and bug triaging:\n AboutView Testning og fejltriagering:\n Testing and bug triaging:\n AboutView Testning og fejltriagering:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# processorer:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# processorer:}}
%d MiB total AboutView %d MiB i alt
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kode som er unikt til Haiku, specielt kernen og al kode som programmer kan linke mod, distribueres under vilkårene i <MIT-licensen>. Nogle systembiblioteker indeholder tredjepartskode som distribueres under <LGPL-licensen>. Du kan finde ophavsrettene til tredjepartskode nedenfor.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kode som er unikt til Haiku, specielt kernen og al kode som programmer kan linke mod, distribueres under vilkårene i <MIT-licensen>. Nogle systembiblioteker indeholder tredjepartskode som distribueres under <LGPL-licensen>. Du kan finde ophavsrettene til tredjepartskode nedenfor.\n\n
%d MiB total AboutView %d MiB i alt
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Ophavsret © 1996-1997 Jeff Prosise. Alle rettigheder forbeholdes. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Ophavsret © 1996-1997 Jeff Prosise. Alle rettigheder forbeholdes.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Ophavsret © 1999-2006 Brian Paul. Mesa3D-projektet. Alle rettigheder forbeholdes. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Ophavsret © 1999-2006 Brian Paul. Mesa3D-projektet. Alle rettigheder forbeholdes.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Ophavsret © 2010-2011 Google Inc. Alle rettigheder forbeholdes. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Ophavsret © 2010-2011 Google Inc. Alle rettigheder forbeholdes.
@@ -48,8 +48,8 @@ Source Code: AboutView Kildekode:
\nCopyrights\n\n AboutView \nOphavsrettigheder\n\n \nCopyrights\n\n AboutView \nOphavsrettigheder\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Ophavsret © 1996-2002, 2006 David Turner, Robert Wilhelm og Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Ophavsret © 1996-2002, 2006 David Turner, Robert Wilhelm og Werner Lemberg.
The HaikuPorts team\n AboutView HaikuPorts-teamet\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Indeholder software fra GNU-projektet, udgivet under GPL- og LGPL-licenserne:\nGNU C-bibliotek, GNU-kerneværktøjer, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nOphavsret © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Indeholder software fra GNU-projektet, udgivet under GPL- og LGPL-licenserne:\nGNU C-bibliotek, GNU-kerneværktøjer, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nOphavsret © The Free Software Foundation.
The HaikuPorts team\n AboutView HaikuPorts-teamet\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Indeholder software fra FreeBSD-projektet, udgivet under BSD-licenserne:\nftpd, ping, telnet, telnetd, traceroute\nOphavsret © 1994-2008 FreeBSD-projektet. Alle rettigheder forbeholdes. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Indeholder software fra FreeBSD-projektet, udgivet under BSD-licenserne:\nftpd, ping, telnet, telnetd, traceroute\nOphavsret © 1994-2008 FreeBSD-projektet. Alle rettigheder forbeholdes.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Ophavsret © 2002-2003 Steve Lhomme. Alle rettigheder forbeholdes. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Ophavsret © 2002-2003 Steve Lhomme. Alle rettigheder forbeholdes.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Ophavsret © 2000-2019 Fabrice Bellard, med flere Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Ophavsret © 2000-2019 Fabrice Bellard, med flere
+5 -4
View File
@@ -1,4 +1,4 @@
1 german x-vnd.Haiku-About 610468518 1 german x-vnd.Haiku-About 2259131995
Revision AboutView Stand: Revision AboutView Stand:
The Haikuware team and their bounty program\n AboutView Das Haikuware-Team und deren Bounty-Programm\n The Haikuware team and their bounty program\n AboutView Das Haikuware-Team und deren Bounty-Programm\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Tests und Bugtracker-Pflege:\n Testing and bug triaging:\n AboutView Tests und Bugtracker-Pflege:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Prozessor:} other{# Prozessoren:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Prozessor:} other{# Prozessoren:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi-Firmware Ralink WiFi Firmware AboutWindow Ralink WiFi-Firmware
%d MiB total AboutView %d MiB gesamt
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Der von Haiku selbst erstellte Quellcode, besonders der Kernel und alle Teile des Codes, gegen den Anwendungen gelinkt werden können, wird unter den Bedingungen der <MIT-Lizenz> veröffentlicht. Einige Systembibliotheken, die Code von Dritten enthalten, stehen unter der <LGPL-Lizenz>. Angaben zum Copyright von externen Quellen sind nachfolgend aufgeführt.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Der von Haiku selbst erstellte Quellcode, besonders der Kernel und alle Teile des Codes, gegen den Anwendungen gelinkt werden können, wird unter den Bedingungen der <MIT-Lizenz> veröffentlicht. Einige Systembibliotheken, die Code von Dritten enthalten, stehen unter der <LGPL-Lizenz>. Angaben zum Copyright von externen Quellen sind nachfolgend aufgeführt.\n\n
%d MiB total AboutView %d MiB gesamt
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Projekt. Alle Rechte vorbehalten. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Projekt. Alle Rechte vorbehalten.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle Rechte vorbehalten. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle Rechte vorbehalten.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (Projektgründer)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (Projektgründer)\n\n
Remove replicant AboutView Replikant entfernen
BSD (3-clause) AboutWindow BSD (3-Klausel) BSD (3-clause) AboutWindow BSD (3-Klausel)
About this system AboutWindow Über dieses System About this system AboutWindow Über dieses System
%d MiB used (%d%%) AboutView %d MiB benutzt (%d%%) %d MiB used (%d%%) AboutView %d MiB benutzt (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView Quellcode:
\nCopyrights\n\n AboutView \nCopyrights\n\n \nCopyrights\n\n AboutView \nCopyrights\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm und Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm und Werner Lemberg.
The HaikuPorts team\n AboutView Das HaikuPorts-Team\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enthält Software des GNU-Projekts, die unter den GPL- und LGPL-Lizenzen veröffentlicht wurde:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enthält Software des GNU-Projekts, die unter den GPL- und LGPL-Lizenzen veröffentlicht wurde:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © Free Software Foundation.
The HaikuPorts team\n AboutView Das HaikuPorts-Team\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Enthält Software des FreeBSD-Projekts, die unter der BSD-Lizenz veröffentlicht wurde:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Alle Rechte vorbehalten. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Enthält Software des FreeBSD-Projekts, die unter der BSD-Lizenz veröffentlicht wurde:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Alle Rechte vorbehalten.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle Rechte vorbehalten. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle Rechte vorbehalten.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Version: Version: AboutView Version:
The BeGeistert team\n AboutView Das BeGeistert-Team\n The BeGeistert team\n AboutView Das BeGeistert-Team\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Lizenz:
Intel (2xxx firmware) AboutWindow Intel (2xxx Firmware) Intel (2xxx firmware) AboutWindow Intel (2xxx Firmware)
License: AboutView Lizenz:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Die Universität von Auckland und Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Die Universität von Auckland und Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB gesamt, %inaccessible MiB n. verfügbar %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB gesamt, %inaccessible MiB n. verfügbar
+3 -3
View File
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Πνευματική ιδ
Testing and bug triaging:\n AboutView Δοκιμές και αποσφαλμάτωση:\n Testing and bug triaging:\n AboutView Δοκιμές και αποσφαλμάτωση:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Επεξεργαστής:} other{# Επεξεργαστές:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Επεξεργαστής:} other{# Επεξεργαστές:}}
Ralink WiFi Firmware AboutWindow Υλισμικό WiFi για Ralink Ralink WiFi Firmware AboutWindow Υλισμικό WiFi για Ralink
%d MiB total AboutView %d MiB συνολικά
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Ο κώδικας που είναι μοναδικός στο Haiku, και ειδικά ο πυρήνας και όλος ο κώδικας των εφαρμογών που συνδέονται, διανέμονται υπό τους όρους της <Άδειας Χρήσης MIT>. Μερικές βιβλιοθήκες του συστήματος περιέχουν ένα μέρος κώδικα τρίτων, ο οποίος διανέμεται κάτω από την <Άδεια Χρήσης LGPL>. Μπορείτε να βρείτε τα δικαιώματα πνευματικής ιδιοκτησίας παρακάτω.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Ο κώδικας που είναι μοναδικός στο Haiku, και ειδικά ο πυρήνας και όλος ο κώδικας των εφαρμογών που συνδέονται, διανέμονται υπό τους όρους της <Άδειας Χρήσης MIT>. Μερικές βιβλιοθήκες του συστήματος περιέχουν ένα μέρος κώδικα τρίτων, ο οποίος διανέμεται κάτω από την <Άδεια Χρήσης LGPL>. Μπορείτε να βρείτε τα δικαιώματα πνευματικής ιδιοκτησίας παρακάτω.\n\n
%d MiB total AboutView %d MiB συνολικά
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1996-1997 Jeff Prosise. Με επιφύλαξη παντός δικαιώματος. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1996-1997 Jeff Prosise. Με επιφύλαξη παντός δικαιώματος.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1999-2006 Brian Paul. Mesa3D Project. Με επιφύλαξη παντός δικαιώματος. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1999-2006 Brian Paul. Mesa3D Project. Με επιφύλαξη παντός δικαιώματος.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Πνευματική ιδιοκτησία © 2010-2011 Google Inc. Με επιφύλαξη παντός δικαιώματος. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Πνευματική ιδιοκτησία © 2010-2011 Google Inc. Με επιφύλαξη παντός δικαιώματος.
@@ -52,8 +52,8 @@ Source Code: AboutView Πηγαίος Κώδικας:
\nCopyrights\n\n AboutView \nΠνευματικά δικαιώματα\n\n \nCopyrights\n\n AboutView \nΠνευματικά δικαιώματα\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Πνευματική ιδιοκτησία © 1996-2002, 2006 David Turner, Robert Wilhelm και Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Πνευματική ιδιοκτησία © 1996-2002, 2006 David Turner, Robert Wilhelm και Werner Lemberg.
The HaikuPorts team\n AboutView Η ομάδα HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Εμπεριέχει λογισμικό από το GNU Project, το οποίο έχει δημοσιευτεί με τις άδειες χρήσεις GPL και GPL:\nΒιβλιοθήκη GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nΠνευματική ιδιοκτησία © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Εμπεριέχει λογισμικό από το GNU Project, το οποίο έχει δημοσιευτεί με τις άδειες χρήσεις GPL και GPL:\nΒιβλιοθήκη GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nΠνευματική ιδιοκτησία © The Free Software Foundation.
The HaikuPorts team\n AboutView Η ομάδα HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Εμπεριέχει λογισμικό από το FreeBSD Project, το οποίο έχει δημοσιευτεί με την άδεια χρήσης BSD:\nftpd, ping, telnet, telnetd, traceroute\nΠνευματική ιδιοκτησία © 1994-2008 The FreeBSD Project. Με επιφύλαξη παντός δικαιώματος. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Εμπεριέχει λογισμικό από το FreeBSD Project, το οποίο έχει δημοσιευτεί με την άδεια χρήσης BSD:\nftpd, ping, telnet, telnetd, traceroute\nΠνευματική ιδιοκτησία © 1994-2008 The FreeBSD Project. Με επιφύλαξη παντός δικαιώματος.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Πνευματική ιδιοκτησία © 2002-2003 Steve Lhomme. Με επιφύλαξη παντός δικαιώματος. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Πνευματική ιδιοκτησία © 2002-2003 Steve Lhomme. Με επιφύλαξη παντός δικαιώματος.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Πνευματική ιδιοκτησία © 2000-2019 Fabrice Bellard, κλπ. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Πνευματική ιδιοκτησία © 2000-2019 Fabrice Bellard, κλπ.
@@ -64,8 +64,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Έκδοση: Version: AboutView Έκδοση:
The BeGeistert team\n AboutView Η ομάδα BeGeistert\n The BeGeistert team\n AboutView Η ομάδα BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Άδεια Χρήσης:
Intel (2xxx firmware) AboutWindow Υλισμικό WiFi για Intel (2xxx) Intel (2xxx firmware) AboutWindow Υλισμικό WiFi για Intel (2xxx)
License: AboutView Άδεια Χρήσης:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Το πανεπιστήμιο του Auckland και ο Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Το πανεπιστήμιο του Auckland και ο Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB συνολικά, %inaccessible MiB μη χρησιμοποιούμενα %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB συνολικά, %inaccessible MiB μη χρησιμοποιούμενα
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Pasinteca retpaĝaro & merkatado:\n
Copyright © 2003 Peter Hanappe and others. AboutView Kopirajto © 2003 Peter Hanappe kaj aliaj. Copyright © 2003 Peter Hanappe and others. AboutView Kopirajto © 2003 Peter Hanappe kaj aliaj.
Testing and bug triaging:\n AboutView Testado kaj selektado de cimoj:\n Testing and bug triaging:\n AboutView Testado kaj selektado de cimoj:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesoro:} other{# Procesoroj:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesoro:} other{# Procesoroj:}}
%d MiB total AboutView %d MiB sume
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. La unika kodo de la Hajko, precipe la kerno kaj ĉiu kodo al kiu programoj povas ligiĝi, estas disdonata per la kondiĉoj de la <MIT permisilo>. Iom da sistemaj kodotekoj enhavas eksteran kodon disdonatan per la kondiĉoj de la <LGPL permisilo>. Vi povas trovi la kopirajtojn por ekstera kodo sube.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. La unika kodo de la Hajko, precipe la kerno kaj ĉiu kodo al kiu programoj povas ligiĝi, estas disdonata per la kondiĉoj de la <MIT permisilo>. Iom da sistemaj kodotekoj enhavas eksteran kodon disdonatan per la kondiĉoj de la <LGPL permisilo>. Vi povas trovi la kopirajtojn por ekstera kodo sube.\n\n
%d MiB total AboutView %d MiB sume
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Kopirajto © 1996-1997 Jeff Prosise. Ĉiuj rajtoj estas rezervitaj. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Kopirajto © 1996-1997 Jeff Prosise. Ĉiuj rajtoj estas rezervitaj.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Kopirajto © 1999-2006 Brian Paul. Mesa3D Project. Ĉiuj rajtoj estas rezervitaj. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Kopirajto © 1999-2006 Brian Paul. Mesa3D Project. Ĉiuj rajtoj estas rezervitaj.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Kopirajto © 2010-2011 Google Inc. Ĉiuj rajtoj estas rezervitaj. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Kopirajto © 2010-2011 Google Inc. Ĉiuj rajtoj estas rezervitaj.
@@ -47,8 +47,8 @@ Source Code: AboutView Fontkodo:
\nCopyrights\n\n AboutView \nKopirajtoj\n\n \nCopyrights\n\n AboutView \nKopirajtoj\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Kopirajto © 1996-2002, 2006 David Turner, Robert Wilhelm kaj Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Kopirajto © 1996-2002, 2006 David Turner, Robert Wilhelm kaj Werner Lemberg.
The HaikuPorts team\n AboutView La HaikuPorts teamo\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enhavas programaron de la GNU Project, eldonita per la GPL kaj LGPL permisiloj:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nKopirajto © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enhavas programaron de la GNU Project, eldonita per la GPL kaj LGPL permisiloj:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nKopirajto © The Free Software Foundation.
The HaikuPorts team\n AboutView La HaikuPorts teamo\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Enhavas programaron de la FreeBSD Project, eldonita per la BSD permisilo:\nftpd, ping, telnet, telnetd, traceroute\nKopirajto © 1994-2008 The FreeBSD Project. Ĉiuj rajtoj estas rezervitaj. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Enhavas programaron de la FreeBSD Project, eldonita per la BSD permisilo:\nftpd, ping, telnet, telnetd, traceroute\nKopirajto © 1994-2008 The FreeBSD Project. Ĉiuj rajtoj estas rezervitaj.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Kopirajto © 2002-2003 Steve Lhomme. Ĉiuj rajtoj estas rezervitaj. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Kopirajto © 2002-2003 Steve Lhomme. Ĉiuj rajtoj estas rezervitaj.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Kopirajto © 2000-2019 Fabrice Bellard, k.a. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Kopirajto © 2000-2019 Fabrice Bellard, k.a.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Antiguo sitio web y marketing:\n
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe y otros. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe y otros.
Testing and bug triaging:\n AboutView Pruebas y evaluación inicial de errores:\n Testing and bug triaging:\n AboutView Pruebas y evaluación inicial de errores:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}}
%d MiB total AboutView %d MiB en total
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. El código que es único en Haiku, especialmente el núcleo y todo el código al que las aplicaciones se pueden enlazar, se distribuye bajo los términos de la <MIT license>. Algunas bibliotecas de sistema contienen código de terceros distribuido bajo la <LGPL license>. Se pueden encontrar las leyendas de derechos reservados de terceros en el código debajo.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. El código que es único en Haiku, especialmente el núcleo y todo el código al que las aplicaciones se pueden enlazar, se distribuye bajo los términos de la <MIT license>. Algunas bibliotecas de sistema contienen código de terceros distribuido bajo la <LGPL license>. Se pueden encontrar las leyendas de derechos reservados de terceros en el código debajo.\n\n
%d MiB total AboutView %d MiB en total
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Todos los derechos reservados. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Todos los derechos reservados.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Todos los derechos reservados. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Todos los derechos reservados.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Todos los derechos reservados. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Todos los derechos reservados.
@@ -48,8 +48,8 @@ Source Code: AboutView Código fuente:
\nCopyrights\n\n AboutView \nDerechos de autor\n\n \nCopyrights\n\n AboutView \nDerechos de autor\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm y Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm y Werner Lemberg.
The HaikuPorts team\n AboutView El equipo de HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contiene software del Proyecto GNU, liberado bajo las licencias GPL y LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contiene software del Proyecto GNU, liberado bajo las licencias GPL y LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView El equipo de HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contiene software del Proyecto FreeBSD, liberado bajo la licencia BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Todos los derechos reservados. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contiene software del Proyecto FreeBSD, liberado bajo la licencia BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Todos los derechos reservados.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Todos los derechos reservados. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Todos los derechos reservados.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard y otros. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard y otros.
+3 -3
View File
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Testaus ja vikojenlajittelu:\n Testing and bug triaging:\n AboutView Testaus ja vikojenlajittelu:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{prosessori:} other{# prosessoria:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{prosessori:} other{# prosessoria:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi-laiteohjelma Ralink WiFi Firmware AboutWindow Ralink WiFi-laiteohjelma
%d MiB total AboutView %d mebitavua yhteensä
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koodi, joka on uniikkia Haikulle, erityisesti ydinkoodi ja kaikki koodi, johon sovellukset linkittyvät, jaetaan <MIT license>-lisenssin ehtojen mukaisesti. Jotkut järjestelmäkirjastot sisältävät kolmannen osapuolen koodia, joka jaetaan <LGPL license>-lisenssin alaisena. Voit löytää kolmannen osapuolen koodin copyrights-tiedot alla.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koodi, joka on uniikkia Haikulle, erityisesti ydinkoodi ja kaikki koodi, johon sovellukset linkittyvät, jaetaan <MIT license>-lisenssin ehtojen mukaisesti. Jotkut järjestelmäkirjastot sisältävät kolmannen osapuolen koodia, joka jaetaan <LGPL license>-lisenssin alaisena. Voit löytää kolmannen osapuolen koodin copyrights-tiedot alla.\n\n
%d MiB total AboutView %d mebitavua yhteensä
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Kaikki oikeudet pidätetty. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Kaikki oikeudet pidätetty.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D-hanke. Kaikki oikeudet pidätetty. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D-hanke. Kaikki oikeudet pidätetty.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Kaikki oikeudet pidätetty. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Kaikki oikeudet pidätetty.
@@ -52,8 +52,8 @@ Source Code: AboutView Lähdekoodi:
\nCopyrights\n\n AboutView \nTekijänoikeudet\n\n \nCopyrights\n\n AboutView \nTekijänoikeudet\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm ja Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm ja Werner Lemberg.
The HaikuPorts team\n AboutView HaikuPorts -ryhmä\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Sisältää GNU-projektista ohjelmistoa, joka on julkaistu GPL- ja LGPL-lisenssien alaisena:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Sisältää GNU-projektista ohjelmistoa, joka on julkaistu GPL- ja LGPL-lisenssien alaisena:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView HaikuPorts -ryhmä\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Sisältää ohjelmistoa FreeBSD-projektista, joka on julkaistu BSD-lisenssin alaisena:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Kaikki oikeudet pidätetty. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Sisältää ohjelmistoa FreeBSD-projektista, joka on julkaistu BSD-lisenssin alaisena:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Kaikki oikeudet pidätetty.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Kaikki oikeudet pidätetty. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Kaikki oikeudet pidätetty.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +64,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Versio: Version: AboutView Versio:
The BeGeistert team\n AboutView BeGeistert-ryhmä\n The BeGeistert team\n AboutView BeGeistert-ryhmä\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Lisenssi:
Intel (2xxx firmware) AboutWindow Intel (2xxx-laiteohjelma) Intel (2xxx firmware) AboutWindow Intel (2xxx-laiteohjelma)
License: AboutView Lisenssi:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Aucklandin yliopisto ja Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Aucklandin yliopisto ja Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total mebitavua yhteensä, %inaccessible mebitavua saavuttamaton %total MiB total, %inaccessible MiB inaccessible AboutView %total mebitavua yhteensä, %inaccessible mebitavua saavuttamaton
+8 -3
View File
@@ -1,4 +1,4 @@
1 french x-vnd.Haiku-About 1904062188 1 french x-vnd.Haiku-About 2259131995
Revision AboutView Révision Revision AboutView Révision
The Haikuware team and their bounty program\n AboutView L’équipe Haikuware et son programme de récompenses\n The Haikuware team and their bounty program\n AboutView L’équipe Haikuware et son programme de récompenses\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tous droits réservés. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tous droits réservés.
@@ -18,8 +18,9 @@ Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe et dautres. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe et dautres.
Testing and bug triaging:\n AboutView Tests et tri des bugs :\n Testing and bug triaging:\n AboutView Tests et tri des bugs :\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processeur :} other{# Processeurs :}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processeur :} other{# Processeurs :}}
%d MiB total AboutView %d Mio au total Ralink WiFi Firmware AboutWindow Micrologiciel WiFi Ralink
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Le code source spécifique à Haiku, en particulier, celui du noyau et des applications liées, est distribué suivant les termes de la <licence MIT>. Quelques librairies systèmes contiennent du code tiers, distribué sous <licence LGPL>. Vous pouvez trouver les copyrights de ce code ci-dessous.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Le code source spécifique à Haiku, en particulier, celui du noyau et des applications liées, est distribué suivant les termes de la <licence MIT>. Quelques librairies systèmes contiennent du code tiers, distribué sous <licence LGPL>. Vous pouvez trouver les copyrights de ce code ci-dessous.\n\n
%d MiB total AboutView %d Mio au total
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tous droits réservés. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tous droits réservés.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Le Projet Mesa3D. Tous droits réservés. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Le Projet Mesa3D. Tous droits réservés.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tous droits réservés. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tous droits réservés.
@@ -37,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ce logiciel est basé en partie sur le travail de lIndependent JPEG Group. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ce logiciel est basé en partie sur le travail de lIndependent JPEG Group.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondateur du projet)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondateur du projet)\n\n
Remove replicant AboutView Enlever le réplicant
BSD (3-clause) AboutWindow BSD (3-clauses) BSD (3-clause) AboutWindow BSD (3-clauses)
About this system AboutWindow À propos de ce système About this system AboutWindow À propos de ce système
%d MiB used (%d%%) AboutView %d Mio utilisés (%d%%) %d MiB used (%d%%) AboutView %d Mio utilisés (%d%%)
@@ -51,17 +53,19 @@ Source Code: AboutView Code Source :
\nCopyrights\n\n AboutView \nDroits dauteurs\n\n \nCopyrights\n\n AboutView \nDroits dauteurs\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm et Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm et Werner Lemberg.
The HaikuPorts team\n AboutView L’équipe de HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contient les logiciels du Project GNU, publiés sous licences GPL ou LGPL :\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © La Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contient les logiciels du Project GNU, publiés sous licences GPL ou LGPL :\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © La Free Software Foundation.
The HaikuPorts team\n AboutView L’équipe de HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contient des logiciels du projet FreeBSD, publiés sous licence BSD :\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Tout droits réservés. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contient des logiciels du projet FreeBSD, publiés sous licence BSD :\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Tout droits réservés.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Tous droits réservés. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Tous droits réservés.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
Current maintainers:\n AboutView Développeurs actuels :\n Current maintainers:\n AboutView Développeurs actuels :\n
Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Tous droits réservés. Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Tous droits réservés.
Intel WiFi Firmware AboutWindow Micrologiciel WiFi Intel
Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Tous droits réservés. Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Tous droits réservés.
Version: AboutView Version : Version: AboutView Version :
The BeGeistert team\n AboutView L’équipe BeGeistert\n The BeGeistert team\n AboutView L’équipe BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
Intel (2xxx firmware) AboutWindow Micrologiciel Intel 2xxx
License: AboutView Licence : License: AboutView Licence :
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Luniversité dAuckland et Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Luniversité dAuckland et Christof Lutteroth\n\n
@@ -80,5 +84,6 @@ BSD (2-clause) AboutWindow BSD (2-clauses)
Website & marketing:\n AboutView Site web et mercatique :\n Website & marketing:\n AboutView Site web et mercatique :\n
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 par Andy Ritger selon la « Generalized Timing Formula » 2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 par Andy Ritger selon la « Generalized Timing Formula »
…and the many people making donations!\n\n AboutView …et nos nombreux donateurs !\n\n …and the many people making donations!\n\n AboutView …et nos nombreux donateurs !\n\n
Marvell (firmware) AboutWindow Micrologiciel Marvell
BSD (4-clause) AboutWindow BSD (4-clauses) BSD (4-clause) AboutWindow BSD (4-clauses)
BITSTREAM CHARTER is a registered trademark of Bitstream Inc. AboutView BITSTREAM CHARTER est une marque déposée de Bitstream Inc. BITSTREAM CHARTER is a registered trademark of Bitstream Inc. AboutView BITSTREAM CHARTER est une marque déposée de Bitstream Inc.
+5 -4
View File
@@ -1,4 +1,4 @@
1 friulian x-vnd.Haiku-About 610468518 1 friulian x-vnd.Haiku-About 2259131995
Revision AboutView Revision Revision AboutView Revision
The Haikuware team and their bounty program\n AboutView Il grup Haikuware e il lôr program di premiazion\n The Haikuware team and their bounty program\n AboutView Il grup Haikuware e il lôr program di premiazion\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Ducj i dirits riservâts. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Ducj i dirits riservâts.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Provis e analisi dai erôrs:\n Testing and bug triaging:\n AboutView Provis e analisi dai erôrs:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processôr:} other{# Processôrs:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processôr:} other{# Processôrs:}}
Ralink WiFi Firmware AboutWindow Firmware WiFi Ralink Ralink WiFi Firmware AboutWindow Firmware WiFi Ralink
%d MiB total AboutView %d MiB totâi
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Il codiç disvilupât apueste par Haiku, soredut il kernel e dut il codiç che al pues jessi colegât des aplicazions, al è distribuît secont i tiermins de <licence MIT>. Cualchi librarie di sisteme e conten codiç di tiercis parts, distribuît sot <licence LGPL>. Si pues cjatâ i copyright dal codiç des tiercis parts chi sot.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Il codiç disvilupât apueste par Haiku, soredut il kernel e dut il codiç che al pues jessi colegât des aplicazions, al è distribuît secont i tiermins de <licence MIT>. Cualchi librarie di sisteme e conten codiç di tiercis parts, distribuît sot <licence LGPL>. Si pues cjatâ i copyright dal codiç des tiercis parts chi sot.\n\n
%d MiB total AboutView %d MiB totâi
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Ducj i dirits riservâts. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Ducj i dirits riservâts.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Ducj i dirits riservâts. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Ducj i dirits riservâts.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Ducj i dirits riservâts. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Ducj i dirits riservâts.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Chest software al è basât in part sul lavôr dal Independent JPEG Group. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Chest software al è basât in part sul lavôr dal Independent JPEG Group.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondadôr dal progjet)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondadôr dal progjet)\n\n
Remove replicant AboutView Gjave replicant
BSD (3-clause) AboutWindow BSD (3-clausulis) BSD (3-clause) AboutWindow BSD (3-clausulis)
About this system AboutWindow Informazions su chest sisteme About this system AboutWindow Informazions su chest sisteme
%d MiB used (%d%%) AboutView %d MiB doprâts (%d%%) %d MiB used (%d%%) AboutView %d MiB doprâts (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView Codiç sorzint:
\nCopyrights\n\n AboutView \nCopyright\n\n \nCopyrights\n\n AboutView \nCopyright\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg.
The HaikuPorts team\n AboutView Il grup di HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Al conten software che al ven dal Progjet GNU, publicât sot licence GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Al conten software che al ven dal Progjet GNU, publicât sot licence GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Il grup di HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Al conten software che al ven dal Progjet FreeBSD, publicât sot licence BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 The FreeBSD Project. Ducj i dirits riservâts. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Al conten software che al ven dal Progjet FreeBSD, publicât sot licence BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 The FreeBSD Project. Ducj i dirits riservâts.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Ducj i dirits riservâts. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Ducj i dirits riservâts.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Version: Version: AboutView Version:
The BeGeistert team\n AboutView Il grup BeGeistert\n The BeGeistert team\n AboutView Il grup BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v.21 GNU LGPL v2.1 AboutWindow GNU LGPL v.21
License: AboutView Licence:
Intel (2xxx firmware) AboutWindow Intel (firmware 2xxx) Intel (2xxx firmware) AboutWindow Intel (firmware 2xxx)
License: AboutView Licence:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView La universitât di Auckland e Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView La universitât di Auckland e Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totâi, %inaccessible MiB inacessibii %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totâi, %inaccessible MiB inacessibii
+2 -2
View File
@@ -14,8 +14,8 @@ Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Au
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Autorska prava © 1990-2002 Info-ZIP. Sva prava pridržana. Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Autorska prava © 1990-2002 Info-ZIP. Sva prava pridržana.
Past website & marketing:\n AboutView Bivša web stranica & marketing:\n Past website & marketing:\n AboutView Bivša web stranica & marketing:\n
Copyright © 2003 Peter Hanappe and others. AboutView Autorska prava © 2003 Peter Hanappe i ostali. Copyright © 2003 Peter Hanappe and others. AboutView Autorska prava © 2003 Peter Hanappe i ostali.
%d MiB total AboutView %d MiB ukupno
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kod koji je jedinstven za Haiku, posebno kernel i sav kod sa kojim su povezani programi, distribuiraju se pod uvjetima <MIT license>. Neke biblioteke sustava sadrže kod trće strane distribuiran pod <LGPL licencom>. Autorska prava za kod treće strane možete naći ispod.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kod koji je jedinstven za Haiku, posebno kernel i sav kod sa kojim su povezani programi, distribuiraju se pod uvjetima <MIT license>. Neke biblioteke sustava sadrže kod trće strane distribuiran pod <LGPL licencom>. Autorska prava za kod treće strane možete naći ispod.\n\n
%d MiB total AboutView %d MiB ukupno
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Autorska prava © 1996-1997 Jeff Prosise. Sva prava pridržana. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Autorska prava © 1996-1997 Jeff Prosise. Sva prava pridržana.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Autorska prava © 1999-2006 Brian Paul. Mesa3D projekt. Sva prava pridržana. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Autorska prava © 1999-2006 Brian Paul. Mesa3D projekt. Sva prava pridržana.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Autorska prava © 2010-2011 Google Inc. Sva prava pridržana. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Autorska prava © 2010-2011 Google Inc. Sva prava pridržana.
@@ -43,8 +43,8 @@ Source Code: AboutView Izvorni kod:
\nCopyrights\n\n AboutView \nAutorska prava\n\n \nCopyrights\n\n AboutView \nAutorska prava\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Autorska prava © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Autorska prava © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView Haiku-Ports tim\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Sadrži software iz GNU Projecta, objavljenog pod GPL i LGPL licencama:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nAutorska prava © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Sadrži software iz GNU Projecta, objavljenog pod GPL i LGPL licencama:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nAutorska prava © The Free Software Foundation.
The HaikuPorts team\n AboutView Haiku-Ports tim\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Sadrži software iz FreeBSD Projekta, objavljenog pod the BSD licencom:\nftpd, ping, telnet, telnetd, traceroute\nAutorska prava © 1994-2008 The FreeBSD Project. Sva prava pridržana. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Sadrži software iz FreeBSD Projekta, objavljenog pod the BSD licencom:\nftpd, ping, telnet, telnetd, traceroute\nAutorska prava © 1994-2008 The FreeBSD Project. Sva prava pridržana.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Autorska prava © 2002-2003 Steve Lhomme. Sva prava pridržana. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Autorska prava © 2002-2003 Steve Lhomme. Sva prava pridržana.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Autorska prava © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Autorska prava © 2000-2019 Fabrice Bellard, et al.
+5 -4
View File
@@ -1,4 +1,4 @@
1 hungarian x-vnd.Haiku-About 610468518 1 hungarian x-vnd.Haiku-About 2259131995
Revision AboutView kiadás: Revision AboutView kiadás:
The Haikuware team and their bounty program\n AboutView A Haikuware csapatának és az adományprogramjuknak\n The Haikuware team and their bounty program\n AboutView A Haikuware csapatának és az adományprogramjuknak\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Minden jog fenntartva. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Minden jog fenntartva.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Tesztelés és hibakeresés:\n Testing and bug triaging:\n AboutView Tesztelés és hibakeresés:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processzor:} other{# processzor:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processzor:} other{# processzor:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware
%d MiB total AboutView %d MiB összesen
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Minden egyedi kód a Haikuban, különösen a kernel és azon kódrészletek, amelyek csatolva vannak programokhoz, az <MIT licenc> alatt érhetőek el. Néhány funkciótár tartalmaz harmadik féltől származó kódot, ezek az <LGPL licenc> alatt érhetőek el. A harmadik felekre vonatkozó szerzői jogok alább találhatóak.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Minden egyedi kód a Haikuban, különösen a kernel és azon kódrészletek, amelyek csatolva vannak programokhoz, az <MIT licenc> alatt érhetőek el. Néhány funkciótár tartalmaz harmadik féltől származó kódot, ezek az <LGPL licenc> alatt érhetőek el. A harmadik felekre vonatkozó szerzői jogok alább találhatóak.\n\n
%d MiB total AboutView %d MiB összesen
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Minden jog fenntartva. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Minden jog fenntartva.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Minden jog fenntartva. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Minden jog fenntartva.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Minden jog fenntartva. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Minden jog fenntartva.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ez a szoftver részben a Independent JPEG Group munkáján alapszik. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ez a szoftver részben a Independent JPEG Group munkáján alapszik.
Michael Phipps (project founder)\n\n AboutView Michael Phippsnek (projektalapító)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phippsnek (projektalapító)\n\n
Remove replicant AboutView Replikáns eltávolítása
BSD (3-clause) AboutWindow BSD (3-clause) BSD (3-clause) AboutWindow BSD (3-clause)
About this system AboutWindow Haiku névjegye About this system AboutWindow Haiku névjegye
%d MiB used (%d%%) AboutView %d MiB használt (%d%%) %d MiB used (%d%%) AboutView %d MiB használt (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView Forráskód:
\nCopyrights\n\n AboutView \nSzerzői jogok\n\n \nCopyrights\n\n AboutView \nSzerzői jogok\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm és Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm és Werner Lemberg.
The HaikuPorts team\n AboutView A HaikuPorts csapatának\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView GNU Project által készített, GPL és LGPL engedéllyel kiadott programok:\n GNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\n Copyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView GNU Project által készített, GPL és LGPL engedéllyel kiadott programok:\n GNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\n Copyright © The Free Software Foundation.
The HaikuPorts team\n AboutView A HaikuPorts csapatának\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView FreeBSD Project szoftverei BSD license-el:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Minden jog fenntartva. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView FreeBSD Project szoftverei BSD license-el:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Minden jog fenntartva.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Minden jog fenntartva. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Minden jog fenntartva.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Verzió: Version: AboutView Verzió:
The BeGeistert team\n AboutView A BeGeistert csapatának\n The BeGeistert team\n AboutView A BeGeistert csapatának\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Licenc:
Intel (2xxx firmware) AboutWindow Intel (2xxx firmware) Intel (2xxx firmware) AboutWindow Intel (2xxx firmware)
License: AboutView Licenc:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Az Aucklandi Egyetem és Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Az Aucklandi Egyetem és Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB összesen, %inaccessible MiB nem használható %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB összesen, %inaccessible MiB nem használható
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Laman terdahulu & marketing:\n
Copyright © 2003 Peter Hanappe and others. AboutView Hak Cipta © 2003 Peter Hanappe dan lainnya. Copyright © 2003 Peter Hanappe and others. AboutView Hak Cipta © 2003 Peter Hanappe dan lainnya.
Testing and bug triaging:\n AboutView Pengujian dan triase bug:\n Testing and bug triaging:\n AboutView Pengujian dan triase bug:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}}
%d MiB total AboutView total %d MiB
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kode yang unik untuk Haiku, terutama kernel dan semua kode yang aplikasi dapat terhubung dengannya, didistribusikan di bawah ketentuan <MIT license>. Beberapa sistem pustaka berisi kode pihak ketiga didistribusikan di bawah <LGPL lisensi>. Anda dapat menemukan hak cipta untuk kode pihak ketiga di bawah.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kode yang unik untuk Haiku, terutama kernel dan semua kode yang aplikasi dapat terhubung dengannya, didistribusikan di bawah ketentuan <MIT license>. Beberapa sistem pustaka berisi kode pihak ketiga didistribusikan di bawah <LGPL lisensi>. Anda dapat menemukan hak cipta untuk kode pihak ketiga di bawah.\n\n
%d MiB total AboutView total %d MiB
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Hak Cipta © 1996-1997 Jeff Prosise. Hak cipta dilindungi undang-undang. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Hak Cipta © 1996-1997 Jeff Prosise. Hak cipta dilindungi undang-undang.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Hak Cipta © 1999-2006 Brian Paul. Proyek Mesa3D. Hak cipta dilindungi undang-undang. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Hak Cipta © 1999-2006 Brian Paul. Proyek Mesa3D. Hak cipta dilindungi undang-undang.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Hak cipta © 2010-2011 Google Inc. Hak cipta dilindungi undang-undang. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Hak cipta © 2010-2011 Google Inc. Hak cipta dilindungi undang-undang.
@@ -48,8 +48,8 @@ Source Code: AboutView Kode sumber:
\nCopyrights\n\n AboutView \nHak cipta\n\n \nCopyrights\n\n AboutView \nHak cipta\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Hak cipta © 1996-2002, 2006 David Turner, Robert Wilhelm dan Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Hak cipta © 1996-2002, 2006 David Turner, Robert Wilhelm dan Werner Lemberg.
The HaikuPorts team\n AboutView Tim HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Berisi perangkat lunak dari GNU Project, dirilis di bawah GPL dan lisensi LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, melongo, bison, m4, membuat, wget, ncurses, termcap, Bourne Again Shell.\nHak Cipta © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Berisi perangkat lunak dari GNU Project, dirilis di bawah GPL dan lisensi LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, melongo, bison, m4, membuat, wget, ncurses, termcap, Bourne Again Shell.\nHak Cipta © The Free Software Foundation.
The HaikuPorts team\n AboutView Tim HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Berisi perangkat lunak dari FreeBSD Project, dirilis di bawah lisensi BSD:\nftpd, ping, telnet, telnetd, traceroute\nHak Cipta © 1994-2008 The FreeBSD Project. Hak cipta dilindungi undang-undang. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Berisi perangkat lunak dari FreeBSD Project, dirilis di bawah lisensi BSD:\nftpd, ping, telnet, telnetd, traceroute\nHak Cipta © 1994-2008 The FreeBSD Project. Hak cipta dilindungi undang-undang.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Hak Cipta © 2002-2003 Steve Lhomme. Hak cipta dilindungi undang-undang. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Hak Cipta © 2002-2003 Steve Lhomme. Hak cipta dilindungi undang-undang.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Hak Cipta © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Hak Cipta © 2000-2019 Fabrice Bellard, et al.
+14 -3
View File
@@ -1,8 +1,9 @@
1 italian x-vnd.Haiku-About 1839294148 1 italian x-vnd.Haiku-About 610468518
Revision AboutView Revisione Revision AboutView Revisione
The Haikuware team and their bounty program\n AboutView Il gruppo di Haikuware e il loro programma di bounty\n The Haikuware team and their bounty program\n AboutView Il gruppo di Haikuware e il loro programma di bounty\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tutti i diritti riservati. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tutti i diritti riservati.
%.2f GHz AboutView %.2f GHz %.2f GHz AboutView %.2f GHz
Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Tutti i diritti riservati.
\n\nSpecial thanks to:\n AboutView \n\nRingraziamenti speciali a:\n \n\nSpecial thanks to:\n AboutView \n\nRingraziamenti speciali a:\n
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (e il suo kernel NewOS)\n Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (e il suo kernel NewOS)\n
Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Tutti i diritti riservati. Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Tutti i diritti riservati.
@@ -13,11 +14,13 @@ Copyright © 2006-2012 Kentaro Fukuchi AboutView Copyright © 2006-2012 Kentaro
Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Tutti i diritti riservati. Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Tutti i diritti riservati.
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Tutti i diritti riservati. Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Tutti i diritti riservati.
Past website & marketing:\n AboutView Versione precedente del sito e promozione:\n Past website & marketing:\n AboutView Versione precedente del sito e promozione:\n
Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Tutti i diritti riservati.
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe e altri. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe e altri.
Testing and bug triaging:\n AboutView Test e selezione dei bug:\n Testing and bug triaging:\n AboutView Test e selezione dei bug:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processore:} other{# Processori:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processore:} other{# Processori:}}
%d MiB total AboutView %d MiB totali Ralink WiFi Firmware AboutWindow Firmware del WiFi Ralink
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Il codice sviluppato appositamente per Haiku, in particolare il Kernel e tutto il codice che può essere utilizzato dalle applicazioni tramite procedure di linking, è distribuito secondo i termini della <licenza MIT>. Alcune librerie di sistema contengono codice di terze parti distribuito sotto <licenza LGPL>. Il copyright del codice di terze parti è riportato di seguito.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Il codice sviluppato appositamente per Haiku, in particolare il Kernel e tutto il codice che può essere utilizzato dalle applicazioni tramite procedure di linking, è distribuito secondo i termini della <licenza MIT>. Alcune librerie di sistema contengono codice di terze parti distribuito sotto <licenza LGPL>. Il copyright del codice di terze parti è riportato di seguito.\n\n
%d MiB total AboutView %d MiB totali
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tutti i diritti riservati. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Tutti i diritti riservati.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Tutti i diritti riservati. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Tutti i diritti riservati.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tutti i diritti riservati. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Tutti i diritti riservati.
@@ -38,30 +41,36 @@ Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondatore del pr
BSD (3-clause) AboutWindow BSD (3 clausole) BSD (3-clause) AboutWindow BSD (3 clausole)
About this system AboutWindow Informazioni su questo sistema About this system AboutWindow Informazioni su questo sistema
%d MiB used (%d%%) AboutView %d MiB utilizzati (%d%%) %d MiB used (%d%%) AboutView %d MiB utilizzati (%d%%)
Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Tutti i diritti riservati.
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 autori di Gutenprint. Tutti i diritti riservati. Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 autori di Gutenprint. Tutti i diritti riservati.
Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Tutti i diritti riservati. Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Tutti i diritti riservati.
AboutSystem System name Informazioni su Haiku AboutSystem System name Informazioni su Haiku
Copyright © 2019 Joe Drago. All rights reserved. AboutView Copyright © 2019 Joe Drago. Tutti i diritti riservati.
Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Tutti i diritti riservati. Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Tutti i diritti riservati.
Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd e Clark Cooper. Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd e Clark Cooper.
Source Code: AboutView Codice sorgente: Source Code: AboutView Codice sorgente:
\nCopyrights\n\n AboutView \nCopyright\n\n \nCopyrights\n\n AboutView \nCopyright\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg.
The HaikuPorts team\n AboutView Il gruppo che si occupa di HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contiene software proveniente dal Progetto GNU, rilasciato sotto licenza GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contiene software proveniente dal Progetto GNU, rilasciato sotto licenza GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Il gruppo che si occupa di HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contiene software proveniente dal Progetto FreeBSD, rilasciato sotto licenza BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 The FreeBSD Project. Tutti i diritti riservati. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contiene software proveniente dal Progetto FreeBSD, rilasciato sotto licenza BSD:\nftpd, ping, telnet, telnetd, traceroute.\nCopyright © 1994-2008 The FreeBSD Project. Tutti i diritti riservati.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © Steve Lhomme. Tutti i diritti riservati. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © Steve Lhomme. Tutti i diritti riservati.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
Current maintainers:\n AboutView Team di sviluppo attuale:\n Current maintainers:\n AboutView Team di sviluppo attuale:\n
Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Tutti i diritti riservati. Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Tutti i diritti riservati.
Intel WiFi Firmware AboutWindow Firmware WiFi della Intel
Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Tutti i diritti riservati.
Version: AboutView Versione: Version: AboutView Versione:
The BeGeistert team\n AboutView Il gruppo che organizza i BeGeistert\n The BeGeistert team\n AboutView Il gruppo che organizza i BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v.21 GNU LGPL v2.1 AboutWindow GNU LGPL v.21
Intel (2xxx firmware) AboutWindow Firmware 2xxx della Intel
License: AboutView Licenza: License: AboutView Licenza:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView L'Università di Auckland e Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView L'Università di Auckland e Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totali, %inaccessible MiB inaccessibili %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totali, %inaccessible MiB inaccessibili
Copyright © 2012-2016 Google Internationalization team. AboutView Copyright © 2012-2016 team Google Internationalization. Copyright © 2012-2016 Google Internationalization team. AboutView Copyright © 2012-2016 team Google Internationalization.
Copyright © 2001-%ld The Haiku project. AboutView Copyright © 2001-%ld Progetto Haiku.
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Tutti i diritti riservati. Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Tutti i diritti riservati.
Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly e Mark Adler. Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly e Mark Adler.
Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 manutentori di Expat. Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 manutentori di Expat.
@@ -69,9 +78,11 @@ Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2
Translations:\n AboutView Traduzioni:\n Translations:\n AboutView Traduzioni:\n
Memory: AboutView Memoria: Memory: AboutView Memoria:
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…e molti altri che non abbiamo avuto modo di citare (vi preghiamo di perdonarci!)\n\n \n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…e molti altri che non abbiamo avuto modo di citare (vi preghiamo di perdonarci!)\n\n
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Tutti i diritti riervati.
BSD (2-clause) AboutWindow BSD (2-clause) BSD (2-clause) AboutWindow BSD (2-clause)
Website & marketing:\n AboutView Sito e promozione:\n Website & marketing:\n AboutView Sito e promozione:\n
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basato sulla Generalized Timing Formula 2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basato sulla Generalized Timing Formula
…and the many people making donations!\n\n AboutView …e le tantissime persone che hanno supportato il progetto con le loro donazioni!\n\n …and the many people making donations!\n\n AboutView …e le tantissime persone che hanno supportato il progetto con le loro donazioni!\n\n
Marvell (firmware) AboutWindow Firmware della Marvell
BSD (4-clause) AboutWindow BSD (4-clause) BSD (4-clause) AboutWindow BSD (4-clause)
BITSTREAM CHARTER is a registered trademark of Bitstream Inc. AboutView BITSTREAM CHARTER è un marchio registrato di Bitstream Inc. BITSTREAM CHARTER is a registered trademark of Bitstream Inc. AboutView BITSTREAM CHARTER è un marchio registrato di Bitstream Inc.
+5 -4
View File
@@ -1,4 +1,4 @@
1 japanese x-vnd.Haiku-About 610468518 1 japanese x-vnd.Haiku-About 2259131995
Revision AboutView リビジョン Revision AboutView リビジョン
The Haikuware team and their bounty program\n AboutView Haikuware チーム&報奨金プログラム\n The Haikuware team and their bounty program\n AboutView Haikuware チーム&報奨金プログラム\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView テストとバグの分別:\n Testing and bug triaging:\n AboutView テストとバグの分別:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{プロセッサ:} other{#プロセッサ:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{プロセッサ:} other{#プロセッサ:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi ファームウェア Ralink WiFi Firmware AboutWindow Ralink WiFi ファームウェア
%d MiB total AboutView 合計 %d MiB
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku 独自のコード、特にカーネルと、アプリケーションがリンクするすべてのコードは <MITライセンス> で配布されています。いくつかのシステムライブラリは、<LGPLライセンス> で配布されているサードパーティのコードも含まれています。サードパーティのライセンスは以下で見つけられます。\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku 独自のコード、特にカーネルと、アプリケーションがリンクするすべてのコードは <MITライセンス> で配布されています。いくつかのシステムライブラリは、<LGPLライセンス> で配布されているサードパーティのコードも含まれています。サードパーティのライセンスは以下で見つけられます。\n\n
%d MiB total AboutView 合計 %d MiB
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. All rights reserved. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. All rights reserved.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyrigh
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. このソフトウェアの一部はIndependent JPEG Groupの著作物に基づいています. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. このソフトウェアの一部はIndependent JPEG Groupの著作物に基づいています.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (プロジェクト創立者)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (プロジェクト創立者)\n\n
Remove replicant AboutView レプリカントを除去
BSD (3-clause) AboutWindow BSD (三条項) BSD (3-clause) AboutWindow BSD (三条項)
About this system AboutWindow このシステムについて About this system AboutWindow このシステムについて
%d MiB used (%d%%) AboutView %d MiB 使用中 (%d%%) %d MiB used (%d%%) AboutView %d MiB 使用中 (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView ソースコード:
\nCopyrights\n\n AboutView \n著作権\n\n \nCopyrights\n\n AboutView \n著作権\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView HaikuPorts チーム\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView 以下のGNUプロジェクトからのソフトウェアを含んでいます。それらは GPL および LGPL ライセンスでリリースされています。\nGNU C Library、GNU coretools、diffutils、findutils、sharutils、gawk、bison、m4、make、wget、ncurses、termcap、Bourne Again Shell\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView 以下のGNUプロジェクトからのソフトウェアを含んでいます。それらは GPL および LGPL ライセンスでリリースされています。\nGNU C Library、GNU coretools、diffutils、findutils、sharutils、gawk、bison、m4、make、wget、ncurses、termcap、Bourne Again Shell\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView HaikuPorts チーム\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView 以下の FreeBSD プロジェクトからのソフトウェアを含んでいます。それらは BSD ライセンスでリリースされています:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView 以下の FreeBSD プロジェクトからのソフトウェアを含んでいます。それらは BSD ライセンスでリリースされています:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. All rights reserved. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. All rights reserved.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView バージョン: Version: AboutView バージョン:
The BeGeistert team\n AboutView BeGeistert チーム\n The BeGeistert team\n AboutView BeGeistert チーム\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView ライセンス:
Intel (2xxx firmware) AboutWindow Intel (2xxx ファームウェア) Intel (2xxx firmware) AboutWindow Intel (2xxx ファームウェア)
License: AboutView ライセンス:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Auckland 大学 および Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Auckland 大学 および Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView 合計 %total MiB / %inaccessible MiB アクセス不可 %total MiB total, %inaccessible MiB inaccessible AboutView 合計 %total MiB / %inaccessible MiB アクセス不可
+1 -1
View File
@@ -15,8 +15,8 @@ Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView © 1990-2002 In
Past website & marketing:\n AboutView Ankstesnė svetainė ir rinkodara:\n Past website & marketing:\n AboutView Ankstesnė svetainė ir rinkodara:\n
Copyright © 2003 Peter Hanappe and others. AboutView © 2003 Peter Hanappe ir kiti. Copyright © 2003 Peter Hanappe and others. AboutView © 2003 Peter Hanappe ir kiti.
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesorius:} few{# procesoriai:} other{# procesorių:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesorius:} few{# procesoriai:} other{# procesorių:}}
%d MiB total AboutView %d MiB iš viso
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Pirminiai tekstai, kurti specialiai „Haiku“ projektui, ypač branduolys ir bet koks programinis kodas, su kuriuo programos gali būti saistomos, yra platinamas pagal <MIT licenciją>. Kai kuriose sisteminėse bibliotekose gali būti trečiųjų šalių kurto programinio kodo, platinamo pagal <LGPL licenciją>. Trečiųjų šalių kurto programinio kodo autorių teisės išvardintos žemiau.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Pirminiai tekstai, kurti specialiai „Haiku“ projektui, ypač branduolys ir bet koks programinis kodas, su kuriuo programos gali būti saistomos, yra platinamas pagal <MIT licenciją>. Kai kuriose sisteminėse bibliotekose gali būti trečiųjų šalių kurto programinio kodo, platinamo pagal <LGPL licenciją>. Trečiųjų šalių kurto programinio kodo autorių teisės išvardintos žemiau.\n\n
%d MiB total AboutView %d MiB iš viso
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView © 1996-1997 Jeff Prosise. Visos teisės saugomos. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView © 1996-1997 Jeff Prosise. Visos teisės saugomos.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView © 1999-2006 Brian Paul. Mesa3D Project. Visos teisės saugomos. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView © 1999-2006 Brian Paul. Mesa3D Project. Visos teisės saugomos.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView © 2010-2011 Google Inc. Visos teisės saugomos. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView © 2010-2011 Google Inc. Visos teisės saugomos.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Website & marketing verleden:\n
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe en anderen. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe en anderen.
Testing and bug triaging:\n AboutView Testen en bugs valideren:\n Testing and bug triaging:\n AboutView Testen en bugs valideren:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}}
%d MiB total AboutView %d MiB totaal
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. De code die uniek is voor Haiku, vooral de kernel en alle codes die applicaties kunnen linken, wordt gedistribueerd onder de voorwaarden van de <MIT license>. Sommige systeembibliotheken bevatten code van andere partijen gedistribueerd onder de <LGPL license>. Je kan de copyrights van deze partijen hieronder vinden.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. De code die uniek is voor Haiku, vooral de kernel en alle codes die applicaties kunnen linken, wordt gedistribueerd onder de voorwaarden van de <MIT license>. Sommige systeembibliotheken bevatten code van andere partijen gedistribueerd onder de <LGPL license>. Je kan de copyrights van deze partijen hieronder vinden.\n\n
%d MiB total AboutView %d MiB totaal
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle rechten voorbehouden. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle rechten voorbehouden.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Alle rechten voorbehouden. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Alle rechten voorbehouden.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle rechten voorbehouden. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle rechten voorbehouden.
@@ -47,8 +47,8 @@ Source Code: AboutView Broncode:
\nCopyrights\n\n AboutView \nCopyrights\n\n \nCopyrights\n\n AboutView \nCopyrights\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm en Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm en Werner Lemberg.
The HaikuPorts team\n AboutView Het HaikuPorts team\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Bevat software van het GNU Project, vrijgegeven onder de GPL and LGPL licenties:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Bevat software van het GNU Project, vrijgegeven onder de GPL and LGPL licenties:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Het HaikuPorts team\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Bevat software van het FreeBSD Project, vrijgegeven onder de BSD licentie:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Bevat software van het FreeBSD Project, vrijgegeven onder de BSD licentie:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle rechten voorbehouden. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle rechten voorbehouden.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, en anderen. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, en anderen.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Strona internetowa i marketing (dawniej):
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe i inni. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe i inni.
Testing and bug triaging:\n AboutView Testowanie i segregacja raportów o błędach:\n Testing and bug triaging:\n AboutView Testowanie i segregacja raportów o błędach:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{# procesor:} few{# procesory:} many{# procesorów:} other{# procesora:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{# procesor:} few{# procesory:} many{# procesorów:} other{# procesora:}}
%d MiB total AboutView %d MiB ogółem
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kod, który jest unikalny dla Haiku, w szczególności jądro i cały kod z którymi aplikacje mogą być skonsolidowane, jest rozpowszechniany na <licencji MIT>. Niektóre biblioteki systemowe zawierają kod stron trzecich rozpowszechniany na <licencji LGPL>. Możesz poznać prawa autorskie kodu stron trzecich poniżej.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kod, który jest unikalny dla Haiku, w szczególności jądro i cały kod z którymi aplikacje mogą być skonsolidowane, jest rozpowszechniany na <licencji MIT>. Niektóre biblioteki systemowe zawierają kod stron trzecich rozpowszechniany na <licencji LGPL>. Możesz poznać prawa autorskie kodu stron trzecich poniżej.\n\n
%d MiB total AboutView %d MiB ogółem
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Wszelkie prawa zastrzeżone. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Wszelkie prawa zastrzeżone.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Wszelkie prawa zastrzeżone. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Wszelkie prawa zastrzeżone.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Wszelkie prawa zastrzeżone. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Wszelkie prawa zastrzeżone.
@@ -47,8 +47,8 @@ Source Code: AboutView Kod źródłowy:
\nCopyrights\n\n AboutView \nPrawa autorskie\n\n \nCopyrights\n\n AboutView \nPrawa autorskie\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView Zespołu HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Zawiera oprogramowanie z Projektu GNU wydane na licencjach GPL i LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, bash\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Zawiera oprogramowanie z Projektu GNU wydane na licencjach GPL i LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, bash\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Zespołu HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Zawiera oprogramowanie z Projektu FreeBSD, udostępnione na licencji BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Wszelkie prawa zastrzeżone. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Zawiera oprogramowanie z Projektu FreeBSD, udostępnione na licencji BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Wszelkie prawa zastrzeżone.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Wszelkie prawa zastrzeżone. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Wszelkie prawa zastrzeżone.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, i in. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, i in.
+2 -2
View File
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Testes e triagem de bugs:\n Testing and bug triaging:\n AboutView Testes e triagem de bugs:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processador:} other{# Processadores:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processador:} other{# Processadores:}}
Ralink WiFi Firmware AboutWindow Firmware WiFi Ralink Ralink WiFi Firmware AboutWindow Firmware WiFi Ralink
%d MiB total AboutView %d MiB no total
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. O código que é único ao Haiku, especialmente o núcleo e todo o código a que as aplicações podem ligar, é distribuído sob os termos da <licença MIT>. Algumas bibliotecas do sistema contêm código de terceiros distribídos sob a <licença LGPL>. Você pode encontrar os direitos de cópia para código de terceiros em baixo.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. O código que é único ao Haiku, especialmente o núcleo e todo o código a que as aplicações podem ligar, é distribuído sob os termos da <licença MIT>. Algumas bibliotecas do sistema contêm código de terceiros distribídos sob a <licença LGPL>. Você pode encontrar os direitos de cópia para código de terceiros em baixo.\n\n
%d MiB total AboutView %d MiB no total
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Todos os direitos reservados. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Todos os direitos reservados.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Todos os direitos reservados. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Todos os direitos reservados.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Todos os direitos reservados. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Todos os direitos reservados.
@@ -52,8 +52,8 @@ Source Code: AboutView Código Fonte:
\nCopyrights\n\n AboutView \nCopyrights\n\n \nCopyrights\n\n AboutView \nCopyrights\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm e Werner Lemberg.
The HaikuPorts team\n AboutView À equipa do HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contém software do Projecto GNU, disponibilizado sob as licenças GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contém software do Projecto GNU, disponibilizado sob as licenças GPL e LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView À equipa do HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contém software do Projeto FreeBSD, disponibilizado sob a licença BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Todos os direitos reservados. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contém software do Projeto FreeBSD, disponibilizado sob a licença BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Todos os direitos reservados.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Todos os direitos reservados. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Todos os direitos reservados.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Website & Marketing Antigos:\n
Copyright © 2003 Peter Hanappe and others. AboutView Direitos autorais © 2003 Peter Hanappe e outros. Copyright © 2003 Peter Hanappe and others. AboutView Direitos autorais © 2003 Peter Hanappe e outros.
Testing and bug triaging:\n AboutView Teste e triagem de bug:\n Testing and bug triaging:\n AboutView Teste e triagem de bug:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processador:} other{# Processadores:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processador:} other{# Processadores:}}
%d MiB total AboutView %d MB total
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. O código exclusivo do Haiku, especialmente o núcleo e todo o código a que as aplicações podem estar associados, é distribuído sob os termos da <MIT license>. Algumas bibliotecas do sistema contêm código de terceiros distribuídos sob a <LGPL license>. Você pode encontrar os direitos de cópia para código de terceiros abaixo.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. O código exclusivo do Haiku, especialmente o núcleo e todo o código a que as aplicações podem estar associados, é distribuído sob os termos da <MIT license>. Algumas bibliotecas do sistema contêm código de terceiros distribuídos sob a <LGPL license>. Você pode encontrar os direitos de cópia para código de terceiros abaixo.\n\n
%d MiB total AboutView %d MB total
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Direitos autorais © 1996-1997 Jeff Prosise. Todos os direitos reservados. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Direitos autorais © 1996-1997 Jeff Prosise. Todos os direitos reservados.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Direitos autorais © 1999-2006 Brian Paul. Projeto Mesa3D. Todos os direitos reservados. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Direitos autorais © 1999-2006 Brian Paul. Projeto Mesa3D. Todos os direitos reservados.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Direitos autorais © 2010-2011 Google Inc. Todos os direitos reservados. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Direitos autorais © 2010-2011 Google Inc. Todos os direitos reservados.
@@ -47,8 +47,8 @@ Source Code: AboutView Código fonte:
\nCopyrights\n\n AboutView \nDireitos autorais\n\n \nCopyrights\n\n AboutView \nDireitos autorais\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Direitos autorais © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Direitos autorais © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView A equipe HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contém software do Projeto GNU, lançado sob as licenças GPL e LGPL:\nBiblioteca GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nDireitos autorais © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Contém software do Projeto GNU, lançado sob as licenças GPL e LGPL:\nBiblioteca GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nDireitos autorais © The Free Software Foundation.
The HaikuPorts team\n AboutView A equipe HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contém programas do Projeto FreeBSD, lançados sob a licença BSD:\nftpd, ping, telnet, telnetd, traceroute\nDireitos Autorais © 1994-2008 The FreeBSD Project. Todos os direitos reservados. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Contém programas do Projeto FreeBSD, lançados sob a licença BSD:\nftpd, ping, telnet, telnetd, traceroute\nDireitos Autorais © 1994-2008 The FreeBSD Project. Todos os direitos reservados.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Direitos autorais © 2002-2003 Steve Lhomme. Todos os direitos reservados. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Direitos autorais © 2002-2003 Steve Lhomme. Todos os direitos reservados.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Direitos autorais © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Direitos autorais © 2000-2019 Fabrice Bellard, et al.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Pagină web și marketing anterioare:\n
Copyright © 2003 Peter Hanappe and others. AboutView Drepturi de autor © 2003 Peter Hanappe și alții. Copyright © 2003 Peter Hanappe and others. AboutView Drepturi de autor © 2003 Peter Hanappe și alții.
Testing and bug triaging:\n AboutView Testare și depanarea erorilor:\n Testing and bug triaging:\n AboutView Testare și depanarea erorilor:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}}
%d MiB total AboutView %d MiO total
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Codul care este unic Haiku, în special nucleul și tot codul la care aplicațiile pot face legături, este distribuit sub termenii <MIT license>. Unele librării de sistem pot conține cod de la părți terțe distribuit prin <LGPL license>. Puteți găsi drepturile de autor ale codului părților terțe mai jos.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Codul care este unic Haiku, în special nucleul și tot codul la care aplicațiile pot face legături, este distribuit sub termenii <MIT license>. Unele librării de sistem pot conține cod de la părți terțe distribuit prin <LGPL license>. Puteți găsi drepturile de autor ale codului părților terțe mai jos.\n\n
%d MiB total AboutView %d MiO total
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Drepturi de autor © 1996-1997 Jeff Prosise. Toate drepturile rezervate. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Drepturi de autor © 1996-1997 Jeff Prosise. Toate drepturile rezervate.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Drepturi de autor © 1999-2006 Brian Paul. Proiectul Mesa3D. Toate drepturile rezervate. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Drepturi de autor © 1999-2006 Brian Paul. Proiectul Mesa3D. Toate drepturile rezervate.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Drepturi de autor © 2010-2011 Google Inc. Toate drepturile rezervate. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Drepturi de autor © 2010-2011 Google Inc. Toate drepturile rezervate.
@@ -48,8 +48,8 @@ Source Code: AboutView Cod sursă:
\nCopyrights\n\n AboutView \nDrepturi de autor\n\n \nCopyrights\n\n AboutView \nDrepturi de autor\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Drepturi de autor © 1996-2002, 2006 David Turner, Robert Wilhelm și Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Drepturi de autor © 1996-2002, 2006 David Turner, Robert Wilhelm și Werner Lemberg.
The HaikuPorts team\n AboutView Echipa HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Conține software de la GNU Project, publicat sub licențele GPL și LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nDrepturi de autor © Fundația pentru Software Liber. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Conține software de la GNU Project, publicat sub licențele GPL și LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nDrepturi de autor © Fundația pentru Software Liber.
The HaikuPorts team\n AboutView Echipa HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Conține software de la FreeBSD Project, publicat sub licența BSD:\nftpd, ping, telnet, telnetd, traceroute\nDrepturi de autor © 1994-2008 The FreeBSD Project. Toate drepturile rezervate. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Conține software de la FreeBSD Project, publicat sub licența BSD:\nftpd, ping, telnet, telnetd, traceroute\nDrepturi de autor © 1994-2008 The FreeBSD Project. Toate drepturile rezervate.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Drepturi de autor © 2002-2003 Steve Lhomme. Toate drepturile rezervate. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Drepturi de autor © 2002-2003 Steve Lhomme. Toate drepturile rezervate.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Drepturi de autor © 2000-2019 Fabrice Bellard și alții. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Drepturi de autor © 2000-2019 Fabrice Bellard și alții.
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView Старый вебсайт и марке
Copyright © 2003 Peter Hanappe and others. AboutView Все права защищены © 2003 Peter Hanappe и другие. Copyright © 2003 Peter Hanappe and others. AboutView Все права защищены © 2003 Peter Hanappe и другие.
Testing and bug triaging:\n AboutView Тестирование и сортировка багов:\n Testing and bug triaging:\n AboutView Тестирование и сортировка багов:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Процессор:} few{# процессора:} other{# процессоров:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Процессор:} few{# процессора:} other{# процессоров:}}
%d MiB total AboutView Всего %d МБ
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, написанный специально для Haiku, особенно ядро и весь код, с которым могут быть связаны приложения, распространяется на условиях <MIT license>. Некоторые системные библиотеки содержат сторонний код, распространяемый под <LGPL license>. Вы можете найти авторские права на этот код ниже.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, написанный специально для Haiku, особенно ядро и весь код, с которым могут быть связаны приложения, распространяется на условиях <MIT license>. Некоторые системные библиотеки содержат сторонний код, распространяемый под <LGPL license>. Вы можете найти авторские права на этот код ниже.\n\n
%d MiB total AboutView Всего %d МБ
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Все права защищены © 1996-1997 Jeff Prosise. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Все права защищены © 1996-1997 Jeff Prosise.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Все права защищены © 1999-2006 Brian Paul. Проект Mesa3D. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Все права защищены © 1999-2006 Brian Paul. Проект Mesa3D.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Все права защищены © 2010-2011 Google Inc. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Все права защищены © 2010-2011 Google Inc.
@@ -47,8 +47,8 @@ Source Code: AboutView Исходный код:
\nCopyrights\n\n AboutView \nАвторские права\n\n \nCopyrights\n\n AboutView \nАвторские права\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Все права защищены © 1996-2002, 2006 David Turner, Robert Wilhelm и Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Все права защищены © 1996-2002, 2006 David Turner, Robert Wilhelm и Werner Lemberg.
The HaikuPorts team\n AboutView Команде HaikuPorts\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Содержит программное обеспечение из проекта GNU, выпущен под лицензиями GPL и LGPL:\nGNU библиотека, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nВсе права защищены © Фонд свободного программного обеспечения. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Содержит программное обеспечение из проекта GNU, выпущен под лицензиями GPL и LGPL:\nGNU библиотека, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nВсе права защищены © Фонд свободного программного обеспечения.
The HaikuPorts team\n AboutView Команде HaikuPorts\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Содержит программное обеспечение из проекта FreeBSD, выпущен под лицензией BSD:\ncal, ftpd, ping, telnet, telnetd, tracerout\nВсе права защищены © 1994-2008 Проект FreeBSD. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Содержит программное обеспечение из проекта FreeBSD, выпущен под лицензией BSD:\ncal, ftpd, ping, telnet, telnetd, tracerout\nВсе права защищены © 1994-2008 Проект FreeBSD.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Все права защищены © 2002-2003 Steve Lhomme. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Все права защищены © 2002-2003 Steve Lhomme.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Все права защищены © 2000-2019 Fabrice Bellard, и другие. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Все права защищены © 2000-2019 Fabrice Bellard, и другие.
+2 -2
View File
@@ -15,8 +15,8 @@ Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 19
Past website & marketing:\n AboutView Web a marketing v minulosti:\n Past website & marketing:\n AboutView Web a marketing v minulosti:\n
Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe a ďalší. Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe a ďalší.
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesor} few{# procesory} other{# procesorov}}: {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Procesor} few{# procesory} other{# procesorov}}:
%d MiB total AboutView %d MiB celkom
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, ktorý je jedinečný pre Haiku, obzvlášť jadro a všetok kód, voči ktorému sa linkujú aplikácie je šírený za podmienok <MIT license>. Niektoré knižnice systému môžu obsahovať kód tretích strán, ktorý je šírený za podmienok<LGPL license>. Informácie o autorských právach ku kódu tretích strán si môžete prečítať nižšie.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, ktorý je jedinečný pre Haiku, obzvlášť jadro a všetok kód, voči ktorému sa linkujú aplikácie je šírený za podmienok <MIT license>. Niektoré knižnice systému môžu obsahovať kód tretích strán, ktorý je šírený za podmienok<LGPL license>. Informácie o autorských právach ku kódu tretích strán si môžete prečítať nižšie.\n\n
%d MiB total AboutView %d MiB celkom
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všetky práva vyhradené. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všetky práva vyhradené.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Všetky práva vyhradené. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Všetky práva vyhradené.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všetky práva vyhradené. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všetky práva vyhradené.
@@ -45,8 +45,8 @@ Source Code: AboutView Zdrojový kód:
\nCopyrights\n\n AboutView \nAutorské práva\n\n \nCopyrights\n\n AboutView \nAutorské práva\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm a Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm a Werner Lemberg.
The HaikuPorts team\n AboutView Tím Haiku-Ports\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje softvér z projektu GNU uvoľnený za podmienok licencií GPL alebo LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje softvér z projektu GNU uvoľnený za podmienok licencií GPL alebo LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Tím Haiku-Ports\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje softvér z projektu FreeBSD, uvoľnený za podmienok licencie BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Všetky práva vyhradené. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje softvér z projektu FreeBSD, uvoľnený za podmienok licencie BSD:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Všetky práva vyhradené.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všetky práva vyhradené. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všetky práva vyhradené.
Current maintainers:\n AboutView Aktívni vývojári:\n Current maintainers:\n AboutView Aktívni vývojári:\n
+5 -4
View File
@@ -1,4 +1,4 @@
1 swedish x-vnd.Haiku-About 610468518 1 swedish x-vnd.Haiku-About 2259131995
Revision AboutView Utgåva Revision AboutView Utgåva
The Haikuware team and their bounty program\n AboutView Haikuware-teamet och deras belöningsprogram\n The Haikuware team and their bounty program\n AboutView Haikuware-teamet och deras belöningsprogram\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Upphovsrätt © 1999-2007 Michael C. Ring. Med ensamrätt. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Upphovsrätt © 1999-2007 Michael C. Ring. Med ensamrätt.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Upphovsrätt © 2003 Pete
Testing and bug triaging:\n AboutView Testa och bug triaging:\n Testing and bug triaging:\n AboutView Testa och bug triaging:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} other{# Processors:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware
%d MiB total AboutView %d MiB totalt
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koden som är unik för Haiku, särskilt kärnan och all kod som program länkar mot, är distribuerad under villkoren för <MIT license>. Några systembibliotek innehåller tredjepartskod distribuerat under villkoren för <LGPL license>. Du finner upphovsrättsvillkoren för tredjepartskod nedan.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koden som är unik för Haiku, särskilt kärnan och all kod som program länkar mot, är distribuerad under villkoren för <MIT license>. Några systembibliotek innehåller tredjepartskod distribuerat under villkoren för <LGPL license>. Du finner upphovsrättsvillkoren för tredjepartskod nedan.\n\n
%d MiB total AboutView %d MiB totalt
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Upphovsrätt © 1996-1997 Jeff Prosise. Med ensamrätt. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Upphovsrätt © 1996-1997 Jeff Prosise. Med ensamrätt.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Upphovsrätt © 1999-2006 Brian Paul. Mesa3D projektet. Med ensamrätt. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Upphovsrätt © 1999-2006 Brian Paul. Mesa3D projektet. Med ensamrätt.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Upphovsrätt © 2010-2011 Google Inc. Med ensamrätt. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Upphovsrätt © 2010-2011 Google Inc. Med ensamrätt.
@@ -38,6 +38,7 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Upphovsr
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Upphovsrätt © 1994-2009 Thomas G. Lane och Guido Vollbeding. Denna programvara är baserat på delar av arbetet av Independent JPEG Group. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Upphovsrätt © 1994-2009 Thomas G. Lane och Guido Vollbeding. Denna programvara är baserat på delar av arbetet av Independent JPEG Group.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (projektgrundare)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (projektgrundare)\n\n
Remove replicant AboutView Ta bort replikanten
BSD (3-clause) AboutWindow BSD (3-clause) BSD (3-clause) AboutWindow BSD (3-clause)
About this system AboutWindow Om Haiku About this system AboutWindow Om Haiku
%d MiB used (%d%%) AboutView %d MiB använt (%d%%) %d MiB used (%d%%) AboutView %d MiB använt (%d%%)
@@ -52,8 +53,8 @@ Source Code: AboutView Källkod:
\nCopyrights\n\n AboutView \nUpphovsrätter\n\n \nCopyrights\n\n AboutView \nUpphovsrätter\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Upphovsrätt © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Upphovsrätt © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView Haiku Ports-teamet\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Innehåller program från GNU Project, släpt under GPL och LGPL licenser:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nUpphovsrätt © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Innehåller program från GNU Project, släpt under GPL och LGPL licenser:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nUpphovsrätt © The Free Software Foundation.
The HaikuPorts team\n AboutView Haiku Ports-teamet\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Innehåller program från FreeBSD Projekt, släppt under BSD licens:\n ftpd, ping, telnet, telnetd, traceroute\n Upphovsrätt © 1994-2008 The FreeBSD Project. All rights reserved. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Innehåller program från FreeBSD Projekt, släppt under BSD licens:\n ftpd, ping, telnet, telnetd, traceroute\n Upphovsrätt © 1994-2008 The FreeBSD Project. All rights reserved.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Upphovsrätt © 2002-2003 Steve Lhomme. Med ensamrätt. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Upphovsrätt © 2002-2003 Steve Lhomme. Med ensamrätt.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Upphovsrätt © 2000-2019 Fabrice Bellard. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Upphovsrätt © 2000-2019 Fabrice Bellard.
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Version: Version: AboutView Version:
The BeGeistert team\n AboutView BeGeistert-teamet\n The BeGeistert team\n AboutView BeGeistert-teamet\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Licens:
Intel (2xxx firmware) AboutWindow Intel (2xxx firmware) Intel (2xxx firmware) AboutWindow Intel (2xxx firmware)
License: AboutView Licens:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView The University of Auckland och Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView The University of Auckland och Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totalt, %inaccessible MiB otillgängligt %total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totalt, %inaccessible MiB otillgängligt
+2 -2
View File
@@ -16,8 +16,8 @@ Past website & marketing:\n AboutView เว็บไซต์และกา
Copyright © 2003 Peter Hanappe and others. AboutView ลิขสิทธิ์ © 2003 Peter Hanappe และเพื่อนๆ Copyright © 2003 Peter Hanappe and others. AboutView ลิขสิทธิ์ © 2003 Peter Hanappe และเพื่อนๆ
Testing and bug triaging:\n AboutView การทดสอบและการทำข้อผิดพลาดในการจำลอง:\n Testing and bug triaging:\n AboutView การทดสอบและการทำข้อผิดพลาดในการจำลอง:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} อื่น{# Processors:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{Processor:} อื่น{# Processors:}}
%d MiB total AboutView รวม %d MiB
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. รหัสที่เป็นเอกลักษณ์ของไฮกุโดยเฉพาะเคอร์เนลและรหัสทั้งหมดที่แอพพลิเคชั่นอาจเชื่อมโยงนั้นได้รับการแจกจ่ายภายใต้เงื่อนไขของ <MIT license> ไลบรารีระบบบางแห่งมีรหัสบุคคลที่สามที่แจกจ่ายภายใต้ <LGPL license> คุณสามารถค้นหาลิขสิทธิ์ของรหัสบุคคลที่สามด้านล่างนี้ \n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. รหัสที่เป็นเอกลักษณ์ของไฮกุโดยเฉพาะเคอร์เนลและรหัสทั้งหมดที่แอพพลิเคชั่นอาจเชื่อมโยงนั้นได้รับการแจกจ่ายภายใต้เงื่อนไขของ <MIT license> ไลบรารีระบบบางแห่งมีรหัสบุคคลที่สามที่แจกจ่ายภายใต้ <LGPL license> คุณสามารถค้นหาลิขสิทธิ์ของรหัสบุคคลที่สามด้านล่างนี้ \n\n
%d MiB total AboutView รวม %d MiB
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView ลิขสิทธิ์ © 1996-1997 Jeff Prosise.สงวนลิขสิทธิ์ Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView ลิขสิทธิ์ © 1996-1997 Jeff Prosise.สงวนลิขสิทธิ์
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView ลิขสิทธิ์ © 1999-2006 Brian Paul. Mesa3D Project.สงวนลิขสิทธิ์ Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView ลิขสิทธิ์ © 1999-2006 Brian Paul. Mesa3D Project.สงวนลิขสิทธิ์
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView ลิขสิทธิ์ © 2010-2011 Google Inc.สงวนลิขสิทธิ์ Copyright © 2010-2011 Google Inc. All rights reserved. AboutView ลิขสิทธิ์ © 2010-2011 Google Inc.สงวนลิขสิทธิ์
@@ -47,8 +47,8 @@ Source Code: AboutView Source Code:
\nCopyrights\n\n AboutView \nลิขสิทธิ์\n\n \nCopyrights\n\n AboutView \nลิขสิทธิ์\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView ลิขสิทธิ์ © 1996-2002, 2006 David Turner, Robert Wilhelm และ Werner Lemberg Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView ลิขสิทธิ์ © 1996-2002, 2006 David Turner, Robert Wilhelm และ Werner Lemberg
The HaikuPorts team\n AboutView The HaikuPorts team\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView มีซอฟต์แวร์จากโครงการ GNU ภายใต้ลิขสิทธิ์ GPL และ LGPL: \nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell \nลิขสิทธิ์ © The Free Software Foundation Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView มีซอฟต์แวร์จากโครงการ GNU ภายใต้ลิขสิทธิ์ GPL และ LGPL: \nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell \nลิขสิทธิ์ © The Free Software Foundation
The HaikuPorts team\n AboutView The HaikuPorts team\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView มีซอฟต์แวร์จากโครงการ FreeBSD ภายใต้ลิขสิทธิ์ BSD: \nftpd, ping, telnet, telnetd, traceroute \nลิขสิทธิ์ © 1994-2008 The FreeBSD Project สงวนลิขสิทธิ์ Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView มีซอฟต์แวร์จากโครงการ FreeBSD ภายใต้ลิขสิทธิ์ BSD: \nftpd, ping, telnet, telnetd, traceroute \nลิขสิทธิ์ © 1994-2008 The FreeBSD Project สงวนลิขสิทธิ์
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView ลิขสิทธิ์ © 2002-2003 Steve Lhomme สงวนลิขสิทธิ์ Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView ลิขสิทธิ์ © 2002-2003 Steve Lhomme สงวนลิขสิทธิ์
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView ลิขสิทธิ์ © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView ลิขสิทธิ์ © 2000-2019 Fabrice Bellard, et al.
+6 -5
View File
@@ -1,4 +1,4 @@
1 turkish x-vnd.Haiku-About 610468518 1 turkish x-vnd.Haiku-About 2259131995
Revision AboutView Revizyon Revision AboutView Revizyon
The Haikuware team and their bounty program\n AboutView Haikuware takımı ve onların ödül programı\n The Haikuware team and their bounty program\n AboutView Haikuware takımı ve onların ödül programı\n
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Telif hakkı © 1999-2007 Michael C. Ring. Tüm hakları saklıdır. Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Telif hakkı © 1999-2007 Michael C. Ring. Tüm hakları saklıdır.
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Telif hakkı © 2003 Pete
Testing and bug triaging:\n AboutView Sınama ve hata sınıflandırma:\n Testing and bug triaging:\n AboutView Sınama ve hata sınıflandırma:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, other{# işlemci:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, other{# işlemci:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware
%d MiB total AboutView %d MiB toplam
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku'ya özel olan tüm kodlar, özellikle çekirdek ve uygulamaların bağlı olduğu kodlar <MIT lisansı> koşulları altında dağıtılmaktadır. Bazı sistem kitaplıkları ve üçüncü parti kodlar <LGPL lisansı> koşulları altında dağıtılır. Üçüncü parti kodların telif hakları ile ilgili bilgiyi aşağıda bulabilirsiniz.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku'ya özel olan tüm kodlar, özellikle çekirdek ve uygulamaların bağlı olduğu kodlar <MIT lisansı> koşulları altında dağıtılmaktadır. Bazı sistem kitaplıkları ve üçüncü parti kodlar <LGPL lisansı> koşulları altında dağıtılır. Üçüncü parti kodların telif hakları ile ilgili bilgiyi aşağıda bulabilirsiniz.\n\n
%d MiB total AboutView %d MiB toplam
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Telif hakkı © 1996-1997 Jeff Prosise. Tüm hakları saklıdır. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Telif hakkı © 1996-1997 Jeff Prosise. Tüm hakları saklıdır.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Telif hakkı © 1999-2006 Brian Paul, Mesa 3D Project. Tüm hakları saklıdır. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Telif hakkı © 1999-2006 Brian Paul, Mesa 3D Project. Tüm hakları saklıdır.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Telif hakkı © 2010-2011 Google Inc. Tüm hakları saklıdır. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Telif hakkı © 2010-2011 Google Inc. Tüm hakları saklıdır.
@@ -38,9 +38,10 @@ Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Telif ha
GNU LGPL v2 AboutWindow GNU LGPL v2 GNU LGPL v2 AboutWindow GNU LGPL v2
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Telif hakkı © 1994-2009, Thomas G. Lane, Guido Vollbeding. Bu yazılım Independent JPEG Group'a ait olan işin bir parçası temel alınarak yazılmıştır. Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Telif hakkı © 1994-2009, Thomas G. Lane, Guido Vollbeding. Bu yazılım Independent JPEG Group'a ait olan işin bir parçası temel alınarak yazılmıştır.
Michael Phipps (project founder)\n\n AboutView Michael Phipps (proje kurucusu)\n\n Michael Phipps (project founder)\n\n AboutView Michael Phipps (proje kurucusu)\n\n
Remove replicant AboutView Yineleneni kaldır
BSD (3-clause) AboutWindow BSD (3 koşullu) BSD (3-clause) AboutWindow BSD (3 koşullu)
About this system AboutWindow Sistem Hakkında About this system AboutWindow Sistem Hakkında
%d MiB used (%d%%) AboutView %d MiB kullanılan (%d%%) %d MiB used (%d%%) AboutView %d MiB kullanılan (%%d%)
Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Telif hakkı © 2003-2006 Intel Corporation. Tüm hakları saklıdır. Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Telif hakkı © 2003-2006 Intel Corporation. Tüm hakları saklıdır.
Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Telif hakkı © 1999-2010 Gutenprint yazarları. Tüm hakları saklıdır. Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Telif hakkı © 1999-2010 Gutenprint yazarları. Tüm hakları saklıdır.
Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Telif hakkı © 1994-1997 Mark Kilgard. Tüm hakları saklıdır. Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Telif hakkı © 1994-1997 Mark Kilgard. Tüm hakları saklıdır.
@@ -52,8 +53,8 @@ Source Code: AboutView Kaynak Kodu:
\nCopyrights\n\n AboutView \nTelif hakları\n\n \nCopyrights\n\n AboutView \nTelif hakları\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Telif hakkı © 1996-2002, 2006 David Turner, Robert Wilhelm ve Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Telif hakkı © 1996-2002, 2006 David Turner, Robert Wilhelm ve Werner Lemberg.
The HaikuPorts team\n AboutView HaikuPorts takımı\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView GNU Projesi'nden GPL ve LGPL lisanslı yazılımlar içerir:\nGNU C Kütüphanesi, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nTelif hakkı © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView GNU Projesi'nden GPL ve LGPL lisanslı yazılımlar içerir:\nGNU C Kütüphanesi, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nTelif hakkı © The Free Software Foundation.
The HaikuPorts team\n AboutView HaikuPorts takımı\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Aşağıdaki yazılımlar FreeBSD projesinden alınmış olup BSD lisansı ile yayımlanmıştır:\nftpd, ping, telnet, Telnet, traceroute\nTelif hakkı © 1994-2008 The FreeBSD Project. Tüm hakları saklıdır. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Aşağıdaki yazılımlar FreeBSD projesinden alınmış olup BSD lisansı ile yayımlanmıştır:\nftpd, ping, telnet, Telnet, traceroute\nTelif hakkı © 1994-2008 The FreeBSD Project. Tüm hakları saklıdır.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Telif hakkı © 2002-2003 Steve Lhomme. Tüm hakları saklıdır. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Telif hakkı © 2002-2003 Steve Lhomme. Tüm hakları saklıdır.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Telif hakkı © 2000-2019 Fabrice Bellard ve diğerleri Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Telif hakkı © 2000-2019 Fabrice Bellard ve diğerleri
@@ -64,8 +65,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Sürüm: Version: AboutView Sürüm:
The BeGeistert team\n AboutView BeGeistert takımı\n The BeGeistert team\n AboutView BeGeistert takımı\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Lisans:
Intel (2xxx firmware) AboutWindow Intel (2xxx firmware) Intel (2xxx firmware) AboutWindow Intel (2xxx firmware)
License: AboutView Lisans:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Auckland Üniversitesi ve Christof Lutteroth\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Auckland Üniversitesi ve Christof Lutteroth\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView Toplam %total MiB, %inaccessible MiB ulaşılamayan %total MiB total, %inaccessible MiB inaccessible AboutView Toplam %total MiB, %inaccessible MiB ulaşılamayan
+3 -3
View File
@@ -19,8 +19,8 @@ Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter H
Testing and bug triaging:\n AboutView Тестування та тріаж багів:\n Testing and bug triaging:\n AboutView Тестування та тріаж багів:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{процесор:} few{# процесора:} other{# процесорів:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{процесор:} few{# процесора:} other{# процесорів:}}
Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware Ralink WiFi Firmware AboutWindow Ralink WiFi Firmware
%d MiB total AboutView %d МБ загалом
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, що є унікальним для Haiku, особливо ядро та код пов'язаний з програмами, надається на умовах <MIT license>. Деякі системні бібліотеки містять код інших розробників, що надається за <LGPL license>. Авторські права на цей код дивіться нижче.\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, що є унікальним для Haiku, особливо ядро та код пов'язаний з програмами, надається на умовах <MIT license>. Деякі системні бібліотеки містять код інших розробників, що надається за <LGPL license>. Авторські права на цей код дивіться нижче.\n\n
%d MiB total AboutView %d МБ загалом
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved. Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. All rights reserved.
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved.
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. All rights reserved. Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. All rights reserved.
@@ -52,8 +52,8 @@ Source Code: AboutView Початковий код:
\nCopyrights\n\n AboutView \nАвторські права\n\n \nCopyrights\n\n AboutView \nАвторські права\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView Команда Haiku-Ports\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Містить програмне забезпечення з проекту GNU, виконане під ліцензіями GPL та LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Містить програмне забезпечення з проекту GNU, виконане під ліцензіями GPL та LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
The HaikuPorts team\n AboutView Команда Haiku-Ports\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Містить програмне забезпечення з проекту FreeBSD, випущене під ліцензією BSD:\nftpd, ping, telnet, telnetd, tracerout\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Містить програмне забезпечення з проекту FreeBSD, випущене під ліцензією BSD:\nftpd, ping, telnet, telnetd, tracerout\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved.
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. All rights reserved. Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. All rights reserved.
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al. Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard, et al.
@@ -64,8 +64,8 @@ Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutVie
Version: AboutView Версія: Version: AboutView Версія:
The BeGeistert team\n AboutView Команді BeGeistert\n The BeGeistert team\n AboutView Команді BeGeistert\n
GNU LGPL v2.1 AboutWindow GNU LGPL v2.1 GNU LGPL v2.1 AboutWindow GNU LGPL v2.1
License: AboutView Ліцензія:
Intel (2xxx firmware) AboutWindow Intel (2xxx вбудоване ПЗ) Intel (2xxx firmware) AboutWindow Intel (2xxx вбудоване ПЗ)
License: AboutView Ліцензія:
GNU GPL v2 AboutWindow GNU GPL v2 GNU GPL v2 AboutWindow GNU GPL v2
The University of Auckland and Christof Lutteroth\n\n AboutView Університету Окленда і Крістофу Люттероту\n\n The University of Auckland and Christof Lutteroth\n\n AboutView Університету Окленда і Крістофу Люттероту\n\n
%total MiB total, %inaccessible MiB inaccessible AboutView %total МБ загалом, %inaccessible МБ недоступно %total MiB total, %inaccessible MiB inaccessible AboutView %total МБ загалом, %inaccessible МБ недоступно
@@ -17,8 +17,8 @@ Past website & marketing:\n AboutView 早先网站及市场:\n
Copyright © 2003 Peter Hanappe and others. AboutView 版权所有 © 2003 Peter Hanappe 及其他人员。 Copyright © 2003 Peter Hanappe and others. AboutView 版权所有 © 2003 Peter Hanappe 及其他人员。
Testing and bug triaging:\n AboutView 测试与错误分析:\n Testing and bug triaging:\n AboutView 测试与错误分析:\n
{0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{处理器 单核:} other{处理器 # 核:}} {0, plural, one{Processor:} other{# Processors:}} AboutView \"Processor:\" or \"2 Processors:\" {0, plural, one{处理器 单核:} other{处理器 # 核:}}
%d MiB total AboutView 总计 %d MiB
The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku所独有的代码,尤其是内核及与之紧密关联的所有应用程序的代码,它们都在 <MIT 协议> 条款下发布。那些包含第三方代码的系统库则在 <LGPL 协议> 下发布。您可以在下述信息中找到第三方部分代码的版权信息。\n\n The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the <MIT license>. Some system libraries contain third party code distributed under the <LGPL license>. You can find the copyrights to third party code below.\n\n AboutView <MIT license> and <LGPL license> aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Haiku所独有的代码,尤其是内核及与之紧密关联的所有应用程序的代码,它们都在 <MIT 协议> 条款下发布。那些包含第三方代码的系统库则在 <LGPL 协议> 下发布。您可以在下述信息中找到第三方部分代码的版权信息。\n\n
%d MiB total AboutView 总计 %d MiB
Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView 版权所有 © 1996-1997 Jeff Prosise,保留所有权利。 Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView 版权所有 © 1996-1997 Jeff Prosise,保留所有权利。
Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView 版权所有 © 1999-2006 Brian Paul. Mesa3D 项目,保留所有权利。 Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView 版权所有 © 1999-2006 Brian Paul. Mesa3D 项目,保留所有权利。
Copyright © 2010-2011 Google Inc. All rights reserved. AboutView 版权所有 © 2010-2011 Google Inc,保留所有权利。 Copyright © 2010-2011 Google Inc. All rights reserved. AboutView 版权所有 © 2010-2011 Google Inc,保留所有权利。
@@ -48,8 +48,8 @@ Source Code: AboutView 源代码:
\nCopyrights\n\n AboutView \n版权所有\n\n \nCopyrights\n\n AboutView \n版权所有\n\n
GNU GPL v3 AboutWindow GNU GPL v3 GNU GPL v3 AboutWindow GNU GPL v3
Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView 版权所有 © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. Copyright © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg. AboutView 版权所有 © 1996-2002, 2006 David Turner, Robert Wilhelm and Werner Lemberg.
The HaikuPorts team\n AboutView Haiku-Ports 小组\n
Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView 基于GPL、LGPL许可证发布的包含在GNU工程的自由软件:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\n版权所有 © 自由软件基金会(The Free Software Foundation)。 Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView 基于GPL、LGPL许可证发布的包含在GNU工程的自由软件:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, wget, ncurses, termcap, Bourne Again Shell.\n版权所有 © 自由软件基金会(The Free Software Foundation)。
The HaikuPorts team\n AboutView Haiku-Ports 小组\n
Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView 包含来自 FreeBSD 项目软件,基于 BSD 协议释放:\nftpd, ping, telnet, telnetd, traceroute\n版权所有 © 1994-2008 FreeBSD 项目组。 保留所有权利。 Contains software from the FreeBSD Project, released under the BSD license:\nftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView 包含来自 FreeBSD 项目软件,基于 BSD 协议释放:\nftpd, ping, telnet, telnetd, traceroute\n版权所有 © 1994-2008 FreeBSD 项目组。 保留所有权利。
Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView 版权所有 © 2002-2003 Steve Lhomme,保留所有权利。 Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView 版权所有 © 2002-2003 Steve Lhomme,保留所有权利。
Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard 等 Copyright © 2000-2019 Fabrice Bellard, et al. AboutView Copyright © 2000-2019 Fabrice Bellard 等
@@ -1,4 +1,4 @@
1 italian x-vnd.Haiku-ActivityMonitor 2601047281 1 italian x-vnd.Haiku-ActivityMonitor 826097672
Teams DataSource Team Teams DataSource Team
Semaphores DataSource Semafori Semaphores DataSource Semafori
TX DataSource Shorter version for Sending TX TX DataSource Shorter version for Sending TX
@@ -24,6 +24,7 @@ Settings… ActivityWindow Impostazioni...
Block cache DataSource Cache a blocchi Block cache DataSource Cache a blocchi
Memory DataSource Memoria Memory DataSource Memoria
CPU usage DataSource Uso della CPU CPU usage DataSource Uso della CPU
CPU speed DataSource Velocità della CPU
Quit ActivityWindow Esci Quit ActivityWindow Esci
Raw clipboard DataSource Appunti binari Raw clipboard DataSource Appunti binari
Settings ActivityWindow Impostazioni Settings ActivityWindow Impostazioni
@@ -32,6 +33,7 @@ Used memory DataSource Memoria utilizzata
Show legend ActivityView Mostra legenda Show legend ActivityView Mostra legenda
Cached memory DataSource Memoria cache Cached memory DataSource Memoria cache
CPU %d usage DataSource Utilizzo CPU %d CPU %d usage DataSource Utilizzo CPU %d
CPU %d speed DataSource Velocità %d della CPU
File ActivityWindow File File ActivityWindow File
Ports DataSource Porte Ports DataSource Porte
Page faults DataSource Page fault Page faults DataSource Page fault
+1 -1
View File
@@ -37,7 +37,7 @@ The following partitions were detected. Please check the box next to the partiti
After five seconds DefaultPartitionPage Beş saniye sonra After five seconds DefaultPartitionPage Beş saniye sonra
Timeout: %s DefaultPartitionPage Zaman aşımı: %s Timeout: %s DefaultPartitionPage Zaman aşımı: %s
The Master Boot Record could not be restored! BootManagerController Ana Önyükleme Kaydı geri yüklenemedi! The Master Boot Record could not be restored! BootManagerController Ana Önyükleme Kaydı geri yüklenemedi!
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager only works with IBM PC MBR partitions. BootManagerController Mevcut sabit diskin bölüm tablosu Önyükleme Yöneticisi ile uyumlu değil.\nÖnyükleme Yöneticisi yalnızca IBM PC MBR bölümleri ile uyumludur. The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager only works with IBM PC MBR partitions. BootManagerController İlk sabit diskin bölüm tablosu Önyükleme Yöneticisi ile uyumlu değil.\nÖnyükleme Yöneticisi yalnızca IBM PC MBR bölümleri ile uyumludur.
Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Önyükleme Yöneticisi'nin kurulacağı veya kaldırılacağı diski seçin. Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Önyükleme Yöneticisi'nin kurulacağı veya kaldırılacağı diski seçin.
After four seconds DefaultPartitionPage Dört saniye sonra After four seconds DefaultPartitionPage Dört saniye sonra
Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Adsız %d Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Adsız %d
+1 -1
View File
@@ -46,7 +46,7 @@ Modifier tone letters UnicodeBlocks Ton değiştiren harfler
Kaithi UnicodeBlocks Kaithi Kaithi UnicodeBlocks Kaithi
Psalter Pahlavi UnicodeBlocks Mezmur Pehlevice Psalter Pahlavi UnicodeBlocks Mezmur Pehlevice
Newa UnicodeBlocks Newa dili Newa UnicodeBlocks Newa dili
View CharacterWindow Görünüm View CharacterWindow Görüntü
Rumi numeral symbols UnicodeBlocks Rumi sayısal semboller Rumi numeral symbols UnicodeBlocks Rumi sayısal semboller
Enclosed CJK letters and months UnicodeBlocks İliştirilmiş ÇJK harfleri ve ayları Enclosed CJK letters and months UnicodeBlocks İliştirilmiş ÇJK harfleri ve ayları
Deseret UnicodeBlocks Deseret Deseret UnicodeBlocks Deseret
+3 -3
View File
@@ -12,7 +12,7 @@ Waiting… CodyCam Bekleniyor…
Passive FTP CodyCam Pasif FTP Passive FTP CodyCam Pasif FTP
Every 10 minutes CodyCam Her 10 dakikada bir Every 10 minutes CodyCam Her 10 dakikada bir
Every minute CodyCam Her dakika Every minute CodyCam Her dakika
Capture Rate Menu CodyCam Yakalama oranı menüsü Capture Rate Menu CodyCam Yakalama hızı menüsü
Cannot seek time source! CodyCam Zaman kaynağına bakılamıyor! Cannot seek time source! CodyCam Zaman kaynağına bakılamıyor!
Server login failed VideoConsumer.cpp Sunucu oturum açması başarısız oldu Server login failed VideoConsumer.cpp Sunucu oturum açması başarısız oldu
on or off expected Settings Do not translate 'on' and 'off' açık veya kapalı bekleniyordu on or off expected Settings Do not translate 'on' and 'off' açık veya kapalı bekleniyordu
@@ -20,7 +20,7 @@ invalid upload client %ld\n VideoConsumer.cpp geçersiz yükleme istemcisi %ld\
Every 30 seconds CodyCam Her 30 saniyede bir Every 30 seconds CodyCam Her 30 saniyede bir
Cannot create a video window CodyCam Bir video penceresi oluşturulamıyor Cannot create a video window CodyCam Bir video penceresi oluşturulamıyor
Cannot register the video window CodyCam Video penceresi kaydedilemiyor Cannot register the video window CodyCam Video penceresi kaydedilemiyor
capture rate expected CodyCam yakalama oranı bekleniyordu capture rate expected CodyCam beklenen yakalama hızı
Quit CodyCam Çık Quit CodyCam Çık
Cannot connect the video source to the video window CodyCam Video kaynağı video penceresine bağlanamıyor Cannot connect the video source to the video window CodyCam Video kaynağı video penceresine bağlanamıyor
read: %d\n SftpClient oku: %d\n read: %d\n SftpClient oku: %d\n
@@ -65,7 +65,7 @@ password CodyCam parola
Local CodyCam Yerel Local CodyCam Yerel
Stop video CodyCam Videoyu durdur Stop video CodyCam Videoyu durdur
Last Capture: VideoConsumer.cpp Son yakalama: Last Capture: VideoConsumer.cpp Son yakalama:
Rate: CodyCam Oran: Rate: CodyCam Hız:
Couldn't find requested directory on server VideoConsumer.cpp İstenilen dizin sunucuda bulunamadı Couldn't find requested directory on server VideoConsumer.cpp İstenilen dizin sunucuda bulunamadı
Cannot find the media roster CodyCam Ortam listesi bulunamıyor Cannot find the media roster CodyCam Ortam listesi bulunamıyor
Type: CodyCam Tür: Type: CodyCam Tür:
@@ -1,4 +1,5 @@
1 italian application/x-vnd.Cortex.AddOnHost 826663209 1 italian application/x-vnd.Cortex.AddOnHost 1256552338
Continue CortexAddOnHost Continua Continue CortexAddOnHost Continua
Cortex AddOnHost CortexAddOnHost AddOnHost della Cortex
Quit CortexAddOnHost Esci Quit CortexAddOnHost Esci
This program runs in the background, and is started automatically by Cortex when necessary. You probably don't want to start it manually. CortexAddOnHost Questo programma funziona in background, ed è avviato automaticamente da Cortex quando necessario. Probabilmente non hai bisogno di avviarlo manualmente. This program runs in the background, and is started automatically by Cortex when necessary. You probably don't want to start it manually. CortexAddOnHost Questo programma funziona in background, ed è avviato automaticamente da Cortex quando necessario. Probabilmente non hai bisogno di avviarlo manualmente.
@@ -1,4 +1,4 @@
1 italian application/x-vnd.Cortex.InfoView 3788145961 1 italian application/x-vnd.Cortex.InfoView 2382053937
Offset InfoView Compensazione Offset InfoView Compensazione
Description DormantNodeInfoView Descrizione Description DormantNodeInfoView Descrizione
Byte order InfoView Ordine dei byte Byte order InfoView Ordine dei byte
@@ -16,6 +16,7 @@ Buffer size InfoView Dimensione del buffer
\n- Quality: FileNodeInfoView \n- Qualità: \n- Quality: FileNodeInfoView \n- Qualità:
Kinds LiveNodeInfoView Tipi di Kinds LiveNodeInfoView Tipi di
Application AppNodeInfoView Applicazione Application AppNodeInfoView Applicazione
Flavor flags DormantNodeInfoView Flag dei flavor
Max. instances DormantNodeInfoView Istanze massime Max. instances DormantNodeInfoView Istanze massime
\n- Duration: FileNodeInfoView \n- Durata: \n- Duration: FileNodeInfoView \n- Durata:
Dormant media node DormantNodeInfoView Nodo media inattivo Dormant media node DormantNodeInfoView Nodo media inattivo
@@ -44,6 +45,7 @@ Format InfoView Formato
Version AppNodeInfoView Versione Version AppNodeInfoView Versione
AddOn ID DormantNodeInfoView ID componente aggiuntivo AddOn ID DormantNodeInfoView ID componente aggiuntivo
Frame size InfoView Dimensione cornice Frame size InfoView Dimensione cornice
Flavor ID DormantNodeInfoView ID dei flavor
Run mode LiveNodeInfoView Modo di avvio Run mode LiveNodeInfoView Modo di avvio
\n- Codec: FileNodeInfoView \n- Codec: \n- Codec: FileNodeInfoView \n- Codec:
Port LiveNodeInfoView Porta Port LiveNodeInfoView Porta
@@ -35,11 +35,11 @@ Channel mask InfoView Kanal maskesi
Orientation InfoView Yön Orientation InfoView Yön
Live file-interface node FileNodeInfoView Canlı dosya arayüzü düğümü Live file-interface node FileNodeInfoView Canlı dosya arayüzü düğümü
Channels InfoView Kanallar Channels InfoView Kanallar
Sample rate InfoView Örnek oran Sample rate InfoView Örnek hız
File format FileNodeInfoView Dosya biçimi File format FileNodeInfoView Dosya biçimi
(no file) FileNodeInfoView (dosya yok) (no file) FileNodeInfoView (dosya yok)
Media input InfoView Ortam girişi Media input InfoView Ortam girişi
Bit rate InfoView Bit oranı Bit rate InfoView Bit hızı
Input format DormantNodeInfoView Giriş biçimi Input format DormantNodeInfoView Giriş biçimi
Format InfoView Biçim Format InfoView Biçim
Version AppNodeInfoView Sürüm Version AppNodeInfoView Sürüm
@@ -19,5 +19,5 @@ Open… CortexRouteApp Ouvrir…
Connection made CortexRouteApp Connexion effectuée Connection made CortexRouteApp Connexion effectuée
Show add-ons CortexRouteApp Montrer les extensions Show add-ons CortexRouteApp Montrer les extensions
Quit CortexRouteApp Quitter Quit CortexRouteApp Quitter
Cortex/Route 2.1.2\n\nCopyright 1999-2000 Eric Moon\nAll rights reserved.\n\nThe Cortex Team:\n\nChristopher Lenz: UI\nEric Moon: UI, back-end\n\nThanks to:\nJohn Ashmun\nJon Watte\nDoug Wright\n<your name here>\n\nCertain icons used herein are the property of\nBe, Inc. and are used by permission. CortexRouteApp Cortex/Route 2.1.2\n\nCopyright 1999-2000 Eric Moon\nTous droits réservés.\n\nL’équipe Cortex :\n\nChristopher Lenz: UI\nEric Moon: UI, dorsal\n\nRemerciements:\nJohn Ashmun\nJon Watte\nDoug Wright\n<votre nom ici>\n\nCertaines icônes utilisées ici sont la propriété de\nBe, Inc. et sont utilisées avec leur permission. Cortex/Route 2.1.2\n\nCopyright 1999-2000 Eric Moon\nAll rights reserved.\n\nThe Cortex Team:\n\nChristopher Lenz: UI\nEric Moon: UI, back-end\n\nThanks to:\nJohn Ashmun\nJon Watte\nDoug Wright\n<your name here>\n\nCertain icons used herein are the property of\nBe, Inc. and are used by permission. CortexRouteApp Cortex/Route 2.1.2\n\nCopyright 1999-2000 Eric Moon\nTous droits réservés.\n\nL’équipe Cortex :\n\nChristopher Lenz : UI\nEric Moon : UI, dorsal\n\nRemerciements :\nJohn Ashmun\nJon Watte\nDoug Wright\n<votre nom ici>\n\nCertaines icônes utilisées ici sont la propriété de\nBe, Inc. et sont utilisées avec leur permission.
Tried format: CortexRouteApp Format essayé : Tried format: CortexRouteApp Format essayé :
@@ -1,7 +1,8 @@
1 italian application/x-vnd.Cortex.Route 3666174570 1 italian application/x-vnd.Cortex.Route 25925955
Node '%name%' released CortexRouteApp Nodo '%name%' rilasciato Node '%name%' released CortexRouteApp Nodo '%name%' rilasciato
OK CortexRouteApp OK OK CortexRouteApp OK
About Cortex/Route… CortexRouteApp Informazioni su Cortex/Route… About Cortex/Route… CortexRouteApp Informazioni su Cortex/Route…
File CortexRouteApp Archivio
Connection '%name%' made CortexRouteApp Connessione '%name%' effettuata Connection '%name%' made CortexRouteApp Connessione '%name%' effettuata
Save nodes… CortexRouteApp Salva nodi… Save nodes… CortexRouteApp Salva nodi…
%producer% and %consumer% CortexRouteApp %producer% e %consumer% %producer% and %consumer% CortexRouteApp %producer% e %consumer%
@@ -14,6 +15,7 @@ Untitled group CortexRouteApp Gruppo senza titolo
Connection failed CortexRouteApp Connessione fallita Connection failed CortexRouteApp Connessione fallita
Connection '%name%' broken CortexRouteApp Connessione '%name%' interrotta Connection '%name%' broken CortexRouteApp Connessione '%name%' interrotta
Between: CortexRouteApp Tra: Between: CortexRouteApp Tra:
Cortex CortexRouteApp Cortex
Open… CortexRouteApp Apri… Open… CortexRouteApp Apri…
Pull palettes CortexRouteApp Scorri palette Pull palettes CortexRouteApp Scorri palette
Connection made CortexRouteApp Connessione effettuata Connection made CortexRouteApp Connessione effettuata
@@ -0,0 +1,2 @@
1 italian application/x-vnd.Cortex.TipManager 3157385962
(no info) TipWindow (nessuna informazione)
@@ -9,7 +9,7 @@ Offline TransportView Desplaçament
(???) TransportView (???) (???) TransportView (???)
Stop TransportView Atura Stop TransportView Atura
(no group) TransportView (sense grup) (no group) TransportView (sense grup)
Drop data TransportView Eliminació de dades Drop data TransportView Deixeu-hi anar dades
To: TransportView A: To: TransportView A:
Recording TransportView Gravació Recording TransportView Gravació
Increase latency TransportView Augmenta la latència Increase latency TransportView Augmenta la latència
@@ -1,4 +1,4 @@
1 friulian application/x-vnd.Cortex.TransportView 1402918430 1 friulian application/x-vnd.Cortex.TransportView 1534931965
Roll TransportView Disrodole Roll TransportView Disrodole
(none) TransportView (nissun) (none) TransportView (nissun)
{0, plural, one{# node} other{# nodes}} TransportView {0, plural, one{# grop} other{# grops}} {0, plural, one{# node} other{# nodes}} TransportView {0, plural, one{# grop} other{# grops}}
@@ -19,4 +19,5 @@ Decrease precision TransportView Diminuìs la precision
System clock TransportView Orloi di sisteme System clock TransportView Orloi di sisteme
From: TransportView Di: From: TransportView Di:
Roll from TransportView Disrodole di Roll from TransportView Disrodole di
Preroll TransportView Pre-voluçament
Run mode: TransportView Modalitât esecuzion: Run mode: TransportView Modalitât esecuzion:
@@ -0,0 +1,21 @@
1 italian application/x-vnd.Cortex.TransportView 258714237
(none) TransportView (nessuno)
Start TransportView Avvio
No errors. TransportView Nessun errore.
to TransportView a
Offline TransportView Offline
(???) TransportView (???)
Stop TransportView Ferma
(no group) TransportView (nessun gruppo)
Drop data TransportView Rilascia i dati
To: TransportView A:
Recording TransportView Registrazione in corso
Increase latency TransportView Aumenta la latenza
Time source: TransportView Sorgente temporale:
DAC time source TransportView Sorgente temporale DAC
Decrease precision TransportView Decrementa la precisione
System clock TransportView Orologio di sistema
From: TransportView Da:
Roll from TransportView Avvolgi da
Preroll TransportView Preavvolgimento
Run mode: TransportView Modalità di avvio:
@@ -11,7 +11,7 @@ Stop TransportView Durdur
(no group) TransportView (grup yok) (no group) TransportView (grup yok)
Drop data TransportView Veriyi bırak Drop data TransportView Veriyi bırak
To: TransportView Kime: To: TransportView Kime:
Recording TransportView Kaydediliyor Recording TransportView Kayıt
Increase latency TransportView Gecikmeyi artır Increase latency TransportView Gecikmeyi artır
Time source: TransportView Zaman kaynağı: Time source: TransportView Zaman kaynağı:
DAC time source TransportView DAC zaman kaynağı DAC time source TransportView DAC zaman kaynağı
@@ -1,4 +1,5 @@
1 italian application/x-vnd.moon-Flanger.media_addon 455620896 1 italian application/x-vnd.moon-Flanger.media_addon 2443618242
MediaNodeControlApp: couldn't get node info (%ld):\n%s\n CortexAddOnsCommonMediaNodeControlApp MediaNodeControlApp: non posso ottenere le informazioni sul nodo (%ld):\n%s\n
An add-on version of FlangerNode.\nby Eric Moon (16 June, 1999) CortexAddOnsFlanger Una versione add-on di FlangerNode.\nda Eric Moon (16 giugno 1999) An add-on version of FlangerNode.\nby Eric Moon (16 June, 1999) CortexAddOnsFlanger Una versione add-on di FlangerNode.\nda Eric Moon (16 giugno 1999)
Delay CortexAddOnsFlanger Ritardo Delay CortexAddOnsFlanger Ritardo
Depth CortexAddOnsFlanger Profondità Depth CortexAddOnsFlanger Profondità
+1 -1
View File
@@ -37,7 +37,7 @@ Homogenous buffers MediaString Memòria intermèdia homogènia
Interlaced MediaString Entrellaçament Interlaced MediaString Entrellaçament
{0, plural, one{# channel}other{# channels}} MediaString {0, plural, one{# canal}other{# canals}} {0, plural, one{# channel}other{# channels}} MediaString {0, plural, one{# canal}other{# canals}}
15 bit RGBA MediaString RGBA de 15 bits 15 bit RGBA MediaString RGBA de 15 bits
Drop data MediaString Eliminació de dades Drop data MediaString Deixeu-hi anar dades
AVI MediaString AVI AVI MediaString AVI
YUV9 MediaString YUV9 YUV9 MediaString YUV9
Hz MediaString Hz Hz MediaString Hz
@@ -1,4 +1,4 @@
1 friulian application/x-vnd.Cortex.support 168903602 1 friulian application/x-vnd.Cortex.support 2097798758
Header has flags MediaString La intestazion e à opzions Header has flags MediaString La intestazion e à opzions
32 bit HLS MediaString HLS a 32 bit 32 bit HLS MediaString HLS a 32 bit
Recording MediaString Regjistrazion Recording MediaString Regjistrazion
@@ -102,6 +102,7 @@ WAV format family MediaString Famee di formâts WAV
(NTSC) MediaString (NTSC) (NTSC) MediaString (NTSC)
Physical input MediaString Jentrade fisiche Physical input MediaString Jentrade fisiche
Big endian MediaString Big endian Big endian MediaString Big endian
Sub MediaString Sub
{0, plural,one{# byte (max)}other{# bytes (max)}} MediaString {0, plural,one{# byte (massim)}other{# bytes (massim)}} {0, plural,one{# byte (max)}other{# bytes (max)}} MediaString {0, plural,one{# byte (massim)}other{# bytes (massim)}}
YUV411 MediaString YUV411 YUV411 MediaString YUV411
Multistream media MediaString Multimedia a flus multiplis Multistream media MediaString Multimedia a flus multiplis
+1 -1
View File
@@ -28,7 +28,7 @@ Auto-raise PreferencesWindow Kendiliğinden öne getir
Recent folders: PreferencesWindow Son kullanılan klasörler: Recent folders: PreferencesWindow Son kullanılan klasörler:
Show application expander PreferencesWindow Uygulama genişleticisini göster Show application expander PreferencesWindow Uygulama genişleticisini göster
Close all WindowMenu Tümünü kapat Close all WindowMenu Tümünü kapat
Deskbar preferences PreferencesWindow Masaüstü Çubuğu Tercihleri Deskbar preferences PreferencesWindow Masaüstü Çubuğu tercihleri
Mount DeskbarMenu Bağla Mount DeskbarMenu Bağla
Revert PreferencesWindow Eski haline döndür Revert PreferencesWindow Eski haline döndür
Small PreferencesWindow Küçük Small PreferencesWindow Küçük
+3 -1
View File
@@ -1,14 +1,16 @@
1 catalan; valencian x-vnd.Haiku-Devices 3345509916 1 catalan; valencian x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView Bus ACPI ACPI bus DevicesView Bus ACPI
Encryption controller Device Controlador del xifratge Encryption controller Device Controlador del xifratge
Bus Information Device Informació del bus Bus Information Device Informació del bus
Devices System name Dispositius Devices System name Dispositius
USB bus DevicesView Bus USB
Graphics Peripheral DeviceSCSI Perifèric gràfic Graphics Peripheral DeviceSCSI Perifèric gràfic
Processor Device Processador Processor Device Processador
Generate system information DevicesView Genera la informació del sistema Generate system information DevicesView Genera la informació del sistema
Class info DevicePCI Informació de la classe Class info DevicePCI Informació de la classe
ACPI Information DeviceACPI Informació ACPI ACPI Information DeviceACPI Informació ACPI
Detailed DevicesView Detallat Detailed DevicesView Detallat
USB bus Device Bus USB
Computer DevicesView Ordinador Computer DevicesView Ordinador
Communications DeviceSCSI Comunicacions Communications DeviceSCSI Comunicacions
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Informació de classe:\t\t\t\t: %classInfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI Informació de classe:\t\t\t\t: %classInfo%
+3 -1
View File
@@ -1,14 +1,16 @@
1 french x-vnd.Haiku-Devices 3345509916 1 french x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView Bus ACPI ACPI bus DevicesView Bus ACPI
Encryption controller Device Contrôleur de chiffrement Encryption controller Device Contrôleur de chiffrement
Bus Information Device Informations du bus Bus Information Device Informations du bus
Devices System name Périphériques Devices System name Périphériques
USB bus DevicesView Bus USB
Graphics Peripheral DeviceSCSI Périphérique graphique Graphics Peripheral DeviceSCSI Périphérique graphique
Processor Device Microprocesseur Processor Device Microprocesseur
Generate system information DevicesView Générer les informations systèmes Generate system information DevicesView Générer les informations systèmes
Class info DevicePCI Information de classe Class info DevicePCI Information de classe
ACPI Information DeviceACPI Informations ACPI ACPI Information DeviceACPI Informations ACPI
Detailed DevicesView Détail Detailed DevicesView Détail
USB bus Device Bus USB
Computer DevicesView Ordinateur Computer DevicesView Ordinateur
Communications DeviceSCSI Communications Communications DeviceSCSI Communications
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Information de classe\t\t\t: %classInfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI Information de classe\t\t\t: %classInfo%
+3 -1
View File
@@ -1,14 +1,16 @@
1 hungarian x-vnd.Haiku-Devices 3345509916 1 hungarian x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView ACPI port ACPI bus DevicesView ACPI port
Encryption controller Device Titkosító vezérlő Encryption controller Device Titkosító vezérlő
Bus Information Device Busz-információ Bus Information Device Busz-információ
Devices System name Eszközök Devices System name Eszközök
USB bus DevicesView USB busz
Graphics Peripheral DeviceSCSI Grafikus periféria Graphics Peripheral DeviceSCSI Grafikus periféria
Processor Device Processzor Processor Device Processzor
Generate system information DevicesView Rendszerinformáció létrehozása Generate system information DevicesView Rendszerinformáció létrehozása
Class info DevicePCI Osztály-információk Class info DevicePCI Osztály-információk
ACPI Information DeviceACPI ACPI információ ACPI Information DeviceACPI ACPI információ
Detailed DevicesView Részletek Detailed DevicesView Részletek
USB bus Device USB busz
Computer DevicesView Számítógép Computer DevicesView Számítógép
Communications DeviceSCSI Kommunikáció Communications DeviceSCSI Kommunikáció
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Osztály információi\t\t\t\t: %classinfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI Osztály információi\t\t\t\t: %classinfo%
+3 -1
View File
@@ -1,14 +1,16 @@
1 japanese x-vnd.Haiku-Devices 3345509916 1 japanese x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView ACPI バス ACPI bus DevicesView ACPI バス
Encryption controller Device 暗号化コントローラー Encryption controller Device 暗号化コントローラー
Bus Information Device バス情報 Bus Information Device バス情報
Devices System name デバイス Devices System name デバイス
USB bus DevicesView USB バス
Graphics Peripheral DeviceSCSI グラフィック装置 Graphics Peripheral DeviceSCSI グラフィック装置
Processor Device プロセッサ Processor Device プロセッサ
Generate system information DevicesView システム情報の作成 Generate system information DevicesView システム情報の作成
Class info DevicePCI クラス情報 Class info DevicePCI クラス情報
ACPI Information DeviceACPI ACPI 情報 ACPI Information DeviceACPI ACPI 情報
Detailed DevicesView 詳細 Detailed DevicesView 詳細
USB bus Device USB バス
Computer DevicesView コンピューター Computer DevicesView コンピューター
Communications DeviceSCSI 通信 Communications DeviceSCSI 通信
Class Info:\t\t\t\t: %classInfo% DeviceSCSI クラス情報:\t\t\t\t: %classInfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI クラス情報:\t\t\t\t: %classInfo%
+3 -1
View File
@@ -1,14 +1,16 @@
1 swedish x-vnd.Haiku-Devices 3345509916 1 swedish x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView ACPI-buss ACPI bus DevicesView ACPI-buss
Encryption controller Device Krypteringsstyrenhet Encryption controller Device Krypteringsstyrenhet
Bus Information Device Bus Information Bus Information Device Bus Information
Devices System name Enheter Devices System name Enheter
USB bus DevicesView USB-buss
Graphics Peripheral DeviceSCSI Grafisk kringutrustning Graphics Peripheral DeviceSCSI Grafisk kringutrustning
Processor Device Processor Processor Device Processor
Generate system information DevicesView Generera systeminformation Generate system information DevicesView Generera systeminformation
Class info DevicePCI Klass information Class info DevicePCI Klass information
ACPI Information DeviceACPI ACPI-information ACPI Information DeviceACPI ACPI-information
Detailed DevicesView Detaljerat Detailed DevicesView Detaljerat
USB bus Device USB-buss
Computer DevicesView Dator Computer DevicesView Dator
Communications DeviceSCSI Kommunikations Communications DeviceSCSI Kommunikations
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Klassinformation:\t\t\t\t: %classInfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI Klassinformation:\t\t\t\t: %classInfo%
+4 -2
View File
@@ -1,14 +1,16 @@
1 turkish x-vnd.Haiku-Devices 3345509916 1 turkish x-vnd.Haiku-Devices 214685744
ACPI bus DevicesView ACPI veri yolu ACPI bus DevicesView ACPI veri yolu
Encryption controller Device Şifreleme denetleyicisi Encryption controller Device Şifreleme denetleyicisi
Bus Information Device Veri yolu bilgisi Bus Information Device Veri yolu bilgisi
Devices System name Aygıtlar Devices System name Aygıtlar
USB bus DevicesView USB veri yolu
Graphics Peripheral DeviceSCSI Grafik çevre birimi Graphics Peripheral DeviceSCSI Grafik çevre birimi
Processor Device İşlemci Processor Device İşlemci
Generate system information DevicesView Sistem bilgisi oluştur Generate system information DevicesView Sistem bilgisi üret
Class info DevicePCI Sınıf bilgisi Class info DevicePCI Sınıf bilgisi
ACPI Information DeviceACPI ACPI bilgisi ACPI Information DeviceACPI ACPI bilgisi
Detailed DevicesView Ayrıntılı Detailed DevicesView Ayrıntılı
USB bus Device USB veri yolu
Computer DevicesView Bilgisayar Computer DevicesView Bilgisayar
Communications DeviceSCSI İletişim Communications DeviceSCSI İletişim
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Sınıf bilgisi:\t\t\t\t: %classInfo% Class Info:\t\t\t\t: %classInfo% DeviceSCSI Sınıf bilgisi:\t\t\t\t: %classInfo%
+1 -1
View File
@@ -29,7 +29,7 @@ Open file… FileWindow Ouvrir un fichier…
32 bit unsigned pointer: TypeEditors Pointeur non signé sur 32 bits : 32 bit unsigned pointer: TypeEditors Pointeur non signé sur 32 bits :
DiskProbe request DiskProbe Requête Sondeur Disque DiskProbe request DiskProbe Requête Sondeur Disque
Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexa Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexa
Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView L’écriture dans le fichier a échouée:\n%s\n\nToutes les modifications effectuées seront perdues lorsque vous quitterez lapplication. Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView L’écriture dans le fichier a échouée :\n%s\n\nToutes les modifications effectuées seront perdues lorsque vous quitterez lapplication.
Examine device: OpenWindow Examiner le périphérique : Examine device: OpenWindow Examiner le périphérique :
Number editor TypeEditors Éditeur de nombre Number editor TypeEditors Éditeur de nombre
Icon TypeEditors Icône Icon TypeEditors Icône
+2 -2
View File
@@ -16,7 +16,7 @@ File offset: ProbeView Dosya ofseti:
Add ProbeView Ekle Add ProbeView Ekle
64 bit signed value: TypeEditors 64 bit imzalanmış değer: 64 bit signed value: TypeEditors 64 bit imzalanmış değer:
Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow \"%s\" özniteliğini \"%s\" dosyasından kaldırmak istediğinizden emin misiniz?\n\nBu işlem geri alınamaz. Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow \"%s\" özniteliğini \"%s\" dosyasından kaldırmak istediğinizden emin misiniz?\n\nBu işlem geri alınamaz.
No type editor available AttributeWindow Bir tür düzenleyicisi mevcut değil No type editor available AttributeWindow Kullanılabilir bir tür düzenleyicisi yok
Print… ProbeView Yazdır… Print… ProbeView Yazdır…
New… FileWindow Yeni… New… FileWindow Yeni…
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. ne: '%.4s'\n\n what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. ne: '%.4s'\n\n
@@ -113,7 +113,7 @@ Find FindWindow Bul
Attribute: ProbeView Öznitelik: Attribute: ProbeView Öznitelik:
Block ProbeView Blok Block ProbeView Blok
Find again ProbeView Yeniden bul Find again ProbeView Yeniden bul
View ProbeView This is the last menubar item 'File Edit Block View' Görünüm View ProbeView This is the last menubar item 'File Edit Block View' Görüntü
Could not read image TypeEditors Image means here a picture file, not a disk image. Görsel okunamadı Could not read image TypeEditors Image means here a picture file, not a disk image. Görsel okunamadı
DiskProbe request ProbeView DiskProbe isteği DiskProbe request ProbeView DiskProbe isteği
Double precision floating-point value: TypeEditors Çifte kesinlikli kayan noktalı değer: Double precision floating-point value: TypeEditors Çifte kesinlikli kayan noktalı değer:
+2 -2
View File
@@ -5,12 +5,12 @@ Scanning %refName% Scanner %refName% taranıyor
Size Info Window Boyut Size Info Window Boyut
Rescan Pie View Yeniden tara Rescan Pie View Yeniden tara
Kind Info Window Tür Kind Info Window Tür
file unavailable Pie View dosya mevcut değil file unavailable Pie View dosya kullanılamıyor
no supporting apps Pie View destekleyen uygulama yok no supporting apps Pie View destekleyen uygulama yok
Path Info Window Yol Path Info Window Yol
Scan Status View Tara Scan Status View Tara
Rescan Status View Yeniden tara Rescan Status View Yeniden tara
file unavailable Status View dosya mevcut değil file unavailable Status View dosya kullanılamıyor
Get info Pie View Bilgi al Get info Pie View Bilgi al
DiskUsage System name Disk Kullanımı DiskUsage System name Disk Kullanımı
Created Info Window Oluşturulma: Created Info Window Oluşturulma:
+2 -1
View File
@@ -1,4 +1,4 @@
1 catalan; valencian x-vnd.Haiku-DriveSetup 4048496535 1 catalan; valencian x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow No s'ha pogut desmuntar la partició %s. Could not unmount partition %s. MainWindow No s'ha pogut desmuntar la partició %s.
Mount all MainWindow Munta-ho tot Mount all MainWindow Munta-ho tot
Disk MainWindow Disc Disk MainWindow Disc
@@ -14,6 +14,7 @@ Block size PartitionList Mida de bloc
The panel experienced a problem! MainWindow El plafó ha tingut un problema! The panel experienced a problem! MainWindow El plafó ha tingut un problema!
Device DiskView Dispositiu Device DiskView Dispositiu
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Segur que voleu formatar la partició ampliada d'Intel? Si continueu, se sobreescriurà qualsevol subpartició que contingui. Se us preguntarà un cop més abans d'escriure els canvis al disc. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Segur que voleu formatar la partició ampliada d'Intel? Si continueu, se sobreescriurà qualsevol subpartició que contingui. Se us preguntarà un cop més abans d'escriure els canvis al disc.
Physical block size PartitionList Mida del bloc física
Unmount MainWindow Desmunta Unmount MainWindow Desmunta
Failed to format the partition %s!\n MainWindow No s'ha pogut formatar la partició %s!\n Failed to format the partition %s!\n MainWindow No s'ha pogut formatar la partició %s!\n
Partition size CreateParametersPanel Mida de la partició Partition size CreateParametersPanel Mida de la partició
+2 -1
View File
@@ -1,4 +1,4 @@
1 german x-vnd.Haiku-DriveSetup 3407096167 1 german x-vnd.Haiku-DriveSetup 1508610435
Could not unmount partition %s. MainWindow Partition \"%s\" konnte nicht ausgehangen werden. Could not unmount partition %s. MainWindow Partition \"%s\" konnte nicht ausgehangen werden.
Mount all MainWindow Alle einhängen Mount all MainWindow Alle einhängen
Disk MainWindow Datenträger Disk MainWindow Datenträger
@@ -14,6 +14,7 @@ Block size PartitionList Blockgröße
The panel experienced a problem! MainWindow Es gab ein Problem mit dem Panel! The panel experienced a problem! MainWindow Es gab ein Problem mit dem Panel!
Device DiskView Gerät Device DiskView Gerät
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Soll die Intel Extended Partition tatsächlich formatiert werden? Eventuell enthaltene Unterpartitionen würden überschrieben. Bevor diese Änderungen vorgenommen werden, wird nochmal nachgefragt. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Soll die Intel Extended Partition tatsächlich formatiert werden? Eventuell enthaltene Unterpartitionen würden überschrieben. Bevor diese Änderungen vorgenommen werden, wird nochmal nachgefragt.
Physical block size PartitionList Physische Blockgröße
Unmount MainWindow Aushängen Unmount MainWindow Aushängen
Failed to format the partition %s!\n MainWindow Formatierung der Partition \"%s\" fehlgeschlagen!\n Failed to format the partition %s!\n MainWindow Formatierung der Partition \"%s\" fehlgeschlagen!\n
Partition size CreateParametersPanel Partitionsgröße Partition size CreateParametersPanel Partitionsgröße
+2 -1
View File
@@ -1,4 +1,4 @@
1 french x-vnd.Haiku-DriveSetup 4048496535 1 french x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow Impossible de démonter la partition %s. Could not unmount partition %s. MainWindow Impossible de démonter la partition %s.
Mount all MainWindow Monter tout Mount all MainWindow Monter tout
Disk MainWindow Disque Disk MainWindow Disque
@@ -14,6 +14,7 @@ Block size PartitionList Taille de bloc
The panel experienced a problem! MainWindow La fenêtre a rencontré un problème ! The panel experienced a problem! MainWindow La fenêtre a rencontré un problème !
Device DiskView Périphérique Device DiskView Périphérique
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition étendue Intel ? Toutes les sous-partitions quelle contient seront écrasées si vous continuez. vous serez de nouveau invité à confirmer les modifications avant quelles ne soient écrites sur le disque. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition étendue Intel ? Toutes les sous-partitions quelle contient seront écrasées si vous continuez. vous serez de nouveau invité à confirmer les modifications avant quelles ne soient écrites sur le disque.
Physical block size PartitionList Taille du bloc physique
Unmount MainWindow Démonter Unmount MainWindow Démonter
Failed to format the partition %s!\n MainWindow Impossible de formater la partition %s !\n Failed to format the partition %s!\n MainWindow Impossible de formater la partition %s !\n
Partition size CreateParametersPanel Taille de la partition Partition size CreateParametersPanel Taille de la partition
+2 -1
View File
@@ -1,4 +1,4 @@
1 friulian x-vnd.Haiku-DriveSetup 4048496535 1 friulian x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow Impussibil dismontâ la partizion %s. Could not unmount partition %s. MainWindow Impussibil dismontâ la partizion %s.
Mount all MainWindow Monte dut Mount all MainWindow Monte dut
Disk MainWindow Disc Disk MainWindow Disc
@@ -14,6 +14,7 @@ Block size PartitionList Dimension bloc
The panel experienced a problem! MainWindow Il panel al à vût un probleme! The panel experienced a problem! MainWindow Il panel al à vût un probleme!
Device DiskView Dispositîf Device DiskView Dispositîf
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Formatâ pardabon la partizion estese Intel? Se si continue, cualsisei sot-partizion contignude e vignarà sorescrite. Prime di scrivi lis modifichis sul disc, e vignarà domandade di gnûf une conferme. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Formatâ pardabon la partizion estese Intel? Se si continue, cualsisei sot-partizion contignude e vignarà sorescrite. Prime di scrivi lis modifichis sul disc, e vignarà domandade di gnûf une conferme.
Physical block size PartitionList Dimension bloc fisic
Unmount MainWindow Dismonte Unmount MainWindow Dismonte
Failed to format the partition %s!\n MainWindow No si è rivâts a formatâ la partizion %s!\n Failed to format the partition %s!\n MainWindow No si è rivâts a formatâ la partizion %s!\n
Partition size CreateParametersPanel Dimension de partizion Partition size CreateParametersPanel Dimension de partizion
+2 -1
View File
@@ -1,4 +1,4 @@
1 hungarian x-vnd.Haiku-DriveSetup 4048496535 1 hungarian x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow Nem lehet leválasztani a partíciót (%s). Could not unmount partition %s. MainWindow Nem lehet leválasztani a partíciót (%s).
Mount all MainWindow Összes csatolása Mount all MainWindow Összes csatolása
Disk MainWindow Lemez Disk MainWindow Lemez
@@ -14,6 +14,7 @@ Block size PartitionList Blokk méret
The panel experienced a problem! MainWindow A panel hibát okozott! The panel experienced a problem! MainWindow A panel hibát okozott!
Device DiskView Eszköz Device DiskView Eszköz
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Biztosan megformázod az Intel kiterjesztett partíciót? Az abban szereplő partíciók is törlődnek. A változtatások véglegesítése előtt újra meg kell erősíteni a műveletet. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Biztosan megformázod az Intel kiterjesztett partíciót? Az abban szereplő partíciók is törlődnek. A változtatások véglegesítése előtt újra meg kell erősíteni a műveletet.
Physical block size PartitionList Fizikai blokk méret
Unmount MainWindow Leválasztás Unmount MainWindow Leválasztás
Failed to format the partition %s!\n MainWindow Nem sikerült előkészíteni a partíciót: %s.\n Failed to format the partition %s!\n MainWindow Nem sikerült előkészíteni a partíciót: %s.\n
Partition size CreateParametersPanel A partíció mérete Partition size CreateParametersPanel A partíció mérete
+2 -1
View File
@@ -1,4 +1,4 @@
1 japanese x-vnd.Haiku-DriveSetup 4048496535 1 japanese x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow パーティション %s をマウント解除できません。 Could not unmount partition %s. MainWindow パーティション %s をマウント解除できません。
Mount all MainWindow すべてマウント Mount all MainWindow すべてマウント
Disk MainWindow ディスク Disk MainWindow ディスク
@@ -14,6 +14,7 @@ Block size PartitionList ブロックサイズ
The panel experienced a problem! MainWindow パネルに問題が発生しました。 The panel experienced a problem! MainWindow パネルに問題が発生しました。
Device DiskView デバイス Device DiskView デバイス
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow 本当にIntel Extended Partitionをフォーマットしますか? 続行するとそのサブパーティションがすべて上書きされます。変更がディスクに書き込まれる前にもう一度確認されるでしょう。 Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow 本当にIntel Extended Partitionをフォーマットしますか? 続行するとそのサブパーティションがすべて上書きされます。変更がディスクに書き込まれる前にもう一度確認されるでしょう。
Physical block size PartitionList 物理ブロックサイズ
Unmount MainWindow マウント解除 Unmount MainWindow マウント解除
Failed to format the partition %s!\n MainWindow パーティション %s のフォーマットに失敗しました。\n Failed to format the partition %s!\n MainWindow パーティション %s のフォーマットに失敗しました。\n
Partition size CreateParametersPanel パーティションサイズ Partition size CreateParametersPanel パーティションサイズ
+2 -1
View File
@@ -1,4 +1,4 @@
1 swedish x-vnd.Haiku-DriveSetup 4048496535 1 swedish x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow Kunde inte avmontera partition %s. Could not unmount partition %s. MainWindow Kunde inte avmontera partition %s.
Mount all MainWindow Montera alla Mount all MainWindow Montera alla
Disk MainWindow Disk Disk MainWindow Disk
@@ -14,6 +14,7 @@ Block size PartitionList Blockstorlek
The panel experienced a problem! MainWindow Panelen hade några problem! The panel experienced a problem! MainWindow Panelen hade några problem!
Device DiskView Enhet Device DiskView Enhet
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Är du säker på att du vill formatera Intel Extended Partitionen? Alla underpartitioner som den innehåller kommer att skrivas över om du fortsätter. Du kommer att att bli frågad igen innan ändringar skrivs på disken. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Är du säker på att du vill formatera Intel Extended Partitionen? Alla underpartitioner som den innehåller kommer att skrivas över om du fortsätter. Du kommer att att bli frågad igen innan ändringar skrivs på disken.
Physical block size PartitionList Fysisk blockstorlek
Unmount MainWindow Avmontera Unmount MainWindow Avmontera
Failed to format the partition %s!\n MainWindow Misslyckades att formatera partionen %s!\n Failed to format the partition %s!\n MainWindow Misslyckades att formatera partionen %s!\n
Partition size CreateParametersPanel Partitionsstorlek Partition size CreateParametersPanel Partitionsstorlek
+4 -3
View File
@@ -1,4 +1,4 @@
1 turkish x-vnd.Haiku-DriveSetup 4048496535 1 turkish x-vnd.Haiku-DriveSetup 2150010803
Could not unmount partition %s. MainWindow %s bölümü bağlantısı kesilemedi. Could not unmount partition %s. MainWindow %s bölümü bağlantısı kesilemedi.
Mount all MainWindow Hepsini bağla Mount all MainWindow Hepsini bağla
Disk MainWindow Disk Disk MainWindow Disk
@@ -14,6 +14,7 @@ Block size PartitionList Blok boyutu
The panel experienced a problem! MainWindow Panel bir sorun yaşadı! The panel experienced a problem! MainWindow Panel bir sorun yaşadı!
Device DiskView Aygıt Device DiskView Aygıt
Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Intel Genişletilmiş Bölümünü biçimlendirmek istediğinizden emin misiniz? İçerdiği tüm altbölümler üzerine yazılacaktır. Değişiklikler diske yazılmadan önce bir kez daha onayınız istenecektir. Are you sure you want to format the Intel Extended Partition? Any subpartitions it contains will be overwritten if you continue. You will be asked again before changes are written to the disk. MainWindow Intel Genişletilmiş Bölümünü biçimlendirmek istediğinizden emin misiniz? İçerdiği tüm altbölümler üzerine yazılacaktır. Değişiklikler diske yazılmadan önce bir kez daha onayınız istenecektir.
Physical block size PartitionList Fiziksel blok boyutu
Unmount MainWindow Bağlantıyı kes Unmount MainWindow Bağlantıyı kes
Failed to format the partition %s!\n MainWindow %s bölümünün biçimlendirilmesi başarısız oldu!\n Failed to format the partition %s!\n MainWindow %s bölümünün biçimlendirilmesi başarısız oldu!\n
Partition size CreateParametersPanel Bölüm boyutu Partition size CreateParametersPanel Bölüm boyutu
@@ -45,10 +46,10 @@ The selected partition does not contain a partitioning system. MainWindow Seçi
End: %s Support Son: %s End: %s Support Son: %s
Partition type PartitionList Bölüm türü Partition type PartitionList Bölüm türü
Unable to find the selected partition by ID. MainWindow Seçili bölüm ID ile bulunamıyor. Unable to find the selected partition by ID. MainWindow Seçili bölüm ID ile bulunamıyor.
The currently selected partition is not empty. MainWindow Mevcut seçili bölüm boş değil. The currently selected partition is not empty. MainWindow Şu an seçili olan bölüm boş değil.
Are you sure you want to format a raw disk? (Most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Ham bir diski biçimlendirmek istediğinizden emin misiniz? (Genelde önce diski bir bölümlendirme sistemi ile ilklendirmek daha makbuldür.) Değişiklikler diske yazılmadan önce bir kez daha onayınız istenecektir. Are you sure you want to format a raw disk? (Most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Ham bir diski biçimlendirmek istediğinizden emin misiniz? (Genelde önce diski bir bölümlendirme sistemi ile ilklendirmek daha makbuldür.) Değişiklikler diske yazılmadan önce bir kez daha onayınız istenecektir.
Wipe (not implemented) MainWindow Sil (işlevsel değil) Wipe (not implemented) MainWindow Sil (işlevsel değil)
The currently selected partition does not have a parent partition. MainWindow Mevcut seçili disk bölümü ana bir disk bölümüne sahip değil. The currently selected partition does not have a parent partition. MainWindow Şu an seçili olan disk bölümünde bir ana disk bölümü yok.
Validation of the given initialization parameters failed. MainWindow Verilen ilklendirme parametrelerinin doğrulanması başarısız oldu. Validation of the given initialization parameters failed. MainWindow Verilen ilklendirme parametrelerinin doğrulanması başarısız oldu.
Not formatted (%s) PartitionList Biçimlendirilmemiş (%s) Not formatted (%s) PartitionList Biçimlendirilmemiş (%s)
Failed to create the partition. No changes have been written to disk. MainWindow Bölüm oluşturulamadı. Diske herhangi bir değişiklik yazılmadı. Failed to create the partition. No changes have been written to disk. MainWindow Bölüm oluşturulamadı. Diske herhangi bir değişiklik yazılmadı.
+4 -4
View File
@@ -8,7 +8,7 @@ File expanded ExpanderWindow Dosya genişletildi
The destination is read only. ExpanderWindow Hedef saltokunur. The destination is read only. ExpanderWindow Hedef saltokunur.
Expander: Open ExpanderWindow Paketaçar: Aç Expander: Open ExpanderWindow Paketaçar: Aç
is not supported ExpanderWindow desteklenmiyor is not supported ExpanderWindow desteklenmiyor
Expander settings ExpanderPreferences Paketaçar Ayarları Expander settings ExpanderPreferences Paketaçar ayarları
Select current DirectoryFilePanel Olanı seç Select current DirectoryFilePanel Olanı seç
Source ExpanderWindow Kaynak Source ExpanderWindow Kaynak
Error when expanding archive ExpanderWindow Arşiv genişletilirken hata Error when expanding archive ExpanderWindow Arşiv genişletilirken hata
@@ -16,13 +16,13 @@ Hide contents ExpanderWindow İçeriği gizle
Cancel ExpanderWindow Vazgeç Cancel ExpanderWindow Vazgeç
Automatically expand files ExpanderPreferences Dosyaları kendiliğinden genişlet Automatically expand files ExpanderPreferences Dosyaları kendiliğinden genişlet
Continue ExpanderWindow Sürdür Continue ExpanderWindow Sürdür
Destination folder ExpanderPreferences Hedef klasörü Destination folder ExpanderPreferences Hedef klasör
Other ExpanderPreferences Diğer Other ExpanderPreferences Diğer
Cancel ExpanderPreferences Vazgeç Cancel ExpanderPreferences Vazgeç
Expansion ExpanderPreferences Genişletme Expansion ExpanderPreferences Genişletme
Select DirectoryFilePanel Seç Select DirectoryFilePanel Seç
The folder was either moved, renamed or not supported. ExpanderWindow Klasör taşınmış, yeniden adlandırılmış veya desteklenmiyor olabilir. The folder was either moved, renamed or not supported. ExpanderWindow Klasör taşınmış, yeniden adlandırılmış veya desteklenmiyor olabilir.
Destination folder doesn't exist. Would you like to create it? ExpanderWindow Hedef klasör mevcut değil. Oluşturulsun mu? Destination folder doesn't exist. Would you like to create it? ExpanderWindow Hedef klasör yok. Oluşturulsun mu?
Same directory as source (archive) file ExpanderPreferences Kaynak (arşiv) dosya ile aynı dizin Same directory as source (archive) file ExpanderPreferences Kaynak (arşiv) dosya ile aynı dizin
Settings ExpanderMenu Ayarlar Settings ExpanderMenu Ayarlar
Settings… ExpanderMenu Ayarlar… Settings… ExpanderMenu Ayarlar…
@@ -36,7 +36,7 @@ Leave destination folder path empty ExpanderPreferences Hedef klasör yolunu bo
Failed to create the destination folder. ExpanderWindow Hedef klasör oluşturulamadı. Failed to create the destination folder. ExpanderWindow Hedef klasör oluşturulamadı.
Select '%s'… DirectoryFilePanel '%s' ögesini seç… Select '%s'… DirectoryFilePanel '%s' ögesini seç…
Create ExpanderWindow Oluştur Create ExpanderWindow Oluştur
The file doesn't exist ExpanderWindow Dosya mevcut değil The file doesn't exist ExpanderWindow Dosya yok
Stop ExpanderMenu Durdur Stop ExpanderMenu Durdur
File ExpanderMenu Dosya File ExpanderMenu Dosya
Expander System name Paketaçar Expander System name Paketaçar
+32 -1
View File
@@ -1,14 +1,17 @@
1 french x-vnd.Haiku-HaikuDepot 3139226371 1 french x-vnd.Haiku-HaikuDepot 2192549143
Available packages MainWindow Paquets disponibles Available packages MainWindow Paquets disponibles
It was not possible to create the new user. UserLoginWindow Impossible de créer le nouvel utilisateur. It was not possible to create the new user. UserLoginWindow Impossible de créer le nouvel utilisateur.
An unexpected error has been sent from the server [%li] ServerHelper Le serveur [%li] a renvoyé une erreur inattendue. An unexpected error has been sent from the server [%li] ServerHelper Le serveur [%li] a renvoyé une erreur inattendue.
Create account UserLoginWindow Créer un compte Create account UserLoginWindow Créer un compte
Agree ToLatestUserUsageConditionsWindow Consentir
Install %PackageTitle% PackageManager Installer %PackageTitle% Install %PackageTitle% PackageManager Installer %PackageTitle%
The response to the captcha was incorrect. ServerHelper Réponse incorrecte au Captcha. The response to the captcha was incorrect. ServerHelper Réponse incorrecte au Captcha.
Rate package… PackageInfoView Évaluer le paquet… Rate package… PackageInfoView Évaluer le paquet…
You have successfully authenticated as user %Nickname%. UserLoginWindow Vous êtes désormais authentifié en tant que %Nickname%. You have successfully authenticated as user %Nickname%. UserLoginWindow Vous êtes désormais authentifié en tant que %Nickname%.
It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Il na pas été possible dextraire les informations Captcha nécessaires depuis les données renvoyées par le serveur. It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Il na pas été possible dextraire les informations Captcha nécessaires depuis les données renvoyées par le serveur.
An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Erreur lors de lobtention de la liste des paquets : %message% An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Erreur lors de lobtention de la liste des paquets : %message%
Update usage conditions ToLatestUserUsageConditionsWindow Mettre à jour les conditions d'utilisation
No usage conditions UserUsageConditions Aucune condition dutilisation
Active PackageListView Actif Active PackageListView Actif
Login or Create account MainWindow Se connecter ou créer un compte Login or Create account MainWindow Se connecter ou créer un compte
Switch account… MainWindow Changer de compte… Switch account… MainWindow Changer de compte…
@@ -22,7 +25,9 @@ Category FilterView Catégorie
A response to the captcha question must be provided. UserLoginWindow Vous devez fournir une réponse à la question Captcha. A response to the captcha question must be provided. UserLoginWindow Vous devez fournir une réponse à la question Captcha.
An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Une erreur inattendue « %Message% » est survenue avec la propriété « %Property% ». An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Une erreur inattendue « %Message% » est survenue avec la propriété « %Property% ».
A requested object or an object involved in the request was not found on the server. ServerHelper Lobjet demandé ou lobjet associé à la requête na pas été trouvé sur le serveur. A requested object or an object involved in the request was not found on the server. ServerHelper Lobjet demandé ou lobjet associé à la requête na pas été trouvé sur le serveur.
Logout ToLatestUserUsageConditionsWindow Déconnexion
No changelog available. PackageInfoView La liste des modifications nest pas disponible. No changelog available. PackageInfoView La liste des modifications nest pas disponible.
Cancel PackageProblem Annuler
Version PackageListView Version Version PackageListView Version
No, quit HaikuDepot App Non, quitter DépôtHaiku No, quit HaikuDepot App Non, quitter DépôtHaiku
Not logged in MainWindow Non connecté Not logged in MainWindow Non connecté
@@ -38,19 +43,23 @@ All packages PackageListView Tous les paquets
Send RatePackageWindow Envoyer Send RatePackageWindow Envoyer
Start package daemon App Démarrer le serveur de paquets Start package daemon App Démarrer le serveur de paquets
There are problems in the supplied data: UserLoginWindow Il y a des problèmes dans les données fournies : There are problems in the supplied data: UserLoginWindow Il y a des problèmes dans les données fournies :
The user '%Nickname%' has not agreed to any usage conditions. UserUsageConditions L'utilisateur « %Nickname% » n'a accepté aucune condition d'utilisation.
Usage conditions download problem UserLoginWindow Problème de téléchargement des conditions dutilisation Usage conditions download problem UserLoginWindow Problème de téléchargement des conditions dutilisation
Package daemon problem App Problème du serveur de paquets Package daemon problem App Problème du serveur de paquets
No MainWindow Non No MainWindow Non
Repository PackageListView Dépôt Repository PackageListView Dépôt
Users are required to be %AgeYears% years of age or older. UserUsageConditions Les utilisateurs doivent être âgés de %AgeYears% ans ou plus.
Close RatePackageWindow Fermer Close RatePackageWindow Fermer
Close UserLoginWindow Fermer Close UserLoginWindow Fermer
The email is malformed. UserLoginWindow Ladresse mail est malformée. The email is malformed. UserLoginWindow Ladresse mail est malformée.
Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Synchronisation des données de paquets depuis le dépôt « %REPO_NAME% ». Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Synchronisation des données de paquets depuis le dépôt « %REPO_NAME% ».
View the usage conditions UserLoginWindow Voir les conditions dutilisation View the usage conditions UserLoginWindow Voir les conditions dutilisation
An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Une erreur sest produite lors du téléchargement des conditions dutilisation requises pour créer un nouvel utilisateur. Vérifiez les détails dans le journal et réessayez.\nDes informations sur la manière de consulter les journaux sont disponibles dans la section DépôtHaiku du guide de lutilisateur Haiku. An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Une erreur sest produite lors du téléchargement des conditions dutilisation requises pour créer un nouvel utilisateur. Vérifiez les détails dans le journal et réessayez.\nDes informations sur la manière de consulter les journaux sont disponibles dans la section DépôtHaiku du guide de lutilisateur Haiku.
Usage conditions agreed ToLatestUserUsageConditionsWindow Conditions d'utilisation acceptées
Size PackageListView Taille Size PackageListView Taille
Your rating was updated. RatePackageWindow Votre évaluation a été mise à jour. Your rating was updated. RatePackageWindow Votre évaluation a été mise à jour.
All categories FilterView Toutes les catégories All categories FilterView Toutes les catégories
ignore problem for now PackageProblem ignorer le problème pour l'instant
n/a PackageInfoView n/a n/a PackageInfoView n/a
Cancel MainWindow Annuler Cancel MainWindow Annuler
Refresh repositories MainWindow Rafraîchir les dépôts Refresh repositories MainWindow Rafraîchir les dépôts
@@ -59,13 +68,16 @@ A password is required. UserLoginWindow Un mot de passe est requis.
Language RatePackageWindow Langue Language RatePackageWindow Langue
Status PackageListView État Status PackageListView État
Network transport error ServerHelper Erreur de transport réseau Network transport error ServerHelper Erreur de transport réseau
Cancel PackageResult Annuler
Uninstall %PackageTitle% PackageManager Désinstaller %PackageTitle% Uninstall %PackageTitle% PackageManager Désinstaller %PackageTitle%
Retry PackageProblem Réessayer
Update RatePackageWindow Mettre à jour Update RatePackageWindow Mettre à jour
Language UserLoginWindow Langue Language UserLoginWindow Langue
OK UserLoginWindow OK OK UserLoginWindow OK
Synchronizing reference data from server ServerReferenceDataUpdateProcess Synchronisation des données de référence à partir du serveur Synchronizing reference data from server ServerReferenceDataUpdateProcess Synchronisation des données de référence à partir du serveur
Stability: RatePackageWindow Stabilité : Stability: RatePackageWindow Stabilité :
The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow Laccord dutilisation doit être accepté et vous devrez confirmer que la personne qui crée lutilisateur respecte l’âge minimum requis. The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow Laccord dutilisation doit être accepté et vous devrez confirmer que la personne qui crée lutilisateur respecte l’âge minimum requis.
solution %d: PackageProblem Don't change the %d variable solution %d :
Source packages MainWindow Paquets sources Source packages MainWindow Paquets sources
Problem with working files App Problème avec les fichiers de travail Problem with working files App Problème avec les fichiers de travail
Try again App Essayer à nouveau Try again App Essayer à nouveau
@@ -83,6 +95,7 @@ Authentication failed UserLoginWindow Lauthentification a échoué
Captcha error UserLoginWindow Erreur de Captcha Captcha error UserLoginWindow Erreur de Captcha
Manage repositories… MainWindow Gérer les dépôts… Manage repositories… MainWindow Gérer les dépôts…
The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow Le surnom doit être unique, mais celui fourni est déjà pris. Veuillez choisir un autre surnom. The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow Le surnom doit être unique, mais celui fourni est déjà pris. Veuillez choisir un autre surnom.
OK UserUsageConditions OK
Open %DeskbarLink% PackageManager Ouvrir %DeskbarLink% Open %DeskbarLink% PackageManager Ouvrir %DeskbarLink%
Input validation UserLoginWindow Validation des entrées Input validation UserLoginWindow Validation des entrées
Log in… MainWindow Connexion… Log in… MainWindow Connexion…
@@ -96,11 +109,15 @@ An error occurred while refreshing the repository: %error% LocalRepositoryUpdate
User Created UserLoginWindow Utilisateur créé User Created UserLoginWindow Utilisateur créé
Check for updates… MainWindow Vérifier les mises à jour… Check for updates… MainWindow Vérifier les mises à jour…
Uninstalled PackageListView Désinstallé Uninstalled PackageListView Désinstallé
I agree to the usage conditions ToLatestUserUsageConditionsWindow Jaccepte les conditions d'utilisation
Installing \"%PackageName%\" InstallPackageProcess Installation de « %PackageName% »
OK App OK OK App OK
Fatal error UninstallPackageAction Erreur fatale
Develop packages MainWindow Paquets de développement Develop packages MainWindow Paquets de développement
Starting the package daemon failed:\n\n%Error% App Le démarrage du serveur de paquets a échoué :\n\n%Error% Starting the package daemon failed:\n\n%Error% App Le démarrage du serveur de paquets a échoué :\n\n%Error%
No user ratings available. PackageInfoView Aucun avis dutilisateurs. No user ratings available. PackageInfoView Aucun avis dutilisateurs.
<no info> PackageInfoView <pas dinfo> <no info> PackageInfoView <pas dinfo>
Usage conditions download problem UserUsageConditions Problème de téléchargement des conditions d'utilisation
Rating PackageListView Évaluation Rating PackageListView Évaluation
A network transport error has arisen communicating with the server system: %s ServerHelper Une erreur de transport réseau est survenue lors de la communication avec le serveur : %s A network transport error has arisen communicating with the server system: %s ServerHelper Une erreur de transport réseau est survenue lors de la communication avec le serveur : %s
Synchronizing icons ServerIconExportUpdateProcess Synchronisation des icônes Synchronizing icons ServerIconExportUpdateProcess Synchronisation des icônes
@@ -109,13 +126,16 @@ Settings… MainWindow Réglages…
This application writes and reads some working files on your computer in order to function. It appears that there are problems writing a test file at [%TestFilePath%]. Check that there are no issues with your local disk or permissions that might prevent this application from writing files into that directory location. You may choose to acknowledge this problem and continue, but some functionality may be disabled. App Cette application lit et écrit certains fichiers de travail sur votre ordinateur afin de fonctionner. Il semble quil y ait des problèmes pour écrire un fichier test dans [%TestFilePath%]. Vérifiez quil ny a pas de problèmes avec votre disque local ou avec les autorisations qui pourraient empêcher cette application d’écrire des fichiers dans ce répertoire. Vous pouvez choisir dassumer ce problème et de continuer, mais certaines fonctionnalités peuvent être désactivées. This application writes and reads some working files on your computer in order to function. It appears that there are problems writing a test file at [%TestFilePath%]. Check that there are no issues with your local disk or permissions that might prevent this application from writing files into that directory location. You may choose to acknowledge this problem and continue, but some functionality may be disabled. App Cette application lit et écrit certains fichiers de travail sur votre ordinateur afin de fonctionner. Il semble quil y ait des problèmes pour écrire un fichier test dans [%TestFilePath%]. Vérifiez quil ny a pas de problèmes avec votre disque local ou avec les autorisations qui pourraient empêcher cette application d’écrire des fichiers dans ce répertoire. Vous pouvez choisir dassumer ce problème et de continuer, mais certaines fonctionnalités peuvent être désactivées.
<Package contents not available for remote packages> PackageContentsView <Contenu du paquet indisponible pour les paquets distants> <Package contents not available for remote packages> PackageContentsView <Contenu du paquet indisponible pour les paquets distants>
Ratings PackageInfoView Évaluations Ratings PackageInfoView Évaluations
The following problems have been encountered. Please select a solution for each: PackageProblem Les problèmes suivants ont été rencontrés. Veuillez sélectionner une solution pour chacun d'eux :
Local LocalPkgDataLoadProcess Local Local LocalPkgDataLoadProcess Local
Package changes PackageResult Window title Évolutions du paquet
Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Considéreriez-vous comme acceptable denvoyer des données dutilisation anonymes au système du Serveur de dépôt Haiku depuis cet ordinateur ? Vous pouvez changer votre préférence dans la fenêtre des « Réglages » ultérieurement. Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Considéreriez-vous comme acceptable denvoyer des données dutilisation anonymes au système du Serveur de dépôt Haiku depuis cet ordinateur ? Vous pouvez changer votre préférence dans la fenêtre des « Réglages » ultérieurement.
User rating RatePackageWindow Avis de lutilisateur User rating RatePackageWindow Avis de lutilisateur
Installed packages MainWindow Paquets installés Installed packages MainWindow Paquets installés
Date PackageListView Date Date PackageListView Date
Error App Erreur Error App Erreur
There was a puzzling response from the web service. UserLoginWindow La réponse du service web est incompréhensible. There was a puzzling response from the web service. UserLoginWindow La réponse du service web est incompréhensible.
Opening \"%DeskbarLink%\" OpenPackageProcess Ouverture de « %DeskbarLink% »
Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Votre évaluation a été postée avec succès. Vous pouvez la mettre à jour ou la supprimer sur le site Web du Dépôt Haiku. Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Votre évaluation a été postée avec succès. Vous pouvez la mettre à jour ou la supprimer sur le site Web du Dépôt Haiku.
It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Impossible de communiquer avec le serveur pour obtenir limage Captcha nécessaire à la création dun nouvel utilisateur. It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Impossible de communiquer avec le serveur pour obtenir limage Captcha nécessaire à la création dun nouvel utilisateur.
The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow La réponse fournie au Captcha est incorrecte. Un nouveau Captcha sera généré ; essayez à nouveau. The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow La réponse fournie au Captcha est incorrecte. Un nouveau Captcha sera généré ; essayez à nouveau.
@@ -137,7 +157,9 @@ Inactive PackageListView Inactif
Nickname: UserLoginWindow Surnom : Nickname: UserLoginWindow Surnom :
Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Synchronisation des métadonnées des dépôts Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Synchronisation des métadonnées des dépôts
OK MainWindow Valider OK MainWindow Valider
Version %Code% UserUsageConditions Version %Code%
{0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# objet} other{# objets}} {0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# objet} other{# objets}}
Uninstalling \"%PackageName%\" UninstallPackageAction Désinstallation de « %PackageName% »
Downloading: PackageInfoView Téléchargement en cours : Downloading: PackageInfoView Téléchargement en cours :
Quit MainWindow Quitter Quit MainWindow Quitter
Success UserLoginWindow Opération réussie Success UserLoginWindow Opération réussie
@@ -151,28 +173,37 @@ Repositories MainWindow Dépôts
This rating is visible to other users RatePackageWindow Cette note est visible par les autres utilisateurs This rating is visible to other users RatePackageWindow Cette note est visible par les autres utilisateurs
While updating package data, a problem has arisen that may cause data to be outdated or missing from the application's display. Additional details regarding this problem may be able to be obtained from the application logs.\nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. MainWindow Lors de la mise à jour des données du paquet, un problème est apparu qui peut entraîner laffichage de données obsolètes ou manquantes dans lapplication. Des détails supplémentaires concernant ce problème peuvent être obtenus à partir des journaux dapplication.\nDes informations sur la manière de consulter les journaux sont disponibles dans la section DépôtHaiku du guide de lutilisateur Haiku. While updating package data, a problem has arisen that may cause data to be outdated or missing from the application's display. Additional details regarding this problem may be able to be obtained from the application logs.\nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. MainWindow Lors de la mise à jour des données du paquet, un problème est apparu qui peut entraîner laffichage de données obsolètes ou manquantes dans lapplication. Des détails supplémentaires concernant ce problème peuvent être obtenus à partir des journaux dapplication.\nDes informations sur la manière de consulter les journaux sont disponibles dans la section DépôtHaiku du guide de lutilisateur Haiku.
View agreed usage conditions… MainWindow Voir les conditions dutilisation acceptées… View agreed usage conditions… MainWindow Voir les conditions dutilisation acceptées…
The user [%Nickname%] has authenticated, but before proceeding, you are required to agree to the most recent usage conditions. ToLatestUserUsageConditionsWindow L'utilisateur « %Nickname% » s'est authentifié, mais avant de poursuivre, il vous est demandé d'accepter les conditions d'utilisation les plus récentes.
This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Ce paquet ne semble pas se trouver sur le serveur de dépôt Haiku, il nest donc pas possible de créer une nouvelle évaluation ou de modifier une évaluation existante. This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Ce paquet ne semble pas se trouver sur le serveur de dépôt Haiku, il nest donc pas possible de créer une nouvelle évaluation ou de modifier une évaluation existante.
Apply SettingsWindow Appliquer Apply SettingsWindow Appliquer
The user \"%Nickname%\" has previously agreed to usage conditions, but the usage conditions have been updated since. The updated usage conditions now need to be agreed to. ToLatestUserUsageConditionsWindow Les conditions d'utilisation ont été révisées. L'utilisateur « %Nickname% » doit accepter les nouvelles conditions.
Log out MainWindow Déconnexion Log out MainWindow Déconnexion
Comment language: RatePackageWindow Langue du commentaire : Comment language: RatePackageWindow Langue du commentaire :
The password has been incorrectly repeated. UserLoginWindow Le mot de passe a été répété de manière incorrecte. The password has been incorrectly repeated. UserLoginWindow Le mot de passe a été répété de manière incorrecte.
The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow Le mot de passe précédemment fourni pour lutilisateur [%Nickname%] nest plus valable. Lutilisateur sera déconnecté de cette application et vous devrez vous reconnecter avec votre nouveau mot de passe. The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow Le mot de passe précédemment fourni pour lutilisateur [%Nickname%] nest plus valable. Lutilisateur sera déconnecté de cette application et vous devrez vous reconnecter avec votre nouveau mot de passe.
View the usage conditions ToLatestUserUsageConditionsWindow Voir les conditions d'utilisation
OK ServerHelper OK OK ServerHelper OK
Reading repository data LocalPkgDataLoadProcess Lecture des données du dépôt Reading repository data LocalPkgDataLoadProcess Lecture des données du dépôt
Fatal error InstallPackageProcess Erreur fatale
A validation error has occurred ServerHelper Une erreur de validation est survenue A validation error has occurred ServerHelper Une erreur de validation est survenue
The nickname is required. UserLoginWindow Le surnom est requis. The nickname is required. UserLoginWindow Le surnom est requis.
- no package size - - no package size -
Apply changes PackageResult Appliquer les modifications
Rate package RatePackageWindow Évaluer le paquet Rate package RatePackageWindow Évaluer le paquet
Server error ServerHelper Erreur du serveur Server error ServerHelper Erreur du serveur
Recording view of \"%PackageName%\" IncrementViewCounterProcess Enregistrement de la vue de « %PackageName% »
Sending anonymous usage data MainWindow Envoi de données dutilisation anonymes Sending anonymous usage data MainWindow Envoi de données dutilisation anonymes
Log in UserLoginWindow Connexion Log in UserLoginWindow Connexion
Usage conditions UserUsageConditions Conditions d'usage
HaikuDepot System name DépôtHaiku HaikuDepot System name DépôtHaiku
Screenshot ScreenshotWindow Capture d’écran Screenshot ScreenshotWindow Capture d’écran
Email address: UserLoginWindow Adresse e-mail : Email address: UserLoginWindow Adresse e-mail :
View latest usage conditions… MainWindow Voir les dernières conditions dutilisation… View latest usage conditions… MainWindow Voir les dernières conditions dutilisation…
Category: FilterView Catégorie : Category: FilterView Catégorie :
uninstall package %s\n PackageResult Don't change '%s' variable désinstallation du paquet %s\n
Fetching remote repository data LocalRepositoryUpdateProcess Récupération des données du dépôt distant Fetching remote repository data LocalRepositoryUpdateProcess Récupération des données du dépôt distant
Description PackageListView Description Description PackageListView Description
User creation error UserLoginWindow Erreur à la création de lutilisateur User creation error UserLoginWindow Erreur à la création de lutilisateur
You need to be logged into an account before you can rate packages. MainWindow Vous devez vous authentifier pour évaluer les paquets. You need to be logged into an account before you can rate packages. MainWindow Vous devez vous authentifier pour évaluer les paquets.
Cleaning up… ShuttingDownWindow Nettoyage…
Repeat password: UserLoginWindow Répéter le mot de passe : Repeat password: UserLoginWindow Répéter le mot de passe :
+44 -1
View File
@@ -1,20 +1,27 @@
1 friulian x-vnd.Haiku-HaikuDepot 3139226371 1 friulian x-vnd.Haiku-HaikuDepot 136904009
Usage conditions download problem ToLatestUserUsageConditionsWindow Probleme tal discjamâ lis condizions di utilizazion
Available packages MainWindow Pachets disponibii Available packages MainWindow Pachets disponibii
It was not possible to create the new user. UserLoginWindow Nol è stât pussibil creâ il gnûf utent. It was not possible to create the new user. UserLoginWindow Nol è stât pussibil creâ il gnûf utent.
An unexpected error has been sent from the server [%li] ServerHelper Al è rivât un erôr inspietât dal servidôr [%li] An unexpected error has been sent from the server [%li] ServerHelper Al è rivât un erôr inspietât dal servidôr [%li]
Create account UserLoginWindow Cree account Create account UserLoginWindow Cree account
Agree ToLatestUserUsageConditionsWindow Acete
Install %PackageTitle% PackageManager Instale %PackageTitle% Install %PackageTitle% PackageManager Instale %PackageTitle%
The response to the captcha was incorrect. ServerHelper La rispueste al captcha e jere sbaliade. The response to the captcha was incorrect. ServerHelper La rispueste al captcha e jere sbaliade.
Rate package… PackageInfoView Vote pachet… Rate package… PackageInfoView Vote pachet…
You have successfully authenticated as user %Nickname%. UserLoginWindow Tu ti sês autenticât cun sucès come utent %Nickname%. You have successfully authenticated as user %Nickname%. UserLoginWindow Tu ti sês autenticât cun sucès come utent %Nickname%.
Package problems PackageProblem Window title Problemis al pachet
It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Nol è stât pussibil tirâ fûr lis informazions captcha necessaris dai dâts restituîts dal servidôr. It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Nol è stât pussibil tirâ fûr lis informazions captcha necessaris dai dâts restituîts dal servidôr.
An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Si è verificât un erôr intal otignî la liste dai pachets: %message% An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Si è verificât un erôr intal otignî la liste dai pachets: %message%
Update usage conditions ToLatestUserUsageConditionsWindow Inzorne condizions di utilizazion
No usage conditions UserUsageConditions Nissune condizion di utilizazion
Active PackageListView Atîf Active PackageListView Atîf
Login or Create account MainWindow Jentre o Regjistriti Login or Create account MainWindow Jentre o Regjistriti
Switch account… MainWindow Cambie account… Switch account… MainWindow Cambie account…
Preferred language: UserLoginWindow Lenghe preferide: Preferred language: UserLoginWindow Lenghe preferide:
Name PackageListView Non Name PackageListView Non
Authorization or security issue. Logout and log back in again to check that your password is correct and also check that you have agreed to the latest usage conditions. ServerHelper Problemis di autorizazion o di sigurece. Jes e torne jentre par controlâ che la tô peraule di ordin e sedi juste e controle ancje di vê acetât lis ultimis condizions di ûs. Authorization or security issue. Logout and log back in again to check that your password is correct and also check that you have agreed to the latest usage conditions. ServerHelper Problemis di autorizazion o di sigurece. Jes e torne jentre par controlâ che la tô peraule di ordin e sedi juste e controle ancje di vê acetât lis ultimis condizions di ûs.
HaikuDepot communicates with a server component called HaikuDepotServer. These are the usage conditions that the user '%Nickname%' agreed to at %AgreedToTimestamp% in relation to the use of the HaikuDepotServer service. UserUsageConditions HaikuDepot al comuniche cuntun component di servidôr clamât HaikuDepotServer. Chestis a son lis condizions di utilizazion che l'utent '%Nickname%' al à acetât ai %AgreedToTimestamp% in merit ae utilizazion dal servizi di HaikuDepotServer.
don't activate package %source% PackageProblem don't change '%source% no sta ativâ il pachet %source%
Rate %Package% RatePackageWindow Vote %Package% Rate %Package% RatePackageWindow Vote %Package%
An error occurred while initializing the package manager: %message% LocalPkgDataLoadProcess Si è verificât un erôr intal inizializâ il gjestôr dal pachet: %message% An error occurred while initializing the package manager: %message% LocalPkgDataLoadProcess Si è verificât un erôr intal inizializâ il gjestôr dal pachet: %message%
Quit HaikuDepot App Siere HaikuDepot Quit HaikuDepot App Siere HaikuDepot
@@ -22,7 +29,11 @@ Category FilterView Categorie
A response to the captcha question must be provided. UserLoginWindow Si scugne dâ une rispueste ae domande captcha. A response to the captcha question must be provided. UserLoginWindow Si scugne dâ une rispueste ae domande captcha.
An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Al è vignût fûr un erôr '%Message%' inspietât cun proprietât '%Property%' An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Al è vignût fûr un erôr '%Message%' inspietât cun proprietât '%Property%'
A requested object or an object involved in the request was not found on the server. ServerHelper Un ogjet domandât o un ogjet che al centrave cu la richieste nol è stât cjatât sul servidôr. A requested object or an object involved in the request was not found on the server. ServerHelper Un ogjet domandât o un ogjet che al centrave cu la richieste nol è stât cjatât sul servidôr.
Logout ToLatestUserUsageConditionsWindow Jes
The following additional package changes have to be made: PackageResult Al è necessari fâ chestis modifichis adizionâls al pachets:
No changelog available. PackageInfoView Nissun regjistri des modifichis disponibil. No changelog available. PackageInfoView Nissun regjistri des modifichis disponibil.
The current usage conditions have been agreed to. ToLatestUserUsageConditionsWindow Li condizions di utilizazion atuâls a son stadis acetadis.
Cancel PackageProblem Anule
Version PackageListView Version Version PackageListView Version
No, quit HaikuDepot App No, siere HaikuDepot No, quit HaikuDepot App No, siere HaikuDepot
Not logged in MainWindow No jentrât Not logged in MainWindow No jentrât
@@ -38,20 +49,26 @@ All packages PackageListView Ducj i pachets
Send RatePackageWindow Invie Send RatePackageWindow Invie
Start package daemon App Invie demoni dai pachets Start package daemon App Invie demoni dai pachets
There are problems in the supplied data: UserLoginWindow Si à problemis tai dâts furnîts: There are problems in the supplied data: UserLoginWindow Si à problemis tai dâts furnîts:
The user '%Nickname%' has not agreed to any usage conditions. UserUsageConditions L'utent '%Nickname%' nol à acetât nissune condizion di utilizazion.
Usage conditions download problem UserLoginWindow Probleme tal discjariament des condizions di ûs Usage conditions download problem UserLoginWindow Probleme tal discjariament des condizions di ûs
install package %s from repository %s\n PackageResult Don't change '%s' variables instale il pachet %s dal dipuesit %s\n
Package daemon problem App Probleme cul demoni dai pachets Package daemon problem App Probleme cul demoni dai pachets
No MainWindow No No MainWindow No
Repository PackageListView Dipuesit Repository PackageListView Dipuesit
Users are required to be %AgeYears% years of age or older. UserUsageConditions Al è necessari che i utents a vedin %AgeYears% o plui agns.
Close RatePackageWindow Siere Close RatePackageWindow Siere
Close UserLoginWindow Siere Close UserLoginWindow Siere
The email is malformed. UserLoginWindow La direzion e-mail e je malformade. The email is malformed. UserLoginWindow La direzion e-mail e je malformade.
Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Sincronizazion dâts dai pachets pal dipuesit '%REPO_NAME%' Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Sincronizazion dâts dai pachets pal dipuesit '%REPO_NAME%'
View the usage conditions UserLoginWindow Viôt lis condizions di ûs View the usage conditions UserLoginWindow Viôt lis condizions di ûs
An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Al è vignût fûr un erôr discjariant lis condizions di ûs necessaris par creâ un gnûf utent. Controle il regjistri pai detais e torne prove. \nLis informazions su ce mût viodi i regjistris a son disponibilis inte sezion di HaikuDepot de Vuide utent di Haiku. An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Al è vignût fûr un erôr discjariant lis condizions di ûs necessaris par creâ un gnûf utent. Controle il regjistri pai detais e torne prove. \nLis informazions su ce mût viodi i regjistris a son disponibilis inte sezion di HaikuDepot de Vuide utent di Haiku.
Usage conditions agreed ToLatestUserUsageConditionsWindow Condizions di utilizazion acetadis
Size PackageListView Dimension Size PackageListView Dimension
Your rating was updated. RatePackageWindow La tô valutazion e je stade inzornade. Your rating was updated. RatePackageWindow La tô valutazion e je stade inzornade.
All categories FilterView Dutis lis categoriis All categories FilterView Dutis lis categoriis
ignore problem for now PackageProblem ignore il probleme pal moment
n/a PackageInfoView n/d n/a PackageInfoView n/d
Checking user details UserDetailVerifierProcess Verifiche dai detais utent
Cancel MainWindow Anule Cancel MainWindow Anule
Refresh repositories MainWindow Inzorne dipuesits Refresh repositories MainWindow Inzorne dipuesits
Continue App Continue Continue App Continue
@@ -59,13 +76,16 @@ A password is required. UserLoginWindow E je necessarie une peraule d'ordin.
Language RatePackageWindow Lenghe Language RatePackageWindow Lenghe
Status PackageListView Stât Status PackageListView Stât
Network transport error ServerHelper Erôr di traspuart de rêt Network transport error ServerHelper Erôr di traspuart de rêt
Cancel PackageResult Cancele
Uninstall %PackageTitle% PackageManager Disinstale %PackageTitle% Uninstall %PackageTitle% PackageManager Disinstale %PackageTitle%
Retry PackageProblem Torne prove
Update RatePackageWindow Inzorne Update RatePackageWindow Inzorne
Language UserLoginWindow Lenghe Language UserLoginWindow Lenghe
OK UserLoginWindow Va ben OK UserLoginWindow Va ben
Synchronizing reference data from server ServerReferenceDataUpdateProcess Sincronizazion dâts di riferiment dal servidôr Synchronizing reference data from server ServerReferenceDataUpdateProcess Sincronizazion dâts di riferiment dal servidôr
Stability: RatePackageWindow Stabilitât: Stability: RatePackageWindow Stabilitât:
The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow L'acuardi di utilizazion al scugne jessi acetât e si scugne confermâ che la persone che e cree l'utent e vedi i recuisîts minims pe etât. The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow L'acuardi di utilizazion al scugne jessi acetât e si scugne confermâ che la persone che e cree l'utent e vedi i recuisîts minims pe etât.
solution %d: PackageProblem Don't change the %d variable soluzion %d:
Source packages MainWindow Pachets sorzint Source packages MainWindow Pachets sorzint
Problem with working files App Probleme cui file di lavôr de aplicazion Problem with working files App Probleme cui file di lavôr de aplicazion
Try again App Torne prove Try again App Torne prove
@@ -83,6 +103,7 @@ Authentication failed UserLoginWindow Autenticazion falide
Captcha error UserLoginWindow Erôr captcha Captcha error UserLoginWindow Erôr captcha
Manage repositories… MainWindow Gjestìs dipuesits… Manage repositories… MainWindow Gjestìs dipuesits…
The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow Il sorenon al scugne jessi unic, ma il sorenon indicât al è za doprât. Sielç un sorenon diviers. The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow Il sorenon al scugne jessi unic, ma il sorenon indicât al è za doprât. Sielç un sorenon diviers.
OK UserUsageConditions Va ben
Open %DeskbarLink% PackageManager Vierç %DeskbarLink% Open %DeskbarLink% PackageManager Vierç %DeskbarLink%
Input validation UserLoginWindow Convalide input Input validation UserLoginWindow Convalide input
Log in… MainWindow Acès… Log in… MainWindow Acès…
@@ -96,11 +117,16 @@ An error occurred while refreshing the repository: %error% LocalRepositoryUpdate
User Created UserLoginWindow Utent creât User Created UserLoginWindow Utent creât
Check for updates… MainWindow Controle inzornaments… Check for updates… MainWindow Controle inzornaments…
Uninstalled PackageListView Disinstalât Uninstalled PackageListView Disinstalât
I agree to the usage conditions ToLatestUserUsageConditionsWindow O aceti lis condizions di utilizazion
Installing \"%PackageName%\" InstallPackageProcess Instalazion di \"%PackageName%\"
OK App Va ben OK App Va ben
HaikuDepot communicates with a server component called HaikuDepotServer. These are the latest usage conditions for use of the HaikuDepotServer service. UserUsageConditions HaikuDepot al comuniche cuntun component di servidôr clamât HaikuDepotServer. Chestis a son lis ultimis condizions di utilizazion par doprâ il servizi HaikuDepotServer.
Fatal error UninstallPackageAction Erôr fatâl
Develop packages MainWindow Pachets di svilup Develop packages MainWindow Pachets di svilup
Starting the package daemon failed:\n\n%Error% App Inviament dal demoni dai pachets falît:\n\n %Error% Starting the package daemon failed:\n\n%Error% App Inviament dal demoni dai pachets falît:\n\n %Error%
No user ratings available. PackageInfoView Nissune valutazion dai utents disponibile. No user ratings available. PackageInfoView Nissune valutazion dai utents disponibile.
<no info> PackageInfoView <nessune informazion> <no info> PackageInfoView <nessune informazion>
Usage conditions download problem UserUsageConditions Probleme tal discjamâ lis condizions di utilizazion
Rating PackageListView Valutazion Rating PackageListView Valutazion
A network transport error has arisen communicating with the server system: %s ServerHelper Al è vignût fûr un erôr di traspuart de rêt tal comunicâ cul servidôr: %s A network transport error has arisen communicating with the server system: %s ServerHelper Al è vignût fûr un erôr di traspuart de rêt tal comunicâ cul servidôr: %s
Synchronizing icons ServerIconExportUpdateProcess Sincronizazion iconis Synchronizing icons ServerIconExportUpdateProcess Sincronizazion iconis
@@ -109,13 +135,17 @@ Settings… MainWindow Impostazions…
This application writes and reads some working files on your computer in order to function. It appears that there are problems writing a test file at [%TestFilePath%]. Check that there are no issues with your local disk or permissions that might prevent this application from writing files into that directory location. You may choose to acknowledge this problem and continue, but some functionality may be disabled. App Cheste aplicazion, par funzionâ ben, e scrîf e e lei cualchi file di lavôr tal to computer. Al semee che a sedin problemis tal scrivi un file di prove su [%TestFilePath%]. Controle di no vê fastidis cul to disc locâl o cun permès che a impedissin a cheste aplicazion di scrivi file in chê posizion. Tu puedis sielzi di no risolvi il probleme e di continuâ, ma cualchi funzionalitât e podarès jessi disabilitade. This application writes and reads some working files on your computer in order to function. It appears that there are problems writing a test file at [%TestFilePath%]. Check that there are no issues with your local disk or permissions that might prevent this application from writing files into that directory location. You may choose to acknowledge this problem and continue, but some functionality may be disabled. App Cheste aplicazion, par funzionâ ben, e scrîf e e lei cualchi file di lavôr tal to computer. Al semee che a sedin problemis tal scrivi un file di prove su [%TestFilePath%]. Controle di no vê fastidis cul to disc locâl o cun permès che a impedissin a cheste aplicazion di scrivi file in chê posizion. Tu puedis sielzi di no risolvi il probleme e di continuâ, ma cualchi funzionalitât e podarès jessi disabilitade.
<Package contents not available for remote packages> PackageContentsView <Contignûts dal pachet no disponibii pai pachets esternis> <Package contents not available for remote packages> PackageContentsView <Contignûts dal pachet no disponibii pai pachets esternis>
Ratings PackageInfoView Valutazions Ratings PackageInfoView Valutazions
The following problems have been encountered. Please select a solution for each: PackageProblem A son vignûts fûr chescj problemis. Par plasê selezione une soluzion par ognun di lôr:
Local LocalPkgDataLoadProcess Locâl Local LocalPkgDataLoadProcess Locâl
Package changes PackageResult Window title Modifichis al pachet
Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Acetaressistu di inviâ dâts anonims sul ûs di chest computer al sisteme HaikuDepotServer? Plui indenant tu podarâs modificâ lis tôs preferencis tal barcon \"Impostazions\". Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Acetaressistu di inviâ dâts anonims sul ûs di chest computer al sisteme HaikuDepotServer? Plui indenant tu podarâs modificâ lis tôs preferencis tal barcon \"Impostazions\".
User rating RatePackageWindow Valutazion utents User rating RatePackageWindow Valutazion utents
Installed packages MainWindow Pachets instalâts Installed packages MainWindow Pachets instalâts
Date PackageListView Date Date PackageListView Date
Error App Erôr Error App Erôr
An error has arisen downloading the usage conditions. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. ToLatestUserUsageConditionsWindow Al è vignût fûr un erôr tal discjamâ lis condizions di utilizazion. Controle il regjistri pai detais e torne prove.\nInformazions su cemût visualizâ i regjistris a son disponibilis te sezion HaikuDepot de Vuide Utent di Haiku.
There was a puzzling response from the web service. UserLoginWindow La rispueste dal servizi web e jere ambigue. There was a puzzling response from the web service. UserLoginWindow La rispueste dal servizi web e jere ambigue.
Opening \"%DeskbarLink%\" OpenPackageProcess Daûr a vierzi \"%DeskbarLink%\"
Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow La tô valutazion e je stade cjariade cun sucès. Tu puedis modificâle o gjavâle sul sît web dal servidôr di HaikuDepot. Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow La tô valutazion e je stade cjariade cun sucès. Tu puedis modificâle o gjavâle sul sît web dal servidôr di HaikuDepot.
It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Nol è stât pussibil comunicâ cul servidôr par otignî une imagjin captcha necessarie par creâ un gnûf utent. It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Nol è stât pussibil comunicâ cul servidôr par otignî une imagjin captcha necessarie par creâ un gnûf utent.
The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow La rispueste dade al captcha no je juste. Al vignarà gjenerât un gnûf captcha; torne prove. The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow La rispueste dade al captcha no je juste. Al vignarà gjenerât un gnûf captcha; torne prove.
@@ -137,7 +167,9 @@ Inactive PackageListView Inatîf
Nickname: UserLoginWindow Sorenon: Nickname: UserLoginWindow Sorenon:
Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Sincronizazion meta-dâts in merit ai dipuesits Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Sincronizazion meta-dâts in merit ai dipuesits
OK MainWindow Va ben OK MainWindow Va ben
Version %Code% UserUsageConditions Version %Code%
{0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# item} other{# items}} {0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# item} other{# items}}
Uninstalling \"%PackageName%\" UninstallPackageAction Disinstalazion di \"%PackageName%\"
Downloading: PackageInfoView Ricezion: Downloading: PackageInfoView Ricezion:
Quit MainWindow Jes Quit MainWindow Jes
Success UserLoginWindow Lât a bon fin Success UserLoginWindow Lât a bon fin
@@ -146,33 +178,44 @@ Success UserLoginWindow Lât a bon fin
Settings SettingsWindow Impostazions Settings SettingsWindow Impostazions
Login issue MainWindow Probleme di acès Login issue MainWindow Probleme di acès
Your rating: RatePackageWindow La tô valutazion: Your rating: RatePackageWindow La tô valutazion:
HaikuDepot is stopping or completing running operations before quitting. ShuttingDownWindow HaikuDepot si sta fermant o al sta completant operazions in esecuzion prime di jessî.
The user %Nickname% has been successfully created in the HaikuDepotServer system. You can administer your user details by using the web interface. You are now logged-in as this new user. UserLoginWindow L'utent %Nickname% al è stât creât cun sucès tal sisteme di HaikuDepotServer. Tu puedis gjestî i tiei detais-utent doprant la interface web. Tu sês cumò jentrât come chest utent gnûf. The user %Nickname% has been successfully created in the HaikuDepotServer system. You can administer your user details by using the web interface. You are now logged-in as this new user. UserLoginWindow L'utent %Nickname% al è stât creât cun sucès tal sisteme di HaikuDepotServer. Tu puedis gjestî i tiei detais-utent doprant la interface web. Tu sês cumò jentrât come chest utent gnûf.
Repositories MainWindow Dipuesits Repositories MainWindow Dipuesits
This rating is visible to other users RatePackageWindow Altris utents a puedin viodi cheste valutazion This rating is visible to other users RatePackageWindow Altris utents a puedin viodi cheste valutazion
While updating package data, a problem has arisen that may cause data to be outdated or missing from the application's display. Additional details regarding this problem may be able to be obtained from the application logs.\nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. MainWindow Intant che si inzornave i dâts di un pachet, al è vignût fûr un probleme che al podarès fâ pierdi i dâts o rindiju obsolets rispiet ae visualizazion de aplicazion. Detais adizionâi in merit si puedin otignî dai regjistris de aplicazion.\nLis informazions su ce mût viodi i regjistris a son disponibilis te sezion di HaikuDepot de Vuide utent di Haiku. While updating package data, a problem has arisen that may cause data to be outdated or missing from the application's display. Additional details regarding this problem may be able to be obtained from the application logs.\nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. MainWindow Intant che si inzornave i dâts di un pachet, al è vignût fûr un probleme che al podarès fâ pierdi i dâts o rindiju obsolets rispiet ae visualizazion de aplicazion. Detais adizionâi in merit si puedin otignî dai regjistris de aplicazion.\nLis informazions su ce mût viodi i regjistris a son disponibilis te sezion di HaikuDepot de Vuide utent di Haiku.
An error has arisen downloading the usage conditions. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserUsageConditions Al è vignût fûr un erôr tal discjamâ lis condizions di utilizazion. Controle il regjistri pai detais e torne prove. \nInformazions su cemût visualizâ i regjistris a son disponibilis te sezion HaikuDepot de Vuide Utent di Haiku.
View agreed usage conditions… MainWindow Viôt lis cundizions di ûs acetadis… View agreed usage conditions… MainWindow Viôt lis cundizions di ûs acetadis…
The user [%Nickname%] has authenticated, but before proceeding, you are required to agree to the most recent usage conditions. ToLatestUserUsageConditionsWindow L'utent [%Nickname%] si è autenticât, ma prime di podê continuâ, al è necessari che tu acetis lis plui resintis condizions di utilizazion.
This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Chest pachet nol semee esisti sul servidôr HaikuDepot, duncje nol è pussibil creâ une gnove valutazion o modificâ une esistente. This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Chest pachet nol semee esisti sul servidôr HaikuDepot, duncje nol è pussibil creâ une gnove valutazion o modificâ une esistente.
Apply SettingsWindow Apliche Apply SettingsWindow Apliche
The user \"%Nickname%\" has previously agreed to usage conditions, but the usage conditions have been updated since. The updated usage conditions now need to be agreed to. ToLatestUserUsageConditionsWindow L'utent \"%Nickname%\" al à acetât in precedence lis condizions di utilizazion, ma di chê volte chestis a son stadis inzornadis. Si scugne cumò acetâ lis condizions di utilizazion inzornadis.
Log out MainWindow Termine session Log out MainWindow Termine session
Comment language: RatePackageWindow Lenghe dal coment: Comment language: RatePackageWindow Lenghe dal coment:
The password has been incorrectly repeated. UserLoginWindow La peraule d'ordin e je stade ripetude sbaliade. The password has been incorrectly repeated. UserLoginWindow La peraule d'ordin e je stade ripetude sbaliade.
The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow La peraule d'ordin furnide in precedence pal utent [%Nickname%] no je pal moment valide. L'utent al vignarà disconetût di cheste aplicazion e tu varâs di jentrâ di gnûf cu la peraule d'ordin inzornade. The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow La peraule d'ordin furnide in precedence pal utent [%Nickname%] no je pal moment valide. L'utent al vignarà disconetût di cheste aplicazion e tu varâs di jentrâ di gnûf cu la peraule d'ordin inzornade.
View the usage conditions ToLatestUserUsageConditionsWindow Visualize lis condizions di utilizazion
OK ServerHelper Va ben OK ServerHelper Va ben
Reading repository data LocalPkgDataLoadProcess Leture dâts dal dipuesit Reading repository data LocalPkgDataLoadProcess Leture dâts dal dipuesit
Fatal error InstallPackageProcess Erôr fatâl
A validation error has occurred ServerHelper Si è verificât un erôr di convalide A validation error has occurred ServerHelper Si è verificât un erôr di convalide
The nickname is required. UserLoginWindow Il sorenon al è necessari. The nickname is required. UserLoginWindow Il sorenon al è necessari.
- no package size - - no package size -
Apply changes PackageResult Apliche modifichis
Rate package RatePackageWindow Valute pachet Rate package RatePackageWindow Valute pachet
Server error ServerHelper Erôr dal servidôr Server error ServerHelper Erôr dal servidôr
Recording view of \"%PackageName%\" IncrementViewCounterProcess Viodude di regjistrazion di \"%PackageName%\"
Sending anonymous usage data MainWindow Daûr a inviâ dâts anonim sul ûs Sending anonymous usage data MainWindow Daûr a inviâ dâts anonim sul ûs
Log in UserLoginWindow Jentre Log in UserLoginWindow Jentre
Usage conditions UserUsageConditions Condizions di utilizazion
HaikuDepot System name HaikuDepot HaikuDepot System name HaikuDepot
Screenshot ScreenshotWindow Istantanie Screenshot ScreenshotWindow Istantanie
Email address: UserLoginWindow Direzion email: Email address: UserLoginWindow Direzion email:
View latest usage conditions… MainWindow Viôt lis ultimis condizions di ûs… View latest usage conditions… MainWindow Viôt lis ultimis condizions di ûs…
Category: FilterView Categorie: Category: FilterView Categorie:
uninstall package %s\n PackageResult Don't change '%s' variable disinstale pachet %s\n
Fetching remote repository data LocalRepositoryUpdateProcess Daûr a recuperâ i dâts dal dipuesit lontan Fetching remote repository data LocalRepositoryUpdateProcess Daûr a recuperâ i dâts dal dipuesit lontan
Description PackageListView Descrizion Description PackageListView Descrizion
User creation error UserLoginWindow Erôr di creazion dal utent User creation error UserLoginWindow Erôr di creazion dal utent
You need to be logged into an account before you can rate packages. MainWindow Si scugne jessi jentrâts intun account prime di podê valutâ i pachets. You need to be logged into an account before you can rate packages. MainWindow Si scugne jessi jentrâts intun account prime di podê valutâ i pachets.
Cleaning up… ShuttingDownWindow Netisie…
Repeat password: UserLoginWindow Ripet peraule d'ordin: Repeat password: UserLoginWindow Ripet peraule d'ordin:
+32 -1
View File
@@ -1,20 +1,26 @@
1 hungarian x-vnd.Haiku-HaikuDepot 3139226371 1 hungarian x-vnd.Haiku-HaikuDepot 1865982782
Usage conditions download problem ToLatestUserUsageConditionsWindow Probléma lépett fel a felhasználási feltételek letöltésekor
Available packages MainWindow Elérhető csomagok Available packages MainWindow Elérhető csomagok
It was not possible to create the new user. UserLoginWindow Nem sikerült létrehozni a felhasználót. It was not possible to create the new user. UserLoginWindow Nem sikerült létrehozni a felhasználót.
An unexpected error has been sent from the server [%li] ServerHelper A kiszolgáló váratlan hibaüzenetet küldött [%li] An unexpected error has been sent from the server [%li] ServerHelper A kiszolgáló váratlan hibaüzenetet küldött [%li]
Create account UserLoginWindow Felhasználói fiók létrehozása Create account UserLoginWindow Felhasználói fiók létrehozása
Agree ToLatestUserUsageConditionsWindow Egyetértek
Install %PackageTitle% PackageManager %PackageTitle% telepítése Install %PackageTitle% PackageManager %PackageTitle% telepítése
The response to the captcha was incorrect. ServerHelper Hibás válasz a captcha-kódra. The response to the captcha was incorrect. ServerHelper Hibás válasz a captcha-kódra.
Rate package… PackageInfoView Csomag értékelése… Rate package… PackageInfoView Csomag értékelése…
You have successfully authenticated as user %Nickname%. UserLoginWindow Sikeres bejelentkezés %Nickname%. You have successfully authenticated as user %Nickname%. UserLoginWindow Sikeres bejelentkezés %Nickname%.
Package problems PackageProblem Window title Csomag probléma
It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Nem sikerült kinyerni a captcha információt az elküldött adatokból. It was not possible to extract necessary captcha information from the data sent back from the server. UserLoginWindow Nem sikerült kinyerni a captcha információt az elküldött adatokból.
An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Nem sikerült a csomaglista betöltése: %message%. An error occurred while obtaining the package list: %message% LocalPkgDataLoadProcess Nem sikerült a csomaglista betöltése: %message%.
Update usage conditions ToLatestUserUsageConditionsWindow Felhasználási feltételek frissítése
No usage conditions UserUsageConditions Nincsenek felhasználási feltételek
Active PackageListView Aktív Active PackageListView Aktív
Login or Create account MainWindow Belépés vagy fiók létrehozása Login or Create account MainWindow Belépés vagy fiók létrehozása
Switch account… MainWindow Másik fiók… Switch account… MainWindow Másik fiók…
Preferred language: UserLoginWindow Előnyben részesített nyelv: Preferred language: UserLoginWindow Előnyben részesített nyelv:
Name PackageListView Név Name PackageListView Név
Authorization or security issue. Logout and log back in again to check that your password is correct and also check that you have agreed to the latest usage conditions. ServerHelper Engedélyezési vagy biztonsági hiba. Jelentkezz ki, és lépj be újra, hogy ellenőrizd a jelszó helyességét és azt is, hogy elfogadtad-e a legújabb felhasználási feltételeket. Authorization or security issue. Logout and log back in again to check that your password is correct and also check that you have agreed to the latest usage conditions. ServerHelper Engedélyezési vagy biztonsági hiba. Jelentkezz ki, és lépj be újra, hogy ellenőrizd a jelszó helyességét és azt is, hogy elfogadtad-e a legújabb felhasználási feltételeket.
don't activate package %source% PackageProblem don't change '%source% ne aktiválja a csomagot: %source%
Rate %Package% RatePackageWindow %Package% értékelése Rate %Package% RatePackageWindow %Package% értékelése
An error occurred while initializing the package manager: %message% LocalPkgDataLoadProcess Nem sikerült elindítani a csomagkezelőt: %message%. An error occurred while initializing the package manager: %message% LocalPkgDataLoadProcess Nem sikerült elindítani a csomagkezelőt: %message%.
Quit HaikuDepot App Raktár bezárása Quit HaikuDepot App Raktár bezárása
@@ -22,7 +28,11 @@ Category FilterView Kategória
A response to the captcha question must be provided. UserLoginWindow Szükséges a captcha kérdésre válaszolni. A response to the captcha question must be provided. UserLoginWindow Szükséges a captcha kérdésre válaszolni.
An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Váratlan hiba '%Message%' lépett fel '%Property%' jellemzőnél An unexpected error '%Message%' has arisen with property '%Property%' UserLoginWindow Váratlan hiba '%Message%' lépett fel '%Property%' jellemzőnél
A requested object or an object involved in the request was not found on the server. ServerHelper A kért objektum vagy a kérésben szereplő objektum nem található a kiszolgálón. A requested object or an object involved in the request was not found on the server. ServerHelper A kért objektum vagy a kérésben szereplő objektum nem található a kiszolgálón.
Logout ToLatestUserUsageConditionsWindow Kilépés
The following additional package changes have to be made: PackageResult Az alábbi módosítások elvégzése szükséges a csomagon:
No changelog available. PackageInfoView Nincs módosítás-előzmény No changelog available. PackageInfoView Nincs módosítás-előzmény
The current usage conditions have been agreed to. ToLatestUserUsageConditionsWindow A jelenlegi felhasználási feltételek elfogadásra kerültek.
Cancel PackageProblem Mégse
Version PackageListView Verzió Version PackageListView Verzió
No, quit HaikuDepot App Nem, a Raktár bezárása. No, quit HaikuDepot App Nem, a Raktár bezárása.
Not logged in MainWindow Nincs bejelentkezve Not logged in MainWindow Nincs bejelentkezve
@@ -48,10 +58,13 @@ The email is malformed. UserLoginWindow Hibás a levél formátuma.
Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Csomagadatok szinkronizálása a tárolóból: '%REPO_NAME%' Synchronizing package data for repository '%REPO_NAME%' ServerPkgDataUpdateProcess Csomagadatok szinkronizálása a tárolóból: '%REPO_NAME%'
View the usage conditions UserLoginWindow Felhasználási feltételek View the usage conditions UserLoginWindow Felhasználási feltételek
An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Hiba történt az új felhasználó létrehozásához szükséges használati feltételek letöltésével. Ellenőrizd a naplót a részletekért, és próbáld újra.\nA naplók megtekintésével kapcsolatos információk a Haiku felhasználói kézikönyv HaikuDepot szakaszában találhatók. An error has arisen downloading the usage conditions required to create a new user. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserLoginWindow Hiba történt az új felhasználó létrehozásához szükséges használati feltételek letöltésével. Ellenőrizd a naplót a részletekért, és próbáld újra.\nA naplók megtekintésével kapcsolatos információk a Haiku felhasználói kézikönyv HaikuDepot szakaszában találhatók.
Usage conditions agreed ToLatestUserUsageConditionsWindow Felhasználási feltételek elfogadva
Size PackageListView Méret Size PackageListView Méret
Your rating was updated. RatePackageWindow Az értékelés módosítása sikerült. Your rating was updated. RatePackageWindow Az értékelés módosítása sikerült.
All categories FilterView Minden kategória All categories FilterView Minden kategória
ignore problem for now PackageProblem most hagyja figyelmen kívül
n/a PackageInfoView nincs értékelve n/a PackageInfoView nincs értékelve
Checking user details UserDetailVerifierProcess Felhasználó ellenőrzése
Cancel MainWindow Mégse Cancel MainWindow Mégse
Refresh repositories MainWindow Tárolók frissítése Refresh repositories MainWindow Tárolók frissítése
Continue App Folytatás Continue App Folytatás
@@ -59,13 +72,16 @@ A password is required. UserLoginWindow Jelszó szükséges.
Language RatePackageWindow Nyelv Language RatePackageWindow Nyelv
Status PackageListView Állapot Status PackageListView Állapot
Network transport error ServerHelper Hálózati átviteli hiba Network transport error ServerHelper Hálózati átviteli hiba
Cancel PackageResult Mégse
Uninstall %PackageTitle% PackageManager %PackageTitle% eltávolítása Uninstall %PackageTitle% PackageManager %PackageTitle% eltávolítása
Retry PackageProblem Újra
Update RatePackageWindow Frissítés Update RatePackageWindow Frissítés
Language UserLoginWindow Nyelv Language UserLoginWindow Nyelv
OK UserLoginWindow Rendben OK UserLoginWindow Rendben
Synchronizing reference data from server ServerReferenceDataUpdateProcess Referencia adatok szinkronizálása Synchronizing reference data from server ServerReferenceDataUpdateProcess Referencia adatok szinkronizálása
Stability: RatePackageWindow Stabilitás: Stability: RatePackageWindow Stabilitás:
The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow A felhasználási feltételeket el kell fogadni és meg kell erősíteni, hogy a felhasználót létrehozó személy megfelel a minimális életkor követelményeinek. The usage agreement must be agreed to and a confirmation should be made that the person creating the user meets the minimum age requirement. UserLoginWindow A felhasználási feltételeket el kell fogadni és meg kell erősíteni, hogy a felhasználót létrehozó személy megfelel a minimális életkor követelményeinek.
solution %d: PackageProblem Don't change the %d variable %d megoldás:
Source packages MainWindow Forráskód csomagok Source packages MainWindow Forráskód csomagok
Problem with working files App Nem tudok a fájlokkal dolgozni Problem with working files App Nem tudok a fájlokkal dolgozni
Try again App Próbáld újra Try again App Próbáld újra
@@ -83,6 +99,7 @@ Authentication failed UserLoginWindow A hitelesítés sikertelen
Captcha error UserLoginWindow Captcha hiba Captcha error UserLoginWindow Captcha hiba
Manage repositories… MainWindow Csomagtárolók kezelése… Manage repositories… MainWindow Csomagtárolók kezelése…
The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow A becenévnek egyedinek kell lennie, de a megadott név már foglalt. Válassz másik becenevet. The nickname must be unique, but the supplied nickname is already taken. Choose a different nickname. UserLoginWindow A becenévnek egyedinek kell lennie, de a megadott név már foglalt. Válassz másik becenevet.
OK UserUsageConditions Rendben
Open %DeskbarLink% PackageManager %DeskbarLink% megnyitása Open %DeskbarLink% PackageManager %DeskbarLink% megnyitása
Input validation UserLoginWindow Bevitel érvényesítése Input validation UserLoginWindow Bevitel érvényesítése
Log in… MainWindow Bejelentkezés… Log in… MainWindow Bejelentkezés…
@@ -96,11 +113,15 @@ An error occurred while refreshing the repository: %error% LocalRepositoryUpdate
User Created UserLoginWindow Felhasználó létrehozva User Created UserLoginWindow Felhasználó létrehozva
Check for updates… MainWindow Frissítések keresése… Check for updates… MainWindow Frissítések keresése…
Uninstalled PackageListView Eltávolítva Uninstalled PackageListView Eltávolítva
I agree to the usage conditions ToLatestUserUsageConditionsWindow Egyetértek a felhasználási feltételekkel
Installing \"%PackageName%\" InstallPackageProcess \"%PackageName%\" telepítése
OK App Rendben OK App Rendben
Fatal error UninstallPackageAction Végzetes hiba
Develop packages MainWindow Fejlesztői csomagok Develop packages MainWindow Fejlesztői csomagok
Starting the package daemon failed:\n\n%Error% App A csomag démon indítása sikertelen:\n\n%Error% Starting the package daemon failed:\n\n%Error% App A csomag démon indítása sikertelen:\n\n%Error%
No user ratings available. PackageInfoView Felhasználói értékelés nem áll rendelkezésre. No user ratings available. PackageInfoView Felhasználói értékelés nem áll rendelkezésre.
<no info> PackageInfoView <nincs információ> <no info> PackageInfoView <nincs információ>
Usage conditions download problem UserUsageConditions Hiba történt a felhasználási feltételek letöltésekor
Rating PackageListView Értékelés Rating PackageListView Értékelés
A network transport error has arisen communicating with the server system: %s ServerHelper Hálózati hiba lépett fel a szerverrel való kommunikáció során: %s A network transport error has arisen communicating with the server system: %s ServerHelper Hálózati hiba lépett fel a szerverrel való kommunikáció során: %s
Synchronizing icons ServerIconExportUpdateProcess Ikonok szinkronizálása Synchronizing icons ServerIconExportUpdateProcess Ikonok szinkronizálása
@@ -110,12 +131,14 @@ This application writes and reads some working files on your computer in order t
<Package contents not available for remote packages> PackageContentsView <Távoli csomagok esetében a csomag tartalma nem érhető el> <Package contents not available for remote packages> PackageContentsView <Távoli csomagok esetében a csomag tartalma nem érhető el>
Ratings PackageInfoView Értékelés Ratings PackageInfoView Értékelés
Local LocalPkgDataLoadProcess Helyi Local LocalPkgDataLoadProcess Helyi
Package changes PackageResult Window title Csomag-változások
Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Hozzájárulsz ahhoz, hogy névtelen felhasználási adatokat küldjünk a HaikuDepot kiszolgálóra? Bármikor módosítható ez a \"Beállítások\" panelen. Would it be acceptable to send anonymous usage data to the HaikuDepotServer system from this computer? You can change your preference in the \"Settings\" window later. MainWindow Hozzájárulsz ahhoz, hogy névtelen felhasználási adatokat küldjünk a HaikuDepot kiszolgálóra? Bármikor módosítható ez a \"Beállítások\" panelen.
User rating RatePackageWindow Felhasználói értékelés User rating RatePackageWindow Felhasználói értékelés
Installed packages MainWindow Telepített csomagok Installed packages MainWindow Telepített csomagok
Date PackageListView Dátum Date PackageListView Dátum
Error App Hiba Error App Hiba
There was a puzzling response from the web service. UserLoginWindow A webes szolgáltatás rejtélyes választ adott. There was a puzzling response from the web service. UserLoginWindow A webes szolgáltatás rejtélyes választ adott.
Opening \"%DeskbarLink%\" OpenPackageProcess \"%DeskbarLink%\" megnyitása
Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Az értékelés feltöltése sikeres volt. Frissítheted vagy eltávolíthatod a HaikuDepot kiszolgáló webhelyén. Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Az értékelés feltöltése sikeres volt. Frissítheted vagy eltávolíthatod a HaikuDepot kiszolgáló webhelyén.
It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Nem sikerült kapcsolódni a kiszolgálóhoz a captcha kód letöltéséhez. It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Nem sikerült kapcsolódni a kiszolgálóhoz a captcha kód letöltéséhez.
The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow A captchára adott válasz nem megfelelő. Új captcha lesz generálva; próbáld újra. The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow A captchára adott válasz nem megfelelő. Új captcha lesz generálva; próbáld újra.
@@ -137,7 +160,9 @@ Inactive PackageListView Inaktív
Nickname: UserLoginWindow Felhasználó: Nickname: UserLoginWindow Felhasználó:
Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Meta adatok szinkronizálása Synchronizing meta-data about repositories ServerRepositoryDataUpdateProcess Meta adatok szinkronizálása
OK MainWindow Rendben OK MainWindow Rendben
Version %Code% UserUsageConditions Verzió: %Code%
{0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# elem} other{# elem}} {0, plural, one{# item} other{# items}} PackageListView {0, plural, one{# elem} other{# elem}}
Uninstalling \"%PackageName%\" UninstallPackageAction \"%PackageName%\" eltávolítása
Downloading: PackageInfoView Letöltés: Downloading: PackageInfoView Letöltés:
Quit MainWindow Kilépés Quit MainWindow Kilépés
Success UserLoginWindow Sikeres Success UserLoginWindow Sikeres
@@ -157,22 +182,28 @@ Log out MainWindow Kijelentkezés
Comment language: RatePackageWindow Hozzászólás nyelve: Comment language: RatePackageWindow Hozzászólás nyelve:
The password has been incorrectly repeated. UserLoginWindow A megismételt jelszó téves. The password has been incorrectly repeated. UserLoginWindow A megismételt jelszó téves.
The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow A felhasználó [%Nickname%] előzőleg megadott jelszava évrénytelen. A felhasználó ki lesz léptetve az alkalmazásból majd újra be kell jelentkezni az érvényes jelszóval. The password previously supplied for the user [%Nickname%] is not currently valid. The user will be logged-out of this application and you should login again with your updated password. MainWindow A felhasználó [%Nickname%] előzőleg megadott jelszava évrénytelen. A felhasználó ki lesz léptetve az alkalmazásból majd újra be kell jelentkezni az érvényes jelszóval.
View the usage conditions ToLatestUserUsageConditionsWindow Felhasználási feltételek megtekintése
OK ServerHelper Rendben OK ServerHelper Rendben
Reading repository data LocalPkgDataLoadProcess Tároló olvasása Reading repository data LocalPkgDataLoadProcess Tároló olvasása
Fatal error InstallPackageProcess Végzetes hiba
A validation error has occurred ServerHelper Hitelesítési hiba A validation error has occurred ServerHelper Hitelesítési hiba
The nickname is required. UserLoginWindow Felhasználói név szükséges. The nickname is required. UserLoginWindow Felhasználói név szükséges.
- no package size - - no package size -
Apply changes PackageResult Változtatások alkalmazása
Rate package RatePackageWindow Csomag értékelése Rate package RatePackageWindow Csomag értékelése
Server error ServerHelper Mentési hiba Server error ServerHelper Mentési hiba
Sending anonymous usage data MainWindow Névtelen felhasználási adatok küldése Sending anonymous usage data MainWindow Névtelen felhasználási adatok küldése
Log in UserLoginWindow Bejelentkezés Log in UserLoginWindow Bejelentkezés
Usage conditions UserUsageConditions Felhasználási feltételek
HaikuDepot System name Raktár HaikuDepot System name Raktár
Screenshot ScreenshotWindow Képernyőkép Screenshot ScreenshotWindow Képernyőkép
Email address: UserLoginWindow E-mail cím: Email address: UserLoginWindow E-mail cím:
View latest usage conditions… MainWindow Felhasználási feltételek… View latest usage conditions… MainWindow Felhasználási feltételek…
Category: FilterView Kategória: Category: FilterView Kategória:
uninstall package %s\n PackageResult Don't change '%s' variable %s csomag eltávolítása\n
Fetching remote repository data LocalRepositoryUpdateProcess Tároló adatainak letöltése Fetching remote repository data LocalRepositoryUpdateProcess Tároló adatainak letöltése
Description PackageListView Leírás Description PackageListView Leírás
User creation error UserLoginWindow Felhasználó létrehozási hiba User creation error UserLoginWindow Felhasználó létrehozási hiba
You need to be logged into an account before you can rate packages. MainWindow Csomag értékelése előtt be kell jelentkezni egy felhasználói fiókba. You need to be logged into an account before you can rate packages. MainWindow Csomag értékelése előtt be kell jelentkezni egy felhasználói fiókba.
Cleaning up… ShuttingDownWindow Rendrakás…
Repeat password: UserLoginWindow Jelszó ismétlése: Repeat password: UserLoginWindow Jelszó ismétlése:
+4 -4
View File
@@ -31,7 +31,7 @@ An unexpected error '%Message%' has arisen with property '%Property%' UserLoginW
A requested object or an object involved in the request was not found on the server. ServerHelper İstenen nesne veya istekle ilgili bir nesne sunucuda bulunamadı. A requested object or an object involved in the request was not found on the server. ServerHelper İstenen nesne veya istekle ilgili bir nesne sunucuda bulunamadı.
Logout ToLatestUserUsageConditionsWindow Çıkış yap Logout ToLatestUserUsageConditionsWindow Çıkış yap
The following additional package changes have to be made: PackageResult Aşağıdaki ek paket değişikliklerinin yapılması gerekiyor: The following additional package changes have to be made: PackageResult Aşağıdaki ek paket değişikliklerinin yapılması gerekiyor:
No changelog available. PackageInfoView Değişiklik günlüğü mevcut değil No changelog available. PackageInfoView Kullanılabilir bir değişiklik günlüğü yok.
The current usage conditions have been agreed to. ToLatestUserUsageConditionsWindow Geçerli kullanım koşulları kabul edildi. The current usage conditions have been agreed to. ToLatestUserUsageConditionsWindow Geçerli kullanım koşulları kabul edildi.
Cancel PackageProblem İptal Cancel PackageProblem İptal
Version PackageListView Sürüm Version PackageListView Sürüm
@@ -109,7 +109,7 @@ Input validation UserLoginWindow Girdi doğrulaması
Log in… MainWindow Giriş yap… Log in… MainWindow Giriş yap…
Client version too old ServerHelper İstemci sürümü çok eski Client version too old ServerHelper İstemci sürümü çok eski
Local repository load error LocalPkgDataLoadProcess Yerel depo yükleme hatası Local repository load error LocalPkgDataLoadProcess Yerel depo yükleme hatası
The user does not exist or the wrong password was supplied. Check your credentials and try again. UserLoginWindow Kullanıcı mevcut değil veya yanlış parola girildi. Bilgilerinizi denetleyin ve yeniden deneyin. The user does not exist or the wrong password was supplied. Check your credentials and try again. UserLoginWindow Kullanıcı yok veya yanlış parola girildi. Bilgilerinizi denetleyin ve yeniden deneyin.
All repositories MainWindow Tüm depolar All repositories MainWindow Tüm depolar
Repository update error LocalRepositoryUpdateProcess Depo güncelleme hatası Repository update error LocalRepositoryUpdateProcess Depo güncelleme hatası
Network error ServerHelper Ağ hatası Network error ServerHelper Ağ hatası
@@ -148,7 +148,7 @@ There was a puzzling response from the web service. UserLoginWindow Web servisi
Opening \"%DeskbarLink%\" OpenPackageProcess \"%DeskbarLink%\" açılıyor Opening \"%DeskbarLink%\" OpenPackageProcess \"%DeskbarLink%\" açılıyor
Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Derecelendirmeniz başarıyla yüklendi. Haiku Depo sunucusu web sitesinden güncelleyebilir veya silebilirsiniz. Your rating was uploaded successfully. You can update or remove it at the HaikuDepot Server website. RatePackageWindow Derecelendirmeniz başarıyla yüklendi. Haiku Depo sunucusu web sitesinden güncelleyebilir veya silebilirsiniz.
It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Yeni bir kullanıcı oluşturma için gerekli olan CAPTCHA görseli için sunucu ile iletişim kurulamadı. It was not possible to communicate with the server to obtain a captcha image required to create a new user. UserLoginWindow Yeni bir kullanıcı oluşturma için gerekli olan CAPTCHA görseli için sunucu ile iletişim kurulamadı.
The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow CAPTCHA yanıtı yanlış. Yeni bir CAPTCHA oluşturulacak; yeniden deneyin. The supplied response to the captcha is incorrect. A new captcha will be generated; try again. UserLoginWindow CAPTCHA yanıtı yanlış. Yeni bir CAPTCHA üretilecek; yeniden deneyin.
- no package publish - - no package publish -
HaikuDepot needs the package daemon to function, and it appears to be not running.\nWould you like to start it now? App Haiku Depo, paket hizmetine gereksinim duyuyor; ancak şu anda çalışmıyor görünüyor.\nŞimdi başlatılsın mı? HaikuDepot needs the package daemon to function, and it appears to be not running.\nWould you like to start it now? App Haiku Depo, paket hizmetine gereksinim duyuyor; ancak şu anda çalışmıyor görünüyor.\nŞimdi başlatılsın mı?
The password must be at least eight characters long, consist of at least two digits and one upper case character. UserLoginWindow Parola en azından sekiz karakter uzunluğunda olmalı, iki adet rakam ve bir büyük harf içermelidir. The password must be at least eight characters long, consist of at least two digits and one upper case character. UserLoginWindow Parola en azından sekiz karakter uzunluğunda olmalı, iki adet rakam ve bir büyük harf içermelidir.
@@ -186,7 +186,7 @@ While updating package data, a problem has arisen that may cause data to be outd
An error has arisen downloading the usage conditions. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserUsageConditions Kullanım koşulları indirilirken bir hata oluştu. Ayrıntılar için günlüğü denetleyin ve yeniden deneyin.\nGünlüğün nice görüntülenebileceği ile ilgili bilgiye, Haiku Kullanım Kılavuzu'nun Haiku Depo bölümünden erişilebilir. An error has arisen downloading the usage conditions. Check the log for details and try again. \nInformation about how to view the logs is available in the HaikuDepot section of the Haiku User Guide. UserUsageConditions Kullanım koşulları indirilirken bir hata oluştu. Ayrıntılar için günlüğü denetleyin ve yeniden deneyin.\nGünlüğün nice görüntülenebileceği ile ilgili bilgiye, Haiku Kullanım Kılavuzu'nun Haiku Depo bölümünden erişilebilir.
View agreed usage conditions… MainWindow Kabul edilen kullanım koşullarını görüntüle… View agreed usage conditions… MainWindow Kabul edilen kullanım koşullarını görüntüle…
The user [%Nickname%] has authenticated, but before proceeding, you are required to agree to the most recent usage conditions. ToLatestUserUsageConditionsWindow [%Nickname%] kullanıcısının kimliği doğrulandı; ancak sürdürmeden önce güncel kullanım koşullarını kabul etmelisiniz. The user [%Nickname%] has authenticated, but before proceeding, you are required to agree to the most recent usage conditions. ToLatestUserUsageConditionsWindow [%Nickname%] kullanıcısının kimliği doğrulandı; ancak sürdürmeden önce güncel kullanım koşullarını kabul etmelisiniz.
This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Bu paket Haiku Depo sunucusunda değil gibi görünüyor, bu yüzden bir derecelendirme yapmak veya mevcut derecelendirmeyi değiştirmek olanaklı değil. This package doesn't seem to be on the HaikuDepot Server, so it's not possible to create a new rating or edit an existing rating. MainWindow Bu paket Haiku Depo sunucusunda değil gibi görünüyor, bu yüzden bir derecelendirme yapmak veya var olan derecelendirmeyi değiştirmek olanaklı değil.
Apply SettingsWindow Uygula Apply SettingsWindow Uygula
The user \"%Nickname%\" has previously agreed to usage conditions, but the usage conditions have been updated since. The updated usage conditions now need to be agreed to. ToLatestUserUsageConditionsWindow \"%Nickname%\" kullanıcısı, daha önceden kullanım koşullarını kabul etti; ancak koşulların yeni bir sürümü var. Güncel koşulların kabul edilmesi gereklidir. The user \"%Nickname%\" has previously agreed to usage conditions, but the usage conditions have been updated since. The updated usage conditions now need to be agreed to. ToLatestUserUsageConditionsWindow \"%Nickname%\" kullanıcısı, daha önceden kullanım koşullarını kabul etti; ancak koşulların yeni bir sürümü var. Güncel koşulların kabul edilmesi gereklidir.
Log out MainWindow Çıkış yap Log out MainWindow Çıkış yap
+1 -1
View File
@@ -108,7 +108,7 @@ Open… Icon-O-Matic-Menu-File Obre...
Redo Icon-O-Matic-Main Refés Redo Icon-O-Matic-Main Refés
Change Color Icon-O-Matic-SetColorCmd Canvia el Color Change Color Icon-O-Matic-SetColorCmd Canvia el Color
Remove Icon-O-Matic-ShapesList Suprimeix Remove Icon-O-Matic-ShapesList Suprimeix
Drop shapes Icon-O-Matic-ShapesList Deixa anar les formes Drop shapes Icon-O-Matic-ShapesList Deixeu-hi anar formes
PNG Set Icon-O-Matic-SavePanel Estableix PNG PNG Set Icon-O-Matic-SavePanel Estableix PNG
to attach transformers. Empty transformers list - 2nd line per adjuntar-hi transformadors. to attach transformers. Empty transformers list - 2nd line per adjuntar-hi transformadors.
Linear Icon-O-Matic-StyleTypes Lineal Linear Icon-O-Matic-StyleTypes Lineal
+7 -7
View File
@@ -18,8 +18,8 @@ Shorten Icon-O-Matic-PropertyNames Kısalt
Unassign Path Icon-O-Matic-UnassignPathCmd Yol atamasını kaldır Unassign Path Icon-O-Matic-UnassignPathCmd Yol atamasını kaldır
The text you are trying to import is quite long, are you sure? Icon-O-Matic-StyledTextImport İçe aktarmaya çalıştığınız metin pek uzun, emin misiniz? The text you are trying to import is quite long, are you sure? Icon-O-Matic-StyledTextImport İçe aktarmaya çalıştığınız metin pek uzun, emin misiniz?
Paste Icon-O-Matic-Properties Yapıştır Paste Icon-O-Matic-Properties Yapıştır
Detect Orient. Icon-O-Matic-PropertyNames Oryantasyonu algıla Detect Orient. Icon-O-Matic-PropertyNames Yönelimi algıla
Click on a shape above Empty transformers list - 1st line Dönüştürücüleri iliştirmek için Click on a shape above Empty transformers list - 1st line Dönüştürücüleri iliştirmek
Close Icon-O-Matic-Menu-File Kapat Close Icon-O-Matic-Menu-File Kapat
Add rect Icon-O-Matic-PathsList Dikdörtgen ekle Add rect Icon-O-Matic-PathsList Dikdörtgen ekle
Rotation Icon-O-Matic-PropertyNames Döndürme Rotation Icon-O-Matic-PropertyNames Döndürme
@@ -27,7 +27,7 @@ Multi Paste Properties Icon-O-Matic-Properties Çoklu yapıştır özellikleri
Bleep! Exporter - Continue in error dialog Bip bip! Bleep! Exporter - Continue in error dialog Bip bip!
Transform Icon-O-Matic-PathManipulator Dönüştür Transform Icon-O-Matic-PathManipulator Dönüştür
Remove Transformer Icon-O-Matic-RemoveTransformersCmd Dönüştürücüyü kaldır Remove Transformer Icon-O-Matic-RemoveTransformersCmd Dönüştürücüyü kaldır
META:ICON Attribute Icon-O-Matic-SavePanel META:SİMGE özniteliği META:ICON Attribute Icon-O-Matic-SavePanel META:ICON özniteliği
Add shape with style Icon-O-Matic-Menu-Shape Biçemli şekil ekle Add shape with style Icon-O-Matic-Menu-Shape Biçemli şekil ekle
Assign Path Icon-O-Matic-AddPathsCmd Yol ata Assign Path Icon-O-Matic-AddPathsCmd Yol ata
Reset Transformation Icon-O-Matic-ResetTransformationCmd Dönüşümü sıfırla Reset Transformation Icon-O-Matic-ResetTransformationCmd Dönüşümü sıfırla
@@ -98,8 +98,8 @@ Add shape with path Icon-O-Matic-Menu-Shape Yol içeren şekil ekle
Translation X Icon-O-Matic-PropertyNames X çevirisi Translation X Icon-O-Matic-PropertyNames X çevirisi
Flip Control Points Icon-O-Matic-FlipPointsCmd Denetim noktalarını ters çevir Flip Control Points Icon-O-Matic-FlipPointsCmd Denetim noktalarını ters çevir
Add Transformers Icon-O-Matic-AddTransformersCmd Dönüştürücüler ekle Add Transformers Icon-O-Matic-AddTransformersCmd Dönüştürücüler ekle
BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:SİMGE özniteliği BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON özniteliği
Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic SVG dosyasından okuduğu veriyi yorumlayamamış olabilir. Orijinal dosyanın üzerine yazarak bu veriyi tümüyle kaybedebilirsiniz. Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic, SVG dosyasından okuduğu veriyi yorumlayamamış olabilir. Özgün dosyanın üzerine yazarak bu veriyi tümüyle kaybedebilirsiniz.
Rotate indices backwards Icon-O-Matic-PathsList Belirticileri geriye doğru döndür Rotate indices backwards Icon-O-Matic-PathsList Belirticileri geriye doğru döndür
Overwrite Icon-O-Matic-SVGExport Üzerine yaz Overwrite Icon-O-Matic-SVGExport Üzerine yaz
Modify Control Point Icon-O-Matic-ChangePointCmd Denetim noktasını değiştir Modify Control Point Icon-O-Matic-ChangePointCmd Denetim noktasını değiştir
@@ -110,9 +110,9 @@ Change Color Icon-O-Matic-SetColorCmd Renk değiştir
Remove Icon-O-Matic-ShapesList Kaldır Remove Icon-O-Matic-ShapesList Kaldır
Drop shapes Icon-O-Matic-ShapesList Şekilleri bırak Drop shapes Icon-O-Matic-ShapesList Şekilleri bırak
PNG Set Icon-O-Matic-SavePanel PNG kümesi PNG Set Icon-O-Matic-SavePanel PNG kümesi
to attach transformers. Empty transformers list - 2nd line bir şekle tıklayın. to attach transformers. Empty transformers list - 2nd line için bir şekle tıklayın.
Linear Icon-O-Matic-StyleTypes Doğrusal Linear Icon-O-Matic-StyleTypes Doğrusal
any of the other lists to Empty property list - 2nd line özelliklerini düzenlemek için any of the other lists to Empty property list - 2nd line özelliklerini düzenlemek
Nudge Control Point Icon-O-Matic-NudgePointsCommand Denetim noktalarını yokla Nudge Control Point Icon-O-Matic-NudgePointsCommand Denetim noktalarını yokla
Flip Control Point Icon-O-Matic-FlipPointsCmd Denetim noktasını ters çevir Flip Control Point Icon-O-Matic-FlipPointsCmd Denetim noktasını ters çevir
Add Paths Icon-O-Matic-AddPathsCmd Yol ekle Add Paths Icon-O-Matic-AddPathsCmd Yol ekle
+3 -3
View File
@@ -31,10 +31,10 @@ Write boot sector InstallerWindow Önyükleme alanını yaz
Finishing installation. InstallProgress Kurulum tamamlanıyor… Finishing installation. InstallProgress Kurulum tamamlanıyor…
Install from: InstallerWindow Şuradan kur: Install from: InstallerWindow Şuradan kur:
Additional disk space required: 0.0 KiB InstallerWindow Gereken ek disk alanı: 0.0 KiB Additional disk space required: 0.0 KiB InstallerWindow Gereken ek disk alanı: 0.0 KiB
This is beta-quality software! It means there is a risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Bu yazılım geliştirilme aşamasında olup verilerinizin kaybolma riski mevcuttur! Sık sık yedek almayı unutmayın! Demedi demeyin sonra.\n\n\n This is beta-quality software! It means there is a risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Bu yazılım geliştirilme aşamasında olup verilerinizin kaybolma riski vardır! Sık sık yedek almayı unutmayın! Demedi demeyin sonra.\n\n\n
??? InstallerWindow Unknown currently copied item ??? ??? InstallerWindow Unknown currently copied item ???
Install anyway InstallProgress Yine de kur Install anyway InstallProgress Yine de kur
1) If you are installing Haiku onto real hardware (not inside an emulator), you may want to prepare a hard disk partition from another OS (you could, for example, use a GParted Live-CD, which can also resize existing partitions to make room).\nYou can also set up partitions by launching DriveSetup from Installer, but you won't be able to resize existing partitions with it. While DriveSetup has been quite thoroughly tested over the years, it's recommended to have up-to-date backups of the other partitions on your system. Just in case… InstallerApp 1) Haiku'yu bir öykünücü değil de gerçek bir makineye kuruyorsanız başka işletim sistemleri için bir disk bölümü bırakmak isteyebilirsiniz (bunun için örneğin GParted Live-CD sürümünü kullanabilirsiniz, bu sürüm mevcut bölümlerin de boyutunu değiştirebilir).\nEğer isterseniz disk bölümlendirme için Disk İzlencesi uygulamasını Haiku Kur içinden çalıştırabilirsiniz; ancak bu yazılım mevcut bölümlerin boyutunu değiştiremez. Disk İzlencesi uzun yıllardır kullanılan denenmiş bir yazılım olmasına rağmen diğer disk bölümlerinin güncel bir yedeğine sahip olmanız tavsiye edilir. N'olur n'olmaz… 1) If you are installing Haiku onto real hardware (not inside an emulator), you may want to prepare a hard disk partition from another OS (you could, for example, use a GParted Live-CD, which can also resize existing partitions to make room).\nYou can also set up partitions by launching DriveSetup from Installer, but you won't be able to resize existing partitions with it. While DriveSetup has been quite thoroughly tested over the years, it's recommended to have up-to-date backups of the other partitions on your system. Just in case… InstallerApp 1) Haiku'yu bir öykünücü değil de gerçek bir makineye kuruyorsanız başka işletim sistemleri için bir disk bölümü bırakmak isteyebilirsiniz (bunun için örneğin GParted Live-CD sürümünü kullanabilirsiniz, bu sürüm var olan bölümlerin de boyutunu değiştirebilir).\nEğer isterseniz disk bölümlendirme için Disk İzlencesi uygulamasını Haiku Kur içinden çalıştırabilirsiniz; ancak bu yazılım var olan bölümlerin boyutunu değiştiremez. Disk İzlencesi uzun yıllardır kullanılan denenmiş bir yazılım olmasına rağmen diğer disk bölümlerinin güncel bir yedeğine sahip olmanız tavsiye edilir. N'olur n'olmaz…
Choose the source and destination disk from the pop-up menus. Then click \"Begin\". InstallerWindow Açılır menülerden kaynak ve hedef diskleri seçip \"Başla\"ya tıklayın. Choose the source and destination disk from the pop-up menus. Then click \"Begin\". InstallerWindow Açılır menülerden kaynak ve hedef diskleri seçip \"Başla\"ya tıklayın.
2) The Installer will make the Haiku partition itself bootable, but takes no steps to integrate Haiku into an existing boot menu. If you have GRUB already installed, you can add Haiku to it.\nFor details, please consult the guide on booting Haiku on our website at https://www.haiku-os.org/guides/booting.\nOr you can set up a boot menu from Installer's \"Tools\" menu, see the Haiku User Guide's topic on the application \"BootManager\".\n\n\n InstallerApp 2) Haiku Kur, Haiku bölümünü önyüklenebilir yapar; ancak Haiku'yu var olan bir önyükleme menüsüne eklemez. Sisteminizde GRUB yüklüyse Haiku'yu ona ekleyebilirsiniz.\nAyrıntılar için Haiku web sitesindeki önyükleme kılavuzuna bakabilirsiniz: https://www.haiku-os.org/guides/booting.\nBunun yanında, Haiku Kur'un \"Araçlar\" menüsünden bir önyükleme menüsü ayarlanabilir. Ek bilgi için Haiku Kullanıcı Kılavuzu'nun \"Önyükleme Yöneticisi\" bölümüne bakın.\n\n\n 2) The Installer will make the Haiku partition itself bootable, but takes no steps to integrate Haiku into an existing boot menu. If you have GRUB already installed, you can add Haiku to it.\nFor details, please consult the guide on booting Haiku on our website at https://www.haiku-os.org/guides/booting.\nOr you can set up a boot menu from Installer's \"Tools\" menu, see the Haiku User Guide's topic on the application \"BootManager\".\n\n\n InstallerApp 2) Haiku Kur, Haiku bölümünü önyüklenebilir yapar; ancak Haiku'yu var olan bir önyükleme menüsüne eklemez. Sisteminizde GRUB yüklüyse Haiku'yu ona ekleyebilirsiniz.\nAyrıntılar için Haiku web sitesindeki önyükleme kılavuzuna bakabilirsiniz: https://www.haiku-os.org/guides/booting.\nBunun yanında, Haiku Kur'un \"Araçlar\" menüsünden bir önyükleme menüsü ayarlanabilir. Ek bilgi için Haiku Kullanıcı Kılavuzu'nun \"Önyükleme Yöneticisi\" bölümüne bakın.\n\n\n
Hide optional packages InstallerWindow İsteğe bağlı paketleri gizle Hide optional packages InstallerWindow İsteğe bağlı paketleri gizle
@@ -75,7 +75,7 @@ Boot Manager, the application to configure the Haiku boot menu, could not be lau
Please close the Boot Manager window before closing the Installer window. InstallerWindow Haiku Kur'u kapatmadan önce Önyükleme Yöneticisi penceresini kapatın. Please close the Boot Manager window before closing the Installer window. InstallerWindow Haiku Kur'u kapatmadan önce Önyükleme Yöneticisi penceresini kapatın.
OK InstallProgress Tamam OK InstallProgress Tamam
Running Boot Manager and DriveSetup…\n\nClose both applications to continue with the installation. InstallerWindow Önyükleme Yöneticisi ve Disk İzlencesi çalışıyor…\n\nKurulumu sürdürmek için her iki uygulamayı da kapatın. Running Boot Manager and DriveSetup…\n\nClose both applications to continue with the installation. InstallerWindow Önyükleme Yöneticisi ve Disk İzlencesi çalışıyor…\n\nKurulumu sürdürmek için her iki uygulamayı da kapatın.
Are you sure you want to install onto the current boot disk? The Installer will have to reboot your machine if you proceed. InstallProgress Mevcut önyükleme diskine kurmak istediğinizden emin misiniz? Haiku Kur, makinenizi yeniden başlatacaktır. Are you sure you want to install onto the current boot disk? The Installer will have to reboot your machine if you proceed. InstallProgress Geçerli önyükleme diskine kurmak istediğinizden emin misiniz? Haiku Kur, makinenizi yeniden başlatacaktır.
Onto: InstallerWindow Şuraya: Onto: InstallerWindow Şuraya:
Quit Boot Manager and DriveSetup InstallerWindow Önyükleme Yöneticisi'nden ve Disk İzlencesi'nden çık Quit Boot Manager and DriveSetup InstallerWindow Önyükleme Yöneticisi'nden ve Disk İzlencesi'nden çık
Tools InstallerWindow Araçlar Tools InstallerWindow Araçlar
+2 -2
View File
@@ -1,9 +1,10 @@
1 catalan; valencian x-vnd.Haiku-Login 3568987751 1 catalan; valencian x-vnd.Haiku-Login 2920451831
Invalid login! Login View La identificació no és vàlida! Invalid login! Login View La identificació no és vàlida!
Error Login App Error Error Login App Error
Login application for Haiku\nUsage: Login App Aplicació d'inici de sessió per al Haiku\nÚs: Login application for Haiku\nUsage: Login App Aplicació d'inici de sessió per al Haiku\nÚs:
--nonmodal\tDo not make the window modal Login App --nonmodal\tNo facis que la finestra sigui modal. --nonmodal\tDo not make the window modal Login App --nonmodal\tNo facis que la finestra sigui modal.
Welcome to Haiku Login Window Benvingut/da al Haiku! Welcome to Haiku Login Window Benvingut/da al Haiku!
--edit\tLaunch in shelf editing mode to allow customizing the desktop. Login App --edit\tInicia en el mode d'edició de lleixes per permetre personalitzar l'escriptori.
Halt Login View Atura Halt Login View Atura
Desktop Desktop Window Escriptori Desktop Desktop Window Escriptori
Hide password Login View Amaga la contrasenya Hide password Login View Amaga la contrasenya
@@ -11,7 +12,6 @@ Reboot Login View Reinicia
You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Podeu personalitzar l'escriptori que es mostra darrere l'aplicació d'inici de sessió deixant-hi anar replicants.\n\nEn acabar, només heu de sortir de l'aplicació (Cmd-Q). You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Podeu personalitzar l'escriptori que es mostra darrere l'aplicació d'inici de sessió deixant-hi anar replicants.\n\nEn acabar, només heu de sortir de l'aplicació (Cmd-Q).
OK Login View D'acord OK Login View D'acord
Info Login App Informació Info Login App Informació
--edit\tLaunch in shelf editting mode to allow customizing the desktop. Login App --edit\tLlançament en mode d'edició de lleixes per permetre personalitzar l'escriptori.
Login: Login View Nom d'usuari: Login: Login View Nom d'usuari:
Password: Login View Contrasenya: Password: Login View Contrasenya:
Unimplemented Login App No implementat Unimplemented Login App No implementat
+1 -2
View File
@@ -1,4 +1,4 @@
1 czech x-vnd.Haiku-Login 3568987751 1 czech x-vnd.Haiku-Login 1584886353
Invalid login! Login View Neplatné přihlášení! Invalid login! Login View Neplatné přihlášení!
Error Login App Chyba Error Login App Chyba
Login application for Haiku\nUsage: Login App Aplikace pro přihlášení k Haiku\nPoužití: Login application for Haiku\nUsage: Login App Aplikace pro přihlášení k Haiku\nPoužití:
@@ -11,7 +11,6 @@ Reboot Login View Restartovat
You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Můžete přizpůsobit plochu zobrazenou na přihlašovací aplikaci tak, že do ní vložíte replikanty.\n\nPo dokončení stačí ukončit aplikaci (Cmd-Q). You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Můžete přizpůsobit plochu zobrazenou na přihlašovací aplikaci tak, že do ní vložíte replikanty.\n\nPo dokončení stačí ukončit aplikaci (Cmd-Q).
OK Login View OK OK Login View OK
Info Login App Informace Info Login App Informace
--edit\tLaunch in shelf editting mode to allow customizing the desktop. Login App --edit\tSpustit v režimu úprav pro přizpůsobení pracovní plochy.
Login: Login View Přihlašovací jméno: Login: Login View Přihlašovací jméno:
Password: Login View Heslo: Password: Login View Heslo:
Unimplemented Login App Neimplementováno Unimplemented Login App Neimplementováno
+1 -2
View File
@@ -1,4 +1,4 @@
1 danish x-vnd.Haiku-Login 3568987751 1 danish x-vnd.Haiku-Login 1584886353
Invalid login! Login View Ugyldigt login! Invalid login! Login View Ugyldigt login!
Error Login App Fejl Error Login App Fejl
Login application for Haiku\nUsage: Login App Indlogningsprogram til Haiku\nAnvendelse: Login application for Haiku\nUsage: Login App Indlogningsprogram til Haiku\nAnvendelse:
@@ -11,7 +11,6 @@ Reboot Login View Genstart
You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Du kan tilpasse skrivebordet som vises bag login-programmet ved at slippe replikanter på det.\n\nNår du er færdig, så afslut blot programmet (Cmd-Q). You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Du kan tilpasse skrivebordet som vises bag login-programmet ved at slippe replikanter på det.\n\nNår du er færdig, så afslut blot programmet (Cmd-Q).
OK Login View OK OK Login View OK
Info Login App Info Info Login App Info
--edit\tLaunch in shelf editting mode to allow customizing the desktop. Login App --edit\tStart i hylderedigeringstilstand, så det er muligt at tilpasse skrivebordet.
Login: Login View Login: Login: Login View Login:
Password: Login View Adgangskode: Password: Login View Adgangskode:
Unimplemented Login App Uimplementeret Unimplemented Login App Uimplementeret
+2 -2
View File
@@ -1,9 +1,10 @@
1 german x-vnd.Haiku-Login 3568987751 1 german x-vnd.Haiku-Login 2920451831
Invalid login! Login View Ungültige Anmeldung! Invalid login! Login View Ungültige Anmeldung!
Error Login App Fehler Error Login App Fehler
Login application for Haiku\nUsage: Login App Login Anwendung für Haiku\nGebrauch: Login application for Haiku\nUsage: Login App Login Anwendung für Haiku\nGebrauch:
--nonmodal\tDo not make the window modal Login App --nonmodal\tFenster nicht-modal machen --nonmodal\tDo not make the window modal Login App --nonmodal\tFenster nicht-modal machen
Welcome to Haiku Login Window Willkommen zu Haiku Welcome to Haiku Login Window Willkommen zu Haiku
--edit\tLaunch in shelf editing mode to allow customizing the desktop. Login App --edit\tIm Shelf Bearbeitungsmodus starten, um den Desktop anpassen zu können.
Halt Login View Stopp Halt Login View Stopp
Desktop Desktop Window Desktop Desktop Desktop Window Desktop
Hide password Login View Passwort verbergen Hide password Login View Passwort verbergen
@@ -11,7 +12,6 @@ Reboot Login View Neustart
You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Der Desktop hinter der Login Anwendung kann durch Replikanten individualisiert werden.\n\nIst man damit fertig kann die Anwendung einfach per ALT+Q beendet werden. You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Cmd-Q). Login App Der Desktop hinter der Login Anwendung kann durch Replikanten individualisiert werden.\n\nIst man damit fertig kann die Anwendung einfach per ALT+Q beendet werden.
OK Login View OK OK Login View OK
Info Login App Info Info Login App Info
--edit\tLaunch in shelf editting mode to allow customizing the desktop. Login App --edit\tShelf-Bearbeitungsmodus, um den Desktop individuell einzurichten.
Login: Login View Anmeldung: Login: Login View Anmeldung:
Password: Login View Passwort: Password: Login View Passwort:
Unimplemented Login App Nicht implementiert Unimplemented Login App Nicht implementiert

Some files were not shown because too many files have changed in this diff Show More