Merge remote-tracking branch 'haiku/master' into package-management
Conflicts: build/jam/HaikuImage build/jam/OptionalPackageDependencies build/jam/OptionalPackages build/scripts/build_cross_tools_gcc4 src/add-ons/translators/icns/Jamfile src/add-ons/translators/jpeg/Jamfile
This commit is contained in:
+14
-20
@@ -1491,30 +1491,24 @@ actions BuildCDBootPPCImage1 bind MAPS
|
||||
{
|
||||
$(RM) $(<)
|
||||
mkdir -p $(HAIKU_OUTPUT_DIR)/cd/ppc
|
||||
cp $(>) $(HAIKU_OUTPUT_DIR)/cd/ppc/
|
||||
mkdir -p $(HAIKU_OUTPUT_DIR)/cd/boot
|
||||
# CHRP Boot script
|
||||
cp $(>[3]) $(HAIKU_OUTPUT_DIR)/cd/ppc/bootinfo.txt
|
||||
cp $(>[1]) $(HAIKU_OUTPUT_DIR)/cd/ofwboot.elf
|
||||
cp $(>[2]) $(HAIKU_OUTPUT_DIR)/cd/ofwboot.xcf
|
||||
#mkisofs -r -U -chrp-boot -V bootimg -o $(<) $(>[1]) $(>[2-])
|
||||
#mkisofs -hfs -r -U -chrp-boot -part -map $(MAPS) -no-desktop \
|
||||
# -hfs-volid bootimg -V bootimg -prep-boot $(>[1]:D=) -o $(<) $(>[1])
|
||||
# - $(>[2-])
|
||||
#mkisofs -v -hfs -part -map $(MAPS) -no-desktop -hfs-volid bootimg \
|
||||
# -V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/ppc -r -o $(<) $(>[1]) \
|
||||
# $(>[2-]) $(HAIKU_OUTPUT_DIR)/cd
|
||||
#mkisofs -r -U -chrp-boot -V bootimg -prep-boot $(>[1]:D=) -o $(<) $(>[1]) \
|
||||
# $(>[2-])
|
||||
#mkisofs -r -U -V bootimg -prep-boot $(>[1]:D=) -o $(<) $(>[1]) $(>[2-])
|
||||
# $(HAIKU_OUTPUT_DIR)/cd
|
||||
# -hfs -hfs-bless .
|
||||
cp $(>[3]) $(HAIKU_OUTPUT_DIR)/cd/boot/boot.chrp
|
||||
# Haiku Bootloaders
|
||||
cp $(>[2]) $(HAIKU_OUTPUT_DIR)/cd/boot/haikuloader.xcf
|
||||
cp $(>[1]) $(HAIKU_OUTPUT_DIR)/cd/boot/haikuloader.elf
|
||||
# Extras (readme files, etc)
|
||||
cp $(>[4]) $(HAIKU_OUTPUT_DIR)/cd/
|
||||
|
||||
mkisofs -v -hfs -part -map $(MAPS) -no-desktop -hfs-volid bootimg \
|
||||
-V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/ppc -prep-boot \
|
||||
ppc/$(>[2]:D=) -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd \
|
||||
-V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/boot -prep-boot \
|
||||
boot/haikuloader.xcf -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd \
|
||||
|| \
|
||||
genisoimage -v -hfs -part -map $(MAPS) -no-desktop -hfs-volid bootimg \
|
||||
-V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/ppc -prep-boot \
|
||||
ppc/$(>[2]:D=) -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd
|
||||
#$(RM) -R $(HAIKU_OUTPUT_DIR)/cd
|
||||
-V bootimg -hfs-bless $(HAIKU_OUTPUT_DIR)/cd/boot -prep-boot \
|
||||
boot/haikuloader.xcf -r -o $(<) $(HAIKU_OUTPUT_DIR)/cd
|
||||
$(RM) -R $(HAIKU_OUTPUT_DIR)/cd
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
||||
local sysHeaders ;
|
||||
local cc ;
|
||||
local defines ;
|
||||
local includesSeparator ;
|
||||
local localIncludesOption ;
|
||||
local systemIncludesOption ;
|
||||
|
||||
@@ -22,20 +23,20 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
||||
if $(PLATFORM) = host {
|
||||
sysHeaders += $(HOST_HDRS) ;
|
||||
defines += $(HOST_DEFINES) ;
|
||||
|
||||
cc = $(HOST_CC) ;
|
||||
if $(USES_BE_API) {
|
||||
sysHeaders += $(HOST_BE_API_HEADERS) ;
|
||||
}
|
||||
|
||||
defines += $(HOST_DEFINES) ;
|
||||
cc = $(HOST_CC) ;
|
||||
|
||||
includesSeparator = $(HOST_INCLUDES_SEPARATOR) ;
|
||||
localIncludesOption = $(HOST_LOCAL_INCLUDES_OPTION) ;
|
||||
systemIncludesOption = $(HOST_SYSTEM_INCLUDES_OPTION) ;
|
||||
} else {
|
||||
sysHeaders += $(TARGET_HDRS) ;
|
||||
defines += $(TARGET_DEFINES) ;
|
||||
defines += $(TARGET_DEFINES) ;
|
||||
cc = $(TARGET_CC) ;
|
||||
|
||||
includesSeparator = $(TARGET_INCLUDES_SEPARATOR) ;
|
||||
localIncludesOption = $(TARGET_LOCAL_INCLUDES_OPTION) ;
|
||||
systemIncludesOption = $(TARGET_SYSTEM_INCLUDES_OPTION) ;
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ local coffloader = boot_loader_openfirmware_coff ;
|
||||
# OpenFirmware / Mac boot support files:
|
||||
|
||||
# CHRP script
|
||||
local chrpboot = ofboot.b ;
|
||||
local chrpscript = ofboot.chrp ;
|
||||
|
||||
# HFS creator and application type mapping for mkisofs
|
||||
local hfsmaps = hfs.map ;
|
||||
@@ -25,11 +25,11 @@ local hfsmaps = hfs.map ;
|
||||
# extra files to put on the boot iso
|
||||
local extras = README.html ;
|
||||
|
||||
SEARCH on $(chrpboot) $(hfsmaps) $(extras) = [ FDirName $(HAIKU_TOP) data boot_cd ] ;
|
||||
SEARCH on $(chrpscript) $(hfsmaps) $(extras) = [ FDirName $(HAIKU_TOP) data boot_cd ] ;
|
||||
|
||||
|
||||
|
||||
BuildCDBootPPCImage $(HAIKU_CD_BOOT_PPC_IMAGE) : $(hfsmaps) : $(elfloader) : $(coffloader) : $(chrpboot) : $(extras) ;
|
||||
BuildCDBootPPCImage $(HAIKU_CD_BOOT_PPC_IMAGE) : $(hfsmaps) : $(elfloader) : $(coffloader) : $(chrpscript) : $(extras) ;
|
||||
|
||||
|
||||
NotFile haiku-boot-cd-ppc ;
|
||||
|
||||
@@ -35,7 +35,7 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
|
||||
setversion setvolume seq sha1sum sha256sum shar shred shuf shutdown sleep
|
||||
sort spamdbm split stat strace stty su sum sync sysinfo
|
||||
tac tail tcpdump tcptester tee telnet telnetd test timeout top touch
|
||||
tput tr traceroute translate trash true truncate tsort tty
|
||||
tr traceroute translate trash true truncate tsort tty
|
||||
uname unchop unexpand unmount uniq unlink unshar unzip unzipsfx
|
||||
<bin>updatedb uptime urlwrapper useradd uudecode uuencode
|
||||
vdir version vmstat
|
||||
@@ -45,8 +45,8 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
|
||||
] ;
|
||||
|
||||
SYSTEM_APPS = [ FFilterByBuildFeatures
|
||||
AboutSystem ActivityMonitor BootManager@x86 CharacterMap
|
||||
CodyCam DeskCalc Devices DiskProbe DiskUsage DriveSetup CDPlayer Debugger
|
||||
AboutSystem ActivityMonitor BootManager@x86 CDPlayer CharacterMap
|
||||
CodyCam Debugger DeskCalc Devices DiskProbe DiskUsage DriveSetup
|
||||
Expander GLInfo@x86 Icon-O-Matic Installer LaunchBox Magnify Mail
|
||||
MediaConverter MediaPlayer MidiPlayer NetworkStatus PackageInstaller People
|
||||
PoorMan PowerStatus ProcessController Screenshot ShowImage SoundRecorder
|
||||
@@ -188,6 +188,7 @@ SYSTEM_ADD_ONS_DRIVERS_POWER = [ FFilterByBuildFeatures acpi_button@x86 ] ;
|
||||
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
||||
ata@ata pci ps2@x86,x86_64 isa@x86,x86_64
|
||||
ide@ide scsi config_manager agp_gart@x86 usb firewire@x86 acpi@x86
|
||||
virtio
|
||||
] ;
|
||||
SYSTEM_ADD_ONS_FILE_SYSTEMS = bfs bindfs btrfs cdda exfat ext2 fat iso9660 nfs
|
||||
nfs4 attribute_overlay write_overlay ntfs packagefs reiserfs@x86 udf
|
||||
|
||||
@@ -33,8 +33,9 @@ if $(HAIKU_ATA_STACK) = 1 {
|
||||
: generic_ide_pci it8211 legacy_sata silicon_image_3112 ide_isa@x86 ;
|
||||
}
|
||||
|
||||
AddFilesToPackage add-ons kernel busses scsi : ahci ;
|
||||
AddFilesToPackage add-ons kernel busses scsi : ahci virtio_scsi ;
|
||||
AddFilesToPackage add-ons kernel busses usb : <usb>uhci <usb>ohci <usb>ehci ;
|
||||
AddFilesToPackage add-ons kernel busses virtio : virtio_pci ;
|
||||
AddFilesToPackage add-ons kernel console : vga_text ;
|
||||
AddFilesToPackage add-ons kernel debugger
|
||||
: <kdebug>demangle <kdebug>disasm@x86 <kdebug>hangman
|
||||
@@ -54,6 +55,7 @@ if $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 {
|
||||
|
||||
# drivers
|
||||
AddNewDriversToPackage disk scsi : scsi_cd scsi_disk ;
|
||||
AddNewDriversToPackage disk virtual : virtio_block ;
|
||||
AddNewDriversToPackage power : enhanced_speedstep@x86 ;
|
||||
AddNewDriversToPackage power : acpi_battery@x86 ;
|
||||
#AddNewDriversToPackage display : display_controls@x86 ;
|
||||
@@ -252,6 +254,7 @@ AddBootModuleSymlinksToPackage
|
||||
ide_isa@x86
|
||||
<usb>uhci <usb>ohci <usb>ehci
|
||||
scsi_cd scsi_disk usb_disk
|
||||
virtio virtio_pci virtio_block virtio_scsi
|
||||
efi_gpt
|
||||
intel
|
||||
bfs packagefs
|
||||
|
||||
@@ -68,7 +68,6 @@ AddHeaderDirectoryToPackage compatibility bsd : bsd ;
|
||||
AddHeaderDirectoryToPackage compatibility gnu : gnu ;
|
||||
|
||||
# third party libs headers
|
||||
AddHeaderDirectoryToPackage libs termcap : 3rdparty ;
|
||||
AddHeaderDirectoryToPackage libs tiff : 3rdparty ;
|
||||
|
||||
# cpp headers
|
||||
|
||||
+11
-4
@@ -1,7 +1,14 @@
|
||||
# This mapping is needed to successfully boot and to keep macos
|
||||
# from treating everything like a text file (ugly!)
|
||||
#
|
||||
# EXTN XLate CREATOR TYPE Comment
|
||||
.b Raw 'UNIX' 'tbxi' "bootstrap"
|
||||
boot_loader_openfirmware Raw 'UNIX' 'boot' "bootstrap"
|
||||
* Raw 'UNIX' 'UNIX' "unix"
|
||||
# EXTN XLate CREATOR TYPE Comment
|
||||
.chrp - 'chrp' 'tbxi' "Macintosh Toolbox ROM file"
|
||||
.elf Raw 'UNIX' 'boot' "ELF Binary"
|
||||
.xcf Raw 'UNIX' 'boot' "XCOFF Binary"
|
||||
.htm Ascii 'MOSS' 'TEXT' "HTML File"
|
||||
.html Ascii 'MOSS' 'TEXT' "HTML File"
|
||||
.txt Ascii 'ttxt' 'TEXT' "Text File"
|
||||
.hqx Ascii 'BnHq' 'TEXT' "BinHex file"
|
||||
.sea Raw 'aust' 'APPL' "Self Expanding Archive"
|
||||
.sit Raw 'SIT!' 'SITD' "Stuffit Expander file"
|
||||
* Raw 'UNIX' 'UNIX' "Unix"
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<CHRP-BOOT>
|
||||
<DESCRIPTION>
|
||||
Haiku Boot Disk
|
||||
</DESCRIPTION>
|
||||
<OS-NAME>
|
||||
Haiku
|
||||
</OS-NAME>
|
||||
<BOOT-SCRIPT>
|
||||
boot cd:,\ppc\boot_loader_openfirmware
|
||||
</BOOT-SCRIPT>
|
||||
</CHRP-BOOT>
|
||||
@@ -0,0 +1,180 @@
|
||||
<chrp-boot>
|
||||
<compatible>
|
||||
MacRISC MacRISC3 MacRISC4
|
||||
</compatible>
|
||||
<description>
|
||||
Haiku for PowerPC
|
||||
</description>
|
||||
<boot-script>
|
||||
boot cd:,\\haikuloader.elf
|
||||
</boot-script>
|
||||
<icon size=64,64 color-space=3,3,2>
|
||||
<bitmap>
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF
|
||||
FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
|
||||
00 00 00 00 00 00
|
||||
</bitmap>
|
||||
</icon>
|
||||
</chrp-boot>
|
||||
@@ -1,8 +1,8 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-BFSAddOn 1074880496
|
||||
Enable query support BFS_Initialize_Parameter Habilitar suporte a consultas
|
||||
2048 (Recommended) BFS_Initialize_Parameter 2048 (Recomendado)
|
||||
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Arquivos grandes em maioria)
|
||||
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Disabilitar o suporte a consultas pode aumentar a velocidade de certas operações do sistema, mas somente deve ser utilizado se estiver absolutamente certo de que não irá precisar de consultas.\nQualquer volume que for necessário para inicializar o Haiku precisa ter suporte a consultas habilitado.
|
||||
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Arquivos pequenos em maioria)
|
||||
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Majoritariamente arquivos grandes)
|
||||
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Desabilitar o suporte a consultas pode aumentar a velocidade de certas operações do sistema de arquivos, entretanto deveria ser utilizado somente se estiver absolutamente certo de que não necessitará de consultas.\nQualquer volume que for necessário para inicializar o Haiku deve obrigatoriamente ter o suporte a consultas habilitado.
|
||||
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Na maioria arquivos pequenos)
|
||||
Blocksize: BFS_Initialize_Parameter Tamanho do bloco:
|
||||
Name: BFS_Initialize_Parameter Nome:
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-KeyboardInputServerDevice 2536418998
|
||||
Kill application Team monitor Matar aplicação
|
||||
Kill application Team monitor Matar aplicativo
|
||||
Quit application Team monitor Fechar aplicativo
|
||||
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selecione um aplicativo da lista acima e clique um dos botões 'Matar aplicativo' e 'Fechar aplicativo' de maneira a fechá-lo.\n\nPressione CONTROL+ALT+DELETE por %ld segundos para reiniciar.
|
||||
If the application will not quit you may have to kill it. Team monitor Se a aplicação não fechar, você deve matá-la.
|
||||
If the application will not quit you may have to kill it. Team monitor Se o aplicativo não fechar, você deve matá-lo.
|
||||
Force reboot Team monitor Forçar a reinicialização
|
||||
Team monitor Team monitor Monitor de equipe
|
||||
(This team is a system component) Team monitor (Esta equipe é um componente do sistema)
|
||||
|
||||
@@ -18,7 +18,7 @@ Output treble MultiAudio Выхад высокіх
|
||||
Mono mix MultiAudio Моно мікс
|
||||
General MultiAudio Агульны
|
||||
Input & Output MultiAudio Выхад і Ўваход
|
||||
Enhanced Setup MultiAudio Спец. Наладкі
|
||||
Enhanced Setup MultiAudio Спецыяльныя Наладкі
|
||||
Stereo mix MultiAudio Стэрэа мікс
|
||||
Output 3D depth MultiAudio Выхад глыбіня 3D
|
||||
Volume MultiAudio Гучнасьць
|
||||
|
||||
@@ -10,6 +10,6 @@ Grid Width: %li GLife ScreenSaver グリッドの幅: %li
|
||||
Grid Height: %li GLife ScreenSaver グリッドの高さ: %li
|
||||
Grid Life Delay: GLife ScreenSaver グリッドの生存猶予:
|
||||
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"ライフゲーム\"
|
||||
Grid Life Delay: %s GLife ScreenSaver グリッドの生存猶予: %s
|
||||
Grid Life Delay: %s GLife ScreenSaver グリッドが変化するまでの時間: %s
|
||||
Grid Border: GLife ScreenSaver グリッドの境界:
|
||||
by Aaron Hill GLife ScreenSaver Aaron Hill 作
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 belarusian x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: немагчыма пераключыць каталог\n
|
||||
TIFF image TIFFTranslator Выява TIFF
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator Наладкі канвертара вы
|
||||
TIFF image translator TIFFTranslator Канвертар выяваў TIFF
|
||||
RLE (Packbits) TIFFView RLE (Packbits)
|
||||
TIFF Settings TIFFMain Наладкі TIFF
|
||||
Use compression: TIFFView Сціскаць:
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: некарэктны індэкс дакументу\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Версія %d.%d.%d %s
|
||||
Use Compression: TIFFView Запакаваць:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 german x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 german x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: Ordner konnte nicht gesetzt werden\n
|
||||
TIFF image TIFFTranslator TIFF-Bild
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator TIFFTranslator-Einstellungen
|
||||
TIFF image translator TIFFTranslator TIFF-Bild-Translator
|
||||
RLE (Packbits) TIFFView RLE (Packbits)
|
||||
TIFF Settings TIFFMain TIFF-Einstellungen
|
||||
Use compression: TIFFView Komprimierung:
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: ungültiger Dokument-Index\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Version %d.%d.%d %s
|
||||
Use Compression: TIFFView Komprimierung:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 greek, modern (1453-) x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 greek, modern (1453-) x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: αδυναμία ορισμού του καταλόγου\n
|
||||
TIFF image TIFFTranslator TIFF εικόνα
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF Ρυθμίσεις
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: λανθασμένο έγγραφο ευρετηρίου\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Έκδοση %d.%d.%d %s
|
||||
Use Compression: TIFFView Χρήση συμπίεσης:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 finnish x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 finnish x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: ei voitu asettaa hakemistoa\n
|
||||
TIFF image TIFFTranslator TIFF-kuva
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF-asetukset
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: virheellinen asiakirjahakemisto\n
|
||||
ZIP (Deflate) TIFFView ZIP (Kutista)
|
||||
Version %d.%d.%d %s TIFFView Versio %d.%d.%d %s
|
||||
Use Compression: TIFFView Käyttäjätiivistys:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 french x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 french x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identification de l'entête TIFF : impossible de déterminer l'annuaire\n
|
||||
TIFF image TIFFTranslator Image TIFF
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator Réglages du traducteur TIFF
|
||||
TIFF image translator TIFFTranslator Traducteur d'images TIFF
|
||||
RLE (Packbits) TIFFView RLE (bits empaqueté)
|
||||
TIFF Settings TIFFMain Réglages TIFF
|
||||
Use compression: TIFFView Méthode de compression :
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identification de l'entête TIFF : index de document invalide\n
|
||||
ZIP (Deflate) TIFFView ZIP (Compression)
|
||||
Version %d.%d.%d %s TIFFView Version %d.%d.%d %s
|
||||
Use Compression: TIFFView Utiliser la compression :
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 hungarian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 hungarian x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nem sikerült a mappát beállítani\n
|
||||
TIFF image TIFFTranslator TIFF kép
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator TIFFÉrtelmező beállítások
|
||||
TIFF image translator TIFFTranslator TIFF kép értelmező
|
||||
RLE (Packbits) TIFFView RLE
|
||||
TIFF Settings TIFFMain TIFF beállítások
|
||||
Use compression: TIFFView Tömörítés módja:
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: érvénytelen dokumentumindex\n
|
||||
ZIP (Deflate) TIFFView ZIP
|
||||
Version %d.%d.%d %s TIFFView %d.%d.%d %s verzió
|
||||
Use Compression: TIFFView Tömörítés módja:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 japanese x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 japanese x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: couldn't set directory\n
|
||||
TIFF image TIFFTranslator TIFF イメージ
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator TIFF トランスレーター設定
|
||||
TIFF image translator TIFFTranslator TIFF イメージトランスレーター
|
||||
RLE (Packbits) TIFFView RLE (Packbits)
|
||||
TIFF Settings TIFFMain TIFF 設定
|
||||
Use compression: TIFFView 圧縮方法:
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: invalid document index\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView バージョン %d.%d.%d %s
|
||||
Use Compression: TIFFView 圧縮方法:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 lithuanian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 lithuanian x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepavyko nustatyti katalogo\n
|
||||
TIFF image TIFFTranslator TIFF paveikslas
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF nuostatos
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: negalimas dokumento indeksas\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Versija %d.%d.%d %s
|
||||
Use Compression: TIFFView Naudoti glaudinimą:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 dutch; flemish x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 dutch; flemish x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kan directory niet plaatsen\n
|
||||
TIFF image TIFFTranslator TIFF afbeelding
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF Instellingen
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: ongeldige documentindex\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Versie %d.%d.%d %s
|
||||
Use Compression: TIFFView Gebruik compressie:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 polish x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 polish x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nie można ustawić katalogu\n
|
||||
TIFF image TIFFTranslator Obraz TIFF
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain Ustawienia TIFF
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: błędny indeks dokumentu\n
|
||||
ZIP (Deflate) TIFFView ZIP (deflate)
|
||||
Version %d.%d.%d %s TIFFView Wersja %d.%d.%d %s
|
||||
Use Compression: TIFFView Użyj kompresji:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 portuguese (brazil) x-vnd.Haiku-TIFFTranslator 1930083198
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: não foi possível definir diretório\n
|
||||
TIFF image TIFFTranslator imagem TIFF
|
||||
@@ -10,7 +10,7 @@ TIFFTranslator Settings TIFFTranslator Definições do Tradutor TIFF
|
||||
TIFF image translator TIFFTranslator tradutor de imagem TIFF
|
||||
RLE (Packbits) TIFFView RLE (Pacote de bits)
|
||||
TIFF Settings TIFFMain Definições de TIFF
|
||||
Use compression: TIFFView Usar compressão:
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: indexação de documento inválida\n
|
||||
ZIP (Deflate) TIFFView ZIP (Extrair)
|
||||
Version %d.%d.%d %s TIFFView Versão %d.%d.%d %s
|
||||
Use Compression: TIFFView Usar Compressão:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 romanian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 romanian x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nu s-a putut configura dosarul\n
|
||||
TIFF image TIFFTranslator Imagine TIFF
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain Configurări TIFF
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: indice de document nevalid\n
|
||||
ZIP (Deflate) TIFFView ZIP (Dezumflare)
|
||||
Version %d.%d.%d %s TIFFView Versiune %d.%d.%d %s
|
||||
Use Compression: TIFFView Utilizează compresia:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 russian x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: не удалось установить каталог\n
|
||||
TIFF image TIFFTranslator TIFF изображение
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain Настройки TIFF транслятора
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: неверный индекс документа\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Версия %d.%d.%d %s
|
||||
Use Compression: TIFFView Использовать сжатие:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 slovak x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 slovak x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepodarilo sa nastaviť adresár\n
|
||||
TIFF image TIFFTranslator Obrázok TIFF
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain Nastavenia TIFF
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: neplatný index dokumentu\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Verzia %d.%d.%d %s
|
||||
Use Compression: TIFFView Použiť kompresiu:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 swedish x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 swedish x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kunde inte ange mapp\n
|
||||
TIFF image TIFFTranslator TIFF-bild
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF-inställningar
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: felaktigt dokumentindex\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Version %d.%d.%d %s
|
||||
Use Compression: TIFFView Använd komprimering:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 ukrainian x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 ukrainian x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator iВизначення заголовка tiff: неможливо встановити каталог\n
|
||||
TIFF image TIFFTranslator Зображення TIFF
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain Настройки TIFF
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator Визначення заголовка tiff: неправильний показник документу\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView Версія %d.%d.%d %s
|
||||
Use Compression: TIFFView Використати зтиск:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 english x-vnd.Haiku-TIFFTranslator 237855326
|
||||
1 english x-vnd.Haiku-TIFFTranslator 1624888114
|
||||
LZW TIFFView LZW
|
||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header:无法设置目录\n
|
||||
TIFF image TIFFTranslator TIFF 图像
|
||||
@@ -13,4 +13,3 @@ TIFF Settings TIFFMain TIFF 设置
|
||||
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header:无效文档索引\n
|
||||
ZIP (Deflate) TIFFView ZIP (Deflate)
|
||||
Version %d.%d.%d %s TIFFView 版本 %d.%d.%d,%s
|
||||
Use Compression: TIFFView 使用压缩:
|
||||
|
||||
@@ -26,7 +26,7 @@ After one second DefaultPartitionPage Nach einer Sekunde
|
||||
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Die Partitionstabelle auf der ersten Festplatte ist nicht mit dem Bootmenü kompatibel.\nDas Bootmenü benötigt 2 KiB freien Speicher vor der ersten Partition.
|
||||
The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Die folgenden Partitionen wurden erkannt. Nun müssen die Partitionen ausgewählt werden, die im Bootmenü erscheinen sollen. Außerdem können sie so benannt werden, wie sie später im Menü erscheinen sollen.
|
||||
After one minute DefaultPartitionPage Nach einer Minute
|
||||
The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Der Master-Boot-Record des Bootlaufwerks (%s) wurde erfolgreich aus der Sicherungsdatei %s wiederhergestellt.
|
||||
The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Der Master-Boot-Record des Bootlaufwerks (%DISK) wurde erfolgreich aus der Sicherungsdatei %FILE wiederhergestellt.
|
||||
Write boot menu BootManagerController Button Bootmenü schreiben
|
||||
The Master Boot Record could not be restored! BootManagerController Der Master-Boot-Record konnte nicht wiederhergestellt werden!
|
||||
Uninstall DrivesPage Button Entfernen
|
||||
|
||||
@@ -1,16 +1,19 @@
|
||||
1 belarusian x-vnd.Be-TSKB 1042823442
|
||||
1 belarusian x-vnd.Be-TSKB 2335730970
|
||||
Power off DeskbarMenu Выключыць
|
||||
Sort applications by name PreferencesWindow Сартаваць прагамы па назвах
|
||||
Suspend DeskbarMenu Прыпыніць
|
||||
Hide clock TimeView Схаваць гадзіннік
|
||||
Applications PreferencesWindow Праграмы
|
||||
Time preferences… TimeView Наладкі Часу…
|
||||
About Haiku DeskbarMenu Пра Haiku
|
||||
Edit in Tracker… PreferencesWindow Рэдагаваць у Тракеры…
|
||||
Recent documents: PreferencesWindow Нядаўнія дакументы:
|
||||
Recent applications DeskbarMenu Нядаўнія праграмы
|
||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Праграмы
|
||||
Find… DeskbarMenu Знайсці…
|
||||
Show clock Tray Паказаць гадзіннік
|
||||
Window PreferencesWindow Акно
|
||||
Defaults PreferencesWindow Прадвызначаныя
|
||||
Menu PreferencesWindow Меню
|
||||
Recent documents DeskbarMenu Нядаўнія дакументы
|
||||
Auto-hide PreferencesWindow Схаваць аўтаматычна
|
||||
@@ -28,6 +31,7 @@ Restart Tracker DeskbarMenu Перазапусціць Tracker
|
||||
Close all WindowMenu Закрыць усё
|
||||
Deskbar preferences PreferencesWindow Наладкі Deskbar
|
||||
Mount DeskbarMenu Прымацаваць
|
||||
Revert PreferencesWindow Вярнуць
|
||||
Small PreferencesWindow Малы
|
||||
Recent applications: PreferencesWindow Нядаўнія праграмы:
|
||||
Shutdown… DeskbarMenu Спыніць…
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-DriveSetup 1752326393
|
||||
1 belarusian x-vnd.Haiku-DriveSetup 3775412465
|
||||
DriveSetup System name Рэдыктар дыскаў
|
||||
Cancel AbstractParametersPanel Адмяніць
|
||||
Delete MainWindow Выдаліць
|
||||
@@ -8,7 +8,7 @@ OK MainWindow ОК
|
||||
Could not aquire partitioning information. MainWindow Не ўдалося атрымаць інфармацыю аб падзелах.
|
||||
There's no space on the partition where a child partition could be created. MainWindow Няма мечца на падзеле для стварэння даччынага падзела.
|
||||
Initialize InitializeParametersPanel Ініцыялізіраваць
|
||||
OK AbstractParametersPanel ОК
|
||||
OK AbstractParametersPanel Добра
|
||||
<empty> PartitionList <пуста>
|
||||
Unable to find the selected partition by ID. MainWindow Не ўдалося знайсці абраны падзел па ID.
|
||||
Select a partition from the list below. DiskView Абярыце падзел са спісу нішэй.
|
||||
@@ -18,6 +18,7 @@ The selected disk is read-only. MainWindow Абраны дыск толькі
|
||||
Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел \"%s\"? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||
Could not mount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
||||
The partition %s has been successfully formatted.\n MainWindow Падзел %s паспяхова фарматаваны.\n
|
||||
Change parameters MainWindow Змяніць параметры
|
||||
The partition %s is already unmounted. MainWindow Падзел %s ужо змантаваны.
|
||||
Failed to delete the partition. No changes have been written to disk. MainWindow Не ўдалося выдаліць падзел. Змены не былі запісаны на дыск.
|
||||
Could not delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
||||
@@ -36,38 +37,53 @@ Write changes MainWindow Запісаць змены
|
||||
There was an error preparing the disk for modifications. MainWindow Адбылася памылка пры падрыхтоўцы дыску да мадыфікацый.
|
||||
The partition %s is already mounted. MainWindow Падзел %s ужо змантаваны.
|
||||
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||
Partition name: ChangeParametersPanel Імя падзела:
|
||||
Change ChangeParametersPanel Змяніць
|
||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Сапраўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
||||
Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце выдаліць абраны падзел?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
|
||||
Create… MainWindow Стварыць…
|
||||
Disk system \"%s\"\" not found! MainWindow Дыскавая сістэма \"%s\"\" не знойдзена!
|
||||
The disk has been successfully initialized.\n MainWindow Дыск быў паспяхова ініцыялізаваны.\n
|
||||
Could not unmount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
||||
Failed to change the parameters of the partition. No changes have been written to disk. MainWindow Не ўдалося зманіць параметры падзела. Змены не былі запісаныя на дыск.
|
||||
Failed to format the partition %s!\n MainWindow Не ўдалося фарматаваць падзел %s!\n
|
||||
Mount MainWindow Змантаваць
|
||||
Partition type PartitionList Тып падзела
|
||||
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 Вы упэўнены, што жадаеце фарматаваць ўвесь дыск? (у большасці выпадкаў на дыску ствараюць сыстэму падзелаў) Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||
The panel experienced a problem! MainWindow З панэллю ёсьць пэўная праблема!
|
||||
Change parameters… MainWindow Змяніць параметры…
|
||||
Device PartitionList Прылада
|
||||
Disk MainWindow Дыск
|
||||
Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Вы упэўнены, што жадаеце ініцыялізаваць абраны дыск? Усе дадзеныя з яго будуць страчаны. Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.\n
|
||||
Partition size CreateParametersPanel Памер падзела
|
||||
Device DiskView Прылада
|
||||
Active PartitionList Актыўны
|
||||
Volume name PartitionList Імя тому
|
||||
Continue MainWindow Працягнуць
|
||||
Cannot delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
||||
Mount all MainWindow Зманатаваць усё
|
||||
End: %s Support Канец: %s
|
||||
The panel could not return successfully. MainWindow Панэль не можа вярнуцца карэктна.
|
||||
Cancel MainWindow Адмяніць
|
||||
Delete partition MainWindow Выдаліць падзел
|
||||
Are you sure you want to change parameters of the selected partition?\n\nThe partition may no longer be recognized by other operating systems anymore! MainWindow Вы ўпэўнены, што жадаеце зманіць параметры абранага падзел?\n\nГэты падзел можа стаць нераспазнаваным для іншых аперацыйных сістэм!
|
||||
Eject MainWindow Выцягнуць
|
||||
Partition MainWindow Падзел
|
||||
Validation of the given parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
|
||||
Create CreateParametersPanel Стварыць
|
||||
File system PartitionList Файлавая сістэма
|
||||
Validation of the given creation parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
|
||||
Partition type: ChangeParametersPanel Тып падзела:
|
||||
Size PartitionList Памер
|
||||
Wipe (not implemented) MainWindow Вынішчыць усе дадзеныя (пакуль не працуе)
|
||||
Validation of the given initialization parameters failed. MainWindow Не удалася праверка дадзеных параметраў ініцыялізацыі падзелу.
|
||||
The selected partition does not contain a partitioning system. MainWindow Абраны падзел не мае сістымы дзялення.
|
||||
Offset: %s Support Зрух: %s
|
||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
||||
The partition %s is currently mounted. MainWindow Падзел %s зараз змантаваны.
|
||||
Surface test (not implemented) MainWindow Тэст паверхні (не ажыццявіма)
|
||||
Format MainWindow Фарматаваць
|
||||
Could not change the parameters of the selected partition. MainWindow Немагчыма змяніць параметры абранага падзела.
|
||||
Parameters PartitionList Параметры
|
||||
Creation of the partition has failed. MainWindow Не удалося стварыць падзел.
|
||||
The currently selected partition is not empty. MainWindow Абраны зараз падзел не пусты.
|
||||
|
||||
@@ -36,7 +36,7 @@ Are you sure you want to write the changes back to disk now?\n\nAll data on the
|
||||
Write changes MainWindow Änderungen schreiben
|
||||
There was an error preparing the disk for modifications. MainWindow Beim Vorbereiten der Änderungen trat ein interner Fehler auf.
|
||||
The partition %s is already mounted. MainWindow Die Partition \"%s\" ist bereits eingehangen.
|
||||
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Soll die Partition \"%s\" wirklich formatiert werden? Die Änderungen werden erst nach einer weiteren Bestätigung geschrieben.
|
||||
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Soll die Partition wirklich formatiert werden? Die Änderungen werden erst nach einer weiteren Bestätigung geschrieben.
|
||||
Partition name: ChangeParametersPanel Partitionsname:
|
||||
Change ChangeParametersPanel Ändern
|
||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf dem Medium \"%s\" gehen dabei unwiderruflich verloren!
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 polish x-vnd.Haiku-DriveSetup 484941621
|
||||
1 polish x-vnd.Haiku-DriveSetup 3102001288
|
||||
DriveSetup System name DriveSetup
|
||||
Cancel AbstractParametersPanel Anuluj
|
||||
Delete MainWindow Usuń
|
||||
@@ -68,6 +68,7 @@ Delete partition MainWindow Usuń partycję
|
||||
Are you sure you want to change parameters of the selected partition?\n\nThe partition may no longer be recognized by other operating systems anymore! MainWindow Czy jesteś pewna/pewny, że chcesz zmienić parametry wybranej partycji?\n\nPartycja może już nie być rozpoznawalna przez inne systemy operacyjne!
|
||||
Eject MainWindow Wysuń
|
||||
Partition MainWindow Partycja
|
||||
Create CreateParametersPanel Utwórz
|
||||
File system PartitionList System plików
|
||||
Validation of the given creation parameters failed. MainWindow Sprawdzenie poprawności parametrów tworzenia partycji nie powiodło się.
|
||||
Partition type: ChangeParametersPanel Typ partycji:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-DriveSetup 2015202924
|
||||
1 russian x-vnd.Haiku-DriveSetup 3775412465
|
||||
DriveSetup System name Разметка диска
|
||||
Cancel AbstractParametersPanel Отмена
|
||||
Delete MainWindow Удалить
|
||||
@@ -45,10 +45,12 @@ Create… MainWindow Создать…
|
||||
Disk system \"%s\"\" not found! MainWindow Дисковая система \"%s\"\" не обнаружена!
|
||||
The disk has been successfully initialized.\n MainWindow Диск был успешно инициализирован.\n
|
||||
Could not unmount partition %s. MainWindow Невозможно отключить раздел %s.
|
||||
Failed to change the parameters of the partition. No changes have been written to disk. MainWindow Не удалось изменить параметры раздела. Изменения не были записаны на диск.
|
||||
Failed to format the partition %s!\n MainWindow Не удалось инициализировать раздел %s!\n
|
||||
Mount MainWindow Подключить
|
||||
Partition type PartitionList Тип раздела
|
||||
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 Вы уверены, что хотите инициализировать весь диск? (обычно на диске создают систему разделов)\nПовторный запрос будет выдан непосредственно перед записью изменений на диск.
|
||||
The panel experienced a problem! MainWindow С панелью произошла проблема!
|
||||
Change parameters… MainWindow Изменить параметры…
|
||||
Device PartitionList Устройство
|
||||
Disk MainWindow Диск
|
||||
@@ -61,8 +63,10 @@ Continue MainWindow Продолжить
|
||||
Cannot delete the selected partition. MainWindow Невозможно удалить выбранный раздел.
|
||||
Mount all MainWindow Подключить все
|
||||
End: %s Support Конец: %s
|
||||
The panel could not return successfully. MainWindow Панели не удалось корректно вернуться.
|
||||
Cancel MainWindow Отмена
|
||||
Delete partition MainWindow Удалить раздел
|
||||
Are you sure you want to change parameters of the selected partition?\n\nThe partition may no longer be recognized by other operating systems anymore! MainWindow Вы уверены, что хотите изменить параметры выбранного раздела?\n\nРаздел может больше не распознаваться другими операционными системами!
|
||||
Eject MainWindow Извлечь
|
||||
Partition MainWindow Раздел
|
||||
Validation of the given parameters failed. MainWindow Проверка введённых параметров не удалась.
|
||||
@@ -79,6 +83,7 @@ Are you sure you want to write the changes back to disk now?\n\nAll data on the
|
||||
The partition %s is currently mounted. MainWindow Раздел %s в данный момент подключен.
|
||||
Surface test (not implemented) MainWindow Тест поверхности (еще не реализовано)
|
||||
Format MainWindow Инициализировать
|
||||
Could not change the parameters of the selected partition. MainWindow Невозможно изменить параметры выбранного раздела.
|
||||
Parameters PartitionList Параметры
|
||||
Creation of the partition has failed. MainWindow Не удалось создать раздел.
|
||||
The currently selected partition is not empty. MainWindow Текущий выбранный раздел не является пустым.
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
1 belarusian x-vnd.Haiku-FirstBootPrompt 988630706
|
||||
1 belarusian x-vnd.Haiku-FirstBootPrompt 2649051796
|
||||
Custom BootPromptWindow Карыстальніка
|
||||
Boot to Desktop BootPromptWindow Загрузіць Працоўны Стол
|
||||
Thank you for trying out Haiku! We hope you'll like it!\n\nYou can select your preferred language and keyboard layout from the list on the left which will then be used instantly. You can easily change both settings from the Desktop later on on the fly.\n\nDo you wish to run the Installer or continue booting to the Desktop?\n BootPromptWindow For other languages, a note could be added: \"Note: Localization of Haiku applications and other components is an on-going effort. You will frequently encounter untranslated strings, but if you like, you can join in the work at <www.haiku-os.org>.\" Мы дзякуем вас за спробу усталяваць Haiku. Спадзяемся, што вам спадабаецца!\n\nВы можаце абраць пажаданую мову інтэрфейса і раскладку клавіятуры ў левым спісе. Гэтыя параметры таксма могуць быць змененыя пазней.\n\nЖадаеце запусціць Усталёўшчык ці загрузіць Дэсктоп?\n
|
||||
Language BootPromptWindow Мова
|
||||
Welcome to Haiku! BootPromptWindow Вітаем!
|
||||
|
||||
@@ -7,13 +7,13 @@ Newer versions of GRUB use an extra configuration file to add custom entries to
|
||||
Here you have to comment out the line \"GRUB_HIDDEN_TIMEOUT=0\" by putting a \"#\" in front of it in order to actually display the boot menu.\n\n InstallerApp Itt a \"GRUB_HIDDEN_TIMEOUT=0\" sor elé rakjon egy \"#\" jelet ha azt szeretné, hogy a boot menü ténylegesen meg is jelenjen.\n\n
|
||||
Installation completed. Boot sector has been written to '%s'. Press Quit to leave the Installer or choose a new target volume to perform another installation. InstallerWindow A telepítés befejeződött! A(z) „%s” lemez bootszektora elkészült. A „Kilépés” gombbal elhagyhatja a telepítőt, vagy új partíciót választhat egy új rendszer telepítéséhez.
|
||||
Quit InstallerApp Kilépés
|
||||
Additional disk space required: 0.0 KiB InstallerWindow Még 0.0 KB hely kell.
|
||||
Additional disk space required: 0.0 KiB InstallerWindow 0.0 KB hely szükséges
|
||||
With GRUB it's: (hdN,n)\n\n InstallerApp A GRUB esetében ez: (hdN,n)\n\n
|
||||
\tsudo update-grub\n\n\n InstallerApp \tsudo update-grub\n\n\n
|
||||
Stop InstallerWindow In alert after pressing Stop Leállítás
|
||||
Install progress: InstallerWindow Telepítés állapota:
|
||||
Install progress: InstallerWindow Másolás:
|
||||
2.2) GRUB 1\n InstallerApp 2.1) GRUB 1\n
|
||||
Starting Installation. InstallProgress A telepítés előkészítése.
|
||||
Starting Installation. InstallProgress A telepítés előkészítése…
|
||||
This is alpha-quality software! It means there is a high risk of losing important data. Make frequent backups! You have been warned.\n\n\n InstallerApp Ez a szoftver alfa verziójú! Ebből következik, hogy adatvesztés könnyen előfordulhat. Gyakran csináljon biztonsági mentéseket! Mi szóltunk.\n\n\n
|
||||
Are you sure you want to abort the installation? InstallerWindow Biztos meg kívánja szakítani a telepítést?
|
||||
Are you sure you want to install onto the current boot disk? The Installer will have to reboot your machine if you proceed. InstallProgress Biztosan a mostani rendszerindító lemezre telepíti a rendszert? A telepítőnek újra kell indítania a számítógépét, hogy folytathassa a műveletet.
|
||||
@@ -28,14 +28,14 @@ Install from: InstallerWindow Honnan:
|
||||
%1ld of %2ld InstallerWindow number of files copied %1ld/%2ld
|
||||
IMPORTANT INFORMATION BEFORE INSTALLING HAIKU\n\n InstallerApp FONTOS TUDNIVALÓK A HAIKU TELEPÍTÉSE ELŐTT\n\n
|
||||
Continue InstallerWindow In alert after pressing Stop Folytatás
|
||||
Write boot sector to '%s' InstallerWindow Bootszektor írása „%s” helyre
|
||||
Collecting copy information. InstallProgress Másolás információinak összegyűjtése.
|
||||
Write boot sector to '%s' InstallerWindow Bootszektor írása: „%s”
|
||||
Collecting copy information. InstallProgress Másolás információinak összegyűjtése…
|
||||
Choose the source disk from the pop-up menu. Then click \"Begin\". InstallerWindow Válassza ki a felugró menüből a lemezt melyről telepíteni szeretne, majd kattintson a „Mehet” gombra.
|
||||
Quit Boot Manager and DriveSetup InstallerWindow Kilépés a Rendszerválasztóból és a Lemezkezelőből
|
||||
Quit InstallerWindow Kilépés
|
||||
Welcome to the Haiku Installer!\n\n InstallerApp Üdvözöljük a Haiku Telepítőjében!\n\n
|
||||
Boot sector successfully written. InstallProgress A rendszerindító szektor módosítva lett.
|
||||
Performing installation. InstallProgress A telepítés folyamatban!
|
||||
Performing installation. InstallProgress A telepítés folyamatban…
|
||||
scanning… InstallerWindow keresés…
|
||||
Set up boot menu InstallerWindow Rendszerválasztó beállítása
|
||||
2.1) GRUB (since os-prober v1.44)\n InstallerApp 2.1) GRUB (v1.44 óta)\n
|
||||
@@ -43,7 +43,7 @@ The first logical partition always has the number \"4\", regardless of the numbe
|
||||
GRUB's naming scheme is still: (hdN,n)\n\n InstallerApp A GRUB elnevezései még mindig így néznek ki: (hdN,n)\n\n
|
||||
\tsudo <your favorite text editor> /boot/grub/menu.lst\n\n InstallerApp \tsudo <az ön által választott szövegszerkesztő> /boot/grub/menu.lst\n\n
|
||||
Abort InstallerWindow Megszakítás
|
||||
Finishing Installation. InstallProgress Telepítés befejezése.
|
||||
Finishing Installation. InstallProgress Telepítés befejezése…
|
||||
\tsudo <your favorite text editor> /etc/default/grub\n\n InstallerApp \tsudo <az ön által választott szövegszerkesztő> /etc/default/grub\n\n
|
||||
Restart InstallerWindow Újraindítás
|
||||
README InstallerApp OLVASSEL
|
||||
@@ -52,7 +52,7 @@ Please close the Boot Manager and DriveSetup windows before closing the Installe
|
||||
Scanning for disks… InstallerWindow Lemezek keresése…
|
||||
2.3) GRUB 2\n InstallerApp 2.2) GRUB 2\n
|
||||
The disk can't be mounted. Please choose a different disk. InstallProgress A lemez nem csatolható. Válasszon egy másikat!
|
||||
?? of ?? InstallerWindow Unknown progress ??/??
|
||||
?? of ?? InstallerWindow Unknown progress ?? / ??
|
||||
\tmenuentry \"Haiku Alpha\" {\n InstallerApp \tmenuentry \"Haiku Alpha\" {\n
|
||||
Launch the DriveSetup utility to partition\navailable hard drives and other media.\nPartitions can be initialized with the\nBe File System needed for a Haiku boot\npartition. InstallerWindow Indítsa el a Lemezbeállító segédprogramot a\nlétező merevlemezek és egyéb adathordozók\npartícionálásához! A partíciókat a Haiku\noperációs rendszer rendszerbetöltőjéhez\n BFS-sel (Be FájlrendSzerrel) kell inicializálni.
|
||||
Show optional packages InstallerWindow Választható csomagok megjelenítése
|
||||
@@ -104,11 +104,11 @@ Continue InstallerApp Folytatás
|
||||
BootManager, the application to configure the Haiku boot menu, could not be launched. InstallerWindow A programot, ami a Haiku boot menüjét állítaná be, nem sikerült elindítani.
|
||||
Configure your /boot/grub/menu.lst by launching your favorite editor from a Terminal like this:\n\n InstallerApp Írja át a /boot/grub/menu.lst fájlt valamilyen szövegszerkesztővel így:\n\n
|
||||
Boot sector not written because of an internal error. InstallProgress A Boot szektorba egy belső hiba miatt nem lehetett írni.
|
||||
Additional disk space required: %s InstallerWindow Még ennyi hely szükségeltetik: %s
|
||||
Additional disk space required: %s InstallerWindow Még ennyi hely szükséges: %s
|
||||
NOTE: While the naming strategy for hard disks is still as described under 2.1) the naming scheme for partitions has changed.\n\n InstallerApp MEGJEGYZÉS: Ugyan a merevlemezek elnevezése itt is ugyanúgy működik mint ahogy az a 2.1)-es pontban le van írva, a partíciók elnevezése máshogy működik.\n\n
|
||||
Cancel InstallProgress Mégse
|
||||
Running Boot Manager and DriveSetup…\n\nClose both applications to continue with the installation. InstallerWindow A Rendszerválasztó és a Lemezkezelő fut…\n\nA telepítés folytatásához zárja be mindkét programot.
|
||||
Try installing anyway InstallProgress Feltelepítés megpróbálása
|
||||
Try installing anyway InstallProgress Telepítés megpróbálása
|
||||
So below the heading that must not be edited, add something similar to these lines:\n\n InstallerApp Tehát a fejléc alá, amit nem szabad átírni, írjon be néhány ehhez hasonló sort:\n\n
|
||||
Are you sure you want to to stop the installation? InstallerWindow Biztosan félbeszakítja a telepítést?
|
||||
Onto: InstallerWindow Hova:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-LaunchBox 3016105370
|
||||
1 belarusian x-vnd.Haiku-LaunchBox 3692177981
|
||||
New LaunchBox Новы
|
||||
Set description… LaunchBox Прызначыць апісанне…
|
||||
Vertical layout LaunchBox Вертыкальная расстаноўка
|
||||
@@ -6,6 +6,7 @@ OK LaunchBox ОК
|
||||
Pad 1 LaunchBox Падложка 1
|
||||
last chance LaunchBox апошняя магчымасць
|
||||
Quit LaunchBox Выйсці
|
||||
Open containing folder LaunchBox Адкрыць папку, якая змяшчае аб'ект
|
||||
Clear button LaunchBox Ачысціць кнопку
|
||||
LaunchBox System name СтартПалічка
|
||||
Ignore double-click LaunchBox Ігнараваць падвойны клік
|
||||
|
||||
@@ -8,7 +8,7 @@ OK Login View OK
|
||||
error %s\n Desktop Window A return message from fDesktopShelf->Save(). It can be \"B_OK\" ошибка %s\n
|
||||
Login: Login View Имя пользователя:
|
||||
Error Login App Ошибка
|
||||
You can customize the desktop shown behind the Login application by dropping replicants onto it.\n\nWhen you are finished just quit the application (Alt-Q). Login App Вы можете изменить содержимое окна, отображаемое за приложением входа в систему, поместив на него репликанты.\nПо окончанию закройте приложение используя Alt-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 (Alt-Q). Login App Вы можете изменить содержимое окна, отображаемое за приложением входа в систему, поместив на него репликанты.\n\nПо окончании закройте приложение используя Alt-Q.
|
||||
Unimplemented Login App Не реализовано
|
||||
Welcome to Haiku Login Window Добро пожаловать в Haiku
|
||||
Reboot Login View Перезагрузить
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
1 belarusian x-vnd.Haiku-MediaConverter 2955071341
|
||||
1 belarusian x-vnd.Haiku-MediaConverter 2722282283
|
||||
Video using parameters form settings MediaConverter Відэа карыстае параметры з наладак
|
||||
Video encoding: MediaConverter Кадаванне відэа:
|
||||
Error read audio frame %lld MediaConverter Памылка чытання фрэйма %lld
|
||||
No audio Audio codecs list Няма аўдыё
|
||||
Error MediaConverter Памылка
|
||||
Error loading a file MediaConverter Немагчыма адкрыць файл
|
||||
Error read video frame %lld MediaConverter Памылка чытання фрэйма %lld
|
||||
File Error MediaConverter-FileInfo Памылка файла
|
||||
Open… Menu Адкрыць…
|
||||
Start [ms]: MediaConverter Пачатак [мсек]:
|
||||
@@ -22,6 +24,8 @@ Audio: MediaConverter-FileInfo Аўдыё:
|
||||
OK MediaConverter-FileInfo ОК
|
||||
seconds MediaFileInfo секундаў
|
||||
Source files MediaConverter Зыходныя файлы
|
||||
Error writing video frame %lld MediaConverter Памылка запісу фрэйма %lld
|
||||
Error writing audio frame %lld MediaConverter Памылка запіса аўдыё фрэйма %lld
|
||||
Cancelling MediaConverter Адмена
|
||||
%d byte MediaFileInfo %d байтаў
|
||||
Error loading files MediaConverter Немагчыма загрузіць файлы
|
||||
|
||||
@@ -27,7 +27,7 @@ Source files MediaConverter Forrásfájlok
|
||||
Error writing video frame %lld MediaConverter Hiba történt a %lld. képkocka írása közben
|
||||
Error writing audio frame %lld MediaConverter Hiba történt a %lld. hang írása közben
|
||||
Cancelling MediaConverter Megszakítás folyamatban
|
||||
%d byte MediaFileInfo %d byte
|
||||
%d byte MediaFileInfo %d byte
|
||||
Error loading files MediaConverter Hiba történt a fájlok betöltése során
|
||||
Cancel MediaConverter Mégse
|
||||
None available Video codecs Nincs elérhető
|
||||
|
||||
@@ -37,7 +37,7 @@ The directory named '%s' already exits in the given path.\nReplace the directory
|
||||
The package you requested has been successfully installed on your system. PackageView A kért csomag sikeresen fel lett telepítve a rendszerre.
|
||||
Error! \"%s\" is not a valid path.\n Packageinstaller main Hiba! Érvénytelen útvonal: %s.\n
|
||||
Installation type: PackageView Telepítés típusa:
|
||||
Error (%s)! Could not open \"%s\".\n Packageinstaller main Hiba (%s)! Nem nyitható meg: %s\n
|
||||
Error (%s)! Could not open \"%s\".\n Packageinstaller main Hiba (%s)! Nem nyitható meg: \"%s\".\n
|
||||
Finishing installation PackageInstall Telepítés befejezése
|
||||
Installing package PackageStatus Csomag telepítése
|
||||
Ask again PackageView Kérdezze újból
|
||||
|
||||
@@ -13,7 +13,7 @@ New person People Új névjegy
|
||||
Select all People Mind kijelölése
|
||||
File People Fájl
|
||||
Unnamed person People Névtelen személy
|
||||
Could not create %s. People %s létrehozása sikertelen
|
||||
Could not create %s. People %s létrehozása sikertelen.
|
||||
Country People Ország
|
||||
Close People Bezárás
|
||||
Group People Csoport
|
||||
@@ -41,7 +41,7 @@ Address People Cím
|
||||
URL People URL
|
||||
Sorry People Sajnálom
|
||||
Zip People Irányítószám
|
||||
Contact information for a person. Long mimetype description Elérhetőség információk
|
||||
Contact information for a person. Long mimetype description Elérhetőség információk.
|
||||
Fax People Fax
|
||||
Contact name People Kapcsolat neve
|
||||
Cut People Kivágás
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 belarusian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 belarusian x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Ужыванне памяці
|
||||
Do you really want to kill the team \"%s\"? ProcessController Сапраўды жадаеце знішчыць групу \"%s\"?
|
||||
Kill this team! ProcessController Знішчыць паток!
|
||||
Idle priority ProcessController Прыярытэт спакою
|
||||
Restart Deskbar ProcessController Перазапусціць Deskbar
|
||||
Custom priority ProcessController Нестандартны прыярытэт
|
||||
Debug thread ProcessController Адладжваць паток
|
||||
This team is already gone… ProcessController Гэтая група ўжо не існуе…
|
||||
Error saving file ProcessController Памылка пры захаванні файла
|
||||
Real-time priority ProcessController Прыярытэт рэальнага часу
|
||||
Your setting file could not be saved!\n(%s) ProcessController Немагчыма захаваць файл з наладкамі!\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController Што вы жадаеце зрабіць з патокам \"%s\"?
|
||||
This thread is already gone… ProcessController Гэты паток ўжо не існуе…
|
||||
Cancel ProcessController Адмена
|
||||
Display priority ProcessController Прыярытэт адлюстравання
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Патокі і ўжыванне ЦП
|
||||
Urgent display priority ProcessController Прыярытэт неадкладнага адлюстравання
|
||||
OK ProcessController ОК
|
||||
Damned! ProcessController Чорт!
|
||||
Debug this team! ProcessController Адладжваць паток!
|
||||
Usage: %s [-deskbar]\n ProcessController Ужыванне: %s [-deskbar]\n
|
||||
ProcessController System name Працэсы і патокі
|
||||
Real-time display priority ProcessController Прыярытэт адлюстравання ў рэальным часе
|
||||
Please confirm ProcessController Калі ласка падцвердзіце
|
||||
Yes, kill this team! ProcessController Так, знішчыць гэтую групу!
|
||||
System resources & caches… ProcessController Сістэмныя рэсурсы & кэш…
|
||||
That's no Fun! ProcessController Гэта непрыкольна!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Вы можаце запускаць ProcessController у вакне або ўсталяваць яго ў Deskbar.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 german x-vnd.Haiku-ProcessController 2887520383
|
||||
1 german x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Speicherverbrauch
|
||||
Do you really want to kill the team \"%s\"? ProcessController Soll das Team \"%s\" wirklich beendet werden?
|
||||
Kill this team! ProcessController Dieses Team beenden!
|
||||
Idle priority ProcessController Leerlauf-Priorität
|
||||
Restart Deskbar ProcessController Deskbar neu starten
|
||||
Custom priority ProcessController Anwendungsspezifische Priorität
|
||||
Debug thread ProcessController Debug Thread
|
||||
This team is already gone… ProcessController Dieses Team existiert nicht mehr…
|
||||
Error saving file ProcessController Fehler beim Speichern der Datei
|
||||
Real-time priority ProcessController Echtzeit-Priorität
|
||||
Your setting file could not be saved!\n(%s) ProcessController Die Einstellungsdatei konnte nicht gespeichert werden.\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController Was soll mit dem Team \"%s\" geschehen?
|
||||
This thread is already gone… ProcessController Dieser Thread existiert nicht mehr…
|
||||
Cancel ProcessController Abbrechen
|
||||
Display priority ProcessController Anzeigen-Priorität
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Threads und CPU-Last
|
||||
Urgent display priority ProcessController Hohe Anzeigen-Priorität
|
||||
OK ProcessController OK
|
||||
Damned! ProcessController Herrje!
|
||||
Debug this team! ProcessController Dieses Team debuggen!
|
||||
Usage: %s [-deskbar]\n ProcessController Gebrauch: %s [-deskbar]\n
|
||||
ProcessController System name Systemmanager
|
||||
Real-time display priority ProcessController Echtzeit-Anzeigen-Priorität
|
||||
Please confirm ProcessController Bitte bestätigen
|
||||
Yes, kill this team! ProcessController Ja, dieses Team beenden!
|
||||
System resources & caches… ProcessController Systemressourcen & Cache…
|
||||
That's no Fun! ProcessController Nicht lustig!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Der Systemmanager kann im Fenster ausgeführt oder in der Deskbar installiert werden.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 greek, modern (1453-) x-vnd.Haiku-ProcessController 2887520383
|
||||
1 greek, modern (1453-) x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Χρήση μνήμης
|
||||
Do you really want to kill the team \"%s\"? ProcessController Θέλετε σίγουρα να τερματίσετε την ομάδα \"%s\";
|
||||
Idle priority ProcessController Ανενεργή προτεραιότητα
|
||||
Restart Deskbar ProcessController Επανεκκίνηση Deskbar
|
||||
Custom priority ProcessController Προσαρμοσμένη προτεραιότητα
|
||||
Debug thread ProcessController Αποσφαλμάτωση νήματος
|
||||
This team is already gone… ProcessController Αυτή η όμαδα έχει ήδη εξαφανιστεί
|
||||
Error saving file ProcessController Σφάλμα κατα την αποθήκευση του αρχείου
|
||||
Real-time priority ProcessController Προτεραιότητα πραγματικού χρόνου
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Χρήση: %s [-deskbar]\n
|
||||
ProcessController System name ProcessController
|
||||
Real-time display priority ProcessController Προτεραιότητα εμφάνισης πραγματικού χρόνου
|
||||
Please confirm ProcessController Παρακαλώ επιβεβαιώστε
|
||||
Yes, kill this team! ProcessController Ναι, τερματισμός της ομάδας!
|
||||
System resources & caches… ProcessController Πόροι & λανθάνουσα μνήμη συστήματος...
|
||||
That's no Fun! ProcessController Αυτό δεν έχει πλάκα!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Μπορείτε να εκτελέσετε το ProcessController σε ένα παράθυρο ή να το εγκαταστήσετε στη Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 finnish x-vnd.Haiku-ProcessController 2887520383
|
||||
1 finnish x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Muistikäyttö
|
||||
Do you really want to kill the team \"%s\"? ProcessController Haluatko todella lopettaa ryhmän ”%s”?
|
||||
Idle priority ProcessController Joutokäyntiprioriteetti
|
||||
Restart Deskbar ProcessController Käynnistä Työpöytäpalkki uudelleen
|
||||
Custom priority ProcessController Räätälöity prioriteetti
|
||||
Debug thread ProcessController Vikajäljitä säiettä
|
||||
This team is already gone… ProcessController Tämä ryhmä on jo poistunut...
|
||||
Error saving file ProcessController Virhe tallennettaessa tiedostoa
|
||||
Real-time priority ProcessController Ajantasaprioriteetti
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Käyttö: %s [-deskbar]\n
|
||||
ProcessController System name Prosessiohjain
|
||||
Real-time display priority ProcessController Ajantasanäyttöprioriteetti
|
||||
Please confirm ProcessController Vahvista
|
||||
Yes, kill this team! ProcessController Kyllä, lopeta tämä ryhmä!
|
||||
System resources & caches… ProcessController Järjestelmäresurssit ja välimuistit…
|
||||
That's no Fun! ProcessController Se ei ole hauskaa!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Voit suorittaa Prosessiohjaimen ikkunassa tai asentaa sen Työpöytäpalkkiin.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 french x-vnd.Haiku-ProcessController 2887520383
|
||||
1 french x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Consommation mémoire
|
||||
Do you really want to kill the team \"%s\"? ProcessController Voulez-vous vraiment tuer le processus « %s » ?
|
||||
Kill this team! ProcessController Tuer ce processus !
|
||||
Idle priority ProcessController Priorité inactive
|
||||
Restart Deskbar ProcessController Redémarrer la Deskbar
|
||||
Custom priority ProcessController Priorité personnalisée
|
||||
Debug thread ProcessController Déboguer la tâche
|
||||
This team is already gone… ProcessController Ce processus n'existe déjà plus…
|
||||
Error saving file ProcessController Erreur à l'enregistrement du fichier
|
||||
Real-time priority ProcessController Priorité temps-réel
|
||||
Your setting file could not be saved!\n(%s) ProcessController Impossible d'enregistrer votre fichier de réglages !\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController Que voulez vous faire du processus « %s » ?
|
||||
This thread is already gone… ProcessController Cette tâche n'existe déjà plus…
|
||||
Cancel ProcessController Annuler
|
||||
Display priority ProcessController Priorité affichage
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Tâches et activité CPU
|
||||
Urgent display priority ProcessController Priorité affichage urgent
|
||||
OK ProcessController OK
|
||||
Damned! ProcessController Damnation !
|
||||
Debug this team! ProcessController Déboguer ce processus !
|
||||
Usage: %s [-deskbar]\n ProcessController Utilisation : %s [-deskbar]\n
|
||||
ProcessController System name ProcessControlleur
|
||||
Real-time display priority ProcessController Priorité affichage temps-réel
|
||||
Please confirm ProcessController Veuillez confirmer
|
||||
Yes, kill this team! ProcessController Oui, tuer ce processus !
|
||||
System resources & caches… ProcessController Resources du système & caches…
|
||||
That's no Fun! ProcessController C'est pas fun !
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Vous pouvez exécuter ProcessControlleur dans une fenêtre ou l'installer dans la Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 hindi x-vnd.Haiku-ProcessController 2887520383
|
||||
1 hindi x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController स्मृति के उपयोग
|
||||
Do you really want to kill the team \"%s\"? ProcessController क्या आप वास्तव में टीम को मारना चाहते हैं \"%s\"?
|
||||
Idle priority ProcessController आइडल प्राथमिकता
|
||||
Restart Deskbar ProcessController डेस्कबार पुनः आरंभ करें
|
||||
Custom priority ProcessController प्राथमिकता कस्टम है
|
||||
Debug thread ProcessController डिबग थ्रेड
|
||||
This team is already gone… ProcessController यह टीम पहले से ही जा चुकी है...
|
||||
Error saving file ProcessController त्रुटि फ़ाइल सहेजने मैं
|
||||
Real-time priority ProcessController रियल-टाइम प्राथमिकता
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController प्रयोग: %s [-डेस्
|
||||
ProcessController System name ProcessController
|
||||
Real-time display priority ProcessController प्राथमिकता रियल-टाइम डिस्प्ले है
|
||||
Please confirm ProcessController कृपया पक्का करें
|
||||
Yes, kill this team! ProcessController हाँ, यह टीम को मार डालो!
|
||||
System resources & caches… ProcessController सिस्टम रिसोर्से & कैशेस...
|
||||
That's no Fun! ProcessController वह कुछ भी मज़ा नहीं है!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController आप एक खिड़की में प्रक्रिया नियंत्रक रन कर सकते या उसको डेस्कबार में स्थापित कर सकते हैं.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 hungarian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 hungarian x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Memóriahasználat
|
||||
Do you really want to kill the team \"%s\"? ProcessController Biztosan le kívánja állítani: %s?
|
||||
Kill this team! ProcessController Szál leállítása!
|
||||
Idle priority ProcessController Üresjárat prioritás
|
||||
Restart Deskbar ProcessController Asztalsáv újraindítása
|
||||
Custom priority ProcessController Egyéni prioritás
|
||||
Debug thread ProcessController Szál hibakeresése
|
||||
This team is already gone… ProcessController Ez a csapat már eltűnt…
|
||||
Error saving file ProcessController Hiba történt a fájl mentése során
|
||||
Real-time priority ProcessController Valós idejű prioritás
|
||||
Your setting file could not be saved!\n(%s) ProcessController A beállításfájlt nem sikerült elmenteni!\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController Mit kíván tenni a szállal: %s?
|
||||
This thread is already gone… ProcessController Ez a szál már eltűnt…
|
||||
Cancel ProcessController Mégse
|
||||
Display priority ProcessController Kijelzési prioritás
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Szálak és processzorhasználat
|
||||
Urgent display priority ProcessController Magas kijelzési prioritás
|
||||
OK ProcessController Rendben
|
||||
Damned! ProcessController Fenébe!
|
||||
Debug this team! ProcessController Szál hibakeresése!
|
||||
Usage: %s [-deskbar]\n ProcessController Használat: %s [-deskbar]\n
|
||||
ProcessController System name Folyamatkezelő
|
||||
Real-time display priority ProcessController Valós idejű kijelzési prioritás
|
||||
Please confirm ProcessController Jóváhagyás
|
||||
Yes, kill this team! ProcessController Igen, állítsa le a csapatot!
|
||||
System resources & caches… ProcessController Rendszer erőforrásai és gyorsítótárai…
|
||||
That's no Fun! ProcessController Ez nem vicces!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Futtathatja a Folyamatkezelőt egy ablakban, vagy feltelepítheti azt az Asztalsávra.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 japanese x-vnd.Haiku-ProcessController 2887520383
|
||||
1 japanese x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController メモリ使用量
|
||||
Do you really want to kill the team \"%s\"? ProcessController 本当に team \"%s\" を強制終了してよいですか?
|
||||
Kill this team! ProcessController スレッドを強制終了
|
||||
Idle priority ProcessController アイドル優先度
|
||||
Restart Deskbar ProcessController Deskbar を再起動
|
||||
Custom priority ProcessController カスタム優先度
|
||||
Debug thread ProcessController スレッドをデバッグ
|
||||
This team is already gone… ProcessController Team はすでに終了しています…
|
||||
Error saving file ProcessController ファイル保存中にエラーが発生しました
|
||||
Real-time priority ProcessController リアルタイム優先度
|
||||
Your setting file could not be saved!\n(%s) ProcessController 設定ファイルは保存できませんでした。\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController スレッド \"%s\" に対してなにをしたいですか?
|
||||
This thread is already gone… ProcessController スレッドはすでに終了しています…
|
||||
Cancel ProcessController 取り消し
|
||||
Display priority ProcessController 表示優先度
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController スレッドと CPU の使用量
|
||||
Urgent display priority ProcessController 緊急表示優先度
|
||||
OK ProcessController OK
|
||||
Damned! ProcessController とんでもない!
|
||||
Debug this team! ProcessController スレッドをデバッグ
|
||||
Usage: %s [-deskbar]\n ProcessController Usage: %s [-deskbar]\n
|
||||
ProcessController System name プロセスコントローラー
|
||||
Real-time display priority ProcessController リアルタイム表示優先度
|
||||
Please confirm ProcessController 確認してください。
|
||||
Yes, kill this team! ProcessController はい、team を強制終了します !
|
||||
System resources & caches… ProcessController システムリソースとキャッシュ…
|
||||
That's no Fun! ProcessController そんなのおもしろくない!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController プロセスコントローラーをウィンドウモードで起動するか、または Deskbar にインストールできます。
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 lithuanian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 lithuanian x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Atminties naudojimas
|
||||
Do you really want to kill the team \"%s\"? ProcessController Ar tikrai norite nutraukti užduoties „%s“ darbą?
|
||||
Idle priority ProcessController Nulinis prioritetas
|
||||
Restart Deskbar ProcessController Perleisti Užduočių juostą
|
||||
Custom priority ProcessController Parinktinis prioritetas
|
||||
Debug thread ProcessController Derinti giją
|
||||
This team is already gone… ProcessController Šios užduoties jau nebėra…
|
||||
Error saving file ProcessController Klaida įrašant failą
|
||||
Real-time priority ProcessController Tikralaikis prioritetas
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Naudojimas: %s [-deskbar]\n
|
||||
ProcessController System name Procesų valdiklis
|
||||
Real-time display priority ProcessController Tikralaikio rodymo prioritetas
|
||||
Please confirm ProcessController Prašome patvirtinti
|
||||
Yes, kill this team! ProcessController Taip, nutraukti šios užduoties darbą!
|
||||
System resources & caches… ProcessController Sistemos ištekliai ir podėliai…
|
||||
That's no Fun! ProcessController Visai nejuokinga!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Šią programą galite paleisti atskirame lange arba patalpinti pranešimų srityje.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 dutch; flemish x-vnd.Haiku-ProcessController 2887520383
|
||||
1 dutch; flemish x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Geheugengebruik
|
||||
Do you really want to kill the team \"%s\"? ProcessController Wilt u echt team \"%s\" afbreken?
|
||||
Idle priority ProcessController Inactieve prioriteit
|
||||
Restart Deskbar ProcessController Deskbar herstarten
|
||||
Custom priority ProcessController Aangepaste prioriteit
|
||||
Debug thread ProcessController Thread debuggen
|
||||
This team is already gone… ProcessController Dit team is al verdwenen...
|
||||
Error saving file ProcessController Fout bij bestandsopslag
|
||||
Real-time priority ProcessController Real-time prioriteit
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Gebruik: %s [-deskbar]\n
|
||||
ProcessController System name ProcessController
|
||||
Real-time display priority ProcessController Real-time weergave prioriteit
|
||||
Please confirm ProcessController Gelieve te bevestigen
|
||||
Yes, kill this team! ProcessController Ja, breek dit team af!
|
||||
System resources & caches… ProcessController Systeembronnen en -caches...
|
||||
That's no Fun! ProcessController Da's niet Leuk!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController U kunt ProcessController in een venster actief hebben, of in Deskbar installeren.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 polish x-vnd.Haiku-ProcessController 2887520383
|
||||
1 polish x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Użycie pamięci
|
||||
Do you really want to kill the team \"%s\"? ProcessController Czy na pewno chcesz zakończyć zespół \"%s\"?
|
||||
Idle priority ProcessController Priorytet bezczynności
|
||||
Restart Deskbar ProcessController Zrestartuj Deskbar
|
||||
Custom priority ProcessController Własny priorytet
|
||||
Debug thread ProcessController Debuguj wątek
|
||||
This team is already gone… ProcessController Ten zespół nie jest już obecny…
|
||||
Error saving file ProcessController Błąd przy zapisywaniu pliku
|
||||
Real-time priority ProcessController Priorytet czasu rzeczywistego
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Użycie: %s [-deskbar]\n
|
||||
ProcessController System name ProcessController
|
||||
Real-time display priority ProcessController Czasu rzeczywistego priorytet wyświetlania
|
||||
Please confirm ProcessController Proszę potwierdź
|
||||
Yes, kill this team! ProcessController Tak, zakończ ten zespół!
|
||||
System resources & caches… ProcessController Zasoby i bufory systemu…
|
||||
That's no Fun! ProcessController To nie zabawa!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Możesz uruchomić ProcessController w oknie lub zainstalować go w Deskbarze.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-ProcessController 2887520383
|
||||
1 portuguese (brazil) x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Uso de memória
|
||||
Do you really want to kill the team \"%s\"? ProcessController Deseja realmente matar a equipe \"%s\"?
|
||||
Kill this team! ProcessController Matar esta equipe!
|
||||
Idle priority ProcessController Prioridade ociosa
|
||||
Restart Deskbar ProcessController Reiniciar o Deskbar
|
||||
Custom priority ProcessController Prioridade personalizada
|
||||
Debug thread ProcessController Processo de depuração
|
||||
This team is already gone… ProcessController Esta equipe já se foi…
|
||||
Error saving file ProcessController Erro ao gravar o arquivo
|
||||
Real-time priority ProcessController Prioridade em tempo real
|
||||
Your setting file could not be saved!\n(%s) ProcessController Arquivo de definições não pôde ser salvo!\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController O que deseja fazer com a equipe \"%s\"?
|
||||
This thread is already gone… ProcessController Este processo já se foi…
|
||||
Cancel ProcessController Cancelar
|
||||
Display priority ProcessController Exibir prioridade
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Processos e utilização de CPU
|
||||
Urgent display priority ProcessController Exibir prioridade urgente
|
||||
OK ProcessController OK
|
||||
Damned! ProcessController Maldição!
|
||||
Debug this team! ProcessController Depurar esta equipe!
|
||||
Usage: %s [-deskbar]\n ProcessController Utilização: %s [-deskbar]\n
|
||||
ProcessController System name Controlador de Processo
|
||||
Real-time display priority ProcessController Exibir prioridade de tempo real
|
||||
Please confirm ProcessController Favor confirmar
|
||||
Yes, kill this team! ProcessController Sim, mate esta equipe!
|
||||
System resources & caches… ProcessController Recursos & caches de sistema…
|
||||
That's no Fun! ProcessController Isso não é Engraçado!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController É possível executar o Controlador de Processo em uma janela ou instalá-lo no Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 romanian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 romanian x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Utilizarea memoriei
|
||||
Do you really want to kill the team \"%s\"? ProcessController Doriți să terminați forțat echipa „%s”?
|
||||
Idle priority ProcessController Prioritate în așteptare
|
||||
Restart Deskbar ProcessController Repornește bara de desktop
|
||||
Custom priority ProcessController Prioritate personalizată
|
||||
Debug thread ProcessController Depanează firul de execuție
|
||||
This team is already gone… ProcessController Această echipă este plecată deja...
|
||||
Error saving file ProcessController Eroare la salvarea fișierului
|
||||
Real-time priority ProcessController Prioritate în timp real
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Utilizare: %s [-deskbar]\n
|
||||
ProcessController System name ControlProcese
|
||||
Real-time display priority ProcessController Prioritate afișaj în timp real
|
||||
Please confirm ProcessController Confirmați
|
||||
Yes, kill this team! ProcessController Da, termină forțat această echipă!
|
||||
System resources & caches… ProcessController Resurse de sistem & cache-uri
|
||||
That's no Fun! ProcessController Nu e amuzant!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Puteți să rulați ControlerProces într-o fereastră sau să îl instalați pe bara de desktop.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
1 russian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 russian x-vnd.Haiku-ProcessController 1848752768
|
||||
Memory usage ProcessController Использование памяти
|
||||
Do you really want to kill the team \"%s\"? ProcessController Вы действительно хотите убить \"%s\"?
|
||||
Kill this team! ProcessController Убить этот поток!
|
||||
Idle priority ProcessController Приоритет бездействия
|
||||
Restart Deskbar ProcessController Перезапустить Deskbar
|
||||
Custom priority ProcessController Заданный приоритет
|
||||
Debug thread ProcessController Отладить поток
|
||||
This team is already gone… ProcessController Этого приложения уже не существует…
|
||||
Error saving file ProcessController Ошибка при сохранении файла
|
||||
Real-time priority ProcessController Приоритет реального времени
|
||||
Your setting file could not be saved!\n(%s) ProcessController Невозможно сохранить настройки!\n(%s)
|
||||
What do you want to do with the team \"%s\"? ProcessController Что вы хотите сделать с потоком \"%s\"?
|
||||
This thread is already gone… ProcessController Этого потока уже не существует…
|
||||
Cancel ProcessController Отмена
|
||||
Display priority ProcessController Приоритет отображения
|
||||
@@ -38,11 +38,11 @@ Threads and CPU usage ProcessController Потоки и загрузка ЦПУ
|
||||
Urgent display priority ProcessController Срочный приоритет отображения
|
||||
OK ProcessController ОК
|
||||
Damned! ProcessController Проклятье!
|
||||
Debug this team! ProcessController Отладить этот поток!
|
||||
Usage: %s [-deskbar]\n ProcessController Использование: %s [-deskbar]\n
|
||||
ProcessController System name Контроллер процессов
|
||||
Real-time display priority ProcessController Приоритет отображения реального времени
|
||||
Please confirm ProcessController Пожалуйста, подтвердите
|
||||
Yes, kill this team! ProcessController Да, убить это приложение!
|
||||
System resources & caches… ProcessController Системные ресурсы и кеш
|
||||
That's no Fun! ProcessController Это не смешно!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Вы можете запустить контроллер процессов в окне или установить его в Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 slovak x-vnd.Haiku-ProcessController 2887520383
|
||||
1 slovak x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Využitie pamäte
|
||||
Do you really want to kill the team \"%s\"? ProcessController Skutočne chcete ukončiť tím „%s“?
|
||||
Idle priority ProcessController Priorita nečinný
|
||||
Restart Deskbar ProcessController Reštartovať Panel
|
||||
Custom priority ProcessController Vlastná priorita
|
||||
Debug thread ProcessController Ladiť vlákno
|
||||
This team is already gone… ProcessController Tento tím už je preč…
|
||||
Error saving file ProcessController Chyba pri ukladaní súboru
|
||||
Real-time priority ProcessController Priorita v reálnom čase
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Použitie: %s [-deskbar]\n
|
||||
ProcessController System name Správca procesov
|
||||
Real-time display priority ProcessController Priorita zobrazenie v reálnom čase
|
||||
Please confirm ProcessController Prosím, potvrďte
|
||||
Yes, kill this team! ProcessController Áno, ukončiť tento tím!
|
||||
System resources & caches… ProcessController Zdroje a vyrovnávacia pamäť systému…
|
||||
That's no Fun! ProcessController To nie je sranda!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Správcu procesov môžete spúšťať v okne alebo ho nainštalovať do Panelu.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 swedish x-vnd.Haiku-ProcessController 2887520383
|
||||
1 swedish x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Minnesanvändning
|
||||
Do you really want to kill the team \"%s\"? ProcessController Vill du verkligen avsluta processen "%s"?
|
||||
Idle priority ProcessController Overksam prioritet
|
||||
Restart Deskbar ProcessController Starta om Deskbar
|
||||
Custom priority ProcessController Annan prioritet
|
||||
Debug thread ProcessController Felsök tråd
|
||||
This team is already gone… ProcessController Processen är redan avslutad...
|
||||
Error saving file ProcessController Fel vid sparning av fil
|
||||
Real-time priority ProcessController Realtidsprioritet
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Hantering: %s [-deskbar]\n
|
||||
ProcessController System name ProcessKontroll
|
||||
Real-time display priority ProcessController Realtidsvisningprioritet
|
||||
Please confirm ProcessController Vänligen bekräfta
|
||||
Yes, kill this team! ProcessController Ja, avsluta den här processen!
|
||||
System resources & caches… ProcessController Systemresurser & filsystemscache…
|
||||
That's no Fun! ProcessController Det var inte roligt!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Du kan köra ProcessKontroll i ett fönster eller installera den i Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 ukrainian x-vnd.Haiku-ProcessController 2887520383
|
||||
1 ukrainian x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController Використання пам'яті
|
||||
Do you really want to kill the team \"%s\"? ProcessController Ви дійсно бажаєте вбити потік \"%s\"?
|
||||
Idle priority ProcessController Idle priority
|
||||
Restart Deskbar ProcessController Перезапустити Deskbar
|
||||
Custom priority ProcessController Заданий приорітет
|
||||
Debug thread ProcessController Нитка відладки
|
||||
This team is already gone… ProcessController Потік повністю запущений…
|
||||
Error saving file ProcessController Помилка при збереженні файлу
|
||||
Real-time priority ProcessController Приорітет реального часу
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController Використання: %s [-deskbar
|
||||
ProcessController System name ProcessController
|
||||
Real-time display priority ProcessController Приорітет реального часу
|
||||
Please confirm ProcessController Повторіть
|
||||
Yes, kill this team! ProcessController Так , вбити цей потік!
|
||||
System resources & caches… ProcessController Системні ресурси і кеші…
|
||||
That's no Fun! ProcessController Це не жарт!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController Ви можете запустити ProcessController у вікні або встановити в Deskbar.
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
1 english x-vnd.Haiku-ProcessController 2887520383
|
||||
1 english x-vnd.Haiku-ProcessController 2886374724
|
||||
Memory usage ProcessController 内存使用
|
||||
Do you really want to kill the team \"%s\"? ProcessController 您确定要杀死该组 \"%s\"?
|
||||
Idle priority ProcessController 空闲优先级
|
||||
Restart Deskbar ProcessController 重启桌面栏
|
||||
Custom priority ProcessController 自定义优先级
|
||||
Debug thread ProcessController 调试线程
|
||||
This team is already gone… ProcessController 该组已经结束...
|
||||
Error saving file ProcessController 保存文件错误
|
||||
Real-time priority ProcessController 实时优先级
|
||||
@@ -42,7 +40,6 @@ Usage: %s [-deskbar]\n ProcessController 用法: %s [-deskbar]\n
|
||||
ProcessController System name 进程控制器
|
||||
Real-time display priority ProcessController 实时显示优先级
|
||||
Please confirm ProcessController 请确认
|
||||
Yes, kill this team! ProcessController 是的,杀死该组!
|
||||
System resources & caches… ProcessController 系统资源与缓存...
|
||||
That's no Fun! ProcessController 不好玩的!
|
||||
You can run ProcessController in a window or install it in the Deskbar. ProcessController 您可以在窗口中运行进程控制器或者将其安装到桌面栏。
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-Terminal 328707356
|
||||
1 belarusian x-vnd.Haiku-Terminal 2967760334
|
||||
Not found. Terminal TermWindow Не знойдзена.
|
||||
Switch Terminals Terminal TermWindow Пераключыць Тэрміналы
|
||||
Change directory Terminal TermView Змяніць дырэкторыю
|
||||
@@ -79,6 +79,7 @@ Clear all Terminal TermWindow Ачысціць усё
|
||||
Text encoding Terminal TermWindow Кадоўка тэксту
|
||||
size Terminal TermView памер
|
||||
Close window Terminal TermWindow Закрыць вакно
|
||||
\t%d\t-\tThe current working directory of the active process in the\n\t\t\tcurrent tab. Optionally the maximum number of path components\n\t\t\tcan be specified. E.g. '%2d' for at most two components.\n\t%T\t-\tThe Terminal application name for the current locale.\n\t%e\t-\tThe encoding of the current tab. Not shown for UTF-8.\n\t%i\t-\tThe index of the window.\n\t%p\t-\tThe name of the active process in the current tab.\n\t%t\t-\tThe title of the current tab.\n\t%%\t-\tThe character '%'. Terminal ToolTips \t%d\t-\tРабочы каталог актыўнага працэсу\n\t\t\tў цякучай укладцы.Дадаткова можна ўказаць макісмальную колькасць кампанентаў пуці.\n\t\t\t Напрыклад, '%2d' - не больша за два кампаненты.\n\t%T\t-\tІмя праграмы Тэрмінала ў актуальнай лакалі.\n\t%e\t-\tКадоўка актыўнай укладкі. Калі UTF-8 то не паказваецца.\n\t%i\t-\tІндэкс вакна.\n\t%p\t-\tІмя актыўнага працэсу ў цякучай укладцы.\n\t%t\t-\tІмя цякучай укладкі.\n\t%%\t-\tСімвал '%'.
|
||||
Save as default Terminal TermWindow Захаваць як прадвызначаныя
|
||||
Set tab title Terminal TermWindow Прызначыць імя ўкладкі
|
||||
Settings… Terminal TermWindow Наладкі…
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-Terminal 328707356
|
||||
1 russian x-vnd.Haiku-Terminal 2967760334
|
||||
Not found. Terminal TermWindow Текст не найден
|
||||
Switch Terminals Terminal TermWindow Переключить терминалы
|
||||
Change directory Terminal TermView Сменить каталог
|
||||
@@ -79,6 +79,7 @@ Clear all Terminal TermWindow Очистить всё
|
||||
Text encoding Terminal TermWindow Кодировка
|
||||
size Terminal TermView размер
|
||||
Close window Terminal TermWindow Закрыть окно
|
||||
\t%d\t-\tThe current working directory of the active process in the\n\t\t\tcurrent tab. Optionally the maximum number of path components\n\t\t\tcan be specified. E.g. '%2d' for at most two components.\n\t%T\t-\tThe Terminal application name for the current locale.\n\t%e\t-\tThe encoding of the current tab. Not shown for UTF-8.\n\t%i\t-\tThe index of the window.\n\t%p\t-\tThe name of the active process in the current tab.\n\t%t\t-\tThe title of the current tab.\n\t%%\t-\tThe character '%'. Terminal ToolTips \t%d\t-\tТекущая директория активного процесса текущей вкладки.\n\t\t\tОпционально можно указать максимальное число отображаемых компонентов пути.\n\t\t\tНапример '%2d' отобразит последние 2 компонента.\n\t%T\t-\tИмя приложения Терминал для текущей локали.\n\t%e\t-\tКодировка текущей вкладки. Для UTF-8 не отображается.\n\t%i\t-\tНомер окна.\n\t%p\t-\tНазвание активного процесса в текущей вкладке.\n\t%t\t-\tЗаголовок текущей вкладки.\n\t%%\t-\tСимвол процента - '%'.
|
||||
Save as default Terminal TermWindow Сохранить
|
||||
Set tab title Terminal TermWindow Переименовть вкладку
|
||||
Settings… Terminal TermWindow Настройки…
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-WebPositive 233049275
|
||||
1 belarusian x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window Паказваць кнопку "Дадому"
|
||||
Username: Authentication Panel Карыстальнік:
|
||||
Copy URL to clipboard Download Window Скапіяваць спасылку
|
||||
@@ -16,6 +16,8 @@ Start page: Settings Window Пачатковая старонка:
|
||||
History WebPositive Window Гісторыя
|
||||
Error opening downloads folder Download Window Немагчыма адчыніць папку запампованых файлаў
|
||||
Paste WebPositive Window Уставіць
|
||||
Double-click or middle-click to open new tab. Tab Manager Скарыстайце сярэдню кнопку ці падвойны клік каб адкрыць новы таб.
|
||||
Proxy username: Settings Window Імя карыстальніка проксі:
|
||||
Settings Settings Window Наладкі
|
||||
%seconds seconds left Download Window Засталося %seconds секунд
|
||||
Confirmation WebPositive Window Пацверджанне
|
||||
@@ -41,6 +43,7 @@ Quit WebPositive Window Выйсці
|
||||
Full screen WebPositive Window Поўнаэкранны рэжым
|
||||
Open download error Download Window Немагчыма адкрыць спампаваны файл
|
||||
Standard font: Settings Window Звычайны шрыфт:
|
||||
Find previous occurrence of search terms WebPositive Window find bar previous button tooltip Знайсці папярэдні выпадак таго што шукаеце
|
||||
Restart Download Window Перазапусціць
|
||||
Proxy server Settings Window Проксі-сервер
|
||||
Open containing folder Download Window Адкрыць паку з гэтым файлам
|
||||
@@ -58,6 +61,7 @@ Cut WebPositive Window Выразаць
|
||||
Bookmark this page WebPositive Window Дадаць гэтую старонку ў закладкі
|
||||
There was an error trying to show the Bookmarks folder.\n\nError: %error WebPositive Window Don't translate variable %error Памылка падчас апрацоўкі папкі закладак.\n\nПамылка: %error
|
||||
Open downloads folder Download Window Адкрыць папку спамповак
|
||||
Proxy password: Settings Window Пароль проксі:
|
||||
Number of days to keep links in History menu: Settings Window Выдаляць спасылкі з гісторыі пасля [дзён]:
|
||||
Hide Download Window Схаваць
|
||||
Reset size WebPositive Window Вярнуць памер
|
||||
@@ -67,6 +71,7 @@ There was an error retrieving the bookmark folder.\n\nError: %error WebPositive
|
||||
Over 1 day left Download Window Засталося болей 1 дня
|
||||
Downloads WebPositive Window Спампоўкі
|
||||
Requesting %url WebPositive Window Запыт да %url
|
||||
Find next occurrence of search terms WebPositive Window find bar next button tooltip Знайсці наступны выпадак таго, што шукаеце
|
||||
Apply Settings Window Ужыць
|
||||
Bookmark info WebPositive Window Інфа пра закладку
|
||||
Size: Font Selection view Памер:
|
||||
@@ -80,6 +85,7 @@ Open blank page Settings Window Адчыніць пустую старонку
|
||||
New tabs: Settings Window Новыя ўкаладкі:
|
||||
Cancel WebPositive Window Скасаваць
|
||||
Open all WebPositive Window Адчыніць усе
|
||||
Proxy server requires authentication Settings Window Проксі сервер патрабуе ідэнтыфікацыі
|
||||
Clear URL Bar Ачысьціць
|
||||
Cut URL Bar Выразаць
|
||||
Clear WebPositive Window Ачысьціць
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 german x-vnd.Haiku-WebPositive 3577331897
|
||||
1 german x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window Home-Symbol anzeigen
|
||||
Username: Authentication Panel Benutzername:
|
||||
Copy URL to clipboard Download Window Adresse kopieren
|
||||
@@ -16,6 +16,7 @@ Start page: Settings Window Startseite:
|
||||
History WebPositive Window Verlauf
|
||||
Error opening downloads folder Download Window Fehler beim Öffnen des Download-Ordners
|
||||
Paste WebPositive Window Einfügen
|
||||
Double-click or middle-click to open new tab. Tab Manager Doppel- oder Mittelklick, um neuen Reiter zu öffnen.
|
||||
Proxy username: Settings Window Proxy-Nutzername:
|
||||
Settings Settings Window Einstellungen
|
||||
%seconds seconds left Download Window Noch %seconds Sekunden
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 french x-vnd.Haiku-WebPositive 3577331897
|
||||
1 french x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window Afficher le bouton de la page d'accueil
|
||||
Username: Authentication Panel Utilisateur :
|
||||
Copy URL to clipboard Download Window Copier l'URL dans le presse-papiers
|
||||
@@ -16,6 +16,7 @@ Start page: Settings Window Page de départ :
|
||||
History WebPositive Window Historique
|
||||
Error opening downloads folder Download Window Impossible d'ouvrir le dossier de téléchargement
|
||||
Paste WebPositive Window Coller
|
||||
Double-click or middle-click to open new tab. Tab Manager Double-cliquez ou cliquez au milieu pour ouvrir un nouvel onglet.
|
||||
Proxy username: Settings Window Nom d'utilisateur du serveur mandataire :
|
||||
Settings Settings Window Réglages
|
||||
%seconds seconds left Download Window %seconds secondes restantes
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 hungarian x-vnd.Haiku-WebPositive 3577331897
|
||||
1 hungarian x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window Kezdőlap-gomb megjelenítése
|
||||
Username: Authentication Panel Felhasználónév:
|
||||
Copy URL to clipboard Download Window Cím másolása a vágólapra
|
||||
@@ -16,6 +16,7 @@ Start page: Settings Window Kezdőlap:
|
||||
History WebPositive Window Előzmény
|
||||
Error opening downloads folder Download Window Hiba történt a letöltések mappa megnyitásakor
|
||||
Paste WebPositive Window Beillesztés
|
||||
Double-click or middle-click to open new tab. Tab Manager Új fül dupla kattintással vagy az egér középső gombjával.
|
||||
Proxy username: Settings Window Felhasználónév a proxyhoz:
|
||||
Settings Settings Window Beállítások
|
||||
%seconds seconds left Download Window %seconds másodperc van hátra
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 japanese x-vnd.Haiku-WebPositive 3577331897
|
||||
1 japanese x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window ホームボタンを表示する
|
||||
Username: Authentication Panel ユーザー名:
|
||||
Copy URL to clipboard Download Window URL をクリップボードにコピー
|
||||
@@ -16,6 +16,7 @@ Start page: Settings Window スタートページ:
|
||||
History WebPositive Window 履歴
|
||||
Error opening downloads folder Download Window ダウンロードフォルダーを開く際にエラーが発生しました
|
||||
Paste WebPositive Window 貼り付け
|
||||
Double-click or middle-click to open new tab. Tab Manager ダブルクリックまたは中央ボタンクリックで新しいタブを開く
|
||||
Proxy username: Settings Window ユーザー名:
|
||||
Settings Settings Window 設定
|
||||
%seconds seconds left Download Window 残り %seconds 秒
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-WebPositive 3577331897
|
||||
1 portuguese (brazil) x-vnd.Haiku-WebPositive 1786411139
|
||||
Show home button Settings Window Exibir botão home
|
||||
Username: Authentication Panel Nome de Usuário:
|
||||
Copy URL to clipboard Download Window Copiar URL para a área de transferência
|
||||
@@ -16,6 +16,7 @@ Start page: Settings Window Página inicial:
|
||||
History WebPositive Window Histórico
|
||||
Error opening downloads folder Download Window Erro ao abrir pasta de itens baixados
|
||||
Paste WebPositive Window Colar
|
||||
Double-click or middle-click to open new tab. Tab Manager Clique duas vezes ou com o botão do meio do mouse para abrir uma nova guia.
|
||||
Proxy username: Settings Window Nome de usuário do proxy:
|
||||
Settings Settings Window Definições
|
||||
%seconds seconds left Download Window %seconds segundos restantes
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-libbe 677628532
|
||||
1 belarusian x-vnd.Haiku-libbe 3504008668
|
||||
gamma AboutWindow гамма
|
||||
beta AboutWindow бэта
|
||||
%3.2f GiB StringForSize %3.2f ГіБ
|
||||
@@ -14,9 +14,11 @@ alpha AboutWindow альфа
|
||||
Error PrintJob Памылка
|
||||
No Pages to print! PrintJob Няма старонак для друку!
|
||||
All Rights Reserved. AboutWindow Усе правы захаваныя.
|
||||
About %app% AboutWindow Пра %app%
|
||||
OK Dragger ОК
|
||||
OK PrintJob ОК
|
||||
Green: ColorControl Зялёны:
|
||||
Ok AboutWindow Добра
|
||||
Version history: AboutWindow Гісторыя версій:
|
||||
Remove replicant Dragger Выдаліць рэпліканта
|
||||
OK ZombieReplicantView ОК
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 german x-vnd.Haiku-libbe 677628532
|
||||
1 german x-vnd.Haiku-libbe 3504008668
|
||||
gamma AboutWindow Gamma
|
||||
beta AboutWindow Beta
|
||||
%3.2f GiB StringForSize %3.2f GiB
|
||||
@@ -14,9 +14,11 @@ alpha AboutWindow Alpha
|
||||
Error PrintJob Fehler
|
||||
No Pages to print! PrintJob Keine Seiten zu drucken!
|
||||
All Rights Reserved. AboutWindow Alle Rechte vorbehalten.
|
||||
About %app% AboutWindow Über %app%
|
||||
OK Dragger OK
|
||||
OK PrintJob OK
|
||||
Green: ColorControl Grün:
|
||||
Ok AboutWindow OK
|
||||
Version history: AboutWindow Historie:
|
||||
Remove replicant Dragger Replikant entfernen
|
||||
OK ZombieReplicantView OK
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 french x-vnd.Haiku-libbe 677628532
|
||||
1 french x-vnd.Haiku-libbe 3504008668
|
||||
gamma AboutWindow gamma
|
||||
beta AboutWindow bêta
|
||||
%3.2f GiB StringForSize %3.2f Gio
|
||||
@@ -14,9 +14,11 @@ alpha AboutWindow alpha
|
||||
Error PrintJob Erreur
|
||||
No Pages to print! PrintJob Aucune page à imprimer !
|
||||
All Rights Reserved. AboutWindow Tous droits réservés.
|
||||
About %app% AboutWindow À propos de %app%
|
||||
OK Dragger OK
|
||||
OK PrintJob OK
|
||||
Green: ColorControl Vert :
|
||||
Ok AboutWindow Ok
|
||||
Version history: AboutWindow Historique des versions :
|
||||
Remove replicant Dragger Enlever le réplicant
|
||||
OK ZombieReplicantView OK
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 hungarian x-vnd.Haiku-libbe 677628532
|
||||
1 hungarian x-vnd.Haiku-libbe 3504008668
|
||||
gamma AboutWindow gamma
|
||||
beta AboutWindow béta
|
||||
%3.2f GiB StringForSize %3.2f GB
|
||||
@@ -9,14 +9,16 @@ Version AboutWindow Verzió
|
||||
Cannot create the replicant for \"%description\".\n%error ZombieReplicantView Nem lehet replikánst létrehozni ehhez: %description.\n%error
|
||||
Copy TextView Másolás
|
||||
%3.2f KiB StringForSize %3.2f KB
|
||||
%d bytes StringForSize %Ld byte
|
||||
%d bytes StringForSize %d bájt
|
||||
alpha AboutWindow alfa
|
||||
Error PrintJob Hiba
|
||||
No Pages to print! PrintJob Nincs nyomtatható oldal!
|
||||
All Rights Reserved. AboutWindow Minden jog fenntartva.
|
||||
About %app% AboutWindow %app% névjegye
|
||||
OK Dragger Rendben
|
||||
OK PrintJob Rendben
|
||||
Green: ColorControl Zöld:
|
||||
Ok AboutWindow Rendben
|
||||
Version history: AboutWindow Előző verziók:
|
||||
Remove replicant Dragger Replikáns eltávolítása
|
||||
OK ZombieReplicantView Rendben
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-libbe 677628532
|
||||
1 russian x-vnd.Haiku-libbe 3504008668
|
||||
gamma AboutWindow гамма
|
||||
beta AboutWindow бета
|
||||
%3.2f GiB StringForSize %3.2f ГБ
|
||||
@@ -14,9 +14,11 @@ alpha AboutWindow альфа
|
||||
Error PrintJob Ошибка
|
||||
No Pages to print! PrintJob Нет страниц для печати
|
||||
All Rights Reserved. AboutWindow Все права защищены.
|
||||
About %app% AboutWindow О программе…
|
||||
OK Dragger ОК
|
||||
OK PrintJob ОК
|
||||
Green: ColorControl Зеленый:
|
||||
Ok AboutWindow Ок
|
||||
Version history: AboutWindow История версий:
|
||||
Remove replicant Dragger Удалить репликант
|
||||
OK ZombieReplicantView ОК
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-libtextencoding 3062073902
|
||||
1 russian x-vnd.Haiku-libtextencoding 1525027211
|
||||
ISO Greek textencodings ISO Греческая
|
||||
ISO South European textencodings ISO Южноевропейская
|
||||
Chinese Big5 textencodings Китайская Big5
|
||||
@@ -7,6 +7,7 @@ ISO Arabic textencodings ISO Арабская
|
||||
ISO Latin 9 textencodings ISO Latin 9
|
||||
Japanese Shift JIS textencodings Японская Shift JIS
|
||||
DOS Cyrillic textencodings DOS Кириллица
|
||||
Windows Central European (CP 1250) textencodings Windows Центральная Европа (CP 1250)
|
||||
Windows Cyrillic (CP 1251) textencodings Windows Кириллица (CP 1251)
|
||||
Japanese EUC textencodings Японская EUC
|
||||
Unicode textencodings Юникод
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 belarusian x-vnd.Haiku-libtracker 1638733886
|
||||
1 belarusian x-vnd.Haiku-libtracker 1762695842
|
||||
common B_COMMON_DIRECTORY агульны
|
||||
OK WidgetAttributeText ОК
|
||||
Icon view VolumeWindow Від іконак
|
||||
@@ -74,7 +74,7 @@ Arrange by ContainerWindow Сартаваць па
|
||||
Mount server error AutoMounterSettings Памылка сервера мантавання
|
||||
Search FindPanel Пошук
|
||||
Preparing to empty Trash… StatusWindow Падрыхтоўка да ачысткі Сметніцы…
|
||||
You cannot put the selected item(s) into the trash. FSUtils Немагчыма змясціць абраныя элементы ў сметніцу.
|
||||
You cannot put the selected item(s) into the trash. FSUtils Немагчыма змясціць абраны(я) элемент(ы) ў сметніцу.
|
||||
Disks Model Дыскі
|
||||
Create link ContainerWindow Стварыць спасылку
|
||||
develop B_COMMON_DEVELOP_DIRECTORY распрацоўка
|
||||
@@ -143,6 +143,7 @@ Add-ons ContainerWindow Дапаўненні
|
||||
Edit templates… TemplatesMenu Правіць шаблоны…
|
||||
Finish: %time - Over %finishtime left StatusWindow Завяршэнне: %time - Засталося каля %finishtime
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Элемент \"%name\" у гэтым каталозе ўжо існуе. Ці жадаеце замяніць яго ствараемай спасылкай?
|
||||
Fewer options FindPanel Менш наладак
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Прабачце, не хапае месца на томе прызначэння для капіявання выбранага.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Нельга адкрыць \"%document\" праграмай \"%app\" (%error).
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Прабачце, захаванне больш чым аднаго элемента не дазволена.
|
||||
@@ -236,6 +237,7 @@ Temporary FindPanel Часовы
|
||||
Version OpenWithWindow Версія
|
||||
Default application InfoWindow Прадвызначаная праграма
|
||||
Preparing to copy items… StatusWindow Падрыхтоўка да капіявання…
|
||||
Save query as template… FindPanel Захаваць запыт як шаблон…
|
||||
Show folder location in title tab SettingsView Паказваць адрас каталога у імені ўкладкі
|
||||
Proceed FSUtils Далей
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils Некаторыя элементы ужо існуюць у гэтым каталозе з тымі ж імёнамі, як і ў элементаў, якія вы %verb.\n \nЖадаеце замяніць іх тымі, што вы %verb, або вырашыць асобна для кожнага элемента?
|
||||
@@ -334,6 +336,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Прыбрацца
|
||||
after FindPanel пасля
|
||||
Select… QueryContainerWindow Выбраць…
|
||||
More options FindPanel Больш параметраў
|
||||
link FSUtils filename link спасылка
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState У %func \nfind_directory() не ўдалося. \nПрычына: %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv Пазначанае імя недапушчальна. Калі ласка, выберыце іншае.
|
||||
@@ -445,6 +448,7 @@ contains FindPanel месціць
|
||||
Relation OpenWithWindow Адносіны
|
||||
Open FilePanelPriv Адкрыць
|
||||
Mount DeskWindow Змантаваць
|
||||
Recent queries FindPanel Папярэднія запыты
|
||||
Mount ContainerWindow Змантаваць
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used выкарыстана -- %free свабодна)
|
||||
Cancel FSClipBoard Адмена
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 german x-vnd.Haiku-libtracker 1638733886
|
||||
1 german x-vnd.Haiku-libtracker 1762695842
|
||||
common B_COMMON_DIRECTORY Allgemein
|
||||
OK WidgetAttributeText OK
|
||||
Icon view VolumeWindow Icon-Ansicht
|
||||
@@ -143,6 +143,7 @@ Add-ons ContainerWindow Add-ons
|
||||
Edit templates… TemplatesMenu Vorlagen bearbeiten…
|
||||
Finish: %time - Over %finishtime left StatusWindow Fertig: %time - Noch über %finishtime
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Ein Objekt mit dem Namen \"%name\" existiert bereits in diesem Ordner. Soll es mit der Verknüpfung ersetzt werden, die gerade erstellt werden soll?
|
||||
Fewer options FindPanel Weniger Optionen
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Es ist nicht genug Speicherplatz auf dem Zieldatenträger frei, um die Auswahl zu kopieren.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils \"%document\" konnte nicht mit der Anwendung \"%app\" geöffnet werden (%error).
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Es kann leider immer nur ein einzelnes Objekt gespeichert werden.
|
||||
@@ -236,6 +237,7 @@ Temporary FindPanel Temporär
|
||||
Version OpenWithWindow Version
|
||||
Default application InfoWindow Standardanwendung
|
||||
Preparing to copy items… StatusWindow Kopieren wird vorbereitet…
|
||||
Save query as template… FindPanel Query als Vorlage speichern…
|
||||
Show folder location in title tab SettingsView Ordnerpfad im Fenstertitel zeigen
|
||||
Proceed FSUtils Fortfahren
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils Manche Objekte in diesem Ordner heißen genauso wie Objekte, die gerade %verb werden sollen.\n\nSollen sie alle ersetzt werden, oder soll jedes Mal einzeln nachgefragt werden?
|
||||
@@ -334,6 +336,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Icons ausrichten
|
||||
after FindPanel nach
|
||||
Select… QueryContainerWindow Auswählen…
|
||||
More options FindPanel Weitere Optionen
|
||||
link FSUtils filename link Verknüpfung
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState Bei %func \nfind_directory() fehlgeschlagen \nGrund: %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv Der angegebene Name ist nicht gültig. Bitte einen anderen wählen.
|
||||
@@ -445,6 +448,7 @@ contains FindPanel enthält
|
||||
Relation OpenWithWindow Beziehung
|
||||
Open FilePanelPriv Öffnen
|
||||
Mount DeskWindow Einhängen
|
||||
Recent queries FindPanel Letzte Queries
|
||||
Mount ContainerWindow Einhängen
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used benutzt -- %free frei)
|
||||
Cancel FSClipBoard Abbrechen
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 french x-vnd.Haiku-libtracker 1638733886
|
||||
1 french x-vnd.Haiku-libtracker 1762695842
|
||||
common B_COMMON_DIRECTORY commun
|
||||
OK WidgetAttributeText OK
|
||||
Icon view VolumeWindow Vue en icônes
|
||||
@@ -143,6 +143,7 @@ Add-ons ContainerWindow Extensions
|
||||
Edit templates… TemplatesMenu Éditer les modèles…
|
||||
Finish: %time - Over %finishtime left StatusWindow Fin : %time - il reste plus de %finishtime
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Un élément nommé « %name » existe déjà dans ce dossier. Voulez vous le remplacer par le lien symbolique que vous créez ?
|
||||
Fewer options FindPanel Moins d'options
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Désolé, il n'y a pas assez d'espace libre dans le volume cible pour copier la sélection.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Impossible d'ouvrir « %document » avec l'application « %app » (%error).
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Désolé, il n'est pas permis de sauvegarder plus d'un élément.
|
||||
@@ -236,6 +237,7 @@ Temporary FindPanel Temporaire
|
||||
Version OpenWithWindow Version
|
||||
Default application InfoWindow Application par défaut
|
||||
Preparing to copy items… StatusWindow Copie des éléments en préparation…
|
||||
Save query as template… FindPanel Enregistrer le modèle de la requête…
|
||||
Show folder location in title tab SettingsView Afficher l'emplacement du dossier dans la barre de titre
|
||||
Proceed FSUtils Procéder
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils Plusieurs éléments de ce dossier portent les mêmes noms que des éléments que vous êtes en train de %verb.\n\nVoulez-vous les remplacer par ceux que vous êtes en train de %verb ou voulez-vous qu'une confirmation vous soit demandée pour chacun d'eux ?
|
||||
@@ -334,6 +336,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Nettoyer
|
||||
after FindPanel après
|
||||
Select… QueryContainerWindow Sélectionner…
|
||||
More options FindPanel Plus d'options
|
||||
link FSUtils filename link lien
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState Dans %func\nfind_directory() a échoué.\nMotif : %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv Le nom indiqué n'est pas valide. Veuillez choisir un autre nom.
|
||||
@@ -445,6 +448,7 @@ contains FindPanel contient
|
||||
Relation OpenWithWindow Relation
|
||||
Open FilePanelPriv Ouvrir
|
||||
Mount DeskWindow Monter
|
||||
Recent queries FindPanel Requêtes récentes
|
||||
Mount ContainerWindow Monter
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used utilisés -- %free libres)
|
||||
Cancel FSClipBoard Annuler
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 hungarian x-vnd.Haiku-libtracker 1638733886
|
||||
1 hungarian x-vnd.Haiku-libtracker 1762695842
|
||||
common B_COMMON_DIRECTORY Közös
|
||||
OK WidgetAttributeText Rendben
|
||||
Icon view VolumeWindow Ikon nézet
|
||||
@@ -143,6 +143,7 @@ Add-ons ContainerWindow Kiegészítők
|
||||
Edit templates… TemplatesMenu Sablonok szerkesztése…
|
||||
Finish: %time - Over %finishtime left StatusWindow Befejezés: %time - Több, mint %finishtime van hátra
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Már van ebben a mappában egy elem ezzel a névvel: %name. Szeretné felülírni a most elkészítendő szimbolikus hivatkozást?
|
||||
Fewer options FindPanel Kevesebb opció
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Sajnáljuk, de nincs elég hely a kiválasztott lemezen a másoláshoz.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Nem sikerült megnyitni a dokumentumot (%document) a programmal (%app).\n\t%error
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Sajnálom, de egyszerre csak egy elemet lehet elmenteni.
|
||||
@@ -236,6 +237,7 @@ Temporary FindPanel Ideiglenes megőrzés
|
||||
Version OpenWithWindow Verzió
|
||||
Default application InfoWindow Alapértelmezett program
|
||||
Preparing to copy items… StatusWindow Felkészülés az elemek másolására…
|
||||
Save query as template… FindPanel Keresés mentése sablonként…
|
||||
Show folder location in title tab SettingsView Mappa helyének megjelenítése a fülön
|
||||
Proceed FSUtils Folytatás
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils A mappában már néhány elem neve megyegyezik azzal, amit Ön %verb akar.\n\nSzeretné lecserélni öket azokkal amiket ön szeretne most %verb, vagy minden elemnél kérdezzük meg?
|
||||
@@ -334,6 +336,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Rendrakás
|
||||
after FindPanel utána
|
||||
Select… QueryContainerWindow Kijelölés…
|
||||
More options FindPanel További opciók
|
||||
link FSUtils filename link hivatkozás
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState Ennél: %func \nsikertelen volt a find_directory(). \nOka: %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv A megadott név szabálytalan. Kérjük válasszon egy másik nevet.
|
||||
@@ -445,6 +448,7 @@ contains FindPanel tartalmazza
|
||||
Relation OpenWithWindow Kapcsolat
|
||||
Open FilePanelPriv Megnyitás
|
||||
Mount DeskWindow Csatolás
|
||||
Recent queries FindPanel Előző keresések
|
||||
Mount ContainerWindow Csatolás
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used használt -- %free szabad)
|
||||
Cancel FSClipBoard Mégse
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 polish x-vnd.Haiku-libtracker 4112182761
|
||||
1 polish x-vnd.Haiku-libtracker 4236144717
|
||||
common B_COMMON_DIRECTORY wspólny
|
||||
OK WidgetAttributeText OK
|
||||
Icon view VolumeWindow Widok ikon
|
||||
@@ -142,6 +142,7 @@ Add-ons ContainerWindow Wtyczki
|
||||
Edit templates… TemplatesMenu Edytuj szablony…
|
||||
Finish: %time - Over %finishtime left StatusWindow Koniec: %time - Pozostało %finishtime
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Objekt o nazwie \"%name\" już istnieje w tym folderu. Zamienić na skrót symboliczny?
|
||||
Fewer options FindPanel Mniej opcji
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Nie wystarczająca ilość pamięci w miejscu docelowym by wykonać kopiowanie.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Nie można otworzyć \"%document\" z aplikacją \"%app\" (%error).
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Można zapisać tylko jeden plik naraz.
|
||||
@@ -234,6 +235,7 @@ Temporary FindPanel Tymczasowy
|
||||
Version OpenWithWindow Wersja
|
||||
Default application InfoWindow Domyślna aplikacja
|
||||
Preparing to copy items… StatusWindow Przygotowanie do kopiowania elementów…
|
||||
Save query as template… FindPanel Zapisz zapytanie jako szablon…
|
||||
Show folder location in title tab SettingsView Pokaż lokacje folderu na pasku
|
||||
Proceed FSUtils Kontynuuj
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils Niektóre obiekty już istnieją w tym folderze o nazwach identycznych co te które probujesz %verb.\n \nCzy chcesz je zamienić z tymi które próbujesz %verb czy wolisz być pytany o każdy z nich?
|
||||
@@ -332,6 +334,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Wyczyść
|
||||
after FindPanel po
|
||||
Select… QueryContainerWindow Wybierz…
|
||||
More options FindPanel Więcej opcji
|
||||
link FSUtils filename link Skrót
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState W %func \nfind_directory() nie powiódł się. \nPowód: %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv Podana nazwa jest niedozwolona. Proszę wybrać inną nazwę.
|
||||
@@ -443,6 +446,7 @@ contains FindPanel zawiera
|
||||
Relation OpenWithWindow Relacje
|
||||
Open FilePanelPriv Otwórz
|
||||
Mount DeskWindow Zamontuj
|
||||
Recent queries FindPanel Ostatnie zapytania
|
||||
Mount ContainerWindow Zamontuj
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used zajęte -- %free wolne)
|
||||
Cancel FSClipBoard Anuluj
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-libtracker 1638733886
|
||||
1 russian x-vnd.Haiku-libtracker 1762695842
|
||||
common B_COMMON_DIRECTORY Общие
|
||||
OK WidgetAttributeText ОК
|
||||
Icon view VolumeWindow Большие значки
|
||||
@@ -143,6 +143,7 @@ Add-ons ContainerWindow Дополнения
|
||||
Edit templates… TemplatesMenu Изменить шаблоны…
|
||||
Finish: %time - Over %finishtime left StatusWindow Окончание: %time - Осталось более %finishtime
|
||||
An item named \"%name\" already exists in this folder. Would you like to replace it with the symbolic link you are creating? FSUtils Объект с именем \"%name\" уже существует в этой папке. Заменить его ссылкой, которую вы создаёте?
|
||||
Fewer options FindPanel Меньше опций
|
||||
Sorry, there is not enough free space on the destination volume to copy the selection. FSUtils Извините, но на принимающем разделе недостаточно свободного места для копирования выделенных файлов.
|
||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Невозможно открыть \"%document\" приложением \"%app\" (%error).
|
||||
Sorry, saving more than one item is not allowed. FilePanelPriv Извините, сохранение более одного файла недопустимо.
|
||||
@@ -236,6 +237,7 @@ Temporary FindPanel Временный запрос
|
||||
Version OpenWithWindow Версия
|
||||
Default application InfoWindow приложении по умолчанию
|
||||
Preparing to copy items… StatusWindow Подготовка к копированию файлов…
|
||||
Save query as template… FindPanel Сохранить запрос как шаблон…
|
||||
Show folder location in title tab SettingsView Показывать путь папки в заголовке окна
|
||||
Proceed FSUtils Исправить
|
||||
Some items already exist in this folder with the same names as the items you are %verb.\n \nWould you like to replace them with the ones you are %verb or be prompted for each one? FSUtils Некоторые объекты с такими же именами, которые вы %verb, уже существуют в этой папке.\n \nЗаменить их теми, которые вы %verb или спрашивать для каждого объекта?
|
||||
@@ -334,6 +336,7 @@ The specified name is already used as the name of a folder. Please choose anothe
|
||||
Clean up ContainerWindow Выстроить
|
||||
after FindPanel после
|
||||
Select… QueryContainerWindow Выделить…
|
||||
More options FindPanel Больше опций
|
||||
link FSUtils filename link ссылка
|
||||
At %func \nfind_directory() failed. \nReason: %error TrackerInitialState Не удалось выполнить %func в find_directory(). \nПричина: %error
|
||||
The specified name is illegal. Please choose another name. FilePanelPriv Введённое имя недопустимо. Введите какое-нибудь другое.
|
||||
@@ -445,6 +448,7 @@ contains FindPanel содержит
|
||||
Relation OpenWithWindow Возможности
|
||||
Open FilePanelPriv Открыть
|
||||
Mount DeskWindow Подключить
|
||||
Recent queries FindPanel Недавние запросы
|
||||
Mount ContainerWindow Подключить
|
||||
%capacity (%used used -- %free free) InfoWindow %capacity (%used занято -- %free свободно)
|
||||
Cancel FSClipBoard Отмена
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 polish x-vnd.Haiku-Appearance 556979190
|
||||
1 polish x-vnd.Haiku-Appearance 1475577782
|
||||
Plain font: Font view Zwykła czcionka:
|
||||
Control highlight Colors tab Podkreślenie kontrolki
|
||||
Control border Colors tab Obramowanie kontrolki
|
||||
@@ -32,7 +32,9 @@ Document text Colors tab Tekst dokumentu
|
||||
Navigation pulse Colors tab Puls nawigacji
|
||||
Selected menu item text Colors tab Tekst zaznaczonego elementu menu
|
||||
Menu background Colors tab Tło menu
|
||||
List background Colors tab Tło listy
|
||||
OK DecorSettingsView OK
|
||||
Control mark Colors tab Znak sterujący
|
||||
Size: Font Selection view Rozmiar:
|
||||
Selected list item background Colors tab Tło zaznaczonego elementu listy
|
||||
Panel background Colors tab Tło panelu
|
||||
@@ -40,6 +42,7 @@ Menu font: Font view Czcionka menu:
|
||||
Colors APRWindow Kolory
|
||||
Control background Colors tab Tło kontrolki
|
||||
Inactive window tab Colors tab Nieaktywna zakładka okna
|
||||
List item text Colors tab Tekst elementu listy
|
||||
Appearance System name Wygląd
|
||||
Fixed font: Font view Czcionka o stałej szerokości:
|
||||
The quick brown fox jumps over the lazy dog. Font Selection view Don't translate this literally ! Use a phrase showing all chars from A to Z. Koń i żółw grali w kości z piękną ćmą u źródła.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1 russian x-vnd.Haiku-Appearance 2993758435
|
||||
1 russian x-vnd.Haiku-Appearance 727801787
|
||||
Plain font: Font view Простой шрифт:
|
||||
Control highlight Colors tab Подсветка элемента
|
||||
Control border Colors tab Граница элемента
|
||||
@@ -50,6 +50,7 @@ The quick brown fox jumps over the lazy dog. Font Selection view Don't translate
|
||||
%decorName\n\nAuthors:\n\t%decorAuthors\n\nURL: %decorURL\nLicense: %decorLic\n\n%decorDesc\n DecorSettingsView %decorName\n\nАвторы:\n\t%decorAuthors\n\nURL: %decorURL\nЛицензия: %decorLic\n\n%decorDesc\n
|
||||
Reduce colored edges filter strength: AntialiasingSettingsView Фильтрация цветных краев:
|
||||
Subpixel based anti-aliasing in combination with glyph hinting is not available in this build of Haiku to avoid possible patent issues. To enable this feature, you have to build Haiku yourself and enable certain options in the libfreetype configuration header. AntialiasingSettingsView Субпиксельное сглаживание в комбинации с уточнением глифов недоступно в этой сборке Haiku во избежание возможных патентных проблем. Для включения этой возможности вам придется собрать Haiku самостоятельно, включив особые опции в заголовке конфигурации libfreetype.
|
||||
Scroll bar thumb Colors tab Ползунок прокрутки
|
||||
Control text Colors tab Текст элемента
|
||||
Single: DecorSettingsView Одинарный:
|
||||
Tooltip text Colors tab Текст подсказки
|
||||
|
||||
@@ -6,7 +6,7 @@ Name: %s \nVersion: %ld.%ld.%ld\n\nInfo:\n%s\n\nPath:\n%s\n DataTranslations No
|
||||
The item '%name' does not appear to be a Translator and will not be installed. DataTranslations O item '%name' não aparenta ser um Tradutor e não será instalado.
|
||||
Could not install %s:\n%s DataTranslations Não foi possível instalar o %s:\n%s
|
||||
Use this control panel to set default values for translators, to be used when no other settings are specified by an application. DataTranslations Use este painel de controle para definir valores padrão para tradutores, a serem utilizados quando não houver outras configurações especificadas por um aplicativo.
|
||||
An item named '%name' already exists in the Translators folder! Shall the existing translator be overwritten? DataTranslations Um item de nome '%name' já existe na pasta de Tradutores! Deve o tradutor existente ser sobrescrito?
|
||||
An item named '%name' already exists in the Translators folder! Shall the existing translator be overwritten? DataTranslations Um item denominado '%name' já existe na pasta de Tradutores! Deve o tradutor existente ser sobrescrito?
|
||||
DataTranslations - Note DataTranslations Traduções de Dados - Nota
|
||||
Overwrite DataTranslations Sobrescrever
|
||||
Info: DataTranslations Informação:
|
||||
|
||||
@@ -1,23 +1,27 @@
|
||||
1 belarusian x-vnd.Haiku-Network 781877986
|
||||
1 belarusian x-vnd.Haiku-Network 1341378870
|
||||
Choose automatically EthernetSettingsView Выбіраць аўтаматычна
|
||||
Gateway: EthernetSettingsView Шлюз:
|
||||
Netmask: EthernetSettingsView Маска сеткі:
|
||||
DHCP EthernetSettingsView DHCP
|
||||
DNS #2: EthernetSettingsView DNS #2:
|
||||
Apply EthernetSettingsView Ужыць
|
||||
Netmask is invalid EthernetSettingsView Няслушная маска падсеткі.
|
||||
Netmask is invalid EthernetSettingsView Няслушная маска падсеткі
|
||||
OK EthernetSettingsView ОК
|
||||
DNS #1: EthernetSettingsView DNS #1:
|
||||
IP address: EthernetSettingsView IP адрас:
|
||||
Adapter: EthernetSettingsView Адаптар:
|
||||
Domain: EthernetSettingsView Домен:
|
||||
Gateway is invalid EthernetSettingsView Шлюз несапраўдны
|
||||
DNS #1 is invalid EthernetSettingsView DNS #1 некарэктны
|
||||
Revert EthernetSettingsView Вярнуць
|
||||
<no wireless networks found> EthernetSettingsView <не знойдзена бесшнуравых сетак>
|
||||
Network System name Сетка
|
||||
Mode: EthernetSettingsView Рэжым:
|
||||
IP address is invalid EthernetSettingsView IP адрас некарэктны
|
||||
Network: EthernetSettingsView Сетка:
|
||||
The net_server needs to run for the auto configuration! EthernetSettingsView Неабходна запусціць net_server для аўтаканфігурацыі!
|
||||
Disabled EthernetSettingsView Выключаны
|
||||
Auto-configuring failed: EthernetSettingsView Аўтаканфігурацыі не ўдалася:
|
||||
Static EthernetSettingsView Статычны
|
||||
DNS #2 is invalid EthernetSettingsView DNS #2 некарэктны
|
||||
<no adapter> EthernetSettingsView <адаптары ня знойдзены>
|
||||
|
||||
@@ -5,23 +5,23 @@ Netmask: EthernetSettingsView Máscara de rede:
|
||||
DHCP EthernetSettingsView DHCP
|
||||
DNS #2: EthernetSettingsView DNS #2:
|
||||
Apply EthernetSettingsView Aplicar
|
||||
Netmask is invalid EthernetSettingsView Máscara de rede é inválida
|
||||
Netmask is invalid EthernetSettingsView Máscara de rede inválida
|
||||
OK EthernetSettingsView OK
|
||||
DNS #1: EthernetSettingsView DNS #1:
|
||||
IP address: EthernetSettingsView Endereço de IP:
|
||||
Adapter: EthernetSettingsView Adaptador:
|
||||
Domain: EthernetSettingsView Domínio:
|
||||
Gateway is invalid EthernetSettingsView O Gateway é inválido
|
||||
Gateway is invalid EthernetSettingsView Gateway inválido
|
||||
DNS #1 is invalid EthernetSettingsView DNS #1 é inválido
|
||||
Revert EthernetSettingsView Reverter
|
||||
<no wireless networks found> EthernetSettingsView <nenhuma rede sem fio encontrada>
|
||||
Network System name Rede
|
||||
Mode: EthernetSettingsView Modo:
|
||||
IP address is invalid EthernetSettingsView O endereço IP é inválido
|
||||
IP address is invalid EthernetSettingsView Endereço IP inválido
|
||||
Network: EthernetSettingsView Rede:
|
||||
The net_server needs to run for the auto configuration! EthernetSettingsView É preciso abrir o net_server para efetuar a configuração automática!
|
||||
Disabled EthernetSettingsView Desativado
|
||||
Auto-configuring failed: EthernetSettingsView Auto-configuração falhou:
|
||||
Static EthernetSettingsView Estático
|
||||
DNS #2 is invalid EthernetSettingsView DNS #2 é inválido
|
||||
DNS #2 is invalid EthernetSettingsView DNS #2 inválido
|
||||
<no adapter> EthernetSettingsView <nenhum adaptador>
|
||||
|
||||
@@ -17,7 +17,7 @@ OK Screen OK
|
||||
Workspaces Screen Workspaces
|
||||
The screen mode could not be set:\n\t%s\n Screen O modo de tela não pode ser aceito\n\t%s\n
|
||||
no Screen não
|
||||
Could not write VESA mode settings file:\n\t Screen Não foi possível escrever as configurações do arquivo do modo Vesa:\n\t
|
||||
Could not write VESA mode settings file:\n\t Screen Não foi possível gravar o arquivo de configurações do modo VESA:\n\t
|
||||
Type or use the left and right arrow keys. Screen Escreva ou use as teclas de seta
|
||||
Warning Screen Aviso
|
||||
Horizonal frequency:\t%lu - %lu kHz\nVertical frequency:\t%lu - %lu Hz\n\nMaximum pixel clock:\t%g MHz Screen Frequência horizonal:\t%lu - %lu kHz\nFrequência vertical:\t%lu - %lu Hz\n\nRelógio máximo de pixel:\t%g MHz
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
1 portuguese (brazil) x-vnd.Haiku-Shortcuts 341885426
|
||||
Error, NULL state description?\n ShortcutsSpec Erro, descrição de estado em branco?\n
|
||||
Error, NULL state description?\n ShortcutsSpec Erro, descrição de estado nulo?\n
|
||||
MoveMouse ShortcutsSpec Mover o Mouse
|
||||
OK ShortcutsWindow OK
|
||||
Shortcuts wasn't able to save your keyset. ShortcutsWindow O Atalhos não pode salvar sua combinação de teclas
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
1 belarusian x-vnd.Haiku-InterfacesAddOn 160108912
|
||||
Interface InterfaceWindow Інтэрфейс
|
||||
Configure… InterfacesListView Канфігураваць…
|
||||
Static IntefaceAddressView Статычны
|
||||
None InterfacesListView Няма
|
||||
IP: InterfacesListView IPv4 address label IP:
|
||||
Status: IntefaceHardwareView Стан:
|
||||
IPv6: InterfacesListView IPv6 address label IPv6:
|
||||
Save InterfaceWindow Захаваць
|
||||
Link speed: IntefaceHardwareView Хуткасць злучэння:
|
||||
Renegotiate InterfacesAddOn Перазлучыць
|
||||
The method for obtaining an IP address IntefaceAddressView Метад атрыманя IP адрасу
|
||||
Your gateway IntefaceAddressView Ваш gateway
|
||||
Enable InterfacesListView Дазволіць
|
||||
Received: IntefaceHardwareView Атрымана:
|
||||
Revert InterfaceWindow Вярнуць
|
||||
connected IntefaceHardwareView злучаны
|
||||
Gateway: IntefaceAddressView Брама:
|
||||
Disable InterfacesListView Выключыць
|
||||
Sent: IntefaceHardwareView Адаслана:
|
||||
Disable InterfacesAddOn Выключыць
|
||||
Configure… InterfacesAddOn Канфігураваць…
|
||||
Renegotiate Address InterfacesListView Перазлучыць адрас
|
||||
DHCP IntefaceAddressView DHCP
|
||||
Mode: IntefaceAddressView Рэжым:
|
||||
Your netmask IntefaceAddressView Маска
|
||||
IP Address: IntefaceAddressView IP адрас:
|
||||
Off IntefaceAddressView Адключыць
|
||||
MAC address: IntefaceHardwareView MAC адрас:
|
||||
Netmask: IntefaceAddressView Маска:
|
||||
Your IP address IntefaceAddressView IP адрас
|
||||
%llu KBytes IntefaceHardwareView %llu КБайт
|
||||
disconnected IntefaceHardwareView адлучана
|
||||
@@ -1,15 +1,23 @@
|
||||
1 polish x-vnd.Haiku-InterfacesAddOn 34473294
|
||||
1 polish x-vnd.Haiku-InterfacesAddOn 3798202204
|
||||
Interface InterfaceWindow Interfejs
|
||||
Configure… InterfacesListView Konfiguruj…
|
||||
Static IntefaceAddressView Statyczny
|
||||
IP: InterfacesListView IPv4 address label IP:
|
||||
IPv6: InterfacesListView IPv6 address label IPv6:
|
||||
Link speed: IntefaceHardwareView Szybkość połączenia:
|
||||
Renegotiate InterfacesAddOn Negocjuj ponownie
|
||||
The method for obtaining an IP address IntefaceAddressView Metoda uzyskania adresu IP
|
||||
Your gateway IntefaceAddressView Brama
|
||||
Received: IntefaceHardwareView Otrzymano:
|
||||
connected IntefaceHardwareView połączono
|
||||
Gateway: IntefaceAddressView Brama:
|
||||
Sent: IntefaceHardwareView Wysłano:
|
||||
Configure… InterfacesAddOn Konfiguruj…
|
||||
Renegotiate Address InterfacesListView Ponownie negocjuj adres
|
||||
DHCP IntefaceAddressView DHCP
|
||||
Mode: IntefaceAddressView Tryb:
|
||||
Your netmask IntefaceAddressView Maska sieci
|
||||
Your netmask IntefaceAddressView Maska twojej sieci
|
||||
IP Address: IntefaceAddressView Adres IP:
|
||||
Your IP address IntefaceAddressView Twój adres IP
|
||||
%llu KBytes IntefaceHardwareView %llu kilobajtów
|
||||
disconnected IntefaceHardwareView odłączone
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
1 russian x-vnd.Haiku-InterfacesAddOn 160108912
|
||||
Interface InterfaceWindow Интерфейс
|
||||
Configure… InterfacesListView Настроить…
|
||||
Static IntefaceAddressView Статический
|
||||
None InterfacesListView Отсутствует
|
||||
IP: InterfacesListView IPv4 address label IP:
|
||||
Status: IntefaceHardwareView Статус:
|
||||
IPv6: InterfacesListView IPv6 address label IPv6:
|
||||
Save InterfaceWindow Сохранить
|
||||
Link speed: IntefaceHardwareView Скорость соединения:
|
||||
Renegotiate InterfacesAddOn Переполучить
|
||||
The method for obtaining an IP address IntefaceAddressView Метод получения IP адреса
|
||||
Your gateway IntefaceAddressView Ваш шлюз
|
||||
Enable InterfacesListView Включить
|
||||
Received: IntefaceHardwareView Получено:
|
||||
Revert InterfaceWindow Вернуть
|
||||
connected IntefaceHardwareView подключён
|
||||
Gateway: IntefaceAddressView Шлюз:
|
||||
Disable InterfacesListView Отключить
|
||||
Sent: IntefaceHardwareView Отправлено:
|
||||
Disable InterfacesAddOn Отключить
|
||||
Configure… InterfacesAddOn Настроить…
|
||||
Renegotiate Address InterfacesListView Переполучить адрес
|
||||
DHCP IntefaceAddressView DHCP
|
||||
Mode: IntefaceAddressView Режим:
|
||||
Your netmask IntefaceAddressView Маска подсети
|
||||
IP Address: IntefaceAddressView IP-адрес:
|
||||
Off IntefaceAddressView Выключить
|
||||
MAC address: IntefaceHardwareView MAC-адрес:
|
||||
Netmask: IntefaceAddressView Маска подсети:
|
||||
Your IP address IntefaceAddressView IP-адрес:
|
||||
%llu KBytes IntefaceHardwareView %llu КБайт
|
||||
disconnected IntefaceHardwareView отключён
|
||||
@@ -0,0 +1,32 @@
|
||||
1 belarusian x-vnd.Haiku-Playground 1375574837
|
||||
Line Playground Радок
|
||||
Fill Playground Запоўніць
|
||||
Over Playground Па над
|
||||
Quit Playground Выйсці
|
||||
Rect Playground Прамакутнік
|
||||
Select Playground Вылучыць
|
||||
Click and drag to draw an object Playground Націсніце і цягніце каб намаляваць аб'ект
|
||||
Controls Playground Кіраваньне
|
||||
Round rect Playground Круглы прамакутнік
|
||||
Alpha: Playground Альфа:
|
||||
Mode: Playground Рэжым:
|
||||
Submenu Playground Падменю
|
||||
Copy Playground Скапіяваць
|
||||
Cancel Playground Адмена
|
||||
Clear Playground Ачысьціць
|
||||
Min Playground Мін
|
||||
Blend Playground Змешваць
|
||||
Invert Playground Інвэртаваць
|
||||
Clear all drawing objects? Playground Выдаліць усе аб'екты?
|
||||
Width: Playground Шырыня:
|
||||
Alpha Playground Альфа
|
||||
New object Playground Новы аб'ект
|
||||
Test Playground Тэст
|
||||
Max Playground Макс
|
||||
Add Playground Дадаць
|
||||
Playground System name Пляцоўка для гульняў
|
||||
Erase Playground Выдаліць
|
||||
File Playground Файл
|
||||
Subtract Playground Адняць
|
||||
<pick> Playground <абраць>
|
||||
Ellipse Playground Эліпс
|
||||
@@ -1,5 +1,10 @@
|
||||
1 polish x-vnd.Haiku-Playground 1190349404
|
||||
1 polish x-vnd.Haiku-Playground 3331526596
|
||||
Line Playground Linia
|
||||
Fill Playground Wypełnienie
|
||||
Over Playground Ponad
|
||||
Quit Playground Zakończ
|
||||
Rect Playground Prostokąt
|
||||
Select Playground Wybierz
|
||||
Click and drag to draw an object Playground Kliknij i przeciągnij, żeby narysować obiekt
|
||||
Controls Playground Sterowanie
|
||||
Round rect Playground Zaokrąglony prostokąt
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1 portuguese (brazil) x.vnd.OBOS-Inspector 2075781936
|
||||
User Translators ActiveTranslatorsWindow Tradutores do usuário
|
||||
User Translators ActiveTranslatorsWindow Tradutores do Usuário
|
||||
No image available to save. ImageWindow Nenhuma imagem disponível para salvar.
|
||||
Sorry, unable to write the image file. ImageView Desculpe, não foi possível gravar o arquivo de imagem.
|
||||
Number of Documents: %1\n\nTranslator Used:\nName: %2\nInfo: %3\nVersion: %4\n ImageView Número de documentos: %1\n\nTradutor usado:\nNome: %2\nInformações: %3\nVersão: %4\n
|
||||
\nType: '%1' (%2)\nGroup: '%3' (%4)\nQuality: %5\nCapability: %6\nMIME Type: %7\nName: %8\n ImageView \nTipo: '%1' (%2)\nGrupo: '%3' (%4)\nQualidade: %5\nRecursos: %6\nTipo MIME: %7\nNome: %8\n
|
||||
Bummer ImageWindow Bummer
|
||||
Last Page ImageWindow Última página
|
||||
\nInput Formats: ImageView \nFormatos de entrada:
|
||||
Last Page ImageWindow Última Página
|
||||
\nInput Formats: ImageView \nFormatos de Entrada:
|
||||
Sorry, unable to load the image. ImageView Desculpe, não foi possível carregar a imagem.
|
||||
Info Win InspectorApp This is a quite narrow info window and title 'Info Win' is therefore shortened. Janela de Informação
|
||||
Active Translators InspectorApp Tradutores ativos
|
||||
Image: %1\nColor Space: %2 (%3)\nDimensions: %4 x %5\nBytes per Row: %6\nTotal Bytes: %7\n\nIdentify Info:\nID String: %8\nMIME Type: %9\nType: '%10' (%11)\nTranslator ID: %12\nGroup: '%13' (%14)\nQuality: %15\nCapability: %16\n\nExtension Info:\n ImageView Imagem: %1\nEspaço de cor: %2 (%3)\nDimensões: %4 x %5\nBytes por linha: %6\nTotal de Bytes: %7\n\nInformação de Identificação:\nString de identificação: %8\nTipo MIME: %9\nTipo: '%10' (%11)\nID do Tradutor: %12\nGrupo: '%13' (%14)\nQualidade: %15\nCapacidade: %16\n\nInformação de Extensão:\n
|
||||
\nOutput Formats: ImageView \nFormatos de saída:
|
||||
\nOutput Formats: ImageView \nFormatos de Saída:
|
||||
Save feature not implemented yet. ImageWindow Recurso salvo ainda não implementado.
|
||||
First Page ImageWindow Primeira Página
|
||||
Next Page ImageWindow Próxima página
|
||||
@@ -23,10 +23,10 @@ OK ImageWindow OK
|
||||
Window ImageWindow Janela
|
||||
Quit ImageWindow Sair
|
||||
Selected Document: %1\n\nTranslator Used:\nName: %2\nInfo: %3\nVersion: %4\n ImageView Documento selecionado: %1\n\nTradutor usado:\nNome: %2\nInformações: %3\nVersão: %4\n
|
||||
Active Translators ImageWindow Tradutores ativos
|
||||
Active Translators ImageWindow Tradutores Ativos
|
||||
View ImageWindow Visualizar
|
||||
Previous Page ImageWindow Página anterior
|
||||
Previous Page ImageWindow Página Anterior
|
||||
OK ImageView OK
|
||||
System Translators ActiveTranslatorsWindow Tradutores do sistema
|
||||
System Translators ActiveTranslatorsWindow Tradutores do Sistema
|
||||
Unknown ImageView Desconhecido
|
||||
File ImageWindow Arquivo
|
||||
|
||||
@@ -329,7 +329,7 @@ if ( $(OSPLAT) = X86 )
|
||||
switch $(TYPE)
|
||||
{
|
||||
case APP : LINKFLAGS += -Xlinker -soname=_APP_ ;
|
||||
case SHARED : LINKFLAGS += -nostart -Xlinker -soname=$(NAME) ;
|
||||
case SHARED : LINKFLAGS += -shared -Xlinker -soname=$(NAME) ;
|
||||
case DRIVER : LINKFLAGS += -nostdlib /boot/develop/lib/x86/_KERNEL_ ;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -93,7 +93,7 @@ endif
|
||||
LDFLAGS += -Xlinker -soname=_APP_
|
||||
else
|
||||
ifeq ($(strip $(TYPE)), SHARED)
|
||||
LDFLAGS += -nostart -Xlinker -soname=$(NAME)
|
||||
LDFLAGS += -shared -Xlinker -soname=$(NAME)
|
||||
else
|
||||
ifeq ($(strip $(TYPE)), DRIVER)
|
||||
LDFLAGS += -nostdlib /boot/develop/lib/x86/_KERNEL_ \
|
||||
|
||||
@@ -506,7 +506,8 @@
|
||||
\struct escapement_delta
|
||||
\ingroup interface
|
||||
\ingroup libbe
|
||||
\brief The amount of horizontal space surrounding a character.
|
||||
\brief A struct that allows you to specify extra horizontal space to surround
|
||||
each character with.
|
||||
|
||||
Escapements need to be multiplied by the font size to get the correct
|
||||
value for the font.
|
||||
@@ -518,15 +519,15 @@
|
||||
/*!
|
||||
\var escapement_delta::nonspace
|
||||
|
||||
The amount of space surrounding a character with a visible glyph.
|
||||
The amount of horizontal space to surround a visible glyph character with.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var escapement_delta::space
|
||||
|
||||
The amount of space surrounding a whitespace character, for example
|
||||
\c B_TAB and \c B_SPACE.
|
||||
The amount of horizontal space to surround a whitespace character with, for
|
||||
example \c B_TAB or \c B_SPACE.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1253,14 +1254,14 @@
|
||||
\fn void BFont::GetEscapements(const char charArray[], int32 numChars,
|
||||
escapement_delta *delta, float escapementArray[]) const
|
||||
\brief Determines the escapements for each char in \a charArray and writes
|
||||
the result in \a escapementArray with consideration to the provided
|
||||
escapement \a delta.
|
||||
the result in \a escapementArray with consideration to the horizontal
|
||||
space provided by the escapement \a delta.
|
||||
|
||||
The escapement_delta structure contains the following values:
|
||||
- \c nonspace The amount of space surrounding a character with a visible
|
||||
glyph.
|
||||
- \c space The amount of space surrounding a whitespace character, for
|
||||
example \c B_TAB and \c B_SPACE.
|
||||
- \c nonspace The amount of horizontal space to surround a visible glyph
|
||||
character with.
|
||||
- \c space The amount of horizontal space to surround a whitespace character
|
||||
with, for example \c B_TAB or \c B_SPACE.
|
||||
|
||||
\param charArray The source character array.
|
||||
\param numChars The number of characters to consider in \a charArray.
|
||||
@@ -1274,13 +1275,14 @@
|
||||
escapement_delta *delta, BPoint escapementArray[]) const
|
||||
\brief Determines the escapements for each char in \a charArray and writes
|
||||
the result in \a escapementArray as an array of BPoint objects
|
||||
with consideration to the provided escapement \a delta.
|
||||
with consideration to the horizontal space provided by the escapement
|
||||
\a delta.
|
||||
|
||||
The escapement_delta structure contains the following values:
|
||||
- \c nonspace The amount of space surrounding a character with a visible
|
||||
glyph.
|
||||
- \c space The amount of space surrounding a whitespace character, for
|
||||
example \c B_TAB and \c B_SPACE.
|
||||
- \c nonspace The amount of horizontal space to surround a visible glyph
|
||||
character with.
|
||||
- \c space The amount of horizontal space to surround a whitespace character
|
||||
with, for example \c B_TAB or \c B_SPACE.
|
||||
|
||||
\param charArray The source character array.
|
||||
\param numChars The number of characters to consider in \a charArray.
|
||||
@@ -1296,14 +1298,14 @@
|
||||
BPoint offsetArray[]) const
|
||||
\brief Determines the escapements for each char in \a charArray and writes
|
||||
the result in \a escapementArray as an array of BPoint objects
|
||||
with consideration to the provided escapement \a delta
|
||||
and writes offsets to \a offsetArray.
|
||||
with consideration to the horizontal space provided by the escapement
|
||||
\a delta and writes the offsets to \a offsetArray.
|
||||
|
||||
The escapement_delta structure contains the following values:
|
||||
- \c nonspace The amount of space surrounding a character with a visible
|
||||
glyph.
|
||||
- \c space The amount of space surrounding a whitespace character, for
|
||||
example \c B_TAB and \c B_SPACE.
|
||||
- \c nonspace The amount of horizontal space to surround a visible glyph
|
||||
character with.
|
||||
- \c space The amount of horizontal space to surround a whitespace character
|
||||
with, for example \c B_TAB or \c B_SPACE.
|
||||
|
||||
\param charArray The source character array.
|
||||
\param numChars The number of characters to consider in \a charArray.
|
||||
@@ -1370,9 +1372,9 @@
|
||||
\fn void BFont::GetBoundingBoxesAsString(const char charArray[],
|
||||
int32 numChars, font_metric_mode mode, escapement_delta *delta,
|
||||
BRect boundingBoxArray[]) const
|
||||
\brief Writes an array of BRect objects to \a boundingBoxArray
|
||||
representing the bounding rectangles of each character in
|
||||
\a charArray with consideration to the provided escapement
|
||||
\brief Writes an array of BRect objects to \a boundingBoxArray representing
|
||||
the bounding rectangles of each character in \a charArray with
|
||||
consideration to the horizontal space provided by the escapement
|
||||
\a delta.
|
||||
|
||||
Each BRect object corresponds to the glyph of one character.
|
||||
@@ -1381,15 +1383,15 @@
|
||||
- \c B_SCREEN_METRIC The bounding boxes should use the screen metric.
|
||||
- \c B_PRINTING_METRIC The bounding boxes should use the print metric.
|
||||
|
||||
Escapement deltas are applied as part of the bounding box calculations.
|
||||
This lets you specify a character spacing is looser or tighter than
|
||||
normal.
|
||||
The provided escapement \a delta is applied as part of the bounding box
|
||||
calculations. This lets you specify a character spacing is looser or
|
||||
tighter than normal.
|
||||
|
||||
The escapement_delta structure contains the following values:
|
||||
- \c nonspace The amount of space surrounding a character with a visible
|
||||
glyph.
|
||||
- \c space The amount of space surrounding a whitespace character, for
|
||||
example \c B_TAB and \c B_SPACE.
|
||||
- \c nonspace The amount of horizontal space to surround a visible glyph
|
||||
character with.
|
||||
- \c space The amount of horizontal space to surround a whitespace character
|
||||
with, for example \c B_TAB or \c B_SPACE.
|
||||
|
||||
\param charArray The source character array.
|
||||
\param numChars The number of characters to consider in \a charArray.
|
||||
@@ -1403,10 +1405,10 @@
|
||||
\fn void BFont::GetBoundingBoxesForStrings(const char *stringArray[],
|
||||
int32 numStrings, font_metric_mode mode, escapement_delta deltas[],
|
||||
BRect boundingBoxArray[]) const
|
||||
\brief Writes an array of BRect objects to \a boundingBoxArray
|
||||
representing the bounding rectangles of each string in
|
||||
\a stringArray with consideration to the provided escapement
|
||||
\a delta.
|
||||
\brief Writes an array of BRect objects to \a boundingBoxArray representing
|
||||
the bounding rectangles of each string in \a stringArray with
|
||||
consideration to the horizontal space provided by the escapement
|
||||
\a deltas.
|
||||
|
||||
Each BRect object corresponds to the bounding box of the entire string.
|
||||
|
||||
@@ -1414,15 +1416,15 @@
|
||||
- \c B_SCREEN_METRIC The bounding boxes should use the screen metric.
|
||||
- \c B_PRINTING_METRIC The bounding boxes should use the print metric.
|
||||
|
||||
Escapement deltas are applied as part of the bounding box calculations.
|
||||
This lets you specify a character spacing is looser or tighter than
|
||||
normal.
|
||||
The provided escapement \a deltas are applied as part of the bounding box
|
||||
calculations. This lets you specify a character spacing is looser or tighter
|
||||
than normal.
|
||||
|
||||
The escapement_delta structures should contain the following values:
|
||||
- \c nonspace The amount of space surrounding a character with a visible
|
||||
glyph.
|
||||
- \c space The amount of space surrounding a whitespace character, for
|
||||
example \c B_TAB and \c B_SPACE.
|
||||
The escapement_delta structure contains the following values:
|
||||
- \c nonspace The amount of horizontal space to surround a visible glyph
|
||||
character with.
|
||||
- \c space The amount of horizontal space to surround a whitespace character
|
||||
with, for example \c B_TAB or \c B_SPACE.
|
||||
|
||||
\param stringArray The source string array.
|
||||
\param numStrings The number of strings to consider in \a stringArray.
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
* Copyright 2013 Haiku, Inc. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*
|
||||
* Authors:
|
||||
* John Scipione, [email protected]
|
||||
*
|
||||
* Corresponds to:
|
||||
* headers/os/interface/GraphicsDefs.h hrev45737
|
||||
* src/kits/interface/GraphicsDefs.cpp hrev45737
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\file GraphicsDefs.h
|
||||
\ingroup interface
|
||||
\ingroup libbe
|
||||
\brief Graphics-related functions and variables used by the Interface Kit.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\struct pattern
|
||||
\ingroup interface
|
||||
\ingroup libbe
|
||||
\brief A pattern to use when drawing.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var B_SOLID_HIGH
|
||||
|
||||
Draw using the view's high color.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var B_MIXED_COLORS
|
||||
|
||||
Draw a pattern of the view's high and low colors.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var B_SOLID_LOW
|
||||
|
||||
Draw using the view's low color.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\enum source_alpha
|
||||
\ingroup interface
|
||||
|
||||
Blending alpha mode constants.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var source_alpha B_PIXEL_ALPHA
|
||||
|
||||
Use the alpha value of each pixel when drawing a bitmap.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var source_alpha B_CONSTANT_ALPHA
|
||||
|
||||
Use the alpha channel of the view's high color.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\enum alpha_function
|
||||
\ingroup interface
|
||||
|
||||
Blending alpha function constants.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var alpha_function B_ALPHA_OVERLAY
|
||||
|
||||
Used for drawing a image with transparency over an opaque background.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var alpha_function B_ALPHA_COMPOSITE
|
||||
|
||||
Used to composite two or more transparent images together offscreen to
|
||||
produce a new image drawn using \c B_ALPHA_OVERLAY mode.
|
||||
*/
|
||||
@@ -1,13 +1,13 @@
|
||||
/*
|
||||
* Copyright 2011 Haiku, Inc. All rights reserved.
|
||||
* Copyright 2011-2013 Haiku, Inc. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*
|
||||
* Authors:
|
||||
* John Scipione, [email protected]
|
||||
*
|
||||
* Corresponds to:
|
||||
* headers/os/interface/InterfaceDefs.h rev 43230
|
||||
* src/kits/interface/InterfaceDefs.cpp rev 43230
|
||||
* headers/os/interface/InterfaceDefs.h hrev45737
|
||||
* src/kits/interface/InterfaceDefs.cpp hrev45737
|
||||
*/
|
||||
|
||||
|
||||
@@ -107,6 +107,85 @@
|
||||
*/
|
||||
|
||||
|
||||
// Line join and cap modes
|
||||
|
||||
|
||||
/*!
|
||||
\enum join_mode
|
||||
|
||||
PostScript-style line join modes used by BView::SetLineMode()
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var join_mode B_ROUND_JOIN
|
||||
|
||||
Round join mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var join_mode B_MITER_JOIN
|
||||
|
||||
Miter join mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var join_mode B_BEVEL_JOIN
|
||||
|
||||
Bevel join mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var join_mode B_BUTT_JOIN
|
||||
|
||||
Butt join mode.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\var join_mode B_SQUARE_JOIN
|
||||
|
||||
Square join mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\enum cap_mode
|
||||
|
||||
PostScript-style line cap modes used by BView::SetLineMode()
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var cap_mode B_ROUND_CAP
|
||||
|
||||
Round cap mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var cap_mode B_BUTT_CAP
|
||||
|
||||
Butt cap mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var cap_mode B_SQUARE_CAP
|
||||
|
||||
Square cap mode.
|
||||
*/
|
||||
|
||||
|
||||
/*!
|
||||
\var B_DEFAULT_MITER_LIMIT
|
||||
|
||||
Default miter limit used to calculate the angle cut off for miter joins.
|
||||
*/
|
||||
|
||||
|
||||
///// Keyboard related functions
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user