Merge branch 'master' into sam460ex
This commit is contained in:
@@ -173,11 +173,7 @@ SubDir HAIKU_TOP ;
|
|||||||
UserBuildConfigRulePostBuildTargets ;
|
UserBuildConfigRulePostBuildTargets ;
|
||||||
|
|
||||||
# specify the Haiku image and network boot archive contents
|
# specify the Haiku image and network boot archive contents
|
||||||
if $(TARGET_ARCH) = x86_64 {
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) HaikuImage ] ;
|
||||||
include [ FDirName $(HAIKU_BUILD_RULES_DIR) Haiku64Image ] ;
|
|
||||||
} else {
|
|
||||||
include [ FDirName $(HAIKU_BUILD_RULES_DIR) HaikuImage ] ;
|
|
||||||
}
|
|
||||||
include [ FDirName $(HAIKU_BUILD_RULES_DIR) NetBootArchive ] ;
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) NetBootArchive ] ;
|
||||||
include [ FDirName $(HAIKU_BUILD_RULES_DIR) FloppyBootImage ] ;
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) FloppyBootImage ] ;
|
||||||
include [ FDirName $(HAIKU_BUILD_RULES_DIR) CDBootImage ] ;
|
include [ FDirName $(HAIKU_BUILD_RULES_DIR) CDBootImage ] ;
|
||||||
|
|||||||
+35
-31
@@ -344,9 +344,9 @@ if $(TARGET_ARCH) = x86 {
|
|||||||
if $(TARGET_ARCH) = x86 {
|
if $(TARGET_ARCH) = x86 {
|
||||||
local zipFile ;
|
local zipFile ;
|
||||||
if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
||||||
HAIKU_MESA_FILE = mesa-9.1.1-x86-gcc4-2013-03-20.zip ;
|
HAIKU_MESA_FILE = mesa-9.1.1-x86-gcc4-2013-04-27.zip ;
|
||||||
} else {
|
} else {
|
||||||
HAIKU_MESA_FILE = mesa-7.8.2-x86-gcc2-2013-02-17.zip ;
|
HAIKU_MESA_FILE = mesa-7.8.2-x86-gcc2-2013-04-28.zip ;
|
||||||
}
|
}
|
||||||
|
|
||||||
zipFile = [ DownloadFile $(HAIKU_MESA_FILE)
|
zipFile = [ DownloadFile $(HAIKU_MESA_FILE)
|
||||||
@@ -355,50 +355,54 @@ if $(TARGET_ARCH) = x86 {
|
|||||||
HAIKU_MESA_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR)
|
HAIKU_MESA_DIR = [ FDirName $(HAIKU_OPTIONAL_BUILD_PACKAGES_DIR)
|
||||||
$(HAIKU_MESA_FILE:B) ] ;
|
$(HAIKU_MESA_FILE:B) ] ;
|
||||||
|
|
||||||
|
HAIKU_MESA_HEADERS = [ FDirName $(HAIKU_MESA_DIR) include ] ;
|
||||||
HAIKU_MESA_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_MESA_DIR)
|
HAIKU_MESA_HEADERS_DEPENDENCY = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
: include/ : $(zipFile) : extracted-mesa ] ;
|
: include/ : $(zipFile) : extracted-mesa ] ;
|
||||||
|
|
||||||
HAIKU_GLAPI_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
# Base Mesa libraries
|
||||||
:
|
|
||||||
lib.haiku/libglapi.a
|
|
||||||
: $(zipFile)
|
|
||||||
: extracted-mesa ] ;
|
|
||||||
HAIKU_GLSL_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
|
||||||
:
|
|
||||||
lib.haiku/libglsl.a
|
|
||||||
: $(zipFile)
|
|
||||||
: extracted-mesa ] ;
|
|
||||||
HAIKU_MESA_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
HAIKU_MESA_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
:
|
:
|
||||||
lib.haiku/libmesa.a
|
lib.haiku/libmesa.a
|
||||||
: $(zipFile)
|
: $(zipFile)
|
||||||
: extracted-mesa ] ;
|
: extracted-mesa ] ;
|
||||||
HAIKU_GALLIUM_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
HAIKU_GLAPI_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
:
|
:
|
||||||
lib.haiku/libgallium.a
|
lib.haiku/libglapi.a
|
||||||
: $(zipFile)
|
: $(zipFile)
|
||||||
: extracted-mesa ] ;
|
: extracted-mesa ] ;
|
||||||
|
|
||||||
if FIsBuildFeatureEnabled(llvm) {
|
|
||||||
HAIKU_GALLIUM_LLVMPIPE_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
|
||||||
:
|
|
||||||
lib.haiku/libllvmpipe.a
|
|
||||||
: $(zipFile)
|
|
||||||
: extracted-mesa ] ;
|
|
||||||
Depends $(HAIKU_GALLIUM_LLVMPIPE_LIB) : $(HAIKU_LLVM_LIBS) ;
|
|
||||||
} else {
|
|
||||||
HAIKU_GALLIUM_SOFTPIPE_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
|
||||||
:
|
|
||||||
lib.haiku/libsoftpipe.a
|
|
||||||
: $(zipFile)
|
|
||||||
: extracted-mesa ] ;
|
|
||||||
}
|
|
||||||
|
|
||||||
HAIKU_MESA_HEADERS = [ FDirName $(HAIKU_MESA_DIR) include ] ;
|
|
||||||
|
|
||||||
Depends $(HAIKU_MESA_HEADERS_DEPENDENCY) : $(HAIKU_GLU_HEADERS_DEPENDENCY) ;
|
Depends $(HAIKU_MESA_HEADERS_DEPENDENCY) : $(HAIKU_GLU_HEADERS_DEPENDENCY) ;
|
||||||
Depends $(HAIKU_GLAPI_LIBS) : $(HAIKU_GLU_LIBS) ;
|
Depends $(HAIKU_GLAPI_LIBS) : $(HAIKU_GLU_LIBS) ;
|
||||||
|
|
||||||
|
# Extended Mesa libraries for newer versions
|
||||||
|
if $(HAIKU_GCC_VERSION[1]) >= 4 {
|
||||||
|
HAIKU_GLSL_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
|
:
|
||||||
|
lib.haiku/libglsl.a
|
||||||
|
: $(zipFile)
|
||||||
|
: extracted-mesa ] ;
|
||||||
|
HAIKU_GALLIUM_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
|
:
|
||||||
|
lib.haiku/libgallium.a
|
||||||
|
: $(zipFile)
|
||||||
|
: extracted-mesa ] ;
|
||||||
|
|
||||||
|
if FIsBuildFeatureEnabled(llvm) {
|
||||||
|
HAIKU_GALLIUM_LLVMPIPE_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
|
:
|
||||||
|
lib.haiku/libllvmpipe.a
|
||||||
|
: $(zipFile)
|
||||||
|
: extracted-mesa ] ;
|
||||||
|
Depends $(HAIKU_GALLIUM_LLVMPIPE_LIB) : $(HAIKU_LLVM_LIBS) ;
|
||||||
|
} else {
|
||||||
|
HAIKU_GALLIUM_SOFTPIPE_LIB = [ ExtractArchive $(HAIKU_MESA_DIR)
|
||||||
|
:
|
||||||
|
lib.haiku/libsoftpipe.a
|
||||||
|
: $(zipFile)
|
||||||
|
: extracted-mesa ] ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
EnableBuildFeatures mesa ;
|
EnableBuildFeatures mesa ;
|
||||||
} else {
|
} else {
|
||||||
Echo "Mesa 3D rendering support not available on $(TARGET_ARCH)" ;
|
Echo "Mesa 3D rendering support not available on $(TARGET_ARCH)" ;
|
||||||
|
|||||||
+26
-27
@@ -35,7 +35,7 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
|
|||||||
setversion setvolume seq sha1sum shar shred shuf shutdown sleep sort
|
setversion setvolume seq sha1sum shar shred shuf shutdown sleep sort
|
||||||
spamdbm split stat strace stty su sum sync sysinfo
|
spamdbm split stat strace stty su sum sync sysinfo
|
||||||
tac tail tcpdump tcptester tee telnet telnetd test timeout top touch
|
tac tail tcpdump tcptester tee telnet telnetd test timeout top touch
|
||||||
tput tr traceroute translate trash true truncate tsort tty
|
<ncurses>tput tr traceroute translate trash true truncate tsort tty
|
||||||
uname unchop unexpand unmount uniq unlink unshar unzip unzipsfx
|
uname unchop unexpand unmount uniq unlink unshar unzip unzipsfx
|
||||||
<bin>updatedb uptime urlwrapper useradd uudecode uuencode
|
<bin>updatedb uptime urlwrapper useradd uudecode uuencode
|
||||||
vdir version vmstat
|
vdir version vmstat
|
||||||
@@ -45,8 +45,8 @@ SYSTEM_BIN = [ FFilterByBuildFeatures
|
|||||||
] ;
|
] ;
|
||||||
|
|
||||||
SYSTEM_APPS = [ FFilterByBuildFeatures
|
SYSTEM_APPS = [ FFilterByBuildFeatures
|
||||||
AboutSystem ActivityMonitor BootManager@x86 CharacterMap
|
AboutSystem ActivityMonitor BootManager@x86 CDPlayer CharacterMap
|
||||||
CodyCam DeskCalc Devices DiskProbe DiskUsage DriveSetup CDPlayer Debugger
|
CodyCam Debugger DeskCalc Devices DiskProbe DiskUsage DriveSetup
|
||||||
Expander GLInfo@x86 Icon-O-Matic Installer LaunchBox Magnify Mail
|
Expander GLInfo@x86 Icon-O-Matic Installer LaunchBox Magnify Mail
|
||||||
MediaConverter MediaPlayer MidiPlayer NetworkStatus PackageInstaller People
|
MediaConverter MediaPlayer MidiPlayer NetworkStatus PackageInstaller People
|
||||||
PoorMan PowerStatus ProcessController Screenshot ShowImage SoundRecorder
|
PoorMan PowerStatus ProcessController Screenshot ShowImage SoundRecorder
|
||||||
@@ -97,10 +97,13 @@ SYSTEM_NETWORK_DATALINK_PROTOCOLS = ethernet_frame <module>arp loopback_frame
|
|||||||
SYSTEM_NETWORK_PROTOCOLS = ipv4 tcp udp icmp unix icmp6 ipv6 ;
|
SYSTEM_NETWORK_PROTOCOLS = ipv4 tcp udp icmp unix icmp6 ipv6 ;
|
||||||
|
|
||||||
SYSTEM_ADD_ONS_ACCELERANTS = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_ACCELERANTS = [ FFilterByBuildFeatures
|
||||||
|
x86,x86_64 @{
|
||||||
|
vesa.accelerant
|
||||||
|
}@ # x86,x86_64
|
||||||
x86 @{
|
x86 @{
|
||||||
3dfx.accelerant ati.accelerant matrox.accelerant neomagic.accelerant
|
3dfx.accelerant ati.accelerant matrox.accelerant neomagic.accelerant
|
||||||
nvidia.accelerant intel_810.accelerant intel_extreme.accelerant
|
nvidia.accelerant intel_810.accelerant intel_extreme.accelerant
|
||||||
radeon.accelerant radeon_hd.accelerant s3.accelerant vesa.accelerant
|
radeon.accelerant radeon_hd.accelerant s3.accelerant
|
||||||
#via.accelerant vmware.accelerant
|
#via.accelerant vmware.accelerant
|
||||||
}@ # x86
|
}@ # x86
|
||||||
] ;
|
] ;
|
||||||
@@ -122,7 +125,7 @@ SYSTEM_ADD_ONS_MEDIA = [ FFilterByBuildFeatures
|
|||||||
usb_webcam.media_addon
|
usb_webcam.media_addon
|
||||||
video_producer_demo.media_addon
|
video_producer_demo.media_addon
|
||||||
video_window_demo.media_addon
|
video_window_demo.media_addon
|
||||||
firewire_dv.media_addon
|
firewire_dv.media_addon@x86
|
||||||
#legacy.media_addon
|
#legacy.media_addon
|
||||||
equalizer.media_addon
|
equalizer.media_addon
|
||||||
vst_host.media_addon
|
vst_host.media_addon
|
||||||
@@ -152,18 +155,21 @@ SYSTEM_ADD_ONS_SCREENSAVERS = [ FFilterByBuildFeatures
|
|||||||
SYSTEM_ADD_ONS_DRIVERS_AUDIO = auich auvia echo3g emuxki hda ice1712 sis7018 ;
|
SYSTEM_ADD_ONS_DRIVERS_AUDIO = auich auvia echo3g emuxki hda ice1712 sis7018 ;
|
||||||
SYSTEM_ADD_ONS_DRIVERS_AUDIO_OLD = ; #cmedia usb_audio ;
|
SYSTEM_ADD_ONS_DRIVERS_AUDIO_OLD = ; #cmedia usb_audio ;
|
||||||
SYSTEM_ADD_ONS_DRIVERS_GRAPHICS = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_DRIVERS_GRAPHICS = [ FFilterByBuildFeatures
|
||||||
|
x86,x86_64 @{
|
||||||
|
vesa
|
||||||
|
}@ # x86,x86_64
|
||||||
x86 @{
|
x86 @{
|
||||||
ati 3dfx intel_810 intel_extreme matrox neomagic nvidia radeon radeon_hd
|
ati 3dfx intel_810 intel_extreme matrox neomagic nvidia radeon radeon_hd
|
||||||
s3 vesa #via vmware
|
s3 #via vmware
|
||||||
}@ # x86
|
}@ # x86
|
||||||
] ;
|
] ;
|
||||||
SYSTEM_ADD_ONS_DRIVERS_MIDI = emuxki ice1712 usb_midi ;
|
SYSTEM_ADD_ONS_DRIVERS_MIDI = emuxki ice1712 usb_midi ;
|
||||||
SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
|
||||||
x86 @{
|
x86,x86_64 @{
|
||||||
3com atheros813x ar81xx attansic_l1 attansic_l2 broadcom440x
|
3com atheros813x ar81xx attansic_l1 attansic_l2 broadcom440x
|
||||||
broadcom570x dec21xxx ipro100 ipro1000 jmicron2x0 marvell_yukon nforce
|
broadcom570x dec21xxx ipro100 ipro1000 jmicron2x0 marvell_yukon nforce
|
||||||
pcnet rtl8139 rtl81xx sis19x syskonnect via_rhine vt612x
|
pcnet rtl8139 rtl81xx sis19x syskonnect via_rhine vt612x
|
||||||
}@ # x86
|
}@ # x86_64
|
||||||
|
|
||||||
etherpci pegasus sis900 usb_davicom usb_asix usb_ecm wb840
|
etherpci pegasus sis900 usb_davicom usb_asix usb_ecm wb840
|
||||||
|
|
||||||
@@ -180,11 +186,12 @@ SYSTEM_ADD_ONS_DRIVERS_NET = [ FFilterByBuildFeatures
|
|||||||
] ;
|
] ;
|
||||||
SYSTEM_ADD_ONS_DRIVERS_POWER = [ FFilterByBuildFeatures acpi_button@x86 ] ;
|
SYSTEM_ADD_ONS_DRIVERS_POWER = [ FFilterByBuildFeatures acpi_button@x86 ] ;
|
||||||
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
SYSTEM_ADD_ONS_BUS_MANAGERS = [ FFilterByBuildFeatures
|
||||||
ata@ata pci ps2@x86 isa@x86
|
ata@ata pci ps2@x86,x86_64 isa@x86,x86_64
|
||||||
ide@ide scsi config_manager agp_gart usb firewire acpi@x86
|
ide@ide scsi config_manager agp_gart@x86 usb firewire@x86 acpi@x86
|
||||||
|
virtio
|
||||||
] ;
|
] ;
|
||||||
SYSTEM_ADD_ONS_FILE_SYSTEMS = bfs btrfs cdda exfat ext2 fat iso9660 nfs nfs4
|
SYSTEM_ADD_ONS_FILE_SYSTEMS = bfs btrfs cdda exfat ext2 fat iso9660 nfs nfs4
|
||||||
attribute_overlay write_overlay ntfs reiserfs udf googlefs ;
|
attribute_overlay write_overlay ntfs reiserfs@x86 udf googlefs ;
|
||||||
|
|
||||||
# wifi firmware
|
# wifi firmware
|
||||||
for driver in $(SYSTEM_ADD_ONS_DRIVERS_NET) {
|
for driver in $(SYSTEM_ADD_ONS_DRIVERS_NET) {
|
||||||
@@ -223,6 +230,8 @@ AddFilesToHaikuImage system add-ons kernel busses scsi
|
|||||||
: ahci ;
|
: ahci ;
|
||||||
AddFilesToHaikuImage system add-ons kernel busses usb
|
AddFilesToHaikuImage system add-ons kernel busses usb
|
||||||
: <usb>uhci <usb>ohci <usb>ehci ;
|
: <usb>uhci <usb>ohci <usb>ehci ;
|
||||||
|
AddFilesToHaikuImage system add-ons kernel busses virtio
|
||||||
|
: virtio_pci ;
|
||||||
AddFilesToHaikuImage system add-ons kernel console : vga_text ;
|
AddFilesToHaikuImage system add-ons kernel console : vga_text ;
|
||||||
AddFilesToHaikuImage system add-ons kernel debugger
|
AddFilesToHaikuImage system add-ons kernel debugger
|
||||||
: <kdebug>demangle <kdebug>disasm@x86 <kdebug>hangman
|
: <kdebug>demangle <kdebug>disasm@x86 <kdebug>hangman
|
||||||
@@ -231,22 +240,22 @@ AddFilesToHaikuImage system add-ons kernel debugger
|
|||||||
AddFilesToHaikuImage system add-ons kernel file_systems
|
AddFilesToHaikuImage system add-ons kernel file_systems
|
||||||
: $(SYSTEM_ADD_ONS_FILE_SYSTEMS) ;
|
: $(SYSTEM_ADD_ONS_FILE_SYSTEMS) ;
|
||||||
AddFilesToHaikuImage system add-ons kernel generic
|
AddFilesToHaikuImage system add-ons kernel generic
|
||||||
: ata_adapter@ata bios@x86 dpc ide_adapter@ide
|
: ata_adapter@ata bios@x86,x86_64 dpc ide_adapter@ide
|
||||||
locked_pool mpu401 scsi_periph <module>tty cpuidle@x86 ;
|
locked_pool mpu401 scsi_periph <module>tty ;
|
||||||
AddFilesToHaikuImage system add-ons kernel partitioning_systems
|
AddFilesToHaikuImage system add-ons kernel partitioning_systems
|
||||||
: amiga_rdb apple efi_gpt intel session ;
|
: amiga_rdb apple efi_gpt intel session ;
|
||||||
AddFilesToHaikuImage system add-ons kernel interrupt_controllers
|
AddFilesToHaikuImage system add-ons kernel interrupt_controllers
|
||||||
: openpic@ppc ;
|
: openpic@ppc ;
|
||||||
|
|
||||||
if $(TARGET_ARCH) = x86 {
|
if $(TARGET_ARCH) = x86 || $(TARGET_ARCH) = x86_64 {
|
||||||
AddFilesToHaikuImage system add-ons kernel cpu : generic_x86 ;
|
AddFilesToHaikuImage system add-ons kernel cpu : generic_x86 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
# drivers
|
# drivers
|
||||||
AddNewDriversToHaikuImage disk scsi : scsi_cd scsi_disk ;
|
AddNewDriversToHaikuImage disk scsi : scsi_cd scsi_disk ;
|
||||||
|
AddNewDriversToHaikuImage disk virtual : virtio_block ;
|
||||||
AddNewDriversToHaikuImage power : enhanced_speedstep@x86 ;
|
AddNewDriversToHaikuImage power : enhanced_speedstep@x86 ;
|
||||||
AddNewDriversToHaikuImage power : acpi_battery@x86 ;
|
AddNewDriversToHaikuImage power : acpi_battery@x86 ;
|
||||||
AddNewDriversToHaikuImage power : x86_cpuidle@x86 ;
|
|
||||||
#AddNewDriversToHaikuImage display : display_controls@x86 ;
|
#AddNewDriversToHaikuImage display : display_controls@x86 ;
|
||||||
|
|
||||||
# legacy drivers
|
# legacy drivers
|
||||||
@@ -255,7 +264,7 @@ AddDriversToHaikuImage : console dprintf null
|
|||||||
AddDriversToHaikuImage audio hmulti : $(SYSTEM_ADD_ONS_DRIVERS_AUDIO) ;
|
AddDriversToHaikuImage audio hmulti : $(SYSTEM_ADD_ONS_DRIVERS_AUDIO) ;
|
||||||
AddDriversToHaikuImage audio old : $(SYSTEM_ADD_ONS_DRIVERS_AUDIO_OLD) ;
|
AddDriversToHaikuImage audio old : $(SYSTEM_ADD_ONS_DRIVERS_AUDIO_OLD) ;
|
||||||
AddDriversToHaikuImage midi : $(SYSTEM_ADD_ONS_DRIVERS_MIDI) ;
|
AddDriversToHaikuImage midi : $(SYSTEM_ADD_ONS_DRIVERS_MIDI) ;
|
||||||
AddDriversToHaikuImage bus : usb_raw fw_raw ;
|
AddDriversToHaikuImage bus : usb_raw fw_raw@x86 ;
|
||||||
AddDriversToHaikuImage disk floppy : pc_floppy@x86 ;
|
AddDriversToHaikuImage disk floppy : pc_floppy@x86 ;
|
||||||
AddDriversToHaikuImage disk usb : usb_disk ;
|
AddDriversToHaikuImage disk usb : usb_disk ;
|
||||||
AddDriversToHaikuImage disk usb : usb_floppy ;
|
AddDriversToHaikuImage disk usb : usb_floppy ;
|
||||||
@@ -302,22 +311,11 @@ if $(TARGET_ARCH) = x86 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# libbe.so now includes what used to be in liblocale.so
|
|
||||||
# TODO: Remove this once all optional packages have been rebuilt (i.e. after
|
|
||||||
# next release)!
|
|
||||||
SYSTEM_LIBS_LIBBE_ALIASES = liblocale.so ;
|
|
||||||
if $(TARGET_ARCH) = x86 {
|
|
||||||
local lib ;
|
|
||||||
for lib in $(SYSTEM_LIBS_LIBBE_ALIASES) {
|
|
||||||
AddSymlinkToHaikuHybridImage system lib : libbe.so : $(lib) : : true ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
SYSTEM_LIBS_ALIASES =
|
SYSTEM_LIBS_ALIASES =
|
||||||
$(SYSTEM_LIBS_LIBNETWORK_ALIASES)
|
$(SYSTEM_LIBS_LIBNETWORK_ALIASES)
|
||||||
libnetapi.so
|
libnetapi.so
|
||||||
$(SYSTEM_LIBS_LIBGL_ALIASES)
|
$(SYSTEM_LIBS_LIBGL_ALIASES)
|
||||||
$(SYSTEM_LIBS_LIBBE_ALIASES)
|
|
||||||
;
|
;
|
||||||
|
|
||||||
OPTIONAL_LIBS_ALIASES =
|
OPTIONAL_LIBS_ALIASES =
|
||||||
@@ -613,6 +611,7 @@ AddBootModuleSymlinksToHaikuImage
|
|||||||
ide_isa@x86
|
ide_isa@x86
|
||||||
<usb>uhci <usb>ohci <usb>ehci
|
<usb>uhci <usb>ohci <usb>ehci
|
||||||
scsi_cd scsi_disk usb_disk
|
scsi_cd scsi_disk usb_disk
|
||||||
|
virtio virtio_pci virtio_block
|
||||||
efi_gpt
|
efi_gpt
|
||||||
intel
|
intel
|
||||||
bfs
|
bfs
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
|||||||
local sysHeaders ;
|
local sysHeaders ;
|
||||||
local cc ;
|
local cc ;
|
||||||
local defines ;
|
local defines ;
|
||||||
|
local includesSeparator ;
|
||||||
local localIncludesOption ;
|
local localIncludesOption ;
|
||||||
local systemIncludesOption ;
|
local systemIncludesOption ;
|
||||||
|
|
||||||
@@ -22,20 +23,20 @@ rule ExtractCatalogEntries target : sources : signature : regexp
|
|||||||
if $(PLATFORM) = host {
|
if $(PLATFORM) = host {
|
||||||
sysHeaders += $(HOST_HDRS) ;
|
sysHeaders += $(HOST_HDRS) ;
|
||||||
defines += $(HOST_DEFINES) ;
|
defines += $(HOST_DEFINES) ;
|
||||||
|
cc = $(HOST_CC) ;
|
||||||
if $(USES_BE_API) {
|
if $(USES_BE_API) {
|
||||||
sysHeaders += $(HOST_BE_API_HEADERS) ;
|
sysHeaders += $(HOST_BE_API_HEADERS) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
defines += $(HOST_DEFINES) ;
|
includesSeparator = $(HOST_INCLUDES_SEPARATOR) ;
|
||||||
cc = $(HOST_CC) ;
|
|
||||||
localIncludesOption = $(HOST_LOCAL_INCLUDES_OPTION) ;
|
localIncludesOption = $(HOST_LOCAL_INCLUDES_OPTION) ;
|
||||||
systemIncludesOption = $(HOST_SYSTEM_INCLUDES_OPTION) ;
|
systemIncludesOption = $(HOST_SYSTEM_INCLUDES_OPTION) ;
|
||||||
} else {
|
} else {
|
||||||
sysHeaders += $(TARGET_HDRS) ;
|
sysHeaders += $(TARGET_HDRS) ;
|
||||||
defines += $(TARGET_DEFINES) ;
|
defines += $(TARGET_DEFINES) ;
|
||||||
defines += $(TARGET_DEFINES) ;
|
|
||||||
cc = $(TARGET_CC) ;
|
cc = $(TARGET_CC) ;
|
||||||
|
|
||||||
|
includesSeparator = $(TARGET_INCLUDES_SEPARATOR) ;
|
||||||
localIncludesOption = $(TARGET_LOCAL_INCLUDES_OPTION) ;
|
localIncludesOption = $(TARGET_LOCAL_INCLUDES_OPTION) ;
|
||||||
systemIncludesOption = $(TARGET_SYSTEM_INCLUDES_OPTION) ;
|
systemIncludesOption = $(TARGET_SYSTEM_INCLUDES_OPTION) ;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ rule Addon target : sources : libraries : isExecutable
|
|||||||
|
|
||||||
local linkFlags = -Xlinker -soname=\"$(target:G=)\" ;
|
local linkFlags = -Xlinker -soname=\"$(target:G=)\" ;
|
||||||
if $(isExecutable) != true {
|
if $(isExecutable) != true {
|
||||||
linkFlags = -nostart $(linkFlags) ;
|
linkFlags = -shared $(linkFlags) ;
|
||||||
}
|
}
|
||||||
LINKFLAGS on $(target) = [ on $(target) return $(LINKFLAGS) ] $(linkFlags) ;
|
LINKFLAGS on $(target) = [ on $(target) return $(LINKFLAGS) ] $(linkFlags) ;
|
||||||
LinkAgainst $(target) : $(libraries) ;
|
LinkAgainst $(target) : $(libraries) ;
|
||||||
@@ -421,7 +421,7 @@ rule SharedLibraryFromObjects
|
|||||||
|
|
||||||
MainFromObjects $(_lib) : $(2) ;
|
MainFromObjects $(_lib) : $(2) ;
|
||||||
LINKFLAGS on $(_lib) = [ on $(_lib) return $(LINKFLAGS) ]
|
LINKFLAGS on $(_lib) = [ on $(_lib) return $(LINKFLAGS) ]
|
||||||
-nostart -Xlinker -soname=\"$(soname)\" ;
|
-shared -Xlinker -soname=\"$(soname)\" ;
|
||||||
LinkAgainst $(_lib) : $(3) ;
|
LinkAgainst $(_lib) : $(3) ;
|
||||||
|
|
||||||
AddSharedObjectGlueCode $(_lib) : false ;
|
AddSharedObjectGlueCode $(_lib) : false ;
|
||||||
|
|||||||
+1
-1
@@ -502,7 +502,7 @@ rule FFilterByBuildFeatures list
|
|||||||
switch $(element) {
|
switch $(element) {
|
||||||
case }@ :
|
case }@ :
|
||||||
{
|
{
|
||||||
# Pop the topmost specificaton off the stack.
|
# Pop the topmost specification off the stack.
|
||||||
evaluationStack = $(evaluationStack[2-]) ;
|
evaluationStack = $(evaluationStack[2-]) ;
|
||||||
if ! $(evaluationStack) {
|
if ! $(evaluationStack) {
|
||||||
Exit "FFilterByBuildFeatures: Unbalanced @( in: " $(list) ;
|
Exit "FFilterByBuildFeatures: Unbalanced @( in: " $(list) ;
|
||||||
|
|||||||
@@ -41,4 +41,4 @@ OptionalPackageDependencies WebPositive : Curl LibXML2 SQLite WebKit WebPositive
|
|||||||
OptionalPackageDependencies wpa_supplicant : OpenSSL ;
|
OptionalPackageDependencies wpa_supplicant : OpenSSL ;
|
||||||
OptionalPackageDependencies XZ-Utils : Tar ;
|
OptionalPackageDependencies XZ-Utils : Tar ;
|
||||||
|
|
||||||
OptionalPackageDependencies MandatoryPackages : Bzip Ctags Grep ICU Sed Tar ;
|
OptionalPackageDependencies MandatoryPackages : Bzip Ctags Grep ICU Sed Tar TermInfo ;
|
||||||
|
|||||||
@@ -97,6 +97,7 @@ if $(HAIKU_ADD_ALTERNATIVE_GCC_LIBS) = 1
|
|||||||
# System-sounds - a collection of system sounds
|
# System-sounds - a collection of system sounds
|
||||||
# TagLib - id3 tag library
|
# TagLib - id3 tag library
|
||||||
# Tar - archiving utility
|
# Tar - archiving utility
|
||||||
|
# TermInfo - terminal capabilites database
|
||||||
# TimGMSoundFont - a good quality General MIDI Sound Font
|
# TimGMSoundFont - a good quality General MIDI Sound Font
|
||||||
# TrackerNewTemplates - template files for Tracker's New menu
|
# TrackerNewTemplates - template files for Tracker's New menu
|
||||||
# Transmission - a fast, easy, and free BitTorrent Client
|
# Transmission - a fast, easy, and free BitTorrent Client
|
||||||
@@ -749,8 +750,8 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] {
|
|||||||
|
|
||||||
if $(HAIKU_GCC_VERSION[1]) = 4 || $(isHybridBuild) {
|
if $(HAIKU_GCC_VERSION[1]) = 4 || $(isHybridBuild) {
|
||||||
InstallOptionalHaikuImagePackage
|
InstallOptionalHaikuImagePackage
|
||||||
gcc-4.6.3-r1a4-x86-gcc4-2012-11-01.zip
|
gcc-4.7.3-r1a4-x86-gcc4-2013-05-13.zip
|
||||||
: $(baseURL)/gcc-4.6.3-r1a4-x86-gcc4-2012-11-01.zip ;
|
: $(baseURL)/gcc-4.7.3-r1a4-x86-gcc4-2013-05-13.zip ;
|
||||||
}
|
}
|
||||||
|
|
||||||
if $(HAIKU_GCC_VERSION[1]) = 4 {
|
if $(HAIKU_GCC_VERSION[1]) = 4 {
|
||||||
@@ -762,7 +763,7 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ] {
|
|||||||
local libs = libstdc++.so libsupc++.so ;
|
local libs = libstdc++.so libsupc++.so ;
|
||||||
for lib in $(libs) {
|
for lib in $(libs) {
|
||||||
AddSymlinkToHaikuHybridImage
|
AddSymlinkToHaikuHybridImage
|
||||||
develop abi x86 gcc4 tools gcc-4.6.3-haiku-121101 lib
|
develop abi x86 gcc4 tools gcc-4.7.3-haiku-130513 lib
|
||||||
: /system/lib $(lib) : : true ;
|
: /system/lib $(lib) : : true ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -961,7 +962,6 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ]
|
|||||||
|
|
||||||
# third party libs headers
|
# third party libs headers
|
||||||
AddHeaderDirectoryToHaikuImage libs ncurses : 3rdparty ;
|
AddHeaderDirectoryToHaikuImage libs ncurses : 3rdparty ;
|
||||||
AddHeaderDirectoryToHaikuImage libs termcap : 3rdparty ;
|
|
||||||
AddHeaderDirectoryToHaikuImage libs tiff : 3rdparty ;
|
AddHeaderDirectoryToHaikuImage libs tiff : 3rdparty ;
|
||||||
|
|
||||||
CopyDirectoryToHaikuImage develop headers :
|
CopyDirectoryToHaikuImage develop headers :
|
||||||
@@ -1299,7 +1299,7 @@ if [ IsOptionalHaikuImagePackageAdded ICU ] {
|
|||||||
}
|
}
|
||||||
} else if $(TARGET_ARCH) = arm {
|
} else if $(TARGET_ARCH) = arm {
|
||||||
InstallOptionalHaikuImagePackage $(HAIKU_ICU_ARM_PACKAGE)
|
InstallOptionalHaikuImagePackage $(HAIKU_ICU_ARM_PACKAGE)
|
||||||
: $(baseURL)/(HAIKU_ICU_ARM_PACKAGE)
|
: $(baseURL)/$(HAIKU_ICU_ARM_PACKAGE)
|
||||||
: system lib ;
|
: system lib ;
|
||||||
} else if $(TARGET_ARCH) = x86_64 {
|
} else if $(TARGET_ARCH) = x86_64 {
|
||||||
InstallOptionalHaikuImagePackage $(HAIKU_ICU_X86_64_PACKAGE)
|
InstallOptionalHaikuImagePackage $(HAIKU_ICU_X86_64_PACKAGE)
|
||||||
@@ -2065,6 +2065,13 @@ if [ IsOptionalHaikuImagePackageAdded Tar ] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# TermInfo
|
||||||
|
if [ IsOptionalHaikuImagePackageAdded TermInfo ] {
|
||||||
|
InstallOptionalHaikuImagePackage terminfo-1.383-2013-05-21.zip
|
||||||
|
: $(baseURL)/terminfo-1.383-2013-05-21.zip ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# TimGMSoundFont
|
# TimGMSoundFont
|
||||||
if [ IsOptionalHaikuImagePackageAdded TimGMSoundFont ] {
|
if [ IsOptionalHaikuImagePackageAdded TimGMSoundFont ] {
|
||||||
InstallOptionalHaikuImagePackage TimGMSoundFont-2010-06-16.zip
|
InstallOptionalHaikuImagePackage TimGMSoundFont-2010-06-16.zip
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
Setting up the Haiku boot partition
|
|
||||||
-------------------------------------
|
|
||||||
partition 1 -- FAT32, bootable flag, type 'c'
|
|
||||||
partition 2 -- BeFS, Haiku filesystem, type 'eb'
|
|
||||||
|
|
||||||
The boot partition must contain the following files to boot Haiku:
|
|
||||||
* bootcode.bin : 2nd stage bootloader
|
|
||||||
* start.elf: The GPU binary firmware image
|
|
||||||
* haiku_loader: Haiku Loader
|
|
||||||
* haiku-floppyboot.tgz: Compressed image with Haiku kernel
|
|
||||||
* config.txt: A configuration file read by the GPU.
|
|
||||||
|
|
||||||
Optional files:
|
|
||||||
* vlls directory: Additional GPU code, e.g. extra codecs.
|
|
||||||
|
|
||||||
Building
|
|
||||||
-------------------------------------
|
|
||||||
jam -q -sHAIKU_BOOT_BOARD=raspberry_pi -sHAIKU_BOOT_PLATFORM=raspberrypi_arm haiku_loader
|
|
||||||
jam -q -sHAIKU_BOOT_BOARD=raspberry_pi -sHAIKU_BOOT_PLATFORM=raspberrypi_arm haiku-floppyboot.tgz
|
|
||||||
|
|
||||||
config.txt options
|
|
||||||
-------------------------------------
|
|
||||||
kernel=haiku_loader
|
|
||||||
kernel_address=0x0
|
|
||||||
disable_commandline_tags=1
|
|
||||||
ramfsfile=haiku-floppyboot.tgz
|
|
||||||
ramfsaddr=0x04000000
|
|
||||||
|
|
||||||
Additional information
|
|
||||||
-------------------------------------
|
|
||||||
* Latest Raspberry Pi firmware:
|
|
||||||
http://github.com/raspberrypi/firmware/tree/master/boot
|
|
||||||
* config.txt options:
|
|
||||||
http://www.elinux.org/RPiconfig
|
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
1 belarusian x-vnd.Haiku-IntelDiskAddOn 4191422532
|
1 belarusian x-vnd.Haiku-IntelDiskAddOn 946918966
|
||||||
Active partition BFS_Creation_Parameter Актыўны падзел
|
Active partition PrimaryPartitionEditor Актыўны падзел
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-IntelDiskAddOn 4191422532
|
1 dutch; flemish x-vnd.Haiku-IntelDiskAddOn 946918966
|
||||||
Active partition BFS_Creation_Parameter Actieve partitie
|
Active partition PrimaryPartitionEditor Actieve partitie
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
1 belarusian x-vnd.Haiku-NTFSDiskAddOn 25755486
|
||||||
|
Name: NTFS_Initialize_Parameter Імя:
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
1 dutch; flemish x-vnd.Haiku-NTFSDiskAddOn 25755486
|
||||||
|
Name: NTFS_Initialize_Parameter Naam:
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
1 portuguese (brazil) x-vnd.Haiku-KeyboardInputServerDevice 2536418998
|
1 portuguese (brazil) x-vnd.Haiku-KeyboardInputServerDevice 2536418998
|
||||||
Kill application Team monitor Matar aplicação
|
Kill application Team monitor Matar aplicação
|
||||||
Quit application Team monitor Fechar aplicativo
|
Quit application Team monitor Fechar aplicativo
|
||||||
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selecione uma aplicação da lista acima e clique um dos botões 'Matar aplicativo' e 'Fechar aplicativo' de maneira a fechá-lo.\n\nPressione CONTROL+ALT+DELETE por %ld segundos para reiniciar.
|
Select an application from the list above and click one of the buttons 'Kill application' and 'Quit application' in order to close it.\n\nHold CONTROL+ALT+DELETE for %ld seconds to reboot. Team monitor Selecione um aplicativo da lista acima e clique um dos botões 'Matar aplicativo' e 'Fechar aplicativo' de maneira a fechá-lo.\n\nPressione CONTROL+ALT+DELETE por %ld segundos para reiniciar.
|
||||||
If the application will not quit you may have to kill it. Team monitor Se a aplicação não fechar, você deve matá-la.
|
If the application will not quit you may have to kill it. Team monitor Se a aplicação não fechar, você deve matá-la.
|
||||||
Force reboot Team monitor Forçar a reinicialização
|
Force reboot Team monitor Forçar a reinicialização
|
||||||
Team monitor Team monitor Monitor de equipe
|
Team monitor Team monitor Monitor de equipe
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
1 french x-vnd.Haiku-mixer.media_addon 3450667169
|
1 french x-vnd.Haiku-mixer.media_addon 3450667169
|
||||||
Input gain controls represent AudioMixer Les contrôles de gain d'entrée représentent
|
Input gain controls represent AudioMixer Les contrôles de gain d'entrée représentent
|
||||||
Linear interpolation AudioMixer Interpolation linéaire
|
Linear interpolation AudioMixer Interpolation linéaire
|
||||||
Virtual output channels AudioMixer Canaux de sortie virtuelles
|
Virtual output channels AudioMixer Canaux de la sortie virtuelle
|
||||||
Refuse output format changes AudioMixer Refuser les changements de formats de sorties
|
Refuse output format changes AudioMixer Refuser les changements de formats de sorties
|
||||||
Output mapping AudioMixer Correspondances de sorties
|
Output mapping AudioMixer Correspondances de sorties
|
||||||
Allow input channel remapping AudioMixer Autoriser la réassignation des canaux d'entrées
|
Allow input channel remapping AudioMixer Autoriser la réassignation des canaux d'entrées
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ Output treble MultiAudio Выхад высокіх
|
|||||||
Mono mix MultiAudio Моно мікс
|
Mono mix MultiAudio Моно мікс
|
||||||
General MultiAudio Агульны
|
General MultiAudio Агульны
|
||||||
Input & Output MultiAudio Выхад і Ўваход
|
Input & Output MultiAudio Выхад і Ўваход
|
||||||
Enhanced Setup MultiAudio Спец. Наладкі
|
Enhanced Setup MultiAudio Спецыяльныя Наладкі
|
||||||
Stereo mix MultiAudio Стэрэа мікс
|
Stereo mix MultiAudio Стэрэа мікс
|
||||||
Output 3D depth MultiAudio Выхад глыбіня 3D
|
Output 3D depth MultiAudio Выхад глыбіня 3D
|
||||||
Volume MultiAudio Гучнасьць
|
Volume MultiAudio Гучнасьць
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 french x-vnd.Haiku-hmulti_audio.media_addon 1510080944
|
1 french x-vnd.Haiku-hmulti_audio.media_addon 451057402
|
||||||
Master MultiAudio Général
|
Master MultiAudio Général
|
||||||
SPDIF MultiAudio SPDIF
|
SPDIF MultiAudio SPDIF
|
||||||
Gain MultiAudio Gain
|
Gain MultiAudio Gain
|
||||||
|
Output 3D center MultiAudio Sortie 3D centrale
|
||||||
Extended Setup MultiAudio Réglages étendus
|
Extended Setup MultiAudio Réglages étendus
|
||||||
CD MultiAudio CD
|
CD MultiAudio CD
|
||||||
Tone control MultiAudio Tonalité
|
Tone control MultiAudio Tonalité
|
||||||
@@ -19,6 +20,7 @@ General MultiAudio Général
|
|||||||
Input & Output MultiAudio Entrée & Sortie
|
Input & Output MultiAudio Entrée & Sortie
|
||||||
Enhanced Setup MultiAudio Réglages fins
|
Enhanced Setup MultiAudio Réglages fins
|
||||||
Stereo mix MultiAudio Mélangeur stéréo
|
Stereo mix MultiAudio Mélangeur stéréo
|
||||||
|
Output 3D depth MultiAudio Profondeur de la sortie 3D
|
||||||
Volume MultiAudio Volume
|
Volume MultiAudio Volume
|
||||||
Output MultiAudio Sortie
|
Output MultiAudio Sortie
|
||||||
Video MultiAudio Vidéo
|
Video MultiAudio Vidéo
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
1 dutch; flemish x-vnd.Haiku-hmulti_audio.media_addon 2576815106
|
||||||
|
Master MultiAudio Master
|
||||||
|
SPDIF MultiAudio SPDIF
|
||||||
|
Gain MultiAudio Versterking
|
||||||
|
Output 3D center MultiAudio Uitvoer 3D midden
|
||||||
@@ -1,11 +1,13 @@
|
|||||||
1 polish x-vnd.Haiku-hmulti_audio.media_addon 1938843440
|
1 polish x-vnd.Haiku-hmulti_audio.media_addon 2905288525
|
||||||
Master MultiAudio Master
|
Master MultiAudio Master
|
||||||
SPDIF MultiAudio SPDIF
|
SPDIF MultiAudio SPDIF
|
||||||
Gain MultiAudio Wzmocnienie
|
Gain MultiAudio Wzmocnienie
|
||||||
Output 3D center MultiAudio Wyjście 3D, środek
|
Output 3D center MultiAudio Wyjście 3D, środek
|
||||||
Extended Setup MultiAudio Zaawansowane Ustawienia
|
Extended Setup MultiAudio Zaawansowane Ustawienia
|
||||||
CD MultiAudio CD
|
CD MultiAudio CD
|
||||||
|
Tone control MultiAudio Kontrola tonów
|
||||||
Phone MultiAudio Telefon
|
Phone MultiAudio Telefon
|
||||||
|
Aux MultiAudio Aux
|
||||||
Headphones MultiAudio Słuchawki
|
Headphones MultiAudio Słuchawki
|
||||||
Beep MultiAudio Brzęczyk
|
Beep MultiAudio Brzęczyk
|
||||||
Input MultiAudio Wejście
|
Input MultiAudio Wejście
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-EXRTranslator 2253035870
|
1 greek, modern (1453-) x-vnd.Haiku-EXRTranslator 33353118
|
||||||
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator Μεταφραστής εικόνων EXR
|
EXR image translator EXRTranslator Μεταφραστής εικόνων EXR
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView Βασισμένο στο OpenEXR (http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView Βασισμένο στο OpenEXR (http://www.openexr.com)
|
||||||
EXR Settings main EXR Ρυθμίσεις
|
EXR Settings main EXR Ρυθμίσεις
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView τμήμα της Lucasfilm Entertainment Company Ltd
|
a division of Lucasfilm Entertainment Company Ltd ConfigView τμήμα της Lucasfilm Entertainment Company Ltd
|
||||||
EXR image EXRTranslator EXR εικόνα
|
EXR image EXRTranslator EXR εικόνα
|
||||||
|
EXR image translator ConfigView Μεταφραστής εικόνων EXR
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 hindi x-vnd.Haiku-EXRTranslator 2253035870
|
1 hindi x-vnd.Haiku-EXRTranslator 33353118
|
||||||
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator एक्सर छवि का अनुवादक
|
EXR image translator EXRTranslator एक्सर छवि का अनुवादक
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView एक्सरओपन के आधार पर(http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView एक्सरओपन के आधार पर(http://www.openexr.com)
|
||||||
EXR Settings main एक्सर की सेटिंग
|
EXR Settings main एक्सर की सेटिंग
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView लुकास्फिल्म एन्टरटेन्मेंट कंपनी लटीडी का एक प्रभाग
|
a division of Lucasfilm Entertainment Company Ltd ConfigView लुकास्फिल्म एन्टरटेन्मेंट कंपनी लटीडी का एक प्रभाग
|
||||||
EXR image EXRTranslator एक्सर छवि
|
EXR image EXRTranslator एक्सर छवि
|
||||||
|
EXR image translator ConfigView एक्सर छवि का अनुवादक
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 romanian x-vnd.Haiku-EXRTranslator 2253035870
|
1 romanian x-vnd.Haiku-EXRTranslator 33353118
|
||||||
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator Traducătorul de imagini EXR
|
EXR image translator EXRTranslator Traducătorul de imagini EXR
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView Bazat pe OpenEXR (http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView Bazat pe OpenEXR (http://www.openexr.com)
|
||||||
EXR Settings main Configurări EXR
|
EXR Settings main Configurări EXR
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView o diviziune a Lucasfilm Entertainment Company Ltd
|
a division of Lucasfilm Entertainment Company Ltd ConfigView o diviziune a Lucasfilm Entertainment Company Ltd
|
||||||
EXR image EXRTranslator Imagine EXR
|
EXR image EXRTranslator Imagine EXR
|
||||||
|
EXR image translator ConfigView Traducătorul de imagini EXR
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
1 ukrainian x-vnd.Haiku-EXRTranslator 2253035870
|
1 ukrainian x-vnd.Haiku-EXRTranslator 33353118
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
EXR image translator EXRTranslator Перетворювач зображень EXR
|
EXR image translator EXRTranslator Перетворювач зображень EXR
|
||||||
Based on OpenEXR (http://www.openexr.com) ConfigView Базоване на OpenEXR (http://www.openexr.com)
|
Based on OpenEXR (http://www.openexr.com) ConfigView Базоване на OpenEXR (http://www.openexr.com)
|
||||||
EXR Settings main Настройки EXR
|
EXR Settings main Настройки EXR
|
||||||
a division of Lucasfilm Entertainment Company Ltd ConfigView відділення Lucasfilm Entertainment Company Ltd
|
a division of Lucasfilm Entertainment Company Ltd ConfigView відділення Lucasfilm Entertainment Company Ltd
|
||||||
EXR image EXRTranslator Зображення EXR
|
EXR image EXRTranslator Зображення EXR
|
||||||
|
EXR image translator ConfigView Перетворювач зображень EXR
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
1 portuguese (brazil) x-vnd.Haiku-GIFTranslator 2708495435
|
1 portuguese (brazil) x-vnd.Haiku-GIFTranslator 2708495435
|
||||||
Websafe GIFView Websafe
|
Websafe GIFView Websafe
|
||||||
Write interlaced images GIFView Escrever imagens entrelaçadas
|
Write interlaced images GIFView Escrever imagens entrelaçadas
|
||||||
Optimal GIFView Ideal
|
Optimal GIFView Ótimo
|
||||||
Greyscale GIFView Escala de cinza
|
Greyscale GIFView Escala de cinza
|
||||||
Be Bitmap Format (GIFTranslator) GIFTranslator Formato de Mapa de Bits Be (Tradutor GIF)
|
Be Bitmap Format (GIFTranslator) GIFTranslator Formato de Mapa de Bits Be (Tradutor GIF)
|
||||||
GIF image translator GIFView Tradutor de imagem GIF
|
GIF image translator GIFView Tradutor de imagem GIF
|
||||||
GIF image GIFTranslator imagem GIF
|
GIF image GIFTranslator Imagem GIF
|
||||||
Write transparent images GIFView Gravar imagens transparentes
|
Write transparent images GIFView Gravar imagens transparentes
|
||||||
Palette GIFView Paleta
|
Palette GIFView Paleta
|
||||||
Use RGB color GIFView Usar cor RGB
|
Use RGB color GIFView Usar cor RGB
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-ICOTranslator 1637901496
|
1 greek, modern (1453-) x-vnd.Haiku-ICOTranslator 1211895126
|
||||||
Cursor ICOTranslator Κέρσορας
|
Cursor ICOTranslator Κέρσορας
|
||||||
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator Windows %s %ld bit εικόνα
|
Windows %s %ld bit image ICOTranslator Windows %s %ld bit εικόνα
|
||||||
@@ -10,3 +10,4 @@ pixels in either direction. ConfigView pixels σε κάθε κατεύθυνσ
|
|||||||
Write 32 bit images on true color input ConfigView Γράψιμο 32 bit εικώνων σε true color input
|
Write 32 bit images on true color input ConfigView Γράψιμο 32 bit εικώνων σε true color input
|
||||||
Icon ICOTranslator Εικονίδιο
|
Icon ICOTranslator Εικονίδιο
|
||||||
ICOTranslator Settings ConfigView Ρυθμίσεις ICOTranslator
|
ICOTranslator Settings ConfigView Ρυθμίσεις ICOTranslator
|
||||||
|
Windows icon translator ConfigView Windows icon μεταφραστής
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hindi x-vnd.Haiku-ICOTranslator 1637901496
|
1 hindi x-vnd.Haiku-ICOTranslator 1211895126
|
||||||
Cursor ICOTranslator कर्सर
|
Cursor ICOTranslator कर्सर
|
||||||
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator विंडोज़ %s %ld बिट चित्र
|
Windows %s %ld bit image ICOTranslator विंडोज़ %s %ld बिट चित्र
|
||||||
@@ -10,3 +10,4 @@ pixels in either direction. ConfigView पिक्सेल्स कोई
|
|||||||
Write 32 bit images on true color input ConfigView 32 बिट चित्र सही कलर इनपुट में लिखे
|
Write 32 bit images on true color input ConfigView 32 बिट चित्र सही कलर इनपुट में लिखे
|
||||||
Icon ICOTranslator आइकन
|
Icon ICOTranslator आइकन
|
||||||
ICOTranslator Settings ConfigView आईसीऔ संवादक सेत्तिंग्स
|
ICOTranslator Settings ConfigView आईसीऔ संवादक सेत्तिंग्स
|
||||||
|
Windows icon translator ConfigView विंडोज़ आइकन संवादक
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-ICOTranslator 1637901496
|
1 romanian x-vnd.Haiku-ICOTranslator 1211895126
|
||||||
Cursor ICOTranslator Cursor
|
Cursor ICOTranslator Cursor
|
||||||
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versiune %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator Imagine Windows %s %ld bit
|
Windows %s %ld bit image ICOTranslator Imagine Windows %s %ld bit
|
||||||
@@ -10,3 +10,4 @@ pixels in either direction. ConfigView pixeli în ambele sensuri.
|
|||||||
Write 32 bit images on true color input ConfigView Scrie imagini de 32 biți la intrarea de culoare reală
|
Write 32 bit images on true color input ConfigView Scrie imagini de 32 biți la intrarea de culoare reală
|
||||||
Icon ICOTranslator Pictogramă
|
Icon ICOTranslator Pictogramă
|
||||||
ICOTranslator Settings ConfigView Configurări TraducătorICO
|
ICOTranslator Settings ConfigView Configurări TraducătorICO
|
||||||
|
Windows icon translator ConfigView Traducător pictogramă Windows
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-ICOTranslator 1637901496
|
1 ukrainian x-vnd.Haiku-ICOTranslator 1211895126
|
||||||
Cursor ICOTranslator Курсор
|
Cursor ICOTranslator Курсор
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
Windows %s %ld bit image ICOTranslator Вікна зображення %s %ld bit
|
Windows %s %ld bit image ICOTranslator Вікна зображення %s %ld bit
|
||||||
@@ -10,3 +10,4 @@ pixels in either direction. ConfigView пікселів в кожному на
|
|||||||
Write 32 bit images on true color input ConfigView Записати зображення 32 bit на вхід true color
|
Write 32 bit images on true color input ConfigView Записати зображення 32 bit на вхід true color
|
||||||
Icon ICOTranslator Іконка
|
Icon ICOTranslator Іконка
|
||||||
ICOTranslator Settings ConfigView Настройки перетворювача ICO
|
ICOTranslator Settings ConfigView Настройки перетворювача ICO
|
||||||
|
Windows icon translator ConfigView Перетворювач вікон іконок
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 german x-vnd.Haiku-RAWTranslator 2229230003
|
1 german x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAWTranslator-Einstellungen
|
RAWTranslator Settings ConfigView RAWTranslator-Einstellungen
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW-Bild-Translator
|
RAW image translator RAWTranslator RAW-Bild-Translator
|
||||||
RAW Settings RAWTranslator main RAW-Einstellungen
|
RAW Settings RAWTranslator main RAW-Einstellungen
|
||||||
RAW images RAWTranslator RAW-Bilder
|
RAW images RAWTranslator RAW-Bilder
|
||||||
|
RAW image translator ConfigView RAW-Bild-Translator
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW-Bild
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW-Bild
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Basiert auf Dave Coffins dcraw 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView Basiert auf Dave Coffins dcraw 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 2229230003
|
1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Ρυθμίσεις μεταφραστή RAW
|
RAWTranslator Settings ConfigView Ρυθμίσεις μεταφραστή RAW
|
||||||
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Έκδοση %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Μεταφραστής εικόνας RAW
|
RAW image translator RAWTranslator Μεταφραστής εικόνας RAW
|
||||||
RAW Settings RAWTranslator main RAW Ρυθμίσεις
|
RAW Settings RAWTranslator main RAW Ρυθμίσεις
|
||||||
RAW images RAWTranslator RAW εικόνες
|
RAW images RAWTranslator RAW εικόνες
|
||||||
|
RAW image translator ConfigView Μεταφραστής εικόνας RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') % RAW εικόνα
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') % RAW εικόνα
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Βασισμένο το dcraw 8.63 του Dave Coffin
|
Based on Dave Coffin's dcraw 8.63 ConfigView Βασισμένο το dcraw 8.63 του Dave Coffin
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 finnish x-vnd.Haiku-RAWTranslator 2229230003
|
1 finnish x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAW-muunninasetukset
|
RAWTranslator Settings ConfigView RAW-muunninasetukset
|
||||||
Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW-kuvamuunnin
|
RAW image translator RAWTranslator RAW-kuvamuunnin
|
||||||
RAW Settings RAWTranslator main RAW-asetukset
|
RAW Settings RAWTranslator main RAW-asetukset
|
||||||
RAW images RAWTranslator RAW-kuvat
|
RAW images RAWTranslator RAW-kuvat
|
||||||
|
RAW image translator ConfigView RAW-kuvamuunnin
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW-kuva
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW-kuva
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Perustuu Dave Coffinin ohjelmaan dcraw 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView Perustuu Dave Coffinin ohjelmaan dcraw 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-RAWTranslator 2229230003
|
1 french x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Réglages du traducteur RAW
|
RAWTranslator Settings ConfigView Réglages du traducteur RAW
|
||||||
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Traducteur d'images RAW
|
RAW image translator RAWTranslator Traducteur d'images RAW
|
||||||
RAW Settings RAWTranslator main Réglages RAW
|
RAW Settings RAWTranslator main Réglages RAW
|
||||||
RAW images RAWTranslator Images RAW
|
RAW images RAWTranslator Images RAW
|
||||||
|
RAW image translator ConfigView Traducteur d'images RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image brute %s
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image brute %s
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin
|
Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 hindi x-vnd.Haiku-RAWTranslator 2229230003
|
1 hindi x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स
|
RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स
|
||||||
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView संस्करण %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW चित्र का अनुवादक
|
RAW image translator RAWTranslator RAW चित्र का अनुवादक
|
||||||
RAW Settings RAWTranslator main RAW की सेत्तिंग्स
|
RAW Settings RAWTranslator main RAW की सेत्तिंग्स
|
||||||
RAW images RAWTranslator RAW चित्र
|
RAW images RAWTranslator RAW चित्र
|
||||||
|
RAW image translator ConfigView RAW चित्र का अनुवादक
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW चित्र
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW चित्र
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView देव कोफ्फिन के dcraw 8.63 पर आधार्रित
|
Based on Dave Coffin's dcraw 8.63 ConfigView देव कोफ्फिन के dcraw 8.63 पर आधार्रित
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 japanese x-vnd.Haiku-RAWTranslator 2229230003
|
1 japanese x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAW トランスレーター設定
|
RAWTranslator Settings ConfigView RAW トランスレーター設定
|
||||||
Version %d.%d.%d, %s ConfigView バージョン %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView バージョン %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW イメージトランスレーター
|
RAW image translator RAWTranslator RAW イメージトランスレーター
|
||||||
RAW Settings RAWTranslator main RAW 設定
|
RAW Settings RAWTranslator main RAW 設定
|
||||||
RAW images RAWTranslator RAW イメージ
|
RAW images RAWTranslator RAW イメージ
|
||||||
|
RAW image translator ConfigView RAW イメージトランスレーター
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s のRAW イメージ
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s のRAW イメージ
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Dave Coffin作の dcraw 8.63 に基づいています。
|
Based on Dave Coffin's dcraw 8.63 ConfigView Dave Coffin作の dcraw 8.63 に基づいています。
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 lithuanian x-vnd.Haiku-RAWTranslator 2229230003
|
1 lithuanian x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAW keitiklio nuostatos
|
RAWTranslator Settings ConfigView RAW keitiklio nuostatos
|
||||||
Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW paveikslų keitiklis
|
RAW image translator RAWTranslator RAW paveikslų keitiklis
|
||||||
RAW Settings RAWTranslator main RAW nuostatos
|
RAW Settings RAWTranslator main RAW nuostatos
|
||||||
RAW images RAWTranslator RAW paveikslai
|
RAW images RAWTranslator RAW paveikslai
|
||||||
|
RAW image translator ConfigView RAW paveikslų keitiklis
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') „%s“ RAW paveikslas
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') „%s“ RAW paveikslas
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Sukurta Dave'o Coffin'o „dcraw 8.63“ pagrindu
|
Based on Dave Coffin's dcraw 8.63 ConfigView Sukurta Dave'o Coffin'o „dcraw 8.63“ pagrindu
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-RAWTranslator 2229230003
|
1 dutch; flemish x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAWTranslator Instellingen
|
RAWTranslator Settings ConfigView RAWTranslator Instellingen
|
||||||
Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW afbeelding vertaler
|
RAW image translator RAWTranslator RAW afbeelding vertaler
|
||||||
RAW Settings RAWTranslator main RAW Instellingen
|
RAW Settings RAWTranslator main RAW Instellingen
|
||||||
RAW images RAWTranslator RAW afbeeldingen
|
RAW images RAWTranslator RAW afbeeldingen
|
||||||
|
RAW image translator ConfigView RAW afbeelding vertaler
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW afbeelding
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW afbeelding
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Gebaseerd op Dave Coffin's dcraw 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView Gebaseerd op Dave Coffin's dcraw 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 polish x-vnd.Haiku-RAWTranslator 2229230003
|
1 polish x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Ustawienia translatora RAW
|
RAWTranslator Settings ConfigView Ustawienia translatora RAW
|
||||||
Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Translator obrazów RAW
|
RAW image translator RAWTranslator Translator obrazów RAW
|
||||||
RAW Settings RAWTranslator main Ustawienia RAW
|
RAW Settings RAWTranslator main Ustawienia RAW
|
||||||
RAW images RAWTranslator Obrazy RAW
|
RAW images RAWTranslator Obrazy RAW
|
||||||
|
RAW image translator ConfigView Translator obrazów RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Obraz RAW %s
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Obraz RAW %s
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Oparte o dcraw Dave Coffina w wersji 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView Oparte o dcraw Dave Coffina w wersji 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 russian x-vnd.Haiku-RAWTranslator 2229230003
|
1 russian x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Настройки RAW транслятора
|
RAWTranslator Settings ConfigView Настройки RAW транслятора
|
||||||
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Транслятор RAW изображений
|
RAW image translator RAWTranslator Транслятор RAW изображений
|
||||||
RAW Settings RAWTranslator main Настройки RAW транслятора
|
RAW Settings RAWTranslator main Настройки RAW транслятора
|
||||||
RAW images RAWTranslator RAW изображения
|
RAW images RAWTranslator RAW изображения
|
||||||
|
RAW image translator ConfigView Транслятор RAW изображений
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') RAW изображение %s
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') RAW изображение %s
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Основан на dcraw 8.63 от Dave Coffin
|
Based on Dave Coffin's dcraw 8.63 ConfigView Основан на dcraw 8.63 от Dave Coffin
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 slovak x-vnd.Haiku-RAWTranslator 2229230003
|
1 slovak x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Nastavenia Prekladača RAW
|
RAWTranslator Settings ConfigView Nastavenia Prekladača RAW
|
||||||
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Prekladač obrázkov RAW
|
RAW image translator RAWTranslator Prekladač obrázkov RAW
|
||||||
RAW Settings RAWTranslator main Nastavenia RAW
|
RAW Settings RAWTranslator main Nastavenia RAW
|
||||||
RAW images RAWTranslator Obrázky RAW
|
RAW images RAWTranslator Obrázky RAW
|
||||||
|
RAW image translator ConfigView Prekladač obrázkov RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s obrázok RAW
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s obrázok RAW
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView Založené na dcraw 8.63 od Dava Coffina
|
Based on Dave Coffin's dcraw 8.63 ConfigView Založené na dcraw 8.63 od Dava Coffina
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 ukrainian x-vnd.Haiku-RAWTranslator 2229230003
|
1 ukrainian x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView Настройки Перетворювача RAW
|
RAWTranslator Settings ConfigView Настройки Перетворювача RAW
|
||||||
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator Перетворювач зображень RAW
|
RAW image translator RAWTranslator Перетворювач зображень RAW
|
||||||
RAW Settings RAWTranslator main Настройки RAW
|
RAW Settings RAWTranslator main Настройки RAW
|
||||||
RAW images RAWTranslator Зображення RAW
|
RAW images RAWTranslator Зображення RAW
|
||||||
|
RAW image translator ConfigView Перетворювач зображень RAW
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW образу
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW образу
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView На основі Dave Coffin's dcraw 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView На основі Dave Coffin's dcraw 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 english x-vnd.Haiku-RAWTranslator 2229230003
|
1 english x-vnd.Haiku-RAWTranslator 2975919330
|
||||||
RAWTranslator Settings ConfigView RAW 转换器设置
|
RAWTranslator Settings ConfigView RAW 转换器设置
|
||||||
Version %d.%d.%d, %s ConfigView 版本 %d.%d.%d, %s
|
Version %d.%d.%d, %s ConfigView 版本 %d.%d.%d, %s
|
||||||
RAW image translator RAWTranslator RAW 图像转换器
|
RAW image translator RAWTranslator RAW 图像转换器
|
||||||
RAW Settings RAWTranslator main RAW 设置
|
RAW Settings RAWTranslator main RAW 设置
|
||||||
RAW images RAWTranslator RAW 图像
|
RAW images RAWTranslator RAW 图像
|
||||||
|
RAW image translator ConfigView RAW 图像转换器
|
||||||
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW 图像
|
%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW 图像
|
||||||
Based on Dave Coffin's dcraw 8.63 ConfigView 基于 Dave Coffin 的 dcraw 8.63
|
Based on Dave Coffin's dcraw 8.63 ConfigView 基于 Dave Coffin 的 dcraw 8.63
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 german x-vnd.Haiku-TGATranslator 2221210336
|
1 german x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa-Bild (%d Bits Truecolor)
|
Targa image (%d bits truecolor) TGATranslator Targa-Bild (%d Bits Truecolor)
|
||||||
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView TGA-Alphakanal ignorieren
|
Ignore TGA alpha channel TGAView TGA-Alphakanal ignorieren
|
||||||
Targa image (%d bits colormap) TGATranslator Targa-Bild (%d Bits Colormap)
|
Targa image (%d bits colormap) TGATranslator Targa-Bild (%d Bits Colormap)
|
||||||
|
TGA image translator TGAView TGA-Bild-Translator
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa-Bild (%d Bits RLE Colormap)
|
Targa image (%d bits RLE colormap) TGATranslator Targa-Bild (%d Bits RLE Colormap)
|
||||||
Targa image (%d bits gray) TGATranslator Targa-Bild (%d Bits Graustufen)
|
Targa image (%d bits gray) TGATranslator Targa-Bild (%d Bits Graustufen)
|
||||||
Written by the Haiku Translation Kit Team TGAView vom Haiku Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView vom Haiku Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-TGATranslator 2221210336
|
1 greek, modern (1453-) x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Εικόνα Targa (%d bits truecolor)
|
Targa image (%d bits truecolor) TGATranslator Εικόνα Targa (%d bits truecolor)
|
||||||
Version %d.%d.%d %s TGAView Έκδοση %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Έκδοση %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Αγνοήση καναλιού TGA άλφα
|
Ignore TGA alpha channel TGAView Αγνοήση καναλιού TGA άλφα
|
||||||
Targa image (%d bits colormap) TGATranslator Εικόνα Targa (%d bits colormap)
|
Targa image (%d bits colormap) TGATranslator Εικόνα Targa (%d bits colormap)
|
||||||
|
TGA image translator TGAView Μεταφραστής εικόνας TGA
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Εικόνα Targa (%d bits RLE colormap)
|
Targa image (%d bits RLE colormap) TGATranslator Εικόνα Targa (%d bits RLE colormap)
|
||||||
Targa image (%d bits gray) TGATranslator Εικόνα Targa (%d bits gray)
|
Targa image (%d bits gray) TGATranslator Εικόνα Targa (%d bits gray)
|
||||||
Written by the Haiku Translation Kit Team TGAView Γράφτηκε από την ομάδα του Haiku Translation Kit
|
Written by the Haiku Translation Kit Team TGAView Γράφτηκε από την ομάδα του Haiku Translation Kit
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 finnish x-vnd.Haiku-TGATranslator 2221210336
|
1 finnish x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa-kuva (%d-bittinen truecolor-kuva)
|
Targa image (%d bits truecolor) TGATranslator Targa-kuva (%d-bittinen truecolor-kuva)
|
||||||
Version %d.%d.%d %s TGAView Versio %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Versio %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ohita TGA-alfakanava
|
Ignore TGA alpha channel TGAView Ohita TGA-alfakanava
|
||||||
Targa image (%d bits colormap) TGATranslator Targa-kuva (%d-bittinen värikartta)
|
Targa image (%d bits colormap) TGATranslator Targa-kuva (%d-bittinen värikartta)
|
||||||
|
TGA image translator TGAView TGA-kuvamuunnin
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa-kuva (%d-bittinen RLE-värikartta)
|
Targa image (%d bits RLE colormap) TGATranslator Targa-kuva (%d-bittinen RLE-värikartta)
|
||||||
Targa image (%d bits gray) TGATranslator Targa-kuva (%d-bittinen harmaa)
|
Targa image (%d bits gray) TGATranslator Targa-kuva (%d-bittinen harmaa)
|
||||||
Written by the Haiku Translation Kit Team TGAView Tekijä: Haiku Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView Tekijä: Haiku Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-TGATranslator 2221210336
|
1 french x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Image Targa (Vraie couleur %d bits)
|
Targa image (%d bits truecolor) TGATranslator Image Targa (Vraie couleur %d bits)
|
||||||
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ignorer le canal alpha TGA
|
Ignore TGA alpha channel TGAView Ignorer le canal alpha TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Image Targa (Palette %d bits)
|
Targa image (%d bits colormap) TGATranslator Image Targa (Palette %d bits)
|
||||||
|
TGA image translator TGAView Traducteur d'images TGA
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Image Targa (Palette %d bits RLE)
|
Targa image (%d bits RLE colormap) TGATranslator Image Targa (Palette %d bits RLE)
|
||||||
Targa image (%d bits gray) TGATranslator Image Targa (Gris %d bits)
|
Targa image (%d bits gray) TGATranslator Image Targa (Gris %d bits)
|
||||||
Written by the Haiku Translation Kit Team TGAView Écrit par l'équipe du Kit de TraductionDeDonnées de Haiku
|
Written by the Haiku Translation Kit Team TGAView Écrit par l'équipe du Kit de TraductionDeDonnées de Haiku
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 hindi x-vnd.Haiku-TGATranslator 2221210336
|
1 hindi x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator तारगा चित्र (%d bits truecolor)
|
Targa image (%d bits truecolor) TGATranslator तारगा चित्र (%d bits truecolor)
|
||||||
Version %d.%d.%d %s TGAView संस्करण %d.%d.%d %s
|
Version %d.%d.%d %s TGAView संस्करण %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView TGA अल्फा चैनल को नज़र अंदाज़ करें
|
Ignore TGA alpha channel TGAView TGA अल्फा चैनल को नज़र अंदाज़ करें
|
||||||
Targa image (%d bits colormap) TGATranslator तारगा का चित्र (%d bits colormap)
|
Targa image (%d bits colormap) TGATranslator तारगा का चित्र (%d bits colormap)
|
||||||
|
TGA image translator TGAView TGA चित्र का अनुवादक
|
||||||
Targa image (%d bits RLE colormap) TGATranslator तारगा का चित्र (%d bits RLE colormap)
|
Targa image (%d bits RLE colormap) TGATranslator तारगा का चित्र (%d bits RLE colormap)
|
||||||
Targa image (%d bits gray) TGATranslator तारगा का चित्र (%d bits gray)
|
Targa image (%d bits gray) TGATranslator तारगा का चित्र (%d bits gray)
|
||||||
Written by the Haiku Translation Kit Team TGAView हैकू ट्रांसलेशन किट टीम के द्वारा लिखा गया
|
Written by the Haiku Translation Kit Team TGAView हैकू ट्रांसलेशन किट टीम के द्वारा लिखा गया
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 japanese x-vnd.Haiku-TGATranslator 2221210336
|
1 japanese x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa イメージ (%d ビット トゥルーカラー)
|
Targa image (%d bits truecolor) TGATranslator Targa イメージ (%d ビット トゥルーカラー)
|
||||||
Version %d.%d.%d %s TGAView バージョン %d.%d.%d %s
|
Version %d.%d.%d %s TGAView バージョン %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView TGA のαチャンネルを無視する
|
Ignore TGA alpha channel TGAView TGA のαチャンネルを無視する
|
||||||
Targa image (%d bits colormap) TGATranslator Targa イメージ (%d ビット カラーマップ)
|
Targa image (%d bits colormap) TGATranslator Targa イメージ (%d ビット カラーマップ)
|
||||||
|
TGA image translator TGAView TGA イメージトランスレーター
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa イメージ (%d ビット RLE カラーマップ)
|
Targa image (%d bits RLE colormap) TGATranslator Targa イメージ (%d ビット RLE カラーマップ)
|
||||||
Targa image (%d bits gray) TGATranslator Targa イメージ (%d ビット グレー)
|
Targa image (%d bits gray) TGATranslator Targa イメージ (%d ビット グレー)
|
||||||
Written by the Haiku Translation Kit Team TGAView Haiku トランスレーターキットチーム作
|
Written by the Haiku Translation Kit Team TGAView Haiku トランスレーターキットチーム作
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 lithuanian x-vnd.Haiku-TGATranslator 2221210336
|
1 lithuanian x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator TGA paveikslas (%d bitų tikrosios spalvos)
|
Targa image (%d bits truecolor) TGATranslator TGA paveikslas (%d bitų tikrosios spalvos)
|
||||||
Version %d.%d.%d %s TGAView Versija %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Versija %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Nepaisyti TGA alfa kanalo
|
Ignore TGA alpha channel TGAView Nepaisyti TGA alfa kanalo
|
||||||
Targa image (%d bits colormap) TGATranslator TGA paveikslas (%d bitų spalvų atvaizdis)
|
Targa image (%d bits colormap) TGATranslator TGA paveikslas (%d bitų spalvų atvaizdis)
|
||||||
|
TGA image translator TGAView TGA paveikslų keitiklis
|
||||||
Targa image (%d bits RLE colormap) TGATranslator TGA paveikslas (%d bitų RLE spalvų atvaizdis)
|
Targa image (%d bits RLE colormap) TGATranslator TGA paveikslas (%d bitų RLE spalvų atvaizdis)
|
||||||
Targa image (%d bits gray) TGATranslator TGA paveikslas (%d bitų pilkumo tonai)
|
Targa image (%d bits gray) TGATranslator TGA paveikslas (%d bitų pilkumo tonai)
|
||||||
Written by the Haiku Translation Kit Team TGAView Sukūrė „Haiku“ komanda
|
Written by the Haiku Translation Kit Team TGAView Sukūrė „Haiku“ komanda
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-TGATranslator 2221210336
|
1 dutch; flemish x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa afbeelding (%d bits truecolor)
|
Targa image (%d bits truecolor) TGATranslator Targa afbeelding (%d bits truecolor)
|
||||||
Version %d.%d.%d %s TGAView Versie %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Versie %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Negeer TGA alpha kanaal
|
Ignore TGA alpha channel TGAView Negeer TGA alpha kanaal
|
||||||
Targa image (%d bits colormap) TGATranslator Targa afbeelding (%d bits kleurmap)
|
Targa image (%d bits colormap) TGATranslator Targa afbeelding (%d bits kleurmap)
|
||||||
|
TGA image translator TGAView TGA afbeelding vertaler
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa afbeelding (%d bits RLE kleurmap)
|
Targa image (%d bits RLE colormap) TGATranslator Targa afbeelding (%d bits RLE kleurmap)
|
||||||
Targa image (%d bits gray) TGATranslator Targa afbeelding (%d bits grijs)
|
Targa image (%d bits gray) TGATranslator Targa afbeelding (%d bits grijs)
|
||||||
Written by the Haiku Translation Kit Team TGAView Geschreven door het Haiku Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView Geschreven door het Haiku Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 polish x-vnd.Haiku-TGATranslator 2221210336
|
1 polish x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Obraz Targa (%d bitów Truecolor)
|
Targa image (%d bits truecolor) TGATranslator Obraz Targa (%d bitów Truecolor)
|
||||||
Version %d.%d.%d %s TGAView Wersja %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Wersja %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ignoruj kanał alpha TGA
|
Ignore TGA alpha channel TGAView Ignoruj kanał alpha TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Obraz Targa (%d bitów colormap)
|
Targa image (%d bits colormap) TGATranslator Obraz Targa (%d bitów colormap)
|
||||||
|
TGA image translator TGAView Translator obrazów TGA
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Obraz Targa (%d bitów RLE colormap)
|
Targa image (%d bits RLE colormap) TGATranslator Obraz Targa (%d bitów RLE colormap)
|
||||||
Targa image (%d bits gray) TGATranslator Obraz Targa (%d-bitowa skala szarości)
|
Targa image (%d bits gray) TGATranslator Obraz Targa (%d-bitowa skala szarości)
|
||||||
Written by the Haiku Translation Kit Team TGAView Stworzone przez Zespół Translation Kit Haiku
|
Written by the Haiku Translation Kit Team TGAView Stworzone przez Zespół Translation Kit Haiku
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 russian x-vnd.Haiku-TGATranslator 2221210336
|
1 russian x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa изображение (%d битный истинный цвет)
|
Targa image (%d bits truecolor) TGATranslator Targa изображение (%d битный истинный цвет)
|
||||||
Version %d.%d.%d %s TGAView Версия %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Версия %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
|
Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
|
Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
|
||||||
|
TGA image translator TGAView Транслятор TGA изображений
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
|
Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
|
||||||
Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
|
Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
|
||||||
Written by the Haiku Translation Kit Team TGAView Разработан командой Haiku Translation Kit
|
Written by the Haiku Translation Kit Team TGAView Разработан командой Haiku Translation Kit
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 slovak x-vnd.Haiku-TGATranslator 2221210336
|
1 slovak x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor)
|
Targa image (%d bits truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor)
|
||||||
Version %d.%d.%d %s TGAView Verzia %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Verzia %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ignorovať alfa kanál TGA
|
Ignore TGA alpha channel TGAView Ignorovať alfa kanál TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa)
|
Targa image (%d bits colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa)
|
||||||
|
TGA image translator TGAView Prekladač obrázkov TGA
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa RLE)
|
Targa image (%d bits RLE colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa RLE)
|
||||||
Targa image (%d bits gray) TGATranslator Obrázok Targa (%d bitov šedej)
|
Targa image (%d bits gray) TGATranslator Obrázok Targa (%d bitov šedej)
|
||||||
Written by the Haiku Translation Kit Team TGAView Napísal Haiku Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView Napísal Haiku Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 swedish x-vnd.Haiku-TGATranslator 2221210336
|
1 swedish x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targabild (%d bitars truecolor)
|
Targa image (%d bits truecolor) TGATranslator Targabild (%d bitars truecolor)
|
||||||
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ignorera TGA-alfakanal
|
Ignore TGA alpha channel TGAView Ignorera TGA-alfakanal
|
||||||
Targa image (%d bits colormap) TGATranslator Targabild (%d bitars färgbibliotek)
|
Targa image (%d bits colormap) TGATranslator Targabild (%d bitars färgbibliotek)
|
||||||
|
TGA image translator TGAView TGA-bildöversättare
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targabild (%d bitars RLE färgbibliotek)
|
Targa image (%d bits RLE colormap) TGATranslator Targabild (%d bitars RLE färgbibliotek)
|
||||||
Targa image (%d bits gray) TGATranslator Targabild (%d bitars gråskala)
|
Targa image (%d bits gray) TGATranslator Targabild (%d bitars gråskala)
|
||||||
Written by the Haiku Translation Kit Team TGAView Skrivet av Haikus Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView Skrivet av Haikus Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 ukrainian x-vnd.Haiku-TGATranslator 2221210336
|
1 ukrainian x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Зображення Targa (%d біт повнокольорове)
|
Targa image (%d bits truecolor) TGATranslator Зображення Targa (%d біт повнокольорове)
|
||||||
Version %d.%d.%d %s TGAView Версія %d.%d.%d %s
|
Version %d.%d.%d %s TGAView Версія %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView Ігнорувати альфа канал TGA
|
Ignore TGA alpha channel TGAView Ігнорувати альфа канал TGA
|
||||||
Targa image (%d bits colormap) TGATranslator Зображення Targa ( палітра кольорів %d біт)
|
Targa image (%d bits colormap) TGATranslator Зображення Targa ( палітра кольорів %d біт)
|
||||||
|
TGA image translator TGAView Перетворювач зображеньTGA
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Зображення Targa (палітра кольорів RLE %d біт)
|
Targa image (%d bits RLE colormap) TGATranslator Зображення Targa (палітра кольорів RLE %d біт)
|
||||||
Targa image (%d bits gray) TGATranslator Зображення Targa (у відтінках сірого %d біт)
|
Targa image (%d bits gray) TGATranslator Зображення Targa (у відтінках сірого %d біт)
|
||||||
Written by the Haiku Translation Kit Team TGAView Автори Haiku Translation Kit Team
|
Written by the Haiku Translation Kit Team TGAView Автори Haiku Translation Kit Team
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 english x-vnd.Haiku-TGATranslator 2221210336
|
1 english x-vnd.Haiku-TGATranslator 3289993499
|
||||||
Targa image (%d bits truecolor) TGATranslator Targa 图像(%d 位真彩)
|
Targa image (%d bits truecolor) TGATranslator Targa 图像(%d 位真彩)
|
||||||
Version %d.%d.%d %s TGAView 版本 %d.%d.%d %s
|
Version %d.%d.%d %s TGAView 版本 %d.%d.%d %s
|
||||||
Ignore TGA alpha channel TGAView 忽略 TGA 测试频道
|
Ignore TGA alpha channel TGAView 忽略 TGA 测试频道
|
||||||
Targa image (%d bits colormap) TGATranslator Targa 图像(%d 位色图)
|
Targa image (%d bits colormap) TGATranslator Targa 图像(%d 位色图)
|
||||||
|
TGA image translator TGAView TGA 图像转换器
|
||||||
Targa image (%d bits RLE colormap) TGATranslator Targa 图像(%d 为 RLE 色图)
|
Targa image (%d bits RLE colormap) TGATranslator Targa 图像(%d 为 RLE 色图)
|
||||||
Targa image (%d bits gray) TGATranslator Targa 图像(%d 位灰度)
|
Targa image (%d bits gray) TGATranslator Targa 图像(%d 位灰度)
|
||||||
Written by the Haiku Translation Kit Team TGAView 由 Haiku Translation Kit Team 编写
|
Written by the Haiku Translation Kit Team TGAView 由 Haiku Translation Kit Team 编写
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 german x-vnd.Haiku-TIFFTranslator 2354712721
|
1 german x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: Ordner konnte nicht gesetzt werden\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: Ordner konnte nicht gesetzt werden\n
|
||||||
TIFF image TIFFTranslator TIFF-Bild
|
TIFF image TIFFTranslator TIFF-Bild
|
||||||
TIFF Library: TIFFView TIFF-Bibliothek:
|
TIFF Library: TIFFView TIFF-Bibliothek:
|
||||||
|
TIFF image translator TIFFView TIFF-Bild-Translator
|
||||||
None TIFFView Keine
|
None TIFFView Keine
|
||||||
TIFF images TIFFTranslator TIFF-Bilder
|
TIFF images TIFFTranslator TIFF-Bilder
|
||||||
TIFFTranslator Settings TIFFTranslator TIFFTranslator-Einstellungen
|
TIFFTranslator Settings TIFFTranslator TIFFTranslator-Einstellungen
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-TIFFTranslator 2354712721
|
1 greek, modern (1453-) x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: αδυναμία ορισμού του καταλόγου\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: αδυναμία ορισμού του καταλόγου\n
|
||||||
TIFF image TIFFTranslator TIFF εικόνα
|
TIFF image TIFFTranslator TIFF εικόνα
|
||||||
TIFF Library: TIFFView TIFF Βιβλιοθήκη:
|
TIFF Library: TIFFView TIFF Βιβλιοθήκη:
|
||||||
|
TIFF image translator TIFFView Μεταφραστής εικόνων TIFF
|
||||||
None TIFFView Κανένα
|
None TIFFView Κανένα
|
||||||
TIFF images TIFFTranslator TIFF εικόνες
|
TIFF images TIFFTranslator TIFF εικόνες
|
||||||
TIFFTranslator Settings TIFFTranslator Ρυθμίσεις μεταφραστή TIFF
|
TIFFTranslator Settings TIFFTranslator Ρυθμίσεις μεταφραστή TIFF
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 finnish x-vnd.Haiku-TIFFTranslator 2354712721
|
1 finnish x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: ei voitu asettaa hakemistoa\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: ei voitu asettaa hakemistoa\n
|
||||||
TIFF image TIFFTranslator TIFF-kuva
|
TIFF image TIFFTranslator TIFF-kuva
|
||||||
TIFF Library: TIFFView TIFF-kirjasto:
|
TIFF Library: TIFFView TIFF-kirjasto:
|
||||||
|
TIFF image translator TIFFView TIFF-kuvamuunnin
|
||||||
None TIFFView Ei mikään
|
None TIFFView Ei mikään
|
||||||
TIFF images TIFFTranslator TIFF-kuvat
|
TIFF images TIFFTranslator TIFF-kuvat
|
||||||
TIFFTranslator Settings TIFFTranslator TIFF-muunninasetukset
|
TIFFTranslator Settings TIFFTranslator TIFF-muunninasetukset
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 french x-vnd.Haiku-TIFFTranslator 2354712721
|
1 french x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identification de l'entête TIFF : impossible de déterminer l'annuaire\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identification de l'entête TIFF : impossible de déterminer l'annuaire\n
|
||||||
TIFF image TIFFTranslator Image TIFF
|
TIFF image TIFFTranslator Image TIFF
|
||||||
TIFF Library: TIFFView Bibliothèque TIFF :
|
TIFF Library: TIFFView Bibliothèque TIFF :
|
||||||
|
TIFF image translator TIFFView Traducteur d'images TIFF
|
||||||
None TIFFView Aucun
|
None TIFFView Aucun
|
||||||
TIFF images TIFFTranslator Images TIFF
|
TIFF images TIFFTranslator Images TIFF
|
||||||
TIFFTranslator Settings TIFFTranslator Réglages du traducteur TIFF
|
TIFFTranslator Settings TIFFTranslator Réglages du traducteur TIFF
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 lithuanian x-vnd.Haiku-TIFFTranslator 2354712721
|
1 lithuanian x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepavyko nustatyti katalogo\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepavyko nustatyti katalogo\n
|
||||||
TIFF image TIFFTranslator TIFF paveikslas
|
TIFF image TIFFTranslator TIFF paveikslas
|
||||||
TIFF Library: TIFFView TIFF biblioteka:
|
TIFF Library: TIFFView TIFF biblioteka:
|
||||||
|
TIFF image translator TIFFView TIFF paveikslų keitiklis
|
||||||
None TIFFView jokio
|
None TIFFView jokio
|
||||||
TIFF images TIFFTranslator TIFF paveikslai
|
TIFF images TIFFTranslator TIFF paveikslai
|
||||||
TIFFTranslator Settings TIFFTranslator TIFF keitiklio nuostatos
|
TIFFTranslator Settings TIFFTranslator TIFF keitiklio nuostatos
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-TIFFTranslator 2354712721
|
1 dutch; flemish x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kan directory niet plaatsen\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kan directory niet plaatsen\n
|
||||||
TIFF image TIFFTranslator TIFF afbeelding
|
TIFF image TIFFTranslator TIFF afbeelding
|
||||||
TIFF Library: TIFFView TIFF bibliotheek:
|
TIFF Library: TIFFView TIFF bibliotheek:
|
||||||
|
TIFF image translator TIFFView TIFF afbeelding vertaler
|
||||||
None TIFFView Geen
|
None TIFFView Geen
|
||||||
TIFF images TIFFTranslator TIFF afbeeldingen
|
TIFF images TIFFTranslator TIFF afbeeldingen
|
||||||
TIFFTranslator Settings TIFFTranslator TIFFTranslator Instellingen
|
TIFFTranslator Settings TIFFTranslator TIFFTranslator Instellingen
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 polish x-vnd.Haiku-TIFFTranslator 2354712721
|
1 polish x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nie można ustawić katalogu\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nie można ustawić katalogu\n
|
||||||
TIFF image TIFFTranslator Obraz TIFF
|
TIFF image TIFFTranslator Obraz TIFF
|
||||||
TIFF Library: TIFFView Biblioteka TIFF
|
TIFF Library: TIFFView Biblioteka TIFF
|
||||||
|
TIFF image translator TIFFView Translator obrazów TIFF
|
||||||
None TIFFView Brak
|
None TIFFView Brak
|
||||||
TIFF images TIFFTranslator Obrazy TIFF
|
TIFF images TIFFTranslator Obrazy TIFF
|
||||||
TIFFTranslator Settings TIFFTranslator Ustawienia translatora TIFF
|
TIFFTranslator Settings TIFFTranslator Ustawienia translatora TIFF
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 romanian x-vnd.Haiku-TIFFTranslator 2354712721
|
1 romanian x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nu s-a putut configura dosarul\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nu s-a putut configura dosarul\n
|
||||||
TIFF image TIFFTranslator Imagine TIFF
|
TIFF image TIFFTranslator Imagine TIFF
|
||||||
TIFF Library: TIFFView Bibliotecă TIFF:
|
TIFF Library: TIFFView Bibliotecă TIFF:
|
||||||
|
TIFF image translator TIFFView Traducător imagine TIFF
|
||||||
None TIFFView Nimic
|
None TIFFView Nimic
|
||||||
TIFF images TIFFTranslator Imagini TIFF
|
TIFF images TIFFTranslator Imagini TIFF
|
||||||
TIFFTranslator Settings TIFFTranslator Configurări TraducătorTIFF
|
TIFFTranslator Settings TIFFTranslator Configurări TraducătorTIFF
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 slovak x-vnd.Haiku-TIFFTranslator 2354712721
|
1 slovak x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepodarilo sa nastaviť adresár\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepodarilo sa nastaviť adresár\n
|
||||||
TIFF image TIFFTranslator Obrázok TIFF
|
TIFF image TIFFTranslator Obrázok TIFF
|
||||||
TIFF Library: TIFFView Knižnica TIFF:
|
TIFF Library: TIFFView Knižnica TIFF:
|
||||||
|
TIFF image translator TIFFView Prekladač obrázkov TIFF
|
||||||
None TIFFView Žiadne
|
None TIFFView Žiadne
|
||||||
TIFF images TIFFTranslator Obrázky TIFF
|
TIFF images TIFFTranslator Obrázky TIFF
|
||||||
TIFFTranslator Settings TIFFTranslator Nastavenia TIFFTranslator
|
TIFFTranslator Settings TIFFTranslator Nastavenia TIFFTranslator
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 swedish x-vnd.Haiku-TIFFTranslator 2354712721
|
1 swedish x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kunde inte ange mapp\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kunde inte ange mapp\n
|
||||||
TIFF image TIFFTranslator TIFF-bild
|
TIFF image TIFFTranslator TIFF-bild
|
||||||
TIFF Library: TIFFView TIFF-bibliotek:
|
TIFF Library: TIFFView TIFF-bibliotek:
|
||||||
|
TIFF image translator TIFFView TIFF-bildöversättare
|
||||||
None TIFFView Ingen
|
None TIFFView Ingen
|
||||||
TIFF images TIFFTranslator TIFF-bilder
|
TIFF images TIFFTranslator TIFF-bilder
|
||||||
TIFFTranslator Settings TIFFTranslator TIFF-bildinställningar
|
TIFFTranslator Settings TIFFTranslator TIFF-bildinställningar
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 ukrainian x-vnd.Haiku-TIFFTranslator 2354712721
|
1 ukrainian x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator iВизначення заголовка tiff: неможливо встановити каталог\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator iВизначення заголовка tiff: неможливо встановити каталог\n
|
||||||
TIFF image TIFFTranslator Зображення TIFF
|
TIFF image TIFFTranslator Зображення TIFF
|
||||||
TIFF Library: TIFFView Бібліотека TIFF:
|
TIFF Library: TIFFView Бібліотека TIFF:
|
||||||
|
TIFF image translator TIFFView Перетворювач зображень TIFF
|
||||||
None TIFFView Жоден
|
None TIFFView Жоден
|
||||||
TIFF images TIFFTranslator Зображення TIFF
|
TIFF images TIFFTranslator Зображення TIFF
|
||||||
TIFFTranslator Settings TIFFTranslator Настройки перетворювача TIFF
|
TIFFTranslator Settings TIFFTranslator Настройки перетворювача TIFF
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 english x-vnd.Haiku-TIFFTranslator 2354712721
|
1 english x-vnd.Haiku-TIFFTranslator 237855326
|
||||||
LZW TIFFView LZW
|
LZW TIFFView LZW
|
||||||
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header:无法设置目录\n
|
identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header:无法设置目录\n
|
||||||
TIFF image TIFFTranslator TIFF 图像
|
TIFF image TIFFTranslator TIFF 图像
|
||||||
TIFF Library: TIFFView TIFF 库:
|
TIFF Library: TIFFView TIFF 库:
|
||||||
|
TIFF image translator TIFFView TIFF 图像转换器
|
||||||
None TIFFView 无
|
None TIFFView 无
|
||||||
TIFF images TIFFTranslator TIFF 图像
|
TIFF images TIFFTranslator TIFF 图像
|
||||||
TIFFTranslator Settings TIFFTranslator TIFF 转换器设置
|
TIFFTranslator Settings TIFFTranslator TIFF 转换器设置
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 german x-vnd.Haiku-WebPTranslator 2427600890
|
1 german x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Komprimierungsart:
|
Compression method: ConfigView Komprimierungsart:
|
||||||
|
WebP image translator ConfigView WebP-Bild-Translator
|
||||||
Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
|
Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
|
||||||
Preset ConfigView Voreinstellung
|
Preset ConfigView Voreinstellung
|
||||||
WebP images WebPTranslator WebP-Bilder
|
WebP images WebPTranslator WebP-Bilder
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 2427600890
|
1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Μέθοδος συμπίεσης:
|
Compression method: ConfigView Μέθοδος συμπίεσης:
|
||||||
|
WebP image translator ConfigView Μεταφραστής εικόνας WebP
|
||||||
Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1,
|
||||||
Preset ConfigView Προεπιλογή
|
Preset ConfigView Προεπιλογή
|
||||||
WebP images WebPTranslator Εικόνες WebP
|
WebP images WebPTranslator Εικόνες WebP
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 french x-vnd.Haiku-WebPTranslator 2427600890
|
1 french x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Méthode de compression :
|
Compression method: ConfigView Méthode de compression :
|
||||||
|
WebP image translator ConfigView Traducteur d'images WebP
|
||||||
Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1,
|
||||||
Preset ConfigView Préréglage
|
Preset ConfigView Préréglage
|
||||||
WebP images WebPTranslator Images WebP
|
WebP images WebPTranslator Images WebP
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 hindi x-vnd.Haiku-WebPTranslator 2427600890
|
1 hindi x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView काम्प्रेस्शन का तरीका:
|
Compression method: ConfigView काम्प्रेस्शन का तरीका:
|
||||||
|
WebP image translator ConfigView WebP चित्र का अनुवादक
|
||||||
Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित,
|
Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित,
|
||||||
Preset ConfigView प्रीसेट
|
Preset ConfigView प्रीसेट
|
||||||
WebP images WebPTranslator WebP चित्र
|
WebP images WebPTranslator WebP चित्र
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 japanese x-vnd.Haiku-WebPTranslator 2427600890
|
1 japanese x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView 圧縮方法:
|
Compression method: ConfigView 圧縮方法:
|
||||||
|
WebP image translator ConfigView WebP イメージトランスレーター
|
||||||
Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、
|
Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、
|
||||||
Preset ConfigView プリセット:
|
Preset ConfigView プリセット:
|
||||||
WebP images WebPTranslator WebP イメージ
|
WebP images WebPTranslator WebP イメージ
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 lithuanian x-vnd.Haiku-WebPTranslator 2427600890
|
1 lithuanian x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Glaudinimo būdas:
|
Compression method: ConfigView Glaudinimo būdas:
|
||||||
|
WebP image translator ConfigView „WebP“ paveikslų keitiklis
|
||||||
Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu,
|
Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu,
|
||||||
Preset ConfigView Ruošinys
|
Preset ConfigView Ruošinys
|
||||||
WebP images WebPTranslator WebP paveikslai
|
WebP images WebPTranslator WebP paveikslai
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-WebPTranslator 2427600890
|
1 dutch; flemish x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Compressie methode:
|
Compression method: ConfigView Compressie methode:
|
||||||
|
WebP image translator ConfigView WebP afbeelding vertaler
|
||||||
Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1,
|
||||||
Preset ConfigView Voorinstelling
|
Preset ConfigView Voorinstelling
|
||||||
WebP images WebPTranslator WebP afbeeldingen
|
WebP images WebPTranslator WebP afbeeldingen
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 polish x-vnd.Haiku-WebPTranslator 2427600890
|
1 polish x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Metoda kompresji:
|
Compression method: ConfigView Metoda kompresji:
|
||||||
|
WebP image translator ConfigView Translator obrazów WebP
|
||||||
Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1,
|
||||||
Preset ConfigView Ustawienie
|
Preset ConfigView Ustawienie
|
||||||
WebP images WebPTranslator Obrazki WebP
|
WebP images WebPTranslator Obrazki WebP
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 romanian x-vnd.Haiku-WebPTranslator 220563709
|
1 romanian x-vnd.Haiku-WebPTranslator 990065984
|
||||||
|
WebP image translator ConfigView Traducător imagine WebP
|
||||||
WebP images WebPTranslator Imagini WebP
|
WebP images WebPTranslator Imagini WebP
|
||||||
WebPTranslator Settings ConfigView Configurări TraducătorWebP
|
WebPTranslator Settings ConfigView Configurări TraducătorWebP
|
||||||
WebP Settings main Configurări WebP
|
WebP Settings main Configurări WebP
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 russian x-vnd.Haiku-WebPTranslator 2427600890
|
1 russian x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Метод сжатия
|
Compression method: ConfigView Метод сжатия
|
||||||
|
WebP image translator ConfigView Транслятор WebP изображений
|
||||||
Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
|
||||||
Preset ConfigView Пресет
|
Preset ConfigView Пресет
|
||||||
WebP images WebPTranslator WebP изображения
|
WebP images WebPTranslator WebP изображения
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 slovak x-vnd.Haiku-WebPTranslator 2427600890
|
1 slovak x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Spôsob kompresie:
|
Compression method: ConfigView Spôsob kompresie:
|
||||||
|
WebP image translator ConfigView Prekladač obrázkov WebP
|
||||||
Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
|
||||||
Preset ConfigView Predvoľby
|
Preset ConfigView Predvoľby
|
||||||
WebP images WebPTranslator Obrázky WebP
|
WebP images WebPTranslator Obrázky WebP
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 swedish x-vnd.Haiku-WebPTranslator 2427600890
|
1 swedish x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Komprimeringsmetod
|
Compression method: ConfigView Komprimeringsmetod
|
||||||
|
WebP image translator ConfigView WebP bildöversättare
|
||||||
Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1,
|
Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1,
|
||||||
Preset ConfigView Förval
|
Preset ConfigView Förval
|
||||||
WebP images WebPTranslator WebP bilder
|
WebP images WebPTranslator WebP bilder
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 ukrainian x-vnd.Haiku-WebPTranslator 2427600890
|
1 ukrainian x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView Метод стискання
|
Compression method: ConfigView Метод стискання
|
||||||
|
WebP image translator ConfigView Перетворювач зображень WebP
|
||||||
Based on libwebp v0.1, ConfigView На основі libwebp v0.1,
|
Based on libwebp v0.1, ConfigView На основі libwebp v0.1,
|
||||||
Preset ConfigView Набір параметрів
|
Preset ConfigView Набір параметрів
|
||||||
WebP images WebPTranslator Зображення WebP
|
WebP images WebPTranslator Зображення WebP
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 english x-vnd.Haiku-WebPTranslator 2427600890
|
1 english x-vnd.Haiku-WebPTranslator 3197103165
|
||||||
Compression method: ConfigView 压缩方法:
|
Compression method: ConfigView 压缩方法:
|
||||||
|
WebP image translator ConfigView WebP 图像转换器
|
||||||
Based on libwebp v0.1, ConfigView 基于 libwebp v0.1,
|
Based on libwebp v0.1, ConfigView 基于 libwebp v0.1,
|
||||||
Preset ConfigView 预设
|
Preset ConfigView 预设
|
||||||
WebP images WebPTranslator WebP 图像
|
WebP images WebPTranslator WebP 图像
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 belarusian x-vnd.Haiku-ActivityMonitor 3704566709
|
1 belarusian x-vnd.Haiku-ActivityMonitor 1913625522
|
||||||
P-faults DataSource Памылкі старонак памяці
|
P-faults DataSource Памылкі старонак памяці
|
||||||
Media nodes DataSource Медыя узлы
|
Media nodes DataSource Медыя узлы
|
||||||
Threads DataSource Патокі
|
Threads DataSource Патокі
|
||||||
MB DataSource МБ
|
MB DataSource МБ
|
||||||
|
Always on top ActivityWindow Заўсёды наверсе
|
||||||
Add graph ActivityWindow Дадаць графік
|
Add graph ActivityWindow Дадаць графік
|
||||||
Teams DataSource Групы
|
Teams DataSource Групы
|
||||||
Hide legend ActivityView Схаваць легенду
|
Hide legend ActivityView Схаваць легенду
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
1 polish x-vnd.Haiku-ActivityMonitor 3704566709
|
1 polish x-vnd.Haiku-ActivityMonitor 1913625522
|
||||||
P-faults DataSource P-błędy
|
P-faults DataSource P-błędy
|
||||||
Media nodes DataSource Węzły multimedialne
|
Media nodes DataSource Węzły multimedialne
|
||||||
Threads DataSource Wątki
|
Threads DataSource Wątki
|
||||||
MB DataSource MB
|
MB DataSource MB
|
||||||
|
Always on top ActivityWindow Zawsze na wierzchu
|
||||||
Add graph ActivityWindow Dodaj wykres
|
Add graph ActivityWindow Dodaj wykres
|
||||||
Teams DataSource Zespoły
|
Teams DataSource Zespoły
|
||||||
Hide legend ActivityView Ukryj legendę
|
Hide legend ActivityView Ukryj legendę
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
1 belarusian x-vnd.Be-TSKB 1042823442
|
1 belarusian x-vnd.Be-TSKB 2335730970
|
||||||
Power off DeskbarMenu Выключыць
|
Power off DeskbarMenu Выключыць
|
||||||
|
Sort applications by name PreferencesWindow Сартаваць прагамы па назвах
|
||||||
Suspend DeskbarMenu Прыпыніць
|
Suspend DeskbarMenu Прыпыніць
|
||||||
Hide clock TimeView Схаваць гадзіннік
|
Hide clock TimeView Схаваць гадзіннік
|
||||||
Applications PreferencesWindow Праграмы
|
Applications PreferencesWindow Праграмы
|
||||||
Time preferences… TimeView Наладкі Часу…
|
Time preferences… TimeView Наладкі Часу…
|
||||||
About Haiku DeskbarMenu Пра Haiku
|
About Haiku DeskbarMenu Пра Haiku
|
||||||
|
Edit in Tracker… PreferencesWindow Рэдагаваць у Тракеры…
|
||||||
Recent documents: PreferencesWindow Нядаўнія дакументы:
|
Recent documents: PreferencesWindow Нядаўнія дакументы:
|
||||||
Recent applications DeskbarMenu Нядаўнія праграмы
|
Recent applications DeskbarMenu Нядаўнія праграмы
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Праграмы
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Праграмы
|
||||||
Find… DeskbarMenu Знайсці…
|
Find… DeskbarMenu Знайсці…
|
||||||
Show clock Tray Паказаць гадзіннік
|
Show clock Tray Паказаць гадзіннік
|
||||||
Window PreferencesWindow Акно
|
Window PreferencesWindow Акно
|
||||||
|
Defaults PreferencesWindow Прадвызначаныя
|
||||||
Menu PreferencesWindow Меню
|
Menu PreferencesWindow Меню
|
||||||
Recent documents DeskbarMenu Нядаўнія дакументы
|
Recent documents DeskbarMenu Нядаўнія дакументы
|
||||||
Auto-hide PreferencesWindow Схаваць аўтаматычна
|
Auto-hide PreferencesWindow Схаваць аўтаматычна
|
||||||
@@ -28,6 +31,7 @@ Restart Tracker DeskbarMenu Перазапусціць Tracker
|
|||||||
Close all WindowMenu Закрыць усё
|
Close all WindowMenu Закрыць усё
|
||||||
Deskbar preferences PreferencesWindow Наладкі Deskbar
|
Deskbar preferences PreferencesWindow Наладкі Deskbar
|
||||||
Mount DeskbarMenu Прымацаваць
|
Mount DeskbarMenu Прымацаваць
|
||||||
|
Revert PreferencesWindow Вярнуць
|
||||||
Small PreferencesWindow Малы
|
Small PreferencesWindow Малы
|
||||||
Recent applications: PreferencesWindow Нядаўнія праграмы:
|
Recent applications: PreferencesWindow Нядаўнія праграмы:
|
||||||
Shutdown… DeskbarMenu Спыніць…
|
Shutdown… DeskbarMenu Спыніць…
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Be-TSKB 1615035932
|
1 greek, modern (1453-) x-vnd.Be-TSKB 1259752388
|
||||||
Power off DeskbarMenu Απενεργοποίηση
|
Power off DeskbarMenu Απενεργοποίηση
|
||||||
|
Applications PreferencesWindow Εφαρμογές
|
||||||
Recent documents: PreferencesWindow Πρόσφατα έγγραφα:
|
Recent documents: PreferencesWindow Πρόσφατα έγγραφα:
|
||||||
Recent applications DeskbarMenu Πρόσφατες εφαρμογές
|
Recent applications DeskbarMenu Πρόσφατες εφαρμογές
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Εφαρμογές
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Εφαρμογές
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 french x-vnd.Be-TSKB 4028879882
|
1 french x-vnd.Be-TSKB 2335730970
|
||||||
Power off DeskbarMenu Éteindre
|
Power off DeskbarMenu Éteindre
|
||||||
Sort applications by name PreferencesWindow Trier les applications par nom
|
Sort applications by name PreferencesWindow Trier les applications par nom
|
||||||
Suspend DeskbarMenu Mettre en veille
|
Suspend DeskbarMenu Mettre en veille
|
||||||
@@ -6,12 +6,14 @@ Hide clock TimeView Masquer l'horloge
|
|||||||
Applications PreferencesWindow Applications
|
Applications PreferencesWindow Applications
|
||||||
Time preferences… TimeView Préférences de l'heure…
|
Time preferences… TimeView Préférences de l'heure…
|
||||||
About Haiku DeskbarMenu À propos de Haiku
|
About Haiku DeskbarMenu À propos de Haiku
|
||||||
|
Edit in Tracker… PreferencesWindow Éditer dans le Tracker…
|
||||||
Recent documents: PreferencesWindow Documents récents :
|
Recent documents: PreferencesWindow Documents récents :
|
||||||
Recent applications DeskbarMenu Applications récentes
|
Recent applications DeskbarMenu Applications récentes
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Applications
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Applications
|
||||||
Find… DeskbarMenu Rechercher…
|
Find… DeskbarMenu Rechercher…
|
||||||
Show clock Tray Afficher l'horloge
|
Show clock Tray Afficher l'horloge
|
||||||
Window PreferencesWindow Fenêtre
|
Window PreferencesWindow Fenêtre
|
||||||
|
Defaults PreferencesWindow Valeurs par défaut
|
||||||
Menu PreferencesWindow Menu
|
Menu PreferencesWindow Menu
|
||||||
Recent documents DeskbarMenu Documents récents
|
Recent documents DeskbarMenu Documents récents
|
||||||
Auto-hide PreferencesWindow Masquer automatiquement
|
Auto-hide PreferencesWindow Masquer automatiquement
|
||||||
@@ -29,6 +31,7 @@ Restart Tracker DeskbarMenu Redémarrer le Tracker
|
|||||||
Close all WindowMenu Tout fermer
|
Close all WindowMenu Tout fermer
|
||||||
Deskbar preferences PreferencesWindow Réglages de la Deskbar
|
Deskbar preferences PreferencesWindow Réglages de la Deskbar
|
||||||
Mount DeskbarMenu Monter
|
Mount DeskbarMenu Monter
|
||||||
|
Revert PreferencesWindow Rétablir
|
||||||
Small PreferencesWindow Petite
|
Small PreferencesWindow Petite
|
||||||
Recent applications: PreferencesWindow Applications récentes :
|
Recent applications: PreferencesWindow Applications récentes :
|
||||||
Shutdown… DeskbarMenu Arrêter…
|
Shutdown… DeskbarMenu Arrêter…
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 hindi x-vnd.Be-TSKB 1712999025
|
1 hindi x-vnd.Be-TSKB 1357715481
|
||||||
|
Applications PreferencesWindow अनुप्रयोग
|
||||||
Recent documents: PreferencesWindow हाल ही में दस्तावेजों:
|
Recent documents: PreferencesWindow हाल ही में दस्तावेजों:
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications अनुप्रयोग
|
Applications B_USER_DESKBAR_DIRECTORY/Applications अनुप्रयोग
|
||||||
Window PreferencesWindow विन्दोव्स
|
Window PreferencesWindow विन्दोव्स
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ Deskbar System name Deskbar
|
|||||||
Restart system DeskbarMenu システムを再起動
|
Restart system DeskbarMenu システムを再起動
|
||||||
Large PreferencesWindow 大
|
Large PreferencesWindow 大
|
||||||
Auto-raise PreferencesWindow マウスオーバーで手前に
|
Auto-raise PreferencesWindow マウスオーバーで手前に
|
||||||
Recent folders: PreferencesWindow 最近開いたフォルダー:
|
Recent folders: PreferencesWindow 最近開いたフォルダー
|
||||||
Show application expander PreferencesWindow エキスパンダーを表示
|
Show application expander PreferencesWindow エキスパンダーを表示
|
||||||
Restart Tracker DeskbarMenu Tracker を再起動
|
Restart Tracker DeskbarMenu Tracker を再起動
|
||||||
Close all WindowMenu すべて閉じる
|
Close all WindowMenu すべて閉じる
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
1 dutch; flemish x-vnd.Be-TSKB 2987454543
|
1 dutch; flemish x-vnd.Be-TSKB 2632170999
|
||||||
Power off DeskbarMenu Uitzetten
|
Power off DeskbarMenu Uitzetten
|
||||||
Suspend DeskbarMenu Opschorten
|
Suspend DeskbarMenu Opschorten
|
||||||
|
Applications PreferencesWindow Toepassingen
|
||||||
Time preferences… TimeView Tijdsvoorkeuren…
|
Time preferences… TimeView Tijdsvoorkeuren…
|
||||||
About Haiku DeskbarMenu Over Haiku
|
About Haiku DeskbarMenu Over Haiku
|
||||||
Recent documents: PreferencesWindow Recente documenten:
|
Recent documents: PreferencesWindow Recente documenten:
|
||||||
|
|||||||
@@ -1,15 +1,19 @@
|
|||||||
1 polish x-vnd.Be-TSKB 1398106986
|
1 polish x-vnd.Be-TSKB 2335730970
|
||||||
Power off DeskbarMenu Wyłącz komputer
|
Power off DeskbarMenu Wyłącz komputer
|
||||||
|
Sort applications by name PreferencesWindow Sortuj programy po nazwie
|
||||||
Suspend DeskbarMenu Wstrzymaj
|
Suspend DeskbarMenu Wstrzymaj
|
||||||
Hide clock TimeView Ukryj zegar
|
Hide clock TimeView Ukryj zegar
|
||||||
|
Applications PreferencesWindow Aplikacje
|
||||||
Time preferences… TimeView Ustawienia czasu...
|
Time preferences… TimeView Ustawienia czasu...
|
||||||
About Haiku DeskbarMenu O Haiku
|
About Haiku DeskbarMenu O Haiku
|
||||||
|
Edit in Tracker… PreferencesWindow Edytuj w Trakerze…
|
||||||
Recent documents: PreferencesWindow Ostatnio przeglądane dokumenty:
|
Recent documents: PreferencesWindow Ostatnio przeglądane dokumenty:
|
||||||
Recent applications DeskbarMenu Ostatnio uruchomione aplikacje
|
Recent applications DeskbarMenu Ostatnio uruchomione aplikacje
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplikacje
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplikacje
|
||||||
Find… DeskbarMenu Wyszukaj…
|
Find… DeskbarMenu Wyszukaj…
|
||||||
Show clock Tray Pokaż zegar
|
Show clock Tray Pokaż zegar
|
||||||
Window PreferencesWindow Położenie
|
Window PreferencesWindow Położenie
|
||||||
|
Defaults PreferencesWindow Ustawienia domyślne
|
||||||
Menu PreferencesWindow Menu
|
Menu PreferencesWindow Menu
|
||||||
Recent documents DeskbarMenu Ostatnio otwarte dokumenty
|
Recent documents DeskbarMenu Ostatnio otwarte dokumenty
|
||||||
Auto-hide PreferencesWindow Autoukrywanie
|
Auto-hide PreferencesWindow Autoukrywanie
|
||||||
@@ -27,6 +31,7 @@ Restart Tracker DeskbarMenu Uruchom ponownie Trackera
|
|||||||
Close all WindowMenu Zamknij wszystkie okna
|
Close all WindowMenu Zamknij wszystkie okna
|
||||||
Deskbar preferences PreferencesWindow Ustawienia Panelu Pulpitu
|
Deskbar preferences PreferencesWindow Ustawienia Panelu Pulpitu
|
||||||
Mount DeskbarMenu Zamontuj
|
Mount DeskbarMenu Zamontuj
|
||||||
|
Revert PreferencesWindow Przywróć
|
||||||
Small PreferencesWindow Małe
|
Small PreferencesWindow Małe
|
||||||
Recent applications: PreferencesWindow Ostatnio używane aplikacje:
|
Recent applications: PreferencesWindow Ostatnio używane aplikacje:
|
||||||
Shutdown… DeskbarMenu Wyłącz…
|
Shutdown… DeskbarMenu Wyłącz…
|
||||||
|
|||||||
@@ -1,16 +1,19 @@
|
|||||||
1 portuguese (brazil) x-vnd.Be-TSKB 1042823442
|
1 portuguese (brazil) x-vnd.Be-TSKB 2335730970
|
||||||
Power off DeskbarMenu Desligar
|
Power off DeskbarMenu Desligar
|
||||||
|
Sort applications by name PreferencesWindow Ordenar aplicativos pelo nome
|
||||||
Suspend DeskbarMenu Suspender
|
Suspend DeskbarMenu Suspender
|
||||||
Hide clock TimeView Ocultar relógio
|
Hide clock TimeView Ocultar relógio
|
||||||
Applications PreferencesWindow Aplicativos
|
Applications PreferencesWindow Aplicativos
|
||||||
Time preferences… TimeView Preferências de hora…
|
Time preferences… TimeView Preferências de hora…
|
||||||
About Haiku DeskbarMenu Sobre o Haiku
|
About Haiku DeskbarMenu Sobre o Haiku
|
||||||
|
Edit in Tracker… PreferencesWindow Editar no Rastreador…
|
||||||
Recent documents: PreferencesWindow Documentos recentes:
|
Recent documents: PreferencesWindow Documentos recentes:
|
||||||
Recent applications DeskbarMenu Aplicativos recentes
|
Recent applications DeskbarMenu Aplicativos recentes
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplicativos
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplicativos
|
||||||
Find… DeskbarMenu Localizar…
|
Find… DeskbarMenu Localizar…
|
||||||
Show clock Tray Exibir relógio
|
Show clock Tray Exibir relógio
|
||||||
Window PreferencesWindow Janela
|
Window PreferencesWindow Janela
|
||||||
|
Defaults PreferencesWindow Padrões
|
||||||
Menu PreferencesWindow Menu
|
Menu PreferencesWindow Menu
|
||||||
Recent documents DeskbarMenu Documentos recentes
|
Recent documents DeskbarMenu Documentos recentes
|
||||||
Auto-hide PreferencesWindow Ocultar automaticamente
|
Auto-hide PreferencesWindow Ocultar automaticamente
|
||||||
@@ -28,6 +31,7 @@ Restart Tracker DeskbarMenu Reiniciar Rastreador
|
|||||||
Close all WindowMenu Fechar tudo
|
Close all WindowMenu Fechar tudo
|
||||||
Deskbar preferences PreferencesWindow Preferências da Deskbar
|
Deskbar preferences PreferencesWindow Preferências da Deskbar
|
||||||
Mount DeskbarMenu Montar
|
Mount DeskbarMenu Montar
|
||||||
|
Revert PreferencesWindow Reverter
|
||||||
Small PreferencesWindow Pequeno
|
Small PreferencesWindow Pequeno
|
||||||
Recent applications: PreferencesWindow Aplicativos recentes:
|
Recent applications: PreferencesWindow Aplicativos recentes:
|
||||||
Shutdown… DeskbarMenu Desligar…
|
Shutdown… DeskbarMenu Desligar…
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
1 romanian x-vnd.Be-TSKB 1712999025
|
1 romanian x-vnd.Be-TSKB 1357715481
|
||||||
|
Applications PreferencesWindow Aplicații
|
||||||
Recent documents: PreferencesWindow Documente recente:
|
Recent documents: PreferencesWindow Documente recente:
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplicații
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Aplicații
|
||||||
Window PreferencesWindow Fereastră
|
Window PreferencesWindow Fereastră
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
1 ukrainian x-vnd.Be-TSKB 1615035932
|
1 ukrainian x-vnd.Be-TSKB 1259752388
|
||||||
Power off DeskbarMenu Вимкнути
|
Power off DeskbarMenu Вимкнути
|
||||||
|
Applications PreferencesWindow Додатки
|
||||||
Recent documents: PreferencesWindow Недавні документи:
|
Recent documents: PreferencesWindow Недавні документи:
|
||||||
Recent applications DeskbarMenu Останні програми
|
Recent applications DeskbarMenu Останні програми
|
||||||
Applications B_USER_DESKBAR_DIRECTORY/Applications Додатки
|
Applications B_USER_DESKBAR_DIRECTORY/Applications Додатки
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-DiskUsage 2682355634
|
1 greek, modern (1453-) x-vnd.Haiku-DiskUsage 1031969768
|
||||||
Scanning %refName% Scanner Σάρωση %refName%
|
Scanning %refName% Scanner Σάρωση %refName%
|
||||||
Size Info Window Μέγεθος
|
Size Info Window Μέγεθος
|
||||||
Rescan Pie View Σάρωσε Ξανά
|
Rescan Pie View Σάρωσε Ξανά
|
||||||
@@ -9,6 +9,7 @@ no supporting apps Pie View καμιά υποστηριζόμενη εφαρμ
|
|||||||
Path Info Window Διαδρομή
|
Path Info Window Διαδρομή
|
||||||
Scan Status View Σάρωση
|
Scan Status View Σάρωση
|
||||||
9999.99 GB Status View 9999.99 GB
|
9999.99 GB Status View 9999.99 GB
|
||||||
|
Rescan Status View Σάρωσε Ξανά
|
||||||
file unavailable Status View μη διαθέσιμο αρχείο
|
file unavailable Status View μη διαθέσιμο αρχείο
|
||||||
DiskUsage System name Χρήση Δίσκου
|
DiskUsage System name Χρήση Δίσκου
|
||||||
%d files Status View %d αρχεία
|
%d files Status View %d αρχεία
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 hindi x-vnd.Haiku-DiskUsage 2447717116
|
1 hindi x-vnd.Haiku-DiskUsage 797331250
|
||||||
Scanning %refName% Scanner अवलोकन कर रहा है %refName%
|
Scanning %refName% Scanner अवलोकन कर रहा है %refName%
|
||||||
Size Info Window आकार
|
Size Info Window आकार
|
||||||
Rescan Pie View पुनः अवलोकन करे
|
Rescan Pie View पुनः अवलोकन करे
|
||||||
@@ -9,6 +9,7 @@ no supporting apps Pie View कोई समर्थन करने वाल
|
|||||||
Path Info Window पथ
|
Path Info Window पथ
|
||||||
Scan Status View अवलोकन करे
|
Scan Status View अवलोकन करे
|
||||||
9999.99 GB Status View 9999.99 जीबी
|
9999.99 GB Status View 9999.99 जीबी
|
||||||
|
Rescan Status View पुनः अवलोकन करे
|
||||||
file unavailable Status View फ़ाइल अनुपलब्ध है
|
file unavailable Status View फ़ाइल अनुपलब्ध है
|
||||||
DiskUsage System name डिस्क का उपयोग
|
DiskUsage System name डिस्क का उपयोग
|
||||||
in %d files Info Window %d फ़ाइलो में
|
in %d files Info Window %d फ़ाइलो में
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 dutch; flemish x-vnd.Haiku-DiskUsage 2447717116
|
1 dutch; flemish x-vnd.Haiku-DiskUsage 797331250
|
||||||
Scanning %refName% Scanner %refName% scannen
|
Scanning %refName% Scanner %refName% scannen
|
||||||
Size Info Window Grootte
|
Size Info Window Grootte
|
||||||
Rescan Pie View Opnieuw scannen
|
Rescan Pie View Opnieuw scannen
|
||||||
@@ -9,6 +9,7 @@ no supporting apps Pie View geen ondersteunende programma's
|
|||||||
Path Info Window Pad
|
Path Info Window Pad
|
||||||
Scan Status View Scannen
|
Scan Status View Scannen
|
||||||
9999.99 GB Status View 9999.99 GB
|
9999.99 GB Status View 9999.99 GB
|
||||||
|
Rescan Status View Opnieuw scannen
|
||||||
file unavailable Status View bestand niet beschikbaar
|
file unavailable Status View bestand niet beschikbaar
|
||||||
DiskUsage System name DiskUsage
|
DiskUsage System name DiskUsage
|
||||||
in %d files Info Window in %d bestanden
|
in %d files Info Window in %d bestanden
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 romanian x-vnd.Haiku-DiskUsage 2682355634
|
1 romanian x-vnd.Haiku-DiskUsage 1031969768
|
||||||
Scanning %refName% Scanner Se scanează %refName%
|
Scanning %refName% Scanner Se scanează %refName%
|
||||||
Size Info Window Dimensiune
|
Size Info Window Dimensiune
|
||||||
Rescan Pie View Rescanează
|
Rescan Pie View Rescanează
|
||||||
@@ -9,6 +9,7 @@ no supporting apps Pie View fără aplicații compatibile
|
|||||||
Path Info Window Cale
|
Path Info Window Cale
|
||||||
Scan Status View Scanează
|
Scan Status View Scanează
|
||||||
9999.99 GB Status View 9999.99 GB
|
9999.99 GB Status View 9999.99 GB
|
||||||
|
Rescan Status View Rescanează
|
||||||
file unavailable Status View fișier indisponibil
|
file unavailable Status View fișier indisponibil
|
||||||
DiskUsage System name UtilizareDisc
|
DiskUsage System name UtilizareDisc
|
||||||
%d files Status View %d fișiere
|
%d files Status View %d fișiere
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1 ukrainian x-vnd.Haiku-DiskUsage 2682355634
|
1 ukrainian x-vnd.Haiku-DiskUsage 1031969768
|
||||||
Scanning %refName% Scanner Сканування %refName%
|
Scanning %refName% Scanner Сканування %refName%
|
||||||
Size Info Window Розмір
|
Size Info Window Розмір
|
||||||
Rescan Pie View Пересканувати
|
Rescan Pie View Пересканувати
|
||||||
@@ -9,6 +9,7 @@ no supporting apps Pie View відсутні підтримувані дода
|
|||||||
Path Info Window Шлях
|
Path Info Window Шлях
|
||||||
Scan Status View Сканувати
|
Scan Status View Сканувати
|
||||||
9999.99 GB Status View 9999.99
|
9999.99 GB Status View 9999.99
|
||||||
|
Rescan Status View Пересканувати
|
||||||
file unavailable Status View файл недоступний
|
file unavailable Status View файл недоступний
|
||||||
DiskUsage System name Використання дисків
|
DiskUsage System name Використання дисків
|
||||||
%d files Status View %d файлів
|
%d files Status View %d файлів
|
||||||
|
|||||||
@@ -1,11 +1,14 @@
|
|||||||
1 belarusian x-vnd.Haiku-DriveSetup 644135944
|
1 belarusian x-vnd.Haiku-DriveSetup 3775412465
|
||||||
DriveSetup System name Рэдыктар дыскаў
|
DriveSetup System name Рэдыктар дыскаў
|
||||||
|
Cancel AbstractParametersPanel Адмяніць
|
||||||
Delete MainWindow Выдаліць
|
Delete MainWindow Выдаліць
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the selected partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
|
||||||
Rescan MainWindow Перасканіраваць
|
Rescan MainWindow Перасканіраваць
|
||||||
OK MainWindow ОК
|
OK MainWindow ОК
|
||||||
Could not aquire partitioning information. MainWindow Не ўдалося атрымаць інфармацыю аб падзелах.
|
Could not aquire partitioning information. MainWindow Не ўдалося атрымаць інфармацыю аб падзелах.
|
||||||
There's no space on the partition where a child partition could be created. MainWindow Няма мечца на падзеле для стварэння даччынага падзела.
|
There's no space on the partition where a child partition could be created. MainWindow Няма мечца на падзеле для стварэння даччынага падзела.
|
||||||
|
Initialize InitializeParametersPanel Ініцыялізіраваць
|
||||||
|
OK AbstractParametersPanel Добра
|
||||||
<empty> PartitionList <пуста>
|
<empty> PartitionList <пуста>
|
||||||
Unable to find the selected partition by ID. MainWindow Не ўдалося знайсці абраны падзел па ID.
|
Unable to find the selected partition by ID. MainWindow Не ўдалося знайсці абраны падзел па ID.
|
||||||
Select a partition from the list below. DiskView Абярыце падзел са спісу нішэй.
|
Select a partition from the list below. DiskView Абярыце падзел са спісу нішэй.
|
||||||
@@ -15,6 +18,7 @@ The selected disk is read-only. MainWindow Абраны дыск толькі
|
|||||||
Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел \"%s\"? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел \"%s\"? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||||
Could not mount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
Could not mount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
||||||
The partition %s has been successfully formatted.\n MainWindow Падзел %s паспяхова фарматаваны.\n
|
The partition %s has been successfully formatted.\n MainWindow Падзел %s паспяхова фарматаваны.\n
|
||||||
|
Change parameters MainWindow Змяніць параметры
|
||||||
The partition %s is already unmounted. MainWindow Падзел %s ужо змантаваны.
|
The partition %s is already unmounted. MainWindow Падзел %s ужо змантаваны.
|
||||||
Failed to delete the partition. No changes have been written to disk. MainWindow Не ўдалося выдаліць падзел. Змены не былі запісаны на дыск.
|
Failed to delete the partition. No changes have been written to disk. MainWindow Не ўдалося выдаліць падзел. Змены не былі запісаны на дыск.
|
||||||
Could not delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
Could not delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
||||||
@@ -33,38 +37,53 @@ Write changes MainWindow Запісаць змены
|
|||||||
There was an error preparing the disk for modifications. MainWindow Адбылася памылка пры падрыхтоўцы дыску да мадыфікацый.
|
There was an error preparing the disk for modifications. MainWindow Адбылася памылка пры падрыхтоўцы дыску да мадыфікацый.
|
||||||
The partition %s is already mounted. MainWindow Падзел %s ужо змантаваны.
|
The partition %s is already mounted. MainWindow Падзел %s ужо змантаваны.
|
||||||
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць падзел? Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||||
|
Partition name: ChangeParametersPanel Імя падзела:
|
||||||
|
Change ChangeParametersPanel Змяніць
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Сапраўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Сапраўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
||||||
Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце выдаліць абраны падзел?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
|
Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце выдаліць абраны падзел?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
|
||||||
Create… MainWindow Стварыць…
|
Create… MainWindow Стварыць…
|
||||||
Disk system \"%s\"\" not found! MainWindow Дыскавая сістэма \"%s\"\" не знойдзена!
|
Disk system \"%s\"\" not found! MainWindow Дыскавая сістэма \"%s\"\" не знойдзена!
|
||||||
The disk has been successfully initialized.\n MainWindow Дыск быў паспяхова ініцыялізаваны.\n
|
The disk has been successfully initialized.\n MainWindow Дыск быў паспяхова ініцыялізаваны.\n
|
||||||
Could not unmount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
Could not unmount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
|
||||||
|
Failed to change the parameters of the partition. No changes have been written to disk. MainWindow Не ўдалося зманіць параметры падзела. Змены не былі запісаныя на дыск.
|
||||||
Failed to format the partition %s!\n MainWindow Не ўдалося фарматаваць падзел %s!\n
|
Failed to format the partition %s!\n MainWindow Не ўдалося фарматаваць падзел %s!\n
|
||||||
Mount MainWindow Змантаваць
|
Mount MainWindow Змантаваць
|
||||||
|
Partition type PartitionList Тып падзела
|
||||||
Are you sure you want to format a raw disk? (most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць ўвесь дыск? (у большасці выпадкаў на дыску ствараюць сыстэму падзелаў) Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
Are you sure you want to format a raw disk? (most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Вы упэўнены, што жадаеце фарматаваць ўвесь дыск? (у большасці выпадкаў на дыску ствараюць сыстэму падзелаў) Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.
|
||||||
|
The panel experienced a problem! MainWindow З панэллю ёсьць пэўная праблема!
|
||||||
|
Change parameters… MainWindow Змяніць параметры…
|
||||||
Device PartitionList Прылада
|
Device PartitionList Прылада
|
||||||
Disk MainWindow Дыск
|
Disk MainWindow Дыск
|
||||||
Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Вы упэўнены, што жадаеце ініцыялізаваць абраны дыск? Усе дадзеныя з яго будуць страчаны. Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.\n
|
Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Вы упэўнены, што жадаеце ініцыялізаваць абраны дыск? Усе дадзеныя з яго будуць страчаны. Дадатковае пацвержанне спатрэбіцца і непасрэдна перад запісам на дыск.\n
|
||||||
|
Partition size CreateParametersPanel Памер падзела
|
||||||
Device DiskView Прылада
|
Device DiskView Прылада
|
||||||
Active PartitionList Актыўны
|
Active PartitionList Актыўны
|
||||||
Volume name PartitionList Імя тому
|
Volume name PartitionList Імя тому
|
||||||
Continue MainWindow Працягнуць
|
Continue MainWindow Працягнуць
|
||||||
Cannot delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
Cannot delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
|
||||||
Mount all MainWindow Зманатаваць усё
|
Mount all MainWindow Зманатаваць усё
|
||||||
|
End: %s Support Канец: %s
|
||||||
|
The panel could not return successfully. MainWindow Панэль не можа вярнуцца карэктна.
|
||||||
Cancel MainWindow Адмяніць
|
Cancel MainWindow Адмяніць
|
||||||
Delete partition MainWindow Выдаліць падзел
|
Delete partition MainWindow Выдаліць падзел
|
||||||
|
Are you sure you want to change parameters of the selected partition?\n\nThe partition may no longer be recognized by other operating systems anymore! MainWindow Вы ўпэўнены, што жадаеце зманіць параметры абранага падзел?\n\nГэты падзел можа стаць нераспазнаваным для іншых аперацыйных сістэм!
|
||||||
Eject MainWindow Выцягнуць
|
Eject MainWindow Выцягнуць
|
||||||
Partition MainWindow Падзел
|
Partition MainWindow Падзел
|
||||||
|
Validation of the given parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
|
||||||
|
Create CreateParametersPanel Стварыць
|
||||||
File system PartitionList Файлавая сістэма
|
File system PartitionList Файлавая сістэма
|
||||||
Validation of the given creation parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
|
Validation of the given creation parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
|
||||||
|
Partition type: ChangeParametersPanel Тып падзела:
|
||||||
Size PartitionList Памер
|
Size PartitionList Памер
|
||||||
Wipe (not implemented) MainWindow Вынішчыць усе дадзеныя (пакуль не працуе)
|
Wipe (not implemented) MainWindow Вынішчыць усе дадзеныя (пакуль не працуе)
|
||||||
Validation of the given initialization parameters failed. MainWindow Не удалася праверка дадзеных параметраў ініцыялізацыі падзелу.
|
Validation of the given initialization parameters failed. MainWindow Не удалася праверка дадзеных параметраў ініцыялізацыі падзелу.
|
||||||
The selected partition does not contain a partitioning system. MainWindow Абраны падзел не мае сістымы дзялення.
|
The selected partition does not contain a partitioning system. MainWindow Абраны падзел не мае сістымы дзялення.
|
||||||
|
Offset: %s Support Зрух: %s
|
||||||
Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
Are you sure you want to write the changes back to disk now?\n\nAll data on the partition %s will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле %s будуць беззваротна згублены!
|
||||||
The partition %s is currently mounted. MainWindow Падзел %s зараз змантаваны.
|
The partition %s is currently mounted. MainWindow Падзел %s зараз змантаваны.
|
||||||
Surface test (not implemented) MainWindow Тэст паверхні (не ажыццявіма)
|
Surface test (not implemented) MainWindow Тэст паверхні (не ажыццявіма)
|
||||||
Format MainWindow Фарматаваць
|
Format MainWindow Фарматаваць
|
||||||
|
Could not change the parameters of the selected partition. MainWindow Немагчыма змяніць параметры абранага падзела.
|
||||||
Parameters PartitionList Параметры
|
Parameters PartitionList Параметры
|
||||||
Creation of the partition has failed. MainWindow Не удалося стварыць падзел.
|
Creation of the partition has failed. MainWindow Не удалося стварыць падзел.
|
||||||
The currently selected partition is not empty. MainWindow Абраны зараз падзел не пусты.
|
The currently selected partition is not empty. MainWindow Абраны зараз падзел не пусты.
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
1 greek, modern (1453-) x-vnd.Haiku-DriveSetup 2224844276
|
1 greek, modern (1453-) x-vnd.Haiku-DriveSetup 3333034725
|
||||||
DriveSetup System name Εγκατάσταση Οδηγού
|
DriveSetup System name Εγκατάσταση Οδηγού
|
||||||
|
Cancel AbstractParametersPanel Άκυρο
|
||||||
Delete MainWindow Διαγραφή
|
Delete MainWindow Διαγραφή
|
||||||
Rescan MainWindow Επανάληψη σάρωσης
|
Rescan MainWindow Επανάληψη σάρωσης
|
||||||
OK MainWindow Εντάξει
|
OK MainWindow Εντάξει
|
||||||
Could not aquire partitioning information. MainWindow Αδυναμία απόκτησης πληροφορίας διαμέρισης.
|
Could not aquire partitioning information. MainWindow Αδυναμία απόκτησης πληροφορίας διαμέρισης.
|
||||||
There's no space on the partition where a child partition could be created. MainWindow Δεν υπάρχει χώρος στη κατάτμηση, όπου θα μπορούσε να δημιουργηθεί νέα κατάτμηση.
|
There's no space on the partition where a child partition could be created. MainWindow Δεν υπάρχει χώρος στη κατάτμηση, όπου θα μπορούσε να δημιουργηθεί νέα κατάτμηση.
|
||||||
|
Initialize InitializeParametersPanel Αρχικοποίηση
|
||||||
|
OK AbstractParametersPanel Εντάξει
|
||||||
<empty> PartitionList <άδειο>
|
<empty> PartitionList <άδειο>
|
||||||
Unable to find the selected partition by ID. MainWindow Αδύνατο να βρεθεί η επιλεγμένη κατάτμηση ID.
|
Unable to find the selected partition by ID. MainWindow Αδύνατο να βρεθεί η επιλεγμένη κατάτμηση ID.
|
||||||
Select a partition from the list below. DiskView Επιλέξτε μία κατάτμηση από την παρακάτω λίστα.
|
Select a partition from the list below. DiskView Επιλέξτε μία κατάτμηση από την παρακάτω λίστα.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user