Merge remote-tracking branch 'origin/master' into dev/netservices
Change-Id: I588c4a840523995f820161d63741c137bc5c719c
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# This script tries to convert a hugo markdown source into a markdown that pandoc can read, to convert to ODT for example.
|
||||||
|
|
||||||
|
# First filter turns inline links into footnotes with italic link text and monospace URL.
|
||||||
|
# Second filter turns img tags into regular markdown images
|
||||||
|
# Third filter converts enough of the Hugo header into pandoc's own header format.
|
||||||
|
|
||||||
|
sed -r 's/\[([^\[]*)\]\(([^()]*)\)/*\1*^[`\2`]/g' | \
|
||||||
|
sed -r 's,<img src=\"([^"]*)\".*title=\"([^"]*)\".*>,,g' | \
|
||||||
|
sed -r '/^\+\+\+$/{c\
|
||||||
|
---
|
||||||
|
};/^tags = \[.*$/d;1,5s/(.*) = "(.*)"/\1: \2/'
|
||||||
@@ -673,7 +673,7 @@ rule ArchitectureSetupWarnings architecture
|
|||||||
EnableWerror src add-ons kernel drivers bluetooth ;
|
EnableWerror src add-ons kernel drivers bluetooth ;
|
||||||
EnableWerror src add-ons kernel drivers bus ;
|
EnableWerror src add-ons kernel drivers bus ;
|
||||||
EnableWerror src add-ons kernel drivers common ;
|
EnableWerror src add-ons kernel drivers common ;
|
||||||
# EnableWerror src add-ons kernel drivers disk ;
|
EnableWerror src add-ons kernel drivers disk ;
|
||||||
EnableWerror src add-ons kernel drivers dvb ;
|
EnableWerror src add-ons kernel drivers dvb ;
|
||||||
# EnableWerror src add-ons kernel drivers graphics ;
|
# EnableWerror src add-ons kernel drivers graphics ;
|
||||||
EnableWerror src add-ons kernel drivers graphics intel_extreme ;
|
EnableWerror src add-ons kernel drivers graphics intel_extreme ;
|
||||||
@@ -681,7 +681,40 @@ rule ArchitectureSetupWarnings architecture
|
|||||||
EnableWerror src add-ons kernel drivers joystick ;
|
EnableWerror src add-ons kernel drivers joystick ;
|
||||||
EnableWerror src add-ons kernel drivers midi ;
|
EnableWerror src add-ons kernel drivers midi ;
|
||||||
EnableWerror src add-ons kernel drivers misc ;
|
EnableWerror src add-ons kernel drivers misc ;
|
||||||
# EnableWerror src add-ons kernel drivers network ;
|
EnableWerror src add-ons kernel drivers network ether 3com ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether atheros813x ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether atheros81xx ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether attansic_l1 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether attansic_l2 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether broadcom440x ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether broadcom570x ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether dec21xxx ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether etherpci ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether intel22x ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether ipro100 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether ipro1000 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether jmicron2x0 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether marvell_yukon ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether nforce ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether pcnet ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether pegasus ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether rdc ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether rtl8139 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether rtl81xx ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether sis19x ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether sis900 ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether syskonnect ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether usb_asix ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether usb_davicom ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether usb_ecm ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether usb_rndis ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether via_rhine ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether virtio ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network ether vt612x ;
|
||||||
|
EnableWerror src add-ons kernel drivers network ether wb840 ;
|
||||||
|
EnableWerror src add-ons kernel drivers network tun ;
|
||||||
|
# EnableWerror src add-ons kernel drivers network wlan ;
|
||||||
|
EnableWerror src add-ons kernel drivers network wwan ;
|
||||||
EnableWerror src add-ons kernel drivers ports ;
|
EnableWerror src add-ons kernel drivers ports ;
|
||||||
EnableWerror src add-ons kernel drivers power ;
|
EnableWerror src add-ons kernel drivers power ;
|
||||||
EnableWerror src add-ons kernel drivers printer ;
|
EnableWerror src add-ons kernel drivers printer ;
|
||||||
@@ -691,19 +724,20 @@ rule ArchitectureSetupWarnings architecture
|
|||||||
EnableWerror src add-ons kernel file_systems bfs ;
|
EnableWerror src add-ons kernel file_systems bfs ;
|
||||||
EnableWerror src add-ons kernel file_systems cdda ;
|
EnableWerror src add-ons kernel file_systems cdda ;
|
||||||
EnableWerror src add-ons kernel file_systems ext2 ;
|
EnableWerror src add-ons kernel file_systems ext2 ;
|
||||||
# EnableWerror src add-ons kernel file_systems fat ;
|
EnableWerror src add-ons kernel file_systems fat ;
|
||||||
EnableWerror src add-ons kernel file_systems googlefs ;
|
EnableWerror src add-ons kernel file_systems googlefs ;
|
||||||
EnableWerror src add-ons kernel file_systems iso9660 ;
|
EnableWerror src add-ons kernel file_systems iso9660 ;
|
||||||
EnableWerror src add-ons kernel file_systems layers ;
|
EnableWerror src add-ons kernel file_systems layers ;
|
||||||
# EnableWerror src add-ons kernel file_systems netfs ;
|
# EnableWerror src add-ons kernel file_systems netfs ;
|
||||||
# EnableWerror src add-ons kernel file_systems nfs ;
|
EnableWerror src add-ons kernel file_systems nfs ;
|
||||||
EnableWerror src add-ons kernel file_systems nfs4 ;
|
EnableWerror src add-ons kernel file_systems nfs4 ;
|
||||||
# EnableWerror src add-ons kernel file_systems ntfs ;
|
# EnableWerror src add-ons kernel file_systems ntfs ;
|
||||||
EnableWerror src add-ons kernel file_systems packagefs ;
|
EnableWerror src add-ons kernel file_systems packagefs ;
|
||||||
# EnableWerror src add-ons kernel file_systems ramfs ;
|
EnableWerror src add-ons kernel file_systems ramfs ;
|
||||||
# EnableWerror src add-ons kernel file_systems reiserfs ;
|
EnableWerror src add-ons kernel file_systems reiserfs ;
|
||||||
EnableWerror src add-ons kernel file_systems udf ;
|
EnableWerror src add-ons kernel file_systems udf ;
|
||||||
EnableWerror src add-ons kernel file_systems userlandfs ;
|
EnableWerror src add-ons kernel file_systems userlandfs ;
|
||||||
|
# EnableWerror src add-ons kernel file_systems xfs ;
|
||||||
EnableWerror src add-ons kernel generic ;
|
EnableWerror src add-ons kernel generic ;
|
||||||
EnableWerror src add-ons kernel network ;
|
EnableWerror src add-ons kernel network ;
|
||||||
EnableWerror src add-ons kernel partitioning_systems ;
|
EnableWerror src add-ons kernel partitioning_systems ;
|
||||||
|
|||||||
@@ -630,7 +630,7 @@ if [ IsPackageAvailable libraw_devel ] {
|
|||||||
runtime: lib
|
runtime: lib
|
||||||
file: devel libraw_devel
|
file: devel libraw_devel
|
||||||
depends: base
|
depends: base
|
||||||
libraries: $(developLibDir)/libraw.so.19
|
libraries: $(developLibDir)/libraw.so
|
||||||
headers: $(developHeadersDir)
|
headers: $(developHeadersDir)
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -675,7 +675,7 @@ if [ IsPackageAvailable libavif_devel ] {
|
|||||||
runtime: lib
|
runtime: lib
|
||||||
file: devel libavif_devel
|
file: devel libavif_devel
|
||||||
depends: base
|
depends: base
|
||||||
library: $(developLibDir)/libavif.so.9
|
library: $(developLibDir)/libavif.so
|
||||||
headers: $(developHeadersDir) $(developHeadersDir)/avif
|
headers: $(developHeadersDir) $(developHeadersDir)/avif
|
||||||
;
|
;
|
||||||
EnableBuildFeatures libavif ;
|
EnableBuildFeatures libavif ;
|
||||||
|
|||||||
@@ -192,7 +192,6 @@ rule DefineDefaultBuildProfiles
|
|||||||
haikuporter
|
haikuporter
|
||||||
less
|
less
|
||||||
libedit
|
libedit
|
||||||
m4
|
|
||||||
make
|
make
|
||||||
mawk
|
mawk
|
||||||
ncurses6
|
ncurses6
|
||||||
|
|||||||
@@ -96,9 +96,10 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# other commonly used tools
|
# other commonly used tools
|
||||||
AddHaikuImageDisabledPackages bison cdrtools flex jam m4 make mawk mkdepend
|
AddHaikuImageDisabledPackages bison cdrtools flex jam make mawk mkdepend
|
||||||
nasm@!gcc2 nasm_x86@secondary_x86 patch ;
|
m4@!gcc2 m4_x86@secondary_x86 nasm@!gcc2 nasm_x86@secondary_x86 patch ;
|
||||||
AddHaikuImageSourcePackages bison cdrtools m4 make patch ;
|
AddHaikuImageSourcePackages bison cdrtools make patch
|
||||||
|
m4@!gcc2 m4_x86@secondary_x86 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,80 +0,0 @@
|
|||||||
# BeagleBoard board-specific definitions
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "BeagleBoard" ;
|
|
||||||
HAIKU_BOARD_FDT_NAME = "omap3-beagle-xm" ;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
# load address for haiku_loader
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x80800000 ;
|
|
||||||
# entry points (raw binary, and netbsd loader emulation)
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = $(HAIKU_BOARD_LOADER_BASE) ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = `printf \"obase=16;ibase=16;8 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_LINUX = `printf \"obase=16;ibase=16;10 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY = $(HAIKU_BOARD_LOADER_ENTRY_NBSD) ;
|
|
||||||
HAIKU_BOARD_LOADER_FAKE_OS = netbsd ;
|
|
||||||
|
|
||||||
# load address for haiku_loader uimage
|
|
||||||
# (must be different than real load address)
|
|
||||||
HAIKU_BOARD_LOADER_UIBASE = 0x82800000 ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Flash image
|
|
||||||
#
|
|
||||||
|
|
||||||
# OMAP x-loader image, must be first file on FAT partition
|
|
||||||
HAIKU_BOARD_MLO_IMAGE ?= MLO ;
|
|
||||||
HAIKU_BOARD_MLO_IMAGE_URL =
|
|
||||||
http://downloads.angstrom-distribution.org/demo/beagleboard/MLO ;
|
|
||||||
|
|
||||||
# u-boot binary image filename, to build the flash image
|
|
||||||
# XXX: Locate it somehow (for now just put it in generated/)
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE ?= u-boot.img ;
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE_URL =
|
|
||||||
http://downloads.angstrom-distribution.org/demo/beagleboard/u-boot.img ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 64 ;
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
|
|
||||||
mloFile = [ DownloadFile $(HAIKU_BOARD_MLO_IMAGE)
|
|
||||||
: $(HAIKU_BOARD_MLO_IMAGE_URL) ] ;
|
|
||||||
|
|
||||||
ubootFile = [ DownloadFile $(HAIKU_BOARD_UBOOT_IMAGE)
|
|
||||||
: $(HAIKU_BOARD_UBOOT_IMAGE_URL) ] ;
|
|
||||||
|
|
||||||
# U-Boot environment
|
|
||||||
# We load the uImage 2MB above its final destination, bootm will decode
|
|
||||||
# it to the proper location. Our image is smaller than 2MB so this works.
|
|
||||||
#HAIKU_BOARD_SDIMAGE_UBOOT_UENV_NAME = uEnv.txt ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_UENV = "uenvcmd=run loadImage; run mmcboot; \
|
|
||||||
loadImage=fatload mmc0 0 $(HAIKU_BOARD_LOADER_UIBASE) haiku_loader_linux.ub; fatload mmc 0 0x80100000 /fdt/$(HAIKU_BOARD_FDT_NAME).dtb; fatload mmc 0 0x81200000 haiku-floppyboot.tgz.ub; \
|
|
||||||
mmcboot=bootm $(HAIKU_BOARD_LOADER_UIBASE) 0x81200000 0x80100000" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
$(mloFile)
|
|
||||||
$(ubootFile)
|
|
||||||
haiku_loader_nbsd.ub
|
|
||||||
haiku_loader_linux.ub
|
|
||||||
haiku-floppyboot.tgz.ub
|
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
|
|
||||||
local flags = -mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard ;
|
|
||||||
|
|
||||||
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
# BeagleBone board-specific definitions
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "BeagleBone" ;
|
|
||||||
HAIKU_BOARD_FDT_NAME = "boneblack" ;
|
|
||||||
|
|
||||||
# Not that many in the wild
|
|
||||||
#HAIKU_BOARD_FDT_NAME = "beaglebone" ;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
# load address for haiku_loader
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x80800000 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = $(HAIKU_BOARD_LOADER_BASE) ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = `printf \"obase=16;ibase=16;8 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_LINUX = `printf \"obase=16;ibase=16;10 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 64 ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
|
|
||||||
# OMAP x-loader image, must be first file on FAT partition
|
|
||||||
HAIKU_BOARD_MLO_IMAGE_URL = https://github.com/haiku/firmware/raw/master/arm/beaglebone ;
|
|
||||||
mloFile = [ DownloadFile MLO : $(HAIKU_BOARD_MLO_IMAGE_URL)/MLO ] ;
|
|
||||||
|
|
||||||
# u-boot image
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE_URL = https://github.com/haiku/firmware/raw/master/arm/beaglebone ;
|
|
||||||
ubootFile = [ DownloadFile u-boot.img : $(HAIKU_BOARD_UBOOT_IMAGE_URL)/u-boot.img ] ;
|
|
||||||
|
|
||||||
# U-Boot environment
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME = boot.scr ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT = "\
|
|
||||||
fatload mmc 0 ${fdt_addr_r} /fdt/$(HAIKU_BOARD_FDT_NAME).dtb \
|
|
||||||
fdt addr ${fdt_addr_r} \
|
|
||||||
fatload mmc 0 ${ramdisk_addr_r} haiku-floppyboot.tgz.ub \
|
|
||||||
fatload mmc 0 ${kernel_addr_r} haiku_loader_linux.ub \
|
|
||||||
bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
$(mloFile)
|
|
||||||
$(ubootFile)
|
|
||||||
haiku_loader_linux.ub
|
|
||||||
haiku-floppyboot.tgz.ub
|
|
||||||
$(HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME)
|
|
||||||
;
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
|
|
||||||
local flags = -mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard ;
|
|
||||||
|
|
||||||
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
# Cubieboard 4 board-specific definitions
|
|
||||||
# This likely could be easily used for other Allwinner chipsets
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "Cubieboard 4 (CC-A80)" ;
|
|
||||||
HAIKU_BOARD_FDT_NAME = "cubieboard4" ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
# 0x20000000 = SDRAM start
|
|
||||||
# 0x20007800 = haiku_loader_linux.ub
|
|
||||||
# 0x20087800 = BASE
|
|
||||||
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x20087800 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = $(HAIKU_BOARD_LOADER_BASE) ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = `printf \"obase=16;ibase=16;8 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_LINUX = `printf \"obase=16;ibase=16;10 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
HAIKU_BOARD_FIRMWARE_URL = "https://github.com/cubieboard/CC-A80-binaries/raw/master/bin" ;
|
|
||||||
|
|
||||||
# u-boot image
|
|
||||||
# Dear Cubbieboard, add fdt_addr_r, ramdisk_addr_r, kernel_addr_r to u-boot
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME = boot.scr ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT = "\
|
|
||||||
fatload mmc 0 0x20800000 haiku-floppyboot.tgz.ub \
|
|
||||||
fatload mmc 0 0x20007800 haiku_loader_linux.ub \
|
|
||||||
bootm 0x20007800 0x20800000" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
haiku_loader_linux.ub
|
|
||||||
haiku-floppyboot.tgz.ub
|
|
||||||
$(HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME)
|
|
||||||
;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_BEGIN = 40950 ; # 512-byte sectors (divisible by 63)
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 128 ; # MiB
|
|
||||||
|
|
||||||
boot0File = [ DownloadFile sdcard-boot0 : $(HAIKU_BOARD_FIRMWARE_URL)/sdcard-boot0 ] ;
|
|
||||||
boot1File = [ DownloadFile sdcard-boot1 : $(HAIKU_BOARD_FIRMWARE_URL)/sdcard-boot1 ] ;
|
|
||||||
|
|
||||||
# The Allwinner chips require an SD card "blessed" with
|
|
||||||
# the boot0 SPL and boot1 (u-boot) at a fixed location on
|
|
||||||
# the SD card. (Dear AW, please support loading from FAT)
|
|
||||||
HAIKU_BOARD_SDIMAGE_BOOT0_FILE = $(boot0File) ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_BOOT0_SEEK = 8192 ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_BOOT1_FILE = $(boot1File) ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_BOOT1_SEEK = 19554304 ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
#
|
|
||||||
|
|
||||||
local flags = -march=armv7-a -mfpu=vfpv3-d16 -mfloat-abi=hard ;
|
|
||||||
|
|
||||||
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
|
|
||||||
# Workaround for ld using 32k for alignment despite forcing it in the config...
|
|
||||||
# should definitely not be needed!
|
|
||||||
HAIKU_KERNEL_LINKFLAGS +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
HAIKU_LINKFLAGS_$(HAIKU_PACKAGING_ARCH) +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
# Gumstix Verdex board-specific definitions
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "Openmoko Neo FreeRunner" ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
# load address for haiku_loader
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x32000000 ;
|
|
||||||
# entry points (raw binary, and netbsd loader emulation)
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = 0x32000000 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = 0x32000008 ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY = $(HAIKU_BOARD_LOADER_ENTRY_NBSD) ;
|
|
||||||
HAIKU_BOARD_LOADER_FAKE_OS = netbsd ;
|
|
||||||
|
|
||||||
# load address for haiku_loader uimage
|
|
||||||
# (must be different than real load address)
|
|
||||||
HAIKU_BOARD_LOADER_UIBASE = 0x34000000 ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Flash image
|
|
||||||
#
|
|
||||||
|
|
||||||
# u-boot binary image filename, to build the flash image
|
|
||||||
# XXX: Locate it somehow (for now just put it in generated/)
|
|
||||||
#HAIKU_BOARD_UBOOT_IMAGE ?= u-boot-verdex-400-r1604.bin ;
|
|
||||||
#HAIKU_BOARD_UBOOT_IMAGE_URL =
|
|
||||||
# http://www.gumstix.net/feeds/u-boot/u-boot-verdex-400-r1604.bin ;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 256 ;
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
|
|
||||||
# autoboot script
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME = uImage.bin ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT = "\
|
|
||||||
if mmcinit; then \
|
|
||||||
neo backlight off; \
|
|
||||||
fatload mmc 0 $(HAIKU_BOARD_LOADER_UIBASE) haiku_loader_nbsd.ub; \
|
|
||||||
neo backlight on; \
|
|
||||||
bootm $(HAIKU_BOARD_LOADER_UIBASE); \
|
|
||||||
fi" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
haiku_loader
|
|
||||||
haiku_loader.ub
|
|
||||||
haiku_loader_nbsd.ub
|
|
||||||
$(HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME)
|
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
#
|
|
||||||
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += -mcpu=arm920t ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += -mcpu=arm920t ;
|
|
||||||
|
|
||||||
# Workaround for ld using 32k for alignment despite forcing it in the config...
|
|
||||||
# should definitely not be needed!
|
|
||||||
HAIKU_KERNEL_LINKFLAGS +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
HAIKU_LINKFLAGS_$(HAIKU_PACKAGING_ARCH) +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
|
|
||||||
@@ -1,101 +0,0 @@
|
|||||||
# Gumstix Overo board-specific definitions
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "Gumstix Overo" ;
|
|
||||||
HAIKU_BOARD_FDT_NAME = "omap3-overo-tobi" ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
# load address for haiku_loader
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x80800000 ;
|
|
||||||
# entry points (raw binary, and netbsd loader emulation)
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = 0x80800000 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = 0x80800008 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_LINUX = 0x80800010 ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY = $(HAIKU_BOARD_LOADER_ENTRY_NBSD) ;
|
|
||||||
HAIKU_BOARD_LOADER_FAKE_OS = netbsd ;
|
|
||||||
|
|
||||||
# load address for haiku_loader uimage
|
|
||||||
# (must be different than real load address)
|
|
||||||
HAIKU_BOARD_LOADER_UIBASE = 0x82800000 ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Flash image
|
|
||||||
#
|
|
||||||
|
|
||||||
# cf. http://gumstix.org/how-to/70-writing-images-to-flash.html
|
|
||||||
|
|
||||||
# OMAP x-loader image, must be first file in Flash image
|
|
||||||
HAIKU_BOARD_MLO_IMAGE ?= MLO ;
|
|
||||||
HAIKU_BOARD_MLO_IMAGE_URL =
|
|
||||||
http://cumulus.gumstix.org/images/angstrom/developer/current/MLO ;
|
|
||||||
|
|
||||||
# u-boot binary image filename, to build the flash image
|
|
||||||
# XXX: Locate it somehow (for now just put it in generated/)
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE ?= u-boot.bin ;
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE_URL =
|
|
||||||
http://cumulus.gumstix.org/images/angstrom/developer/current/u-boot.bin ;
|
|
||||||
|
|
||||||
mloFile = [ DownloadFile $(HAIKU_BOARD_MLO_IMAGE)
|
|
||||||
: $(HAIKU_BOARD_MLO_IMAGE_URL) ] ;
|
|
||||||
|
|
||||||
ubootFile = [ DownloadFile $(HAIKU_BOARD_UBOOT_IMAGE)
|
|
||||||
: $(HAIKU_BOARD_UBOOT_IMAGE_URL) ] ;
|
|
||||||
|
|
||||||
FLASH_IMAGE_PARTS =
|
|
||||||
$(mloFile)
|
|
||||||
$(ubootFile)
|
|
||||||
;
|
|
||||||
|
|
||||||
# flash offsets:
|
|
||||||
# in kB
|
|
||||||
FLASH_IMAGE_LOADER_OFFSET = 31744 ;
|
|
||||||
|
|
||||||
FLASH_OFFSET on $(mloFile) = 0 ;
|
|
||||||
FLASH_OFFSET on $(ubootFile) = 512 ;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 256 ;
|
|
||||||
|
|
||||||
# in MB
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
|
|
||||||
# autoboot script
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME = boot.scr ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT = "\
|
|
||||||
setenv bootargs debug_screen true; \
|
|
||||||
if mmc rescan; then \
|
|
||||||
fatload mmc 0 0x80100000 /fdt/$(HAIKU_BOARD_FDT_NAME).dtb ; \
|
|
||||||
fatload mmc 0 0x81200000 haiku-floppyboot.tgz.ub; \
|
|
||||||
fatload mmc 0 $(HAIKU_BOARD_LOADER_UIBASE) haiku_loader_linux.ub; \
|
|
||||||
bootm $(HAIKU_BOARD_LOADER_UIBASE) 0x81200000 0x80100000; \
|
|
||||||
fi" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
$(mloFile)
|
|
||||||
$(ubootFile)
|
|
||||||
haiku_loader
|
|
||||||
haiku_loader.ub
|
|
||||||
haiku_loader_linux.ub
|
|
||||||
haiku_loader_nbsd.ub
|
|
||||||
haiku-floppyboot.tgz.ub
|
|
||||||
$(HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME)
|
|
||||||
;
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
#
|
|
||||||
|
|
||||||
local flags = -mcpu=cortex-a8 -mfpu=vfpv3 -mfloat-abi=hard ;
|
|
||||||
|
|
||||||
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
@@ -1,74 +0,0 @@
|
|||||||
# Raspberry Pi 2 board-specific definitions
|
|
||||||
|
|
||||||
HAIKU_BOARD_DESCRIPTION = "Raspberry Pi 2" ;
|
|
||||||
HAIKU_BOARD_FDT_NAME = "rpi2" ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# Various hardcoded addresses
|
|
||||||
#
|
|
||||||
|
|
||||||
HAIKU_BOARD_LOADER_BASE = 0x00080000 ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_RAW = $(HAIKU_BOARD_LOADER_BASE) ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_NBSD = `printf \"obase=16;ibase=16;8 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
HAIKU_BOARD_LOADER_ENTRY_LINUX = `printf \"obase=16;ibase=16;10 + %x\\n\" $(HAIKU_BOARD_LOADER_BASE)|bc` ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# mmc/SD image
|
|
||||||
#
|
|
||||||
|
|
||||||
# u-boot image
|
|
||||||
HAIKU_BOARD_UBOOT_IMAGE_URL = https://github.com/haiku/firmware/raw/master/arm/rpi2 ;
|
|
||||||
ubootFile = [ DownloadFile u-boot.bin : $(HAIKU_BOARD_UBOOT_IMAGE_URL)/u-boot.bin ] ;
|
|
||||||
configFile = [ DownloadFile config.txt : $(HAIKU_BOARD_UBOOT_IMAGE_URL)/config.txt ] ;
|
|
||||||
|
|
||||||
# Raspberry Pi foundation loader
|
|
||||||
HAIKU_BOARD_FIRMWARE_URL = https://github.com/raspberrypi/firmware/raw/master/boot ;
|
|
||||||
bootcodeFile = [ DownloadFile bootcode.bin : $(HAIKU_BOARD_FIRMWARE_URL)/bootcode.bin ] ;
|
|
||||||
startFile = [ DownloadFile start.elf : $(HAIKU_BOARD_FIRMWARE_URL)/start.elf ] ;
|
|
||||||
licenseFile = [ DownloadFile LICENCE.broadcom : $(HAIKU_BOARD_FIRMWARE_URL)/LICENCE.broadcom ] ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_FIRMWARE_FILES =
|
|
||||||
$(bootcodeFile)
|
|
||||||
$(startFile)
|
|
||||||
$(licenseFile)
|
|
||||||
;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME = boot.scr ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT = "\
|
|
||||||
fatload mmc 0 ${fdt_addr_r} /fdt/$(HAIKU_BOARD_FDT_NAME).dtb \
|
|
||||||
fdt addr ${fdt_addr_r} \
|
|
||||||
fatload mmc 0 ${ramdisk_addr_r} haiku-floppyboot.tgz.ub \
|
|
||||||
fatload mmc 0 ${kernel_addr_r} haiku_loader_linux.ub \
|
|
||||||
bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r}" ;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_FAT_SIZE = 32 ;
|
|
||||||
HAIKU_BOARD_SDIMAGE_FILES =
|
|
||||||
$(HAIKU_BOARD_FIRMWARE_FILES)
|
|
||||||
$(configFile)
|
|
||||||
$(ubootFile)
|
|
||||||
haiku_loader_linux.ub
|
|
||||||
haiku-floppyboot.tgz.ub
|
|
||||||
$(HAIKU_BOARD_SDIMAGE_UBOOT_SCRIPT_NAME)
|
|
||||||
;
|
|
||||||
|
|
||||||
HAIKU_BOARD_SDIMAGE_SIZE = 128 ;
|
|
||||||
|
|
||||||
#
|
|
||||||
# gcc flags for the specific cpu
|
|
||||||
#
|
|
||||||
|
|
||||||
local flags = -march=armv7-a -mfloat-abi=hard ;
|
|
||||||
|
|
||||||
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
HAIKU_C++FLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
|
|
||||||
|
|
||||||
# Workaround for ld using 32k for alignment despite forcing it in the config...
|
|
||||||
# should definitely not be needed!
|
|
||||||
HAIKU_KERNEL_LINKFLAGS +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
HAIKU_LINKFLAGS_$(HAIKU_PACKAGING_ARCH) +=
|
|
||||||
-Wl,-z -Wl,max-page-size=0x1000
|
|
||||||
-Wl,-z -Wl,common-page-size=0x1000 ;
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
##### CPU Speed
|
|
||||||
#arm_freq 700
|
|
||||||
|
|
||||||
##### Memory layout
|
|
||||||
#gpu_mem 64
|
|
||||||
|
|
||||||
# Memory based on model.. overrides gpu_mem
|
|
||||||
#gpu_mem_256 64
|
|
||||||
#gpu_mem_512 64
|
|
||||||
|
|
||||||
##### Low level
|
|
||||||
kernel=haiku_loader
|
|
||||||
kernel_address=0x0
|
|
||||||
ramfsfile=haiku-floppyboot.tgz
|
|
||||||
ramfsaddr=0x04000000
|
|
||||||
|
|
||||||
# Skip boot tags for non-linux platforms
|
|
||||||
disable_commandline_tags=1
|
|
||||||
#device_tree=bcm2835.dtb
|
|
||||||
#device_tree_address=0x100
|
|
||||||
|
|
||||||
##### UART Settings
|
|
||||||
# Default is 115200
|
|
||||||
#init_uart_baud=9600
|
|
||||||
#init_uart_clock=
|
|
||||||
@@ -50,7 +50,7 @@ for platform in [ MultiBootSubDirSetup ] {
|
|||||||
if $(TARGET_BOOT_PLATFORM) = efi {
|
if $(TARGET_BOOT_PLATFORM) = efi {
|
||||||
local efiLoader = haiku_loader.efi ;
|
local efiLoader = haiku_loader.efi ;
|
||||||
local efiPartition = esp.image ;
|
local efiPartition = esp.image ;
|
||||||
MakeLocate $(efiPartition) ;
|
MakeLocateDebug $(efiPartition) : system boot ;
|
||||||
BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ;
|
BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ;
|
||||||
BuildAnybootImageEfi $(HAIKU_ANYBOOT) : $(baseMBR)
|
BuildAnybootImageEfi $(HAIKU_ANYBOOT) : $(baseMBR)
|
||||||
: $(efiPartition) : $(HAIKU_CD_BOOT_IMAGE)
|
: $(efiPartition) : $(HAIKU_CD_BOOT_IMAGE)
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ if $(TARGET_ARCH) = ppc {
|
|||||||
if $(TARGET_BOOT_PLATFORM) = efi {
|
if $(TARGET_BOOT_PLATFORM) = efi {
|
||||||
local efiLoader = haiku_loader.efi ;
|
local efiLoader = haiku_loader.efi ;
|
||||||
local efiPartition = esp.image ;
|
local efiPartition = esp.image ;
|
||||||
MakeLocate $(efiPartition) : $(HAIKU_OUTPUT_DIR) ;
|
MakeLocateDebug $(efiPartition) : system boot ;
|
||||||
BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ;
|
BuildEfiSystemPartition $(efiPartition) : $(efiLoader) ;
|
||||||
|
|
||||||
BuildCDBootImage $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY)
|
BuildCDBootImage $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY)
|
||||||
|
|||||||
@@ -10,17 +10,18 @@ SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
|
|||||||
x86 @{
|
x86 @{
|
||||||
3com atheros813x atheros81xx
|
3com atheros813x atheros81xx
|
||||||
broadcom440x broadcom570x ipro1000
|
broadcom440x broadcom570x ipro1000
|
||||||
rtl8139 rtl81xx
|
rtl8139
|
||||||
via_rhine ipro100 nforce
|
via_rhine ipro100 nforce
|
||||||
marvell_yukon sis900 syskonnect
|
marvell_yukon sis900 syskonnect
|
||||||
attansic_l2
|
attansic_l2
|
||||||
}@ # x86
|
}@ # x86
|
||||||
|
|
||||||
etherpci pegasus usb_ecm wb840
|
rtl81xx etherpci pegasus usb_ecm wb840
|
||||||
] ;
|
] ;
|
||||||
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
||||||
pci isa@x86 ata
|
pci isa@x86 ata
|
||||||
scsi agp_gart
|
scsi agp_gart
|
||||||
|
dpc acpi
|
||||||
] ;
|
] ;
|
||||||
SYSTEM_ADD_ONS_FILE_SYSTEMS = bfs packagefs ;
|
SYSTEM_ADD_ONS_FILE_SYSTEMS = bfs packagefs ;
|
||||||
|
|
||||||
|
|||||||
@@ -209,7 +209,7 @@ SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
|
|||||||
|
|
||||||
etherpci
|
etherpci
|
||||||
pegasus
|
pegasus
|
||||||
usb_asix usb_davicom usb_ecm
|
usb_asix usb_davicom usb_ecm usb_rndis
|
||||||
wb840
|
wb840
|
||||||
] ;
|
] ;
|
||||||
|
|
||||||
@@ -223,12 +223,12 @@ SYSTEM_ADD_ONS_DRIVERS_SENSOR = [ FFilterByBuildFeatures
|
|||||||
|
|
||||||
|
|
||||||
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
||||||
acpi@x86,x86_64 agp_gart@x86,x86_64 ata
|
acpi@x86,x86_64,arm64 agp_gart@x86,x86_64 ata
|
||||||
i2c@x86,x86_64 isa@x86,x86_64
|
i2c@x86,x86_64 isa@x86,x86_64
|
||||||
mmc
|
mmc
|
||||||
scsi
|
scsi
|
||||||
pci ps2@x86,x86_64
|
pci ps2@x86,x86_64
|
||||||
fdt@riscv64,arm
|
fdt@riscv64,arm,arm64
|
||||||
random
|
random
|
||||||
usb
|
usb
|
||||||
virtio
|
virtio
|
||||||
|
|||||||
@@ -232,8 +232,8 @@ SYSTEM_ADD_ONS_DRIVERS_NET += [ FFilterByBuildFeatures
|
|||||||
x86,x86_64 @{
|
x86,x86_64 @{
|
||||||
aironetwifi atheroswifi
|
aironetwifi atheroswifi
|
||||||
broadcom43xx
|
broadcom43xx
|
||||||
|
iaxwifi200 idualwifi7260
|
||||||
iprowifi2100 iprowifi2200 iprowifi3945 iprowifi4965
|
iprowifi2100 iprowifi2200 iprowifi3945 iprowifi4965
|
||||||
idualwifi7260
|
|
||||||
marvell88w8363 marvell88w8335
|
marvell88w8363 marvell88w8335
|
||||||
ralinkwifi realtekwifi
|
ralinkwifi realtekwifi
|
||||||
}@ # x86,x86_64
|
}@ # x86,x86_64
|
||||||
|
|||||||
@@ -8,20 +8,10 @@ HaikuPackage $(haikuPackage) ;
|
|||||||
# wifi firmware
|
# wifi firmware
|
||||||
local driver ;
|
local driver ;
|
||||||
for driver in $(SYSTEM_ADD_ONS_DRIVERS_NET) {
|
for driver in $(SYSTEM_ADD_ONS_DRIVERS_NET) {
|
||||||
local package = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_PACKAGE) ] ;
|
|
||||||
local archive = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_ARCHIVE) ] ;
|
local archive = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_ARCHIVE) ] ;
|
||||||
local extract = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_DO_EXTRACT) ] ;
|
local extract = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_DO_EXTRACT) ] ;
|
||||||
if $(archive) {
|
if $(archive) {
|
||||||
AddWifiFirmwareToPackage $(driver) : $(package) : $(archive)
|
AddWifiFirmwareToPackage $(driver) : : $(archive) : $(extract) ;
|
||||||
: $(extract) ;
|
|
||||||
}
|
|
||||||
local packages = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_PACKAGES) ] ;
|
|
||||||
local archives = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_ARCHIVES) ] ;
|
|
||||||
local archive ;
|
|
||||||
for archive in $(archives) {
|
|
||||||
AddWifiFirmwareToPackage $(driver) : $(packages[1]) : $(archive)
|
|
||||||
: $(extract) ;
|
|
||||||
packages = $(packages[2-]) ;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,7 +182,7 @@ AddFilesToPackage data KeyboardLayouts ThinkPad
|
|||||||
|
|
||||||
# boot module links
|
# boot module links
|
||||||
AddBootModuleSymlinksToPackage
|
AddBootModuleSymlinksToPackage
|
||||||
acpi@x86,x86_64 ahci ata ata_adapter
|
acpi@x86,x86_64,arm64 ahci ata ata_adapter
|
||||||
bfs
|
bfs
|
||||||
dpc
|
dpc
|
||||||
efi_gpt
|
efi_gpt
|
||||||
@@ -203,7 +193,7 @@ AddBootModuleSymlinksToPackage
|
|||||||
nvme_disk
|
nvme_disk
|
||||||
openpic@ppc
|
openpic@ppc
|
||||||
packagefs pci
|
packagefs pci
|
||||||
fdt@riscv64,arm
|
fdt@riscv64,arm,arm64
|
||||||
scsi scsi_cd scsi_disk scsi_periph silicon_image_3112 highpoint_ide_pci
|
scsi scsi_cd scsi_disk scsi_periph silicon_image_3112 highpoint_ide_pci
|
||||||
sdhci_pci
|
sdhci_pci
|
||||||
usb usb_disk <usb>ehci <usb>ohci <usb>uhci <usb>xhci
|
usb usb_disk <usb>ehci <usb>ohci <usb>uhci <usb>xhci
|
||||||
|
|||||||
@@ -5,27 +5,6 @@ local haikuPackage = haiku.hpkg ;
|
|||||||
HaikuPackage $(haikuPackage) ;
|
HaikuPackage $(haikuPackage) ;
|
||||||
|
|
||||||
|
|
||||||
# wifi firmware
|
|
||||||
local driver ;
|
|
||||||
for driver in $(SYSTEM_ADD_ONS_DRIVERS_NET) {
|
|
||||||
local package = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_PACKAGE) ] ;
|
|
||||||
local archive = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_ARCHIVE) ] ;
|
|
||||||
local extract = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_DO_EXTRACT) ] ;
|
|
||||||
if $(archive) {
|
|
||||||
AddWifiFirmwareToPackage $(driver) : $(package) : $(archive)
|
|
||||||
: $(extract) ;
|
|
||||||
}
|
|
||||||
local packages = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_PACKAGES) ] ;
|
|
||||||
local archives = [ on $(driver) return $(HAIKU_WIFI_FIRMWARE_ARCHIVES) ] ;
|
|
||||||
local archive ;
|
|
||||||
for archive in $(archives) {
|
|
||||||
AddWifiFirmwareToPackage $(driver) : $(packages[1]) : $(archive)
|
|
||||||
: $(extract) ;
|
|
||||||
packages = $(packages[2-]) ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
# modules
|
# modules
|
||||||
AddFilesToPackage add-ons kernel bus_managers : $(SYSTEM_ADD_ONS_BUS_MANAGERS) ;
|
AddFilesToPackage add-ons kernel bus_managers : $(SYSTEM_ADD_ONS_BUS_MANAGERS) ;
|
||||||
AddFilesToPackage add-ons kernel busses agp_gart : <agp_gart>intel@x86,x86_64 ;
|
AddFilesToPackage add-ons kernel busses agp_gart : <agp_gart>intel@x86,x86_64 ;
|
||||||
|
|||||||
@@ -26,11 +26,11 @@ RemotePackageRepository HaikuPorts
|
|||||||
freetype-2.6.3-1
|
freetype-2.6.3-1
|
||||||
freetype_devel-2.6.3-1
|
freetype_devel-2.6.3-1
|
||||||
gawk-3.1.8-2
|
gawk-3.1.8-2
|
||||||
gcc_syslibs_devel-11.2.0_2021_07_28-4
|
gcc_syslibs_devel-11.2.0_2021_07_28-5
|
||||||
gcc_syslibs-11.2.0_2021_07_28-4
|
gcc_syslibs-11.2.0_2021_07_28-5
|
||||||
grep-2.14-1
|
grep-2.14-1
|
||||||
icu-67.1-2
|
icu-57.2-1
|
||||||
icu_devel-67.1-2
|
icu_devel-57.2-1
|
||||||
less-451-1
|
less-451-1
|
||||||
libsolv-0.3.0_haiku_2014_12_22-1
|
libsolv-0.3.0_haiku_2014_12_22-1
|
||||||
libsolv_devel-0.3.0_haiku_2014_12_22-1
|
libsolv_devel-0.3.0_haiku_2014_12_22-1
|
||||||
|
|||||||
@@ -26,19 +26,20 @@ RemotePackageRepository HaikuPorts
|
|||||||
freetype-2.6.3-1
|
freetype-2.6.3-1
|
||||||
freetype_devel-2.6.3-1
|
freetype_devel-2.6.3-1
|
||||||
gawk-3.1.8-2
|
gawk-3.1.8-2
|
||||||
gcc-11.2.0_2021_07_28-3
|
gcc-11.2.0_2021_07_28-5
|
||||||
gcc_syslibs_devel-11.2.0_2021_07_28-3
|
gcc_syslibs_devel-11.2.0_2021_07_28-5
|
||||||
gcc_syslibs-11.2.0_2021_07_28-3
|
gcc_syslibs-11.2.0_2021_07_28-5
|
||||||
icu-67.1-2
|
icu-57.2-2
|
||||||
icu_devel-67.1-2
|
icu_devel-57.2-2
|
||||||
less-451-1
|
less-451-1
|
||||||
libsolv-0.3.0_haiku_2014_12_22-1
|
libsolv-0.3.0_haiku_2014_12_22-1
|
||||||
libsolv_devel-0.3.0_haiku_2014_12_22-1
|
libsolv_devel-0.3.0_haiku_2014_12_22-1
|
||||||
|
libffi-3.3-1
|
||||||
m4-1.4.16-1
|
m4-1.4.16-1
|
||||||
make-4.3-1
|
make-4.3-1
|
||||||
ncurses6-6.2-1
|
ncurses6-6.2-1
|
||||||
ncurses6_devel-6.2-1
|
ncurses6_devel-6.2-1
|
||||||
python-2.7.6-1
|
python-3.9.1-1
|
||||||
sed-4.2.1-1
|
sed-4.2.1-1
|
||||||
texinfo-4.13a-1
|
texinfo-4.13a-1
|
||||||
zstd-1.5.0-2
|
zstd-1.5.0-2
|
||||||
@@ -88,6 +89,7 @@ RemotePackageRepository HaikuPorts
|
|||||||
libpcre
|
libpcre
|
||||||
libpng
|
libpng
|
||||||
libsolv
|
libsolv
|
||||||
|
libffi
|
||||||
# libtheora
|
# libtheora
|
||||||
libtool
|
libtool
|
||||||
# libvorbis
|
# libvorbis
|
||||||
|
|||||||
@@ -3,22 +3,22 @@ RemotePackageRepository HaikuPorts
|
|||||||
: https://eu.hpkg.haiku-os.org/haikuports/master/build-packages
|
: https://eu.hpkg.haiku-os.org/haikuports/master/build-packages
|
||||||
:
|
:
|
||||||
# architecture "any" packages
|
# architecture "any" packages
|
||||||
be_book-2008_10_26-3
|
be_book-2008_10_26-4
|
||||||
ca_root_certificates-2021_07_05-1
|
ca_root_certificates-2021_07_05-1
|
||||||
haikuporter-1.2.5-1
|
haikuporter-1.2.5-1
|
||||||
noto-20200106-1
|
noto-20200106-1
|
||||||
noto_sans_cjk_jp-1.004-2
|
noto_sans_cjk_jp-1.004-2
|
||||||
timgmsoundfont-fixed-5
|
timgmsoundfont-fixed-5
|
||||||
wqy_microhei-0.2.0~beta-4
|
wqy_microhei-0.2.0~beta-4
|
||||||
intel_wifi_firmwares-2019_11_02-1
|
intel_wifi_firmwares-2022_01_11-2
|
||||||
realtek_wifi_firmwares-2019_01_02-1
|
realtek_wifi_firmwares-2019_01_02-1
|
||||||
ralink_wifi_firmwares-2015_02_11-1
|
ralink_wifi_firmwares-2015_02_11-2
|
||||||
:
|
:
|
||||||
# repository architecture packages
|
# repository architecture packages
|
||||||
# primary architecture (x86_64)
|
# primary architecture (x86_64)
|
||||||
autoconf-2.69-8
|
autoconf-2.71-1
|
||||||
automake-1.16.5-1
|
automake-1.16.5-1
|
||||||
bash-5.1.008-1
|
bash-5.1.016-1
|
||||||
bc-1.07.1-2
|
bc-1.07.1-2
|
||||||
bepdf-2.1.4-2
|
bepdf-2.1.4-2
|
||||||
binutils-2.31.1-2
|
binutils-2.31.1-2
|
||||||
@@ -29,59 +29,59 @@ RemotePackageRepository HaikuPorts
|
|||||||
cdrtools_devel-3.02~a09-2
|
cdrtools_devel-3.02~a09-2
|
||||||
coreutils-9.0-6
|
coreutils-9.0-6
|
||||||
ctags-5.8-5
|
ctags-5.8-5
|
||||||
curl-7.79.1-1
|
curl-7.82.0-1
|
||||||
curl_devel-7.79.1-1
|
curl_devel-7.82.0-1
|
||||||
dav1d-0.9.2-1
|
dav1d-1.0.0-1
|
||||||
dav1d_devel-0.9.2-1
|
dav1d_devel-1.0.0-1
|
||||||
diffutils-3.7-1
|
diffutils-3.8-1
|
||||||
enca-1.19-2
|
enca-1.19-2
|
||||||
enca_devel-1.19-2
|
enca_devel-1.19-2
|
||||||
expat-2.4.1-1
|
expat-2.4.6-1
|
||||||
expat_devel-2.4.1-1
|
expat_devel-2.4.6-1
|
||||||
fdk_aac-2.0.2-1
|
fdk_aac-2.0.2-2
|
||||||
ffmpeg-4.2.2-9
|
ffmpeg-4.2.2-10
|
||||||
ffmpeg_devel-4.2.2-9
|
ffmpeg_devel-4.2.2-10
|
||||||
file-5.41-1
|
file-5.41-1
|
||||||
file_data-5.41-1
|
file_data-5.41-1
|
||||||
findutils-4.8.0-1
|
findutils-4.8.0-1
|
||||||
flex-2.6.4-2
|
flex-2.6.4-2
|
||||||
fluidlite-1.0.0-3
|
fluidlite-1.0.9-1
|
||||||
fluidlite_devel-1.0.0-3
|
fluidlite_devel-1.0.9-1
|
||||||
fontconfig-2.13.92-1
|
fontconfig-2.13.92-1
|
||||||
fontconfig_devel-2.13.92-1
|
fontconfig_devel-2.13.92-1
|
||||||
freetype-2.11.0-2
|
freetype-2.11.1-2
|
||||||
freetype_devel-2.11.0-2
|
freetype_devel-2.11.1-2
|
||||||
fribidi-1.0.11-1
|
fribidi-1.0.11-1
|
||||||
fribidi_devel-1.0.11-1
|
fribidi_devel-1.0.11-1
|
||||||
game_music_emu-0.6.3-1
|
game_music_emu-0.6.3-1
|
||||||
game_music_emu_devel-0.6.3-1
|
game_music_emu_devel-0.6.3-1
|
||||||
gettext-0.19.8.1-7
|
gettext-0.19.8.1-7
|
||||||
gettext_libintl-0.19.8.1-7
|
gettext_libintl-0.19.8.1-7
|
||||||
gcc-11.2.0_2021_07_28-5
|
gcc-11.2.0_2021_07_28-8
|
||||||
gcc_syslibs-11.2.0_2021_07_28-5
|
gcc_syslibs-11.2.0_2021_07_28-8
|
||||||
gcc_syslibs_devel-11.2.0_2021_07_28-5
|
gcc_syslibs_devel-11.2.0_2021_07_28-8
|
||||||
giflib-5.2.1-1
|
giflib-5.2.1-1
|
||||||
giflib_devel-5.2.1-1
|
giflib_devel-5.2.1-1
|
||||||
git-2.30.2-3
|
git-2.36.1-1
|
||||||
git_arch-2.30.2-3
|
git_arch-2.36.1-1
|
||||||
git_cvs-2.30.2-3
|
git_cvs-2.36.1-1
|
||||||
git_daemon-2.30.2-3
|
git_daemon-2.36.1-1
|
||||||
git_email-2.30.2-3
|
git_email-2.36.1-1
|
||||||
git_svn-2.30.2-3
|
git_svn-2.36.1-1
|
||||||
glu-9.0.0-7
|
glu-9.0.0-7
|
||||||
glu_devel-9.0.0-7
|
glu_devel-9.0.0-7
|
||||||
gmp-6.2.1-2
|
gmp-6.2.1-2
|
||||||
graphite2-1.3.14-1
|
graphite2-1.3.14-1
|
||||||
graphite2_devel-1.3.14-1
|
graphite2_devel-1.3.14-1
|
||||||
grep-3.6-2
|
grep-3.7-1
|
||||||
groff-1.22.4-1
|
groff-1.22.4-1
|
||||||
gutenprint8-5.3.1-2
|
gutenprint8-5.3.1-2
|
||||||
gutenprint8_devel-5.3.1-2
|
gutenprint8_devel-5.3.1-2
|
||||||
gzip-1.10-1
|
gzip-1.11-1
|
||||||
haikuwebkit-1.8.4-1
|
haikuwebkit-1.8.4-1
|
||||||
haikuwebkit_devel-1.8.4-1
|
haikuwebkit_devel-1.8.4-1
|
||||||
harfbuzz-2.8.1-1
|
harfbuzz-3.4.0-1
|
||||||
harfbuzz_devel-2.8.1-1
|
harfbuzz_devel-3.4.0-1
|
||||||
icu66-66.1-2
|
icu66-66.1-2
|
||||||
icu66_devel-66.1-2
|
icu66_devel-66.1-2
|
||||||
jam-2.5_2018_11_21-8
|
jam-2.5_2018_11_21-8
|
||||||
@@ -93,84 +93,84 @@ RemotePackageRepository HaikuPorts
|
|||||||
lcms-2.12-1
|
lcms-2.12-1
|
||||||
lcms_devel-2.12-1
|
lcms_devel-2.12-1
|
||||||
less-581.2-1
|
less-581.2-1
|
||||||
libass-0.15.1-1
|
libass-0.15.2-1
|
||||||
libass_devel-0.15.1-1
|
libass_devel-0.15.2-1
|
||||||
libavif-0.8.4-2
|
libavif-0.9.3-2
|
||||||
libavif_devel-0.8.4-2
|
libavif_devel-0.9.3-2
|
||||||
libbluray-1.3.0-1
|
libbluray-1.3.1-1
|
||||||
libbluray_devel-1.3.0-1
|
libbluray_devel-1.3.1-1
|
||||||
libdvdnav-6.1.1-1
|
libdvdnav-6.1.1-1
|
||||||
libdvdnav_devel-6.1.1-1
|
libdvdnav_devel-6.1.1-1
|
||||||
libdvdread-6.1.2-1
|
libdvdread-6.1.2-1
|
||||||
libdvdread_devel-6.1.2-1
|
libdvdread_devel-6.1.2-1
|
||||||
libedit-20210419_3.1-1
|
libedit-20210910_3.1-2
|
||||||
libedit_devel-20210419_3.1-1
|
libedit_devel-20210910_3.1-2
|
||||||
libexecinfo-1.1-5
|
libexecinfo-1.1-5
|
||||||
libffi-3.4.2-1
|
libffi-3.4.2-1
|
||||||
libgcrypt-1.8.5-1
|
libgcrypt-1.8.9-1
|
||||||
libgpg_error-1.36-2
|
libgpg_error-1.36-2
|
||||||
libiconv-1.16-1
|
libiconv-1.16-1
|
||||||
libicns-0.8.1-8
|
libicns-0.8.1-8
|
||||||
libicns_devel-0.8.1-8
|
libicns_devel-0.8.1-8
|
||||||
libidn2-2.0.5-2
|
libidn2-2.0.5-2
|
||||||
libjpeg_turbo-2.1.1-1
|
libjpeg_turbo-2.1.3-1
|
||||||
libjpeg_turbo_devel-2.1.1-1
|
libjpeg_turbo_devel-2.1.3-1
|
||||||
libmodplug-0.8.9.0-1
|
libmodplug-0.8.9.0-1
|
||||||
libogg-1.3.5-1
|
libogg-1.3.5-1
|
||||||
libogg_devel-1.3.5-1
|
libogg_devel-1.3.5-1
|
||||||
libopenmpt-0.5.13-1
|
libopenmpt-0.6.2-1
|
||||||
libopenmpt_devel-0.5.13-1
|
libopenmpt_devel-0.6.2-1
|
||||||
libpcap-1.8.1-4
|
libpcap-1.8.1-4
|
||||||
libpcap_devel-1.8.1-4
|
libpcap_devel-1.8.1-4
|
||||||
libpcre2-10.37-1
|
libpcre2-10.39-1
|
||||||
libpcre-8.45-1
|
libpcre-8.45-2
|
||||||
libpcre_devel-8.45-1
|
libpcre_devel-8.45-2
|
||||||
libpng16-1.6.37-1
|
libpng16-1.6.37-2
|
||||||
libpng16_devel-1.6.37-1
|
libpng16_devel-1.6.37-2
|
||||||
libpsl-0.21.0-1
|
libpsl-0.21.1-1
|
||||||
libpsl_devel-0.21.0-1
|
libpsl_devel-0.21.1-1
|
||||||
libraw-0.19.5-3
|
libraw-0.20.2-1
|
||||||
libraw_devel-0.19.5-3
|
libraw_devel-0.20.2-1
|
||||||
libsolv-0.3.0_haiku_2014_12_22-3
|
libsolv-0.3.0_haiku_2014_12_22-3
|
||||||
libsolv_devel-0.3.0_haiku_2014_12_22-3
|
libsolv_devel-0.3.0_haiku_2014_12_22-3
|
||||||
libssh2-1.9.0-2
|
libssh2-1.9.0-2
|
||||||
libssh2_devel-1.9.0-2
|
libssh2_devel-1.9.0-2
|
||||||
libtasn1-4.17.0-1
|
libtasn1-4.18.0-1
|
||||||
libtheora-1.1.1-7
|
libtheora-1.1.1-7
|
||||||
libtheora_devel-1.1.1-7
|
libtheora_devel-1.1.1-7
|
||||||
libtool-2.4.6-2
|
libtool-2.4.6-2
|
||||||
libunistring-0.9.10-1
|
libunistring-0.9.10-1
|
||||||
libvorbis-1.3.7-1
|
libvorbis-1.3.7-1
|
||||||
libvorbis_devel-1.3.7-1
|
libvorbis_devel-1.3.7-1
|
||||||
libvpx-1.10.0-1
|
libvpx-1.11.0-2
|
||||||
libvpx_devel-1.10.0-1
|
libvpx_devel-1.11.0-2
|
||||||
libuuid-1.3.1-4
|
libuuid-1.3.1-4
|
||||||
libwebp-1.2.1-1
|
libwebp-1.2.2-1
|
||||||
libwebp_devel-1.2.1-1
|
libwebp_devel-1.2.2-1
|
||||||
libxml2-2.9.12-1
|
libxml2-2.9.13-1
|
||||||
libxml2_devel-2.9.12-1
|
libxml2_devel-2.9.13-1
|
||||||
libxslt-1.1.34-3
|
libxslt-1.1.34-4
|
||||||
live555-2016.06.22-5
|
live555-2016.06.22-5
|
||||||
live555_devel-2016.06.22-5
|
live555_devel-2016.06.22-5
|
||||||
llvm9-9.0.1-2
|
llvm9-9.0.1-2
|
||||||
llvm9_libs-9.0.1-2
|
llvm9_libs-9.0.1-2
|
||||||
m4-1.4.18-3
|
m4-1.4.19-1
|
||||||
make-4.1-4
|
make-4.1-5
|
||||||
mandoc-1.14.3-2
|
mandoc-1.14.3-2
|
||||||
mawk-1.3.4_20171017-1
|
mawk-1.3.4_20171017-1
|
||||||
mercurial-4.9.1-1
|
mercurial-6.0.1-1
|
||||||
mesa-21.2.3-2
|
mesa-21.3.7-1
|
||||||
mesa_devel-21.2.3-2
|
mesa_devel-21.3.7-1
|
||||||
mesa_swpipe-21.2.3-2
|
mesa_swpipe-21.3.7-1
|
||||||
mkdepend-1.7-5
|
mkdepend-1.7-5
|
||||||
mpc-1.2.1-1
|
mpc-1.2.1-1
|
||||||
mpfr-4.1.0-1
|
mpfr-4.1.0-1
|
||||||
nano-5.9-1
|
nano-6.2-1
|
||||||
nasm-2.14.02-2
|
nasm-2.14.02-2
|
||||||
ncurses6-6.2-1
|
ncurses6-6.3-1
|
||||||
ncurses6_devel-6.2-1
|
ncurses6_devel-6.3-1
|
||||||
netcat-1.10-4
|
netcat-1.10-4
|
||||||
nettle-3.7-1
|
nettle-3.7.3-1
|
||||||
nghttp2-1.43.0-1
|
nghttp2-1.43.0-1
|
||||||
nghttp2_devel-1.43.0-1
|
nghttp2_devel-1.43.0-1
|
||||||
openexr-2.4.1-1
|
openexr-2.4.1-1
|
||||||
@@ -178,24 +178,24 @@ RemotePackageRepository HaikuPorts
|
|||||||
openjpeg-2.4.0-1
|
openjpeg-2.4.0-1
|
||||||
openjpeg_devel-2.4.0-1
|
openjpeg_devel-2.4.0-1
|
||||||
openssh-8.8p1-1
|
openssh-8.8p1-1
|
||||||
openssl-1.1.1l-1
|
openssl-1.1.1n-1
|
||||||
openssl_devel-1.1.1l-1
|
openssl_devel-1.1.1n-1
|
||||||
opus-1.3.1-1
|
opus-1.3.1-1
|
||||||
opus_devel-1.3.1-1
|
opus_devel-1.3.1-1
|
||||||
p7zip-17.04-2
|
p7zip-17.04-2
|
||||||
patch-2.7.6-2
|
patch-2.7.6-2
|
||||||
pdflib-5.0.3-4
|
pdflib-5.0.3-4
|
||||||
pdfwriter-1.0-4
|
pdfwriter-1.0-4
|
||||||
pe-2.4.5-8
|
pe-2.4.5-9
|
||||||
perl-5.32.1-1
|
perl-5.32.1-1
|
||||||
pkgconfig-0.29.2-4
|
pkgconfig-0.29.2-4
|
||||||
python3-3.7.12-1
|
python3-3.7.12-3
|
||||||
qrencode_kdl_devel-3.4.4-2
|
qrencode_kdl_devel-3.4.4-2
|
||||||
readline-8.1-1
|
readline-8.1.002-1
|
||||||
sed-4.8-1
|
sed-4.8-1
|
||||||
sharutils-4.15.2-3
|
sharutils-4.15.2-3
|
||||||
snappy-1.1.8-1
|
snappy-1.1.9-1
|
||||||
snappy_devel-1.1.8-1
|
snappy_devel-1.1.9-1
|
||||||
soxr-0.1.3-1
|
soxr-0.1.3-1
|
||||||
soxr_devel-0.1.3-1
|
soxr_devel-0.1.3-1
|
||||||
speex-1.2.0-4
|
speex-1.2.0-4
|
||||||
@@ -217,15 +217,15 @@ RemotePackageRepository HaikuPorts
|
|||||||
wavpack_devel-5.4.0-1
|
wavpack_devel-5.4.0-1
|
||||||
wget-1.21.1-1
|
wget-1.21.1-1
|
||||||
which-2.21-6
|
which-2.21-6
|
||||||
wpa_supplicant-2.9.haiku.1-3
|
wpa_supplicant-2.10.haiku.1-1
|
||||||
xz_utils-5.2.5-1
|
xz_utils-5.2.5-1
|
||||||
xz_utils_devel-5.2.5-1
|
xz_utils_devel-5.2.5-1
|
||||||
zip-3.0-4
|
zip-3.0-4
|
||||||
zlib-1.2.11-4
|
zlib-1.2.12-1
|
||||||
zlib_devel-1.2.11-4
|
zlib_devel-1.2.12-1
|
||||||
zstd-1.5.0-2
|
zstd-1.5.2-1
|
||||||
zstd_bin-1.5.0-2
|
zstd_bin-1.5.2-1
|
||||||
zstd_devel-1.5.0-2
|
zstd_devel-1.5.2-1
|
||||||
:
|
:
|
||||||
# source packages
|
# source packages
|
||||||
autoconf
|
autoconf
|
||||||
|
|||||||
@@ -3,22 +3,22 @@ RemotePackageRepository HaikuPorts
|
|||||||
: https://eu.hpkg.haiku-os.org/haikuports/master/build-packages
|
: https://eu.hpkg.haiku-os.org/haikuports/master/build-packages
|
||||||
:
|
:
|
||||||
# architecture "any" packages
|
# architecture "any" packages
|
||||||
be_book-2008_10_26-3
|
be_book-2008_10_26-4
|
||||||
ca_root_certificates-2021_07_05-1
|
ca_root_certificates-2021_07_05-1
|
||||||
haikuporter-1.2.5-1
|
haikuporter-1.2.5-1
|
||||||
noto-20200106-1
|
noto-20200106-1
|
||||||
noto_sans_cjk_jp-1.004-2
|
noto_sans_cjk_jp-1.004-2
|
||||||
timgmsoundfont-fixed-5
|
timgmsoundfont-fixed-5
|
||||||
wqy_microhei-0.2.0~beta-4
|
wqy_microhei-0.2.0~beta-4
|
||||||
intel_wifi_firmwares-2019_11_02-1
|
intel_wifi_firmwares-2022_01_11-2
|
||||||
realtek_wifi_firmwares-2019_01_02-1
|
realtek_wifi_firmwares-2019_01_02-1
|
||||||
ralink_wifi_firmwares-2015_02_11-1
|
ralink_wifi_firmwares-2015_02_11-2
|
||||||
:
|
:
|
||||||
# repository architecture packages
|
# repository architecture packages
|
||||||
# primary architecture (x86_gcc2)
|
# primary architecture (x86_gcc2)
|
||||||
autoconf-2.69-8
|
autoconf-2.71-1
|
||||||
automake-1.16.5-1
|
automake-1.16.5-1
|
||||||
bash-5.1.008-1
|
bash-5.1.016-1
|
||||||
bc-1.07.1-2
|
bc-1.07.1-2
|
||||||
bepdf-2.1.4-2
|
bepdf-2.1.4-2
|
||||||
binutils-2.17_2016_07_24-4
|
binutils-2.17_2016_07_24-4
|
||||||
@@ -28,22 +28,22 @@ RemotePackageRepository HaikuPorts
|
|||||||
cdrtools-3.02~a09-2
|
cdrtools-3.02~a09-2
|
||||||
cdrtools_devel-3.02~a09-2
|
cdrtools_devel-3.02~a09-2
|
||||||
ctags-5.8-5
|
ctags-5.8-5
|
||||||
curl-7.79.1-1
|
curl-7.82.0-1
|
||||||
curl_devel-7.79.1-1
|
curl_devel-7.82.0-1
|
||||||
diffutils-3.7-1
|
diffutils-3.7-1
|
||||||
expat-2.4.1-1
|
expat-2.4.6-1
|
||||||
expat_devel-2.4.1-1
|
expat_devel-2.4.6-1
|
||||||
ffmpeg-4.2.2-9
|
ffmpeg-4.2.2-10
|
||||||
ffmpeg_devel-4.2.2-9
|
ffmpeg_devel-4.2.2-10
|
||||||
file-5.41-1
|
file-5.41-1
|
||||||
file_data-5.41-1
|
file_data-5.41-1
|
||||||
findutils-4.6.0-1
|
findutils-4.6.0-1
|
||||||
flex-2.6.4-2
|
flex-2.6.4-2
|
||||||
fluidlite_devel-1.0.0-3
|
fluidlite_devel-1.0.9-1
|
||||||
fontconfig-2.13.92-1
|
fontconfig-2.13.92-1
|
||||||
fontconfig_devel-2.13.92-1
|
fontconfig_devel-2.13.92-1
|
||||||
freetype-2.11.0-2
|
freetype-2.11.1-3
|
||||||
freetype_devel-2.11.0-2
|
freetype_devel-2.11.1-3
|
||||||
gettext_libintl-0.19.8.1-7
|
gettext_libintl-0.19.8.1-7
|
||||||
gcc-2.95.3_2017_07_20-2
|
gcc-2.95.3_2017_07_20-2
|
||||||
gcc_syslibs_devel-2.95.3_2017_07_20-2
|
gcc_syslibs_devel-2.95.3_2017_07_20-2
|
||||||
@@ -58,7 +58,7 @@ RemotePackageRepository HaikuPorts
|
|||||||
groff-1.20.1-4
|
groff-1.20.1-4
|
||||||
gutenprint8-5.3.1-2
|
gutenprint8-5.3.1-2
|
||||||
gutenprint8_devel-5.3.1-2
|
gutenprint8_devel-5.3.1-2
|
||||||
gzip-1.10-1
|
gzip-1.11-1
|
||||||
icu-57.2-3
|
icu-57.2-3
|
||||||
icu_devel-57.2-3
|
icu_devel-57.2-3
|
||||||
jam-2.5_2018_11_21-8
|
jam-2.5_2018_11_21-8
|
||||||
@@ -68,26 +68,26 @@ RemotePackageRepository HaikuPorts
|
|||||||
lame-3.100-3
|
lame-3.100-3
|
||||||
lame_devel-3.100-3
|
lame_devel-3.100-3
|
||||||
less-581.2-1
|
less-581.2-1
|
||||||
libedit-20210419_3.1-1
|
libedit-20210910_3.1-2
|
||||||
libedit_devel-20210419_3.1-1
|
libedit_devel-20210910_3.1-2
|
||||||
libffi-3.0.13-3
|
libffi-3.0.13-3
|
||||||
libiconv-1.16-1
|
libiconv-1.16-1
|
||||||
libicns-0.8.1-8
|
libicns-0.8.1-8
|
||||||
libicns_devel-0.8.1-8
|
libicns_devel-0.8.1-8
|
||||||
libjpeg_turbo-2.1.1-1
|
libjpeg_turbo-2.1.3-1
|
||||||
libjpeg_turbo_devel-2.1.1-1
|
libjpeg_turbo_devel-2.1.3-1
|
||||||
liblayout-1.4.1-8
|
liblayout-1.4.1-8
|
||||||
libmodplug-0.8.9.0-1
|
libmodplug-0.8.9.0-1
|
||||||
libogg-1.3.5-1
|
libogg-1.3.5-1
|
||||||
libogg_devel-1.3.5-1
|
libogg_devel-1.3.5-1
|
||||||
libpcap-1.8.1-4
|
libpcap-1.8.1-4
|
||||||
libpcap_devel-1.8.1-4
|
libpcap_devel-1.8.1-4
|
||||||
libpcre-8.45-1
|
libpcre-8.45-2
|
||||||
libpcre2-10.37-1
|
libpcre2-10.39-1
|
||||||
libpng16-1.6.37-1
|
libpng16-1.6.37-2
|
||||||
libpng16_devel-1.6.37-1
|
libpng16_devel-1.6.37-2
|
||||||
libpsl-0.21.0-1
|
libpsl-0.21.1-1
|
||||||
libpsl_devel-0.21.0-1
|
libpsl_devel-0.21.1-1
|
||||||
libsolv-0.3.0_haiku_2014_12_22-3
|
libsolv-0.3.0_haiku_2014_12_22-3
|
||||||
libsolv_devel-0.3.0_haiku_2014_12_22-3
|
libsolv_devel-0.3.0_haiku_2014_12_22-3
|
||||||
libssh2-1.9.0-2
|
libssh2-1.9.0-2
|
||||||
@@ -99,21 +99,20 @@ RemotePackageRepository HaikuPorts
|
|||||||
libvorbis-1.3.7-1
|
libvorbis-1.3.7-1
|
||||||
libvorbis_devel-1.3.7-1
|
libvorbis_devel-1.3.7-1
|
||||||
libvpx-1.0.0-2
|
libvpx-1.0.0-2
|
||||||
libwebp-1.2.1-1
|
libwebp-1.2.2-1
|
||||||
libwebp_devel-1.2.1-1
|
libwebp_devel-1.2.2-1
|
||||||
libxml2-2.9.12-1
|
libxml2-2.9.13-1
|
||||||
libxml2_devel-2.9.12-1
|
libxml2_devel-2.9.13-1
|
||||||
live555-2016.06.22-5
|
live555-2016.06.22-5
|
||||||
live555_devel-2016.06.22-5
|
live555_devel-2016.06.22-5
|
||||||
m4-1.4.18-3
|
make-4.1-5
|
||||||
make-4.1-4
|
|
||||||
mandoc-1.14.3-2
|
mandoc-1.14.3-2
|
||||||
mesa-7.9.2-11
|
mesa-7.9.2-11
|
||||||
mesa_devel-7.9.2-11
|
mesa_devel-7.9.2-11
|
||||||
mesa_swrast-7.9.2-11
|
mesa_swrast-7.9.2-11
|
||||||
mkdepend-1.7-5
|
mkdepend-1.7-5
|
||||||
ncurses6-6.2-1
|
ncurses6-6.3-1
|
||||||
ncurses6_devel-6.2-1
|
ncurses6_devel-6.3-1
|
||||||
netcat-1.10-4
|
netcat-1.10-4
|
||||||
nghttp2-1.43.0-1
|
nghttp2-1.43.0-1
|
||||||
openexr-2.2.1-3
|
openexr-2.2.1-3
|
||||||
@@ -121,18 +120,18 @@ RemotePackageRepository HaikuPorts
|
|||||||
openjpeg-2.1.2-3
|
openjpeg-2.1.2-3
|
||||||
openjpeg_devel-2.1.2-3
|
openjpeg_devel-2.1.2-3
|
||||||
openssh-8.8p1-1
|
openssh-8.8p1-1
|
||||||
openssl-1.1.1l-1
|
openssl-1.1.1n-1
|
||||||
openssl_devel-1.1.1l-1
|
openssl_devel-1.1.1n-1
|
||||||
opus-1.3.1-1
|
opus-1.3.1-1
|
||||||
opus_devel-1.3.1-1
|
opus_devel-1.3.1-1
|
||||||
patch-2.7.5-3
|
patch-2.7.5-3
|
||||||
pdflib-5.0.3-4
|
pdflib-5.0.3-4
|
||||||
pdfwriter-1.0-4
|
pdfwriter-1.0-4
|
||||||
pe-2.4.5-8
|
pe-2.4.5-9
|
||||||
perl-5.32.1-1
|
perl-5.32.1-1
|
||||||
pkgconfig-0.29.2-4
|
pkgconfig-0.29.2-4
|
||||||
qrencode_kdl_devel-3.4.4-2
|
qrencode_kdl_devel-3.4.4-2
|
||||||
readline-8.1-1
|
readline-8.1.002-1
|
||||||
sed-4.2.1-6
|
sed-4.2.1-6
|
||||||
sharutils-4.15.2-3
|
sharutils-4.15.2-3
|
||||||
speex-1.2.0-4
|
speex-1.2.0-4
|
||||||
@@ -150,43 +149,43 @@ RemotePackageRepository HaikuPorts
|
|||||||
wget-1.21.1-1
|
wget-1.21.1-1
|
||||||
which-2.21-6
|
which-2.21-6
|
||||||
wonderbrush-2.1.2-11
|
wonderbrush-2.1.2-11
|
||||||
wpa_supplicant-2.9.haiku.1-3
|
wpa_supplicant-2.10.haiku.1-1
|
||||||
zip-3.0-4
|
zip-3.0-4
|
||||||
zlib-1.2.11-4
|
zlib-1.2.12-1
|
||||||
zlib_devel-1.2.11-4
|
zlib_devel-1.2.12-1
|
||||||
zstd-1.5.0-2
|
zstd-1.5.2-1
|
||||||
zstd_devel-1.5.0-2
|
zstd_devel-1.5.2-1
|
||||||
# secondary architecture (x86)
|
# secondary architecture (x86)
|
||||||
binutils_x86-2.26.1_2016_07_22-6
|
binutils_x86-2.36.1_btrev43189-1
|
||||||
bison_x86-3.8.2-1
|
bison_x86-3.8.2-1
|
||||||
bzip2_x86-1.0.8-1
|
bzip2_x86-1.0.8-1
|
||||||
bzip2_x86_devel-1.0.8-1
|
bzip2_x86_devel-1.0.8-1
|
||||||
cdrtools_x86-3.02~a09-2
|
cdrtools_x86-3.02~a09-2
|
||||||
cdrtools_x86_devel-3.02~a09-2
|
cdrtools_x86_devel-3.02~a09-2
|
||||||
coreutils_x86-9.0-6
|
coreutils_x86-9.0-6
|
||||||
curl_x86-7.79.1-1
|
curl_x86-7.82.0-1
|
||||||
curl_x86_devel-7.79.1-1
|
curl_x86_devel-7.82.0-1
|
||||||
dav1d_x86-0.9.2-1
|
dav1d_x86-1.0.0-1
|
||||||
dav1d_x86_devel-0.9.2-1
|
dav1d_x86_devel-1.0.0-1
|
||||||
enca_x86-1.19-2
|
enca_x86-1.19-2
|
||||||
enca_x86_devel-1.19-2
|
enca_x86_devel-1.19-2
|
||||||
expat_x86-2.4.1-1
|
expat_x86-2.4.6-1
|
||||||
expat_x86_devel-2.4.1-1
|
expat_x86_devel-2.4.6-1
|
||||||
fdk_aac_x86-2.0.2-1
|
fdk_aac_x86-2.0.2-2
|
||||||
ffmpeg_x86-4.2.2-9
|
ffmpeg_x86-4.2.2-10
|
||||||
ffmpeg_x86_devel-4.2.2-9
|
ffmpeg_x86_devel-4.2.2-10
|
||||||
fluidlite_x86_devel-1.0.0-3
|
fluidlite_x86_devel-1.0.9-1
|
||||||
fontconfig_x86-2.13.92-1
|
fontconfig_x86-2.13.92-1
|
||||||
fontconfig_x86_devel-2.13.92-1
|
fontconfig_x86_devel-2.13.92-1
|
||||||
freetype_x86-2.11.0-2
|
freetype_x86-2.11.1-3
|
||||||
freetype_x86_devel-2.11.0-2
|
freetype_x86_devel-2.11.1-3
|
||||||
fribidi_x86-1.0.11-1
|
fribidi_x86-1.0.11-1
|
||||||
fribidi_x86_devel-1.0.11-1
|
fribidi_x86_devel-1.0.11-1
|
||||||
game_music_emu_x86-0.6.3-1
|
game_music_emu_x86-0.6.3-1
|
||||||
game_music_emu_x86_devel-0.6.3-1
|
game_music_emu_x86_devel-0.6.3-1
|
||||||
gcc_x86-11.2.0_2021_07_28-5
|
gcc_x86-11.2.0_2021_07_28-8
|
||||||
gcc_x86_syslibs-11.2.0_2021_07_28-5
|
gcc_x86_syslibs-11.2.0_2021_07_28-8
|
||||||
gcc_x86_syslibs_devel-11.2.0_2021_07_28-5
|
gcc_x86_syslibs_devel-11.2.0_2021_07_28-8
|
||||||
gettext_x86-0.19.8.1-7
|
gettext_x86-0.19.8.1-7
|
||||||
gettext_x86_libintl-0.19.8.1-7
|
gettext_x86_libintl-0.19.8.1-7
|
||||||
giflib_x86-5.2.1-1
|
giflib_x86-5.2.1-1
|
||||||
@@ -196,11 +195,11 @@ RemotePackageRepository HaikuPorts
|
|||||||
gmp_x86-6.2.1-2
|
gmp_x86-6.2.1-2
|
||||||
graphite2_x86-1.3.14-1
|
graphite2_x86-1.3.14-1
|
||||||
graphite2_x86_devel-1.3.14-1
|
graphite2_x86_devel-1.3.14-1
|
||||||
grep_x86-3.6-2
|
grep_x86-3.7-1
|
||||||
haikuwebkit_x86-1.8.4-1
|
haikuwebkit_x86-1.8.4-1
|
||||||
haikuwebkit_x86_devel-1.8.4-1
|
haikuwebkit_x86_devel-1.8.4-1
|
||||||
harfbuzz_x86-2.8.1-1
|
harfbuzz_x86-3.4.0-1
|
||||||
harfbuzz_x86_devel-2.8.1-1
|
harfbuzz_x86_devel-3.4.0-1
|
||||||
icu66_x86-66.1-2
|
icu66_x86-66.1-2
|
||||||
icu66_x86_devel-66.1-2
|
icu66_x86_devel-66.1-2
|
||||||
jasper_x86-2.0.16-4
|
jasper_x86-2.0.16-4
|
||||||
@@ -209,38 +208,38 @@ RemotePackageRepository HaikuPorts
|
|||||||
lame_x86_devel-3.100-3
|
lame_x86_devel-3.100-3
|
||||||
lcms_x86-2.12-1
|
lcms_x86-2.12-1
|
||||||
lcms_x86_devel-2.12-1
|
lcms_x86_devel-2.12-1
|
||||||
libass_x86-0.15.1-1
|
libass_x86-0.15.2-1
|
||||||
libass_x86_devel-0.15.1-1
|
libass_x86_devel-0.15.2-1
|
||||||
libavif_x86-0.8.4-2
|
libavif_x86-0.9.3-2
|
||||||
libavif_x86_devel-0.8.4-2
|
libavif_x86_devel-0.9.3-2
|
||||||
libedit_x86-20210419_3.1-1
|
libedit_x86-20210910_3.1-2
|
||||||
libedit_x86_devel-20210419_3.1-1
|
libedit_x86_devel-20210910_3.1-2
|
||||||
libexecinfo_x86-1.1-5
|
libexecinfo_x86-1.1-5
|
||||||
libffi_x86-3.4.2-1
|
libffi_x86-3.4.2-1
|
||||||
libffi_x86_devel-3.4.2-1
|
libffi_x86_devel-3.4.2-1
|
||||||
libgcrypt_x86-1.8.5-1
|
libgcrypt_x86-1.8.9-1
|
||||||
libgpg_error_x86-1.36-2
|
libgpg_error_x86-1.36-2
|
||||||
libiconv_x86-1.16-1
|
libiconv_x86-1.16-1
|
||||||
libiconv_x86_devel-1.16-1
|
libiconv_x86_devel-1.16-1
|
||||||
libicns_x86-0.8.1-8
|
libicns_x86-0.8.1-8
|
||||||
libicns_x86_devel-0.8.1-8
|
libicns_x86_devel-0.8.1-8
|
||||||
libidn2_x86-2.0.5-2
|
libidn2_x86-2.0.5-2
|
||||||
libjpeg_turbo_x86-2.1.1-1
|
libjpeg_turbo_x86-2.1.3-1
|
||||||
libjpeg_turbo_x86_devel-2.1.1-1
|
libjpeg_turbo_x86_devel-2.1.3-1
|
||||||
libmodplug_x86-0.8.9.0-1
|
libmodplug_x86-0.8.9.0-1
|
||||||
libogg_x86-1.3.5-1
|
libogg_x86-1.3.5-1
|
||||||
libogg_x86_devel-1.3.5-1
|
libogg_x86_devel-1.3.5-1
|
||||||
libopenmpt_x86-0.5.13-1
|
libopenmpt_x86-0.6.2-1
|
||||||
libopenmpt_x86_devel-0.5.13-1
|
libopenmpt_x86_devel-0.6.2-1
|
||||||
libpcre_x86-8.45-1
|
libpcre_x86-8.45-2
|
||||||
libpcre_x86_devel-8.45-1
|
libpcre_x86_devel-8.45-2
|
||||||
libpng16_x86-1.6.37-1
|
libpng16_x86-1.6.37-2
|
||||||
libpng16_x86_devel-1.6.37-1
|
libpng16_x86_devel-1.6.37-2
|
||||||
libsolv_x86-0.3.0_haiku_2014_12_22-3
|
libsolv_x86-0.3.0_haiku_2014_12_22-3
|
||||||
libsolv_x86_devel-0.3.0_haiku_2014_12_22-3
|
libsolv_x86_devel-0.3.0_haiku_2014_12_22-3
|
||||||
libssh2_x86-1.9.0-2
|
libssh2_x86-1.9.0-2
|
||||||
libssh2_x86_devel-1.9.0-2
|
libssh2_x86_devel-1.9.0-2
|
||||||
libtasn1_x86-4.17.0-1
|
libtasn1_x86-4.18.0-1
|
||||||
libtheora_x86-1.1.1-7
|
libtheora_x86-1.1.1-7
|
||||||
libtheora_x86_devel-1.1.1-7
|
libtheora_x86_devel-1.1.1-7
|
||||||
libtool_x86-2.4.6-2
|
libtool_x86-2.4.6-2
|
||||||
@@ -248,42 +247,43 @@ RemotePackageRepository HaikuPorts
|
|||||||
libunistring_x86-0.9.10-1
|
libunistring_x86-0.9.10-1
|
||||||
libvorbis_x86-1.3.7-1
|
libvorbis_x86-1.3.7-1
|
||||||
libvorbis_x86_devel-1.3.7-1
|
libvorbis_x86_devel-1.3.7-1
|
||||||
libvpx_x86-1.10.0-1
|
libvpx_x86-1.11.0-2
|
||||||
libvpx_x86_devel-1.10.0-1
|
libvpx_x86_devel-1.11.0-2
|
||||||
libwebp_x86-1.2.1-1
|
libwebp_x86-1.2.2-1
|
||||||
libwebp_x86_devel-1.2.1-1
|
libwebp_x86_devel-1.2.2-1
|
||||||
libxml2_x86-2.9.12-1
|
libxml2_x86-2.9.13-1
|
||||||
libxml2_x86_devel-2.9.12-1
|
libxml2_x86_devel-2.9.13-1
|
||||||
libxslt_x86-1.1.34-3
|
libxslt_x86-1.1.34-4
|
||||||
live555_x86-2016.06.22-5
|
live555_x86-2016.06.22-5
|
||||||
live555_x86_devel-2016.06.22-5
|
live555_x86_devel-2016.06.22-5
|
||||||
llvm9_x86_libs-9.0.1-2
|
llvm9_x86_libs-9.0.1-2
|
||||||
mesa_x86-21.2.3-2
|
m4_x86-1.4.19-1
|
||||||
mesa_x86_devel-21.2.3-2
|
mesa_x86-21.3.7-1
|
||||||
mesa_x86_swpipe-21.2.3-2
|
mesa_x86_devel-21.3.7-1
|
||||||
nano_x86-5.9-1
|
mesa_x86_swpipe-21.3.7-1
|
||||||
|
nano_x86-6.2-1
|
||||||
nasm_x86-2.14.02-2
|
nasm_x86-2.14.02-2
|
||||||
ncurses6_x86-6.2-1
|
ncurses6_x86-6.3-1
|
||||||
ncurses6_x86_devel-6.2-1
|
ncurses6_x86_devel-6.3-1
|
||||||
mawk-1.3.4_20171017-1
|
mawk-1.3.4_20171017-1
|
||||||
mpc_x86-1.2.1-1
|
mpc_x86-1.2.1-1
|
||||||
mpfr_x86-4.1.0-1
|
mpfr_x86-4.1.0-1
|
||||||
nettle_x86-3.7-1
|
nettle_x86-3.7.3-1
|
||||||
openexr_x86-2.4.1-1
|
openexr_x86-2.4.1-1
|
||||||
openexr_x86_devel-2.4.1-1
|
openexr_x86_devel-2.4.1-1
|
||||||
openjpeg_x86-2.4.0-1
|
openjpeg_x86-2.4.0-1
|
||||||
openjpeg_x86_devel-2.4.0-1
|
openjpeg_x86_devel-2.4.0-1
|
||||||
openssl_x86-1.1.1l-1
|
openssl_x86-1.1.1n-1
|
||||||
openssl_x86_devel-1.1.1l-1
|
openssl_x86_devel-1.1.1n-1
|
||||||
opus_x86-1.3.1-1
|
opus_x86-1.3.1-1
|
||||||
opus_x86_devel-1.3.1-1
|
opus_x86_devel-1.3.1-1
|
||||||
p7zip_x86-17.04-2
|
p7zip_x86-17.04-2
|
||||||
pkgconfig_x86-0.29.2-4
|
pkgconfig_x86-0.29.2-4
|
||||||
python3_x86-3.7.12-1
|
python3_x86-3.7.12-3
|
||||||
readline_x86-8.1-1
|
readline_x86-8.1.002-1
|
||||||
sharutils_x86-4.15.2-3
|
sharutils_x86-4.15.2-3
|
||||||
snappy_x86-1.1.8-1
|
snappy_x86-1.1.9-1
|
||||||
snappy_x86_devel-1.1.8-1
|
snappy_x86_devel-1.1.9-1
|
||||||
soxr_x86-0.1.3-1
|
soxr_x86-0.1.3-1
|
||||||
soxr_x86_devel-0.1.3-1
|
soxr_x86_devel-0.1.3-1
|
||||||
speex_x86-1.2.0-4
|
speex_x86-1.2.0-4
|
||||||
@@ -298,10 +298,10 @@ RemotePackageRepository HaikuPorts
|
|||||||
wavpack_x86_devel-5.4.0-1
|
wavpack_x86_devel-5.4.0-1
|
||||||
xz_utils_x86-5.2.5-1
|
xz_utils_x86-5.2.5-1
|
||||||
xz_utils_x86_devel-5.2.5-1
|
xz_utils_x86_devel-5.2.5-1
|
||||||
zlib_x86-1.2.11-4
|
zlib_x86-1.2.12-1
|
||||||
zlib_x86_devel-1.2.11-4
|
zlib_x86_devel-1.2.12-1
|
||||||
zstd_x86-1.5.0-2
|
zstd_x86-1.5.2-1
|
||||||
zstd_x86_devel-1.5.0-2
|
zstd_x86_devel-1.5.2-1
|
||||||
:
|
:
|
||||||
# source packages
|
# source packages
|
||||||
autoconf
|
autoconf
|
||||||
@@ -391,7 +391,7 @@ RemotePackageRepository HaikuPorts
|
|||||||
libxslt
|
libxslt
|
||||||
live555
|
live555
|
||||||
llvm9_x86
|
llvm9_x86
|
||||||
m4
|
m4_x86
|
||||||
make
|
make
|
||||||
mandoc
|
mandoc
|
||||||
mawk
|
mawk
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ BootstrapPackageRepository HaikuPortsCross
|
|||||||
noto-20170202-7
|
noto-20170202-7
|
||||||
:
|
:
|
||||||
# repository architecture packages (stage 0)
|
# repository architecture packages (stage 0)
|
||||||
gcc_bootstrap-11.2.0_2021_07_28-3
|
gcc_bootstrap-11.2.0_2021_07_28-5
|
||||||
gcc_bootstrap_syslibs-11.2.0_2021_07_28-3
|
gcc_bootstrap_syslibs-11.2.0_2021_07_28-5
|
||||||
gcc_bootstrap_syslibs_devel-11.2.0_2021_07_28-3
|
gcc_bootstrap_syslibs_devel-11.2.0_2021_07_28-5
|
||||||
:
|
:
|
||||||
# repository architecture packages (stage 1)
|
# repository architecture packages (stage 1)
|
||||||
bash_bootstrap-4.4.023-1
|
bash_bootstrap-4.4.023-1
|
||||||
@@ -28,11 +28,12 @@ BootstrapPackageRepository HaikuPortsCross
|
|||||||
icu_bootstrap-67.1-2
|
icu_bootstrap-67.1-2
|
||||||
icu_bootstrap_devel-67.1-2
|
icu_bootstrap_devel-67.1-2
|
||||||
less_bootstrap-451-1
|
less_bootstrap-451-1
|
||||||
|
libffi_bootstrap-3.3-1
|
||||||
m4_bootstrap-1.4.16-1
|
m4_bootstrap-1.4.16-1
|
||||||
make_bootstrap-4.3-1
|
make_bootstrap-4.3-1
|
||||||
ncurses6_bootstrap-6.2-1
|
ncurses6_bootstrap-6.2-1
|
||||||
ncurses6_bootstrap_devel-6.2-1
|
ncurses6_bootstrap_devel-6.2-1
|
||||||
python_bootstrap-2.7.6-1
|
python_bootstrap-3.9.1-1
|
||||||
sed_bootstrap-4.2.1-1
|
sed_bootstrap-4.2.1-1
|
||||||
texinfo_bootstrap-4.13a-1
|
texinfo_bootstrap-4.13a-1
|
||||||
zstd_bootstrap-1.5.0-2
|
zstd_bootstrap-1.5.0-2
|
||||||
@@ -59,6 +60,7 @@ BootstrapPackageRepository HaikuPortsCross
|
|||||||
grep_bootstrap
|
grep_bootstrap
|
||||||
less_bootstrap
|
less_bootstrap
|
||||||
libsolv_bootstrap
|
libsolv_bootstrap
|
||||||
|
libffi_bootstrap
|
||||||
m4_bootstrap
|
m4_bootstrap
|
||||||
make_bootstrap
|
make_bootstrap
|
||||||
ncurses6_bootstrap
|
ncurses6_bootstrap
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ binutilsObjDir="$objDir/binutils"
|
|||||||
gccObjDir="$objDir/gcc"
|
gccObjDir="$objDir/gcc"
|
||||||
gdbObjDir="$objDir/gdb"
|
gdbObjDir="$objDir/gdb"
|
||||||
stdcxxObjDir="$objDir/stdcxx"
|
stdcxxObjDir="$objDir/stdcxx"
|
||||||
sysrootDir="$installDir/sysroot"
|
sysrootDir=${HAIKU_USE_SYSROOT:-"$installDir/sysroot"}
|
||||||
tmpIncludeDir="$sysrootDir/boot/system/develop/headers"
|
tmpIncludeDir="$sysrootDir/boot/system/develop/headers"
|
||||||
tmpLibDir="$sysrootDir/boot/system/develop/lib"
|
tmpLibDir="$sysrootDir/boot/system/develop/lib"
|
||||||
|
|
||||||
@@ -279,7 +279,11 @@ mv "$installDir/$haikuMachine/lib/libstdc++.a" \
|
|||||||
"$installDir/$haikuMachine/lib/libstdc++-static.a"
|
"$installDir/$haikuMachine/lib/libstdc++-static.a"
|
||||||
|
|
||||||
# remove the sysroot dir
|
# remove the sysroot dir
|
||||||
|
if [ -n "$HAIKU_USE_SYSROOT" ]; then
|
||||||
|
rm -rf "$sysrootDir"/boot/system/*
|
||||||
|
else
|
||||||
rm -rf "$sysrootDir"
|
rm -rf "$sysrootDir"
|
||||||
|
fi
|
||||||
|
|
||||||
# remove the objects dir
|
# remove the objects dir
|
||||||
rm -rf "$objDir"
|
rm -rf "$objDir"
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
# PNG files for kernel debugger fonts.
|
||||||
|
# This makes the fonts easier to modify if you decide to do so.
|
||||||
|
#
|
||||||
|
# Convert the font to hex bytes that can be added to the corresponding .cpp files
|
||||||
|
# in src/system/kernel/debug/font{,_big}.cpp
|
||||||
|
#
|
||||||
|
# This uses the convert command from imagemagic to:
|
||||||
|
# - Store black as 1 and white as 0
|
||||||
|
# - Flip the image left-to-right (that's how our console code expects it)
|
||||||
|
# - Convert it to an uncompressed bitmap without header
|
||||||
|
# Then it uses xxd to convert it to an hexdump in the correct endianness.
|
||||||
|
convert kdlbig.png -depth 1 -negate -flop GRAY:kdlbig
|
||||||
|
xxd -g 2 -c 16 kdlbig > kdlbig.hex
|
||||||
|
|
||||||
|
convert kdlsmall.png -depth 1 -negate -flop GRAY:kdlsmall
|
||||||
|
xxd -g 1 -c 12 kdlsmall > kdlsmall.hex
|
||||||
@@ -67,6 +67,9 @@ options:
|
|||||||
on to the make building the build tools.
|
on to the make building the build tools.
|
||||||
--no-downloads Do not download anything. Useful when trying to
|
--no-downloads Do not download anything. Useful when trying to
|
||||||
bootstrap and build Haiku from source only.
|
bootstrap and build Haiku from source only.
|
||||||
|
--sysroot The location of the cross-compiler sysroot,
|
||||||
|
primarily for CI environments or cross-compilers
|
||||||
|
used outside of the Haiku build system.
|
||||||
--target-arch <arch> Haiku only: Specify the target architecture to
|
--target-arch <arch> Haiku only: Specify the target architecture to
|
||||||
build for. Must be one of the architectures of the
|
build for. Must be one of the architectures of the
|
||||||
host system. The installed build tools for that
|
host system. The installed build tools for that
|
||||||
@@ -688,6 +691,11 @@ supportedTargetArchs="
|
|||||||
#
|
#
|
||||||
while [ $# -gt 0 ] ; do
|
while [ $# -gt 0 ] ; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
|
--sysroot)
|
||||||
|
assertparam "$1" $#
|
||||||
|
crossToolsSysroot=$2
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
--bootstrap)
|
--bootstrap)
|
||||||
assertparams "$1" 3 $#
|
assertparams "$1" 3 $#
|
||||||
HOST_HAIKU_PORTER="`absolute_path $2`"
|
HOST_HAIKU_PORTER="`absolute_path $2`"
|
||||||
@@ -1006,6 +1014,7 @@ else
|
|||||||
HAIKU_USE_GCC_GRAPHITE_$targetArch` \
|
HAIKU_USE_GCC_GRAPHITE_$targetArch` \
|
||||||
HAIKU_USE_GCC_PIPE=$HAIKU_USE_GCC_PIPE \
|
HAIKU_USE_GCC_PIPE=$HAIKU_USE_GCC_PIPE \
|
||||||
HAIKU_USE_GDB="$gdbSources" \
|
HAIKU_USE_GDB="$gdbSources" \
|
||||||
|
HAIKU_USE_SYSROOT="$crossToolsSysroot" \
|
||||||
"$script" $scriptArgs "$sourceDir" "$buildCrossTools" \
|
"$script" $scriptArgs "$sourceDir" "$buildCrossTools" \
|
||||||
"$crossToolsDir" $buildCrossToolsJobs || exit 1
|
"$crossToolsDir" $buildCrossToolsJobs || exit 1
|
||||||
else
|
else
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,9 @@
|
|||||||
|
Fonts used by kernel debugger and on-screen console.
|
||||||
|
|
||||||
|
The original font was designed by Brian J. Swetland with tweaks by Axel Dorfler.
|
||||||
|
The large version was designed by Adrien Destugues.
|
||||||
|
|
||||||
|
See the sources in src/system/kernel/debug/font* for license information.
|
||||||
|
|
||||||
|
See the script in toos/build/generate_kernel_fonts.h for information on how to update the .h files
|
||||||
|
after you make changes to these fonts.
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
1 indonesian x-vnd.Haiku-BFSAddOn 1570987954
|
1 indonesian x-vnd.Haiku-BFSAddOn 1570987954
|
||||||
Enable query support BFS_Initialize_Parameter Aktifkan dukungan kueri
|
Enable query support BFS_Initialize_Parameter Aktifkan dukungan kueri
|
||||||
Disabling query support may speed up certain file system operations, but should\nonly 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 Nonaktifkan dukungan kueri dapat mempercepat operasi sistem file tertentu, tetapi seharusnya\nhanya digunakan jika seseorang benar-benar yakin bahwa ia tidak akan membutuhkan kuery.\nVolume apa pun yang dimaksudkan untuk mem-boot Haiku harus mengaktifkan dukungan kueri.
|
Disabling query support may speed up certain file system operations, but should\nonly 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 Nonaktifkan dukungan kueri dapat mempercepat operasi sistem berkas tertentu, tetapi seharusnya\nhanya digunakan jika seseorang benar-benar yakin bahwa ia tidak akan membutuhkan kuery.\nVolume apa pun yang dimaksudkan untuk mem-boot Haiku harus mengaktifkan dukungan kueri.
|
||||||
Name: BFS_Initialize_Parameter Nama:
|
Name: BFS_Initialize_Parameter Nama:
|
||||||
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Kebanyakan berkas besar)
|
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Sebagian besar berkas ukuran besar)
|
||||||
2048 (Recommended) BFS_Initialize_Parameter 2048 (Direkomendasikan)
|
2048 (Recommended) BFS_Initialize_Parameter 2048 (Direkomendasikan)
|
||||||
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Kebanyakan berkas kecil)
|
1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Kebanyakan berkas kecil)
|
||||||
Blocksize: BFS_Initialize_Parameter Ukuranblok:
|
Blocksize: BFS_Initialize_Parameter Ukuranblok:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ Match header RuleFilter Cocokan tajuk
|
|||||||
Set flags to ConfigView Atur bendera ke
|
Set flags to ConfigView Atur bendera ke
|
||||||
Header field (e.g. Subject, From, …) ConfigView Bidang tajuk (misal. Subyek, Dari, …)
|
Header field (e.g. Subject, From, …) ConfigView Bidang tajuk (misal. Subyek, Dari, …)
|
||||||
<Choose account> ConfigView <Pilih akun>
|
<Choose account> ConfigView <Pilih akun>
|
||||||
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Nilai wildcard seperti \"*spam*\".\nDiawali dengan \"REGEX:\" untuk menggunakan expresi-ekspresi reguler.
|
Wildcard value like \"*spam*\".\nPrefix with \"REGEX:\" in order to use regular expressions. ConfigView Nilai wildcard seperti \"*spam*\".\n Awalan dengan \"REGEX:\" untuk menggunakan ekspresi reguler.
|
||||||
Then ConfigView Kemudian
|
Then ConfigView Kemudian
|
||||||
If ConfigView Jika
|
If ConfigView Jika
|
||||||
Set as read ConfigView Atur sebagai dibaca
|
Set as read ConfigView Atur sebagai dibaca
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 indonesian x-vnd.Haiku-mixer.media_addon 3463574286
|
1 indonesian x-vnd.Haiku-mixer.media_addon 275473112
|
||||||
Input mapping AudioMixer Pemetaan input
|
Input mapping AudioMixer Pemetaan input
|
||||||
|
High quality (linear interpolation) AudioMixer Kualitas tinggi (interpolasi linier)
|
||||||
To output AudioMixer Ke keluaran
|
To output AudioMixer Ke keluaran
|
||||||
Gain AudioMixer Penguatan
|
Gain AudioMixer Penguatan
|
||||||
To master AudioMixer Ke master
|
To master AudioMixer Ke master
|
||||||
@@ -7,13 +8,17 @@ not connected AudioMixer tidak terhubung
|
|||||||
Master output AudioMixer Keluaran master
|
Master output AudioMixer Keluaran master
|
||||||
dB AudioMixer dB
|
dB AudioMixer dB
|
||||||
Gain controls AudioMixer Pengatur penguatan
|
Gain controls AudioMixer Pengatur penguatan
|
||||||
|
Low quality (drop/repeat samples) AudioMixer Kualitas rendah (sampel diturunkan/ulangi)
|
||||||
Output channel sources AudioMixer Sumber kanal keluaran
|
Output channel sources AudioMixer Sumber kanal keluaran
|
||||||
Allow input channel remapping AudioMixer Ijinkan pemetaan ulang kanal masukan
|
Allow input channel remapping AudioMixer Ijinkan pemetaan ulang kanal masukan
|
||||||
Display balance control for stereo connections AudioMixer Tampilkan kontrol keseimbangan untuk sambungan stereo
|
Display balance control for stereo connections AudioMixer Tampilkan kontrol keseimbangan untuk sambungan stereo
|
||||||
Setup AudioMixer Tata
|
Setup AudioMixer Tata
|
||||||
Physical input channels AudioMixer Kanal input fisik
|
Physical input channels AudioMixer Kanal input fisik
|
||||||
Input channel destinations AudioMixer Tujuan kanal input
|
Input channel destinations AudioMixer Tujuan kanal input
|
||||||
|
Resampling algorithm: AudioMixer Algoritma pengambilan sampel ulang:
|
||||||
Mute AudioMixer Bisu
|
Mute AudioMixer Bisu
|
||||||
Output mapping AudioMixer Pemetaan keluaran
|
Output mapping AudioMixer Pemetaan keluaran
|
||||||
Virtual output channels AudioMixer Saluran keluaran virtual
|
Virtual output channels AudioMixer Saluran keluaran virtual
|
||||||
Allow output channel remapping AudioMixer Ijinkan pemetaan ulang kanal keluaran
|
Allow output channel remapping AudioMixer Ijinkan pemetaan ulang kanal keluaran
|
||||||
|
Input gain controls represent: AudioMixer Kontrol penguatan input mewakili:
|
||||||
|
Attenuate mixer output by 3 dB AudioMixer Kurangi output mixer sebesar 3 dB
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 indonesian x-vnd.Haiku-GLifeScreensaver 2189777521
|
1 indonesian x-vnd.Haiku-GLifeScreensaver 358758987
|
||||||
by Aaron Hill GLife ScreenSaver oleh Aaron Hill
|
by Aaron Hill GLife ScreenSaver oleh Aaron Hill
|
||||||
Grid life delay: none GLife ScreenSaver Tundaan kisi hidup: tidak ada
|
Grid life delay: none GLife ScreenSaver Tundaan kisi hidup: tidak ada
|
||||||
None GLife ScreenSaver Tak satupun
|
None GLife ScreenSaver Tak satupun
|
||||||
@@ -10,4 +10,5 @@ OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"Game of Life\"
|
|||||||
Grid height: GLife ScreenSaver Tinggi kisi:
|
Grid height: GLife ScreenSaver Tinggi kisi:
|
||||||
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
|
4x GLife ScreenSaver This is a factor: the x represents 'times' 4x
|
||||||
Grid width: %li GLife ScreenSaver Lebar kisi: %li
|
Grid width: %li GLife ScreenSaver Lebar kisi: %li
|
||||||
|
Grid life delay: %ldx This is a factor: the x represents 'times', don't translate '%ld' Tundaan kisi hidup: %ldx
|
||||||
Grid life delay: GLife ScreenSaver Tundaan kisi hidup:
|
Grid life delay: GLife ScreenSaver Tundaan kisi hidup:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 indonesian x-vnd.Haiku-NebulaScreensaver 404971552
|
1 indonesian x-vnd.Haiku-NebulaScreensaver 1434751133
|
||||||
cold Nebula Screen Saver dingin
|
cold Nebula Screen Saver dingin
|
||||||
Internal width: Nebula Screen Saver Lebar internal:
|
Internal width: Nebula Screen Saver Lebar internal:
|
||||||
16:9, wide-screen Nebula Screen Saver 16:9, layar lebar
|
16:9, wide-screen Nebula Screen Saver 16:9, layar lebar
|
||||||
@@ -16,6 +16,7 @@ fullscreen, no borders Nebula Screen Saver layar penuh, tanpa batas
|
|||||||
orange (original) Nebula Screen Saver oranye (asli)
|
orange (original) Nebula Screen Saver oranye (asli)
|
||||||
cyan Nebula Screen Saver cyan
|
cyan Nebula Screen Saver cyan
|
||||||
Speed Nebula Screen Saver Kecepatan
|
Speed Nebula Screen Saver Kecepatan
|
||||||
|
%ld pixels Nebula Screen Saver %ld piksel
|
||||||
Nebula Nebula Screen Saver Nebula
|
Nebula Nebula Screen Saver Nebula
|
||||||
red Nebula Screen Saver merah
|
red Nebula Screen Saver merah
|
||||||
grey Nebula Screen Saver abu-abu
|
grey Nebula Screen Saver abu-abu
|
||||||
|
|||||||
@@ -1,2 +1,9 @@
|
|||||||
1 indonesian x-vnd.Haiku-EXRTranslator 3088028300
|
1 indonesian x-vnd.Haiku-EXRTranslator 3596882613
|
||||||
|
EXR image translator ConfigView Penerjemah gambar EXR
|
||||||
|
a division of Lucasfilm Entertainment Company Ltd ConfigView divisi dari Perusahaan Lucasfilm Entertainment Ltd
|
||||||
|
Version %d.%d.%d, %s ConfigView Versi %d.%d.%d, %s
|
||||||
|
EXR images EXRTranslator Gambar EXR
|
||||||
|
EXR image EXRTranslator Gambar EXR
|
||||||
|
EXR image translator EXRTranslator Penerjemah gambar EXR
|
||||||
|
Based on OpenEXR %version% ConfigView Berdarkan dari OpenEXR %version%
|
||||||
EXR Settings main Pengaturan EXR
|
EXR Settings main Pengaturan EXR
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
1 indonesian x-vnd.Haiku-ICNSTranslator 335863722
|
1 indonesian x-vnd.Haiku-ICNSTranslator 660278989
|
||||||
Valid sizes: 16, 32, 48, 128, 256, 512, 1024 ICNSConfig Ukuran yang valid: 16, 32, 48, 128, 256, 512, 1024
|
Valid sizes: 16, 32, 48, 128, 256, 512, 1024 ICNSConfig Ukuran yang valid: 16, 32, 48, 128, 256, 512, 1024
|
||||||
Valid colors: RGB32, RGBA32 ICNSConfig Warna yang valid: RGB32, RGBA32
|
Valid colors: RGB32, RGBA32 ICNSConfig Warna yang valid: RGB32, RGBA32
|
||||||
Version %d.%d.%d, %s ICNSConfig Versi %d.%d.%d, %s
|
Version %d.%d.%d, %s ICNSConfig Versi %d.%d.%d, %s
|
||||||
Apple icon translator ICNSConfig Penerjemah ikon Apple
|
Apple icon translator ICNSConfig Penerjemah ikon Apple
|
||||||
|
Apple icons ICNSTranslator Ikon apel
|
||||||
|
Apple icon translator ICNSTranslator Penerjemah ikon Apple
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
1 indonesian x-vnd.Haiku-JPEGTranslator 3788699631
|
1 indonesian x-vnd.Haiku-JPEGTranslator 3788699631
|
||||||
Read JPEGTranslator Baca
|
Read JPEGTranslator Membaca
|
||||||
Be Bitmap Format (JPEGTranslator) JPEGTranslator Format Bitmap Be (JPEGTranslator)
|
Be Bitmap Format (JPEGTranslator) JPEGTranslator Format Bitmap Be (JPEGTranslator)
|
||||||
Show warning messages JPEGTranslator Tampilkan pesan peringatan
|
Show warning messages JPEGTranslator Tampilkan pesan peringatan
|
||||||
Use CMYK code with 0 for 100% ink coverage JPEGTranslator Gunakan kode CMYK dengan 0 untuk pencakupan tinta 100%
|
Use CMYK code with 0 for 100% ink coverage JPEGTranslator Gunakan kode CMYK dengan 0 untuk cakupan tinta 100%
|
||||||
JPEG Library Error: %s\n be_jerror Galat Pustaka JPEG: %s\n
|
JPEG Library Error: %s\n be_jerror Pustaka JPEG Error: %s\n
|
||||||
©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBerdasarkan pustaka IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\ndengan tambalan dukungan penyandian \"lossless\" oleh Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nDengan beberapa rutin konversi colorspace oleh Magnus Hellman\n\thttp://www.bebits.com/app/802\n
|
©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\ndidasarkan atas pustaka IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\ndengan \"lossless\" dukungan tambalalan encoding oleh Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nDengan beberapa rutin konversi oleh Magnus Hellman\n\thttp://www.bebits.com/app/802\n
|
||||||
None JPEGTranslator Tak satupun
|
None JPEGTranslator Tiada
|
||||||
About JPEGTranslator Tentang
|
About JPEGTranslator Tentang
|
||||||
Version %d.%d.%d JPEGTranslator Versi %d.%d.%d
|
Version %d.%d.%d JPEGTranslator Versi %d.%d.%d
|
||||||
Write black-and-white images as RGB24 JPEGTranslator Tulis gambar hitam-putih sebagai RGB24
|
Write black-and-white images as RGB24 JPEGTranslator Menulis gambar hitam-putih sebagai RGB24
|
||||||
Output smoothing strength JPEGTranslator Keluaran kekuatan meratakan
|
Output smoothing strength JPEGTranslator Output menghaluskan penguatan
|
||||||
Use progressive compression JPEGTranslator Gunakan kompresi progresif
|
Use progressive compression JPEGTranslator Gunakan kompresi progresif
|
||||||
Make file smaller (sligthtly worse quality) JPEGTranslator Buat file menjadi lebih kecil (kualitas sedikit lebih buruk)
|
Make file smaller (sligthtly worse quality) JPEGTranslator Buat file lebih kecil (kualitas sedikit lebih jelek)
|
||||||
High JPEGTranslator Tinggi
|
High JPEGTranslator Tinggi
|
||||||
Read greyscale images as RGB32 JPEGTranslator Baca gambar abu-abu sebagai RGB32
|
Read greyscale images as RGB32 JPEGTranslator Baca gambar skala abu-abu sebagai RGB32
|
||||||
Output quality JPEGTranslator Kualitas output
|
Output quality JPEGTranslator Kualitas output
|
||||||
Low JPEGTranslator Rendah
|
Low JPEGTranslator Rendah
|
||||||
Write JPEGTranslator Menulis
|
Write JPEGTranslator Menulis
|
||||||
Prevent colors 'washing out' JPEGTranslator Mencegah warna 'luntur'
|
Prevent colors 'washing out' JPEGTranslator Mencegah warna 'memudar'
|
||||||
JPEG Library Warning: %s\n be_jerror Peringatan pustaka JPEG: %s\n
|
JPEG Library Warning: %s\n be_jerror Peringatan Pustaka JPEG: %s\n
|
||||||
JPEG images JPEGTranslator Gambar JPEG
|
JPEG images JPEGTranslator Gambar JPEG
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 catalan; valencian x-vnd.Haiku-About 2473434391
|
1 catalan; valencian x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Revisió
|
Revision AboutView Revisió
|
||||||
The Haikuware team and their bounty program\n AboutView L'equip de Haikuware i el seu programa de recompenses\n
|
The Haikuware team and their bounty program\n AboutView L'equip de Haikuware i el seu programa de recompenses\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tots els drets reservats.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tots els drets reservats.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Memòria:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Tots els drets reservats.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Tots els drets reservats.
|
||||||
BSD (2-clause) AboutWindow BSD (clàusula 2)
|
BSD (2-clause) AboutWindow BSD (clàusula 2)
|
||||||
Website & marketing:\n AboutView Lloc web i màrqueting:\n
|
Website & marketing:\n AboutView Lloc web i màrqueting:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger basat en la Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger basat en la Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …i de molts donants !\n\n
|
…and the many people making donations!\n\n AboutView …i de molts donants !\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (microprogramari)
|
Marvell (firmware) AboutWindow Marvell (microprogramari)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 czech x-vnd.Haiku-About 2473434391
|
1 czech x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Revize
|
Revision AboutView Revize
|
||||||
The Haikuware team and their bounty program\n AboutView Tým Haikuware a jejich systém prémií\n
|
The Haikuware team and their bounty program\n AboutView Tým Haikuware a jejich systém prémií\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Všechna práva vyhrazena.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Všechna práva vyhrazena.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Paměť:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Všechna práva vyhrazena.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Všechna práva vyhrazena.
|
||||||
BSD (2-clause) AboutWindow BSD (2 klauzule)
|
BSD (2-clause) AboutWindow BSD (2 klauzule)
|
||||||
Website & marketing:\n AboutView Web a marketing:\n
|
Website & marketing:\n AboutView Web a marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 Andy Ritger na základě Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 Andy Ritger na základě Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView ... a mnozí další, kteří přispěli darem!\n\n
|
…and the many people making donations!\n\n AboutView ... a mnozí další, kteří přispěli darem!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (firmware)
|
Marvell (firmware) AboutWindow Marvell (firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 danish x-vnd.Haiku-About 1736446963
|
1 danish x-vnd.Haiku-About 4168448386
|
||||||
Revision AboutView Revision
|
Revision AboutView Revision
|
||||||
The Haikuware team and their bounty program\n AboutView Haikuware-holdet og deres dusørprogram\n
|
The Haikuware team and their bounty program\n AboutView Haikuware-holdet og deres dusørprogram\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Ophavsret © 1999-2007 Michael C. Ring. Alle rettigheder forbeholdes.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Ophavsret © 1999-2007 Michael C. Ring. Alle rettigheder forbeholdes.
|
||||||
@@ -72,7 +72,6 @@ Memory: AboutView Hukommelse:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…og sandsynligvis flere, som vi har glemt at nævne (undskyld!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…og sandsynligvis flere, som vi har glemt at nævne (undskyld!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-klausul)
|
BSD (2-clause) AboutWindow BSD (2-klausul)
|
||||||
Website & marketing:\n AboutView Websted og markedsføring:\n
|
Website & marketing:\n AboutView Websted og markedsføring:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Ophavsret © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 af Andy Ritger, baseret på Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 af Andy Ritger, baseret på Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …og alle de, som har skænket penge!\n\n
|
…and the many people making donations!\n\n AboutView …og alle de, som har skænket penge!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-klausul)
|
BSD (4-clause) AboutWindow BSD (4-klausul)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-About 2473434391
|
1 german x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Stand:
|
Revision AboutView Stand:
|
||||||
The Haikuware team and their bounty program\n AboutView Das Haikuware-Team und deren Bounty-Programm\n
|
The Haikuware team and their bounty program\n AboutView Das Haikuware-Team und deren Bounty-Programm\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Arbeitsspeicher:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Alle Rechte vorbehalten.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Alle Rechte vorbehalten.
|
||||||
BSD (2-clause) AboutWindow BSD (2-Klausel)
|
BSD (2-clause) AboutWindow BSD (2-Klausel)
|
||||||
Website & marketing:\n AboutView Website & Marketing:\n
|
Website & marketing:\n AboutView Website & Marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basierend auf 'Generalized Timing Formula'.
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basierend auf 'Generalized Timing Formula'.
|
||||||
…and the many people making donations!\n\n AboutView ... und die vielen Leute, die durch Spenden geholfen haben!\n\n
|
…and the many people making donations!\n\n AboutView ... und die vielen Leute, die durch Spenden geholfen haben!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (Firmware)
|
Marvell (firmware) AboutWindow Marvell (Firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-About 2473434391
|
1 greek, modern (1453-) x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Αναθεώρηση
|
Revision AboutView Αναθεώρηση
|
||||||
The Haikuware team and their bounty program\n AboutView Η ομάδα της Haikuware και το πρόγραμμα επιδοτήσεων της\n
|
The Haikuware team and their bounty program\n AboutView Η ομάδα της Haikuware και το πρόγραμμα επιδοτήσεων της\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1999-2007 Michael C. Ring. Με επιφύλαξη παντός δικαιώματος.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Πνευματική ιδιοκτησία © 1999-2007 Michael C. Ring. Με επιφύλαξη παντός δικαιώματος.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Μνήμη:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Με επιφύλαξη παντός δικαιώματος.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Με επιφύλαξη παντός δικαιώματος.
|
||||||
BSD (2-clause) AboutWindow BSD (2-όρων)
|
BSD (2-clause) AboutWindow BSD (2-όρων)
|
||||||
Website & marketing:\n AboutView Ιστοσελίδα & μάρκετινγκ:\n
|
Website & marketing:\n AboutView Ιστοσελίδα & μάρκετινγκ:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 απο τον Andy Ritger βασισμένο στο Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 απο τον Andy Ritger βασισμένο στο Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView ...και τους πολλούς δωρητές μας!\n\n
|
…and the many people making donations!\n\n AboutView ...και τους πολλούς δωρητές μας!\n\n
|
||||||
Marvell (firmware) AboutWindow Υλισμικό Marvell
|
Marvell (firmware) AboutWindow Υλισμικό Marvell
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 esperanto x-vnd.Haiku-About 3702260021
|
1 esperanto x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView Revizio
|
Revision AboutView Revizio
|
||||||
The Haikuware team and their bounty program\n AboutView La Haikuware grupo kaj ilia premia programo\n
|
The Haikuware team and their bounty program\n AboutView La Haikuware grupo kaj ilia premia programo\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Kopirajto © 1999-2007 Michael C. Ring. Ĉiuj rajtoj estas rezervitaj.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Kopirajto © 1999-2007 Michael C. Ring. Ĉiuj rajtoj estas rezervitaj.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView Memoro:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…kaj verŝajne kelke pli kiujn ni forgesis mencii (ni bedaŭras!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…kaj verŝajne kelke pli kiujn ni forgesis mencii (ni bedaŭras!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-klaŭza)
|
BSD (2-clause) AboutWindow BSD (2-klaŭza)
|
||||||
Website & marketing:\n AboutView Retpaĝaro & merkatado:\n
|
Website & marketing:\n AboutView Retpaĝaro & merkatado:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Kopirajto © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger bazita sur la Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger bazita sur la Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …kaj la multe da homoj kiuj faras donacojn!\n\n
|
…and the many people making donations!\n\n AboutView …kaj la multe da homoj kiuj faras donacojn!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-klaŭza)
|
BSD (4-clause) AboutWindow BSD (4-klaŭza)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 spanish; castilian x-vnd.Haiku-About 1736446963
|
1 spanish; castilian x-vnd.Haiku-About 4168448386
|
||||||
Revision AboutView Revisión
|
Revision AboutView Revisión
|
||||||
The Haikuware team and their bounty program\n AboutView El equipo de Haikuware y su programa de recompensas\n
|
The Haikuware team and their bounty program\n AboutView El equipo de Haikuware y su programa de recompensas\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Todos los derechos reservados.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Todos los derechos reservados.
|
||||||
@@ -72,7 +72,6 @@ Memory: AboutView Memoria:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…y probablemente a algunos más que olvidamos mencionar (¡disculpen!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…y probablemente a algunos más que olvidamos mencionar (¡disculpen!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2 cláusulas)
|
BSD (2-clause) AboutWindow BSD (2 cláusulas)
|
||||||
Website & marketing:\n AboutView Sitio web y mercadotecnia:\n
|
Website & marketing:\n AboutView Sitio web y mercadotecnia:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Todos los derechos reservados © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 por Andy Ritger basado en la Fórmula de Tiempos Generalizada
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 por Andy Ritger basado en la Fórmula de Tiempos Generalizada
|
||||||
…and the many people making donations!\n\n AboutView y a la mucha gente que hizo donaciones!\n\n
|
…and the many people making donations!\n\n AboutView y a la mucha gente que hizo donaciones!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4 cláusulas)
|
BSD (4-clause) AboutWindow BSD (4 cláusulas)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-About 2473434391
|
1 finnish x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Korjausversio
|
Revision AboutView Korjausversio
|
||||||
The Haikuware team and their bounty program\n AboutView Haikuware-ryhmä ja heidän bounty-ohjelmansa\n
|
The Haikuware team and their bounty program\n AboutView Haikuware-ryhmä ja heidän bounty-ohjelmansa\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Kaikki oikeudet pidätetty.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Kaikki oikeudet pidätetty.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Muisti:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. All rights reserved.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. All rights reserved.
|
||||||
BSD (2-clause) AboutWindow BSD (2-ehto)
|
BSD (2-clause) AboutWindow BSD (2-ehto)
|
||||||
Website & marketing:\n AboutView Webbisivu & markkinointi:\n
|
Website & marketing:\n AboutView Webbisivu & markkinointi:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Andy Ritger perustuen Generalized Timing Formula -standardiin
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Andy Ritger perustuen Generalized Timing Formula -standardiin
|
||||||
…and the many people making donations!\n\n AboutView ...ja monet lahjoituksia tehneet ihmiset!\n\n
|
…and the many people making donations!\n\n AboutView ...ja monet lahjoituksia tehneet ihmiset!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (laiteohjelma)
|
Marvell (firmware) AboutWindow Marvell (laiteohjelma)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-About 3767028061
|
1 french x-vnd.Haiku-About 1904062188
|
||||||
Revision AboutView Révision
|
Revision AboutView Révision
|
||||||
The Haikuware team and their bounty program\n AboutView L’équipe Haikuware et son programme de récompenses\n
|
The Haikuware team and their bounty program\n AboutView L’équipe Haikuware et son programme de récompenses\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tous droits réservés.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Tous droits réservés.
|
||||||
@@ -78,7 +78,6 @@ Memory: AboutView Mémoire :
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Tous droits réservés.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Tous droits réservés.
|
||||||
BSD (2-clause) AboutWindow BSD (2-clauses)
|
BSD (2-clause) AboutWindow BSD (2-clauses)
|
||||||
Website & marketing:\n AboutView Site web et mercatique :\n
|
Website & marketing:\n AboutView Site web et mercatique :\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 par Andy Ritger selon la « Generalized Timing Formula »
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 par Andy Ritger selon la « Generalized Timing Formula »
|
||||||
…and the many people making donations!\n\n AboutView …et nos nombreux donateurs !\n\n
|
…and the many people making donations!\n\n AboutView …et nos nombreux donateurs !\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-clauses)
|
BSD (4-clause) AboutWindow BSD (4-clauses)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 friulian x-vnd.Haiku-About 2473434391
|
1 friulian x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Revision
|
Revision AboutView Revision
|
||||||
The Haikuware team and their bounty program\n AboutView Il grup Haikuware e il lôr program di premiazion\n
|
The Haikuware team and their bounty program\n AboutView Il grup Haikuware e il lôr program di premiazion\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Ducj i dirits riservâts.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Ducj i dirits riservâts.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Memorie:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Ducj i dirits riservâts.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Ducj i dirits riservâts.
|
||||||
BSD (2-clause) AboutWindow BSD (2-clausulis)
|
BSD (2-clause) AboutWindow BSD (2-clausulis)
|
||||||
Website & marketing:\n AboutView Sît web e comercializazion:\n
|
Website & marketing:\n AboutView Sît web e comercializazion:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basât su la Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basât su la Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …e lis tantis personis che a àn fat donazions!\n\n
|
…and the many people making donations!\n\n AboutView …e lis tantis personis che a àn fat donazions!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (firmware)
|
Marvell (firmware) AboutWindow Marvell (firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hungarian x-vnd.Haiku-About 2473434391
|
1 hungarian x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView kiadás:
|
Revision AboutView kiadás:
|
||||||
The Haikuware team and their bounty program\n AboutView A Haikuware csapatának és az adományprogramjuknak\n
|
The Haikuware team and their bounty program\n AboutView A Haikuware csapatának és az adományprogramjuknak\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Minden jog fenntartva.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Minden jog fenntartva.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Memória:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Minden jog fenntartva.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Minden jog fenntartva.
|
||||||
BSD (2-clause) AboutWindow BSD (2-clause)
|
BSD (2-clause) AboutWindow BSD (2-clause)
|
||||||
Website & marketing:\n AboutView Weboldal és marketing:\n
|
Website & marketing:\n AboutView Weboldal és marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 Andy Ritger által, az Általános Időzítéses Formula (Generalized Timing Formula) alapján
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 Andy Ritger által, az Általános Időzítéses Formula (Generalized Timing Formula) alapján
|
||||||
…and the many people making donations!\n\n AboutView … a rengeteg adományokkal segítő embernek!\n\n
|
…and the many people making donations!\n\n AboutView … a rengeteg adományokkal segítő embernek!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (firmware)
|
Marvell (firmware) AboutWindow Marvell (firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 indonesian x-vnd.Haiku-About 1736446963
|
1 indonesian x-vnd.Haiku-About 4168448386
|
||||||
Revision AboutView Revisi
|
Revision AboutView Revisi
|
||||||
The Haikuware team and their bounty program\n AboutView Tim Haikuware dan Program hadiah mereka\n
|
The Haikuware team and their bounty program\n AboutView Tim Haikuware dan Program hadiah mereka\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Hak Cipta © 1999-2007 Michael C. Ring. Hak cipta dilindungi undang-undang.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Hak Cipta © 1999-2007 Michael C. Ring. Hak cipta dilindungi undang-undang.
|
||||||
@@ -72,7 +72,6 @@ Memory: AboutView Memori:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…dan mungkin ada lagi yang kami lupa menyebutkan (maaf!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…dan mungkin ada lagi yang kami lupa menyebutkan (maaf!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-klausa)
|
BSD (2-clause) AboutWindow BSD (2-klausa)
|
||||||
Website & marketing:\n AboutView Situs web & marketing:\n
|
Website & marketing:\n AboutView Situs web & marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Hak cipta © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 oleh Andy Ritger berdasarkan formula Generalized Timing
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 oleh Andy Ritger berdasarkan formula Generalized Timing
|
||||||
…and the many people making donations!\n\n AboutView …dan orang-orang yang ikut menyumbang!\n\n
|
…and the many people making donations!\n\n AboutView …dan orang-orang yang ikut menyumbang!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-pasal)
|
BSD (4-clause) AboutWindow BSD (4-pasal)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-About 2473434391
|
1 japanese x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView リビジョン
|
Revision AboutView リビジョン
|
||||||
The Haikuware team and their bounty program\n AboutView Haikuware チーム&報奨金プログラム\n
|
The Haikuware team and their bounty program\n AboutView Haikuware チーム&報奨金プログラム\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView メモリ:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. All rights reserved.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. All rights reserved.
|
||||||
BSD (2-clause) AboutWindow BSD (二条項)
|
BSD (2-clause) AboutWindow BSD (二条項)
|
||||||
Website & marketing:\n AboutView ウェブサイトおよびマーケティング:\n
|
Website & marketing:\n AboutView ウェブサイトおよびマーケティング:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger based on the Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger based on the Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView ...寄付をしていただいた大勢の方々!\n\n
|
…and the many people making donations!\n\n AboutView ...寄付をしていただいた大勢の方々!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (ファームウェア)
|
Marvell (firmware) AboutWindow Marvell (ファームウェア)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-About 3702260021
|
1 dutch; flemish x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView Revisie
|
Revision AboutView Revisie
|
||||||
The Haikuware team and their bounty program\n AboutView Het Haikuware-team en hun bountyprogramma\n
|
The Haikuware team and their bounty program\n AboutView Het Haikuware-team en hun bountyprogramma\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle rechten voorbehouden.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle rechten voorbehouden.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView Geheugen:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n… en waarschijnlijk nog meerdere die we hebben vergeten te noemen (sorry!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n… en waarschijnlijk nog meerdere die we hebben vergeten te noemen (sorry!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-clause)
|
BSD (2-clause) AboutWindow BSD (2-clause)
|
||||||
Website & marketing:\n AboutView Website & marketing:\n
|
Website & marketing:\n AboutView Website & marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 door Andy Ritger gebaseerd op het Generalized Timing Formula.
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 door Andy Ritger gebaseerd op het Generalized Timing Formula.
|
||||||
…and the many people making donations!\n\n AboutView ... en de vele mensen die doneerden!\n\n
|
…and the many people making donations!\n\n AboutView ... en de vele mensen die doneerden!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-clause)
|
BSD (4-clause) AboutWindow BSD (4-clause)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-About 3702260021
|
1 polish x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView Rewizja
|
Revision AboutView Rewizja
|
||||||
The Haikuware team and their bounty program\n AboutView Zespołu Haikuware i ich programu nagród\n
|
The Haikuware team and their bounty program\n AboutView Zespołu Haikuware i ich programu nagród\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Wszelkie prawa zastrzeżone.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Wszelkie prawa zastrzeżone.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView Pamięć:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n… i prawdopodobnie paru innych, o których zapomnieliśmy wspomnieć (przepraszamy!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n… i prawdopodobnie paru innych, o których zapomnieliśmy wspomnieć (przepraszamy!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-klauzulowa)
|
BSD (2-clause) AboutWindow BSD (2-klauzulowa)
|
||||||
Website & marketing:\n AboutView Strona internetowa i marketing:\n
|
Website & marketing:\n AboutView Strona internetowa i marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger bazując na the Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger bazując na the Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView ...oraz wielu ludzi, którzy wysyłają dotacje!\n\n
|
…and the many people making donations!\n\n AboutView ...oraz wielu ludzi, którzy wysyłają dotacje!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-klauzulowa)
|
BSD (4-clause) AboutWindow BSD (4-klauzulowa)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 portuguese x-vnd.Haiku-About 284324802
|
1 portuguese x-vnd.Haiku-About 2716326225
|
||||||
Revision AboutView Revisão
|
Revision AboutView Revisão
|
||||||
The Haikuware team and their bounty program\n AboutView À equipa do Haikuware e ao seu programa de recompensas\n
|
The Haikuware team and their bounty program\n AboutView À equipa do Haikuware e ao seu programa de recompensas\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Todos os direitos reservados.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Todos os direitos reservados.
|
||||||
@@ -80,7 +80,6 @@ Memory: AboutView Memória:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. todos os direitos reservados.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. todos os direitos reservados.
|
||||||
BSD (2-clause) AboutWindow BSD (2-clause)
|
BSD (2-clause) AboutWindow BSD (2-clause)
|
||||||
Website & marketing:\n AboutView Website & marketing:\n
|
Website & marketing:\n AboutView Website & marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 por Andy Ritger baseado na Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 por Andy Ritger baseado na Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …e às muitas pessoas que têm feito donativos!\n\n
|
…and the many people making donations!\n\n AboutView …e às muitas pessoas que têm feito donativos!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-clause)
|
BSD (4-clause) AboutWindow BSD (4-clause)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 portuguese (brazil) x-vnd.Haiku-About 3702260021
|
1 portuguese (brazil) x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView Revisão
|
Revision AboutView Revisão
|
||||||
The Haikuware team and their bounty program\n AboutView A equipe do Haikuware e o seu programa de recompensas\n
|
The Haikuware team and their bounty program\n AboutView A equipe do Haikuware e o seu programa de recompensas\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Direitos autorais © 1999-2007 Michael C. Ring. Todos os direitos reservados.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Direitos autorais © 1999-2007 Michael C. Ring. Todos os direitos reservados.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView Memória:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…e provavelmente mais alguns que esquecemos de mencionar (desculpe!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…e provavelmente mais alguns que esquecemos de mencionar (desculpe!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-cláusulas)
|
BSD (2-clause) AboutWindow BSD (2-cláusulas)
|
||||||
Website & marketing:\n AboutView Website & marketing:\n
|
Website & marketing:\n AboutView Website & marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Direitos autorais © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger baseado na Fórmula de Cronometragem Generalizada
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger baseado na Fórmula de Cronometragem Generalizada
|
||||||
…and the many people making donations!\n\n AboutView …e as muitas pessoas que fizeram doações!\n\n
|
…and the many people making donations!\n\n AboutView …e as muitas pessoas que fizeram doações!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-clause)
|
BSD (4-clause) AboutWindow BSD (4-clause)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-About 1736446963
|
1 romanian x-vnd.Haiku-About 4168448386
|
||||||
Revision AboutView Revizie
|
Revision AboutView Revizie
|
||||||
The Haikuware team and their bounty program\n AboutView Echipa Haikuware și programul lor de recompense\n
|
The Haikuware team and their bounty program\n AboutView Echipa Haikuware și programul lor de recompense\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Drepturi de autor © 1999-2007 Michael C. Ring. Toate drepturile rezervate.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Drepturi de autor © 1999-2007 Michael C. Ring. Toate drepturile rezervate.
|
||||||
@@ -72,7 +72,6 @@ Memory: AboutView Memorie:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…și probabil mai mulți pe care am uitat să îi menționăm (scuze!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…și probabil mai mulți pe care am uitat să îi menționăm (scuze!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (clauza 2)
|
BSD (2-clause) AboutWindow BSD (clauza 2)
|
||||||
Website & marketing:\n AboutView Pagină web și marketing:\n
|
Website & marketing:\n AboutView Pagină web și marketing:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Drepturi de autor © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger bazat pe formula de sincronizare generalizată
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 de Andy Ritger bazat pe formula de sincronizare generalizată
|
||||||
…and the many people making donations!\n\n AboutView …și persoanelor care fac donații!\n\n
|
…and the many people making donations!\n\n AboutView …și persoanelor care fac donații!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (clauza 4)
|
BSD (4-clause) AboutWindow BSD (clauza 4)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 russian x-vnd.Haiku-About 3702260021
|
1 russian x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView Ревизия
|
Revision AboutView Ревизия
|
||||||
The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
|
The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Все права защищены © 1999-2007 Michael C. Ring.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Все права защищены © 1999-2007 Michael C. Ring.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView Память:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…а также те, кого мы забыли упомянуть (простите!)\n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…а также те, кого мы забыли упомянуть (простите!)\n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-х пунктная)
|
BSD (2-clause) AboutWindow BSD (2-х пунктная)
|
||||||
Website & marketing:\n AboutView Вебсайт и маркетинг:\n
|
Website & marketing:\n AboutView Вебсайт и маркетинг:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Все права защищены © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Разработал Andy Ritger в 2001, основано на Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Разработал Andy Ritger в 2001, основано на Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …и многим другим людям, делающим пожертвования!\n\n
|
…and the many people making donations!\n\n AboutView …и многим другим людям, делающим пожертвования!\n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-х пунктная)
|
BSD (4-clause) AboutWindow BSD (4-х пунктная)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 swedish x-vnd.Haiku-About 2473434391
|
1 swedish x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Utgåva
|
Revision AboutView Utgåva
|
||||||
The Haikuware team and their bounty program\n AboutView Haikuware-teamet och deras belöningsprogram\n
|
The Haikuware team and their bounty program\n AboutView Haikuware-teamet och deras belöningsprogram\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Upphovsrätt © 1999-2007 Michael C. Ring. Med ensamrätt.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Upphovsrätt © 1999-2007 Michael C. Ring. Med ensamrätt.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Minne:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Alla rättigheter förbehållna.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Alla rättigheter förbehållna.
|
||||||
BSD (2-clause) AboutWindow BSD (2-clause)
|
BSD (2-clause) AboutWindow BSD (2-clause)
|
||||||
Website & marketing:\n AboutView Webbsida & marknadsföring:\n
|
Website & marketing:\n AboutView Webbsida & marknadsföring:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Upphovsrätt © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 av Andy Ritger, baserat på generaliserad tidsformel
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 av Andy Ritger, baserat på generaliserad tidsformel
|
||||||
…and the many people making donations!\n\n AboutView …och alla de som har skänkt pengar!\n\n
|
…and the many people making donations!\n\n AboutView …och alla de som har skänkt pengar!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (firmware)
|
Marvell (firmware) AboutWindow Marvell (firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 thai x-vnd.Haiku-About 3702260021
|
1 thai x-vnd.Haiku-About 1839294148
|
||||||
Revision AboutView ปรับปรุง
|
Revision AboutView ปรับปรุง
|
||||||
The Haikuware team and their bounty program\n AboutView ทีมไฮกุแวร์และโปรแกรมสนับสนุนของพวกเขา\n
|
The Haikuware team and their bounty program\n AboutView ทีมไฮกุแวร์และโปรแกรมสนับสนุนของพวกเขา\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView ลิขสิทธิ์© 1999-2007 Michael C. Ring สงวนลิขสิทธิ์.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView ลิขสิทธิ์© 1999-2007 Michael C. Ring สงวนลิขสิทธิ์.
|
||||||
@@ -71,7 +71,6 @@ Memory: AboutView หน่วยความจำ:
|
|||||||
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…และอาจมีบางอย่างที่เราลืมพูดถึง (ขออภัย!) \n\n
|
\n…and probably some more we forgot to mention (sorry!)\n\n AboutView \n…และอาจมีบางอย่างที่เราลืมพูดถึง (ขออภัย!) \n\n
|
||||||
BSD (2-clause) AboutWindow BSD (2-ข้อ)
|
BSD (2-clause) AboutWindow BSD (2-ข้อ)
|
||||||
Website & marketing:\n AboutView เว็บไซต์และการตลาด: \n
|
Website & marketing:\n AboutView เว็บไซต์และการตลาด: \n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView ลิขสิทธิ์ © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 โดย Andy Ritger ตาม Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 โดย Andy Ritger ตาม Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …และผู้คนมากมายบริจาคเงิน! \n\n
|
…and the many people making donations!\n\n AboutView …และผู้คนมากมายบริจาคเงิน! \n\n
|
||||||
BSD (4-clause) AboutWindow BSD (4-ข้อ)
|
BSD (4-clause) AboutWindow BSD (4-ข้อ)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 turkish x-vnd.Haiku-About 2473434391
|
1 turkish x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Revizyon
|
Revision AboutView Revizyon
|
||||||
The Haikuware team and their bounty program\n AboutView Haikuware takımı ve onların ödül programı\n
|
The Haikuware team and their bounty program\n AboutView Haikuware takımı ve onların ödül programı\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Telif hakkı © 1999-2007 Michael C. Ring. Tüm hakları saklıdır.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Telif hakkı © 1999-2007 Michael C. Ring. Tüm hakları saklıdır.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Bellek:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Telif hakkı © 2006-2015 Intel Corporation. Tüm hakları saklıdır.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Telif hakkı © 2006-2015 Intel Corporation. Tüm hakları saklıdır.
|
||||||
BSD (2-clause) AboutWindow BSD (2 koşullu)
|
BSD (2-clause) AboutWindow BSD (2 koşullu)
|
||||||
Website & marketing:\n AboutView Web sayfası & pazarlama:\n
|
Website & marketing:\n AboutView Web sayfası & pazarlama:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Telif hakkı © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Generalized Timing Formula temel alınarak Andy Ritger tarafından yazılmıştır.
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Generalized Timing Formula temel alınarak Andy Ritger tarafından yazılmıştır.
|
||||||
…and the many people making donations!\n\n AboutView …ve bağış yapan birçok kişi!\n\n
|
…and the many people making donations!\n\n AboutView …ve bağış yapan birçok kişi!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (firmware)
|
Marvell (firmware) AboutWindow Marvell (firmware)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-About 2473434391
|
1 ukrainian x-vnd.Haiku-About 610468518
|
||||||
Revision AboutView Ревізія
|
Revision AboutView Ревізія
|
||||||
The Haikuware team and their bounty program\n AboutView Команді Haikuware з їхньою програмою заохочень\n
|
The Haikuware team and their bounty program\n AboutView Команді Haikuware з їхньою програмою заохочень\n
|
||||||
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved.
|
Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. All rights reserved.
|
||||||
@@ -81,7 +81,6 @@ Memory: AboutView Пам’ять:
|
|||||||
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Всі права захищені.
|
Copyright © 2006-2015 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2015 Intel Corporation. Всі права захищені.
|
||||||
BSD (2-clause) AboutWindow BSD (2-х пунктна)
|
BSD (2-clause) AboutWindow BSD (2-х пунктна)
|
||||||
Website & marketing:\n AboutView Веб-сайт & маркетинг:\n
|
Website & marketing:\n AboutView Веб-сайт & маркетинг:\n
|
||||||
Copyright © 2018-2021, Frederic Cambus AboutView Copyright © 2018-2021, Frederic Cambus
|
|
||||||
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Розробив Andy Ritger в 2001, на основі Generalized Timing Formula
|
2001 by Andy Ritger based on the Generalized Timing Formula AboutView Розробив Andy Ritger в 2001, на основі Generalized Timing Formula
|
||||||
…and the many people making donations!\n\n AboutView …і багатьом тим, хто зробив пожертви!\n\n
|
…and the many people making donations!\n\n AboutView …і багатьом тим, хто зробив пожертви!\n\n
|
||||||
Marvell (firmware) AboutWindow Marvell (вбудоване ПЗ)
|
Marvell (firmware) AboutWindow Marvell (вбудоване ПЗ)
|
||||||
|
|||||||
@@ -84,5 +84,5 @@ Error creating output file VideoConsumer.cpp ファイルの出力に失敗し
|
|||||||
Cannot find a video source.\nYou need a webcam to use CodyCam. CodyCam ビデオソースが見つかりません。\nCodyCam には webcam が必要です。
|
Cannot find a video source.\nYou need a webcam to use CodyCam. CodyCam ビデオソースが見つかりません。\nCodyCam には webcam が必要です。
|
||||||
Logging in… VideoConsumer.cpp ログイン中...
|
Logging in… VideoConsumer.cpp ログイン中...
|
||||||
CodyCam System name CodyCam
|
CodyCam System name CodyCam
|
||||||
Error writing output file VideoConsumer.cpp ファイルの書き込みに失敗した
|
Error writing output file VideoConsumer.cpp ファイルの書き込みに失敗しました
|
||||||
Capture controls CodyCam キャプチャ制御
|
Capture controls CodyCam キャプチャ制御
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french application/x-vnd.Cortex.InfoView 4128967890
|
1 french application/x-vnd.Cortex.InfoView 2127561920
|
||||||
Description DormantNodeInfoView Description
|
Description DormantNodeInfoView Description
|
||||||
Byte order InfoView Boutisme
|
Byte order InfoView Boutisme
|
||||||
Connection InfoView Connexion
|
Connection InfoView Connexion
|
||||||
@@ -15,11 +15,13 @@ Max. instances DormantNodeInfoView Instances max.
|
|||||||
\n- Duration: FileNodeInfoView \n- Durée :
|
\n- Duration: FileNodeInfoView \n- Durée :
|
||||||
Latency LiveNodeInfoView Temps de latence
|
Latency LiveNodeInfoView Temps de latence
|
||||||
Media type InfoView Type de média
|
Media type InfoView Type de média
|
||||||
|
Live media node LiveNodeInfoView Nœud multimédia en direct
|
||||||
Node ID LiveNodeInfoView ID de nœud
|
Node ID LiveNodeInfoView ID de nœud
|
||||||
Resolution InfoView Résolution
|
Resolution InfoView Résolution
|
||||||
Chunk size InfoView Taille des fragments
|
Chunk size InfoView Taille des fragments
|
||||||
File format AppNodeInfoView Format de fichier
|
File format AppNodeInfoView Format de fichier
|
||||||
Orientation InfoView Orientation
|
Orientation InfoView Orientation
|
||||||
|
Live file-interface node FileNodeInfoView Nœud d'interface-fichier en direct
|
||||||
Channels InfoView Canaux
|
Channels InfoView Canaux
|
||||||
Sample rate InfoView Fréquence d’échantillonnage
|
Sample rate InfoView Fréquence d’échantillonnage
|
||||||
File format FileNodeInfoView Format de fichier
|
File format FileNodeInfoView Format de fichier
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 friulian application/x-vnd.Cortex.InfoView 3788145961
|
1 friulian application/x-vnd.Cortex.InfoView 2382053937
|
||||||
Offset InfoView Deviazion
|
Offset InfoView Deviazion
|
||||||
Description DormantNodeInfoView Descrizion
|
Description DormantNodeInfoView Descrizion
|
||||||
Byte order InfoView Ordin dai bytes
|
Byte order InfoView Ordin dai bytes
|
||||||
@@ -16,6 +16,7 @@ Buffer size InfoView Dimension memorie tampon
|
|||||||
\n- Quality: FileNodeInfoView \n- Cualitât:
|
\n- Quality: FileNodeInfoView \n- Cualitât:
|
||||||
Kinds LiveNodeInfoView Gjenars
|
Kinds LiveNodeInfoView Gjenars
|
||||||
Application AppNodeInfoView Aplicazion
|
Application AppNodeInfoView Aplicazion
|
||||||
|
Flavor flags DormantNodeInfoView Opzions dai savôrs
|
||||||
Max. instances DormantNodeInfoView Istancis massimis
|
Max. instances DormantNodeInfoView Istancis massimis
|
||||||
\n- Duration: FileNodeInfoView \n- Durade:
|
\n- Duration: FileNodeInfoView \n- Durade:
|
||||||
Dormant media node DormantNodeInfoView Grop multimediâl inatîf
|
Dormant media node DormantNodeInfoView Grop multimediâl inatîf
|
||||||
@@ -44,6 +45,7 @@ Format InfoView Formât
|
|||||||
Version AppNodeInfoView Version
|
Version AppNodeInfoView Version
|
||||||
AddOn ID DormantNodeInfoView ID de zonte
|
AddOn ID DormantNodeInfoView ID de zonte
|
||||||
Frame size InfoView Dimension ricuadri
|
Frame size InfoView Dimension ricuadri
|
||||||
|
Flavor ID DormantNodeInfoView ID dai savôrs
|
||||||
Run mode LiveNodeInfoView Modalitât di esecuzion
|
Run mode LiveNodeInfoView Modalitât di esecuzion
|
||||||
\n- Codec: FileNodeInfoView \n- Codec:
|
\n- Codec: FileNodeInfoView \n- Codec:
|
||||||
Port LiveNodeInfoView Puarte
|
Port LiveNodeInfoView Puarte
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french application/x-vnd.Cortex.support 1081380755
|
1 french application/x-vnd.Cortex.support 2769580762
|
||||||
Header has flags MediaString L’en-tête comporte des drapeaux
|
Header has flags MediaString L’en-tête comporte des drapeaux
|
||||||
Recording MediaString Enregistrement
|
Recording MediaString Enregistrement
|
||||||
(unknown format) MediaString (format inconnu)
|
(unknown format) MediaString (format inconnu)
|
||||||
@@ -24,6 +24,7 @@ Back-center MediaString Arrière-centre
|
|||||||
32 bit CMY MediaString 32 bits CMJ
|
32 bit CMY MediaString 32 bits CMJ
|
||||||
{0, plural, other{# bit integer}} MediaString {0, plural, other{Entier # bits}}
|
{0, plural, other{# bit integer}} MediaString {0, plural, other{Entier # bits}}
|
||||||
(unknown video format) MediaString (format vidéo inconnu)
|
(unknown video format) MediaString (format vidéo inconnu)
|
||||||
|
Video data between line %lu and %lu MediaString Données vidéo entre les lignes %lu et %lu
|
||||||
AVI format family MediaString Famille de format AVI
|
AVI format family MediaString Famille de format AVI
|
||||||
Homogenous buffers MediaString Tampons homogènes
|
Homogenous buffers MediaString Tampons homogènes
|
||||||
Interlaced MediaString Entrelacé
|
Interlaced MediaString Entrelacé
|
||||||
@@ -54,9 +55,11 @@ Front-right-center MediaString Avant-droit-centre
|
|||||||
Side-right MediaString Côté-droit
|
Side-right MediaString Côté-droit
|
||||||
kHz MediaString kHz
|
kHz MediaString kHz
|
||||||
Little endian MediaString Petit-boutien
|
Little endian MediaString Petit-boutien
|
||||||
|
(unknown matrix mask) MediaString (masque de matrice inconnu)
|
||||||
Side-left MediaString Côté-gauche
|
Side-left MediaString Côté-gauche
|
||||||
{0, plural, one{# byte per buffer} other{# bytes per buffer}} MediaString {0, plural, one{# octet par tampon} other{# octets par tampon}}
|
{0, plural, one{# byte per buffer} other{# bytes per buffer}} MediaString {0, plural, one{# octet par tampon} other{# octets par tampon}}
|
||||||
32 bit CMYK MediaString 32 bits CMJN
|
32 bit CMYK MediaString 32 bits CMJN
|
||||||
|
(unknown multistream format) MediaString (format multi-flux inconnu)
|
||||||
8 bit integer MediaString Entier 8 bits
|
8 bit integer MediaString Entier 8 bits
|
||||||
8 bit grayscale-index MediaString Palette de gris 8 bits
|
8 bit grayscale-index MediaString Palette de gris 8 bits
|
||||||
YCbCr444 MediaString YCbCr444
|
YCbCr444 MediaString YCbCr444
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ MPEG format family MediaString Сімейство форматів MPEG
|
|||||||
Center MediaString Центр
|
Center MediaString Центр
|
||||||
kb/s (max) MediaString кбіт/c (макс)
|
kb/s (max) MediaString кбіт/c (макс)
|
||||||
Monochrome MediaString Монохромний
|
Monochrome MediaString Монохромний
|
||||||
Private Be media type MediaString Приватний Be медіа тип
|
Private Be media type MediaString Приватний тип медіа Be
|
||||||
24 bit UVL MediaString 24-бітовий UVL
|
24 bit UVL MediaString 24-бітовий UVL
|
||||||
32 bit HSV MediaString 32-бітовий HSV
|
32 bit HSV MediaString 32-бітовий HSV
|
||||||
ID MediaString ID
|
ID MediaString ID
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Scan Status View スキャン
|
|||||||
Rescan Status View 再スキャン
|
Rescan Status View 再スキャン
|
||||||
file unavailable Status View ファイルは利用できません
|
file unavailable Status View ファイルは利用できません
|
||||||
Get info Pie View 情報を表示
|
Get info Pie View 情報を表示
|
||||||
DiskUsage System name DiskUsage
|
DiskUsage System name ディスク使用率
|
||||||
Created Info Window 作成日時
|
Created Info Window 作成日時
|
||||||
Modified Info Window 更新日時
|
Modified Info Window 更新日時
|
||||||
Abort Status View 中断
|
Abort Status View 中断
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 catalan; valencian x-vnd.Haiku-Terminal 247549485
|
1 catalan; valencian x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView Color cian ANSI
|
ANSI cyan color Terminal AppearancePrefView Color cian ANSI
|
||||||
Close other tabs Terminal TermWindow Tanca altres pestanyes
|
Close other tabs Terminal TermWindow Tanca altres pestanyes
|
||||||
Insert path Terminal TermView Insereix un camí
|
Insert path Terminal TermView Insereix un camí
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Codificació del text
|
|||||||
ANSI blue color Terminal AppearancePrefView Color blau ANSI
|
ANSI blue color Terminal AppearancePrefView Color blau ANSI
|
||||||
OK Terminal SetTitleWindow D'acord
|
OK Terminal SetTitleWindow D'acord
|
||||||
Edit Terminal TermWindow Edita
|
Edit Terminal TermWindow Edita
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help Imprimeix aquesta ajuda.\n -t, --title Estableix el títol de la finestra.\n -f, --fullscreen Inicia la pantalla completa.\n -w, --working-directory Estableix el directori de treball inicial.\n
|
||||||
Select all Terminal TermWindow Selecciona-ho tot
|
Select all Terminal TermWindow Selecciona-ho tot
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Confirmeu-ne la sortida si hi ha programes actius.
|
Confirm exit if active programs exist Terminal AppearancePrefView Confirmeu-ne la sortida si hi ha programes actius.
|
||||||
\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. Terminal ToolTips \t%d\t-\tEl directori de treball actual del procés actiu a la\n\t\t\tpestanya actual. Opcionalment es pot especificar el nombre màxim\n\t\t\tde components de camí. P. ex.: "%2d", per a un màxim de dos components.\n\t%T\t-\tEl nom de l'aplicació de Terminal per a la configuració de la llengua actual.\n\t%e\t-\tLa codificació de la pestanya actual. No es mostra per a UTF-8.\n\t%i\t-\tL'índex de la finestra.\n\t%p\t-\tEl nom del procés actiu a la pestanya actual.\n\t%t\t-\tEl títol de la pestanya actual.
|
\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. Terminal ToolTips \t%d\t-\tEl directori de treball actual del procés actiu a la\n\t\t\tpestanya actual. Opcionalment es pot especificar el nombre màxim\n\t\t\tde components de camí. P. ex.: "%2d", per a un màxim de dos components.\n\t%T\t-\tEl nom de l'aplicació de Terminal per a la configuració de la llengua actual.\n\t%e\t-\tLa codificació de la pestanya actual. No es mostra per a UTF-8.\n\t%i\t-\tL'índex de la finestra.\n\t%p\t-\tEl nom del procés actiu a la pestanya actual.\n\t%t\t-\tEl títol de la pestanya actual.
|
||||||
Solarized Dark Terminal colors scheme Fosc solaritzat
|
Solarized Dark Terminal colors scheme Fosc solaritzat
|
||||||
Copy Terminal TermWindow Copia
|
Copy Terminal TermWindow Copia
|
||||||
ANSI bright green color Terminal AppearancePrefView Color verd brillant ANSI
|
ANSI bright green color Terminal AppearancePrefView Color verd brillant ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help Imprimeix aquesta ajuda.\n -t, --title Estableix el títol de la finestra.\n -f, --fullscreen Pantalla completa\n -w, --working-directory Estableix el directori de treball inicial.
|
|
||||||
ANSI white color Terminal AppearancePrefView Color blanc ANSI
|
ANSI white color Terminal AppearancePrefView Color blanc ANSI
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Edita el títol de la pestanya...
|
Edit tab title… Terminal TermWindow Edita el títol de la pestanya...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 czech x-vnd.Haiku-Terminal 2062206461
|
1 czech x-vnd.Haiku-Terminal 3702716692
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI azurová
|
ANSI cyan color Terminal AppearancePrefView ANSI azurová
|
||||||
Close other tabs Terminal TermWindow Zavřít ostatní panely
|
Close other tabs Terminal TermWindow Zavřít ostatní panely
|
||||||
Insert path Terminal TermView Vložit cestu
|
Insert path Terminal TermView Vložit cestu
|
||||||
@@ -13,13 +13,13 @@ Confirm exit if active programs exist Terminal AppearancePrefView Protvrdit uko
|
|||||||
Solarized Dark Terminal colors scheme Solarizovaná tmavá
|
Solarized Dark Terminal colors scheme Solarizovaná tmavá
|
||||||
Copy Terminal TermWindow Kopírovat
|
Copy Terminal TermWindow Kopírovat
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI světle zelená
|
ANSI bright green color Terminal AppearancePrefView ANSI světle zelená
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help zobrazit tuto nápovědu\n -t, --title nastavit titulek okna\n -f, --fullscreen spustit na celou obrazovku\n -w, --working-directory nastavit pracovní adresář
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI bílá
|
ANSI white color Terminal AppearancePrefView ANSI bílá
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Upravit nadpis panelu...
|
Edit tab title… Terminal TermWindow Upravit nadpis panelu...
|
||||||
Settings Terminal TermWindow Nastavení
|
Settings Terminal TermWindow Nastavení
|
||||||
Print Terminal TermWindow Tisk
|
Print Terminal TermWindow Tisk
|
||||||
%app% settings Terminal PrefWindow window title %app% nastavení
|
%app% settings Terminal PrefWindow window title %app% nastavení
|
||||||
|
\t%d\t-\tThe current working directory of the active process.\n\t\t\tOptionally the maximum number of path components can be\n\t\t\tspecified. E.g. '%2d' for at most two components.\n\t%i\t-\tThe index of the tab.\n\t%e\t-\tThe encoding of the current tab. Not shown for UTF-8.\n\t%p\t-\tThe name of the active process. Terminal ToolTips \t%d\t-\tAktuální pracovní adresář aktivních procesů.\n\t\t\tVolitelně může být upřesněn maximální počet komponent cesty.\n\t\t\tNapř. '%2d' pro maximálně dva adresáře.\n\t%i\t-\tČíslo záložky.\n\t%e\t-\tKódování aktuální záložky. Nezobrazuje se pro UTF-8.\n\t%p\t-\tNázev aktivního procesu.
|
||||||
ANSI black color Terminal AppearancePrefView ANSI černá
|
ANSI black color Terminal AppearancePrefView ANSI černá
|
||||||
Use default Terminal SetTitleWindow Použít výchozí
|
Use default Terminal SetTitleWindow Použít výchozí
|
||||||
Close tab Terminal TermWindow Zavřít panel
|
Close tab Terminal TermWindow Zavřít panel
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 danish x-vnd.Haiku-Terminal 2062206461
|
1 danish x-vnd.Haiku-Terminal 1222406372
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI cyan farve
|
ANSI cyan color Terminal AppearancePrefView ANSI cyan farve
|
||||||
Close other tabs Terminal TermWindow Luk andre faneblade
|
Close other tabs Terminal TermWindow Luk andre faneblade
|
||||||
Insert path Terminal TermView Indsæt sti
|
Insert path Terminal TermView Indsæt sti
|
||||||
@@ -13,7 +13,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Bekræft lukn
|
|||||||
Solarized Dark Terminal colors scheme Solariseret mørkt
|
Solarized Dark Terminal colors scheme Solariseret mørkt
|
||||||
Copy Terminal TermWindow Kopiér
|
Copy Terminal TermWindow Kopiér
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI klar grøn farve
|
ANSI bright green color Terminal AppearancePrefView ANSI klar grøn farve
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help vis denne hjælp\n -t, --title indstil vinduets titel\n -f, --fullscreen start fuldskærm\n -w, --working-directory indstil indledende arbejdsmappe
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI hvid farve
|
ANSI white color Terminal AppearancePrefView ANSI hvid farve
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Rediger fanebladstitel…
|
Edit tab title… Terminal TermWindow Rediger fanebladstitel…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 german x-vnd.Haiku-Terminal 247549485
|
1 german x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI-Farbe Blaugrün
|
ANSI cyan color Terminal AppearancePrefView ANSI-Farbe Blaugrün
|
||||||
Close other tabs Terminal TermWindow Andere Reiter schließen
|
Close other tabs Terminal TermWindow Andere Reiter schließen
|
||||||
Insert path Terminal TermView Pfad einfügen
|
Insert path Terminal TermView Pfad einfügen
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Kodierung
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI-Farbe Blau
|
ANSI blue color Terminal AppearancePrefView ANSI-Farbe Blau
|
||||||
OK Terminal SetTitleWindow OK
|
OK Terminal SetTitleWindow OK
|
||||||
Edit Terminal TermWindow Bearbeiten
|
Edit Terminal TermWindow Bearbeiten
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help Diese Hilfe ausgeben\n -t, --title Fenstertitel setzen\n -f, --fullscreen Im Vollbild-Modus starten\n -w, --working-directory Setzt das anfängliche Arbeitsverzeichnis\n
|
||||||
Select all Terminal TermWindow Alles auswählen
|
Select all Terminal TermWindow Alles auswählen
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Beenden bestätigen, falls noch aktive Programme laufen
|
Confirm exit if active programs exist Terminal AppearancePrefView Beenden bestätigen, falls noch aktive Programme laufen
|
||||||
\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. Terminal ToolTips \t%d\t-\tArbeitsverzeichnis des gerade im aktuellen Reiter\n\t\t\tlaufenden Prozesses. Optional kann auch die maximale\n\t\t\tAnzahl der Pfadkomponenten angegeben werden.\n\t\t\tZum Beispiel: '%2d' für maximal zwei Komponenten.\n\t%T\t-\tName der Terminalanwendung in der aktuellen Systemsprache\n\t%e\t-\tKodierung des aktuellen Reiters. Unterdrückt bei UTF-8\n\t%i\t-\tLaufende Nummer des Fensters\n\t%p\t-\tName des laufenden Prozesses im aktuellen Reiter\n\t%t\t-\tTitel des aktuellen Reiters\n
|
\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. Terminal ToolTips \t%d\t-\tArbeitsverzeichnis des gerade im aktuellen Reiter\n\t\t\tlaufenden Prozesses. Optional kann auch die maximale\n\t\t\tAnzahl der Pfadkomponenten angegeben werden.\n\t\t\tZum Beispiel: '%2d' für maximal zwei Komponenten.\n\t%T\t-\tName der Terminalanwendung in der aktuellen Systemsprache\n\t%e\t-\tKodierung des aktuellen Reiters. Unterdrückt bei UTF-8\n\t%i\t-\tLaufende Nummer des Fensters\n\t%p\t-\tName des laufenden Prozesses im aktuellen Reiter\n\t%t\t-\tTitel des aktuellen Reiters\n
|
||||||
Solarized Dark Terminal colors scheme Solarized dunkel
|
Solarized Dark Terminal colors scheme Solarized dunkel
|
||||||
Copy Terminal TermWindow Kopieren
|
Copy Terminal TermWindow Kopieren
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI-Farbe Hellgrün
|
ANSI bright green color Terminal AppearancePrefView ANSI-Farbe Hellgrün
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help Diese Hilfe ausgeben\n -t, --title Fenstertitel setzen\n -f, --fullscreen Im Vollbild-Modus starten\n -w, --working-directory Setzt das anfängliche Arbeitsverzeichnis
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI-Farbe Weiß (Hellgrau)
|
ANSI white color Terminal AppearancePrefView ANSI-Farbe Weiß (Hellgrau)
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Reiter umbenennen ...
|
Edit tab title… Terminal TermWindow Reiter umbenennen ...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-Terminal 247549485
|
1 greek, modern (1453-) x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView Γαλάζιο χρώμα ANSI
|
ANSI cyan color Terminal AppearancePrefView Γαλάζιο χρώμα ANSI
|
||||||
Close other tabs Terminal TermWindow Κλείσιμο άλλων καρτελών
|
Close other tabs Terminal TermWindow Κλείσιμο άλλων καρτελών
|
||||||
Insert path Terminal TermView Εισάγετε την διαδρομή
|
Insert path Terminal TermView Εισάγετε την διαδρομή
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Κωδικοποίηση κειμένου
|
|||||||
ANSI blue color Terminal AppearancePrefView Μπλε χρώμα ANSI
|
ANSI blue color Terminal AppearancePrefView Μπλε χρώμα ANSI
|
||||||
OK Terminal SetTitleWindow Εντάξει
|
OK Terminal SetTitleWindow Εντάξει
|
||||||
Edit Terminal TermWindow Επεξεργασία
|
Edit Terminal TermWindow Επεξεργασία
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help αυτό το μήνυμα βοήθειας\n -t, --title ορισμός τίτλου παραθύρου\n -f, --fullscreen έναρξη σε λειτουργία πλήρους οθόνης\n -w, --working-directory ορισμός αρχικού καταλόγου εργασίας\n
|
||||||
Select all Terminal TermWindow Επιλογή όλων
|
Select all Terminal TermWindow Επιλογή όλων
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Επιβεβαίωση εξόδου αν υπάρχουν ενεργά προγράμματα
|
Confirm exit if active programs exist Terminal AppearancePrefView Επιβεβαίωση εξόδου αν υπάρχουν ενεργά προγράμματα
|
||||||
\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. 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Ο τίτλος της τρέχουσας καρτέλας.
|
\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. 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Ο τίτλος της τρέχουσας καρτέλας.
|
||||||
Solarized Dark Terminal colors scheme Έκλειψη Σελήνης
|
Solarized Dark Terminal colors scheme Έκλειψη Σελήνης
|
||||||
Copy Terminal TermWindow Αντιγραφή
|
Copy Terminal TermWindow Αντιγραφή
|
||||||
ANSI bright green color Terminal AppearancePrefView Ανοιχτό πράσινο χρώμα ANSI
|
ANSI bright green color Terminal AppearancePrefView Ανοιχτό πράσινο χρώμα ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help εμφάνιση αυτής της βοήθειας\n -t, --title ορισμός τίτλου παραθύρου\n -f, --fullscreen εκκίνηση σε λειτουργία πλήρους οθόνης\n -w, --working-directory ορισμός αρχικού καταλόγου εργασίας
|
|
||||||
ANSI white color Terminal AppearancePrefView Λευκό χρώμα ANSI
|
ANSI white color Terminal AppearancePrefView Λευκό χρώμα ANSI
|
||||||
Retro Terminal colors scheme Ρετρό
|
Retro Terminal colors scheme Ρετρό
|
||||||
Edit tab title… Terminal TermWindow Επεξεργασία τίτλου καρτέλας…
|
Edit tab title… Terminal TermWindow Επεξεργασία τίτλου καρτέλας…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 esperanto x-vnd.Haiku-Terminal 1147089150
|
1 esperanto x-vnd.Haiku-Terminal 307289061
|
||||||
Close other tabs Terminal TermWindow Fermi aliajn langetojn
|
Close other tabs Terminal TermWindow Fermi aliajn langetojn
|
||||||
Insert path Terminal TermView Enigi itineron
|
Insert path Terminal TermView Enigi itineron
|
||||||
Terminal couldn't start the shell. Sorry. Terminal TermApp Pardonu, sed la terminalo ne povis komenci la ŝelon.
|
Terminal couldn't start the shell. Sorry. Terminal TermApp Pardonu, sed la terminalo ne povis komenci la ŝelon.
|
||||||
@@ -10,7 +10,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Konfirmi ĉes
|
|||||||
\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. Terminal ToolTips \t%d\t-\tLa nuna labora dosierujo de la aktiva procezo en la\n\t\t\taktuala langeto. Nedevige la maksimuma kvanto de eroj de itinero\n\t\t\tpovas esti donita. Ekz. '%2d' por almenaŭ du eroj.\n\t%T\t-\tLa nomo de la programo en terminalo por la aktuala lokaĵaro.\n\t%e\t-\tLa kodprezento de la aktuala langeto. Ne montrata por UTF-8.\n\t%i\t-\tLa indekso de la fenestro.\n\t%p\t-\tLa nomo de la aktiva procezo en la aktuala langeto.\n\t%t\t-\tLa titolo de la aktuala langeto.
|
\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. Terminal ToolTips \t%d\t-\tLa nuna labora dosierujo de la aktiva procezo en la\n\t\t\taktuala langeto. Nedevige la maksimuma kvanto de eroj de itinero\n\t\t\tpovas esti donita. Ekz. '%2d' por almenaŭ du eroj.\n\t%T\t-\tLa nomo de la programo en terminalo por la aktuala lokaĵaro.\n\t%e\t-\tLa kodprezento de la aktuala langeto. Ne montrata por UTF-8.\n\t%i\t-\tLa indekso de la fenestro.\n\t%p\t-\tLa nomo de la aktiva procezo en la aktuala langeto.\n\t%t\t-\tLa titolo de la aktuala langeto.
|
||||||
Solarized Dark Terminal colors scheme Sunuma Malhelo
|
Solarized Dark Terminal colors scheme Sunuma Malhelo
|
||||||
Copy Terminal TermWindow Kopii
|
Copy Terminal TermWindow Kopii
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help montri ĉi helpon\n -t, --title atribui fenestran titolon\n -f, --fullscreen lanĉi plenekrane\n -w, --working-directory atribui komencan laboran dosierujon
|
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Redakti la titolon de la langeto…
|
Edit tab title… Terminal TermWindow Redakti la titolon de la langeto…
|
||||||
Settings Terminal TermWindow Agordo
|
Settings Terminal TermWindow Agordo
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 spanish; castilian x-vnd.Haiku-Terminal 2062206461
|
1 spanish; castilian x-vnd.Haiku-Terminal 1222406372
|
||||||
ANSI cyan color Terminal AppearancePrefView Color ANSI cian
|
ANSI cyan color Terminal AppearancePrefView Color ANSI cian
|
||||||
Close other tabs Terminal TermWindow Cerrar otras pestañas
|
Close other tabs Terminal TermWindow Cerrar otras pestañas
|
||||||
Insert path Terminal TermView Insertar la ruta de acceso
|
Insert path Terminal TermView Insertar la ruta de acceso
|
||||||
@@ -13,7 +13,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Confirmar la
|
|||||||
Solarized Dark Terminal colors scheme Oscuridad solarizada
|
Solarized Dark Terminal colors scheme Oscuridad solarizada
|
||||||
Copy Terminal TermWindow Copiar
|
Copy Terminal TermWindow Copiar
|
||||||
ANSI bright green color Terminal AppearancePrefView Color ANSI verde claro
|
ANSI bright green color Terminal AppearancePrefView Color ANSI verde claro
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help muestra este mensaje de ayuda\n -t, --title establece el título de la ventana\n -f, --fullscreen comienza en pantalla completa\n -w, --working-directory establece el directorio de trabajo inicial
|
|
||||||
ANSI white color Terminal AppearancePrefView Color ANSI blanco
|
ANSI white color Terminal AppearancePrefView Color ANSI blanco
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Cambiar el título de la pestaña
|
Edit tab title… Terminal TermWindow Cambiar el título de la pestaña
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 finnish x-vnd.Haiku-Terminal 247549485
|
1 finnish x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI-sinivihreä väri
|
ANSI cyan color Terminal AppearancePrefView ANSI-sinivihreä väri
|
||||||
Close other tabs Terminal TermWindow Sulje muut välilehdet
|
Close other tabs Terminal TermWindow Sulje muut välilehdet
|
||||||
Insert path Terminal TermView Lisää polku
|
Insert path Terminal TermView Lisää polku
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Tekstikoodaus
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI-siniväri
|
ANSI blue color Terminal AppearancePrefView ANSI-siniväri
|
||||||
OK Terminal SetTitleWindow Valmis
|
OK Terminal SetTitleWindow Valmis
|
||||||
Edit Terminal TermWindow Muokkaa
|
Edit Terminal TermWindow Muokkaa
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help tulosta tämä opaste\n -t, --title aseta ikkunaotsikko\n -f, --fullscreen käynnistä kokonäyttö\n -w, --working-directory aseta alustava työhakemisto\n
|
||||||
Select all Terminal TermWindow Valitse kaikki
|
Select all Terminal TermWindow Valitse kaikki
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Vahvista poistuminen, jos ohjelmia on käytössä
|
Confirm exit if active programs exist Terminal AppearancePrefView Vahvista poistuminen, jos ohjelmia on käytössä
|
||||||
\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. Terminal ToolTips \t%d\t-\tAktiivin prosessin nykyinen työhakemisto nykyisessä\n\t\t\tvälilehdessä. Valinnaisesti määriteltävien polkukomponenttien\n\t\t\tenimmäismäärä. Esim.: '%2d' enintään kahdelle komponentille.\n\t%T\t-\tPääteikkunasovelluksen nimi nykyisessä paikallisasetuksessa.\n\t%e\t-\tNykyisen välilehden koodaus. Ei näytetä UTF-8-koodaukselle.\n\t%i\t-\tIkkunahakemisto.\n\t%p\t-\tAktiivin prosessin nimi nykyisessä välilehdessä.\n\t%t\t-\tNykyisen välilehden otsikko.
|
\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. Terminal ToolTips \t%d\t-\tAktiivin prosessin nykyinen työhakemisto nykyisessä\n\t\t\tvälilehdessä. Valinnaisesti määriteltävien polkukomponenttien\n\t\t\tenimmäismäärä. Esim.: '%2d' enintään kahdelle komponentille.\n\t%T\t-\tPääteikkunasovelluksen nimi nykyisessä paikallisasetuksessa.\n\t%e\t-\tNykyisen välilehden koodaus. Ei näytetä UTF-8-koodaukselle.\n\t%i\t-\tIkkunahakemisto.\n\t%p\t-\tAktiivin prosessin nimi nykyisessä välilehdessä.\n\t%t\t-\tNykyisen välilehden otsikko.
|
||||||
Solarized Dark Terminal colors scheme Käänteisen tumma
|
Solarized Dark Terminal colors scheme Käänteisen tumma
|
||||||
Copy Terminal TermWindow Kopioi
|
Copy Terminal TermWindow Kopioi
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI-vaaleanvihreä väri
|
ANSI bright green color Terminal AppearancePrefView ANSI-vaaleanvihreä väri
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help tulosta tämä ohje\n -t, --title asta ikkunan otsikko\n -f, --fullscreen käynnistä kokonäyttö\n -w, --working-directory aseta alustaa työhakemisto
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI-valkoinen väri
|
ANSI white color Terminal AppearancePrefView ANSI-valkoinen väri
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Muokkaa välilehtiotsikkoa...
|
Edit tab title… Terminal TermWindow Muokkaa välilehtiotsikkoa...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Haiku-Terminal 247549485
|
1 french x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView Couleur cyan ANSI
|
ANSI cyan color Terminal AppearancePrefView Couleur cyan ANSI
|
||||||
Close other tabs Terminal TermWindow Fermer les autres onglets
|
Close other tabs Terminal TermWindow Fermer les autres onglets
|
||||||
Insert path Terminal TermView Insérer un chemin de recherche
|
Insert path Terminal TermView Insérer un chemin de recherche
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Encodage texte
|
|||||||
ANSI blue color Terminal AppearancePrefView Couleur bleu ANSI
|
ANSI blue color Terminal AppearancePrefView Couleur bleu ANSI
|
||||||
OK Terminal SetTitleWindow OK
|
OK Terminal SetTitleWindow OK
|
||||||
Edit Terminal TermWindow Éditer
|
Edit Terminal TermWindow Éditer
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help affiche cette aide\n -t, --title défini le titre de la fenêtre\n -f, --fullscreen démarre en plein écran\n -w, --working-directory défini le répertoire de travail initial\n
|
||||||
Select all Terminal TermWindow Sélectionner tout
|
Select all Terminal TermWindow Sélectionner tout
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Demander une confirmation à la fermeture si un programme est actif
|
Confirm exit if active programs exist Terminal AppearancePrefView Demander une confirmation à la fermeture si un programme est actif
|
||||||
\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. Terminal ToolTips \t%d\t-\tLe répertoire de travail courant du processus actif dans\n\t\t\tl’onglet courant. En option, le nombre maximum d’éléments\n\t\t\tdu chemin peut être spécifié. Par exemple « %2d » pour au plus\n\t\t\tdeux éléments.\n\t%T\t-\tLe nom de l’application Terminal pour la langue active.\n\t%e\t-\tLe codage de l’onglet courant. Non affiché pour UTF-8.\n\t%i\t-\tL’index de la fenêtre.\n\t%p\t-\tLe nom du processus actif dans l’onglet courant.\n\t%t\t-\tLe titre de l’onglet courant.
|
\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. Terminal ToolTips \t%d\t-\tLe répertoire de travail courant du processus actif dans\n\t\t\tl’onglet courant. En option, le nombre maximum d’éléments\n\t\t\tdu chemin peut être spécifié. Par exemple « %2d » pour au plus\n\t\t\tdeux éléments.\n\t%T\t-\tLe nom de l’application Terminal pour la langue active.\n\t%e\t-\tLe codage de l’onglet courant. Non affiché pour UTF-8.\n\t%i\t-\tL’index de la fenêtre.\n\t%p\t-\tLe nom du processus actif dans l’onglet courant.\n\t%t\t-\tLe titre de l’onglet courant.
|
||||||
Solarized Dark Terminal colors scheme Ombragé
|
Solarized Dark Terminal colors scheme Ombragé
|
||||||
Copy Terminal TermWindow Copier
|
Copy Terminal TermWindow Copier
|
||||||
ANSI bright green color Terminal AppearancePrefView Couleur vert clair ANSI
|
ANSI bright green color Terminal AppearancePrefView Couleur vert clair ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help affiche cette aide\n -t, --title défini le titre de la fenêtre\n -f, --fullscreen démarre en plein écran\n -w, --working-directory défini le répertoire de travail initial
|
|
||||||
ANSI white color Terminal AppearancePrefView Couleur blanc ANSI
|
ANSI white color Terminal AppearancePrefView Couleur blanc ANSI
|
||||||
Retro Terminal colors scheme Rétro
|
Retro Terminal colors scheme Rétro
|
||||||
Edit tab title… Terminal TermWindow Éditer le titre de l’onglet…
|
Edit tab title… Terminal TermWindow Éditer le titre de l’onglet…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 friulian x-vnd.Haiku-Terminal 247549485
|
1 friulian x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView Colôr ciano ANSI
|
ANSI cyan color Terminal AppearancePrefView Colôr ciano ANSI
|
||||||
Close other tabs Terminal TermWindow Siere altris schedis
|
Close other tabs Terminal TermWindow Siere altris schedis
|
||||||
Insert path Terminal TermView Inserìs percors
|
Insert path Terminal TermView Inserìs percors
|
||||||
@@ -7,15 +7,15 @@ Text encoding Terminal TermWindow Codifiche dal test
|
|||||||
ANSI blue color Terminal AppearancePrefView Colôr blu ANSI
|
ANSI blue color Terminal AppearancePrefView Colôr blu ANSI
|
||||||
OK Terminal SetTitleWindow Va ben
|
OK Terminal SetTitleWindow Va ben
|
||||||
Edit Terminal TermWindow Modifiche
|
Edit Terminal TermWindow Modifiche
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help stampe chest jutori\n -t, --title stabilìs il titul dal barcon\n -f, --fullscreen invie a plen visôr\n -w, --working-directory stabilìs la cartele di lavôr iniziâl\n
|
||||||
Select all Terminal TermWindow Selezione dut
|
Select all Terminal TermWindow Selezione dut
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Domande conferme pe jessude se a esistin programs atîfs
|
Confirm exit if active programs exist Terminal AppearancePrefView Domande conferme pe jessude se a esistin programs atîfs
|
||||||
\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. Terminal ToolTips \t%d\t-\tLa cartele di lavôr atuâl dal procès atîf te\n\t\t\tschede atuâl. In mût opzionâl, il massim numar di components di percors\n\t\t\tal pues jessi specificât. P.e. '%2d' par massim doi components.\n\t%T\t-\tIl non de aplicazion Terminal te localizazion atuâl.\n\t%e\t-\tLa codifiche de schede atuâl. No mostrât se UTF-8.\n\t%i\t-\tL'indicadôr dal barcon.\n\t%p\t-\tIl non dal procès atîf te schede atuâl .\n\t%t\t-\tIl titul de schede atuâl.
|
\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. Terminal ToolTips \t%d\t-\tLa cartele di lavôr atuâl dal procès atîf te\n\t\t\tschede atuâl. In mût opzionâl, il massim numar di components di percors\n\t\t\tal pues jessi specificât. P.e. '%2d' par massim doi components.\n\t%T\t-\tIl non de aplicazion Terminal te localizazion atuâl.\n\t%e\t-\tLa codifiche de schede atuâl. No mostrât se UTF-8.\n\t%i\t-\tL'indicadôr dal barcon.\n\t%p\t-\tIl non dal procès atîf te schede atuâl .\n\t%t\t-\tIl titul de schede atuâl.
|
||||||
Solarized Dark Terminal colors scheme Solarizât (Scûr)
|
Solarized Dark Terminal colors scheme Solarizât (Scûr)
|
||||||
Copy Terminal TermWindow Copie
|
Copy Terminal TermWindow Copie
|
||||||
ANSI bright green color Terminal AppearancePrefView Colôr vert lusorôs ANSI
|
ANSI bright green color Terminal AppearancePrefView Colôr vert lusorôs ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help stampe chest jutori\n -t, --title stabilìs il titul dal barcon\n -f, --fullscreen invie a plen visôr\n -w, --working-directory stabilìs la cartele di lavôr iniziâl
|
|
||||||
ANSI white color Terminal AppearancePrefView Colôr blanc ANSI
|
ANSI white color Terminal AppearancePrefView Colôr blanc ANSI
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Passât
|
||||||
Edit tab title… Terminal TermWindow Modifiche titul schede…
|
Edit tab title… Terminal TermWindow Modifiche titul schede…
|
||||||
Settings Terminal TermWindow Impostazions
|
Settings Terminal TermWindow Impostazions
|
||||||
Print Terminal TermWindow Stampe
|
Print Terminal TermWindow Stampe
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hungarian x-vnd.Haiku-Terminal 247549485
|
1 hungarian x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI cián
|
ANSI cyan color Terminal AppearancePrefView ANSI cián
|
||||||
Close other tabs Terminal TermWindow Többi lap bezárása
|
Close other tabs Terminal TermWindow Többi lap bezárása
|
||||||
Insert path Terminal TermView Útvonal beszúrása
|
Insert path Terminal TermView Útvonal beszúrása
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Szöveg kódolása
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI kék
|
ANSI blue color Terminal AppearancePrefView ANSI kék
|
||||||
OK Terminal SetTitleWindow Rendben
|
OK Terminal SetTitleWindow Rendben
|
||||||
Edit Terminal TermWindow Szerkesztés
|
Edit Terminal TermWindow Szerkesztés
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --helpez a súgó\n-t, --titleablak címének megadása\n-f, --fullscreenindítás teljesképernyős módban\n-w, --working-directoryindítási mappa megadása\n
|
||||||
Select all Terminal TermWindow Összes kijelölése
|
Select all Terminal TermWindow Összes kijelölése
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Kilépés megerősítése ha van futó program
|
Confirm exit if active programs exist Terminal AppearancePrefView Kilépés megerősítése ha van futó program
|
||||||
\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. Terminal ToolTips \t%d\t-\tA jelenlegi folyamat munka mappája az aktuális fülön.\n\t\t\tOpcionálisan megadható a maximális útvonal-elemek száma.\n\t\t\tPéldául '%2d' a legutolsó kettő elem.\n\t%T\t-\tA Terminal neve az aktuális nyelven.\n\t%e\t-\tA jelenlegi fül kódolása. UTF-8 esetén nem látszik.\n\t%i\t-\tAz ablak sorszáma.\n\t%p\t-\tAz aktív folyamat neve az aktuális fülön.\n\t%t\t-\tA jelenlegi fül címe.
|
\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. Terminal ToolTips \t%d\t-\tA jelenlegi folyamat munka mappája az aktuális fülön.\n\t\t\tOpcionálisan megadható a maximális útvonal-elemek száma.\n\t\t\tPéldául '%2d' a legutolsó kettő elem.\n\t%T\t-\tA Terminal neve az aktuális nyelven.\n\t%e\t-\tA jelenlegi fül kódolása. UTF-8 esetén nem látszik.\n\t%i\t-\tAz ablak sorszáma.\n\t%p\t-\tAz aktív folyamat neve az aktuális fülön.\n\t%t\t-\tA jelenlegi fül címe.
|
||||||
Solarized Dark Terminal colors scheme Erős sötét színek
|
Solarized Dark Terminal colors scheme Erős sötét színek
|
||||||
Copy Terminal TermWindow Másolás
|
Copy Terminal TermWindow Másolás
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI fényes zöld
|
ANSI bright green color Terminal AppearancePrefView ANSI fényes zöld
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help a súgó kiírása\n-t, --title ablak címének megadása\n-f, --fullscreen indítás teljesképernyős módban\n-w, --working-directory kezdő mappa megadása
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI fehér
|
ANSI white color Terminal AppearancePrefView ANSI fehér
|
||||||
Retro Terminal colors scheme Retró
|
Retro Terminal colors scheme Retró
|
||||||
Edit tab title… Terminal TermWindow Lap címének szerkesztése…
|
Edit tab title… Terminal TermWindow Lap címének szerkesztése…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 italian x-vnd.Haiku-Terminal 2062206461
|
1 italian x-vnd.Haiku-Terminal 1222406372
|
||||||
ANSI cyan color Terminal AppearancePrefView Colore ANSI ciano
|
ANSI cyan color Terminal AppearancePrefView Colore ANSI ciano
|
||||||
Close other tabs Terminal TermWindow Chiudi altri pannelli
|
Close other tabs Terminal TermWindow Chiudi altri pannelli
|
||||||
Insert path Terminal TermView Inserisci percorso
|
Insert path Terminal TermView Inserisci percorso
|
||||||
@@ -13,7 +13,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Chiedi confer
|
|||||||
Solarized Dark Terminal colors scheme Solarizzato (Scuro)
|
Solarized Dark Terminal colors scheme Solarizzato (Scuro)
|
||||||
Copy Terminal TermWindow Copia
|
Copy Terminal TermWindow Copia
|
||||||
ANSI bright green color Terminal AppearancePrefView Colore ANSI verde vivido
|
ANSI bright green color Terminal AppearancePrefView Colore ANSI verde vivido
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help mostra questo aiuto -t, --title imposta il titolo della finestra -f, --fullscreen avvia a schermo intero -w, --working-directory imposta cartella iniziale di lavoro
|
|
||||||
ANSI white color Terminal AppearancePrefView Colore ANSI bianco
|
ANSI white color Terminal AppearancePrefView Colore ANSI bianco
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Modifica titolo pannello...
|
Edit tab title… Terminal TermWindow Modifica titolo pannello...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 japanese x-vnd.Haiku-Terminal 247549485
|
1 japanese x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI シアン
|
ANSI cyan color Terminal AppearancePrefView ANSI シアン
|
||||||
Close other tabs Terminal TermWindow 他のタブを閉じる
|
Close other tabs Terminal TermWindow 他のタブを閉じる
|
||||||
Insert path Terminal TermView パスの挿入
|
Insert path Terminal TermView パスの挿入
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow 文字コード
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI ブルー
|
ANSI blue color Terminal AppearancePrefView ANSI ブルー
|
||||||
OK Terminal SetTitleWindow OK
|
OK Terminal SetTitleWindow OK
|
||||||
Edit Terminal TermWindow 編集
|
Edit Terminal TermWindow 編集
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n
|
||||||
Select all Terminal TermWindow すべて選択
|
Select all Terminal TermWindow すべて選択
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView 実行中のプログラムがある場合、終了時に確認する
|
Confirm exit if active programs exist Terminal AppearancePrefView 実行中のプログラムがある場合、終了時に確認する
|
||||||
\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. Terminal ToolTips \t%d\t-\tタブで動作中のプロセスの作業中フォルダー\n\t\t\tオプションでパスの最大要素数を指定できます。\n\t\t\t例. '%2d' は最大 2 つの要素を示します。\n\t%T\t-\t現在のロケールでの Terminal アプリケーション名\n\t%e\t-\tタブの文字コード。UTF-8 の場合は非表示です。\n\t%i\t-\tウィンドウのインデックス\n\t%p\t-\tタブ内で実行中のプロセス名\n\t%t\t-\tタブのタイトル
|
\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. Terminal ToolTips \t%d\t-\tタブで動作中のプロセスの作業中フォルダー\n\t\t\tオプションでパスの最大要素数を指定できます。\n\t\t\t例. '%2d' は最大 2 つの要素を示します。\n\t%T\t-\t現在のロケールでの Terminal アプリケーション名\n\t%e\t-\tタブの文字コード。UTF-8 の場合は非表示です。\n\t%i\t-\tウィンドウのインデックス\n\t%p\t-\tタブ内で実行中のプロセス名\n\t%t\t-\tタブのタイトル
|
||||||
Solarized Dark Terminal colors scheme Solarized Dark
|
Solarized Dark Terminal colors scheme Solarized Dark
|
||||||
Copy Terminal TermWindow コピー
|
Copy Terminal TermWindow コピー
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI ブライトグリーン
|
ANSI bright green color Terminal AppearancePrefView ANSI ブライトグリーン
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI ホワイト
|
ANSI white color Terminal AppearancePrefView ANSI ホワイト
|
||||||
Retro Terminal colors scheme レトロ
|
Retro Terminal colors scheme レトロ
|
||||||
Edit tab title… Terminal TermWindow タブタイトルの編集...
|
Edit tab title… Terminal TermWindow タブタイトルの編集...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-Terminal 1147089150
|
1 dutch; flemish x-vnd.Haiku-Terminal 307289061
|
||||||
Close other tabs Terminal TermWindow Andere tabs sluiten
|
Close other tabs Terminal TermWindow Andere tabs sluiten
|
||||||
Insert path Terminal TermView Voeg pad in
|
Insert path Terminal TermView Voeg pad in
|
||||||
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal kon de shell niet starten. Sorry.
|
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal kon de shell niet starten. Sorry.
|
||||||
@@ -10,7 +10,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Afsluiten bev
|
|||||||
\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. Terminal ToolTips \t%d\t-\tDe huidige werkmap van het actieve proces in de\n\t\t\thuidige tab. Optioneel kan het maximum aantal componenten\n\t\t\tvan het pad gespecificeerd worden. Bijvoorbeeld '%2d' voor\n\t\t\tmaximaal twee componenten.\n\t%T\t-\tDe naam van de Terminaltoepassing in de huidige taal.\n\t%e\t-\tDe tekstcodering van de huidige tab. Bij UTF-8 wordt er niets getoond.\n\t%i\t-\tDe index van het venster.\n\t%p\t-\tDe naam van het proces dat actief is in de huidige tab.\n\t%t\t-\tDe titel van de huidige tab.
|
\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. Terminal ToolTips \t%d\t-\tDe huidige werkmap van het actieve proces in de\n\t\t\thuidige tab. Optioneel kan het maximum aantal componenten\n\t\t\tvan het pad gespecificeerd worden. Bijvoorbeeld '%2d' voor\n\t\t\tmaximaal twee componenten.\n\t%T\t-\tDe naam van de Terminaltoepassing in de huidige taal.\n\t%e\t-\tDe tekstcodering van de huidige tab. Bij UTF-8 wordt er niets getoond.\n\t%i\t-\tDe index van het venster.\n\t%p\t-\tDe naam van het proces dat actief is in de huidige tab.\n\t%t\t-\tDe titel van de huidige tab.
|
||||||
Solarized Dark Terminal colors scheme Zonnig donker
|
Solarized Dark Terminal colors scheme Zonnig donker
|
||||||
Copy Terminal TermWindow Kopiëren
|
Copy Terminal TermWindow Kopiëren
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help dit helpbericht weergeven\n -t, --title een venstertitel instellen\n -f, --fullscreen in volledig scherm starten\n -w, --working-directory initiële werkmap instellen
|
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Tabtitel aanpassen...
|
Edit tab title… Terminal TermWindow Tabtitel aanpassen...
|
||||||
Settings Terminal TermWindow Instellingen
|
Settings Terminal TermWindow Instellingen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 polish x-vnd.Haiku-Terminal 1147089150
|
1 polish x-vnd.Haiku-Terminal 307289061
|
||||||
Close other tabs Terminal TermWindow Zamknij pozostałe karty
|
Close other tabs Terminal TermWindow Zamknij pozostałe karty
|
||||||
Insert path Terminal TermView Wstaw ścieżkę
|
Insert path Terminal TermView Wstaw ścieżkę
|
||||||
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal nie może uruchomić powłoki. Przepraszamy.
|
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal nie może uruchomić powłoki. Przepraszamy.
|
||||||
@@ -10,7 +10,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Potwierdź wy
|
|||||||
\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. Terminal ToolTips \t%d\t–\tAktualny katalog roboczy bieżącego procesu na aktywnej\n\t\t\tkarcie. Opcjonalnie może zostać podana maksymalna liczba\n\t\t\telementów ścieżki. Np. „%2d” dla maksymalnie dwóch elementów.\n\t%T\t–\tZlokalizowana nazwa aplikacji Terminal.\n\t%e\t–\tKodowanie aktywnej karty. Niewidoczne dla UTF-8.\n\t%i\t–\tIndeks okna.\n\t%t\t–\tTytuł aktywnej karty.
|
\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. Terminal ToolTips \t%d\t–\tAktualny katalog roboczy bieżącego procesu na aktywnej\n\t\t\tkarcie. Opcjonalnie może zostać podana maksymalna liczba\n\t\t\telementów ścieżki. Np. „%2d” dla maksymalnie dwóch elementów.\n\t%T\t–\tZlokalizowana nazwa aplikacji Terminal.\n\t%e\t–\tKodowanie aktywnej karty. Niewidoczne dla UTF-8.\n\t%i\t–\tIndeks okna.\n\t%t\t–\tTytuł aktywnej karty.
|
||||||
Solarized Dark Terminal colors scheme Solarized Dark
|
Solarized Dark Terminal colors scheme Solarized Dark
|
||||||
Copy Terminal TermWindow Kopiuj
|
Copy Terminal TermWindow Kopiuj
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help wypisz tę pomoc\n -t, --title ustaw tytuł okna\n -f, --fullscreen uruchom w trybie pełnego ekranu\n -w, --working-directory ustaw początkowy katalog roboczy
|
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Edytuj tytuł karty…
|
Edit tab title… Terminal TermWindow Edytuj tytuł karty…
|
||||||
Settings Terminal TermWindow Ustawienia
|
Settings Terminal TermWindow Ustawienia
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 portuguese x-vnd.Haiku-Terminal 2062206461
|
1 portuguese x-vnd.Haiku-Terminal 1222406372
|
||||||
ANSI cyan color Terminal AppearancePrefView Cor ciano ANSI
|
ANSI cyan color Terminal AppearancePrefView Cor ciano ANSI
|
||||||
Close other tabs Terminal TermWindow Fechar os outros separadores
|
Close other tabs Terminal TermWindow Fechar os outros separadores
|
||||||
Insert path Terminal TermView Inserir caminho
|
Insert path Terminal TermView Inserir caminho
|
||||||
@@ -13,7 +13,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Confirmar sa
|
|||||||
Solarized Dark Terminal colors scheme Solarizado Escuro
|
Solarized Dark Terminal colors scheme Solarizado Escuro
|
||||||
Copy Terminal TermWindow Copiar
|
Copy Terminal TermWindow Copiar
|
||||||
ANSI bright green color Terminal AppearancePrefView Cor verde-claro ANSI
|
ANSI bright green color Terminal AppearancePrefView Cor verde-claro ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help mostrar esta ajuda\n -t, --title definir título da janela\n -f, --fullscreen iniciar em ecrã completo\n -w, --working-directory definir pasta de trabalho inicial
|
|
||||||
ANSI white color Terminal AppearancePrefView Cor branca ANSI
|
ANSI white color Terminal AppearancePrefView Cor branca ANSI
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Editar título do separador…
|
Edit tab title… Terminal TermWindow Editar título do separador…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 portuguese (brazil) x-vnd.Haiku-Terminal 1800966473
|
1 portuguese (brazil) x-vnd.Haiku-Terminal 961166384
|
||||||
Close other tabs Terminal TermWindow Fechar outras guias
|
Close other tabs Terminal TermWindow Fechar outras guias
|
||||||
Insert path Terminal TermView Inserir caminho
|
Insert path Terminal TermView Inserir caminho
|
||||||
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal não pôde iniciar o shell. Desculpe.
|
Terminal couldn't start the shell. Sorry. Terminal TermApp Terminal não pôde iniciar o shell. Desculpe.
|
||||||
@@ -10,7 +10,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Confirmar sa
|
|||||||
\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. Terminal ToolTips \t%d\t-\tO diretório atual de trabalho do processo ativo na aba atual.\n\t\t\tOpcionalmente, o número máximo componentes de caminho podem\n\t\t\tser especificados. Ex.: '%2d' para até dois componentes.\n\t%T\t-\tO nome do aplicativo Terminal para o idioma atual.\n\t%e\t-\tA codificação da aba atual. Não mostrado para UTF-8.\n\t%i\t-\tO índice da janela.\n\t%p\t-\tO nome do processo ativo na aba atual.\n\t%t\t-\tO título da aba atual.
|
\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. Terminal ToolTips \t%d\t-\tO diretório atual de trabalho do processo ativo na aba atual.\n\t\t\tOpcionalmente, o número máximo componentes de caminho podem\n\t\t\tser especificados. Ex.: '%2d' para até dois componentes.\n\t%T\t-\tO nome do aplicativo Terminal para o idioma atual.\n\t%e\t-\tA codificação da aba atual. Não mostrado para UTF-8.\n\t%i\t-\tO índice da janela.\n\t%p\t-\tO nome do processo ativo na aba atual.\n\t%t\t-\tO título da aba atual.
|
||||||
Solarized Dark Terminal colors scheme Solarizado Escuro
|
Solarized Dark Terminal colors scheme Solarizado Escuro
|
||||||
Copy Terminal TermWindow Copiar
|
Copy Terminal TermWindow Copiar
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help exibe esta ajuda\n -t, --title define o título da janela\n -f, --fullscreen inicia em tela cheia\n -w, --working-directory define o diretório inicial de trabalho
|
|
||||||
Retro Terminal colors scheme Retrô
|
Retro Terminal colors scheme Retrô
|
||||||
Edit tab title… Terminal TermWindow Editar título da aba…
|
Edit tab title… Terminal TermWindow Editar título da aba…
|
||||||
Settings Terminal TermWindow Configurações
|
Settings Terminal TermWindow Configurações
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-Terminal 2062206461
|
1 romanian x-vnd.Haiku-Terminal 1222406372
|
||||||
ANSI cyan color Terminal AppearancePrefView Culoare cyan ANSI
|
ANSI cyan color Terminal AppearancePrefView Culoare cyan ANSI
|
||||||
Close other tabs Terminal TermWindow Închide alte file
|
Close other tabs Terminal TermWindow Închide alte file
|
||||||
Insert path Terminal TermView Inserează calea
|
Insert path Terminal TermView Inserează calea
|
||||||
@@ -13,7 +13,6 @@ Confirm exit if active programs exist Terminal AppearancePrefView Confirmă ie
|
|||||||
Solarized Dark Terminal colors scheme Întuneric solarizat
|
Solarized Dark Terminal colors scheme Întuneric solarizat
|
||||||
Copy Terminal TermWindow Copiază
|
Copy Terminal TermWindow Copiază
|
||||||
ANSI bright green color Terminal AppearancePrefView Culoare verde deschis ANSI
|
ANSI bright green color Terminal AppearancePrefView Culoare verde deschis ANSI
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help tipărește acest ajutor\n -t, --title stabilește titlul ferestrei\n -f, --fullscreen pornește ecranul complet\n -w, --working-directory stabilește directorul de lucru inițial
|
|
||||||
ANSI white color Terminal AppearancePrefView Culoare albă ANSI
|
ANSI white color Terminal AppearancePrefView Culoare albă ANSI
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Editează titlul filei…
|
Edit tab title… Terminal TermWindow Editează titlul filei…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 swedish x-vnd.Haiku-Terminal 247549485
|
1 swedish x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI cyan färg
|
ANSI cyan color Terminal AppearancePrefView ANSI cyan färg
|
||||||
Close other tabs Terminal TermWindow Stäng övriga flikar
|
Close other tabs Terminal TermWindow Stäng övriga flikar
|
||||||
Insert path Terminal TermView Lägg till sökväg
|
Insert path Terminal TermView Lägg till sökväg
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Teckenuppsättning
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI blå färg
|
ANSI blue color Terminal AppearancePrefView ANSI blå färg
|
||||||
OK Terminal SetTitleWindow OK
|
OK Terminal SetTitleWindow OK
|
||||||
Edit Terminal TermWindow Redigera
|
Edit Terminal TermWindow Redigera
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help, skriva ut denna hjälp\n -t, --title, ange fönstertitel\n -f, --fullscreen, starta helskärm\n -w, --working-directory, ställ in initial arbetskatalog\n
|
||||||
Select all Terminal TermWindow Markera allt
|
Select all Terminal TermWindow Markera allt
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Bekräfta avslutning om aktiva program finns
|
Confirm exit if active programs exist Terminal AppearancePrefView Bekräfta avslutning om aktiva program finns
|
||||||
\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. Terminal ToolTips \t%d\t-\tDen aktiva processens arbetskatalog i denna tab.\n\t\t\tTeller maximalt antal sökvägskomponenter\n\t\t\tkan anges som. '%2d' för som mest två komponenter.\n\t%T\t-\tTerminal programmets namn på det valda språket.\n\t%e\t-\tEnkodingen av den valda tabben . Inte visad för UTF-8.\n\t%i\t-\tIndexet för fönstret.\n\t%p\t-\tNamnet på den aktiva processen i den valda tabben.\n\t%t\t-\tTiteln på den valda tabben.
|
\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. Terminal ToolTips \t%d\t-\tDen aktiva processens arbetskatalog i denna tab.\n\t\t\tTeller maximalt antal sökvägskomponenter\n\t\t\tkan anges som. '%2d' för som mest två komponenter.\n\t%T\t-\tTerminal programmets namn på det valda språket.\n\t%e\t-\tEnkodingen av den valda tabben . Inte visad för UTF-8.\n\t%i\t-\tIndexet för fönstret.\n\t%p\t-\tNamnet på den aktiva processen i den valda tabben.\n\t%t\t-\tTiteln på den valda tabben.
|
||||||
Solarized Dark Terminal colors scheme Solariserad mörk
|
Solarized Dark Terminal colors scheme Solariserad mörk
|
||||||
Copy Terminal TermWindow Kopiera
|
Copy Terminal TermWindow Kopiera
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI ljusgrön färg
|
ANSI bright green color Terminal AppearancePrefView ANSI ljusgrön färg
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help skriv ut den här hjälpen\n -t, --title ställa in fönstertitel\n -f, --fullscreen starta helskärm\n -w, --working-directory ställa in den första arbetskatalogen
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI vit färg
|
ANSI white color Terminal AppearancePrefView ANSI vit färg
|
||||||
Retro Terminal colors scheme Retro
|
Retro Terminal colors scheme Retro
|
||||||
Edit tab title… Terminal TermWindow Redigera fliktitel...
|
Edit tab title… Terminal TermWindow Redigera fliktitel...
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 turkish x-vnd.Haiku-Terminal 247549485
|
1 turkish x-vnd.Haiku-Terminal 4089361699
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI camgöbeği
|
ANSI cyan color Terminal AppearancePrefView ANSI camgöbeği
|
||||||
Close other tabs Terminal TermWindow Diğer sekmeleri kapat
|
Close other tabs Terminal TermWindow Diğer sekmeleri kapat
|
||||||
Insert path Terminal TermView Yolu ekle
|
Insert path Terminal TermView Yolu ekle
|
||||||
@@ -7,13 +7,13 @@ Text encoding Terminal TermWindow Metin kodlaması
|
|||||||
ANSI blue color Terminal AppearancePrefView ANSI mavi
|
ANSI blue color Terminal AppearancePrefView ANSI mavi
|
||||||
OK Terminal SetTitleWindow Tamam
|
OK Terminal SetTitleWindow Tamam
|
||||||
Edit Terminal TermWindow Düzen
|
Edit Terminal TermWindow Düzen
|
||||||
|
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory\n Terminal TermApp -h, --help bu yardımı yazdır\n -t, --title pencere başlığını ayarla\n -f, --fullscreen tam ekranı başlat\n -w, --working-directory başlangıç çalışma dizinini ayarla\n
|
||||||
Select all Terminal TermWindow Tümünü seç
|
Select all Terminal TermWindow Tümünü seç
|
||||||
Confirm exit if active programs exist Terminal AppearancePrefView Etkin program varsa çıkarken onay iste
|
Confirm exit if active programs exist Terminal AppearancePrefView Etkin program varsa çıkarken onay iste
|
||||||
\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. Terminal ToolTips \t%d\t-\tSekmede çalışan etkin işlemin içinde çalıştığı dizin\n\t\t\tİsteğe bağlı olarak olabilecek en çok yol bileşenlerinin sayısı\n\t\t\tbelirtilebilir. Örneğin en fazla iki bileşen için '%2d'.\n\t%T\t-\tMevcut yerelleştirme için Uçbirim uygulaması adı\n\t%e\t-\tSekme kodlaması. UTF-8 için gösterilmez.\n\t%i\t-\tPencere sırası\n\t%p\t-\tSekmedeki etkin işlemin adı\n\t%t\t-\tSekme başlığı
|
\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. Terminal ToolTips \t%d\t-\tSekmede çalışan etkin işlemin içinde çalıştığı dizin\n\t\t\tİsteğe bağlı olarak olabilecek en çok yol bileşenlerinin sayısı\n\t\t\tbelirtilebilir. Örneğin en fazla iki bileşen için '%2d'.\n\t%T\t-\tMevcut yerelleştirme için Uçbirim uygulaması adı\n\t%e\t-\tSekme kodlaması. UTF-8 için gösterilmez.\n\t%i\t-\tPencere sırası\n\t%p\t-\tSekmedeki etkin işlemin adı\n\t%t\t-\tSekme başlığı
|
||||||
Solarized Dark Terminal colors scheme Solmuş Koyu
|
Solarized Dark Terminal colors scheme Solmuş Koyu
|
||||||
Copy Terminal TermWindow Kopyala
|
Copy Terminal TermWindow Kopyala
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI açık yeşil
|
ANSI bright green color Terminal AppearancePrefView ANSI açık yeşil
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h --help yardımı göster\n -t --title pencere başlığını ayarla\n -f --fullscreen tam ekran yap\n -w --working-directory başlangıç çalışma dizinini ayarla
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI beyaz
|
ANSI white color Terminal AppearancePrefView ANSI beyaz
|
||||||
Retro Terminal colors scheme Eski Moda
|
Retro Terminal colors scheme Eski Moda
|
||||||
Edit tab title… Terminal TermWindow Sekme başlığını düzenle…
|
Edit tab title… Terminal TermWindow Sekme başlığını düzenle…
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-Terminal 2062206461
|
1 ukrainian x-vnd.Haiku-Terminal 3702716692
|
||||||
ANSI cyan color Terminal AppearancePrefView ANSI ціан
|
ANSI cyan color Terminal AppearancePrefView ANSI ціан
|
||||||
Close other tabs Terminal TermWindow Закрити інші вкладки
|
Close other tabs Terminal TermWindow Закрити інші вкладки
|
||||||
Insert path Terminal TermView Введіть шлях
|
Insert path Terminal TermView Введіть шлях
|
||||||
@@ -13,13 +13,13 @@ Confirm exit if active programs exist Terminal AppearancePrefView Підтве
|
|||||||
Solarized Dark Terminal colors scheme Сяючий морок
|
Solarized Dark Terminal colors scheme Сяючий морок
|
||||||
Copy Terminal TermWindow Копіювати
|
Copy Terminal TermWindow Копіювати
|
||||||
ANSI bright green color Terminal AppearancePrefView ANSI яскраво-зелений
|
ANSI bright green color Terminal AppearancePrefView ANSI яскраво-зелений
|
||||||
-h, --help print this help\n -t, --title set window title\n -f, --fullscreen start fullscreen\n -w, --working-directory set initial working directory Terminal TermApp -h, --help показати довідку\n -t, --title установити заголовок вікна\n -f, --fullscreen повноекранний режим\n -w, --working-directory установити робочий каталог
|
|
||||||
ANSI white color Terminal AppearancePrefView ANSI білий
|
ANSI white color Terminal AppearancePrefView ANSI білий
|
||||||
Retro Terminal colors scheme Ретро
|
Retro Terminal colors scheme Ретро
|
||||||
Edit tab title… Terminal TermWindow Редагувати заголовок вкладки…
|
Edit tab title… Terminal TermWindow Редагувати заголовок вкладки…
|
||||||
Settings Terminal TermWindow Налаштування
|
Settings Terminal TermWindow Налаштування
|
||||||
Print Terminal TermWindow Друк
|
Print Terminal TermWindow Друк
|
||||||
%app% settings Terminal PrefWindow window title %app% налаштування
|
%app% settings Terminal PrefWindow window title %app% налаштування
|
||||||
|
\t%d\t-\tThe current working directory of the active process.\n\t\t\tOptionally the maximum number of path components can be\n\t\t\tspecified. E.g. '%2d' for at most two components.\n\t%i\t-\tThe index of the tab.\n\t%e\t-\tThe encoding of the current tab. Not shown for UTF-8.\n\t%p\t-\tThe name of the active process. Terminal ToolTips \t%d\t-\tПоточна робоча директорія активного процесу.\n\t\t\tМаксимальна кількість компонентів які можуть бути\n\t\t\tзазначені. E.g. '%2d' для більш ніж двох компонентів.\n\t%i\t-\tІндекс вкладки.\n\t%e\t-\tКодування поточної вкладки. Не відображається для UTF-8.\n\t%p\t-\tІм'я активного процесу.
|
||||||
ANSI black color Terminal AppearancePrefView ANSI чорний
|
ANSI black color Terminal AppearancePrefView ANSI чорний
|
||||||
Use default Terminal SetTitleWindow За замовчуванням
|
Use default Terminal SetTitleWindow За замовчуванням
|
||||||
Close tab Terminal TermWindow Закрити вкладку
|
Close tab Terminal TermWindow Закрити вкладку
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
1 indonesian x-vnd.Be-TRAK 1627828833
|
1 indonesian x-vnd.Be-TRAK 1627828833
|
||||||
Tracker System name Pelacak
|
Tracker System name Tracker
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 czech x-vnd.Haiku-desklink 618383392
|
1 czech x-vnd.Haiku-desklink 2223625451
|
||||||
desklink MediaReplicant Title of an alert box odkaz na plochu
|
desklink MediaReplicant Title of an alert box odkaz na plochu
|
||||||
Muted MediaReplicant Ztlumeno
|
Muted MediaReplicant Ztlumeno
|
||||||
%g dB MediaReplicant %g dB
|
%g dB MediaReplicant %g dB
|
||||||
OK MediaReplicant OK
|
OK MediaReplicant OK
|
||||||
|
Sounds preferences… MediaReplicant Nastavení zvuku...
|
||||||
Couldn't launch MediaReplicant Nelze spustit
|
Couldn't launch MediaReplicant Nelze spustit
|
||||||
Volume VolumeControl Hlasitost
|
Volume VolumeControl Hlasitost
|
||||||
Open MediaPlayer MediaReplicant Otevřít Přehrávač multimédií
|
Open MediaPlayer MediaReplicant Otevřít Přehrávač multimédií
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 portuguese x-vnd.Haiku-desklink 618383392
|
1 portuguese x-vnd.Haiku-desklink 2223625451
|
||||||
desklink MediaReplicant Title of an alert box desklink
|
desklink MediaReplicant Title of an alert box desklink
|
||||||
Muted MediaReplicant Silenciado
|
Muted MediaReplicant Silenciado
|
||||||
%g dB MediaReplicant %g dB
|
%g dB MediaReplicant %g dB
|
||||||
OK MediaReplicant OK
|
OK MediaReplicant OK
|
||||||
|
Sounds preferences… MediaReplicant Preferências de sons…
|
||||||
Couldn't launch MediaReplicant Não foi possível iniciar
|
Couldn't launch MediaReplicant Não foi possível iniciar
|
||||||
Volume VolumeControl Volume
|
Volume VolumeControl Volume
|
||||||
Open MediaPlayer MediaReplicant Abrir Reprodutor de Multimédia
|
Open MediaPlayer MediaReplicant Abrir Reprodutor de Multimédia
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 ukrainian x-vnd.Haiku-desklink 618383392
|
1 ukrainian x-vnd.Haiku-desklink 2223625451
|
||||||
desklink MediaReplicant Title of an alert box desklink
|
desklink MediaReplicant Title of an alert box desklink
|
||||||
Muted MediaReplicant Приглушити
|
Muted MediaReplicant Приглушити
|
||||||
%g dB MediaReplicant %g дБ
|
%g dB MediaReplicant %g дБ
|
||||||
OK MediaReplicant ОК
|
OK MediaReplicant ОК
|
||||||
|
Sounds preferences… MediaReplicant Звукові настройки…
|
||||||
Couldn't launch MediaReplicant Не вдалося запустити
|
Couldn't launch MediaReplicant Не вдалося запустити
|
||||||
Volume VolumeControl Гучність
|
Volume VolumeControl Гучність
|
||||||
Open MediaPlayer MediaReplicant Відкрити MediaPlayer
|
Open MediaPlayer MediaReplicant Відкрити MediaPlayer
|
||||||
|
|||||||
@@ -214,8 +214,8 @@ Empty Trash ContainerWindow Ачысціць Сметніцу
|
|||||||
no supporting apps OpenWithWindow няма падыходзячых праграм
|
no supporting apps OpenWithWindow няма падыходзячых праграм
|
||||||
Preparing to empty Trash… StatusWindow Падрыхтоўка да ачысткі Сметніцы…
|
Preparing to empty Trash… StatusWindow Падрыхтоўка да ачысткі Сметніцы…
|
||||||
Deleting: StatusWindow Выдаляецца:
|
Deleting: StatusWindow Выдаляецца:
|
||||||
You can't move or copy the trash. FSUtils Вы не можаце перамяшчаць ці капіяваць у Сметніцу.
|
|
||||||
label too long PoseView метка занадта доўгая
|
label too long PoseView метка занадта доўгая
|
||||||
|
You can't move or copy the trash. FSUtils Вы не можаце перамяшчаць ці капіяваць у Сметніцу.
|
||||||
Error creating link to \"%name\". FSUtils Памылка пры стварэнні спасылкі на \"%name\".
|
Error creating link to \"%name\". FSUtils Памылка пры стварэнні спасылкі на \"%name\".
|
||||||
Unknown FilePermissionsView Невядома
|
Unknown FilePermissionsView Невядома
|
||||||
Paste links ContainerWindow Устаўляць спасылкі
|
Paste links ContainerWindow Устаўляць спасылкі
|
||||||
@@ -254,8 +254,8 @@ of %items StatusWindow з %items
|
|||||||
less than FindPanel менш за
|
less than FindPanel менш за
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Памылка пры капіяванні файла \"%name\":\n\t%error\n\nЖадаеце працягваць?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Памылка пры капіяванні файла \"%name\":\n\t%error\n\nЖадаеце працягваць?
|
||||||
Creating links: StatusWindow Стварэнне спасылак:
|
Creating links: StatusWindow Стварэнне спасылак:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Нельга адкрыць \"%document\" праграмай \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Стварыць %s выразку
|
Create %s clipping PoseView Стварыць %s выразку
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Нельга адкрыць \"%document\" праграмай \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Памылка пры перамяшчэнні \"%name\"
|
Error moving \"%name\" FSUtils Памылка пры перамяшчэнні \"%name\"
|
||||||
To: %dir StatusWindow Да: %dir
|
To: %dir StatusWindow Да: %dir
|
||||||
Paste layout ContainerWindow Уставіць макет
|
Paste layout ContainerWindow Уставіць макет
|
||||||
@@ -388,8 +388,8 @@ Add-ons FilePanelPriv Дапаўненні
|
|||||||
96 x 96 DeskWindow 96 x 96
|
96 x 96 DeskWindow 96 x 96
|
||||||
Empty folder SlowContextPopup Пусты каталог
|
Empty folder SlowContextPopup Пусты каталог
|
||||||
Move to Trash FSUtils Адправіць у Сметніцу
|
Move to Trash FSUtils Адправіць у Сметніцу
|
||||||
Handles %type OpenWithWindow Працуе з %type
|
|
||||||
Cancel PoseView Адмена
|
Cancel PoseView Адмена
|
||||||
|
Handles %type OpenWithWindow Працуе з %type
|
||||||
Delete PoseView Выдаліць
|
Delete PoseView Выдаліць
|
||||||
Sorry, you can't copy items to the Trash. PoseView Прабачце, вы не можаце капіяваць элементы ў Сметніцу.
|
Sorry, you can't copy items to the Trash. PoseView Прабачце, вы не можаце капіяваць элементы ў Сметніцу.
|
||||||
New folder FilePanelPriv Новы каталог
|
New folder FilePanelPriv Новы каталог
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 catalan; valencian x-vnd.Haiku-libtracker 2915475646
|
1 catalan; valencian x-vnd.Haiku-libtracker 464753347
|
||||||
Created ContainerWindow Creat
|
Created ContainerWindow Creat
|
||||||
Icon AttributesView Icona
|
Icon AttributesView Icona
|
||||||
Open and make preferred OpenWithWindow Obre-ho i fes-ho preferit
|
Open and make preferred OpenWithWindow Obre-ho i fes-ho preferit
|
||||||
@@ -41,6 +41,7 @@ Small bitmap icon AttributesView Icona petita de mapa de bits
|
|||||||
Would you like to find a suitable application to open the file? FSUtils Voleu trobar una aplicació adequada per obrir el fitxer?
|
Would you like to find a suitable application to open the file? FSUtils Voleu trobar una aplicació adequada per obrir el fitxer?
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
You cannot replace a folder or a symbolic link with a file. FSUtils No podeu reemplaçar una carpeta o un enllaç simbòlic per un fitxer.
|
You cannot replace a folder or a symbolic link with a file. FSUtils No podeu reemplaçar una carpeta o un enllaç simbòlic per un fitxer.
|
||||||
|
(unknown) InfoWindow (desconegut)
|
||||||
{0, plural, other{<# dates>}} AttributesView {0, plural, other{<# dates>}}
|
{0, plural, other{<# dates>}} AttributesView {0, plural, other{<# dates>}}
|
||||||
Trailing \\. libtracker Final \\.
|
Trailing \\. libtracker Final \\.
|
||||||
At %func \nfind_directory() failed. \nReason: %error Email Query Columns A %func \nha fallat find_directory(). \nRaó: %error
|
At %func \nfind_directory() failed. \nReason: %error Email Query Columns A %func \nha fallat find_directory(). \nRaó: %error
|
||||||
@@ -84,6 +85,7 @@ Include trash FindPanel Inclou la paperera
|
|||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
Clean up ContainerWindow Neteja
|
Clean up ContainerWindow Neteja
|
||||||
Modified FindPanel Modificat
|
Modified FindPanel Modificat
|
||||||
|
(block size: InfoWindow (mida de bloc:
|
||||||
Select all QueryContainerWindow Selecciona-ho tot
|
Select all QueryContainerWindow Selecciona-ho tot
|
||||||
Generate image thumbnails SettingsView Genera miniatures d’imatges
|
Generate image thumbnails SettingsView Genera miniatures d’imatges
|
||||||
Select… FilePanelPriv Seleccioneu...
|
Select… FilePanelPriv Seleccioneu...
|
||||||
@@ -167,6 +169,7 @@ Read FilePermissionsView Lectura
|
|||||||
There was an error writing the attribute. WidgetAttributeText Hi ha hagut un error en escriure l'atribut.
|
There was an error writing the attribute. WidgetAttributeText Hi ha hagut un error en escriure l'atribut.
|
||||||
Path Default Query Columns Camí
|
Path Default Query Columns Camí
|
||||||
If you rename %target, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Si canvieu de nom %target, el sistema %osName potser no es comportarà correctament!\n\nSegur que ho voleu fer?
|
If you rename %target, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Si canvieu de nom %target, el sistema %osName potser no es comportarà correctament!\n\nSegur que ho voleu fer?
|
||||||
|
Filesystem: InfoWindow Sistema de fitxers:
|
||||||
Could not open \"%name\" (%error). FSUtils No s'ha pogut muntar \"%name\" (%error).
|
Could not open \"%name\" (%error). FSUtils No s'ha pogut muntar \"%name\" (%error).
|
||||||
Media parameter group AttributesView Grup de paràmetres multimèdia
|
Media parameter group AttributesView Grup de paràmetres multimèdia
|
||||||
%name info InfoWindow InfoWindow Title Propietats de %name
|
%name info InfoWindow InfoWindow Title Propietats de %name
|
||||||
@@ -284,9 +287,9 @@ no supporting apps OpenWithWindow aplicacions no compatibles
|
|||||||
32-bit unsigned integer AttributesView Enter de 32 bits no signat
|
32-bit unsigned integer AttributesView Enter de 32 bits no signat
|
||||||
Preparing to empty Trash… StatusWindow Es prepara el buidatge de la paperera...
|
Preparing to empty Trash… StatusWindow Es prepara el buidatge de la paperera...
|
||||||
Deleting: StatusWindow Se suprimeix:
|
Deleting: StatusWindow Se suprimeix:
|
||||||
|
label too long PoseView l'etiqueta és massa llarga
|
||||||
the MIME settings FSUtils els paràmetres de MIME
|
the MIME settings FSUtils els paràmetres de MIME
|
||||||
You can't move or copy the trash. FSUtils No podeu moure o copiar la paperera.
|
You can't move or copy the trash. FSUtils No podeu moure o copiar la paperera.
|
||||||
label too long PoseView l'etiqueta és massa llarga
|
|
||||||
Error creating link to \"%name\". FSUtils Hi ha hagut un error en enllaçar amb \"%name\".
|
Error creating link to \"%name\". FSUtils Hi ha hagut un error en enllaçar amb \"%name\".
|
||||||
Unknown FilePermissionsView Desconegut
|
Unknown FilePermissionsView Desconegut
|
||||||
Paste links ContainerWindow Enganxa els enllaços
|
Paste links ContainerWindow Enganxa els enllaços
|
||||||
@@ -335,8 +338,8 @@ MIME Path AttributesView Camí de MIME
|
|||||||
less than FindPanel menys que
|
less than FindPanel menys que
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Error en copiar el fitxer \"%name\":\n\t%error\n\nVoleu continuar?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Error en copiar el fitxer \"%name\":\n\t%error\n\nVoleu continuar?
|
||||||
Creating links: StatusWindow Es creen els enllaços:
|
Creating links: StatusWindow Es creen els enllaços:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils No s'ha pogut obrir \"%document\" amb l'aplicació \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Crea un retall de %s
|
Create %s clipping PoseView Crea un retall de %s
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils No s'ha pogut obrir \"%document\" amb l'aplicació \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Error en moure \"%name\"
|
Error moving \"%name\" FSUtils Error en moure \"%name\"
|
||||||
To: %dir StatusWindow A: %dir
|
To: %dir StatusWindow A: %dir
|
||||||
Paste layout ContainerWindow Enganxa la disposició
|
Paste layout ContainerWindow Enganxa la disposició
|
||||||
@@ -493,6 +496,7 @@ Duplicate ContainerWindow Duplica
|
|||||||
16-bit integer AttributesView Enter de 16 bits
|
16-bit integer AttributesView Enter de 16 bits
|
||||||
Untitled clipping PoseView Retall sense títol
|
Untitled clipping PoseView Retall sense títol
|
||||||
The file \"%name\" already exists in the specified folder. Do you want to replace it? FilePanelPriv Ja existeix un fitxer amb el nom \"%name\" a la carpeta especificada. El voleu reemplaçar?
|
The file \"%name\" already exists in the specified folder. Do you want to replace it? FilePanelPriv Ja existeix un fitxer amb el nom \"%name\" a la carpeta especificada. El voleu reemplaçar?
|
||||||
|
, indexed InfoWindow , indexat
|
||||||
You must drop items on one of the disk icons in the \"Disks\" window. PoseView Heu de deixar anar els elements a una de les icones de la finestra \"Discs\".
|
You must drop items on one of the disk icons in the \"Disks\" window. PoseView Heu de deixar anar els elements a una de les icones de la finestra \"Discs\".
|
||||||
Version: InfoWindow Versió:
|
Version: InfoWindow Versió:
|
||||||
OK PoseView D'acord
|
OK PoseView D'acord
|
||||||
@@ -508,8 +512,8 @@ Add-ons FilePanelPriv Complements
|
|||||||
Empty folder SlowContextPopup Carpeta buida
|
Empty folder SlowContextPopup Carpeta buida
|
||||||
Alignment AttributesView Alineament
|
Alignment AttributesView Alineament
|
||||||
Move to Trash FSUtils Mou a la paperera
|
Move to Trash FSUtils Mou a la paperera
|
||||||
Handles %type OpenWithWindow Gestiona el tipus %type
|
|
||||||
Cancel PoseView Cancel·la
|
Cancel PoseView Cancel·la
|
||||||
|
Handles %type OpenWithWindow Gestiona el tipus %type
|
||||||
Delete PoseView Suprimeix
|
Delete PoseView Suprimeix
|
||||||
Media parameter AttributesView Paràmetre multimèdia
|
Media parameter AttributesView Paràmetre multimèdia
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Si altereu la capeta personal, el sistema %osName pot no comportar-se correctament!\n\nSegur que ho voleu fer?\n\nSi tanmateix la voleu alterar, mantingueu premuda la tecla Maj. i cliqueu a \"Sé el que faig\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Si altereu la capeta personal, el sistema %osName pot no comportar-se correctament!\n\nSegur que ho voleu fer?\n\nSi tanmateix la voleu alterar, mantingueu premuda la tecla Maj. i cliqueu a \"Sé el que faig\".
|
||||||
|
|||||||
@@ -284,9 +284,9 @@ no supporting apps OpenWithWindow žádná vhodná aplikace
|
|||||||
32-bit unsigned integer AttributesView 32 bitové přirozené číslo
|
32-bit unsigned integer AttributesView 32 bitové přirozené číslo
|
||||||
Preparing to empty Trash… StatusWindow Připrava vysypání koše...
|
Preparing to empty Trash… StatusWindow Připrava vysypání koše...
|
||||||
Deleting: StatusWindow Odstraňování:
|
Deleting: StatusWindow Odstraňování:
|
||||||
|
label too long PoseView štítek je příliš dlouhý
|
||||||
the MIME settings FSUtils nastavení MIME
|
the MIME settings FSUtils nastavení MIME
|
||||||
You can't move or copy the trash. FSUtils Nelze přesunout nebo kopírovat koš.
|
You can't move or copy the trash. FSUtils Nelze přesunout nebo kopírovat koš.
|
||||||
label too long PoseView štítek je příliš dlouhý
|
|
||||||
Error creating link to \"%name\". FSUtils Chyba při vytváření odkazu na \"%name\".
|
Error creating link to \"%name\". FSUtils Chyba při vytváření odkazu na \"%name\".
|
||||||
Unknown FilePermissionsView Neznámý
|
Unknown FilePermissionsView Neznámý
|
||||||
Paste links ContainerWindow Vložit odkazy
|
Paste links ContainerWindow Vložit odkazy
|
||||||
@@ -335,8 +335,8 @@ MIME Path AttributesView Cesta MIME
|
|||||||
less than FindPanel méne než
|
less than FindPanel méne než
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Chyba kopírování souboru \"%name\":\n\t%error\n\nPřejete si pokračovat?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Chyba kopírování souboru \"%name\":\n\t%error\n\nPřejete si pokračovat?
|
||||||
Creating links: StatusWindow Vytváření odkazů:
|
Creating links: StatusWindow Vytváření odkazů:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Nelze otevřít \"%document\" v aplikaci \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Vytvořit %s výstřižek
|
Create %s clipping PoseView Vytvořit %s výstřižek
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Nelze otevřít \"%document\" v aplikaci \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Chyba přesunu \"%name\"
|
Error moving \"%name\" FSUtils Chyba přesunu \"%name\"
|
||||||
To: %dir StatusWindow Do: %dir
|
To: %dir StatusWindow Do: %dir
|
||||||
Paste layout ContainerWindow Vložit rozložení
|
Paste layout ContainerWindow Vložit rozložení
|
||||||
@@ -508,8 +508,8 @@ Add-ons FilePanelPriv Doplňky
|
|||||||
Empty folder SlowContextPopup Prázdný adresář
|
Empty folder SlowContextPopup Prázdný adresář
|
||||||
Alignment AttributesView Zarovnání
|
Alignment AttributesView Zarovnání
|
||||||
Move to Trash FSUtils Přesunout do Koše
|
Move to Trash FSUtils Přesunout do Koše
|
||||||
Handles %type OpenWithWindow Obstarává %type
|
|
||||||
Cancel PoseView Zrušit
|
Cancel PoseView Zrušit
|
||||||
|
Handles %type OpenWithWindow Obstarává %type
|
||||||
Delete PoseView Odstranit
|
Delete PoseView Odstranit
|
||||||
Media parameter AttributesView Multimediální parametr
|
Media parameter AttributesView Multimediální parametr
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Pokud změníte domovský adresář, %osName nemusí fungovat správně!\n\nOpravdu to chcete?\n\nPokud i tak chcete změnit domovský adresář, držte Shift a klikněte na \"Vím, co dělám\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Pokud změníte domovský adresář, %osName nemusí fungovat správně!\n\nOpravdu to chcete?\n\nPokud i tak chcete změnit domovský adresář, držte Shift a klikněte na \"Vím, co dělám\".
|
||||||
|
|||||||
@@ -284,9 +284,9 @@ no supporting apps OpenWithWindow ingen understøttende apps
|
|||||||
32-bit unsigned integer AttributesView 32-bit heltal uden fortegn
|
32-bit unsigned integer AttributesView 32-bit heltal uden fortegn
|
||||||
Preparing to empty Trash… StatusWindow Forbereder tømning af papirkurven…
|
Preparing to empty Trash… StatusWindow Forbereder tømning af papirkurven…
|
||||||
Deleting: StatusWindow Sletning:
|
Deleting: StatusWindow Sletning:
|
||||||
|
label too long PoseView etiket for lang
|
||||||
the MIME settings FSUtils MIME-indstillingerne
|
the MIME settings FSUtils MIME-indstillingerne
|
||||||
You can't move or copy the trash. FSUtils Du kan ikke flytte eller kopiere papirkurven.
|
You can't move or copy the trash. FSUtils Du kan ikke flytte eller kopiere papirkurven.
|
||||||
label too long PoseView etiket for lang
|
|
||||||
Error creating link to \"%name\". FSUtils Fejl ved at lave et link til \"%name\".
|
Error creating link to \"%name\". FSUtils Fejl ved at lave et link til \"%name\".
|
||||||
Unknown FilePermissionsView Ukendt
|
Unknown FilePermissionsView Ukendt
|
||||||
Paste links ContainerWindow Indsæt lænker
|
Paste links ContainerWindow Indsæt lænker
|
||||||
@@ -335,8 +335,8 @@ MIME Path AttributesView MIME-sti
|
|||||||
less than FindPanel mindre end
|
less than FindPanel mindre end
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Fejl ved kopiering af filen \"%name\":\n\t%error\n\nVil du fortsætte?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Fejl ved kopiering af filen \"%name\":\n\t%error\n\nVil du fortsætte?
|
||||||
Creating links: StatusWindow Opretning af links:
|
Creating links: StatusWindow Opretning af links:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Kunne ikke åbne \"%document\" med programmet \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Lav %s klipning
|
Create %s clipping PoseView Lav %s klipning
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Kunne ikke åbne \"%document\" med programmet \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Fejl ved flytning af \"%name\"
|
Error moving \"%name\" FSUtils Fejl ved flytning af \"%name\"
|
||||||
To: %dir StatusWindow Til: %dir
|
To: %dir StatusWindow Til: %dir
|
||||||
Paste layout ContainerWindow Indsæt layout
|
Paste layout ContainerWindow Indsæt layout
|
||||||
@@ -508,8 +508,8 @@ Add-ons FilePanelPriv Tilføjelser
|
|||||||
Empty folder SlowContextPopup Tom mappe
|
Empty folder SlowContextPopup Tom mappe
|
||||||
Alignment AttributesView Justering
|
Alignment AttributesView Justering
|
||||||
Move to Trash FSUtils Flyt til papirkurven
|
Move to Trash FSUtils Flyt til papirkurven
|
||||||
Handles %type OpenWithWindow Håndterer %type
|
|
||||||
Cancel PoseView Annuller
|
Cancel PoseView Annuller
|
||||||
|
Handles %type OpenWithWindow Håndterer %type
|
||||||
Delete PoseView Slet
|
Delete PoseView Slet
|
||||||
Media parameter AttributesView Medieparameter
|
Media parameter AttributesView Medieparameter
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Hvis du ændre hjemmemappen, så virker %osName måske ikke korrekt!\n\nEr du sikker på, at du vil gøre det?\n\nFor alligevel at ændre hjemmemappen, hold Skift-tasten nede og klik på \"Jeg ved hvad jeg gør\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Hvis du ændre hjemmemappen, så virker %osName måske ikke korrekt!\n\nEr du sikker på, at du vil gøre det?\n\nFor alligevel at ændre hjemmemappen, hold Skift-tasten nede og klik på \"Jeg ved hvad jeg gør\".
|
||||||
|
|||||||
@@ -281,9 +281,9 @@ no supporting apps OpenWithWindow keine unterstützenden Anwendungen
|
|||||||
32-bit unsigned integer AttributesView Integer 32-bit, vorzeichenlos
|
32-bit unsigned integer AttributesView Integer 32-bit, vorzeichenlos
|
||||||
Preparing to empty Trash… StatusWindow Leeren des Papierkorbs wird vorbereitet …
|
Preparing to empty Trash… StatusWindow Leeren des Papierkorbs wird vorbereitet …
|
||||||
Deleting: StatusWindow Löschen:
|
Deleting: StatusWindow Löschen:
|
||||||
|
label too long PoseView Beschriftung zu lang
|
||||||
the MIME settings FSUtils die MIME-Einstellungen
|
the MIME settings FSUtils die MIME-Einstellungen
|
||||||
You can't move or copy the trash. FSUtils Der Papierkorb kann nicht verschoben oder kopiert werden.
|
You can't move or copy the trash. FSUtils Der Papierkorb kann nicht verschoben oder kopiert werden.
|
||||||
label too long PoseView Beschriftung zu lang
|
|
||||||
Error creating link to \"%name\". FSUtils Fehler beim Erstellen der Verknüpfung zu \"%name\".
|
Error creating link to \"%name\". FSUtils Fehler beim Erstellen der Verknüpfung zu \"%name\".
|
||||||
Unknown FilePermissionsView Unbekannt
|
Unknown FilePermissionsView Unbekannt
|
||||||
Paste links ContainerWindow Verknüpfungen einfügen
|
Paste links ContainerWindow Verknüpfungen einfügen
|
||||||
@@ -330,8 +330,8 @@ MIME Path AttributesView MIME Pfad
|
|||||||
less than FindPanel kleiner als
|
less than FindPanel kleiner als
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Fehler beim Kopieren der Datei \"%name\":\n\t%error\n\nSoll fortgefahren werden?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Fehler beim Kopieren der Datei \"%name\":\n\t%error\n\nSoll fortgefahren werden?
|
||||||
Creating links: StatusWindow Erstelle Verknüpfungen:
|
Creating links: StatusWindow Erstelle Verknüpfungen:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils \"%document\" konnte nicht mit der Anwendung \"%app\" geöffnet werden (%error).
|
|
||||||
Create %s clipping PoseView Erzeuge %s Ausschnitt
|
Create %s clipping PoseView Erzeuge %s Ausschnitt
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils \"%document\" konnte nicht mit der Anwendung \"%app\" geöffnet werden (%error).
|
||||||
Error moving \"%name\" FSUtils Fehler beim Verschieben von \"%name\"
|
Error moving \"%name\" FSUtils Fehler beim Verschieben von \"%name\"
|
||||||
To: %dir StatusWindow Nach: %dir
|
To: %dir StatusWindow Nach: %dir
|
||||||
Paste layout ContainerWindow Anordnung einfügen
|
Paste layout ContainerWindow Anordnung einfügen
|
||||||
@@ -503,8 +503,8 @@ Add-ons FilePanelPriv Add-ons
|
|||||||
Empty folder SlowContextPopup Leerer Ordner
|
Empty folder SlowContextPopup Leerer Ordner
|
||||||
Alignment AttributesView Ausrichtung
|
Alignment AttributesView Ausrichtung
|
||||||
Move to Trash FSUtils In Papierkorb verschieben
|
Move to Trash FSUtils In Papierkorb verschieben
|
||||||
Handles %type OpenWithWindow Geeignet für %type
|
|
||||||
Cancel PoseView Abbrechen
|
Cancel PoseView Abbrechen
|
||||||
|
Handles %type OpenWithWindow Geeignet für %type
|
||||||
Delete PoseView Löschen
|
Delete PoseView Löschen
|
||||||
Media parameter AttributesView Media-Parameter
|
Media parameter AttributesView Media-Parameter
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Wird der Home-Ordner geändert, kann es sein dass %osName nicht mehr richtig funktioniert!\n\nTrotzdem ändern?\n\nUm den Home-Ordner trotzdem zu ändern, Shift-Taste gedrückt halten und \"Ich bin sicher\" klicken.
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Wird der Home-Ordner geändert, kann es sein dass %osName nicht mehr richtig funktioniert!\n\nTrotzdem ändern?\n\nUm den Home-Ordner trotzdem zu ändern, Shift-Taste gedrückt halten und \"Ich bin sicher\" klicken.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-libtracker 2915475646
|
1 greek, modern (1453-) x-vnd.Haiku-libtracker 464753347
|
||||||
Created ContainerWindow Δημιουργήθηκε
|
Created ContainerWindow Δημιουργήθηκε
|
||||||
Icon AttributesView Εικονίδιο
|
Icon AttributesView Εικονίδιο
|
||||||
Open and make preferred OpenWithWindow 'Ανοιγμα και ορισμός προεπιλεγμένου
|
Open and make preferred OpenWithWindow 'Ανοιγμα και ορισμός προεπιλεγμένου
|
||||||
@@ -41,6 +41,7 @@ Small bitmap icon AttributesView Μικρό εικονίδιο bitmap
|
|||||||
Would you like to find a suitable application to open the file? FSUtils Θα θέλατε να πραγματοποιηθεί η έυρεση μιας κατάλληλης εφαρμογής για το άνοιγμα του αρχείου;
|
Would you like to find a suitable application to open the file? FSUtils Θα θέλατε να πραγματοποιηθεί η έυρεση μιας κατάλληλης εφαρμογής για το άνοιγμα του αρχείου;
|
||||||
64 x 64 ContainerWindow 64 x 64
|
64 x 64 ContainerWindow 64 x 64
|
||||||
You cannot replace a folder or a symbolic link with a file. FSUtils Δεν μπορείται να αντικαταστήσετε έναν φάκελο ή έναν συμβολικό δεσμό με ένα αρχείο.
|
You cannot replace a folder or a symbolic link with a file. FSUtils Δεν μπορείται να αντικαταστήσετε έναν φάκελο ή έναν συμβολικό δεσμό με ένα αρχείο.
|
||||||
|
(unknown) InfoWindow (άγνωστο)
|
||||||
{0, plural, other{<# dates>}} AttributesView {0, plural, other{<# ημερομηνίες>}}
|
{0, plural, other{<# dates>}} AttributesView {0, plural, other{<# ημερομηνίες>}}
|
||||||
Trailing \\. libtracker Περισσευούμενο \\.
|
Trailing \\. libtracker Περισσευούμενο \\.
|
||||||
At %func \nfind_directory() failed. \nReason: %error Email Query Columns Στην %func \nαπέτυχε η find_directory(). \nΑιτία: %error
|
At %func \nfind_directory() failed. \nReason: %error Email Query Columns Στην %func \nαπέτυχε η find_directory(). \nΑιτία: %error
|
||||||
@@ -84,6 +85,7 @@ Include trash FindPanel Συμπερίληψη Κάδου
|
|||||||
GiB WidgetAttributeText GiB
|
GiB WidgetAttributeText GiB
|
||||||
Clean up ContainerWindow Καθαρισμός
|
Clean up ContainerWindow Καθαρισμός
|
||||||
Modified FindPanel Τροποποιήθηκε
|
Modified FindPanel Τροποποιήθηκε
|
||||||
|
(block size: InfoWindow (μέγεθος block:
|
||||||
Select all QueryContainerWindow Επιλογή όλων
|
Select all QueryContainerWindow Επιλογή όλων
|
||||||
Generate image thumbnails SettingsView Παραγωγή μικρογραφιών εικόνων
|
Generate image thumbnails SettingsView Παραγωγή μικρογραφιών εικόνων
|
||||||
Select… FilePanelPriv Επιλογή…
|
Select… FilePanelPriv Επιλογή…
|
||||||
@@ -167,6 +169,7 @@ Read FilePermissionsView Ανάγνωση
|
|||||||
There was an error writing the attribute. WidgetAttributeText Υπήρξε ένα σφάλμα κατά την εγγραφή της ιδιότητας.
|
There was an error writing the attribute. WidgetAttributeText Υπήρξε ένα σφάλμα κατά την εγγραφή της ιδιότητας.
|
||||||
Path Default Query Columns Τοποθεσία
|
Path Default Query Columns Τοποθεσία
|
||||||
If you rename %target, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Αν μετονομάσετε το %target, το %osName ενδέχεται να μην λειτουργήσει σωστά!\n\nΕίστε σίγουρος;
|
If you rename %target, %osName may not behave properly!\n\nAre you sure you want to do this? FSUtils Αν μετονομάσετε το %target, το %osName ενδέχεται να μην λειτουργήσει σωστά!\n\nΕίστε σίγουρος;
|
||||||
|
Filesystem: InfoWindow Σύστημα αρχείων:
|
||||||
Could not open \"%name\" (%error). FSUtils Αδυναμία ανοίγματος του \"%name\" (%error).
|
Could not open \"%name\" (%error). FSUtils Αδυναμία ανοίγματος του \"%name\" (%error).
|
||||||
Media parameter group AttributesView Ομάδα παραμέτρων πολυμέσων
|
Media parameter group AttributesView Ομάδα παραμέτρων πολυμέσων
|
||||||
%name info InfoWindow InfoWindow Title %name πληροφορίες
|
%name info InfoWindow InfoWindow Title %name πληροφορίες
|
||||||
@@ -284,9 +287,9 @@ no supporting apps OpenWithWindow καμία υποστηριζόμενη εφ
|
|||||||
32-bit unsigned integer AttributesView Ακέραιος αριθμός χωρίς πρόσημο 32-bit
|
32-bit unsigned integer AttributesView Ακέραιος αριθμός χωρίς πρόσημο 32-bit
|
||||||
Preparing to empty Trash… StatusWindow Γίνεται προετοιμασία καθαρισμού του Κάδου…
|
Preparing to empty Trash… StatusWindow Γίνεται προετοιμασία καθαρισμού του Κάδου…
|
||||||
Deleting: StatusWindow Γίνεται διαγραφή:
|
Deleting: StatusWindow Γίνεται διαγραφή:
|
||||||
|
label too long PoseView ετικέτα πολύ μεγάλη
|
||||||
the MIME settings FSUtils οι ρυθμίσεις MIME
|
the MIME settings FSUtils οι ρυθμίσεις MIME
|
||||||
You can't move or copy the trash. FSUtils Δεν μπορείτε να μετακινήσετε ή να αντιγράψετε στο καλάθι αχρήστων.
|
You can't move or copy the trash. FSUtils Δεν μπορείτε να μετακινήσετε ή να αντιγράψετε στο καλάθι αχρήστων.
|
||||||
label too long PoseView ετικέτα πολύ μεγάλη
|
|
||||||
Error creating link to \"%name\". FSUtils Σφάλμα κατά τη δημιουργία συνδέσμου με το \"%name\".
|
Error creating link to \"%name\". FSUtils Σφάλμα κατά τη δημιουργία συνδέσμου με το \"%name\".
|
||||||
Unknown FilePermissionsView Άγνωστο
|
Unknown FilePermissionsView Άγνωστο
|
||||||
Paste links ContainerWindow Επικόλληση συνδέσμων
|
Paste links ContainerWindow Επικόλληση συνδέσμων
|
||||||
@@ -335,8 +338,8 @@ MIME Path AttributesView Διαδρομή MIME
|
|||||||
less than FindPanel λιγότερο από
|
less than FindPanel λιγότερο από
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Σφάλμα αντιγραφής του αρχείου \"%name\":\n\t%error\n\nΘα θέλατε να συνεχίσετε;
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Σφάλμα αντιγραφής του αρχείου \"%name\":\n\t%error\n\nΘα θέλατε να συνεχίσετε;
|
||||||
Creating links: StatusWindow Γίνεται δημιουργία συνδέσμων:
|
Creating links: StatusWindow Γίνεται δημιουργία συνδέσμων:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Αδυναμία ανοίγματος του \"%document\" με την εφαρμογή \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Δημιουργία %s αποκόμματος
|
Create %s clipping PoseView Δημιουργία %s αποκόμματος
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Αδυναμία ανοίγματος του \"%document\" με την εφαρμογή \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Σφάλμα κατά τη μετακίνηση του \"%name\"
|
Error moving \"%name\" FSUtils Σφάλμα κατά τη μετακίνηση του \"%name\"
|
||||||
To: %dir StatusWindow Στο: %dir
|
To: %dir StatusWindow Στο: %dir
|
||||||
Paste layout ContainerWindow Επικόλληση διάταξης
|
Paste layout ContainerWindow Επικόλληση διάταξης
|
||||||
@@ -493,6 +496,7 @@ Duplicate ContainerWindow Διπλότυπο
|
|||||||
16-bit integer AttributesView Ακέραιος αριθμός 16-bit
|
16-bit integer AttributesView Ακέραιος αριθμός 16-bit
|
||||||
Untitled clipping PoseView Άτιτλο απόκομμα
|
Untitled clipping PoseView Άτιτλο απόκομμα
|
||||||
The file \"%name\" already exists in the specified folder. Do you want to replace it? FilePanelPriv το αρχείο \"%name\" υπάρχει ήδη στον προσδιορισμένο φάκελο. Θέλετε σίγουρα να το αντικαταστήσετε;
|
The file \"%name\" already exists in the specified folder. Do you want to replace it? FilePanelPriv το αρχείο \"%name\" υπάρχει ήδη στον προσδιορισμένο φάκελο. Θέλετε σίγουρα να το αντικαταστήσετε;
|
||||||
|
, indexed InfoWindow , με ίνδικα
|
||||||
You must drop items on one of the disk icons in the \"Disks\" window. PoseView Πρέπει να αφήσετε τα αντικείμενα σε ένα από τα εικονίδια δίσκων στο παράθυρο \"Δίσκοι\".
|
You must drop items on one of the disk icons in the \"Disks\" window. PoseView Πρέπει να αφήσετε τα αντικείμενα σε ένα από τα εικονίδια δίσκων στο παράθυρο \"Δίσκοι\".
|
||||||
Version: InfoWindow Έκδοση:
|
Version: InfoWindow Έκδοση:
|
||||||
OK PoseView Εντάξει
|
OK PoseView Εντάξει
|
||||||
@@ -508,8 +512,8 @@ Add-ons FilePanelPriv Πρόσθετα
|
|||||||
Empty folder SlowContextPopup Άδειος φάκελος
|
Empty folder SlowContextPopup Άδειος φάκελος
|
||||||
Alignment AttributesView Στοίχιση
|
Alignment AttributesView Στοίχιση
|
||||||
Move to Trash FSUtils Μετακίνηση στον Κάδο
|
Move to Trash FSUtils Μετακίνηση στον Κάδο
|
||||||
Handles %type OpenWithWindow Χειρίζεται %type
|
|
||||||
Cancel PoseView Άκυρο
|
Cancel PoseView Άκυρο
|
||||||
|
Handles %type OpenWithWindow Χειρίζεται %type
|
||||||
Delete PoseView Διαγραφή
|
Delete PoseView Διαγραφή
|
||||||
Media parameter AttributesView Παράμετρος πολυμέσων
|
Media parameter AttributesView Παράμετρος πολυμέσων
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Αν πειράξετε τον φάκελο home, το %osName ενδέχεται να μην λειτουργήσει σωστά!\n\nΕίστε σίγουρος πως θέλετε να το κάνετε αυτό;\n\nΓια να μετακινήσετε τον φάκελο home ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο κουμπί \"Ξέρω τι κάνω\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Αν πειράξετε τον φάκελο home, το %osName ενδέχεται να μην λειτουργήσει σωστά!\n\nΕίστε σίγουρος πως θέλετε να το κάνετε αυτό;\n\nΓια να μετακινήσετε τον φάκελο home ούτως ή άλλως, κρατήστε πατημένο το πλήκτρο Shift και κάντε κλικ στο κουμπί \"Ξέρω τι κάνω\".
|
||||||
|
|||||||
@@ -283,9 +283,9 @@ no supporting apps OpenWithWindow nesubtenantaj aplikaĵoj
|
|||||||
32-bit unsigned integer AttributesView 32-bita sensignuma entjero
|
32-bit unsigned integer AttributesView 32-bita sensignuma entjero
|
||||||
Preparing to empty Trash… StatusWindow Preparante malplenigi la Rubujon…
|
Preparing to empty Trash… StatusWindow Preparante malplenigi la Rubujon…
|
||||||
Deleting: StatusWindow Forigante:
|
Deleting: StatusWindow Forigante:
|
||||||
|
label too long PoseView etikedo tro longa
|
||||||
the MIME settings FSUtils agordo de la MIME
|
the MIME settings FSUtils agordo de la MIME
|
||||||
You can't move or copy the trash. FSUtils Vi ne povas movi aŭ kopii la Rubujon.
|
You can't move or copy the trash. FSUtils Vi ne povas movi aŭ kopii la Rubujon.
|
||||||
label too long PoseView etikedo tro longa
|
|
||||||
Error creating link to \"%name\". FSUtils Eraris kreante ligilon al \"%name\".
|
Error creating link to \"%name\". FSUtils Eraris kreante ligilon al \"%name\".
|
||||||
Unknown FilePermissionsView Nekonata
|
Unknown FilePermissionsView Nekonata
|
||||||
Paste links ContainerWindow Alglui ligilojn
|
Paste links ContainerWindow Alglui ligilojn
|
||||||
@@ -334,8 +334,8 @@ MIME Path AttributesView Itinero de MIME
|
|||||||
less than FindPanel malpli ol
|
less than FindPanel malpli ol
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Eraris kopiante dosieron de \"%name\":\n\t%error\n\nĈu vi volas daŭrigi?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Eraris kopiante dosieron de \"%name\":\n\t%error\n\nĈu vi volas daŭrigi?
|
||||||
Creating links: StatusWindow Kreante ligilojn:
|
Creating links: StatusWindow Kreante ligilojn:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils Malsukcesis uzi \"%document\"-on per programo \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Krei %s tondado
|
Create %s clipping PoseView Krei %s tondado
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils Malsukcesis uzi \"%document\"-on per programo \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Eraris movante \"%name\"
|
Error moving \"%name\" FSUtils Eraris movante \"%name\"
|
||||||
To: %dir StatusWindow Al: %dir
|
To: %dir StatusWindow Al: %dir
|
||||||
Paste layout ContainerWindow Alglui aranĝon
|
Paste layout ContainerWindow Alglui aranĝon
|
||||||
@@ -507,8 +507,8 @@ Add-ons FilePanelPriv Aldonaĵoj
|
|||||||
Empty folder SlowContextPopup Malplena dosierujo
|
Empty folder SlowContextPopup Malplena dosierujo
|
||||||
Alignment AttributesView Vicigo
|
Alignment AttributesView Vicigo
|
||||||
Move to Trash FSUtils Movi al la Rubujo
|
Move to Trash FSUtils Movi al la Rubujo
|
||||||
Handles %type OpenWithWindow Traktas %type
|
|
||||||
Cancel PoseView Nuligi
|
Cancel PoseView Nuligi
|
||||||
|
Handles %type OpenWithWindow Traktas %type
|
||||||
Delete PoseView Forigi
|
Delete PoseView Forigi
|
||||||
Media parameter AttributesView Parametro de plurmedio
|
Media parameter AttributesView Parametro de plurmedio
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Se vi redaktos la hejman dosierujon, %osName eble ne kondutos dece!\n\nĈu vi certas, ke vi deziras fari tion?\n\nPor redakti la hejman dosierujon senkondiĉe, premu la majuskligklavon kaj klaku \"Mi scias kion mi faras\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Se vi redaktos la hejman dosierujon, %osName eble ne kondutos dece!\n\nĈu vi certas, ke vi deziras fari tion?\n\nPor redakti la hejman dosierujon senkondiĉe, premu la majuskligklavon kaj klaku \"Mi scias kion mi faras\".
|
||||||
|
|||||||
@@ -284,9 +284,9 @@ no supporting apps OpenWithWindow Aplicaciones no soportadas
|
|||||||
32-bit unsigned integer AttributesView Entero de 32 bits sin signo
|
32-bit unsigned integer AttributesView Entero de 32 bits sin signo
|
||||||
Preparing to empty Trash… StatusWindow Preparándose para vaciar la papelera…
|
Preparing to empty Trash… StatusWindow Preparándose para vaciar la papelera…
|
||||||
Deleting: StatusWindow Eliminando:
|
Deleting: StatusWindow Eliminando:
|
||||||
|
label too long PoseView etiqueta demasiado larga
|
||||||
the MIME settings FSUtils las configuraciones MIME
|
the MIME settings FSUtils las configuraciones MIME
|
||||||
You can't move or copy the trash. FSUtils No puedes mover o copiar la papelera.
|
You can't move or copy the trash. FSUtils No puedes mover o copiar la papelera.
|
||||||
label too long PoseView etiqueta demasiado larga
|
|
||||||
Error creating link to \"%name\". FSUtils Error creando un enlace a \"%name\"
|
Error creating link to \"%name\". FSUtils Error creando un enlace a \"%name\"
|
||||||
Unknown FilePermissionsView Desconocido
|
Unknown FilePermissionsView Desconocido
|
||||||
Paste links ContainerWindow Pegar enlaces
|
Paste links ContainerWindow Pegar enlaces
|
||||||
@@ -335,8 +335,8 @@ MIME Path AttributesView Ubicación MIME
|
|||||||
less than FindPanel menos que
|
less than FindPanel menos que
|
||||||
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Error copiando el archivo \"%name\":\n\t%error\n\n¿Quieres continuar ?
|
Error copying file \"%name\":\n\t%error\n\nWould you like to continue? FSUtils Error copiando el archivo \"%name\":\n\t%error\n\n¿Quieres continuar ?
|
||||||
Creating links: StatusWindow Creando enlaces:
|
Creating links: StatusWindow Creando enlaces:
|
||||||
Could not open \"%document\" with application \"%app\" (%error). FSUtils No se pudo abrir \"%document\" con la aplicación \"%app\" (%error).
|
|
||||||
Create %s clipping PoseView Cree %s recorte
|
Create %s clipping PoseView Cree %s recorte
|
||||||
|
Could not open \"%document\" with application \"%app\" (%error). FSUtils No se pudo abrir \"%document\" con la aplicación \"%app\" (%error).
|
||||||
Error moving \"%name\" FSUtils Error moviendo \"%name\"
|
Error moving \"%name\" FSUtils Error moviendo \"%name\"
|
||||||
To: %dir StatusWindow A: %dir
|
To: %dir StatusWindow A: %dir
|
||||||
Paste layout ContainerWindow Pegar distribución
|
Paste layout ContainerWindow Pegar distribución
|
||||||
@@ -508,8 +508,8 @@ Add-ons FilePanelPriv Añadidos
|
|||||||
Empty folder SlowContextPopup Carpeta vacía
|
Empty folder SlowContextPopup Carpeta vacía
|
||||||
Alignment AttributesView Alineación
|
Alignment AttributesView Alineación
|
||||||
Move to Trash FSUtils Mover a la Papelera
|
Move to Trash FSUtils Mover a la Papelera
|
||||||
Handles %type OpenWithWindow Maneja %type
|
|
||||||
Cancel PoseView Cancelar
|
Cancel PoseView Cancelar
|
||||||
|
Handles %type OpenWithWindow Maneja %type
|
||||||
Delete PoseView Eliminar
|
Delete PoseView Eliminar
|
||||||
Media parameter AttributesView Parámetro de medios
|
Media parameter AttributesView Parámetro de medios
|
||||||
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Si modificas la carpeta home, es posible que %osName no funcione adecuadamente.\n\n¿Estás seguro de que deseas hacer esto?\n\nPara modificar la carpeta home, mantén presionada la tecla Mayúsculas y haz clic en \"Sé lo que estoy haciendo\".
|
If you alter the home folder, %osName may not behave properly!\n\nAre you sure you want to do this?\n\nTo alter the home folder anyway, hold down the Shift key and click \"I know what I'm doing\". FSUtils Si modificas la carpeta home, es posible que %osName no funcione adecuadamente.\n\n¿Estás seguro de que deseas hacer esto?\n\nPara modificar la carpeta home, mantén presionada la tecla Mayúsculas y haz clic en \"Sé lo que estoy haciendo\".
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user