diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000..0770a5253b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+generated*
+build/jam/UserBuildConfig
+build/user_config_headers
+
diff --git a/3rdparty/mmu_man/scripts/HardwareChecker.sh b/3rdparty/mmu_man/scripts/HardwareChecker.sh
index 0a0d50253e..a80b3425fc 100755
--- a/3rdparty/mmu_man/scripts/HardwareChecker.sh
+++ b/3rdparty/mmu_man/scripts/HardwareChecker.sh
@@ -10,7 +10,7 @@
netcat=netcat
-report_site=haikuware.com
+report_site=fake.haikuware.com
report_cgi=http://haikuware.com/hwreport.php
do_notify ()
@@ -199,12 +199,35 @@ check_usb ()
echo ""
}
+check_dmidecode () {
+ which dmidecode >/dev/null 2>&1 || return
+
+ # make sure /dev/mem is published
+ ls -l /dev/misc/mem > /dev/null
+
+ echo "
DMIdecode output
"
+ echo "The output of dmidecode gives exact vendor and device identification."
+
+ echo "dmidecode
"
+ echo "(full output, stripped from the machine UUID)
"
+ echo ""
+
+ dmidecode_bios_vendor="$(dmidecode -s bios-vendor)"
+ dmidecode_bios_version="$(dmidecode -s bios-version)"
+ dmidecode_bios_release_date="$(dmidecode -s bios-release-date)"
+ dmidecode_system_manufacturer="$(dmidecode -s system-manufacturer)"
+ dmidecode_system_product_name="$(dmidecode -s system-product-name)"
+ dmidecode_system_version="$(dmidecode -s system-version)"
+}
+
check_machine ()
{
echo "Machine
"
- echo "Vendor: "
+ echo "Vendor: "
echo "
"
- echo "Model: "
+ echo "Model: "
echo "
"
echo "Specification page: "
echo "
"
@@ -302,19 +325,22 @@ check_all ()
do_notify 0.1 "Checking for PCI hardware..."
check_pci
- do_notify 0.3 "Checking for USB hardware..."
+ do_notify 0.2 "Checking for USB hardware..."
check_usb
- do_notify 0.5 "Checking for Haiku version..."
- check_haiku
-
- do_notify 0.6 "Checking for utility outputs..."
+ do_notify 0.3 "Checking for utility outputs..."
check_utils
- do_notify 0.8 "Dumping syslog output..."
+ do_notify 0.7 "Dumping syslog output..."
check_syslog
+ do_notify 0.8 "Checking machine infos..."
+ check_dmidecode
check_machine
+
+ do_notify 0.9 "Checking for Haiku version..."
+ check_haiku
+
check_sender
do_notify 1.0 "Done!" --timeout 3
diff --git a/3rdparty/pulkomandy/catmerge.sh b/3rdparty/pulkomandy/catmerge.sh
new file mode 100755
index 0000000000..1a0b729329
--- /dev/null
+++ b/3rdparty/pulkomandy/catmerge.sh
@@ -0,0 +1,38 @@
+#!/bin/bash
+
+if [ $# -eq 2 ]
+ then
+ OLD=$1
+ NEW=$2
+
+ # We need a tab character as a field separator
+ TAB=`echo -e "\t"`
+
+ #Temporary storage
+ TEMPFILE=`mktemp /tmp/catmerge.XXXXX`
+
+ # Extract the list of keys to remove
+ # Compare (diff) the keys only (cut) ; keep only 'removed' lines (grep -),
+ # Ignore diff header and headlines from both files (tail), remove diff's
+ # prepended stuff (cut)
+ # Put the result in our tempfile.
+ diff -u <(cut -f 1,2 $OLD) <(cut -f 1,2 $NEW) |grep ^-|\
+ tail -n +3|cut -b2- > $TEMPFILE
+
+ # Reuse the headline from the new file (including fingerprint). This gets
+ # the language wrong, but it isn't actually used anywhere
+ head -1 $NEW
+ # Sort-merge old and new, inserting lines from NEW into OLD (sort);
+ # Exclude the headline from that (tail -n +2)
+ # Then, filter out the removed strings (fgrep)
+ sort -u -t"$TAB" -k 1,2 <(tail -n +2 $OLD) <(tail -n +2 $NEW)|\
+ fgrep -v -f $TEMPFILE
+
+ rm $TEMPFILE
+
+ else
+ echo "$0 OLD NEW"
+ echo "merges OLD and NEW catalogs, such that all the keys in NEW that are"
+ echo "not yet in OLD are added to it, and the one in OLD but not in NEW are"
+ echo "removed. The fingerprint is also updated."
+fi
diff --git a/ReadMe b/ReadMe
index 5bf4fa894f..9a0ced9e93 100644
--- a/ReadMe
+++ b/ReadMe
@@ -1,35 +1,115 @@
-Building on BeOS
-================
+Building Haiku from source
+==========================
-For building on BeOS you need the development tools from:
+This is a overview into the process of building HAIKU from source.
+An online version is available at http://www.haiku-os.org/guides/building/
- http://haiku-os.org/downloads
+Official releases of Haiku are at http://www.haiku-os.org/get-haiku
+The (unstable) nightly builds are available at http://www.haiku-files.org
-Please always use the most recent versions. They are required to build Haiku.
+To build Haiku, you will need to
+ * ensure pre-requisite software is installed
+ * download sources
+ * configure your build
+ * run jam to initiate the build process
+
+We currently support these platforms:
+ * Haiku
+ * Linux
+ * FreeBSD
+ * Mac OS X Intel
+
+Pre-requisite software
+======================
+
+Tools provided within Haiku's repositories
+
+ * Jam (Jam 2.5-haiku-20090626)
+ * Haiku's cross-compiler (needed only for non-Haiku platforms)
+
+The tools to compile Haiku will vary, depending on the platform that you are
+using to build Haiku. When building from Haiku, all of the necessary
+development tools are included in official releases (e.g. R1 alpha 1) and in the
+(unstable) nightly builds.
+
+ * Git client
+ * SSH client (for developers with commit access)
+ * gcc and the binutils (as, ld, etc., required by gcc)
+ * make (GNU make)
+ * bison
+ * flex and lex (usually a mini shell script invoking flex)
+ * makeinfo (part of texinfo, needed for building gcc 4 only)
+ * autoheader (part of autoconf, needed for building gcc)
+ * automake
+ * gawk
+ * yasm (http://www.tortall.net/projects/yasm/wiki/Download)
+ * wget
+ * (un)zip
+ * cdrtools (not genisoimage!)
+ * case-sensitive file system
+
+Whether they are installed can be tested for instance by running them in the
+shell with the "--version" parameter.
+
+Specific: Haiku for the ARM platform
+------------------------------------
+
+The following tools are needed to compile Haiku for the ARM platform
+
+ * mkimage (http://www.denx.de/wiki/UBoot)
+ * Mtools (http://www.gnu.org/software/mtools/intro.html)
+ * sfdisk
+
+Specific: Mac OS X
+------------------
+
+Disk Utility can create a case-sensitive disk image of at least 3 GiB in size.
+The following darwin ports need to be installed:
+ * expat
+ * gawk
+ * gettext
+ * libiconv
+ * gnuregex
+ * gsed
+
+More information about individual distributions of Linux and BSD can be found
+at http://haiku-os.org/guides/building/pre-reqs
-Building on a non-BeOS platform
-===============================
+Download Haiku's sources
+========================
-Please read the file 'ReadMe.cross-compile' before continuing. It describes
-how to build the cross-compilation tools and configure the build system for
-building Haiku. After following the instructions you can directly continue
-with the section Building.
+There are two parts to Haiku's sources -- the code for Haiku itself and a set
+of build tools for compiling Haiku on an operating system other than Haiku.
+The buildtools are needed only for non-Haiku platform.
+
+Anonymous checkout:
+ git clone git://git.haiku-os.org/haiku
+ git clone git://git.haiku-os.org/buildtools
+
+Developer with commit access:
+ git clone ssh://git.haiku-os.org/haiku
+ git clone ssh://git.haiku-os.org/buildtools
-Configuring on BeOS
-===================
+Building the Jam executable
+===========================
-Open a Terminal and change to your Haiku trunk folder. To configure the build
-you can run configure like this:
+This step applies only to non-Haiku platforms.
- ./configure --target=TARGET
+Change to the buildtools folder and we will start to build 'jam' which is a
+requirement for building Haiku. Run the following commands to generate and
+install the tool:
-Where "TARGET" is the target platform that the compiled code should run on:
- * haiku (default)
- * r5
- * bone
- * dano (also for Zeta)
+ cd buildtools/jam
+ make
+ sudo ./jam0 install
+ -- or --
+ ./jam0 -sBINDIR=$HOME/bin install
+
+
+Configuring your build
+======================
The configure script generates a file named "BuildConfig" in the
"generated/build" directory. As long as configure is not modified (!), there
@@ -37,23 +117,84 @@ is no need to call it again. That is for re-building you only need to invoke
jam (see below). If you don't update the source tree very frequently, you may
want to execute 'configure' after each update just to be on the safe side.
+Depending on your goal, there are several different ways to configure Haiku.
+You can either call configure from within your Haiku trunk folder. That will
+prepare a folder named 'generated', which will contain the compiled objects.
+Another option is to manually created one or more 'generated.*' folders and run
+configure from within them. For example imagine the following directory setup
-Building
-========
+ buildtools-trunk/
+ haiku-trunk/
+ haiku-trunk/generated.x86gcc2
+ haiku-trunk/generated.x86gcc4
+
+Configure a GCC 2.95 Hybrid, from non-Haiku platform
+----------------------------------------------------
+
+ cd haiku-trunk/generated.x86gcc4
+ ../configure --use-gcc-pipe --use-xattr \
+ --build-cross-tools-gcc4 x86 ../../buildtools/ \
+ --alternative-gcc-output-dir ../generated.x86gcc2
+ cd ../generated.x86gcc2
+ ../configure --use-gcc-pipe --use-xattr \
+ --build-cross-tools ../../buildtools/ \
+ --alternative-gcc-output-dir ../generated.x86gcc4
+
+Configure a GCC 2.95 Hybrid, from within Haiku
+----------------------------------------------
+
+ cd haiku-trunk/generated.x86gcc4
+ ../configure --use-gcc-pipe \
+ --alternative-gcc-output-dir ../generated.x86gcc2 \
+ --cross-tools-prefix /boot/develop/abi/x86/gcc4/tools/current/bin/
+ cd ../generated.x86gcc2
+ ../configure --use-gcc-pipe \
+ --alternative-gcc-output-dir ../generated.x86gcc4 \
+ --cross-tools-prefix /boot/develop/abi/x86/gcc2/tools/current/bin/
+
+Additional information about GCC Hybrids can be found on the website,
+http://www.haiku-os.org/guides/building/gcc-hybrid
+
+Configure options
+-----------------
+
+The various runtime options for configure are documented in it's onscreen help
+
+ ./configure --help
+
+
+Building via Jam
+================
Haiku can be built in either of two ways, as disk image file (e.g. for use
-with emulators) or as installation in a directory.
+with emulators, to be written directly to a usb stick, burned as a compact
+disc) or as installation in a directory.
-Image File
-----------
+Running Jam
+-----------
- jam -q haiku-image
+There are various ways in which you can run jam.
-This generates an image file named 'haiku.image' in your output directory
-under 'generated/'.
+ * If you have a single generated folder,
+ you can run 'jam' from the top level of Haiku's trunk.
+ * If you have one or more generated folders,
+ (e.g. generated.x86gcc2), you can cd into that directory and run 'jam'
+ * In either case, you can cd into a certain folder in the source tree (e.g.
+ src/apps/debugger) and run jam -sHAIKU_OUTPUT_DIR=
-VMware Image File
------------------
+Be sure to read build/jam/UserBuildConfig.ReadMe and UserBuildConfig.sample,
+as they contain information on customizing your build of Haiku.
+
+Building a Haiku anyboot file
+---------------------------
+
+ jam -q haiku-anyboot-image
+
+This generates an image file named 'haiku-anyboot.image' in your output
+directory under 'generated/'.
+
+Building a VMware image file
+----------------------------
jam -q haiku-vmware-image
@@ -69,56 +210,40 @@ Installs all Haiku components into the volume mounted at "/Haiku" and
automatically marks it as bootable. To create a partition in the first place
use DriveSetup and initialize it to BFS.
-Note that installing Haiku in a directory only works as expected under BeOS,
-but it is not yet supported under Linux and other non-BeOS platforms.
+Note that installing Haiku in a directory only works as expected under Haiku,
+but it is not yet supported under Linux and other non-Haiku platforms.
-Bootable CD-ROM Image
----------------------
-
-This _requires_ having the mkisofs tool installed.
-On Debian GNU/Linux for example you can install it with:
- apt-get install mkisofs
-On BeOS you can get it from http://bebits.com/app/3964 along with cdrecord.
-
-This creates a bootable 'haiku-cd.iso' in your 'generated/' folder:
-
- jam -q haiku-cd
-
-Under Unix/Linux, and BeOS you can use cdrecord to create a CD with:
-
- cdrecord dev=x,y,z -v -eject -dao -data generated/haiku-cd.iso
-
-Here x,y,z is the device number as found with cdrecord -scanbus, it can also
-be a device path on Linux.
-
-Building Components
--------------------
+Building individual components
+------------------------------
If you don't want to build the complete Haiku, but only a certain
app/driver/etc. you can specify it as argument to jam, e.g.:
- jam Pulse
+ jam Debugger
Alternatively, you can 'cd' to the directory of the component you want to
-build and run 'jam' from there.
+build and run 'jam' from there. Note: if your generated directory named
+something other than "generated/", you will need to tell jam where it is.
+
+ jam -sHAIKU_OUTPUT_DIR=
You can also force rebuilding of a component by using the "-a" parameter:
- jam -a Pulse
+ jam -a Debugger
Running
=======
Generally there are two ways of running Haiku. On real hardware using a
-partition and on emulated hardware using an emulator like Bochs or QEmu.
+partition and on emulated hardware using an emulator like Bochs or QEMU.
On Real Hardware
----------------
If you have installed Haiku to its own partition you can include this
partition in your bootmanager and try to boot Haiku like any other OS you
-have installed. To include a new partition in the BeOS bootmanager run this
+have installed. To include a new partition in the Haiku bootmanager run this
in a Terminal:
bootman
@@ -127,34 +252,9 @@ On Emulated Hardware
--------------------
For emulated hardware you should build disk image (see above). How to setup
-this image depends on your emulater. A tutorial for Bochs on BeOS is below.
-If you use QEmu, you can usually just provide the path to the image as
-command line argument to the "qemu" executable.
-
-Bochs
------
-
-Version 2.2 of Bochs for BeOS (BeBochs) can be downloaded from BeBits:
-
- http://www.bebits.com/app/3324
-
-The package installs to: /boot/apps/BeBochs2.2
-
-You have to set up a configuration for Bochs. You should edit the ".bochsrc" to
-include the following:
-
-ata0-master: type=disk, path="/path/to/haiku.image", cylinders=122, heads=16, spt=63
-boot: disk
-
-Now you can start Bochs:
-
- $ cd /boot/apps/BeBochs2.2
- $ ./bochs
-
-Answer with RETURN and with some patience you will see Haiku booting.
-If booting into the graphical evironment fails you can try to hit "space" at the
-very beginning of the boot process. The Haiku bootloader should then come up and
-you can select some safe mode options.
+this image depends on your emulater. If you use QEMU, you can usually just
+provide the path to the image as command line argument to the "qemu"
+executable.
Docbook documentation
diff --git a/ReadMe.IntroductionToHaiku b/ReadMe.IntroductionToHaiku
new file mode 100644
index 0000000000..8a62efc313
--- /dev/null
+++ b/ReadMe.IntroductionToHaiku
@@ -0,0 +1,122 @@
+Greetings.
+
+This document is intended to serve as an introduction to the Haiku project.
+As such, this is only the tip of the iceberg.
+
+Haiku project website
+---------------------
+http://www.haiku-os.org
+
+This is the main website for the Haiku project. It contains news posts from
+the project, blog posts (from developers, Google Summer of Code participants,
+and other frequent contributors), forums, and a vast collection of information.
+
+
+Development tracker
+-------------------
+http://dev.haiku-os.org/
+
+This is the Haiku project's development tracker.
+ * Bug reports
+ * Browse the source
+ * Review changesets
+ * Development related wiki (limited write access)
+
+
+{OpenGrok
+---------
+http://haiku.it.su.se:8180/source
+
+Graciously provided by .
+This allows you to quickly and easily search Haiku's source code.
+
+
+Coding Guidelines
+------------------
+http://www.haiku-os.org/development/coding-guidelines
+
+The Haiku project takes pride in code quality. Both in terms of implementing
+the correct code, as well as ensuring the code is written in a consistent
+style. Learning and utilizing the coding guidelines is essential to
+contributing code to Haiku.
+
+
+Haiku API documentation
+-----------------------
+http://api.haiku-os.org
+Old BeBook API: http://www.haiku-os.org/legacy-docs/bebook
+
+This is the current (and in-progress) documentation for Haiku's API. As Haiku
+was formed on the idea of implementing binary compatibility with BeOS R5, the
+BeBook is fairly accurate. Contributions to Haiku's API book are encouraged.
+
+
+Learning to Program with Haiku
+------------------------------
+http://www.haiku-os.org/development/learning_to_program_with_haiku
+
+A developer, DarkWyrm has published a book that is " aimed at people who want
+to be able to write simple programs to get stuff done, but never had anyone
+around teach them". He has chosen to distribute the PDF versions of the book
+under a Creative Commons license for noncommercial purposes.
+
+
+Programming with Haiku
+----------------------
+http://www.haiku-os.org/tags/programmingwithhaiku
+
+Another series from Darkwyrm. It is "aimed at current codemonkeys who want to
+break into development for Haiku. Here begins a new series of programming
+lessons aimed at people who already have a basic grasp on C++: Programming with
+Haiku."
+
+
+ohloh
+-----
+http://www.ohloh.net/p/haiku
+
+"Ohloh is a free public directory of open source software and people." On
+there, you can view detailed reports and analysis of Haiku (and other open
+source software projects).
+
+
+Haiku Translation Assistant (HTA)
+---------------------------------
+http://hta.polytect.org/
+
+This is the current solution to assisting people in translating Haiku's
+on screen text to other languages. Consult the [haiku-i18n] mailing list
+for additional information: http://www.freelists.org/list/haiku-i18n
+
+Note: HTA is starting to be replaced by a Pootle based implementation.
+ That next-generation tool is http://i18n.haiku-os.org/pootle
+
+
+Haiku User Guide Translation
+----------------------------
+http://i18n.haiku-os.org/userguide/
+
+Similar to HTA, this site is for coordinating the efforts of translating Haiku's
+User Guide and Welcome page to other spoken languages. Subscribe to the
+[haiku-doc] mailing list: http://www.freelists.org/list/haiku-doc
+
+
+HaikuPorts
+----------
+http://ports.haiku-files.org
+http://ports-space.haiku-files.org
+
+"HaikuPorts is a centralized collection of software ported to the Haiku
+platform." If you are interested in porting software to Haiku, then this
+is the site for you!
+
+
+Haikuware
+---------
+http://www.haikuware.com
+
+Haikuware is a website, which provides direct downloads for Haiku software.
+In addition to comments on application pages there are blogs and forums.
+Haikuware also holds a recurring Thank You Award and helps fund development
+through bounty programs.
+
diff --git a/ReadMe.cross-compile b/ReadMe.cross-compile
deleted file mode 100644
index 512468eaed..0000000000
--- a/ReadMe.cross-compile
+++ /dev/null
@@ -1,84 +0,0 @@
-Building on a non-BeOS platform
-===============================
-
-We currently support these non-BeOS platforms:
- * Linux
- * FreeBSD
- * Mac OS X Intel (gcc 4 builds only)
-
-To build Haiku on a non-BeOS platform you must first check out and build the
-cross-compiler. The easiest method for doing so is to check it out in the
-parent directory of your Haiku repository:
-
- svn checkout svn://svn.berlios.de/haiku/buildtools/trunk buildtools
-
-You should now have a 'buildtools' folder that contains folders named
-'binutils', 'gcc', and 'jam' among others.
-
-Several other tools are required to build these build tools or are used by
-Haiku's build system itself:
- * gcc and the binutils (as, ld, etc., required by gcc)
- * make (GNU make)
- * bison
- * flex and lex (usually a mini shell script invoking flex)
- * makeinfo (part of texinfo, needed for building gcc 4 only)
- * autoheader (part of autoconf, needed for building gcc)
- * gawk
- * yasm (http://www.tortall.net/projects/yasm/wiki/Download)
-
-Whether they are installed can be tested for instance by running them in the
-shell with the "--version" parameter.
-
-On Mac OS X a case-sensitive file system is required for the Haiku tree
-(Disk Utility can be used to create a case-sensitive disk image of at least
-3GB size), and the following darwin ports need to be installed:
- * expat
- * gawk
- * gettext
- * libiconv
- * gnuregex
- * cdrtools (for mkisofs used to create the bootable CD-ROM image)
-
-Building Jam
-============
-
-Change to the buildtools folder and we will start to build 'jam' which is a
-requirement for building Haiku. Run the following commands to generate and
-install the tool:
-
- cd buildtools/jam
- make
- sudo ./jam0 install
-
-
-Building binutils
-=================
-
-The binutils used by Haiku will be automatically generated according to the
-initial configuration of the Haiku source and placed in the
-'generated/cross-tools' directory of Haiku. Before generating the tools you
-must consider the version required, there are essentially two choices:
-
- * 2.95: Creates BeOS compatible binaries
- * 4.x: Incompatible with BeOS, but theoretically more efficient binaries
-
-Unless there is a pressing need, choose 2.95 as the latter option can cause
-frequent build issues. The commands for configuration are,
-
-GCC 2.95
---------
-
- cd haiku
- ./configure --build-cross-tools ../buildtools/
-
-GCC 4.x
--------
-
- cd haiku
- ./configure --build-cross-tools-gcc4 x86 ../buildtools/
-
-The process can take quite some time, but when it finishes the build system is
-fully configured and you are ready to compile your first Haiku image.
-
-Instructions on how to build Haiku can be found in the section Building in the
-'ReadMe' document.
diff --git a/build/config_headers/ReadMe b/build/config_headers/ReadMe
index ef28f4465e..6222a2a3fb 100644
--- a/build/config_headers/ReadMe
+++ b/build/config_headers/ReadMe
@@ -1 +1 @@
-To customize the settings defined in these headers, create a folder "user_config_headers" in the "build" folder and copy the headers you want to modify into that folder. Your custom headers will be ignored by SVN and the build system will automatically use them instead of the original ones. But be aware that when changes are commited to the files in "config_headers", you will have to apply them to your custom headers manually.
+To customize the settings defined in these headers, create a folder "user_config_headers" in the "build" folder and copy the headers you want to modify into that folder. Your custom headers will be ignored by the version control system and the build system will automatically use them instead of the original ones. But be aware that when changes are commited to the files in "config_headers", you will have to apply them to your custom headers manually.
diff --git a/build/config_headers/kernel_debug_config.h b/build/config_headers/kernel_debug_config.h
index 26add874c4..837c8373d2 100644
--- a/build/config_headers/kernel_debug_config.h
+++ b/build/config_headers/kernel_debug_config.h
@@ -42,7 +42,7 @@
#define DEBUG_FILE_MAP KDEBUG_LEVEL_1
-// heap
+// heap / slab
// Initialize newly allocated memory with something non zero.
#define PARANOID_KERNEL_MALLOC KDEBUG_LEVEL_2
@@ -57,6 +57,9 @@
// Enables the "allocations*" debugger commands.
#define KERNEL_HEAP_LEAK_CHECK 0
+// Enables the "allocations*" debugger commands for the slab.
+#define SLAB_ALLOCATION_TRACKING 0
+
// interrupts
@@ -98,14 +101,37 @@
// Enables swap support.
#define ENABLE_SWAP_SUPPORT 1
-// Use the slab allocator as generic memory allocator (malloc()/free()).
+// Use the selected allocator as generic memory allocator (malloc()/free()).
+#define USE_DEBUG_HEAP_FOR_MALLOC 0
+ // Heap implementation with additional debugging facilities.
+#define USE_GUARDED_HEAP_FOR_MALLOC 0
+ // Heap implementation that allocates memory so that the end of the
+ // allocation always coincides with a page end and is followed by a guard
+ // page which is marked non-present. Out of bounds access (both read and
+ // write) therefore cause a crash (unhandled page fault). Note that this
+ // allocator is neither speed nor space efficient, indeed it wastes huge
+ // amounts of pages and address space so it is quite easy to hit limits.
#define USE_SLAB_ALLOCATOR_FOR_MALLOC 1
+ // Heap implementation based on the slab allocator (for production use).
+
+// Replace the object cache with the guarded heap to force debug features. Also
+// requires the use of the guarded heap for malloc.
+#define USE_GUARDED_HEAP_FOR_OBJECT_CACHE 0
// Enables additional sanity checks in the slab allocator's memory manager.
#define DEBUG_SLAB_MEMORY_MANAGER_PARANOID_CHECKS 0
+// Disables memory re-use in the guarded heap (freed memory is never reused and
+// stays invalid causing every access to crash). Note that this is a magnitude
+// more space inefficient than the guarded heap itself. Fully booting may not
+// work at all due to address space waste.
+#define DEBUG_GUARDED_HEAP_DISABLE_MEMORY_REUSE 0
+
// When set limits the amount of available RAM (in MB).
//#define LIMIT_AVAILABLE_MEMORY 256
+// Enables tracking of page allocations.
+#define VM_PAGE_ALLOCATION_TRACKING 0
+
#endif // KERNEL_DEBUG_CONFIG_H
diff --git a/build/config_headers/tracing_config.h b/build/config_headers/tracing_config.h
index 926b69e1d5..a38408752d 100644
--- a/build/config_headers/tracing_config.h
+++ b/build/config_headers/tracing_config.h
@@ -28,6 +28,8 @@
#define BMESSAGE_TRACING 0
#define FILE_DESCRIPTOR_TRACING 0
#define FILE_DESCRIPTOR_TRACING_STACK_TRACE 0 /* stack trace depth */
+#define GUARDED_HEAP_TRACING 0
+#define GUARDED_HEAP_TRACING_STACK_TRACE 0 /* stack trace depth */
#define IO_CONTEXT_TRACING 0
#define IO_CONTEXT_TRACING_STACK_TRACE 0 /* stack trace depth */
#define KERNEL_HEAP_TRACING 0
@@ -35,6 +37,7 @@
#define NET_BUFFER_TRACING 0
#define NET_BUFFER_TRACING_STACK_TRACE 0 /* stack trace depth */
#define PAGE_ALLOCATION_TRACING 0
+#define PAGE_ALLOCATION_TRACING_STACK_TRACE 0 /* stack trace depth */
#define PAGE_DAEMON_TRACING 0
#define PAGE_STATE_TRACING 0
#define PAGE_STATE_TRACING_STACK_TRACE 0 /* stack trace depth */
@@ -47,7 +50,9 @@
#define SCHEDULING_ANALYSIS_TRACING 0
#define SIGNAL_TRACING 0
#define SLAB_MEMORY_MANAGER_TRACING 0
+#define SLAB_MEMORY_MANAGER_TRACING_STACK_TRACE 0 /* stack trace depth */
#define SLAB_OBJECT_CACHE_TRACING 0
+#define SLAB_OBJECT_CACHE_TRACING_STACK_TRACE 0 /* stack trace depth */
#define SWAP_TRACING 0
#define SYSCALL_TRACING 0
#define SYSCALL_TRACING_IGNORE_KTRACE_OUTPUT 1
diff --git a/build/jam/BuildSetup b/build/jam/BuildSetup
index 0a97eb6c67..08bd75cd1c 100644
--- a/build/jam/BuildSetup
+++ b/build/jam/BuildSetup
@@ -136,13 +136,10 @@ if $(HAIKU_USE_GCC_PIPE) = 1 {
if $(HAIKU_GCC_VERSION[1]) >= 3 {
HAIKU_GCC_BASE_FLAGS += -fno-strict-aliasing -fno-tree-vrp ;
}
-# TODO: With Haiku as the host platform, this does not appear to be set up
-# correctly, at least when compiling the libbe_test target platform. When
-# enabling the lines below, these flags suddenly appear as link flags passed
-# to ld as well.
-#if $(HOST_GCC_VERSION[1]) >= 3 {
-# HOST_GCC_BASE_FLAGS += -fno-strict-aliasing -fno-tree-vrp ;
-#}
+
+if $(HOST_GCC_VERSION[1]) >= 3 {
+ HOST_GCC_BASE_FLAGS += -fno-strict-aliasing -fno-tree-vrp ;
+}
# override gcc 2.95.3's header directory -- strictly necessary only when using
# the BeOS native compiler (since its headers are incompatible), but it doesn't
@@ -164,10 +161,10 @@ HAIKU_LINK = $(HAIKU_CC) ;
HAIKU_LINKFLAGS = $(HAIKU_GCC_BASE_FLAGS) ;
HAIKU_HDRS = [ FStandardHeaders ] ;
-HAIKU_CCFLAGS = $(HAIKU_GCC_BASE_FLAGS) -nostdinc ;
-HAIKU_C++FLAGS = $(HAIKU_GCC_BASE_FLAGS) -nostdinc ;
-HAIKU_KERNEL_CCFLAGS = $(HAIKU_GCC_BASE_FLAGS) ;
-HAIKU_KERNEL_C++FLAGS = $(HAIKU_GCC_BASE_FLAGS) ;
+HAIKU_KERNEL_CCFLAGS = $(HAIKU_CCFLAGS) $(HAIKU_GCC_BASE_FLAGS) ;
+HAIKU_KERNEL_C++FLAGS = $(HAIKU_C++FLAGS) $(HAIKU_GCC_BASE_FLAGS) ;
+HAIKU_CCFLAGS += $(HAIKU_GCC_BASE_FLAGS) -nostdinc ;
+HAIKU_C++FLAGS += $(HAIKU_GCC_BASE_FLAGS) -nostdinc ;
HAIKU_DEFINES = __HAIKU__ ;
HAIKU_NO_WERROR ?= 0 ;
@@ -220,7 +217,7 @@ switch $(HAIKU_CPU) {
case ppc :
{
HAIKU_DEFINES += __POWERPC__ ;
- HAIKU_BOOT_PLATFORM = openfirmware ;
+ HAIKU_BOOT_PLATFORM ?= openfirmware ;
HAIKU_BOOT_FLOPPY_IMAGE_SIZE = 1440 ; # in kB
# offset in floppy image (>= sizeof(haiku_loader))
HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 192 ; # in kB - unused yet
@@ -279,7 +276,7 @@ switch $(HAIKU_CPU) {
}
}
# offset in floppy image (>= sizeof(haiku_loader))
- HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 300 ; # in kB
+ HAIKU_BOOT_ARCHIVE_IMAGE_OFFSET = 260 ; # in kB
HAIKU_NO_WERROR = 1 ;
# we use #warning as placeholders for things to write...
}
@@ -545,14 +542,27 @@ HAIKU_BUILD_DESCRIPTION ?= "Unknown Build" ;
# analyze the host gcc machine spec to find out about 64-bitness
HOST_PLATFORM_IS_64_BIT = ;
+switch $(HOST_GCC_MACHINE) {
+ case amd64-* : HOST_PLATFORM_IS_64_BIT = 1 ;
+ case i686-apple-darwin10 : HOST_PLATFORM_IS_64_BIT = 1 ;
+ case i686-apple-darwin11 : HOST_PLATFORM_IS_64_BIT = 1 ;
+ case x86_64-* : HOST_PLATFORM_IS_64_BIT = 1 ;
+}
+
+# If HAIKU_HOST_USE_32BIT is set, add the required gcc base flag (the LD flag
+# is set later), or, if the architecture isn't actually 64 bit, clear
+# HAIKU_HOST_USE_32BIT.
+# Afterwards HOST_PLATFORM_IS_64_BIT will indicate whether the architecture is
+# effectively (i.e. when using the compiler/linker flags) 64 bit and
+# HAIKU_HOST_USE_32BIT will be set, iff the architecture is really 64 bit and
+# 32 bit mode was requested.
if $(HAIKU_HOST_USE_32BIT) = 1 {
- # enable GCC -m32 option
- HOST_GCC_BASE_FLAGS = -m32 ;
-} else {
- switch $(HOST_GCC_MACHINE) {
- case amd64-* : HOST_PLATFORM_IS_64_BIT = 1 ;
- case i686-apple-darwin10 : HOST_PLATFORM_IS_64_BIT = 1 ;
- case x86_64-* : HOST_PLATFORM_IS_64_BIT = 1 ;
+ if $(HOST_PLATFORM_IS_64_BIT) {
+ # enable GCC -m32 option
+ HOST_GCC_BASE_FLAGS = -m32 ;
+ HOST_PLATFORM_IS_64_BIT = ;
+ } else {
+ HAIKU_HOST_USE_32BIT = 0 ;
}
}
@@ -566,7 +576,7 @@ HOST_RANLIB ?= $(RANLIB) ;
HOST_CPPFLAGS ?= $(CPPFLAGS) ;
HOST_CCFLAGS ?= $(HOST_GCC_BASE_FLAGS) $(CCFLAGS) ;
HOST_C++FLAGS ?= $(HOST_GCC_BASE_FLAGS) $(C++FLAGS) ;
-HOST_LDFLAGS ?= $(HOST_GCC_BASE_FLAGS) $(LDFLAGS) ;
+HOST_LDFLAGS ?= $(LDFLAGS) ;
HOST_LINKFLAGS ?= $(HOST_GCC_BASE_FLAGS) $(LINKFLAGS) ;
HOST_DEFINES ?= $(DEFINES) ;
HOST_HDRS ?= $(HDRS) ;
@@ -599,6 +609,11 @@ if $(HOST_PLATFORM) = cygwin {
HOST_CPU ?= $(OSPLAT:L) ;
+# Jam doesn't know x86_64, so override HOST_CPU, if 64 bit.
+if $(HOST_CPU) = x86 && $(HOST_PLATFORM_IS_64_BIT) {
+ HOST_CPU = x86_64 ;
+}
+
HOST_ARCH ?= $(HOST_CPU) ;
HOST_ARCH_MACRO_DEFINE = ARCH_$(HOST_CPU) ;
@@ -657,6 +672,12 @@ if $(HOST_ARCH) = m68k {
HOST_KERNEL_PIC_LINKFLAGS = $(HAIKU_KERNEL_PIC_LINKFLAGS) ;
}
+if $(HOST_PLATFORM) != darwin {
+ # fix for new changes to DSO linking policies
+ HOST_LINKFLAGS += -Xlinker --no-as-needed ;
+}
+
+
# warning flags
HOST_WARNING_CCFLAGS = -Wall -Wno-trigraphs -Wmissing-prototypes -Wpointer-arith
-Wcast-align -Wsign-compare ;
@@ -693,7 +714,7 @@ for level in $(HAIKU_DEBUG_LEVELS[2-]) {
}
# ld flags
-if $(HOST_ARCH) = x86 && $(HAIKU_HOST_USE_32BIT) = 1 {
+if $(HAIKU_HOST_USE_32BIT) = 1 {
HOST_LDFLAGS += -melf_i386 ;
}
@@ -751,9 +772,10 @@ if $(HOST_PLATFORM_BEOS_COMPATIBLE) {
# compatibility library
HOST_HAIKU_COMPATIBILITY_LIBS = libhaikucompat.a ;
} else {
+ HOST_LINKFLAGS += -lm ;
HOST_LIBSTDC++ = stdc++ ;
- HOST_LIBROOT = libroot_build.so ;
- HOST_STATIC_LIBROOT = libroot_build.a ;
+ HOST_LIBROOT = libroot_build_function_remapper.a libroot_build.so ;
+ HOST_STATIC_LIBROOT = libroot_build_function_remapper.a libroot_build.a ;
HOST_LIBBE = libbe_build.so ;
if $(HOST_PLATFORM) = cygwin {
HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR
@@ -778,7 +800,7 @@ if $(HOST_PLATFORM_BEOS_COMPATIBLE) {
HOST_LIBSUPC++ = gcc_s.1 stdc++ ;
HOST_LIBSTDC++ = ;
} else if $(HOST_PLATFORM) = freebsd {
- if $(HOST_CPU) = x86 && $(HOST_PLATFORM_IS_64_BIT) = 1 {
+ if $(HOST_CPU) = x86_64 {
# amd64 FreeBSD 8 doesn't come without a shared libsupc++, and the
# static one prevents us from building shared libraries. So we have
# to work around by using the shared libstdc++.
@@ -800,6 +822,8 @@ if $(HOST_PLATFORM_BEOS_COMPATIBLE) {
# build platform we need to make sure, this is also defined.
if $(HOST_CPU) = x86 {
HOST_DEFINES += __INTEL__ ;
+ } else if $(HOST_CPU) = x86_64 {
+ HOST_DEFINES += __x86_64__ ;
} else if $(HOST_CPU) = ppc {
HOST_DEFINES += __POWERPC__ ;
} else if $(HOST_CPU) = m68k {
@@ -1339,6 +1363,9 @@ if $(HAIKU_NO_WERROR) != 1 {
EnableWerror src preferences ;
EnableWerror src servers ;
EnableWerror src system kernel ;
+ EnableWerror src system libroot add-ons ;
+ EnableWerror src system libroot posix locale ;
+ EnableWerror src system libroot posix wchar ;
EnableWerror src system runtime_loader ;
}
diff --git a/build/jam/HaikuImage b/build/jam/HaikuImage
index 295cb019e9..fa035f1ace 100644
--- a/build/jam/HaikuImage
+++ b/build/jam/HaikuImage
@@ -52,7 +52,7 @@ SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bzip2
query quit
rc readlink ReadOnlyBootPrompt reindex release renice rlog rm rmattr
rmindex rmdir roster route
- safemode screen_blanker screenmode screenshot sdiff setdecor settype
+ safemode screen_blanker screenmode screenshot sdiff setdecor setmime settype
setversion setvolume seq sha1sum shar shred shuf shutdown sleep sort
spamdbm
split stat strace stty su sum sync sysinfo
@@ -69,7 +69,7 @@ SYSTEM_APPS = AboutSystem ActivityMonitor $(X86_ONLY)BootManager CharacterMap
Icon-O-Matic Installer LaunchBox Magnify Mail MediaConverter MediaPlayer
MidiPlayer NetworkStatus PackageInstaller People PoorMan PowerStatus
ProcessController Screenshot ShowImage SoundRecorder StyledEdit Terminal
- TextSearch TV Workspaces
+ TextSearch TV WebWatch Workspaces
;
SYSTEM_PREFERENCES = Appearance Backgrounds CPUFrequency DataTranslations
Deskbar E-mail FileTypes Fonts Keyboard Keymap Locale Media
@@ -104,7 +104,7 @@ PRIVATE_SYSTEM_LIBS =
;
SYSTEM_SERVERS = app_server cddb_daemon debug_server input_server mail_daemon
media_addon_server media_server midi_server mount_server net_server
- notification_server print_server print_addon_server registrar syslog_daemon
+ notification_server power_daemon print_server print_addon_server registrar syslog_daemon
;
SYSTEM_NETWORK_DEVICES = ethernet loopback ;
@@ -183,10 +183,10 @@ SYSTEM_ADD_ONS_DRIVERS_NET = $(X86_ONLY)3com $(X86_ONLY)atheros813x
$(X86_ONLY)iprowifi4965 $(X86_ONLY)marvell88w8363 $(X86_ONLY)marvell88w8335
$(X86_ONLY)ralink2860 $(X86_ONLY)ralinkwifi $(X86_ONLY)wavelanwifi
- # WiMAX drivers
- $(GPL_ONLY)usb_beceemwmx
+ # WWAN drivers
+ #$(GPL_ONLY)usb_beceemwmx
;
-#SYSTEM_ADD_ONS_DRIVERS_POWER = $(X86_ONLY)acpi_button ;
+SYSTEM_ADD_ONS_DRIVERS_POWER = $(X86_ONLY)acpi_button ;
SYSTEM_ADD_ONS_BUS_MANAGERS = $(ATA_ONLY)ata pci $(X86_ONLY)ps2 $(X86_ONLY)isa
$(IDE_ONLY)ide scsi config_manager agp_gart usb firewire $(X86_ONLY)acpi
;
@@ -234,7 +234,7 @@ AddFilesToHaikuImage system add-ons kernel busses usb
: uhci ohci ehci ;
AddFilesToHaikuImage system add-ons kernel console : vga_text ;
AddFilesToHaikuImage system add-ons kernel debugger
- : demangle $(X86_ONLY)disasm
+ : demangle $(X86_ONLY)disasm hangman
invalidate_on_exit usb_keyboard run_on_exit ;
AddFilesToHaikuImage system add-ons kernel file_systems
: $(SYSTEM_ADD_ONS_FILE_SYSTEMS) ;
@@ -273,7 +273,7 @@ AddDriversToHaikuImage input : ps2_hid usb_hid wacom ;
AddDriversToHaikuImage misc : poke mem ;
AddDriversToHaikuImage net : $(SYSTEM_ADD_ONS_DRIVERS_NET) ;
AddDriversToHaikuImage ports : usb_serial ;
-#AddDriversToHaikuImage power : $(SYSTEM_ADD_ONS_DRIVERS_POWER) ;
+AddDriversToHaikuImage power : $(SYSTEM_ADD_ONS_DRIVERS_POWER) ;
# kernel
AddFilesToHaikuImage system : kernel_$(TARGET_ARCH) ;
@@ -360,8 +360,9 @@ AddDirectoryToHaikuImage home mail draft ;
AddDirectoryToHaikuImage home mail in ;
AddDirectoryToHaikuImage home mail out ;
+AddSymlinkToHaikuImage home config : settings/deskbar : be ;
# Deskbar Application links
-AddDirectoryToHaikuImage home config be Applications ;
+AddDirectoryToHaikuImage home config settings deskbar Applications ;
DESKBAR_APPLICATIONS = ActivityMonitor CharacterMap CodyCam CDPlayer DeskCalc
Devices DiskProbe DriveSetup DiskUsage Expander Icon-O-Matic Installer
Magnify Mail MediaConverter MediaPlayer MidiPlayer People PoorMan
@@ -369,32 +370,33 @@ DESKBAR_APPLICATIONS = ActivityMonitor CharacterMap CodyCam CDPlayer DeskCalc
;
local linkTarget ;
for linkTarget in $(DESKBAR_APPLICATIONS) {
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/system/apps/$(linkTarget) : $(linkTarget) ;
}
# Deskbar Desktop applets links
-AddDirectoryToHaikuImage home config be Desktop\ applets ;
+AddDirectoryToHaikuImage home config settings deskbar Desktop\ applets ;
DESKBAR_DESKTOP_APPLETS = LaunchBox NetworkStatus PowerStatus ProcessController
Workspaces
;
for linkTarget in $(DESKBAR_DESKTOP_APPLETS) {
- AddSymlinkToHaikuImage home config be Desktop\ applets
+ AddSymlinkToHaikuImage home config settings deskbar Desktop\ applets
: /boot/system/apps/$(linkTarget) : $(linkTarget) ;
}
# Deskbar Preferences links
-AddDirectoryToHaikuImage home config be Preferences ;
+AddDirectoryToHaikuImage home config settings deskbar Preferences ;
DESKBAR_PREFERENCES = $(SYSTEM_PREFERENCES:B) ;
for linkTarget in $(DESKBAR_PREFERENCES) {
- AddSymlinkToHaikuImage home config be Preferences
- : /boot/system/preferences/$(linkTarget) : $(linkTarget) ;
+ AddSymlinkToHaikuImage home config settings deskbar Preferences
+ : /boot/system/preferences/$(linkTarget)
+ : $(linkTarget) ;
}
# Deskbar Demo links
-AddDirectoryToHaikuImage home config be Demos ;
+AddDirectoryToHaikuImage home config settings deskbar Demos ;
for linkTarget in $(SYSTEM_DEMOS) {
- AddSymlinkToHaikuImage home config be Demos
+ AddSymlinkToHaikuImage home config settings deskbar Demos
: /boot/system/demos/$(linkTarget) : $(linkTarget) ;
}
@@ -464,11 +466,6 @@ AddFilesToHaikuImage common etc profile.d : $(profileFiles) ;
#AddFilesToHaikuImage common etc bash_completion.d helpers
# : $(bashCompletionHelperFiles) ;
-local dataFiles = teapot.data ;
-dataFiles = $(dataFiles:G=data) ;
-SEARCH on $(dataFiles) = [ FDirName $(HAIKU_TOP) data system data ] ;
-AddFilesToHaikuImage system data : $(dataFiles) ;
-
local fortuneFiles = [ Glob $(HAIKU_TOP)/data/system/data/fortunes
: [a-zA-Z0-9]* ] ;
fortuneFiles = $(fortuneFiles:G=data!fortunes) ;
@@ -499,10 +496,54 @@ AddSymlinkToHaikuImage system data Keymaps : Swedish : Finnish ;
AddSymlinkToHaikuImage system data Keymaps : Slovene : Croatian ;
AddSymlinkToHaikuImage system data Keymaps : US-International : Brazilian ;
+# Copy keyboard layout files to the image one-by-one.
local keyboardLayoutsDir
= [ FDirName $(HAIKU_TOP) data system data KeyboardLayouts ] ;
-local keyboardLayouts = [ Glob $(keyboardLayoutsDir) : [^.]* ] ;
-AddFilesToHaikuImage system data KeyboardLayouts : $(keyboardLayouts) ;
+local keyboardLayoutFiles =
+ "Generic 104-key"
+ "Generic 105-key International"
+ "Kinesis Advantage"
+ "Kinesis Ergo Elan International"
+ "TypeMatrix 2030" ;
+keyboardLayoutFiles = $(keyboardLayoutFiles:G=keyboard-layout) ;
+SEARCH on $(keyboardLayoutFiles) = $(keyboardLayoutsDir) ;
+AddFilesToHaikuImage system data KeyboardLayouts
+ : $(keyboardLayoutFiles) ;
+
+# Add Apple Aluminum keyboard layout files to the image in an Apple Aluminum
+# subdirectory. The subdirectory is turned into a submenu in the Layout menu
+# of the Keymap preference app.
+local appleAluminumDir
+ = [ FDirName $(HAIKU_TOP) data system data KeyboardLayouts
+ Apple\ Aluminum ] ;
+local appleAluminumFiles =
+ "Apple Aluminium Extended International"
+ "Apple Aluminium International"
+ "Apple Aluminum (US)"
+ "Apple Aluminum Extended (US)" ;
+appleAluminumFiles = $(appleAluminumFiles:G=keyboard-layout) ;
+SEARCH on $(appleAluminumFiles) = $(appleAluminumDir) ;
+AddFilesToHaikuImage system data KeyboardLayouts Apple\ Aluminum
+ : $(appleAluminumFiles) ;
+
+# Add ThinkPad keyboard layout files to the image in a ThinkPad
+# subdirectory. The subdirectory is turned into a submenu in the Layout menu
+# of the Keymap preference app.
+local thinkpadDir
+ = [ FDirName $(HAIKU_TOP) data system data KeyboardLayouts ThinkPad ] ;
+local thinkPadFiles =
+ "ThinkPad (US)"
+ "ThinkPad International"
+ "ThinkPad T400s (US)"
+ "ThinkPad T400s International"
+ "ThinkPad X1 (US)"
+ "ThinkPad X1 International"
+ "ThinkPad X100e (US)"
+ "ThinkPad X100e International" ;
+thinkPadFiles = $(thinkPadFiles:G=keyboard-layout) ;
+SEARCH on $(thinkPadFiles) = $(thinkpadDir) ;
+AddFilesToHaikuImage system data KeyboardLayouts ThinkPad
+ : $(thinkPadFiles) ;
local driverSettingsFiles = kernel ;
SEARCH on $(driverSettingsFiles)
diff --git a/build/jam/ImageRules b/build/jam/ImageRules
index 0954a6cff3..48ebb82b6e 100644
--- a/build/jam/ImageRules
+++ b/build/jam/ImageRules
@@ -672,6 +672,8 @@ rule AddSymlinkToHaikuImage directoryTokens : linkTarget : linkName
{
# AddSymlinkToHaikuImage : [ : ] ;
+ linkTarget = $(linkTarget:J=/) ;
+
AddSymlinkToContainer $(HAIKU_IMAGE_CONTAINER_NAME) : $(directoryTokens)
: $(linkTarget) : $(linkName) ;
}
@@ -917,7 +919,8 @@ rule AddExpanderRuleToHaikuImage mimetype : extension : list : extract
Exit "Invalid expander rule specification passed to AddExpanderRule." ;
}
- local entry = "\\\"$(mimetype)\\\"\\\t$(extension)\\\t\\\"$(list)\\\"\\\t\\\"$(extract)\\\"" ;
+ local entry
+ = "\\\"$(mimetype)\\\"\\\t$(extension)\\\t\\\"$(list)\\\"\\\t\\\"$(extract)\\\"" ;
AddEntryToHaikuImageExpanderRuleFile expander.rules
: $(entry) ;
}
diff --git a/build/jam/KernelRules b/build/jam/KernelRules
index f0dba32319..25b2260bf1 100644
--- a/build/jam/KernelRules
+++ b/build/jam/KernelRules
@@ -44,8 +44,13 @@ rule KernelLd
LINKFLAGS on $(1) = $(4) ;
if $(3) { LINKFLAGS on $(1) += --script=$(3) ; }
- # Remove any preset LINKLIBS, but link against libgcc.a
- LINKLIBS on $(1) = $(TARGET_STATIC_LIBSUPC++) $(TARGET_GCC_LIBGCC) ;
+ # Remove any preset LINKLIBS, but link against libgcc.a. Linking against
+ # libsupc++ is opt-out.
+ local libs ;
+ if ! [ on $(1) return HAIKU_NO_LIBSUPC++ ] {
+ libs += $(TARGET_STATIC_LIBSUPC++) ;
+ }
+ LINKLIBS on $(1) = $(libs) $(TARGET_GCC_LIBGCC) ;
# TODO: Do we really want to invoke SetupKernel here? The objects should
# have been compiled with KernelObjects anyway, so we're doing that twice.
diff --git a/build/jam/MainBuildRules b/build/jam/MainBuildRules
index 69d6597d3d..4284ae7720 100644
--- a/build/jam/MainBuildRules
+++ b/build/jam/MainBuildRules
@@ -724,3 +724,12 @@ rule BuildPlatformStaticLibrary lib : sources : otherObjects
StaticLibrary $(lib) : $(sources) : $(otherObjects) ;
}
+rule BuildPlatformStaticLibraryPIC target : sources : otherObjects
+{
+ # Like BuildPlatformStaticLibrary, but producing position independent code.
+
+ ObjectCcFlags $(sources) : $(HOST_PIC_CCFLAGS) ;
+ ObjectC++Flags $(sources) : $(HOST_PIC_C++FLAGS) ;
+
+ BuildPlatformStaticLibrary $(target) : $(sources) : $(otherObjects) ;
+}
diff --git a/build/jam/OptionalBuildFeatures b/build/jam/OptionalBuildFeatures
index 00d38406ab..1bd5eba98f 100644
--- a/build/jam/OptionalBuildFeatures
+++ b/build/jam/OptionalBuildFeatures
@@ -56,8 +56,8 @@ if $(HAIKU_BUILD_FEATURE_SSL) {
# ICU
# Note ICU isn't actually optional, but is still an external package
-HAIKU_ICU_GCC_2_PACKAGE = icu-4.8.1-x86-gcc2-2011-08-20.zip ;
-HAIKU_ICU_GCC_4_PACKAGE = icu-4.8.1-x86-gcc4-2011-08-20.zip ;
+HAIKU_ICU_GCC_2_PACKAGE = icu-4.8.1-x86-gcc2-2011-11-02a.zip ;
+HAIKU_ICU_GCC_4_PACKAGE = icu-4.8.1-x86-gcc4-2011-11-02.zip ;
HAIKU_ICU_PPC_PACKAGE = icu-4.8.1-ppc-2011-08-20.zip ;
HAIKU_ICU_DEVEL_PACKAGE = icu-devel-4.8.1-2011-08-26.zip ;
@@ -79,18 +79,33 @@ if $(TARGET_ARCH) = ppc || $(TARGET_ARCH) = x86 {
$(icu_package:B) ] ;
# extract libraries
- HAIKU_ICU_LIBS = [ ExtractArchive $(HAIKU_ICU_DIR)
- :
- libicudata.so.48.1
- libicui18n.so.48.1
- libicuio.so.48.1
- libicule.so.48.1
- libiculx.so.48.1
- libicutu.so.48.1
- libicuuc.so.48.1
- : $(zipFile)
- : extracted-icu
- ] ;
+ if $(TARGET_ARCH) = ppc {
+ HAIKU_ICU_LIBS = [ ExtractArchive $(HAIKU_ICU_DIR)
+ :
+ libicudata.so.48.1
+ libicui18n.so.48.1
+ libicuio.so.48.1
+ libicule.so.48.1
+ libiculx.so.48.1
+ libicutu.so.48.1
+ libicuuc.so.48.1
+ : $(zipFile)
+ : extracted-icu
+ ] ;
+ } else {
+ HAIKU_ICU_LIBS = [ ExtractArchive $(HAIKU_ICU_DIR)
+ :
+ libicudata.so.48.1.1
+ libicui18n.so.48.1.1
+ libicuio.so.48.1.1
+ libicule.so.48.1.1
+ libiculx.so.48.1.1
+ libicutu.so.48.1.1
+ libicuuc.so.48.1.1
+ : $(zipFile)
+ : extracted-icu
+ ] ;
+ }
} else {
Echo "ICU not available for $(TARGET_ARCH)" ;
}
diff --git a/build/jam/OptionalPackages b/build/jam/OptionalPackages
index 60ddfb5518..f120cfb2a9 100644
--- a/build/jam/OptionalPackages
+++ b/build/jam/OptionalPackages
@@ -156,7 +156,7 @@ if [ IsOptionalHaikuImagePackageAdded ArmyKnife ] {
InstallOptionalHaikuImagePackage
armyknife-63-r1a3-x86-gcc2-2011-06-04.zip
: $(baseURL)/armyknife-63-r1a3-x86-gcc2-2011-06-04.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/ArmyKnife/ArmyKnife ;
}
}
@@ -190,7 +190,7 @@ if [ IsOptionalHaikuImagePackageAdded BeAE ] {
beae-22-r1a3-x86-gcc2-2011-05-18.zip
: $(baseURL)/beae-22-r1a3-x86-gcc2-2011-05-18.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/BeAE/BeAE ;
}
}
@@ -205,7 +205,7 @@ if [ IsOptionalHaikuImagePackageAdded Beam ] {
} else {
InstallOptionalHaikuImagePackage Beam-1.2alpha-x86-gcc2-2010-04-29.zip
: $(baseURL)/Beam-1.2alpha-x86-gcc2-2010-04-29.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/Beam/Beam ;
}
}
@@ -264,7 +264,7 @@ if [ IsOptionalHaikuImagePackageAdded BePDF ] {
InstallOptionalHaikuImagePackage
bepdf-1.1.1b4-r1a3-x86-gcc2-2011-05-30.zip
: $(baseURL)/bepdf-1.1.1b4-r1a3-x86-gcc2-2011-05-30.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/BePDF/BePDF ;
}
}
@@ -284,7 +284,7 @@ if [ IsOptionalHaikuImagePackageAdded BeZillaBrowser ] {
BeZillaBrowser-2.0.0.22pre-r1a2-x86-gcc2-2010-05-02.zip
: $(baseURL)/BeZillaBrowser-2.0.0.22pre-r1a2-x86-gcc2-2010-05-02.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/BeZillaBrowser/BeZillaBrowser ;
InstallSourceArchive BeZillaBrowser-2.0.0.22pre-r1a2-sources.tar.xz
: $(baseSourceURL)/2010/BeZillaBrowser-2.0.0.22pre-r1a2-sources.tar.xz ;
@@ -302,7 +302,7 @@ if [ IsOptionalHaikuImagePackageAdded Bluetooth ] {
AddFilesToHaikuImage system add-ons kernel bluetooth : btCoreData hci ;
AddFilesToHaikuImage system preferences : Bluetooth ;
AddFilesToHaikuImage system bin : bt_dev_info bt_discovery ;
- AddSymlinkToHaikuImage home config be Preferences
+ AddSymlinkToHaikuImage home config settings deskbar Preferences
: /boot/system/preferences/Bluetooth ;
if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ]
&& $(HAIKU_GCC_VERSION[1]) in 2 4 {
@@ -328,7 +328,7 @@ if [ IsOptionalHaikuImagePackageAdded BurnItNow ] {
burnitnow-39-r1a3-x86-gcc2-2011-05-18.zip
: $(baseURL)/burnitnow-39-r1a3-x86-gcc2-2011-05-18.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/BurnItNow/BurnItNow ;
}
}
@@ -398,7 +398,7 @@ if [ IsOptionalHaikuImagePackageAdded Clockwerk ] {
Clockwerk-0.0.2-x86-gcc2-2010-10-13-1.zip
: $(baseURL)/Clockwerk-0.0.2-x86-gcc2-2010-10-13-1.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/Clockwerk/Clockwerk ;
}
}
@@ -475,6 +475,9 @@ if [ IsOptionalHaikuImagePackageAdded CVS ] {
# Development
if [ IsOptionalHaikuImagePackageAdded Development ] && $(TARGET_ARCH) = x86 {
+ AddFilesToHaikuImage system apps : Debugger ;
+ AddSymlinkToHaikuImage home config settings deskbar Applications
+ : /boot/system/apps/Debugger : Debugger ;
# autotools
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
@@ -520,21 +523,21 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ]
# gcc and binutils
if $(HAIKU_GCC_VERSION[1]) = 2 || $(isHybridBuild) {
InstallOptionalHaikuImagePackage
- gcc-2.95.3-r1a3-x86-gcc2-2010-08-18.zip
- : $(baseURL)/gcc-2.95.3-r1a3-x86-gcc2-2010-08-18.zip ;
+ gcc-2.95.3-x86-gcc2-2011-11-22.zip
+ : $(baseURL)/gcc-2.95.3-x86-gcc2-2011-11-22.zip ;
}
if $(HAIKU_GCC_VERSION[1]) = 2 {
# symlink to the appropriate system/lib[/gcc2] folder
AddSymlinkToHaikuHybridImage
- develop abi x86 gcc2 tools gcc-2.95.3-haiku-100818 lib
+ develop abi x86 gcc2 tools gcc-2.95.3-haiku-111122 lib
: /system/lib libstdc++.r4.so : : true ;
}
if $(HAIKU_GCC_VERSION[1]) = 4 || $(isHybridBuild) {
InstallOptionalHaikuImagePackage
- gcc-4.5.3-r1a3-x86-gcc4-2011-06-20.zip
- : $(baseURL)/gcc-4.5.3-r1a3-x86-gcc4-2011-06-20.zip ;
+ gcc-4.5.3-x86-gcc4-2011-12-14.zip
+ : $(baseURL)/gcc-4.5.3-x86-gcc4-2011-12-14.zip ;
}
if $(HAIKU_GCC_VERSION[1]) = 4 {
@@ -546,7 +549,7 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentBase ]
local libs = libstdc++.so libsupc++.so ;
for lib in $(libs) {
AddSymlinkToHaikuHybridImage
- develop abi x86 gcc4 tools gcc-4.5.3-haiku-110620 lib
+ develop abi x86 gcc4 tools gcc-4.5.3-haiku-111214 lib
: /system/lib $(lib) : : true ;
}
}
@@ -724,6 +727,22 @@ if [ IsOptionalHaikuImagePackageAdded DevelopmentMin ] && $(TARGET_ARCH) = x86 {
}
+# DMIDecode
+if [ IsOptionalHaikuImagePackageAdded DMIDecode ] {
+ if $(TARGET_ARCH) != x86 {
+ Echo "No optional package DMIDecode available for $(TARGET_ARCH)" ;
+ } else if $(HAIKU_GCC_VERSION[1]) >= 4 {
+ InstallOptionalHaikuImagePackage
+ dmidecode-2.11-x86-gcc4-2011-11-02.zip
+ : http://revolf.free.fr/beos/dmidecode-2.11-x86-gcc4-2011-11-02.zip ;
+ } else {
+ InstallOptionalHaikuImagePackage
+ dmidecode-2.11-x86-gcc2-2011-11-02.zip
+ : http://revolf.free.fr/beos/dmidecode-2.11-x86-gcc2-2011-11-02.zip ;
+ }
+}
+
+
# Doxygen
if [ IsOptionalHaikuImagePackageAdded Doxygen ] {
if $(TARGET_ARCH) != x86 {
@@ -794,7 +813,7 @@ if [ IsOptionalHaikuImagePackageAdded friss ] {
friss-24-r1a3-x86-gcc2-2011-05-31.zip
: $(baseURL)/friss-24-r1a3-x86-gcc2-2011-05-31.zip ;
}
-# AddSymlinkToHaikuImage home config be Desktop\ applets
+# AddSymlinkToHaikuImage home config settings deskbar Desktop\ applets
# : /boot/apps/FRiSS/FRiSS ;
}
}
@@ -827,13 +846,13 @@ if [ IsOptionalHaikuImagePackageAdded Git ] {
} else {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
- git-1.7.5-r1a3-x86-gcc4-2011-05-24.zip
- : $(baseURL)/git-1.7.5-r1a3-x86-gcc4-2011-05-24.zip
+ git-1.7.7.2-x86-gcc4-2011-11-04.zip
+ : $(baseURL)/git-1.7.7.2-x86-gcc4-2011-11-04.zip
: : true ;
} else {
InstallOptionalHaikuImagePackage
- git-1.7.5-r1a3-x86-gcc2-2011-05-18.zip
- : $(baseURL)/git-1.7.5-r1a3-x86-gcc2-2011-05-18.zip
+ git-1.7.7.2-x86-gcc2-2011-11-04.zip
+ : $(baseURL)/git-1.7.7.2-x86-gcc2-2011-11-04.zip
: : true ;
}
}
@@ -937,14 +956,14 @@ if [ IsOptionalHaikuImagePackageAdded KeymapSwitcher ] {
} else {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
- KeymapSwitcher-1.2.6-r1a3-x86-gcc4-2011-06-12.zip
- : $(baseURL)/KeymapSwitcher-1.2.6-r1a3-x86-gcc4-2011-06-12.zip ;
+ KeymapSwitcher-1.2.6-x86-gcc4-2011-11-07.zip
+ : $(baseURL)/KeymapSwitcher-1.2.6-x86-gcc4-2011-11-07.zip ;
} else {
InstallOptionalHaikuImagePackage
- KeymapSwitcher-1.2.6-r1a3-x86-gcc2-2011-06-12.zip
- : $(baseURL)/KeymapSwitcher-1.2.6-r1a3-x86-gcc2-2011-06-12.zip ;
+ KeymapSwitcher-1.2.6-x86-gcc2-2011-11-07.zip
+ : $(baseURL)/KeymapSwitcher-1.2.6-x86-gcc2-2011-11-07.zip ;
}
- AddSymlinkToHaikuImage home config be Preferences
+ AddSymlinkToHaikuImage home config settings deskbar Preferences
: /boot/common/bin/KeymapSwitcher ;
}
}
@@ -1061,7 +1080,7 @@ if [ IsOptionalHaikuImagePackageAdded Links ] {
} else {
InstallOptionalHaikuImagePackage Links.zip
: $(baseURL)/links-x86-gcc2-2008-05-03.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/home/config/bin/links ;
}
}
@@ -1204,7 +1223,7 @@ if [ IsOptionalHaikuImagePackageAdded NetSurf ] {
InstallOptionalHaikuImagePackage
netsurf-2.7-r1a3-x86-gcc2-2011-06-04.zip
: $(baseURL)/netsurf-2.7-r1a3-x86-gcc2-2011-06-04.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/NetSurf/NetSurf ;
}
}
@@ -1251,12 +1270,12 @@ if [ IsOptionalHaikuImagePackageAdded OpenSSH ] {
if $(HAIKU_GCC_VERSION[1]) >= 4 {
InstallOptionalHaikuImagePackage
- openssh-5.9p1-x86-gcc4-2011-09-08.zip
- : $(baseURL)/openssh-5.9p1-x86-gcc4-2011-09-08.zip ;
+ openssh-5.9p1-x86-gcc4-2011-11-30.zip
+ : $(baseURL)/openssh-5.9p1-x86-gcc4-2011-11-30.zip ;
} else {
InstallOptionalHaikuImagePackage
- openssh-5.9p1-x86-gcc2-2011-09-09.zip
- : $(baseURL)/openssh-5.9p1-x86-gcc2-2011-09-09.zip ;
+ openssh-5.9p1-x86-gcc2-2011-11-30.zip
+ : $(baseURL)/openssh-5.9p1-x86-gcc2-2011-11-30.zip ;
}
AddUserToHaikuImage sshd : 1001 : 100 : /var/empty : /bin/true
@@ -1319,7 +1338,7 @@ if [ IsOptionalHaikuImagePackageAdded Paladin ] {
: $(baseURL)/paladin-1.3-r1a3-x86-gcc2-2011-05-18.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/Paladin/Paladin ;
AddSymlinkToHaikuImage common bin
: /boot/apps/Paladin/Paladin ;
@@ -1359,7 +1378,7 @@ if [ IsOptionalHaikuImagePackageAdded Pe ] {
pe-2.4.3-600-r1a3-x86-gcc2-2011-05-18.zip
: $(baseURL)/pe-2.4.3-600-r1a3-x86-gcc2-2011-05-18.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/Pe/Pe ;
AddSymlinkToHaikuImage common bin
: /boot/apps/Pe/lpe ;
@@ -1634,7 +1653,7 @@ if [ IsOptionalHaikuImagePackageAdded Vim ] {
: $(baseURL)/vim-7.3-r1a3-x86-gcc2-2011-05-26.zip
: : true ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/common/bin/gvim ;
# TODO: move this symlink to the archive
AddSymlinkToHaikuImage common bin : vim : vi ;
@@ -1655,7 +1674,7 @@ if [ IsOptionalHaikuImagePackageAdded Vision ] {
vision-908-r1a3-x86-gcc2-2011-06-07.zip
: $(baseURL)/vision-908-r1a3-x86-gcc2-2011-06-07.zip ;
}
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/Vision/Vision ;
}
}
@@ -1671,7 +1690,7 @@ if [ IsOptionalHaikuImagePackageAdded WebPositive ] {
InstallOptionalHaikuImagePackage
WebPositive-gcc4-x86-r583-2011-08-26.zip
: $(baseURL)/WebPositive-gcc4-x86-r583-2011-08-26.zip ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/WebPositive/WebPositive ;
}
}
@@ -1745,7 +1764,7 @@ if [ IsOptionalHaikuImagePackageAdded WonderBrush ] {
InstallOptionalHaikuImagePackage WonderBrush-2.1.2.zip
: $(baseURL)/WonderBrush-2.1.2-x86-gcc2-2008-11-08.zip
: apps ;
- AddSymlinkToHaikuImage home config be Applications
+ AddSymlinkToHaikuImage home config settings deskbar Applications
: /boot/apps/WonderBrush/WonderBrush ;
}
}
diff --git a/build/scripts/build_cross_tools b/build/scripts/build_cross_tools
index f4f01ade0f..3f773a7383 100755
--- a/build/scripts/build_cross_tools
+++ b/build/scripts/build_cross_tools
@@ -1,6 +1,9 @@
#!/bin/sh
-# parameters
+# Parameters
+# Influential environmental variable:
+# * haikuRequiredLegacyGCCVersion: The required version of the gcc. Will be
+# checked against the version in the buildtools directory.
# get and check the parameters
if [ $# -lt 3 ]; then
@@ -19,21 +22,37 @@ additionalMakeArgs=$*
if [ ! -d $haikuSourceDir ]; then
- echo "No such directory: \"$haikuSourceDir\"" >&2
+ echo "ERROR: No such directory: \"$haikuSourceDir\"" >&2
exit 1
fi
if [ ! -d $buildToolsDir ]; then
- echo "No such directory: \"$buildToolsDir\"" >&2
+ echo "ERROR: No such directory: \"$buildToolsDir\"" >&2
exit 1
fi
-if ! grep "$haikuRequiredLegacyGCCVersion" \
- $buildToolsDir/gcc/gcc/version.c >/dev/null 2>&1 ; then
- echo "*** Mismatching compiler versions between configure script and" >&2
- echo "*** $buildToolsDir/gcc/gcc/version.c" >&2
- echo "*** Did you perhaps update only one of haiku & buildtools?" >&2
- exit 1
+# verify or extract the gcc version
+gccVersionDotC="$buildToolsDir/gcc/gcc/version.c"
+if [ -n "$haikuRequiredLegacyGCCVersion" ]; then
+ # haikuRequiredLegacyGCCVersion has been specified. Check whether the
+ # version of the gcc in the given build tools directory matches.
+ if ! grep "$haikuRequiredLegacyGCCVersion" \
+ "$gccVersionDotC" >/dev/null 2>&1 ; then
+ echo "*** Mismatching compiler versions between configure script and" \
+ >&2
+ echo "*** $gccVersionDotC" >&2
+ echo "*** Did you perhaps update only one of haiku & buildtools?" >&2
+ exit 1
+ fi
+else
+ # haikuRequiredLegacyGCCVersion wasn't specified. Extract the version string
+ # from the gcc's version.c.
+ haikuRequiredLegacyGCCVersion=`grep "2.95.3-haiku-" "$gccVersionDotC" \
+ | sed 's@.*\"\(.*\)\".*@\1@'`
+ if [ -z "$haikuRequiredLegacyGCCVersion" ]; then
+ echo "ERROR: Failed to extract version string from $gccVersionDotC" >&2
+ exit 1
+ fi
fi
@@ -103,6 +122,12 @@ copy_headers $haikuSourceDir/headers/config $tmpIncludeDir/config
copy_headers $haikuSourceDir/headers/os $tmpIncludeDir/os
copy_headers $haikuSourceDir/headers/posix $tmpIncludeDir/posix
+# Touch some files generated by bison, so that bison won't run to update them.
+# Fixes issues with newer bison versions.
+# And while at it, touch gperf target, too (as gperf may not be installed)
+(cd $buildToolsDir/gcc/gcc; touch c-parse.c c-parse.h cexp.c cp/parse.c \
+ cp/parse.h c-gperf.h)
+
# configure gcc
cd $gccObjDir
CFLAGS="-O2 -U_FORTIFY_SOURCE" CXXFLAGS="-O2" $buildToolsDir/gcc/configure \
@@ -136,7 +161,7 @@ make install-gcc-cross || {
# Remove the math.h gcc header. It has been generated by fixincludes
# (unconditional hack: math_huge_val_ifndef) from ours and it is semantically
# equivalent.
-rm $installDir/lib/gcc-lib/i586-pc-haiku/$haikuRequiredLegacyGCCVersion/include/math.h
+rm -f $installDir/lib/gcc-lib/i586-pc-haiku/$haikuRequiredLegacyGCCVersion/include/math.h
# cleanup
diff --git a/build/scripts/build_cross_tools_gcc4 b/build/scripts/build_cross_tools_gcc4
index 9eb0c8257c..fa20f7c601 100755
--- a/build/scripts/build_cross_tools_gcc4
+++ b/build/scripts/build_cross_tools_gcc4
@@ -86,6 +86,12 @@ if [ -z "$gccVersion" ]; then
exit 1
fi
+# touch all info files in order to avoid the dependency on makeinfo
+# (which apparently doesn't work reliably on all the different host
+# configurations and changes files which in turn appear as local changes
+# to the VCS).
+find $binutilsSourceDir -name \*.info -print0 | xargs -0 touch
+find $gccSourceDir -name \*.info -print0 | xargs -0 touch
# create the object and installation directories for the cross compilation tools
installDir=$haikuOutputDir/cross-tools
diff --git a/configure b/configure
index a93bd04b67..1edda47490 100755
--- a/configure
+++ b/configure
@@ -327,7 +327,7 @@ HOST_GCC_OBJCOPY=`gcc -print-prog-name=objcopy`
SFDISK_BINARY=sfdisk
HOST_SFDISK=$SFDISK_BINARY
-haikuRequiredLegacyGCCVersion="2.95.3-haiku-100818"
+haikuRequiredLegacyGCCVersion="2.95.3-haiku-111122"
export haikuRequiredLegacyGCCVersion
# version of legacy gcc required to build haiku
@@ -394,7 +394,7 @@ while [ $# -gt 0 ] ; do
x86) HAIKU_GCC_MACHINE=i586-pc-haiku;;
x86_64) HAIKU_GCC_MACHINE=x86_64-pc-haiku; targetArch=x86_64;;
ppc) HAIKU_GCC_MACHINE=powerpc-apple-haiku; targetArch=ppc;;
- m68k) HAIKU_GCC_MACHINE=m68k-unknown-haiku; targetArch=m86k;;
+ m68k) HAIKU_GCC_MACHINE=m68k-unknown-haiku; targetArch=m68k;;
arm) HAIKU_GCC_MACHINE=arm-unknown-haiku; targetArch=arm;;
mipsel) HAIKU_GCC_MACHINE=mipsel-unknown-haiku; targetArch=mips;;
*) echo "Unsupported target architecture: $2"
@@ -464,30 +464,6 @@ case "${platform}" in
exit 1 ;;
esac
-# check yasm version
-if [ $targetArch = "x86" ]; then
- $HAIKU_YASM --version > /dev/null || {
- echo "The yasm assembler version 0.7.0 or later must be installed."
- echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download"
- exit 1
- }
-
- set -- $($HAIKU_YASM --version | head -n 1)
- versionOK=0
- case $2 in
- 0.[0-6].*) ;;
- *) versionOK=1 ;;
- esac
-versionOK=1
-
- if [ $versionOK = 0 ]; then
- echo "The yasm assembler version 0.7.0 or later must be installed."
- echo "The installed version is $2."
- echo "Download from: http://www.tortall.net/projects/yasm/wiki/Download"
- exit 1
- fi
-fi
-
# check common locations for sfdisk
for sfdiskDir in /sbin /usr/sbin /usr/local/sbin ; do
if [ -e ${sfdiskDir}/${SFDISK_BINARY} ]; then
diff --git a/data/artwork/icons/App_NetSurf_Original b/data/artwork/icons/App_NetSurf_Original
new file mode 100644
index 0000000000..ca81f55ec0
Binary files /dev/null and b/data/artwork/icons/App_NetSurf_Original differ
diff --git a/data/artwork/icons/App_VirtualBox b/data/artwork/icons/App_VirtualBox
new file mode 100644
index 0000000000..edaf954808
Binary files /dev/null and b/data/artwork/icons/App_VirtualBox differ
diff --git a/data/bin/installoptionalpackage b/data/bin/installoptionalpackage
index e2ac6a5262..f2a22dfd6d 100755
--- a/data/bin/installoptionalpackage
+++ b/data/bin/installoptionalpackage
@@ -339,7 +339,7 @@ function ContainsSubstring()
local string="$1"
local substring="$2"
local newString=${string/${substring}/''}
- if [ ${#string} -eq `expr ${#newString} + ${#substring}` ] ; then
+ if [ ${#string} -eq $((${#newString} + ${#substring})) ] ; then
return 0
fi
return 1
@@ -399,10 +399,13 @@ function GetBuildFile()
if ! [ -f ${baseDir}/${buildfile} ] ; then
echo "Fetching ${buildfile} ..."
cd ${baseDir}
- local baseURL=http://dev.haiku-os.org/export/
- local revision=`uname -v | awk '{print $1}' | sed -e 's/r//'`
- local url="${baseURL}${revision}/haiku/trunk/build/jam/${buildfile}"
- wget -q ${url} || ErrorExit "...failed to download $buildfile"
+ local baseURL=http://cgit.haiku-os.org/haiku/plain
+ local revisionTag=`uname -v | awk '{print $1}' | sed -e 's/-.*//'`
+ # the sed invocation above drops potential dirty markers off the
+ # revision tag
+ local url="${baseURL}/build/jam/${buildfile}?id=${revisionTag}"
+ wget -q ${url} -O ${buildfile} \
+ || ErrorExit "...failed to download $buildfile"
fi
}
diff --git a/data/catalogs/add-ons/disk_systems/bfs/be.catkeys b/data/catalogs/add-ons/disk_systems/bfs/be.catkeys
index e98063971d..1f31bd8f89 100644
--- a/data/catalogs/add-ons/disk_systems/bfs/be.catkeys
+++ b/data/catalogs/add-ons/disk_systems/bfs/be.catkeys
@@ -1,8 +1,8 @@
-1 belarusian application/x-vnd.Haiku-BFSAddOn 1074880496
-1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Пераважна для маленькіх файлаў)
+1 belarusian x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Актывізаваць падтрымку запытаў
2048 (Recommended) BFS_Initialize_Parameter 2048 (Рэкамендуецца)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Пераважна для велькіх файлаў)
-Blocksize: BFS_Initialize_Parameter Памер блоку:
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Вы можаце не актывізаваць падтрымку запытаў каб паскорыць некаторыя аперацыі файлавай сістэмы. Але майце на ўвазе, што вы не будзеце мець магчымасці карыстацца на гэтым падзеле пошукавымі запытами.\nТаксама, падзел абавязаны мець падтрымку запытаў актыўнаю, калі ён будзе з´яўляецца загрузачным.
-Enable query support BFS_Initialize_Parameter Актывізаваць падтрымку запытаў
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (Пераважна для маленькіх файлаў)
+Blocksize: BFS_Initialize_Parameter Памер блоку:
Name: BFS_Initialize_Parameter Імя:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/de.catkeys b/data/catalogs/add-ons/disk_systems/bfs/de.catkeys
index c187be24eb..cf822f7535 100644
--- a/data/catalogs/add-ons/disk_systems/bfs/de.catkeys
+++ b/data/catalogs/add-ons/disk_systems/bfs/de.catkeys
@@ -1,8 +1,8 @@
-1 german application/x-vnd.Haiku-BFSAddOn 1074880496
-1024 (Mostly small files) BFS_Initialize_Parameter 1024 (überwiegend kleine Dateien)
+1 german x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Query-Unterstützung aktivieren
2048 (Recommended) BFS_Initialize_Parameter 2048 (empfohlen)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (überwiegend große Dateien)
-Blocksize: BFS_Initialize_Parameter Blockgröße:
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Eine deaktivierte Query-Unterstützung kann gewisse Zugriffe im Dateisystem beschleunigen. Man muss sich dabei allerdings sicher sein, dass man auch zukünftig niemals Queries auf dieser Partition brauchen wird.\nUm Haiku von einer Partition booten zu können, wird die Query-Unterstützung unbedingt benötigt.
-Enable query support BFS_Initialize_Parameter Query-Unterstützung aktivieren
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (überwiegend kleine Dateien)
+Blocksize: BFS_Initialize_Parameter Blockgröße:
Name: BFS_Initialize_Parameter Name:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/hr.catkeys b/data/catalogs/add-ons/disk_systems/bfs/hr.catkeys
new file mode 100644
index 0000000000..0f4c43648c
--- /dev/null
+++ b/data/catalogs/add-ons/disk_systems/bfs/hr.catkeys
@@ -0,0 +1,3 @@
+1 croatian application/x-vnd.Haiku-BFSAddOn 1111350773
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (uglavnom male datoteke
+Name: BFS_Initialize_Parameter Ime:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/lt.catkeys b/data/catalogs/add-ons/disk_systems/bfs/lt.catkeys
new file mode 100644
index 0000000000..551378b5df
--- /dev/null
+++ b/data/catalogs/add-ons/disk_systems/bfs/lt.catkeys
@@ -0,0 +1,8 @@
+1 lithuanian x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Leisti užklausas
+2048 (Recommended) BFS_Initialize_Parameter 2048 (rekomenduojamas)
+8192 (Mostly large files) BFS_Initialize_Parameter 8192 (daugiausia dideli failai)
+Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Uždraudus užklausas, gali paspartėti kai kurios failų sistemos operacijos, tačiau tai turėtų būti daroma tik esant visiškai tikriems, kad užklausų nereikės.\nJeigu į kaupiklį ketinama diegti „Haiku“ ir iš jo šią sistemą leisti, užklausos turi būti leidžiamos.
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (daugiausia maži failai)
+Blocksize: BFS_Initialize_Parameter Blokinio dydis:
+Name: BFS_Initialize_Parameter Pavadinimas:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/nl.catkeys b/data/catalogs/add-ons/disk_systems/bfs/nl.catkeys
new file mode 100644
index 0000000000..eb9336a163
--- /dev/null
+++ b/data/catalogs/add-ons/disk_systems/bfs/nl.catkeys
@@ -0,0 +1,8 @@
+1 dutch; flemish x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Activeer query-ondersteuning
+2048 (Recommended) BFS_Initialize_Parameter 2048 (Aanbevolen)
+8192 (Mostly large files) BFS_Initialize_Parameter 8192 (Vooral grote bestanden)
+Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Het uitschakelen van query's ondersteuning kan bepaald de werking van het systeem versnellen, maar moet alleen worden gebruikt als een absoluut zeker is dat men queries niet nodig zal hebben.\n Elk volume dat bedoeld is voor het opstarten van Haiku moet query ondersteuning geactiveerd hebben.
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (vooral kleine bestanden)
+Blocksize: BFS_Initialize_Parameter Blokgrootte:
+Name: BFS_Initialize_Parameter Naam:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/ru.catkeys b/data/catalogs/add-ons/disk_systems/bfs/ru.catkeys
index 8166cec3f7..05b9d0134d 100644
--- a/data/catalogs/add-ons/disk_systems/bfs/ru.catkeys
+++ b/data/catalogs/add-ons/disk_systems/bfs/ru.catkeys
@@ -1,8 +1,8 @@
-1 russian application/x-vnd.Haiku-BFSAddOn 1074880496
-1024 (Mostly small files) BFS_Initialize_Parameter 1024 (подходит для маленьких файлов)
+1 russian x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Включить поддержку запросов
2048 (Recommended) BFS_Initialize_Parameter 2048 (рекомендуемый)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (подходит для больших файлов)
-Blocksize: BFS_Initialize_Parameter Размер блока:
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Отключение поддержки запросов может ускорить определенные операции файловой системы.\nНо ее следует отключать только если вы уверены, что запросы на этом разделе вам не понадобятся.\nДля загрузочных разделов поддержка запросов обязательна.
-Enable query support BFS_Initialize_Parameter Включить поддержку запросов
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (подходит для маленьких файлов)
+Blocksize: BFS_Initialize_Parameter Размер блока:
Name: BFS_Initialize_Parameter Имя раздела:
diff --git a/data/catalogs/add-ons/disk_systems/bfs/sk.catkeys b/data/catalogs/add-ons/disk_systems/bfs/sk.catkeys
index 8d3e6902f9..db1d467c2c 100644
--- a/data/catalogs/add-ons/disk_systems/bfs/sk.catkeys
+++ b/data/catalogs/add-ons/disk_systems/bfs/sk.catkeys
@@ -1,8 +1,8 @@
-1 slovak application/x-vnd.Haiku-BFSAddOn 1074880496
-1024 (Mostly small files) BFS_Initialize_Parameter 1024 (prevažne malé súbory)
+1 slovak x-vnd.Haiku-BFSAddOn 1074880496
+Enable query support BFS_Initialize_Parameter Zapnúť podporu požiadaviek
2048 (Recommended) BFS_Initialize_Parameter 2048 (odporúčané)
8192 (Mostly large files) BFS_Initialize_Parameter 8192 (prevažne veľké súbory)
-Blocksize: BFS_Initialize_Parameter Veľkosť bloku:
Disabling query support may speed up certain file system operations, but should only be used if one is absolutely certain that one will not need queries.\nAny volume that is intended for booting Haiku must have query support enabled. BFS_Initialize_Parameter Vypnutie podpory požiadaviek môže urýchliť niektoré operácie so súborovým systémom, ale mali by ste ho používať iba vtedy, keď ste si absolútne istý, že nebudete potrebovať požiadavky.\nVšetky zväzky, z ktorých sa má spúšťať Haiku musia mať požiadavky zapnuté.
-Enable query support BFS_Initialize_Parameter Zapnúť podporu požiadaviek
+1024 (Mostly small files) BFS_Initialize_Parameter 1024 (prevažne malé súbory)
+Blocksize: BFS_Initialize_Parameter Veľkosť bloku:
Name: BFS_Initialize_Parameter Názov:
diff --git a/data/catalogs/add-ons/disk_systems/intel/be.catkeys b/data/catalogs/add-ons/disk_systems/intel/be.catkeys
index 5acbc0fa52..37e0388eb0 100644
--- a/data/catalogs/add-ons/disk_systems/intel/be.catkeys
+++ b/data/catalogs/add-ons/disk_systems/intel/be.catkeys
@@ -1,2 +1,2 @@
-1 belarusian application/x-vnd.Haiku-IntelDiskAddOn 4191422532
+1 belarusian x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Актыўны падзел
diff --git a/data/catalogs/add-ons/disk_systems/intel/de.catkeys b/data/catalogs/add-ons/disk_systems/intel/de.catkeys
index abf76183a7..44f7993186 100644
--- a/data/catalogs/add-ons/disk_systems/intel/de.catkeys
+++ b/data/catalogs/add-ons/disk_systems/intel/de.catkeys
@@ -1,2 +1,2 @@
-1 german application/x-vnd.Haiku-IntelDiskAddOn 4191422532
+1 german x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Aktive Partition
diff --git a/data/catalogs/add-ons/disk_systems/intel/lt.catkeys b/data/catalogs/add-ons/disk_systems/intel/lt.catkeys
new file mode 100644
index 0000000000..40f694f934
--- /dev/null
+++ b/data/catalogs/add-ons/disk_systems/intel/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-IntelDiskAddOn 4191422532
+Active partition BFS_Creation_Parameter Paleidimo skaidinys
diff --git a/data/catalogs/add-ons/disk_systems/intel/nl.catkeys b/data/catalogs/add-ons/disk_systems/intel/nl.catkeys
new file mode 100644
index 0000000000..1cdbd8211b
--- /dev/null
+++ b/data/catalogs/add-ons/disk_systems/intel/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-IntelDiskAddOn 4191422532
+Active partition BFS_Creation_Parameter Actieve partitie
diff --git a/data/catalogs/add-ons/disk_systems/intel/ru.catkeys b/data/catalogs/add-ons/disk_systems/intel/ru.catkeys
index b6da3481e3..f9766d6fd9 100644
--- a/data/catalogs/add-ons/disk_systems/intel/ru.catkeys
+++ b/data/catalogs/add-ons/disk_systems/intel/ru.catkeys
@@ -1,2 +1,2 @@
-1 russian application/x-vnd.Haiku-IntelDiskAddOn 4191422532
+1 russian x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Активный раздел
diff --git a/data/catalogs/add-ons/disk_systems/intel/sk.catkeys b/data/catalogs/add-ons/disk_systems/intel/sk.catkeys
index 956b16a8db..7f6defbc1f 100644
--- a/data/catalogs/add-ons/disk_systems/intel/sk.catkeys
+++ b/data/catalogs/add-ons/disk_systems/intel/sk.catkeys
@@ -1,2 +1,2 @@
-1 slovak application/x-vnd.Haiku-IntelDiskAddOn 4191422532
+1 slovak x-vnd.Haiku-IntelDiskAddOn 4191422532
Active partition BFS_Creation_Parameter Aktívna oblasť
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/be.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/be.catkeys
index 62ab807625..f1cc52b7a3 100644
--- a/data/catalogs/add-ons/input_server/devices/keyboard/be.catkeys
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/be.catkeys
@@ -1,10 +1,10 @@
1 belarusian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
-(This team is a system component) Team monitor (гэта сістэмны працэс)
-Cancel Team monitor Скасаваць
-Force reboot Team monitor Перагрузіць
-If the application will not quit you may have to kill it. Team monitor Калі праграма не спыніцца вам магчыма прыдзецца знішчыць яе.
Kill application Team monitor Знішчыць праграму
Quit application Team monitor Спыніць праграму
-Restart the desktop Team monitor Перазапусціць дэсктоп
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 Абярыце праграму ў спісе і націсніце кнопку 'Знішчыць праграму' альбо 'Спыніць праграму' каб яе спыніць.\n\nНацісніце і трымайце CTRL-ALT-DELETE %ld сэкунд каб перагрузіць сістэму.
+If the application will not quit you may have to kill it. Team monitor Калі праграма не спыніцца вам магчыма прыдзецца знішчыць яе.
+Force reboot Team monitor Перагрузіць
Team monitor Team monitor Манітор працэсаў
+(This team is a system component) Team monitor (гэта сістэмны працэс)
+Restart the desktop Team monitor Перазапусціць дэсктоп
+Cancel Team monitor Скасаваць
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/de.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/de.catkeys
index a5ce8130cc..7ba906e027 100644
--- a/data/catalogs/add-ons/input_server/devices/keyboard/de.catkeys
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/de.catkeys
@@ -1,10 +1,10 @@
1 german x-vnd.Haiku-KeyboardInputServerDevice 2536418998
-(This team is a system component) Team monitor (Dieses Team ist eine Systemkomponente)
-Cancel Team monitor Abbrechen
-Force reboot Team monitor Neustart erzwingen
-If the application will not quit you may have to kill it. Team monitor Falls sich ein Team nicht normal beenden lässt, sollte versucht werden das Beenden zu erzwingen.
Kill application Team monitor Beenden erzwingen
Quit application Team monitor Beenden
-Restart the desktop Team monitor Desktop neu starten
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 Um ein Team zu beenden, den Eintrag in der Liste markieren und "Beenden" oder "Beenden erzwingen" klicken.\n\nSTRG+ALT+ENTF für %ld Sekunden halten, um einen Neustart zu erzwingen.
+If the application will not quit you may have to kill it. Team monitor Falls sich ein Team nicht normal beenden lässt, sollte versucht werden das Beenden zu erzwingen.
+Force reboot Team monitor Neustart erzwingen
Team monitor Team monitor Teammonitor
+(This team is a system component) Team monitor (Dieses Team ist eine Systemkomponente)
+Restart the desktop Team monitor Desktop neu starten
+Cancel Team monitor Abbrechen
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/lt.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/lt.catkeys
new file mode 100644
index 0000000000..3e76edc79d
--- /dev/null
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/lt.catkeys
@@ -0,0 +1,10 @@
+1 lithuanian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
+Kill application Team monitor Nutraukti darbą
+Quit application Team monitor Užbaigti darbą
+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 Pasirinkite vykdomą programą iš sąrašo ir spustelėkite „Užbaigti darbą“ (gražiuoju) arba „Nutraukti darbą“ (priverstinai), kad jos darbas būtų baigtas.\n\nPalaikykite nuspaustus Vald+Alt+Šal klavišus %ld sek., jeigu norite kompiuterį paleisti iš naujo.
+If the application will not quit you may have to kill it. Team monitor Jeigu programa neužbaigs darbo pati, Jums gali tekti jį nutraukti priverstinai.
+Force reboot Team monitor Perleisti kompiuterį priverstinai
+Team monitor Team monitor Užduočių tvarkytuvas
+(This team is a system component) Team monitor (Ši užduotis yra sistemos komponentas)
+Restart the desktop Team monitor Perleisti darbalaukį
+Cancel Team monitor Atsisakyti
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/nl.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/nl.catkeys
new file mode 100644
index 0000000000..dfc48b72b1
--- /dev/null
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/nl.catkeys
@@ -0,0 +1,10 @@
+1 dutch; flemish x-vnd.Haiku-KeyboardInputServerDevice 2536418998
+Kill application Team monitor Toepassing afbreken
+Quit application Team monitor Toepassing afsluiten
+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 Selecteer een applicatie van de bovenstaande lijst en klik op de knoppen 'Toepassing afbreken' of 'Toepassing sluiten' om het af te sluiten.\n\nHoud CONTROL+ALT+DELETE voor %ld seconden ingedrukt om te te herstarten.
+If the application will not quit you may have to kill it. Team monitor Als de toepassing niet afsluit moet je het misschien afbreken.
+Force reboot Team monitor Forceer herstart
+Team monitor Team monitor Teammonitor
+(This team is a system component) Team monitor (Dit team is een systeemcomponent)
+Restart the desktop Team monitor Start het bureaublad opnieuw
+Cancel Team monitor Annuleren
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/ru.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/ru.catkeys
index d972a540f8..e572862ad8 100644
--- a/data/catalogs/add-ons/input_server/devices/keyboard/ru.catkeys
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/ru.catkeys
@@ -1,10 +1,10 @@
1 russian x-vnd.Haiku-KeyboardInputServerDevice 2536418998
-(This team is a system component) Team monitor (Этот процесс является системным компонентом)
-Cancel Team monitor Отмена
-Force reboot Team monitor Перезагрузить насильно
-If the application will not quit you may have to kill it. Team monitor Если приложение не завершится, возможно вам понадобится убить его.
Kill application Team monitor Убить приложение
Quit application Team monitor Завершить приложение
-Restart the desktop Team monitor Перезапустить рабочий стол
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 Для того, чтобы закрыть приложение выберите его из списка выше и нажмите на кнопку 'Убить приложение' или 'Завершить приложение'.\n\nЗажмите CONTROL+ALT+DELETE на %ld секунд для перезагрузки.
+If the application will not quit you may have to kill it. Team monitor Если приложение не завершится, возможно вам понадобится убить его.
+Force reboot Team monitor Перезагрузить насильно
Team monitor Team monitor Монитор процессов
+(This team is a system component) Team monitor (Этот процесс является системным компонентом)
+Restart the desktop Team monitor Перезапустить рабочий стол
+Cancel Team monitor Отмена
diff --git a/data/catalogs/add-ons/input_server/devices/keyboard/sk.catkeys b/data/catalogs/add-ons/input_server/devices/keyboard/sk.catkeys
index d6b54fba9b..3a5a16fef1 100644
--- a/data/catalogs/add-ons/input_server/devices/keyboard/sk.catkeys
+++ b/data/catalogs/add-ons/input_server/devices/keyboard/sk.catkeys
@@ -1,10 +1,10 @@
1 slovak x-vnd.Haiku-KeyboardInputServerDevice 2536418998
-(This team is a system component) Team monitor (Tento tím je súčasťou systému)
-Cancel Team monitor Zrušiť
-Force reboot Team monitor Vynútiť reštart
-If the application will not quit you may have to kill it. Team monitor Ak sa aplikácia neukončí, možno ju budete musieť zabiť.
Kill application Team monitor Zabiť aplikáciu
Quit application Team monitor Ukončiť aplikáciu
-Restart the desktop Team monitor Reštartovať plochu
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 Vyberte aplikáciu zo zoznamu hore a zatvorte aplikáciu kliknutím na jedno z tlačidiel „Zabiť aplikáciu“ alebo „Ukončiť aplikáciu“..\n\nPodržadním CONTROL+ALT+DELETE po dobu %ld sekúnd spustíte reštart.
+If the application will not quit you may have to kill it. Team monitor Ak sa aplikácia neukončí, možno ju budete musieť zabiť.
+Force reboot Team monitor Vynútiť reštart
Team monitor Team monitor Monitor tímov
+(This team is a system component) Team monitor (Tento tím je súčasťou systému)
+Restart the desktop Team monitor Reštartovať plochu
+Cancel Team monitor Zrušiť
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/be.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/be.catkeys
index ae4eadb623..4210da9f49 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/be.catkeys
@@ -1,15 +1,15 @@
1 belarusian x-vnd.Haiku-MatchHeader 1205906732
- ConfigView <абярыце рахунак>
ConfigView <абярыце аперацыю>
-Delete message ConfigView Выдаліць паведамленне
-If ConfigView If
-Move to ConfigView Перасунуць у
-Reply with ConfigView Адказаць з
-Rule filter RuleFilter Правіла фільтра
-Set as read ConfigView Пазначыць як прагледжанае
-Set flags to ConfigView Меткі паведамлення ў
-Then ConfigView Then
has ConfigView меў
-header (e.g. Subject) ConfigView загаловак (Subject)
-this field is based on the action ConfigView гэты параметр грунтуецца на аперацыі
+Move to ConfigView Перасунуць у
+Then ConfigView Then
value (use REGEX: in from of regular expressions like *spam*) ConfigView параметр (выкарыстайце REGEX: у выглядзе regular expressions, напрыклад *spam*)
+this field is based on the action ConfigView гэты параметр грунтуецца на аперацыі
+Delete message ConfigView Выдаліць паведамленне
+Rule filter RuleFilter Правіла фільтра
+ ConfigView <абярыце рахунак>
+Set flags to ConfigView Меткі паведамлення ў
+Set as read ConfigView Пазначыць як прагледжанае
+Reply with ConfigView Адказаць з
+If ConfigView If
+header (e.g. Subject) ConfigView загаловак (Subject)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/de.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/de.catkeys
index c38958c2bf..36b5de7506 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/de.catkeys
@@ -1,15 +1,15 @@
1 german x-vnd.Haiku-MatchHeader 1205906732
- ConfigView
ConfigView
-Delete message ConfigView Nachricht löschen
-If ConfigView Wenn
-Move to ConfigView Verschieben nach
-Reply with ConfigView Antworten von Konto
-Rule filter RuleFilter Filterregel
-Set as read ConfigView Als gelesen markieren
-Set flags to ConfigView Status setzen auf
-Then ConfigView Dann
has ConfigView enthält
-header (e.g. Subject) ConfigView Kopfzeile (z. B. Subject)
-this field is based on the action ConfigView dieses Feld ist abhängig von der Aktion
+Move to ConfigView Verschieben nach
+Then ConfigView Dann
value (use REGEX: in from of regular expressions like *spam*) ConfigView Wert (REGEX nutzen: reguläre Ausdrücke wie *spam*)
+this field is based on the action ConfigView dieses Feld ist abhängig von der Aktion
+Delete message ConfigView Nachricht löschen
+Rule filter RuleFilter Filterregel
+ ConfigView
+Set flags to ConfigView Status setzen auf
+Set as read ConfigView Als gelesen markieren
+Reply with ConfigView Antworten von Konto
+If ConfigView Wenn
+header (e.g. Subject) ConfigView Kopfzeile (z. B. Subject)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/fr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/fr.catkeys
new file mode 100644
index 0000000000..81cf35604d
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/fr.catkeys
@@ -0,0 +1,8 @@
+1 french x-vnd.Haiku-MatchHeader 3652092583
+ ConfigView
+ ConfigView
+If ConfigView Si
+Move to ConfigView Déplacer vers
+Set as read ConfigView Marquer comme lu
+Then ConfigView Alors
+header (e.g. Subject) ConfigView entête (ex. Sujet)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/lt.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/lt.catkeys
new file mode 100644
index 0000000000..3a4d0b4c34
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/lt.catkeys
@@ -0,0 +1,15 @@
+1 lithuanian x-vnd.Haiku-MatchHeader 1205906732
+ ConfigView
+has ConfigView turi
+Move to ConfigView perkelti į
+Then ConfigView tuomet
+value (use REGEX: in from of regular expressions like *spam*) ConfigView reikšmę (naudokite REGEX: šablonams, pvz., *spam*, aprašyti)
+this field is based on the action ConfigView šio lauko galimos reikšmės priklauso nuo veiksmo
+Delete message ConfigView pašalinti laišką
+Rule filter RuleFilter Filtras pagal taisyklę
+ ConfigView
+Set flags to ConfigView nustatyti požymius į
+Set as read ConfigView pažymėti kaip skaitytą
+Reply with ConfigView atsakyti naudojant
+If ConfigView Kai
+header (e.g. Subject) ConfigView antraštė (pvz., Subject)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/nl.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/nl.catkeys
new file mode 100644
index 0000000000..9c2813cb0c
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/nl.catkeys
@@ -0,0 +1,15 @@
+1 dutch; flemish x-vnd.Haiku-MatchHeader 1205906732
+ ConfigView
+has ConfigView Heeft
+Move to ConfigView Verplaats naar
+Then ConfigView Dan
+value (use REGEX: in from of regular expressions like *spam*) ConfigView waarde (gebruik REGEX: in vorm van normale uitdrukking zoals *spam*)
+this field is based on the action ConfigView dit veld is gebaseerd op de actie
+Delete message ConfigView Bericht verwijderen
+Rule filter RuleFilter Regelfilter
+ ConfigView
+Set flags to ConfigView Markeer als
+Set as read ConfigView Als gelezen markeren
+Reply with ConfigView Antwoord met
+If ConfigView Als
+header (e.g. Subject) ConfigView rubiek (m.a.w. onderwerp)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/sk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/sk.catkeys
index c73b71a472..a9a6a85f38 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/match_header/sk.catkeys
@@ -1,15 +1,15 @@
1 slovak x-vnd.Haiku-MatchHeader 1205906732
- ConfigView
ConfigView
-Delete message ConfigView Zmazať správu
-If ConfigView ak
-Move to ConfigView Presunúť do
-Reply with ConfigView Odpovedať pomocou
-Rule filter RuleFilter Filter pravidiel
-Set as read ConfigView Nastaviť ako prečítané
-Set flags to ConfigView Nastaviť príznaky na
-Then ConfigView potom
has ConfigView má
-header (e.g. Subject) ConfigView hlavička (napr. Predmet)
-this field is based on the action ConfigView toto pole je založené na operácii
+Move to ConfigView Presunúť do
+Then ConfigView potom
value (use REGEX: in from of regular expressions like *spam*) ConfigView hodnota (použite reg. výraz: v tvare reg. výrazov ako *spam*)
+this field is based on the action ConfigView toto pole je založené na operácii
+Delete message ConfigView Zmazať správu
+Rule filter RuleFilter Filter pravidiel
+ ConfigView
+Set flags to ConfigView Nastaviť príznaky na
+Set as read ConfigView Nastaviť ako prečítané
+Reply with ConfigView Odpovedať pomocou
+If ConfigView ak
+header (e.g. Subject) ConfigView hlavička (napr. Predmet)
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/be.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/be.catkeys
index 839008bf3f..e856650e71 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/be.catkeys
@@ -1,16 +1,16 @@
1 belarusian x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num новae паведамленнe
%num new messages filter %num новых паведамленняў
-Alert ConfigView Папярэджанне
-Beep ConfigView Біп
-Central alert ConfigView Цэнтральная папярэджанне
-Central beep ConfigView Цэнтральны гук
Keyboard LEDs ConfigView Клавіятурныя LED
-Log window ConfigView Вакно пратаколу
-Method: ConfigView Метад:
-New mails notification ConfigView Інфа пра новыя паведамленні
-New messages filter Новыя паведамленні
-OK filter ОК
-You have %num new message for %name. filter Вы маеце %num новae паведамленнe для %name
You have %num new messages for %name. filter Вы маеце %num новых паведамленняў для %name
+You have %num new message for %name. filter Вы маеце %num новae паведамленнe для %name
+Log window ConfigView Вакно пратаколу
+Central beep ConfigView Цэнтральны гук
+Beep ConfigView Біп
+Method: ConfigView Метад:
+Central alert ConfigView Цэнтральная папярэджанне
+Alert ConfigView Папярэджанне
none ConfigView няма
+New messages filter Новыя паведамленні
+New mails notification ConfigView Інфа пра новыя паведамленні
+OK filter ОК
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/de.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/de.catkeys
index 1b96191d91..b56cbe39c3 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/de.catkeys
@@ -1,16 +1,16 @@
1 german x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num neue Nachricht
%num new messages filter %num neue Nachrichten
-Alert ConfigView Hinweisfenster
-Beep ConfigView Tonsignal
-Central alert ConfigView Hinweisfenster (alle Konten)
-Central beep ConfigView Tonsignal (alle Konten)
Keyboard LEDs ConfigView Tastatur-LEDs
-Log window ConfigView Statusfenster
-Method: ConfigView Methode:
-New mails notification ConfigView Ankündigung neuer E-Mails
-New messages filter Neue Nachrichten
-OK filter OK
-You have %num new message for %name. filter %num neue Nachricht für %name.
You have %num new messages for %name. filter %num neue Nachrichten für %name.
+You have %num new message for %name. filter %num neue Nachricht für %name.
+Log window ConfigView Statusfenster
+Central beep ConfigView Tonsignal (alle Konten)
+Beep ConfigView Tonsignal
+Method: ConfigView Methode:
+Central alert ConfigView Hinweisfenster (alle Konten)
+Alert ConfigView Hinweisfenster
none ConfigView keine
+New messages filter Neue Nachrichten
+New mails notification ConfigView Ankündigung neuer E-Mails
+OK filter OK
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/fr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/fr.catkeys
new file mode 100644
index 0000000000..379388ca82
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/fr.catkeys
@@ -0,0 +1,9 @@
+1 french x-vnd.Haiku-NewMailNotification 1075768259
+%num new message filter %num nouveau message
+%num new messages filter %num nouveaux messages
+Method: ConfigView Méthode :
+New messages filter Nouveaux messages
+OK filter OK
+You have %num new message for %name. filter Il y a %num nouveau message pour %name.
+You have %num new messages for %name. filter Il y a %num nouveaux messages pour %name.
+none ConfigView aucun
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/lt.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/lt.catkeys
new file mode 100644
index 0000000000..931a16b13a
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/lt.catkeys
@@ -0,0 +1,16 @@
+1 lithuanian x-vnd.Haiku-NewMailNotification 3624191291
+%num new message filter Naujų laiškų: %num
+%num new messages filter Naujų laiškų: %num
+Keyboard LEDs ConfigView klaviatūros diodais
+You have %num new messages for %name. filter Naujų laiškų, skirtų %name: %num.
+You have %num new message for %name. filter Naujų laiškų, skirtų %name: %num.
+Log window ConfigView žurnalo lange
+Central beep ConfigView centriniu pyptelėjimu
+Beep ConfigView pyptelėjimu
+Method: ConfigView Pranešti:
+Central alert ConfigView centriniu pranešimu
+Alert ConfigView pranešimu
+none ConfigView niekaip
+New messages filter Nauji laiškai
+New mails notification ConfigView Pranešimas apie naujus laiškus
+OK filter Gerai
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/nl.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/nl.catkeys
new file mode 100644
index 0000000000..0234e8491e
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/nl.catkeys
@@ -0,0 +1,16 @@
+1 dutch; flemish x-vnd.Haiku-NewMailNotification 3624191291
+%num new message filter %num nieuw bericht
+%num new messages filter %num nieuwe berichten
+Keyboard LEDs ConfigView Toetsenbords LED's
+You have %num new messages for %name. filter U heeft %num nieuwe berichten voor %name.
+You have %num new message for %name. filter U heeft %num nieuw bericht voor %name.
+Log window ConfigView Logvenster
+Central beep ConfigView Centraal geluidssignaal
+Beep ConfigView Geluidssignaal
+Method: ConfigView Methode:
+Central alert ConfigView Centraal signaal
+Alert ConfigView Signaal
+none ConfigView geen
+New messages filter Nieuwe bericht
+New mails notification ConfigView Nieuwe e-mails notificatie
+OK filter OK
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/sk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/sk.catkeys
index 00ad548c1d..ccf4275c4b 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/sk.catkeys
@@ -1,16 +1,16 @@
1 slovak x-vnd.Haiku-NewMailNotification 3624191291
%num new message filter %num nová správa
%num new messages filter %num nových správ
-Alert ConfigView Upozornenie
-Beep ConfigView Pípnutie
-Central alert ConfigView Centrálne upozornenie
-Central beep ConfigView Centrálne pípnutie
Keyboard LEDs ConfigView LED klávesnice
-Log window ConfigView Okno záznamu
-Method: ConfigView Metóda:
-New mails notification ConfigView Upozornenie na nové správy
-New messages filter Nové správy
-OK filter OK
-You have %num new message for %name. filter Máte %num novú správu pre %name.
You have %num new messages for %name. filter Máte %num nových správ pre %name.
+You have %num new message for %name. filter Máte %num novú správu pre %name.
+Log window ConfigView Okno záznamu
+Central beep ConfigView Centrálne pípnutie
+Beep ConfigView Pípnutie
+Method: ConfigView Metóda:
+Central alert ConfigView Centrálne upozornenie
+Alert ConfigView Upozornenie
none ConfigView žiadne
+New messages filter Nové správy
+New mails notification ConfigView Upozornenie na nové správy
+OK filter OK
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/uk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/uk.catkeys
new file mode 100644
index 0000000000..60d8b91d6a
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/notifier/uk.catkeys
@@ -0,0 +1,16 @@
+1 ukrainian x-vnd.Haiku-NewMailNotification 3624191291
+%num new message filter %num нове повідомлення
+%num new messages filter %num нових повідомлень
+Alert ConfigView Попередження
+Beep ConfigView Сигнал
+Central alert ConfigView Головне попередження
+Central beep ConfigView Головний сигнал
+Keyboard LEDs ConfigView Світлодіоди клавіатури
+Log window ConfigView Вікно логів
+Method: ConfigView Метод:
+New mails notification ConfigView Нові оголошення пошти
+New messages filter Нові повідомлення
+OK filter Гаразд
+You have %num new message for %name. filter Отримано %num нове повідомлення для %name.
+You have %num new messages for %name. filter Отримано %num нових повідомлень для %name.
+none ConfigView жодного
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/be.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/be.catkeys
index 2d5da31456..26556b6b43 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-SpamFilter 1975155212
-Add spam rating to start of subject SpamFilterConfig Дадаць спам-рэйтынг ў пачатак тэмы
-Close SpamFilterConfig Закрыць
+or empty e-mail SpamFilterConfig ці пустыя паведамленні
+Spam Filter (AGMS Bayesian) SpamFilter Фільтар спаму (AGMS Bayesian)
Genuine below and uncertain above: SpamFilterConfig Сапраўдныя ніжэй і нявызначаныя вышэй:
+Spam above: SpamFilterConfig Спам вышэй:
+Add spam rating to start of subject SpamFilterConfig Дадаць спам-рэйтынг ў пачатак тэмы
Learn from all incoming e-mail SpamFilterConfig Навучаць з ўсіх уваходных паведамленняў
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Прабачце, немагчыма запусціць праграму spamdbm каб даць вам магчымасць рэдагаваць наладкі.
-Spam Filter (AGMS Bayesian) SpamFilter Фільтар спаму (AGMS Bayesian)
-Spam above: SpamFilterConfig Спам вышэй:
-or empty e-mail SpamFilterConfig ці пустыя паведамленні
+Close SpamFilterConfig Закрыць
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/de.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/de.catkeys
index 1ababe9fb1..2ec46e3a1b 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-SpamFilter 1975155212
-Add spam rating to start of subject SpamFilterConfig Spam-Einschätzung der Betreffzeile voranstellen
-Close SpamFilterConfig Schließen
+or empty e-mail SpamFilterConfig oder leere E-Mail
+Spam Filter (AGMS Bayesian) SpamFilter Spamfilter (AGMS Bayesian)
Genuine below and uncertain above: SpamFilterConfig Erwünscht unter und ungewiss über:
+Spam above: SpamFilterConfig Spam über:
+Add spam rating to start of subject SpamFilterConfig Spam-Einschätzung der Betreffzeile voranstellen
Learn from all incoming e-mail SpamFilterConfig Von allen eingehenden E-Mails lernen
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Leider konnte die Anwendung spamdbm zum Bearbeiten der Server-Einstellungen nicht gestartet werden.
-Spam Filter (AGMS Bayesian) SpamFilter Spamfilter (AGMS Bayesian)
-Spam above: SpamFilterConfig Spam über:
-or empty e-mail SpamFilterConfig oder leere E-Mail
+Close SpamFilterConfig Schließen
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/hr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/hr.catkeys
new file mode 100644
index 0000000000..afb98e80e9
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/hr.catkeys
@@ -0,0 +1,7 @@
+1 croatian x-vnd.Haiku-SpamFilter 8723064
+Close SpamFilterConfig Zatvori
+Genuine below and uncertain above: SpamFilterConfig Orginalni ispod i nesigurni iznad:
+Learn from all incoming e-mail SpamFilterConfig Uči iz sve dolazne elektroničke pošte
+Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Žao nam je, nemože se pokrenuti spamdbm program da vam omogući uređivanje postavki poslužitelja.
+
+Spam above: SpamFilterConfig Spam iznad:
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/lt.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/lt.catkeys
new file mode 100644
index 0000000000..1ba64532c9
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-SpamFilter 1975155212
+or empty e-mail SpamFilterConfig arba tuščias laiškas
+Spam Filter (AGMS Bayesian) SpamFilter Brukalo filtras (Bajeso AGMS)
+Genuine below and uncertain above: SpamFilterConfig Ne brukalas, kai žemesnis, o neaišku, kai viršija:
+Spam above: SpamFilterConfig Brukalas, kai įvertis viršija:
+Add spam rating to start of subject SpamFilterConfig Pridėti brukalo įvertį į temos pradžią
+Learn from all incoming e-mail SpamFilterConfig Apsimokyti iš visų gaunamų laiškų
+Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Deja, nepavyko paleisti „spamdbm“ programos, leidžiančios keisti serverio nuostatas.
+Close SpamFilterConfig Užverti
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/nl.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/nl.catkeys
new file mode 100644
index 0000000000..aa9971a709
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-SpamFilter 1975155212
+or empty e-mail SpamFilterConfig of een lege e-mail
+Spam Filter (AGMS Bayesian) SpamFilter Spam Filter (AGMS Bayesian)
+Genuine below and uncertain above: SpamFilterConfig Echte e-mail beneden en onzeker boven:
+Spam above: SpamFilterConfig Spam boven:
+Add spam rating to start of subject SpamFilterConfig Spamwaarde toevoegen aan het begin van het onderwerp
+Learn from all incoming e-mail SpamFilterConfig Leer van alle inkomende e-mails
+Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Sorry, niet mogelijk om spamdbm te starten om u serverinstellingen te laten veranderen
+Close SpamFilterConfig Sluiten
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/sk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/sk.catkeys
index cf8f5a8fc7..fdfd8eea53 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_filters/spam_filter/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-SpamFilter 1975155212
-Add spam rating to start of subject SpamFilterConfig Pridať ohodnotenie ako spam na začiatok predmetu
-Close SpamFilterConfig Zatvoriť
+or empty e-mail SpamFilterConfig alebo prázdny email
+Spam Filter (AGMS Bayesian) SpamFilter Spamový filter (AGMS Bayesian)
Genuine below and uncertain above: SpamFilterConfig Originálny pod a neistý nad:
+Spam above: SpamFilterConfig Spam nad:
+Add spam rating to start of subject SpamFilterConfig Pridať ohodnotenie ako spam na začiatok predmetu
Learn from all incoming e-mail SpamFilterConfig Učiť sa na základe všetkej prichádzajúcej pošty
Sorry, unable to launch the spamdbm program to let you edit the server settings. SpamFilterConfig Ľutujeme, nie je možné spustiť program spamdbm na umožnenie úpravy nastavenia servera.
-Spam Filter (AGMS Bayesian) SpamFilter Spamový filter (AGMS Bayesian)
-Spam above: SpamFilterConfig Spam nad:
-or empty e-mail SpamFilterConfig alebo prázdny email
+Close SpamFilterConfig Zatvoriť
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/be.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/be.catkeys
index cb8065d1d2..c419daa8ee 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-IMAP 3892875357
-Apply IMAPFolderConfig Прымяніць
Destination: imap_config Прызначэнне:
-Failed to fetch available storage. IMAPFolderConfig Памылка падчас атрымання дадзеных
+status IMAPFolderConfig статус
+Apply IMAPFolderConfig Прымяніць
+IMAP Folders imap_config Папкі IMAP
Fetching IMAP folders, have patience... IMAPFolderConfig Атрыманне IMAP папак, пачакайце...
IMAP Folders IMAPFolderConfig IMAP папкі
-IMAP Folders imap_config Папкі IMAP
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Апрацоўка IMAP папак, пачакайце...
-status IMAPFolderConfig статус
+Failed to fetch available storage. IMAPFolderConfig Памылка падчас атрымання дадзеных
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/de.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/de.catkeys
index 3af656ed0c..a5360e2768 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-IMAP 3892875357
-Apply IMAPFolderConfig Anwenden
Destination: imap_config Zielverzeichnis:
-Failed to fetch available storage. IMAPFolderConfig Keine der vorhandenen Ablagen konnte übertragen werden.
+status IMAPFolderConfig Status
+Apply IMAPFolderConfig Anwenden
+IMAP Folders imap_config IMAP-Ordner
Fetching IMAP folders, have patience... IMAPFolderConfig IMAP-Ordner werden angefordert. Bitte warten…
IMAP Folders IMAPFolderConfig IMAP-Ordner
-IMAP Folders imap_config IMAP-Ordner
Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig IMAP-Ordner werden abonniert/abbestellt. Bitte warten…
-status IMAPFolderConfig Status
+Failed to fetch available storage. IMAPFolderConfig Keine der vorhandenen Ablagen konnte übertragen werden.
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/fr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/fr.catkeys
new file mode 100644
index 0000000000..d4590ba5fe
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/fr.catkeys
@@ -0,0 +1,8 @@
+1 french x-vnd.Haiku-IMAP 2655366227
+Apply IMAPFolderConfig Appliquer
+Destination: imap_config Destination :
+Fetching IMAP folders, have patience... IMAPFolderConfig Récupération des dossiers IMAP, Merci de patienter…
+IMAP Folders IMAPFolderConfig Dossiers IMAP
+IMAP Folders imap_config Dossiers IMAP
+Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Abonnement / désabonnement aux dossiers IMAP, Merci de patienter…
+status IMAPFolderConfig état
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/hr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/hr.catkeys
new file mode 100644
index 0000000000..1b832ae53b
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-IMAP 2976242043
+Apply IMAPFolderConfig Primjeni
+Destination: imap_config Odredište
+Failed to fetch available storage. IMAPFolderConfig Nisam uspio dohvatiti dostupnu pohranu.
+Fetching IMAP folders, have patience... IMAPFolderConfig Dohvaćam IMAP mape,budite strpljivi...
+IMAP Folders IMAPFolderConfig IMAP mape
+IMAP Folders imap_config IMAP mape
+status IMAPFolderConfig stanje
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/lt.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/lt.catkeys
new file mode 100644
index 0000000000..f7d4f87a48
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-IMAP 3892875357
+Destination: imap_config Paskirties aplankas:
+status IMAPFolderConfig būsena
+Apply IMAPFolderConfig Taikyti
+IMAP Folders imap_config IMAP aplankai
+Fetching IMAP folders, have patience... IMAPFolderConfig Gaunamas IMAP aplankų sąrašas, luktelėkite…
+IMAP Folders IMAPFolderConfig IMAP aplankai
+Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Keičiamos IMAP aplankų prenumeratos, luktelėkite…
+Failed to fetch available storage. IMAPFolderConfig Aplankų sąrašo gauti nepavyko.
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/nl.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/nl.catkeys
new file mode 100644
index 0000000000..93d7b0ac2b
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-IMAP 3892875357
+Destination: imap_config Doel:
+status IMAPFolderConfig status
+Apply IMAPFolderConfig Toepassen
+IMAP Folders imap_config IMAP mappen
+Fetching IMAP folders, have patience... IMAPFolderConfig IMAP mappen ophalen, heb geduld...
+IMAP Folders IMAPFolderConfig IMAP Mappen
+Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Abonneer / De-abonneer IMAP mappen, heb geduld...
+Failed to fetch available storage. IMAPFolderConfig Fout bij het ophalen van de beschikbare opslag.
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/sk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/sk.catkeys
index 870d810109..82b680720e 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/imap/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-IMAP 3892875357
-Apply IMAPFolderConfig Použiť
Destination: imap_config Cieľ:
-Failed to fetch available storage. IMAPFolderConfig Nepodarilo sa zistiť dostupné úložné miesto.
+status IMAPFolderConfig stav
+Apply IMAPFolderConfig Použiť
+IMAP Folders imap_config Priečinky IMAP
Fetching IMAP folders, have patience... IMAPFolderConfig Sťahujú sa priečinky IMAP, strpenie...
IMAP Folders IMAPFolderConfig Priečinky IMAP
-IMAP Folders imap_config Priečinky IMAP
-Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Prihlásuje/odhlasuje sa odber priečinkov IMAP, strpenie...
-status IMAPFolderConfig stav
+Subcribe / Unsuscribe IMAP folders, have patience... IMAPFolderConfig Prihlasuje/odhlasuje sa odber priečinkov IMAP, strpenie...
+Failed to fetch available storage. IMAPFolderConfig Nepodarilo sa zistiť dostupné úložné miesto.
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/be.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/be.catkeys
index 63bbe496ae..b1cb117986 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/be.catkeys
@@ -1,18 +1,18 @@
1 belarusian x-vnd.Haiku-POP3 1324485597
-. The server said:\n pop3 . Паведамленне сервера:\n
-: Connection refused or host not found pop3 : Адмова ў далучэнні альбо хост не знойдзены
-: Could not allocate socket. pop3 : Немагчыма вылучыць сокет.
-: No reply.\n pop3 : Няма адказу.\n
-: The server does not support APOP. pop3 : Сервер не падтрымлівае пратакол APOP.
-APOP ConfigView APOP
-Connect to server… pop3 Далучэнне да сервера…
-Connecting to POP3 server… pop3 Далучэнне да POP3 сервера…
-Destination: ConfigView Прызначэнне:
-Error while authenticating user %user pop3 Памылка падчас аўтэнтыфікацыі %user
-Error while connecting to server %serv pop3 Памылка падчас далучэння %user да сервера
-Getting UniqueIDs… pop3 Атрыманне ідэнтыфікатараў…
-Getting mailbox size… pop3 Вылічэнне памеру паштовай скрыні…
Plain text ConfigView Просты тэкст
Sending APOP authentication… pop3 Дасыланне APOP аўтэнтыфікацыі…
-Sending password… pop3 Дасыланне пароля…
Sending username… pop3 Дасыланне імя карыстальніка…
+: The server does not support APOP. pop3 : Сервер не падтрымлівае пратакол APOP.
+Getting mailbox size… pop3 Вылічэнне памеру паштовай скрыні…
+Connecting to POP3 server… pop3 Далучэнне да POP3 сервера…
+Getting UniqueIDs… pop3 Атрыманне ідэнтыфікатараў…
+: No reply.\n pop3 : Няма адказу.\n
+: Connection refused or host not found pop3 : Адмова ў далучэнні альбо хост не знойдзены
+Error while connecting to server %serv pop3 Памылка падчас далучэння %user да сервера
+: Could not allocate socket. pop3 : Немагчыма вылучыць сокет.
+Error while authenticating user %user pop3 Памылка падчас аўтэнтыфікацыі %user
+Destination: ConfigView Прызначэнне:
+APOP ConfigView APOP
+Sending password… pop3 Дасыланне пароля…
+Connect to server… pop3 Далучэнне да сервера…
+. The server said:\n pop3 . Паведамленне сервера:\n
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/de.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/de.catkeys
index da247b81b4..cac5424b7d 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/de.catkeys
@@ -1,18 +1,18 @@
1 german x-vnd.Haiku-POP3 1324485597
-. The server said:\n pop3 . Servermeldung:\n
-: Connection refused or host not found pop3 : Verbindung abgelehnt oder Host nicht gefunden
-: Could not allocate socket. pop3 : Socket konnte nicht reserviert werden.
-: No reply.\n pop3 : Keine Antwort.\n
-: The server does not support APOP. pop3 : APOP wird vom Server nicht unterstützt.
-APOP ConfigView APOP
-Connect to server… pop3 Mit Server verbinden…
-Connecting to POP3 server… pop3 Mit POP3-Server verbinden…
-Destination: ConfigView Zielverzeichnis:
-Error while authenticating user %user pop3 Fehler beim Authentifizieren von Benutzer %user
-Error while connecting to server %serv pop3 Fehler beim Verbinden mit Server %serv
-Getting UniqueIDs… pop3 UniqueIDs werden empfangen…
-Getting mailbox size… pop3 Postfachgröße wird ermittelt…
Plain text ConfigView Klartext
Sending APOP authentication… pop3 APOP-Authentifizierung wird gesendet…
-Sending password… pop3 Passwort wird gesendet…
Sending username… pop3 Benutzername wird gesendet…
+: The server does not support APOP. pop3 : APOP wird vom Server nicht unterstützt.
+Getting mailbox size… pop3 Postfachgröße wird ermittelt…
+Connecting to POP3 server… pop3 Mit POP3-Server verbinden…
+Getting UniqueIDs… pop3 UniqueIDs werden empfangen…
+: No reply.\n pop3 : Keine Antwort.\n
+: Connection refused or host not found pop3 : Verbindung abgelehnt oder Host nicht gefunden
+Error while connecting to server %serv pop3 Fehler beim Verbinden mit Server %serv
+: Could not allocate socket. pop3 : Socket konnte nicht reserviert werden.
+Error while authenticating user %user pop3 Fehler beim Authentifizieren von Benutzer %user
+Destination: ConfigView Zielverzeichnis:
+APOP ConfigView APOP
+Sending password… pop3 Passwort wird gesendet…
+Connect to server… pop3 Mit Server verbinden…
+. The server said:\n pop3 . Servermeldung:\n
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/fr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/fr.catkeys
new file mode 100644
index 0000000000..6d0016d0ca
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/fr.catkeys
@@ -0,0 +1,11 @@
+1 french x-vnd.Haiku-POP3 387625039
+APOP ConfigView APOP
+Connect to server… pop3 Connexion au serveur…
+Connecting to POP3 server… pop3 Connexion au serveur POP3…
+Destination: ConfigView Destination :
+Error while authenticating user %user pop3 Erreur d'authentification de l'utilisateur %user
+Error while connecting to server %serv pop3 Erreur lors de la connexion au serveur %serv
+Plain text ConfigView Texte brut
+Sending APOP authentication… pop3 Envoi de l'authentification APOP…
+Sending password… pop3 Envoi du mot de passe…
+Sending username… pop3 Envoi du nom d'utilisateur…
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/hr.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/hr.catkeys
new file mode 100644
index 0000000000..b651d2eb0f
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/hr.catkeys
@@ -0,0 +1,16 @@
+1 croatian x-vnd.Haiku-POP3 4151284496
+. The server said:\n pop3 . Poslužitelj je rekao:\n
+: Connection refused or host not found pop3 : Spajanje odbijeno ili računalo nije pronađeno
+: No reply.\n pop3 : Nema odgovora.\n
+: The server does not support APOP. pop3 : Poslužitelj nepodržava APOP.
+APOP ConfigView APOP
+Connect to server… pop3 Spajanje na poslužitelj...
+Connecting to POP3 server… pop3 Spajanje na POP3 poslužitelj...
+Destination: ConfigView Odredište:
+Error while authenticating user %user pop3 Greška pri provjeri korisnika %korisnik
+Error while connecting to server %serv pop3 Grešak pri spajanju na poslužitelj %serv
+Getting mailbox size… pop3 Uzimam veličinu poštanskog sandučića...
+Plain text ConfigView Obični tekst
+Sending APOP authentication… pop3 Slanje APOP provjere valjanosti...
+Sending password… pop3 Slanje lozinke...
+Sending username… pop3 Slanje korisničkog imena...
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/lt.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/lt.catkeys
new file mode 100644
index 0000000000..f14bffc8fe
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/lt.catkeys
@@ -0,0 +1,18 @@
+1 lithuanian x-vnd.Haiku-POP3 1324485597
+Plain text ConfigView grynuoju tekstu
+Sending APOP authentication… pop3 Vyksta APOP tapatybės nustatymas…
+Sending username… pop3 Siunčiamas abonento vardas…
+: The server does not support APOP. pop3 : šis serveris nepalaiko APOP.
+Getting mailbox size… pop3 Gaunamas pašto dėžutės dydis…
+Connecting to POP3 server… pop3 Jungiamasi prie POP3 serverio…
+Getting UniqueIDs… pop3 Gaunami laiškų identifikatoriai…
+: No reply.\n pop3 : atsakas negautas.\n
+: Connection refused or host not found pop3 : ryšys atmestas arba serverio nepavyko rasti
+Error while connecting to server %serv pop3 Klaida jungiantis prie serverio %serv
+: Could not allocate socket. pop3 : nepavyko gauti lizdo.
+Error while authenticating user %user pop3 Klaida nustatant naudotojo %user tapatybę
+Destination: ConfigView Paskirties aplankas:
+APOP ConfigView APOP
+Sending password… pop3 Siunčiamas slaptažodis…
+Connect to server… pop3 Jungiamasi prie serverio…
+. The server said:\n pop3 . Serveris atsakė:\n
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/nl.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/nl.catkeys
new file mode 100644
index 0000000000..37bf29ca29
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/nl.catkeys
@@ -0,0 +1,18 @@
+1 dutch; flemish x-vnd.Haiku-POP3 1324485597
+Plain text ConfigView Platte tekst
+Sending APOP authentication… pop3 APOP authenticatie versturen...
+Sending username… pop3 Gebruikersnaam versturen...
+: The server does not support APOP. pop3 : De server ondersteunt APOP niet.
+Getting mailbox size… pop3 Mailbox grootte ophalen...
+Connecting to POP3 server… pop3 Verbinden met POP3 server...
+Getting UniqueIDs… pop3 Unieke-IDs krijgen...
+: No reply.\n pop3 : Geen Antwoord.\n
+: Connection refused or host not found pop3 : Connectie afgewezen of host niet gevonden
+Error while connecting to server %serv pop3 Fout tijdens het verbinden met de server %serv
+: Could not allocate socket. pop3 : Kon socket niet toewijzen
+Error while authenticating user %user pop3 Fout tijdens authenticatie gebruiker %user
+Destination: ConfigView Doel:
+APOP ConfigView APOP
+Sending password… pop3 Wachtwoord versturen...
+Connect to server… pop3 Verbinden met server...
+. The server said:\n pop3 . De server zei:\n
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/sk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/sk.catkeys
index c40dbb1411..5f4216335e 100644
--- a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/sk.catkeys
@@ -1,18 +1,18 @@
1 slovak x-vnd.Haiku-POP3 1324485597
-. The server said:\n pop3 . Server povedal:\n
-: Connection refused or host not found pop3 : Spojenie odmietnuté alebo hostiteľ nenájdený
-: Could not allocate socket. pop3 : Nepodarilo sa alokovať socket.
-: No reply.\n pop3 : Bez odpovede.\n
-: The server does not support APOP. pop3 : Server nepodporuje APOP.
-APOP ConfigView APOP
-Connect to server… pop3 Pripojiť k serveru...
-Connecting to POP3 server… pop3 Pripája sa k serveru POP3...
-Destination: ConfigView Cieľ:
-Error while authenticating user %user pop3 Chyba pri autentifikácii používateľa %serv
-Error while connecting to server %serv pop3 Chyba pri pripájaní k serveru %serv
-Getting UniqueIDs… pop3 Získavajú sa jedinečné ID...
-Getting mailbox size… pop3 Zisťuje sa veľkosť poštovej schránky...
Plain text ConfigView Čistý text
-Sending APOP authentication… pop3 Posiela sa autentifikácia APOP...
-Sending password… pop3 Posiela sa heslo...
-Sending username… pop3 Posiela sa používateľské meno...
+Sending APOP authentication… pop3 Posiela sa autentifikácia APOP…
+Sending username… pop3 Posiela sa používateľské meno…
+: The server does not support APOP. pop3 : Server nepodporuje APOP.
+Getting mailbox size… pop3 Zisťuje sa veľkosť poštovej schránky…
+Connecting to POP3 server… pop3 Pripája sa k serveru POP3…
+Getting UniqueIDs… pop3 Získavajú sa jedinečné ID…
+: No reply.\n pop3 : Bez odpovede.\n
+: Connection refused or host not found pop3 : Spojenie odmietnuté alebo hostiteľ nenájdený
+Error while connecting to server %serv pop3 Chyba pri pripájaní k serveru %serv
+: Could not allocate socket. pop3 : Nepodarilo sa alokovať socket.
+Error while authenticating user %user pop3 Chyba pri autentifikácii používateľa %user
+Destination: ConfigView Cieľ:
+APOP ConfigView APOP
+Sending password… pop3 Posiela sa heslo…
+Connect to server… pop3 Pripojiť k serveru…
+. The server said:\n pop3 . Server povedal:\n
diff --git a/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/uk.catkeys b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/uk.catkeys
new file mode 100644
index 0000000000..6524ebd707
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/inbound_protocols/pop3/uk.catkeys
@@ -0,0 +1,18 @@
+1 ukrainian x-vnd.Haiku-POP3 1324485597
+. The server said:\n pop3 . Сервер каже:\n
+: Connection refused or host not found pop3 Під'єднання невдале або хост не знайдено
+: Could not allocate socket. pop3 : Неможливо призначити сокет .
+: No reply.\n pop3 Без відповіді.\n
+: The server does not support APOP. pop3 : Сервер не підтримує APOP.
+APOP ConfigView APOP
+Connect to server… pop3 Під'єднання до сервера…
+Connecting to POP3 server… pop3 Підключення до POP3 сервера…
+Destination: ConfigView Ціль:
+Error while authenticating user %user pop3 Помилка ідентифікації користувача %user
+Error while connecting to server %serv pop3 Помилка при під'єднанні до сервера %serv
+Getting UniqueIDs… pop3 Отримання особистого ID…
+Getting mailbox size… pop3 Отримання розміру скриньки…
+Plain text ConfigView Звиклий текст
+Sending APOP authentication… pop3 Відправка визначника APOP …
+Sending password… pop3 Відправка гасла…
+Sending username… pop3 Відправка імені користувача…
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/be.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/be.catkeys
index 8559e45848..21cb2d8fcf 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/be.catkeys
@@ -1,4 +1,4 @@
1 belarusian x-vnd.Haiku-Fortune 1292458430
-Fortune cookie says:\n\n ConfigView Пажаданне:\n\n
Fortune file: ConfigView Файл цытатаў:
+Fortune cookie says:\n\n ConfigView Пажаданне:\n\n
Tag line: ConfigView Радок:
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/de.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/de.catkeys
index 3a9d7f4a9a..b80e18817f 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/de.catkeys
@@ -1,4 +1,4 @@
1 german x-vnd.Haiku-Fortune 1292458430
-Fortune cookie says:\n\n ConfigView Der Spruch des Tages:\n\n
Fortune file: ConfigView Sprüche-Datei:
+Fortune cookie says:\n\n ConfigView Der Spruch des Tages:\n\n
Tag line: ConfigView Einleitung:
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/lt.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/lt.catkeys
new file mode 100644
index 0000000000..17e1f7b889
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/lt.catkeys
@@ -0,0 +1,4 @@
+1 lithuanian x-vnd.Haiku-Fortune 1292458430
+Fortune file: ConfigView Citatų failas:
+Fortune cookie says:\n\n ConfigView Šiandienos horoskopas teigia:\n\n
+Tag line: ConfigView Įžanga:
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/nl.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/nl.catkeys
new file mode 100644
index 0000000000..543d9dff01
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/nl.catkeys
@@ -0,0 +1,4 @@
+1 dutch; flemish x-vnd.Haiku-Fortune 1292458430
+Fortune file: ConfigView Geluksbestand:
+Fortune cookie says:\n\n ConfigView Gelukskoekje zegt:\n\n
+Tag line: ConfigView Tagregel:
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/sk.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/sk.catkeys
index aa6e4e8c19..8410bd1d07 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_filters/fortune/sk.catkeys
@@ -1,4 +1,4 @@
1 slovak x-vnd.Haiku-Fortune 1292458430
-Fortune cookie says:\n\n ConfigView Koláčik šťastia hovorí:\n\n
Fortune file: ConfigView Súbor s koláčikmi:
+Fortune cookie says:\n\n ConfigView Koláčik šťastia hovorí:\n\n
Tag line: ConfigView Tag line:
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/be.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/be.catkeys
index 14f96ca2df..2b02ce0375 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/be.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/be.catkeys
@@ -1,13 +1,16 @@
-1 belarusian x-vnd.Haiku-SMTP 1052586247
-. The server said:\n smtp . Паведамленне сервера:\n
-. The server says:\n smtp . Паведамленне сервера:\n
-: Connection refused or host not found. smtp : Адмоўлена ў злучэнні ці сервер не знойдзены.
-Connecting to server… smtp Далучэнне да сервера…
-Destination: ConfigView Прызначэнне:
-ESMTP ConfigView ESMTP
-Error while logging in to %serv smtp Памылка падчас лагіну ў %serv
-Error while opening connection to %serv smtp Памылка падчас далучэння да %serv
-None ConfigView Няма
-POP3 authentication failed. The server said:\n smtp Аўтэнтыфікацыя не ўдалася. Паведамленне сервера:\n
-POP3 before SMTP ConfigView POP3 перад SMTP
+1 belarusian x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView Сервер SMTP:
+STARTTLS ConfigView STARTTLS
+Error while logging in to %serv smtp Памылка падчас лагіну ў %serv
+Unencrypted ConfigView Незашыфраваны
+. The server says:\n smtp . Паведамленне сервера:\n
+ESMTP ConfigView ESMTP
+Connecting to server… smtp Далучэнне да сервера…
+Error while opening connection to %serv smtp Памылка падчас далучэння да %serv
+POP3 authentication failed. The server said:\n smtp Аўтэнтыфікацыя не ўдалася. Паведамленне сервера:\n
+Destination: ConfigView Прызначэнне:
+: Connection refused or host not found. smtp : Адмоўлена ў злучэнні ці сервер не знойдзены.
+None ConfigView Няма
+POP3 before SMTP ConfigView POP3 перад SMTP
+SSL ConfigView SSL
+. The server said:\n smtp . Паведамленне сервера:\n
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/de.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/de.catkeys
index 3a727d863e..2988ae4db2 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/de.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/de.catkeys
@@ -1,13 +1,16 @@
-1 german x-vnd.Haiku-SMTP 1052586247
-. The server said:\n smtp . Servermeldung:\n
-. The server says:\n smtp . Servermeldung:\n
-: Connection refused or host not found. smtp : Verbindung abgelehnt oder Host nicht gefunden.
-Connecting to server… smtp Mit Server verbinden…
-Destination: ConfigView Zielverzeichnis:
-ESMTP ConfigView ESMTP
-Error while logging in to %serv smtp Fehler beim Anmelden an %serv
-Error while opening connection to %serv smtp Fehler beim Verbinden mit %serv
-None ConfigView Keine
-POP3 authentication failed. The server said:\n smtp POP3-Authentifizierung fehlgeschlagen. Servermeldung:\n
-POP3 before SMTP ConfigView POP3 vor SMTP
+1 german x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView SMTP-Server:
+STARTTLS ConfigView STARTTLS
+Error while logging in to %serv smtp Fehler beim Anmelden an %serv
+Unencrypted ConfigView Unverschlüsselt
+. The server says:\n smtp . Servermeldung:\n
+ESMTP ConfigView ESMTP
+Connecting to server… smtp Mit Server verbinden…
+Error while opening connection to %serv smtp Fehler beim Verbinden mit %serv
+POP3 authentication failed. The server said:\n smtp POP3-Authentifizierung fehlgeschlagen. Servermeldung:\n
+Destination: ConfigView Zielverzeichnis:
+: Connection refused or host not found. smtp : Verbindung abgelehnt oder Host nicht gefunden.
+None ConfigView Keine
+POP3 before SMTP ConfigView POP3 vor SMTP
+SSL ConfigView SSL
+. The server said:\n smtp . Servermeldung:\n
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fi.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fi.catkeys
index 1033a52a42..a98a62e456 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fi.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Haiku-SMTP 1052586247
+1 finnish x-vnd.Haiku-SMTP 2740407895
. The server said:\n smtp . Palvelin sanoi:\n
. The server says:\n smtp . Palvelin sanoo:\n
: Connection refused or host not found. smtp : Yhteys torjuttiin tai tietokonetta ei löytynyt.
@@ -11,3 +11,6 @@ None ConfigView Ei mitään
POP3 authentication failed. The server said:\n smtp POP3-todennus epäonnistui. Palvelin sanoi:\n
POP3 before SMTP ConfigView POP3-yhteyskäytäntö ennen SMTP-yhteyskäytäntöä
SMTP server: ConfigView SMTP-palvelin:
+SSL ConfigView SSL
+STARTTLS ConfigView STARTTLS
+Unencrypted ConfigView Salaamaton
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fr.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fr.catkeys
new file mode 100644
index 0000000000..7ad5a791f9
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/fr.catkeys
@@ -0,0 +1,5 @@
+1 french x-vnd.Haiku-SMTP 985585962
+Destination: ConfigView Destination :
+None ConfigView Aucun
+POP3 before SMTP ConfigView POP3 avant SMTP
+SMTP server: ConfigView Serveur SMTP :
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/hr.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/hr.catkeys
new file mode 100644
index 0000000000..295f14d169
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/hr.catkeys
@@ -0,0 +1,15 @@
+1 croatian x-vnd.Haiku-SMTP 3852746446
+. The server said:\n smtp . Poslužitelj je rekao:\n
+. The server says:\n smtp . Poslužitelj je rekao:\n
+: Connection refused or host not found. smtp : Veza odbijena ili računalo nije pronađeno
+Connecting to server… smtp Spajanje sa poslužiteljem...
+Destination: ConfigView Odredište:
+ESMTP ConfigView ESMTP
+Error while logging in to %serv smtp Greška pri prijavi u %serv
+Error while opening connection to %serv smtp Greška pri otvaranju veze za %serv
+None ConfigView NIjedan
+POP3 authentication failed. The server said:\n smtp POP3 provjera valjanosti neuspjela. Poslužitelj je rekao:\n
+POP3 before SMTP ConfigView POP3 prije SMTP
+SMTP server: ConfigView SMTP poslužitelj:
+SSL ConfigView SSL
+Unencrypted ConfigView Nekodirano
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/lt.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/lt.catkeys
new file mode 100644
index 0000000000..f6ca0f1783
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/lt.catkeys
@@ -0,0 +1,16 @@
+1 lithuanian x-vnd.Haiku-SMTP 2740407895
+SMTP server: ConfigView SMTP serveris:
+STARTTLS ConfigView STARTTLS
+Error while logging in to %serv smtp Klaida registruojantis į seansą su %serv
+Unencrypted ConfigView ryšys nešifruotas
+. The server says:\n smtp . Serveris atsakė:\n
+ESMTP ConfigView ESMTP
+Connecting to server… smtp Jungiamasi prie serverio…
+Error while opening connection to %serv smtp Klaida jungiantis prie serverio %serv
+POP3 authentication failed. The server said:\n smtp Tapatybės nustatymas per POP3 nepavyko. Serveris atsakė:\n
+Destination: ConfigView Paskirties aplankas:
+: Connection refused or host not found. smtp : ryšys atmestas arba serverio nepavyko rasti
+None ConfigView joks
+POP3 before SMTP ConfigView POP3 prieš SMTP
+SSL ConfigView SSL
+. The server said:\n smtp . Serveris atsakė:\n
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/nl.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/nl.catkeys
new file mode 100644
index 0000000000..36add92bae
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/nl.catkeys
@@ -0,0 +1,16 @@
+1 dutch; flemish x-vnd.Haiku-SMTP 2740407895
+SMTP server: ConfigView SMTP server:
+STARTTLS ConfigView STARTTLS
+Error while logging in to %serv smtp Fout bij het inloggen in %serv
+Unencrypted ConfigView Niet-versleuteld
+. The server says:\n smtp . De server zegt:\n
+ESMTP ConfigView ESMTP
+Connecting to server… smtp Verbinden met de server...
+Error while opening connection to %serv smtp Fout tijdens het openen van de connectie met %serv
+POP3 authentication failed. The server said:\n smtp POP3 authenticatie gefaald. De server zegt:\n
+Destination: ConfigView Doel:
+: Connection refused or host not found. smtp : Verbinding afgewezen of host niet gevonden.
+None ConfigView Geen
+POP3 before SMTP ConfigView POP3 voor SMTP
+SSL ConfigView SSL
+. The server said:\n smtp . De server zei:\n
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/sk.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/sk.catkeys
index 6cdd34b5da..797a1a7232 100644
--- a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/sk.catkeys
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/sk.catkeys
@@ -1,13 +1,16 @@
-1 slovak x-vnd.Haiku-SMTP 1052586247
-. The server said:\n smtp . Server povedal:\n
-. The server says:\n smtp . Server hovorí:\n
-: Connection refused or host not found. smtp : Spojenie odmietnuté alebo hostiteľ nenájdený.
-Connecting to server… smtp Pripájanie k serveru...
-Destination: ConfigView Cieľ:
-ESMTP ConfigView ESMTP
-Error while logging in to %serv smtp Chyba pri prihlasovaní k %serv
-Error while opening connection to %serv smtp Chyba počas otvárania spojenia s %serv
-None ConfigView Žiadne
-POP3 authentication failed. The server said:\n smtp Autentifikácia POP3 zlyhala. Server povedal:\n
-POP3 before SMTP ConfigView POP3, potom SMTP
+1 slovak x-vnd.Haiku-SMTP 2740407895
SMTP server: ConfigView Server SMTP:
+STARTTLS ConfigView StartTLS
+Error while logging in to %serv smtp Chyba pri prihlasovaní k %serv
+Unencrypted ConfigView Nešifrované
+. The server says:\n smtp . Server hovorí:\n
+ESMTP ConfigView ESMTP
+Connecting to server… smtp Pripájanie k serveru…
+Error while opening connection to %serv smtp Chyba počas otvárania spojenia s %serv
+POP3 authentication failed. The server said:\n smtp Autentifikácia POP3 zlyhala. Server povedal:\n
+Destination: ConfigView Cieľ:
+: Connection refused or host not found. smtp : Spojenie odmietnuté alebo hostiteľ nenájdený.
+None ConfigView Žiadne
+POP3 before SMTP ConfigView POP3, potom SMTP
+SSL ConfigView SSL
+. The server said:\n smtp . Server povedal:\n
diff --git a/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/uk.catkeys b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/uk.catkeys
new file mode 100644
index 0000000000..d1c996dfe9
--- /dev/null
+++ b/data/catalogs/add-ons/mail_daemon/outbound_protocols/smtp/uk.catkeys
@@ -0,0 +1 @@
+1 ukrainian x-vnd.Haiku-SMTP 0
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/be.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/be.catkeys
new file mode 100644
index 0000000000..599db01042
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/be.catkeys
@@ -0,0 +1,27 @@
+1 belarusian x-vnd.Haiku-mixer.media_addon 3450667169
+Input gain controls represent AudioMixer Уваходныя рэгулятары узмацнення
+Linear interpolation AudioMixer Линейная iнтэрпаляцыя
+Virtual output channels AudioMixer Вiртуальныя выхадныя каналы
+Refuse output format changes AudioMixer Адмовіць змяняць выхадны фармат
+Output mapping AudioMixer Мапа вывадаў
+Allow input channel remapping AudioMixer Дазволiць перапрызначэнне ўваходнага канала
+Resampling algorithm AudioMixer Алгарытм рэсэмплінгу
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Аслабiць выхад мiксеру на 3дБ(як у BeOS R5)
+Display balance control for stereo connections AudioMixer Паказать рэгулятар балансу для стэрэа злучэнняў
+To output AudioMixer Выхад
+not connected AudioMixer Ня злучана
+Refuse input format changes AudioMixer Адмова змен ўваходнага фармату
+Drop/repeat samples AudioMixer Прапусцiць/паўтарыць сэмплы
+Output channel sources AudioMixer Крыніцы выхаднога каналу
+dB AudioMixer дБ
+Gain controls AudioMixer Рэгулятары ўзмацнення
+Input mapping AudioMixer Перапрызначенне ўваходаў
+Mute AudioMixer Сцішыць
+Input channel destinations AudioMixer Назначэнне ўваходных каналаў
+To master AudioMixer Да асноўнага
+Master output AudioMixer Асноўны выхад
+Setup AudioMixer Наладкі
+Use non linear gain sliders (like BeOS R5) AudioMixer Нелінейнае кіраванне гукам (як у BeOS R5)
+Gain AudioMixer Узмацненне
+Allow output channel remapping AudioMixer Дазволiць перапрызначэнне выхаднога каналу
+Physical input channels AudioMixer Фiзiчныя ўваходныя каналы
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/de.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/de.catkeys
new file mode 100644
index 0000000000..99d15acaf9
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/de.catkeys
@@ -0,0 +1,27 @@
+1 german x-vnd.Haiku-mixer.media_addon 3450667169
+Input gain controls represent AudioMixer Regler für Eingangslautstärke sind
+Linear interpolation AudioMixer Lineare Interpolation
+Virtual output channels AudioMixer Virtuelle Ausgangskanäle
+Refuse output format changes AudioMixer Änderungen des Ausgabeformats verhindern
+Output mapping AudioMixer Ausgangs-Zuordnung
+Allow input channel remapping AudioMixer Neuzuordnung der Eingangskanäle erlauben
+Resampling algorithm AudioMixer Resample-Algorithmus
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Mixerausgabe um 3dB dämpfen (wie BeOS R5)
+Display balance control for stereo connections AudioMixer Balance-Regler für Stereo-Anschlüsse anzeigen
+To output AudioMixer Zum Ausgang
+not connected AudioMixer nicht verbunden
+Refuse input format changes AudioMixer Änderungen des Eingangsformats verhindern
+Drop/repeat samples AudioMixer Samples auslassen/wiederholen
+Output channel sources AudioMixer Ausgangskanalquellen
+dB AudioMixer dB
+Gain controls AudioMixer Lautstärke
+Input mapping AudioMixer Eingangs-Zuordnung
+Mute AudioMixer Stumm
+Input channel destinations AudioMixer Eingangskanalziele
+To master AudioMixer Zum Master
+Master output AudioMixer Master-Ausgang
+Setup AudioMixer Einstellungen
+Use non linear gain sliders (like BeOS R5) AudioMixer Nicht-lineare Lautstärkeregler (wie BeOS R5)
+Gain AudioMixer Verstärkung
+Allow output channel remapping AudioMixer Neuzuordnung der Ausgangskanäle erlauben
+Physical input channels AudioMixer Physische Eingangskanäle
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/fi.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/fi.catkeys
new file mode 100644
index 0000000000..b41f58376b
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/fi.catkeys
@@ -0,0 +1,27 @@
+1 finnish x-vnd.Haiku-mixer.media_addon 3450667169
+Allow input channel remapping AudioMixer Salli tulokanavien uudelleenkuvaus
+Allow output channel remapping AudioMixer Salli lähtökanavien uudelleennäytteistys
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer 3 dB:n Vaimennussekoittajalähtö (kuten BeOS R5)
+Display balance control for stereo connections AudioMixer Näytä balanssiohjaus stereoyhteyksille
+Drop/repeat samples AudioMixer Pudota/toista näytteistys
+Gain AudioMixer Vahvistus
+Gain controls AudioMixer Vahvistusohjaimet
+Input channel destinations AudioMixer Tulokanavakohteet
+Input gain controls represent AudioMixer Tulovahvistusohjaimet esittää
+Input mapping AudioMixer Tulokuvaus
+Linear interpolation AudioMixer Lineaarinen interpolointi
+Master output AudioMixer Master-lähtö
+Mute AudioMixer Mykistä
+Output channel sources AudioMixer Lähtökanavalähteet
+Output mapping AudioMixer Lähtökuvaus
+Physical input channels AudioMixer Fyysiset tulokanavat
+Refuse input format changes AudioMixer Kiellä tulomuodon muutokset
+Refuse output format changes AudioMixer Kiellä lähtömuodon muutokset
+Resampling algorithm AudioMixer Uusintanäytealgoritmi
+Setup AudioMixer Asetus
+To master AudioMixer Master-laitteelle
+To output AudioMixer Lähtöön
+Use non linear gain sliders (like BeOS R5) AudioMixer Käytä ei-lineaarisia vahvistusliukukytkimiä (kuten BeOS R5)
+Virtual output channels AudioMixer Virtuaaliset lähtökanavat
+dB AudioMixer dB
+not connected AudioMixer ei ole yhdistetty
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/lt.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/lt.catkeys
new file mode 100644
index 0000000000..b59efb78d8
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/lt.catkeys
@@ -0,0 +1,27 @@
+1 lithuanian x-vnd.Haiku-mixer.media_addon 3450667169
+Input gain controls represent AudioMixer Įvesties stiprinimo valdikliai atspindi
+Linear interpolation AudioMixer linijinė interpoliacija
+Virtual output channels AudioMixer virtualius išvesties kanalus
+Refuse output format changes AudioMixer Neleisti išvesties formato keitimų
+Output mapping AudioMixer Išvesties susiejimas
+Allow input channel remapping AudioMixer Leisti įvesties kanalų persiejimą
+Resampling algorithm AudioMixer Garso elementų atrankos algoritmas
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Sumažinti maišiklio išvesties garsį 3 dB (kaip „BeOS R5“)
+Display balance control for stereo connections AudioMixer Rodyti balanso valdiklius stereofoninėms jungtims
+To output AudioMixer Į išvestį
+not connected AudioMixer neprijungta
+Refuse input format changes AudioMixer Neleisti įvesties formato keitimų
+Drop/repeat samples AudioMixer Praleisti / kartoti garso elementus
+Output channel sources AudioMixer Išvesties kanalo šaltiniai
+dB AudioMixer dB
+Gain controls AudioMixer Stiprinimo valdikliai
+Input mapping AudioMixer Įvesties susiejimas
+Mute AudioMixer Nutildyti
+Input channel destinations AudioMixer Įvesties kanalų paskirtys
+To master AudioMixer Į pagrindinį
+Master output AudioMixer Pagrindinė išvestis
+Setup AudioMixer Nuostatos
+Use non linear gain sliders (like BeOS R5) AudioMixer Naudoti nelinijinius stiprinimo šliaužiklius (kaip „BeOS R5“)
+Gain AudioMixer Stiprinimas
+Allow output channel remapping AudioMixer Leisti išvesties kanalų persiejimą
+Physical input channels AudioMixer fizinius įvesties kanalus
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/nl.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/nl.catkeys
new file mode 100644
index 0000000000..f9ab754ddd
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/nl.catkeys
@@ -0,0 +1,27 @@
+1 dutch; flemish x-vnd.Haiku-mixer.media_addon 3450667169
+Input gain controls represent AudioMixer Invoer versterkingsknoppen representeren
+Linear interpolation AudioMixer Lineaire interpolatie
+Virtual output channels AudioMixer Virtuele uitvoerkanalen
+Refuse output format changes AudioMixer Weiger wijzigingen van het uitvoerformaat
+Output mapping AudioMixer Uitgang mapping
+Allow input channel remapping AudioMixer Sta toe het invoerkanaal opnieuw te mappen
+Resampling algorithm AudioMixer Resampling algorithme
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Verzwakken mixeruitgang met 3dB (zoals BeOS R5)
+Display balance control for stereo connections AudioMixer Balansknop voor stereoverbindingen weergeven
+To output AudioMixer Uitvoer
+not connected AudioMixer niet verbonden
+Refuse input format changes AudioMixer Weiger veranderingen in invoerformaat
+Drop/repeat samples AudioMixer Drop/herhaal samples
+Output channel sources AudioMixer Uitgangskanaal bronnen
+dB AudioMixer dB
+Gain controls AudioMixer Gain instellingen
+Input mapping AudioMixer Invoermapping
+Mute AudioMixer Dempen
+Input channel destinations AudioMixer Ingang kanaal bestemming
+To master AudioMixer Naar master
+Master output AudioMixer Masteruitvoer
+Setup AudioMixer Instellingen
+Use non linear gain sliders (like BeOS R5) AudioMixer Gebruik nonlineare versterkingsschuifknoppen (zoals BeOS R5)
+Gain AudioMixer Versterking
+Allow output channel remapping AudioMixer Uitvoerkanaal hermappen toelaten
+Physical input channels AudioMixer Fysieke invoerkanalen
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/sk.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/sk.catkeys
new file mode 100644
index 0000000000..cdef6154a0
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/sk.catkeys
@@ -0,0 +1,27 @@
+1 slovak x-vnd.Haiku-mixer.media_addon 3450667169
+Input gain controls represent AudioMixer Ovládacie prvky vstupného zosilnenia predstavujú
+Linear interpolation AudioMixer Lineárna interpolácia
+Virtual output channels AudioMixer Virtuálne výstupné kanály
+Refuse output format changes AudioMixer Odmietnuť zmeny výstupného formátu
+Output mapping AudioMixer Mapovanie výstupu
+Allow input channel remapping AudioMixer Povoliť premapovanie vstupného kanála
+Resampling algorithm AudioMixer Algoritmus prevzorkovania
+Attenuate mixer output by 3dB (like BeOS R5) AudioMixer Utlmiť výstup zmiešavačao 3dB (ako BeOS R5)
+Display balance control for stereo connections AudioMixer Zobraziť ovládanie vyváženia pri stereo spojeniach
+To output AudioMixer Na výstup
+not connected AudioMixer nepripojené
+Refuse input format changes AudioMixer Odmietnuť zmeny formátu vstupu
+Drop/repeat samples AudioMixer Zahodiť/opakovať vzorky
+Output channel sources AudioMixer Zdroje výstupného kanála
+dB AudioMixer dB
+Gain controls AudioMixer Ovládanie zosilnenia
+Input mapping AudioMixer Mapovanie vstupu
+Mute AudioMixer Stlmiť
+Input channel destinations AudioMixer Ciele vstupného kanála
+To master AudioMixer Na hlavný
+Master output AudioMixer Hlavný výstup
+Setup AudioMixer Nastavenie
+Use non linear gain sliders (like BeOS R5) AudioMixer Použiť nelineárne posuvníky zosilnenia (ako BeOS R5)
+Gain AudioMixer Zosilnenie
+Allow output channel remapping AudioMixer Povoliť premapovanie výstupných kanálov
+Physical input channels AudioMixer Fyzické vstupné kanály
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/sv.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/sv.catkeys
new file mode 100644
index 0000000000..58e64bf668
--- /dev/null
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/sv.catkeys
@@ -0,0 +1 @@
+1 swedish x-vnd.Haiku-mixer.media_addon 0
diff --git a/data/catalogs/add-ons/screen_savers/butterfly/hr.catkeys b/data/catalogs/add-ons/screen_savers/butterfly/hr.catkeys
new file mode 100644
index 0000000000..ff6dd07aad
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/butterfly/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-ButterflyScreensaver 3604552753
+by Geoffry Song Screensaver Butterfly napravio Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/butterfly/lt.catkeys b/data/catalogs/add-ons/screen_savers/butterfly/lt.catkeys
new file mode 100644
index 0000000000..44c1c8754b
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/butterfly/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-ButterflyScreensaver 3604552753
+by Geoffry Song Screensaver Butterfly sukurtas Geoffry'o Song'o
diff --git a/data/catalogs/add-ons/screen_savers/butterfly/nl.catkeys b/data/catalogs/add-ons/screen_savers/butterfly/nl.catkeys
new file mode 100644
index 0000000000..373df87151
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/butterfly/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-ButterflyScreensaver 3604552753
+by Geoffry Song Screensaver Butterfly door Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/debugnow/hr.catkeys b/data/catalogs/add-ons/screen_savers/debugnow/hr.catkeys
new file mode 100644
index 0000000000..70c7bd664c
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/debugnow/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-DebugNowScreensaver 822203648
+by Ryan Leavengood Screensaver DebugNow napisao Ryan Leavengood
diff --git a/data/catalogs/add-ons/screen_savers/debugnow/lt.catkeys b/data/catalogs/add-ons/screen_savers/debugnow/lt.catkeys
new file mode 100644
index 0000000000..8f4c277e6f
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/debugnow/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-DebugNowScreensaver 822203648
+by Ryan Leavengood Screensaver DebugNow sukurtas Ryan'o Leavengood'o
diff --git a/data/catalogs/add-ons/screen_savers/debugnow/nl.catkeys b/data/catalogs/add-ons/screen_savers/debugnow/nl.catkeys
new file mode 100644
index 0000000000..bf25e5ee4d
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/debugnow/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-DebugNowScreensaver 822203648
+by Ryan Leavengood Screensaver DebugNow door Ryan Leavengood
diff --git a/data/catalogs/add-ons/screen_savers/flurry/hr.catkeys b/data/catalogs/add-ons/screen_savers/flurry/hr.catkeys
new file mode 100644
index 0000000000..723e85d2c2
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/flurry/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-Flurry 3686556109
+Flurry System name Nalet
diff --git a/data/catalogs/add-ons/screen_savers/flurry/lt.catkeys b/data/catalogs/add-ons/screen_savers/flurry/lt.catkeys
new file mode 100644
index 0000000000..f6a1f1840c
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/flurry/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-Flurry 3686556109
+Flurry System name Sąmyšis
diff --git a/data/catalogs/add-ons/screen_savers/flurry/nl.catkeys b/data/catalogs/add-ons/screen_savers/flurry/nl.catkeys
new file mode 100644
index 0000000000..f25633da6d
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/flurry/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-Flurry 3686556109
+Flurry System name Flurry
diff --git a/data/catalogs/add-ons/screen_savers/haiku/hr.catkeys b/data/catalogs/add-ons/screen_savers/haiku/hr.catkeys
new file mode 100644
index 0000000000..1c554fdb94
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/haiku/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-HaikuScreensaver 1031480431
+by Marcus Overhagen Screensaver Haiku izradio Marcus Overhagen
diff --git a/data/catalogs/add-ons/screen_savers/haiku/lt.catkeys b/data/catalogs/add-ons/screen_savers/haiku/lt.catkeys
new file mode 100644
index 0000000000..b1b19ad031
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/haiku/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-HaikuScreensaver 1031480431
+by Marcus Overhagen Screensaver Haiku sukurtas Marcus'o Overhagen'o
diff --git a/data/catalogs/add-ons/screen_savers/haiku/nl.catkeys b/data/catalogs/add-ons/screen_savers/haiku/nl.catkeys
new file mode 100644
index 0000000000..520f517acd
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/haiku/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-HaikuScreensaver 1031480431
+by Marcus Overhagen Screensaver Haiku door Marcus Overhagen
diff --git a/data/catalogs/add-ons/screen_savers/icons/hr.catkeys b/data/catalogs/add-ons/screen_savers/icons/hr.catkeys
new file mode 100644
index 0000000000..8d1c51d0e0
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/icons/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-IconsScreensaver 3278763328
+by Vincent Duvert Screensaver Icons napisao Vincent Duvert
diff --git a/data/catalogs/add-ons/screen_savers/icons/lt.catkeys b/data/catalogs/add-ons/screen_savers/icons/lt.catkeys
new file mode 100644
index 0000000000..004733946c
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/icons/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-IconsScreensaver 3278763328
+by Vincent Duvert Screensaver Icons sukurtas Vincento Duverto
diff --git a/data/catalogs/add-ons/screen_savers/icons/nl.catkeys b/data/catalogs/add-ons/screen_savers/icons/nl.catkeys
new file mode 100644
index 0000000000..a05869d0a1
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/icons/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-IconsScreensaver 3278763328
+by Vincent Duvert Screensaver Icons door Vincent Duvert
diff --git a/data/catalogs/add-ons/screen_savers/ifs/be.catkeys b/data/catalogs/add-ons/screen_savers/ifs/be.catkeys
index 28e40839fd..74759147e9 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/be.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/be.catkeys
@@ -1,4 +1,3 @@
-1 belarusian x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Iterated Function System\n\n© 1997 Massimino Pascal\n\nпартаваны Stephan Aßmus\n
+1 belarusian x-vnd.Haiku-IFSScreensaver 2945300243
Morphing speed: Screensaver IFS Хуткасць морфінгу:
Render dots additive Screensaver IFS Аддытыўны рэндэрынг
diff --git a/data/catalogs/add-ons/screen_savers/ifs/de.catkeys b/data/catalogs/add-ons/screen_savers/ifs/de.catkeys
index 00bfa1926b..f6522c013d 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/de.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/de.catkeys
@@ -1,4 +1,3 @@
-1 german x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver Portierung von Stephan Aßmus\n
+1 german x-vnd.Haiku-IFSScreensaver 2945300243
Morphing speed: Screensaver IFS Wandelgeschwindigkeit:
Render dots additive Screensaver IFS Punkte additiv berechnen
diff --git a/data/catalogs/add-ons/screen_savers/ifs/fi.catkeys b/data/catalogs/add-ons/screen_savers/ifs/fi.catkeys
index 5140ad1e31..cf5b82ffe6 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/fi.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/fi.catkeys
@@ -1,4 +1,5 @@
-1 finnish x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Iteroitu funktiojärjestelmä\n\n© 1997 Massimino Pascal\n\nxnäytönsäästäjäsiirron tekijä: Stephan Aßmus\n
+1 finnish x-vnd.Haiku-IFSScreensaver 2018309174
+%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver-sovittaja: Stephan Aßmus\n
+Iterated Function System Screensaver IFS Iteroitu funktiojärjestelmä
Morphing speed: Screensaver IFS Muodonmuunnosnopeus:
Render dots additive Screensaver IFS Renderöi pisteet
diff --git a/data/catalogs/add-ons/screen_savers/ifs/fr.catkeys b/data/catalogs/add-ons/screen_savers/ifs/fr.catkeys
index 577293ee69..bf9c74903f 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/fr.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/fr.catkeys
@@ -1,4 +1,3 @@
-1 french x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Système de fonctions itérées\n\n© 1997 Massimino Pascal\n\nporté à partir de xscreensaver par Stephan Aßmus\n
+1 french x-vnd.Haiku-IFSScreensaver 2945300243
Morphing speed: Screensaver IFS Vitesse de transformation :
Render dots additive Screensaver IFS Rendu additif des points
diff --git a/data/catalogs/add-ons/screen_savers/ifs/lt.catkeys b/data/catalogs/add-ons/screen_savers/ifs/lt.catkeys
new file mode 100644
index 0000000000..ce06a14c63
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/ifs/lt.catkeys
@@ -0,0 +1,5 @@
+1 lithuanian x-vnd.Haiku-IFSScreensaver 2018309174
+Iterated Function System Screensaver IFS Fraktalo geometrija
+Morphing speed: Screensaver IFS Transformacijų greitis:
+%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS %screenSaverName%\n\n© 1997 Massimino Pascal\n\niš „xscreensaver“ adaptavo Stephan'as Aßmus'as\n
+Render dots additive Screensaver IFS Adityviai atvaizduoti taškus
diff --git a/data/catalogs/add-ons/screen_savers/ifs/nl.catkeys b/data/catalogs/add-ons/screen_savers/ifs/nl.catkeys
new file mode 100644
index 0000000000..5399f39ca1
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/ifs/nl.catkeys
@@ -0,0 +1,3 @@
+1 dutch; flemish x-vnd.Haiku-IFSScreensaver 2945300243
+Morphing speed: Screensaver IFS Overgangssnelheid:
+Render dots additive Screensaver IFS Punten additief renderen
diff --git a/data/catalogs/add-ons/screen_savers/ifs/ru.catkeys b/data/catalogs/add-ons/screen_savers/ifs/ru.catkeys
index 93623bc20b..566663e10f 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/ru.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/ru.catkeys
@@ -1,4 +1,3 @@
-1 russian x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Геометрия фрактала\n\nВсе права защищены © 1997 Massimino Pascal\n\nпортировал из xscreensaver Stephan Aßmus\n
+1 russian x-vnd.Haiku-IFSScreensaver 2945300243
Morphing speed: Screensaver IFS Скорость трансформирования:
Render dots additive Screensaver IFS Аддитивный рендеринг точек
diff --git a/data/catalogs/add-ons/screen_savers/ifs/sk.catkeys b/data/catalogs/add-ons/screen_savers/ifs/sk.catkeys
index 7eccba3bc9..8f7bd56292 100644
--- a/data/catalogs/add-ons/screen_savers/ifs/sk.catkeys
+++ b/data/catalogs/add-ons/screen_savers/ifs/sk.catkeys
@@ -1,4 +1,5 @@
-1 slovak x-vnd.Haiku-IFSScreensaver 1843903800
-Iterated Function System\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS Iterovaný funkčný systém\n\n© 1997 Massimino Pascal\n\nport pre xscreensaver napísal Stephan Aßmus\n
+1 slovak x-vnd.Haiku-IFSScreensaver 2018309174
+Iterated Function System Screensaver IFS Systém iterovaných funkcií
Morphing speed: Screensaver IFS Rýchlosť premeny:
+%screenSaverName%\n\n© 1997 Massimino Pascal\n\nxscreensaver port by Stephan Aßmus\n Screensaver IFS %screenSaverName%\n\n © 1997 Massimino Pascal\n\n port xscreensaver, Stephan Aßmus\n
Render dots additive Screensaver IFS Vykresľovať body aditívne
diff --git a/data/catalogs/add-ons/screen_savers/leaves/be.catkeys b/data/catalogs/add-ons/screen_savers/leaves/be.catkeys
index 177ebbd9ee..1944052653 100644
--- a/data/catalogs/add-ons/screen_savers/leaves/be.catkeys
+++ b/data/catalogs/add-ons/screen_savers/leaves/be.catkeys
@@ -1,6 +1,6 @@
1 belarusian x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Хуткасць:
-Leaf size: Leaves Памер ліста:
-Leaves Leaves Лістапад
Size variation: Leaves Памер:
+Leaves Leaves Лістапад
+Leaf size: Leaves Памер ліста:
by Deyan Genovski, Geoffry Song Leaves Аўтары: Deyan Genovski, Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/leaves/de.catkeys b/data/catalogs/add-ons/screen_savers/leaves/de.catkeys
index 5b3192e473..2d4e1abfc0 100644
--- a/data/catalogs/add-ons/screen_savers/leaves/de.catkeys
+++ b/data/catalogs/add-ons/screen_savers/leaves/de.catkeys
@@ -1,6 +1,6 @@
1 german x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Fallgeschwindigkeit:
-Leaf size: Leaves Blattgröße:
-Leaves Leaves Leaves
Size variation: Leaves Größenunterschiede:
+Leaves Leaves Leaves
+Leaf size: Leaves Blattgröße:
by Deyan Genovski, Geoffry Song Leaves von Deyan Genovski, Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/leaves/lt.catkeys b/data/catalogs/add-ons/screen_savers/leaves/lt.catkeys
new file mode 100644
index 0000000000..9844f482ed
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/leaves/lt.catkeys
@@ -0,0 +1,6 @@
+1 lithuanian x-vnd.Haiku-LeavesScreensaver 3469951032
+Drop rate: Leaves Kritimo greitis:
+Size variation: Leaves Dydžio varijavimas:
+Leaves Leaves Lapai
+Leaf size: Leaves Lapų dydis:
+by Deyan Genovski, Geoffry Song Leaves sukurtas Deyan'o Genovski'o ir Geoffry'o Song'o
diff --git a/data/catalogs/add-ons/screen_savers/leaves/nl.catkeys b/data/catalogs/add-ons/screen_savers/leaves/nl.catkeys
new file mode 100644
index 0000000000..0c2a38a01e
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/leaves/nl.catkeys
@@ -0,0 +1,6 @@
+1 dutch; flemish x-vnd.Haiku-LeavesScreensaver 3469951032
+Drop rate: Leaves Valsnelheid:
+Size variation: Leaves Variatie in grootte:
+Leaves Leaves Bladeren
+Leaf size: Leaves Bladgrootte:
+by Deyan Genovski, Geoffry Song Leaves door Deyan Genovski, Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/leaves/ru.catkeys b/data/catalogs/add-ons/screen_savers/leaves/ru.catkeys
index 8d1f70e8eb..322430c8af 100644
--- a/data/catalogs/add-ons/screen_savers/leaves/ru.catkeys
+++ b/data/catalogs/add-ons/screen_savers/leaves/ru.catkeys
@@ -1,6 +1,6 @@
1 russian x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Скорость падения:
-Leaf size: Leaves Размеры листьев:
-Leaves Leaves Листья
Size variation: Leaves Вариации размеров:
+Leaves Leaves Листья
+Leaf size: Leaves Размеры листьев:
by Deyan Genovski, Geoffry Song Leaves разработали Deyan Genovski и Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/leaves/sk.catkeys b/data/catalogs/add-ons/screen_savers/leaves/sk.catkeys
index db14e8dbdd..93c4f614be 100644
--- a/data/catalogs/add-ons/screen_savers/leaves/sk.catkeys
+++ b/data/catalogs/add-ons/screen_savers/leaves/sk.catkeys
@@ -1,6 +1,6 @@
1 slovak x-vnd.Haiku-LeavesScreensaver 3469951032
Drop rate: Leaves Rýchlosť klesania:
-Leaf size: Leaves Veľkosť listu:
-Leaves Leaves Listy
Size variation: Leaves Variácia veľkosti:
+Leaves Leaves Listy
+Leaf size: Leaves Veľkosť listu:
by Deyan Genovski, Geoffry Song Leaves napísali Deyan Genovski, Geoffry Song
diff --git a/data/catalogs/add-ons/screen_savers/message/lt.catkeys b/data/catalogs/add-ons/screen_savers/message/lt.catkeys
new file mode 100644
index 0000000000..57c44a2dfe
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/message/lt.catkeys
@@ -0,0 +1,3 @@
+1 lithuanian x-vnd.Haiku-MessageScreensaver 854294461
+Insert clever anecdote or phrase here! Screensaver Message Čia įrašykite gerą anekdotą ar posakį!
+by Ryan Leavengood Screensaver Message sukurtas Ryan'o Leavengood'o
diff --git a/data/catalogs/add-ons/screen_savers/message/nl.catkeys b/data/catalogs/add-ons/screen_savers/message/nl.catkeys
new file mode 100644
index 0000000000..d761ff8feb
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/message/nl.catkeys
@@ -0,0 +1,3 @@
+1 dutch; flemish x-vnd.Haiku-MessageScreensaver 854294461
+Insert clever anecdote or phrase here! Screensaver Message Plak slimme anekdote of zin hier!
+by Ryan Leavengood Screensaver Message door Ryan Leavengood
diff --git a/data/catalogs/add-ons/screen_savers/simpleclock/hr.catkeys b/data/catalogs/add-ons/screen_savers/simpleclock/hr.catkeys
new file mode 100644
index 0000000000..0a379825e1
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/simpleclock/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-SimpleClock 3791523607
+SimpleClock System name Jednostavni sat
diff --git a/data/catalogs/add-ons/screen_savers/simpleclock/lt.catkeys b/data/catalogs/add-ons/screen_savers/simpleclock/lt.catkeys
new file mode 100644
index 0000000000..78b4a1692d
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/simpleclock/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-SimpleClock 3791523607
+SimpleClock System name Paprastas laikrodis
diff --git a/data/catalogs/add-ons/screen_savers/simpleclock/nl.catkeys b/data/catalogs/add-ons/screen_savers/simpleclock/nl.catkeys
new file mode 100644
index 0000000000..ac5b776103
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/simpleclock/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-SimpleClock 3791523607
+SimpleClock System name SimpleClock
diff --git a/data/catalogs/add-ons/screen_savers/slideshowsaver/hr.catkeys b/data/catalogs/add-ons/screen_savers/slideshowsaver/hr.catkeys
new file mode 100644
index 0000000000..ea6526bf5f
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/slideshowsaver/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-SlideShowSaver 240581336
+SlideShowSaver System name Čuvar kliznog prikaza
diff --git a/data/catalogs/add-ons/screen_savers/slideshowsaver/lt.catkeys b/data/catalogs/add-ons/screen_savers/slideshowsaver/lt.catkeys
new file mode 100644
index 0000000000..67242f3d40
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/slideshowsaver/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-SlideShowSaver 240581336
+SlideShowSaver System name Skaidžių peržiūra
diff --git a/data/catalogs/add-ons/screen_savers/slideshowsaver/nl.catkeys b/data/catalogs/add-ons/screen_savers/slideshowsaver/nl.catkeys
new file mode 100644
index 0000000000..3cd013d626
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/slideshowsaver/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-SlideShowSaver 240581336
+SlideShowSaver System name SlideShowSaver
diff --git a/data/catalogs/add-ons/screen_savers/spider/be.catkeys b/data/catalogs/add-ons/screen_savers/spider/be.catkeys
index 1f03c71d3e..fb3fb4bcaf 100644
--- a/data/catalogs/add-ons/screen_savers/spider/be.catkeys
+++ b/data/catalogs/add-ons/screen_savers/spider/be.catkeys
@@ -1,14 +1,14 @@
1 belarusian x-vnd.Haiku-SpiderScreensaver 1499771850
-Blue Screensaver Spider Сіні
-Color Screensaver Spider Колер
-Cyan Screensaver Spider Блакітны
-Gray Screensaver Spider Шэры
-Green Screensaver Spider Зялёны
-Max. points per polygon Screensaver Spider Колькасьць пунктаў на палігон
Max. polygon count Screensaver Spider Колькасць палігонаў
+Gray Screensaver Spider Шэры
Purple Screensaver Spider Пурпурны
Red Screensaver Spider Чырвоны
-Spider by stippi Screensaver Spider Павучок распрацаваны stippi
Trail depth Screensaver Spider Глыбіня следу
-Yellow Screensaver Spider Жоўты
+Color Screensaver Spider Колер
+Blue Screensaver Spider Сіні
for bonefish Screensaver Spider для bonefish
+Spider by stippi Screensaver Spider Павучок распрацаваны stippi
+Green Screensaver Spider Зялёны
+Cyan Screensaver Spider Блакітны
+Max. points per polygon Screensaver Spider Колькасьць пунктаў на палігон
+Yellow Screensaver Spider Жоўты
diff --git a/data/catalogs/add-ons/screen_savers/spider/de.catkeys b/data/catalogs/add-ons/screen_savers/spider/de.catkeys
index 4106796905..33ff3ec1c1 100644
--- a/data/catalogs/add-ons/screen_savers/spider/de.catkeys
+++ b/data/catalogs/add-ons/screen_savers/spider/de.catkeys
@@ -1,14 +1,14 @@
1 german x-vnd.Haiku-SpiderScreensaver 1499771850
-Blue Screensaver Spider Blau
-Color Screensaver Spider Farbe
-Cyan Screensaver Spider Blaugrün
-Gray Screensaver Spider Grau
-Green Screensaver Spider Grün
-Max. points per polygon Screensaver Spider Max. Punkte pro Polygon
Max. polygon count Screensaver Spider Max. Polygonzahl
+Gray Screensaver Spider Grau
Purple Screensaver Spider Lila
Red Screensaver Spider Rot
-Spider by stippi Screensaver Spider Spider von stippi
Trail depth Screensaver Spider Spurtiefe
-Yellow Screensaver Spider Gelb
+Color Screensaver Spider Farbe
+Blue Screensaver Spider Blau
for bonefish Screensaver Spider für bonefish
+Spider by stippi Screensaver Spider Spider von stippi
+Green Screensaver Spider Grün
+Cyan Screensaver Spider Blaugrün
+Max. points per polygon Screensaver Spider Max. Punkte pro Polygon
+Yellow Screensaver Spider Gelb
diff --git a/data/catalogs/add-ons/screen_savers/spider/hr.catkeys b/data/catalogs/add-ons/screen_savers/spider/hr.catkeys
new file mode 100644
index 0000000000..ece7814548
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/spider/hr.catkeys
@@ -0,0 +1,14 @@
+1 croatian x-vnd.Haiku-SpiderScreensaver 1499771850
+Blue Screensaver Spider Plava
+Color Screensaver Spider Boja
+Cyan Screensaver Spider Svijetloplava
+Gray Screensaver Spider Siva
+Green Screensaver Spider Zelena
+Max. points per polygon Screensaver Spider Maksimalno broj bodova po poligonu
+Max. polygon count Screensaver Spider Maksimalni broj poligona
+Purple Screensaver Spider Ljubičasta
+Red Screensaver Spider Crvena
+Spider by stippi Screensaver Spider Spider - stippi
+Trail depth Screensaver Spider Probna dubina
+Yellow Screensaver Spider Žuta
+for bonefish Screensaver Spider za bonefish
diff --git a/data/catalogs/add-ons/screen_savers/spider/lt.catkeys b/data/catalogs/add-ons/screen_savers/spider/lt.catkeys
new file mode 100644
index 0000000000..c44011ca91
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/spider/lt.catkeys
@@ -0,0 +1,14 @@
+1 lithuanian x-vnd.Haiku-SpiderScreensaver 1499771850
+Max. polygon count Screensaver Spider Didžiausias daugiakampių skaičius
+Gray Screensaver Spider Pilka
+Purple Screensaver Spider Purpurinė
+Red Screensaver Spider Raudona
+Trail depth Screensaver Spider Pėdsako gylis
+Color Screensaver Spider Spalva
+Blue Screensaver Spider Mėlyna
+for bonefish Screensaver Spider skirta „bonefish“
+Spider by stippi Screensaver Spider Voras
+Green Screensaver Spider Žalia
+Cyan Screensaver Spider Žydra
+Max. points per polygon Screensaver Spider Didž. taškų skaičius daugiakampyje
+Yellow Screensaver Spider Geltona
diff --git a/data/catalogs/add-ons/screen_savers/spider/nl.catkeys b/data/catalogs/add-ons/screen_savers/spider/nl.catkeys
new file mode 100644
index 0000000000..275b2563c2
--- /dev/null
+++ b/data/catalogs/add-ons/screen_savers/spider/nl.catkeys
@@ -0,0 +1,14 @@
+1 dutch; flemish x-vnd.Haiku-SpiderScreensaver 1499771850
+Max. polygon count Screensaver Spider Maximaal aantal polygonen
+Gray Screensaver Spider Grijs
+Purple Screensaver Spider Paars
+Red Screensaver Spider Rood
+Trail depth Screensaver Spider Spoor diepte
+Color Screensaver Spider Kleur
+Blue Screensaver Spider Blauw
+for bonefish Screensaver Spider voor bonefish
+Spider by stippi Screensaver Spider Spider door stippi
+Green Screensaver Spider Groen
+Cyan Screensaver Spider Cyaan
+Max. points per polygon Screensaver Spider Max. punten per polygon
+Yellow Screensaver Spider Geel
diff --git a/data/catalogs/add-ons/screen_savers/spider/ru.catkeys b/data/catalogs/add-ons/screen_savers/spider/ru.catkeys
index e873ea2fee..989204410a 100644
--- a/data/catalogs/add-ons/screen_savers/spider/ru.catkeys
+++ b/data/catalogs/add-ons/screen_savers/spider/ru.catkeys
@@ -1,14 +1,14 @@
1 russian x-vnd.Haiku-SpiderScreensaver 1499771850
-Blue Screensaver Spider Синий
-Color Screensaver Spider Цвет
-Cyan Screensaver Spider Циан
-Gray Screensaver Spider Серый
-Green Screensaver Spider Зеленый
-Max. points per polygon Screensaver Spider Максимальное количество точек в полигоне
Max. polygon count Screensaver Spider Максимальное количество полигонов
+Gray Screensaver Spider Серый
Purple Screensaver Spider Пурпурный
Red Screensaver Spider Красный
-Spider by stippi Screensaver Spider Разработал stippi
Trail depth Screensaver Spider Глубина следа
-Yellow Screensaver Spider Желтый
+Color Screensaver Spider Цвет
+Blue Screensaver Spider Синий
for bonefish Screensaver Spider для bonefish
+Spider by stippi Screensaver Spider Разработал stippi
+Green Screensaver Spider Зеленый
+Cyan Screensaver Spider Циан
+Max. points per polygon Screensaver Spider Максимальное количество точек в полигоне
+Yellow Screensaver Spider Желтый
diff --git a/data/catalogs/add-ons/screen_savers/spider/sk.catkeys b/data/catalogs/add-ons/screen_savers/spider/sk.catkeys
index 60acfe61d0..4e6f846a60 100644
--- a/data/catalogs/add-ons/screen_savers/spider/sk.catkeys
+++ b/data/catalogs/add-ons/screen_savers/spider/sk.catkeys
@@ -1,14 +1,14 @@
1 slovak x-vnd.Haiku-SpiderScreensaver 1499771850
-Blue Screensaver Spider Modrá
-Color Screensaver Spider Farba
-Cyan Screensaver Spider Azúrová
-Gray Screensaver Spider Šedá
-Green Screensaver Spider Zelená
-Max. points per polygon Screensaver Spider Max. bodov na polygón
Max. polygon count Screensaver Spider Max. počet polygónov
+Gray Screensaver Spider Šedá
Purple Screensaver Spider Fialová
Red Screensaver Spider Červená
-Spider by stippi Screensaver Spider Pavúk, napísal Stippi
Trail depth Screensaver Spider Hĺbka stopy
-Yellow Screensaver Spider Žltá
+Color Screensaver Spider Farba
+Blue Screensaver Spider Modrá
for bonefish Screensaver Spider pre rybaciu kosť
+Spider by stippi Screensaver Spider Pavúk, napísal Stippi
+Green Screensaver Spider Zelená
+Cyan Screensaver Spider Azúrová
+Max. points per polygon Screensaver Spider Max. bodov na polygón
+Yellow Screensaver Spider Žltá
diff --git a/data/catalogs/add-ons/tracker/zipomatic/be.catkeys b/data/catalogs/add-ons/tracker/zipomatic/be.catkeys
index 53e5493366..5d884c6c7f 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/be.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/be.catkeys
@@ -1,18 +1,18 @@
1 belarusian x-vnd.haiku.zip-o-matic 2207848100
-%ld files added. file:ZipOMaticWindow.cpp Дабаўлена %ld файл(а/аў).
1 file added. file:ZipOMaticWindow.cpp Дабаўлены адзін файл.
-Archive file:ZipperThread.cpp Архіў
-Archive created OK file:ZipOMaticWindow.cpp Архіў быў створаны паспяхова
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Насамрэч жадаеце спыніць стварэнне гэтага архіву?
-Continue file:ZipOMaticWindow.cpp Працягваць
+Stop file:ZipOMaticWindow.cpp Спыніць
Creating archive: %s file:ZipOMaticWindow.cpp Стварыць архіў: %s
-Do you want to stop them? file:ZipOMatic.cpp Жадаеце іх спыніць?
+Continue file:ZipOMaticWindow.cpp Працягваць
+Preparing to archive file:ZipperThread.cpp Падрыхтоўка да архівацыі
Drop files here. file:ZipOMaticWindow.cpp Кіньце файлы сюды
-Error creating archive file:ZipOMaticWindow.cpp Памылка падчас стварэння архіву
Filename: %s file:ZipOMaticWindow.cpp Імя файла: %s
Let them continue file:ZipOMatic.cpp Дазволіць ім працягваць
-Preparing to archive file:ZipperThread.cpp Падрыхтоўка да архівацыі
-Stop file:ZipOMaticWindow.cpp Спыніць
-Stop them file:ZipOMatic.cpp Спыніць іх
+Do you want to stop them? file:ZipOMatic.cpp Жадаеце іх спыніць?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Насамрэч жадаеце спыніць стварэнне гэтага архіву?
+%ld files added. file:ZipOMaticWindow.cpp Дабаўлена %ld файл(а/аў).
Stopped file:ZipOMaticWindow.cpp Спынена
+Archive file:ZipperThread.cpp Архіў
+Error creating archive file:ZipOMaticWindow.cpp Памылка падчас стварэння архіву
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp Зараз працуюць %ld копіяў праграмы Zip-O-Matic.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Архіў быў створаны паспяхова
+Stop them file:ZipOMatic.cpp Спыніць іх
diff --git a/data/catalogs/add-ons/tracker/zipomatic/de.catkeys b/data/catalogs/add-ons/tracker/zipomatic/de.catkeys
index ad0bda77ab..f87f3bf6fe 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/de.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/de.catkeys
@@ -1,18 +1,18 @@
1 german x-vnd.haiku.zip-o-matic 2207848100
-%ld files added. file:ZipOMaticWindow.cpp %ld Dateien wurden hinzugefügt.
1 file added. file:ZipOMaticWindow.cpp Eine Datei wurde hinzugefügt.
-Archive file:ZipperThread.cpp Archiv
-Archive created OK file:ZipOMaticWindow.cpp Archiv wurde fehlerfrei erzeugt.
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Soll die Archivierung wirklich abgebrochen werden?
-Continue file:ZipOMaticWindow.cpp Fortsetzen
+Stop file:ZipOMaticWindow.cpp Abbrechen
Creating archive: %s file:ZipOMaticWindow.cpp Archiv wird erzeugt: %s
-Do you want to stop them? file:ZipOMatic.cpp Soll abgebrochen werden?
+Continue file:ZipOMaticWindow.cpp Fortsetzen
+Preparing to archive file:ZipperThread.cpp Archivierung wird vorbereitet
Drop files here. file:ZipOMaticWindow.cpp Dateien hier fallen lassen.
-Error creating archive file:ZipOMaticWindow.cpp Fehler bei Erzeugung des Archivs.
Filename: %s file:ZipOMaticWindow.cpp Dateiname: %s
Let them continue file:ZipOMatic.cpp Fortsetzen zulassen
-Preparing to archive file:ZipperThread.cpp Archivierung wird vorbereitet
-Stop file:ZipOMaticWindow.cpp Abbrechen
-Stop them file:ZipOMatic.cpp Abbrechen
+Do you want to stop them? file:ZipOMatic.cpp Soll abgebrochen werden?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Soll die Archivierung wirklich abgebrochen werden?
+%ld files added. file:ZipOMaticWindow.cpp %ld Dateien wurden hinzugefügt.
Stopped file:ZipOMaticWindow.cpp Abgebrochen
+Archive file:ZipperThread.cpp Archiv
+Error creating archive file:ZipOMaticWindow.cpp Fehler bei Erzeugung des Archivs.
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp Es laufen %ld Zip-O-Matic-Instanzen.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Archiv wurde fehlerfrei erzeugt.
+Stop them file:ZipOMatic.cpp Abbrechen
diff --git a/data/catalogs/add-ons/tracker/zipomatic/hr.catkeys b/data/catalogs/add-ons/tracker/zipomatic/hr.catkeys
new file mode 100644
index 0000000000..8ebf093250
--- /dev/null
+++ b/data/catalogs/add-ons/tracker/zipomatic/hr.catkeys
@@ -0,0 +1,17 @@
+1 croatian x-vnd.haiku.zip-o-matic 1539564223
+%ld files added. file:ZipOMaticWindow.cpp %ld dodano datoteka
+1 file added. file:ZipOMaticWindow.cpp Dodana 1 datoteka
+Archive file:ZipperThread.cpp Arhiva
+Archive created OK file:ZipOMaticWindow.cpp Arhiva kreirana u redu
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Jesi li siguran da želiš zaustaviti stvaranje ove arhive?
+Continue file:ZipOMaticWindow.cpp Nastavi
+Creating archive: %s file:ZipOMaticWindow.cpp Stvaranje arhive: %s
+Do you want to stop them? file:ZipOMatic.cpp Da li ih želiš zaustaviti?
+Drop files here. file:ZipOMaticWindow.cpp Spusti datoteke ovdje.
+Error creating archive file:ZipOMaticWindow.cpp Greška pri stvaranju arhive
+Filename: %s file:ZipOMaticWindow.cpp Ime datoteke: %s
+Let them continue file:ZipOMatic.cpp Pusti ih da nastave
+Preparing to archive file:ZipperThread.cpp Priprema za arhiviranje
+Stop file:ZipOMaticWindow.cpp Stani
+Stop them file:ZipOMatic.cpp Zaustavi ih
+Stopped file:ZipOMaticWindow.cpp Zaustavljeno
diff --git a/data/catalogs/add-ons/tracker/zipomatic/lt.catkeys b/data/catalogs/add-ons/tracker/zipomatic/lt.catkeys
index 7a068f0ac6..beda16d7d3 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/lt.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/lt.catkeys
@@ -1,14 +1,18 @@
-1 lithuanian x-vnd.haiku.zip-o-matic 3034623778
-Archive file:ZipperThread.cpp Archyvas
-Archive created OK file:ZipOMaticWindow.cpp Archyvas sėkmingai sukurtas.
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Ar tikrai norite nutraukti archyvo kūrimą?
-Continue file:ZipOMaticWindow.cpp Tęsti
-Creating archive: %s file:ZipOMaticWindow.cpp Archyvo kūrimas: %s
-Do you want to stop them? file:ZipOMatic.cpp Nutraukti kūrimą?
-Error creating archive file:ZipOMaticWindow.cpp Klaida kuriant archyvą.
-Let them continue file:ZipOMatic.cpp Pratęsti
-Preparing to archive file:ZipperThread.cpp Ruošiamasi archyvavimui
+1 lithuanian x-vnd.haiku.zip-o-matic 2207848100
+1 file added. file:ZipOMaticWindow.cpp Pridėtas 1 failas
Stop file:ZipOMaticWindow.cpp Stabdyti
-Stop them file:ZipOMatic.cpp Sustabdyti vykdymą
+Creating archive: %s file:ZipOMaticWindow.cpp Archyvo kūrimas: %s
+Continue file:ZipOMaticWindow.cpp Tęsti
+Preparing to archive file:ZipperThread.cpp Ruošiamasi archyvuoti
+Drop files here. file:ZipOMaticWindow.cpp Archyvuotinus failus meskite čia.
+Filename: %s file:ZipOMaticWindow.cpp Failo vardas: %s
+Let them continue file:ZipOMatic.cpp Pratęsti
+Do you want to stop them? file:ZipOMatic.cpp Nutraukti kūrimą?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Ar tikrai norite nutraukti archyvo kūrimą?
+%ld files added. file:ZipOMaticWindow.cpp Pridėta failų: %ld.
Stopped file:ZipOMaticWindow.cpp Sustabdyta
+Archive file:ZipperThread.cpp Archyvas
+Error creating archive file:ZipOMaticWindow.cpp Klaida kuriant archyvą.
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp Paleista Zip-O-Matic procesų: %ld.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Archyvas sėkmingai sukurtas.
+Stop them file:ZipOMatic.cpp Sustabdyti vykdymą
diff --git a/data/catalogs/add-ons/tracker/zipomatic/nl.catkeys b/data/catalogs/add-ons/tracker/zipomatic/nl.catkeys
index a89567dd16..68467425ed 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/nl.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/nl.catkeys
@@ -1,17 +1,18 @@
-1 dutch x-vnd.haiku.zip-o-matic 829498916
-%ld files added. file:ZipOMaticWindow.cpp %ld bestanden toegevoegd.
+1 dutch; flemish x-vnd.haiku.zip-o-matic 2207848100
1 file added. file:ZipOMaticWindow.cpp 1 bestand toegevoegd.
-Archive file:ZipperThread.cpp Archief
-Archive created OK file:ZipOMaticWindow.cpp Creatie van archief gelukt
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Bent u zeker dat u de creatie van dit archief wilt stoppen?
-Continue file:ZipOMaticWindow.cpp Doorgaan
+Stop file:ZipOMaticWindow.cpp Stop
Creating archive: %s file:ZipOMaticWindow.cpp Creëert archief: %s
-Do you want to stop them? file:ZipOMatic.cpp Wilt u ze stoppen?
-Error creating archive file:ZipOMaticWindow.cpp Fout bij creatie van archief
+Continue file:ZipOMaticWindow.cpp Doorgaan
+Preparing to archive file:ZipperThread.cpp Archivering voorbereiden
+Drop files here. file:ZipOMaticWindow.cpp Plaats de bestanden hier.
Filename: %s file:ZipOMaticWindow.cpp Bestandsnaam: %s
Let them continue file:ZipOMatic.cpp Laat ze doorgaan
-Preparing to archive file:ZipperThread.cpp Archivering voorbereiden
-Stop file:ZipOMaticWindow.cpp Stop
-Stop them file:ZipOMatic.cpp Stoppen
+Do you want to stop them? file:ZipOMatic.cpp Wilt u ze stoppen?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Bent u zeker dat u de creatie van dit archief wilt stoppen?
+%ld files added. file:ZipOMaticWindow.cpp %ld bestanden toegevoegd.
Stopped file:ZipOMaticWindow.cpp Gestopt
+Archive file:ZipperThread.cpp Archief
+Error creating archive file:ZipOMaticWindow.cpp Fout bij creatie van archief
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp Uw %ld Zip-O-Matic zijn actief.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Creatie van archief gelukt
+Stop them file:ZipOMatic.cpp Stoppen
diff --git a/data/catalogs/add-ons/tracker/zipomatic/ru.catkeys b/data/catalogs/add-ons/tracker/zipomatic/ru.catkeys
index 36677556c7..3a5deac103 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/ru.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/ru.catkeys
@@ -1,18 +1,18 @@
1 russian x-vnd.haiku.zip-o-matic 2207848100
-%ld files added. file:ZipOMaticWindow.cpp Добавлено файлов: %ld
1 file added. file:ZipOMaticWindow.cpp 1 файл добавлен.
-Archive file:ZipperThread.cpp Архив
-Archive created OK file:ZipOMaticWindow.cpp Архив успешно создан
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Вы уверены, что хотите остановить создание этого архива?
-Continue file:ZipOMaticWindow.cpp Продолжить
+Stop file:ZipOMaticWindow.cpp Остановить
Creating archive: %s file:ZipOMaticWindow.cpp Создание архива: %s
-Do you want to stop them? file:ZipOMatic.cpp Вы хотите остановить их?
+Continue file:ZipOMaticWindow.cpp Продолжить
+Preparing to archive file:ZipperThread.cpp Подготовка к архивации
Drop files here. file:ZipOMaticWindow.cpp Переместите файлы сюда.
-Error creating archive file:ZipOMaticWindow.cpp Ошибка при создании архива
Filename: %s file:ZipOMaticWindow.cpp Имя архива: %s
Let them continue file:ZipOMatic.cpp Позволить им продолжить
-Preparing to archive file:ZipperThread.cpp Подготовка к архивации
-Stop file:ZipOMaticWindow.cpp Остановить
-Stop them file:ZipOMatic.cpp Остановить их
+Do you want to stop them? file:ZipOMatic.cpp Вы хотите остановить их?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Вы уверены, что хотите остановить создание этого архива?
+%ld files added. file:ZipOMaticWindow.cpp Добавлено файлов: %ld
Stopped file:ZipOMaticWindow.cpp Остановлено
+Archive file:ZipperThread.cpp Архив
+Error creating archive file:ZipOMaticWindow.cpp Ошибка при создании архива
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp У вас запущено %ld копий Zip-O-Matic.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Архив успешно создан
+Stop them file:ZipOMatic.cpp Остановить их
diff --git a/data/catalogs/add-ons/tracker/zipomatic/sk.catkeys b/data/catalogs/add-ons/tracker/zipomatic/sk.catkeys
index df3de3452f..07e2e80ef5 100644
--- a/data/catalogs/add-ons/tracker/zipomatic/sk.catkeys
+++ b/data/catalogs/add-ons/tracker/zipomatic/sk.catkeys
@@ -1,18 +1,18 @@
1 slovak x-vnd.haiku.zip-o-matic 2207848100
-%ld files added. file:ZipOMaticWindow.cpp Pridaných %ld súborov.
1 file added. file:ZipOMaticWindow.cpp Pridaný 1 súbor.
-Archive file:ZipperThread.cpp Archív
-Archive created OK file:ZipOMaticWindow.cpp Archív úspešne vytvorený
-Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Ste si istý, že chcete zastaviť vytvorenie tohto archívu?
-Continue file:ZipOMaticWindow.cpp Pokračovať
+Stop file:ZipOMaticWindow.cpp Zastaviť
Creating archive: %s file:ZipOMaticWindow.cpp Vytvára sa archív: %s
-Do you want to stop them? file:ZipOMatic.cpp Chcete ich zastaviť?
+Continue file:ZipOMaticWindow.cpp Pokračovať
+Preparing to archive file:ZipperThread.cpp Pripravuje sa na archiváciu
Drop files here. file:ZipOMaticWindow.cpp Sem pretiahnite súbory.
-Error creating archive file:ZipOMaticWindow.cpp Chyba pri vytváraní archívu
Filename: %s file:ZipOMaticWindow.cpp Názov súboru: %s
Let them continue file:ZipOMatic.cpp Nechať ich pokračovať
-Preparing to archive file:ZipperThread.cpp Pripravuje sa na archiváciu
-Stop file:ZipOMaticWindow.cpp Zastaviť
-Stop them file:ZipOMatic.cpp Zastaviť ich
+Do you want to stop them? file:ZipOMatic.cpp Chcete ich zastaviť?
+Are you sure you want to stop creating this archive? file:ZipOMaticWindow.cpp Ste si istý, že chcete zastaviť vytvorenie tohto archívu?
+%ld files added. file:ZipOMaticWindow.cpp Pridaných %ld súborov.
Stopped file:ZipOMaticWindow.cpp Zastavené
+Archive file:ZipperThread.cpp Archív
+Error creating archive file:ZipOMaticWindow.cpp Chyba pri vytváraní archívu
You have %ld Zip-O-Matic running.\n\n file:ZipOMatic.cpp Beží vám %ld Zip-O-Matic.\n\n
+Archive created OK file:ZipOMaticWindow.cpp Archív úspešne vytvorený
+Stop them file:ZipOMatic.cpp Zastaviť ich
diff --git a/data/catalogs/add-ons/translators/bmp/be.catkeys b/data/catalogs/add-ons/translators/bmp/be.catkeys
index e93cc6f510..dc93984182 100644
--- a/data/catalogs/add-ons/translators/bmp/be.catkeys
+++ b/data/catalogs/add-ons/translators/bmp/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-BMPTranslator 2497639570
-BMP Settings BMPMain Наладкі BMP
-BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket выява BMP (у фармаце MS, %d бітаў
-BMP image (OS/2 format, %d bits) BMPTranslator выява BMP (у фармаце OS/2, %d бітаў)
-BMP image translator BMPTranslator Канвертар выяваў BMP
-BMP image translator BMPView Канвертар выяваў BMP
BMP images BMPTranslator Выявы BMP
BMPTranslator Settings BMPTranslator Наладкі канвертара BMP
+BMP image (OS/2 format, %d bits) BMPTranslator выява BMP (у фармаце OS/2, %d бітаў)
+BMP image translator BMPView Канвертар выяваў BMP
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket выява BMP (у фармаце MS, %d бітаў
+BMP Settings BMPMain Наладкі BMP
Version %d.%d.%d, %s BMPView Версія %d.%d.%d, %s
+BMP image translator BMPTranslator Канвертар выяваў BMP
diff --git a/data/catalogs/add-ons/translators/bmp/de.catkeys b/data/catalogs/add-ons/translators/bmp/de.catkeys
index 9e78669f1f..f5e093378c 100644
--- a/data/catalogs/add-ons/translators/bmp/de.catkeys
+++ b/data/catalogs/add-ons/translators/bmp/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-BMPTranslator 2497639570
-BMP Settings BMPMain BMP-Einstellungen
-BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP-Bild (MS-Format, %d Bits
-BMP image (OS/2 format, %d bits) BMPTranslator BMP-Bild (OS/2-Format, %d Bits)
-BMP image translator BMPTranslator BMP-Bild-Translator
-BMP image translator BMPView BMP-Bild-Translator
BMP images BMPTranslator BMP-Bilder
BMPTranslator Settings BMPTranslator BMP-Translator-Einstellungen
+BMP image (OS/2 format, %d bits) BMPTranslator BMP-Bild (OS/2-Format, %d Bits)
+BMP image translator BMPView BMP-Bild-Translator
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP-Bild (MS-Format, %d Bits
+BMP Settings BMPMain BMP-Einstellungen
Version %d.%d.%d, %s BMPView Version %d.%d.%d, %s
+BMP image translator BMPTranslator BMP-Bild-Translator
diff --git a/data/catalogs/add-ons/translators/bmp/hr.catkeys b/data/catalogs/add-ons/translators/bmp/hr.catkeys
new file mode 100644
index 0000000000..3f86922773
--- /dev/null
+++ b/data/catalogs/add-ons/translators/bmp/hr.catkeys
@@ -0,0 +1,9 @@
+1 croatian x-vnd.Haiku-BMPTranslator 2497639570
+BMP Settings BMPMain BMP postavke
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP slika (MS format, %d bits
+BMP image (OS/2 format, %d bits) BMPTranslator BMP slika (OS/2 format, %d bits)
+BMP image translator BMPTranslator BMP prevoditelj slika
+BMP image translator BMPView BMP prevoditelj slika
+BMP images BMPTranslator BMP slike
+BMPTranslator Settings BMPTranslator Postavke BMPprevoditelja
+Version %d.%d.%d, %s BMPView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/bmp/lt.catkeys b/data/catalogs/add-ons/translators/bmp/lt.catkeys
new file mode 100644
index 0000000000..f1427cbe96
--- /dev/null
+++ b/data/catalogs/add-ons/translators/bmp/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-BMPTranslator 2497639570
+BMP images BMPTranslator BMP paveikslai
+BMPTranslator Settings BMPTranslator BMP keitiklio nuostatos
+BMP image (OS/2 format, %d bits) BMPTranslator BMP paveikslas (OS/2 formatas, %d b)
+BMP image translator BMPView BMP paveikslų keitiklis
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP paveikslas („Windows“ formatas, %d b
+BMP Settings BMPMain BMP nuostatos
+Version %d.%d.%d, %s BMPView Versija %d.%d.%d, %s
+BMP image translator BMPTranslator BMP paveikslų keitiklis
diff --git a/data/catalogs/add-ons/translators/bmp/nl.catkeys b/data/catalogs/add-ons/translators/bmp/nl.catkeys
new file mode 100644
index 0000000000..be9fb26d31
--- /dev/null
+++ b/data/catalogs/add-ons/translators/bmp/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-BMPTranslator 2497639570
+BMP images BMPTranslator BMP-afbeeldingen
+BMPTranslator Settings BMPTranslator BMP vertaler instellingen
+BMP image (OS/2 format, %d bits) BMPTranslator BMP afbeelding (OS/2 formaat, %d bits)
+BMP image translator BMPView BMP afbeelding vertaler
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP afbeelding (MS formaat, %d bits
+BMP Settings BMPMain BMP Instellingen
+Version %d.%d.%d, %s BMPView Versie %d.%d.%d, %s
+BMP image translator BMPTranslator BMP afbeelding vertaler
diff --git a/data/catalogs/add-ons/translators/bmp/ru.catkeys b/data/catalogs/add-ons/translators/bmp/ru.catkeys
index 05c17be9f9..d399f8d725 100644
--- a/data/catalogs/add-ons/translators/bmp/ru.catkeys
+++ b/data/catalogs/add-ons/translators/bmp/ru.catkeys
@@ -1,9 +1,9 @@
1 russian x-vnd.Haiku-BMPTranslator 2497639570
-BMP Settings BMPMain Настройки BMP транслятора
-BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP image (Формат MS, %d бит
-BMP image (OS/2 format, %d bits) BMPTranslator Рисунок BMP (Формат OS/2, %d бит)
-BMP image translator BMPTranslator Транслятор BMP изображений
-BMP image translator BMPView Транслятор BMP изображений
BMP images BMPTranslator BMP изображения
BMPTranslator Settings BMPTranslator Настройки BMP транслятора
+BMP image (OS/2 format, %d bits) BMPTranslator Рисунок BMP (Формат OS/2, %d бит)
+BMP image translator BMPView Транслятор BMP изображений
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket BMP image (Формат MS, %d бит
+BMP Settings BMPMain Настройки BMP транслятора
Version %d.%d.%d, %s BMPView Версия %d.%d.%d, %s
+BMP image translator BMPTranslator Транслятор BMP изображений
diff --git a/data/catalogs/add-ons/translators/bmp/sk.catkeys b/data/catalogs/add-ons/translators/bmp/sk.catkeys
index ac15f582e0..900adb8fdb 100644
--- a/data/catalogs/add-ons/translators/bmp/sk.catkeys
+++ b/data/catalogs/add-ons/translators/bmp/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-BMPTranslator 2497639570
-BMP Settings BMPMain Nastavenia MBP
-BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket Obrázok BMP (formát MS, %d bitov)
-BMP image (OS/2 format, %d bits) BMPTranslator Obrázok BMP (formát OS/2, %d bitov)
-BMP image translator BMPTranslator Prekladač obrázkov BMP
-BMP image translator BMPView Prekladač obrázkov BMP
BMP images BMPTranslator Obrázky BMP
BMPTranslator Settings BMPTranslator Nastavenia BMPTranslator
+BMP image (OS/2 format, %d bits) BMPTranslator Obrázok BMP (formát OS/2, %d bitov)
+BMP image translator BMPView Prekladač obrázkov BMP
+BMP image (MS format, %d bits BMPTranslator Ignore missing closing round bracket Obrázok BMP (formát MS, %d bitov
+BMP Settings BMPMain Nastavenia BMP
Version %d.%d.%d, %s BMPView Verzia %d.%d.%d, %s
+BMP image translator BMPTranslator Prekladač obrázkov BMP
diff --git a/data/catalogs/add-ons/translators/exr/be.catkeys b/data/catalogs/add-ons/translators/exr/be.catkeys
index 20fe5d8b47..0d96527de3 100644
--- a/data/catalogs/add-ons/translators/exr/be.catkeys
+++ b/data/catalogs/add-ons/translators/exr/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-EXRTranslator 3390292316
-Based on OpenEXR (http://www.openexr.com) ConfigView Грунтуецца на матэрыялах праекту OpenEXR (http://www.openexr.com)
-EXR Images ConfigView Выявы EXR
-EXR Images EXRTranslator Выявы EXR
-EXR Settings main Наладкі EXR
-EXR image EXRTranslator Выява EXR
-EXR image translator EXRTranslator Канвертар EXR выяваў
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
+EXR image translator EXRTranslator Канвертар EXR выяваў
+Based on OpenEXR (http://www.openexr.com) ConfigView Грунтуецца на матэрыялах праекту OpenEXR (http://www.openexr.com)
+EXR Settings main Наладкі EXR
+EXR Images EXRTranslator Выявы EXR
a division of Lucasfilm Entertainment Company Ltd ConfigView падраздяленне Lucasfilm Entertainment Company Ltd
+EXR Images ConfigView Выявы EXR
+EXR image EXRTranslator Выява EXR
diff --git a/data/catalogs/add-ons/translators/exr/de.catkeys b/data/catalogs/add-ons/translators/exr/de.catkeys
index d159736d4f..6ba379cd90 100644
--- a/data/catalogs/add-ons/translators/exr/de.catkeys
+++ b/data/catalogs/add-ons/translators/exr/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-EXRTranslator 3390292316
-Based on OpenEXR (http://www.openexr.com) ConfigView Basiert auf OpenEXR (http://www.openexr.com).
-EXR Images ConfigView EXR-Bilder
-EXR Images EXRTranslator EXR-Bilder
-EXR Settings main EXR-Einstellungen
-EXR image EXRTranslator EXR-Bild
-EXR image translator EXRTranslator EXR-Bild-Translator
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
+EXR image translator EXRTranslator EXR-Bild-Translator
+Based on OpenEXR (http://www.openexr.com) ConfigView Basiert auf OpenEXR (http://www.openexr.com).
+EXR Settings main EXR-Einstellungen
+EXR Images EXRTranslator EXR-Bilder
a division of Lucasfilm Entertainment Company Ltd ConfigView eine Abteilung von Lucasfilm Entertainment Company Ltd.
+EXR Images ConfigView EXR-Bilder
+EXR image EXRTranslator EXR-Bild
diff --git a/data/catalogs/add-ons/translators/exr/hr.catkeys b/data/catalogs/add-ons/translators/exr/hr.catkeys
new file mode 100644
index 0000000000..31417149cf
--- /dev/null
+++ b/data/catalogs/add-ons/translators/exr/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-EXRTranslator 2941548748
+Based on OpenEXR (http://www.openexr.com) ConfigView Bazirano na OpenEXR-u (http://www.openexr.com)
+EXR Images ConfigView EXR slike
+EXR Images EXRTranslator EXR slike
+EXR Settings main EXR postavke
+EXR image EXRTranslator EXR slika
+EXR image translator EXRTranslator EXR prevoditelj slika
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/exr/lt.catkeys b/data/catalogs/add-ons/translators/exr/lt.catkeys
new file mode 100644
index 0000000000..b3013573c9
--- /dev/null
+++ b/data/catalogs/add-ons/translators/exr/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-EXRTranslator 3390292316
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+EXR image translator EXRTranslator EXR paveikslų keitiklis
+Based on OpenEXR (http://www.openexr.com) ConfigView Sukurtas „OpenEXR“ (http://www.openexr.com) pagrindu
+EXR Settings main EXR nuostatos
+EXR Images EXRTranslator EXR paveikslai
+a division of Lucasfilm Entertainment Company Ltd ConfigView „Lucasfilm Entertainment Company Ltd“ padalinys
+EXR Images ConfigView EXR paveikslai
+EXR image EXRTranslator EXR paveikslas
diff --git a/data/catalogs/add-ons/translators/exr/nl.catkeys b/data/catalogs/add-ons/translators/exr/nl.catkeys
new file mode 100644
index 0000000000..a205b261c4
--- /dev/null
+++ b/data/catalogs/add-ons/translators/exr/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-EXRTranslator 3390292316
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+EXR image translator EXRTranslator EXR afbeelding vertaler
+Based on OpenEXR (http://www.openexr.com) ConfigView Gebaseerd op OpenEXR (http://www.openexr.com)
+EXR Settings main EXR instellingen
+EXR Images EXRTranslator EXR afbeeldingen
+a division of Lucasfilm Entertainment Company Ltd ConfigView een divisie van Lucasfilm Entertainment Company Ltd
+EXR Images ConfigView EXR afbeeldingen
+EXR image EXRTranslator EXR afbeelding
diff --git a/data/catalogs/add-ons/translators/exr/ru.catkeys b/data/catalogs/add-ons/translators/exr/ru.catkeys
index a413176db3..1e5525dd00 100644
--- a/data/catalogs/add-ons/translators/exr/ru.catkeys
+++ b/data/catalogs/add-ons/translators/exr/ru.catkeys
@@ -1,9 +1,9 @@
1 russian x-vnd.Haiku-EXRTranslator 3390292316
-Based on OpenEXR (http://www.openexr.com) ConfigView Основано на OpenEXR (http://www.openexr.com)
-EXR Images ConfigView Транслятор EXR изображений
-EXR Images EXRTranslator EXR изображения
-EXR Settings main Настройки EXR транслятора
-EXR image EXRTranslator EXR изображение
-EXR image translator EXRTranslator Транслятор EXR изображений
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
+EXR image translator EXRTranslator Транслятор EXR изображений
+Based on OpenEXR (http://www.openexr.com) ConfigView Основано на OpenEXR (http://www.openexr.com)
+EXR Settings main Настройки EXR транслятора
+EXR Images EXRTranslator EXR изображения
a division of Lucasfilm Entertainment Company Ltd ConfigView подразделение компании Lucasfilm Entertainment Ltd
+EXR Images ConfigView Транслятор EXR изображений
+EXR image EXRTranslator EXR изображение
diff --git a/data/catalogs/add-ons/translators/exr/sk.catkeys b/data/catalogs/add-ons/translators/exr/sk.catkeys
index 04dc3d439f..1b3bf9c1c0 100644
--- a/data/catalogs/add-ons/translators/exr/sk.catkeys
+++ b/data/catalogs/add-ons/translators/exr/sk.catkeys
@@ -1,10 +1,9 @@
1 slovak x-vnd.Haiku-EXRTranslator 3390292316
-Based on OpenEXR (http://www.openexr.com) ConfigView Založené na OpenEXR (http://www.openexr.com)
-EXR Images ConfigView Obrázky EXR
-EXR Images EXRTranslator Obrázky EXR
-EXR Settings main Nastavenia EXR
-EXR image EXRTranslator Obrázok EXR
-EXR image translator EXRTranslator Prekladač obrázkov EXR
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
-a division of Lucasfilm Entertainment Company Ltd ConfigView divízia Lucasfilm Entertainment Company Ltd
-
+EXR image translator EXRTranslator Prekladač obrázkov EXR
+Based on OpenEXR (http://www.openexr.com) ConfigView Založené na OpenEXR (http://www.openexr.com)
+EXR Settings main Nastavenia EXR
+EXR Images EXRTranslator Obrázky EXR
+a division of Lucasfilm Entertainment Company Ltd ConfigView divízia Lucasfilm Entertainment Company Ltd
+EXR Images ConfigView Obrázky EXR
+EXR image EXRTranslator Obrázok EXR
diff --git a/data/catalogs/add-ons/translators/gif/be.catkeys b/data/catalogs/add-ons/translators/gif/be.catkeys
index bd3c7b2bbc..b15ec53d4c 100644
--- a/data/catalogs/add-ons/translators/gif/be.catkeys
+++ b/data/catalogs/add-ons/translators/gif/be.catkeys
@@ -1,15 +1,15 @@
1 belarusian x-vnd.Haiku-GIFTranslator 829368084
-Automatic (from alpha channel) GIFView Аўтаматычна (з альфа каналу)
-Be Bitmap Format (GIFTranslator) GIFTranslator Фармат бітмапу BeOS (канвертар GIF)
-BeOS system GIFView сістэма BeOS
-Colors GIFView Колеры
-GIF Settings GIFTranslator Наладкі GIF
-GIF image GIFTranslator Выявы GIF
-Greyscale GIFView Шэракаляровы
+Websafe GIFView Прыдатны для Web
+Write interlaced images GIFView Запісваць выявы з чаргаваннем
Optimal GIFView Аптымальны
+Greyscale GIFView Шэракаляровы
+Be Bitmap Format (GIFTranslator) GIFTranslator Фармат бітмапу BeOS (канвертар GIF)
+GIF image GIFTranslator Выявы GIF
+Write transparent images GIFView Запісваць выявы з празрыстасцю
Palette GIFView Палета
Use RGB color GIFView Выкарыстоўваць RGB колеры
Use dithering GIFView Выкарыстоўваць згладжванне
-Websafe GIFView Прыдатны для Web
-Write interlaced images GIFView Запісваць выявы з чаргаваннем
-Write transparent images GIFView Запісваць выявы з празрыстасцю
+GIF Settings GIFTranslator Наладкі GIF
+BeOS system GIFView сістэма BeOS
+Automatic (from alpha channel) GIFView Аўтаматычна (з альфа каналу)
+Colors GIFView Колеры
diff --git a/data/catalogs/add-ons/translators/gif/de.catkeys b/data/catalogs/add-ons/translators/gif/de.catkeys
index c500cb97b4..c08333a754 100644
--- a/data/catalogs/add-ons/translators/gif/de.catkeys
+++ b/data/catalogs/add-ons/translators/gif/de.catkeys
@@ -1,15 +1,15 @@
1 german x-vnd.Haiku-GIFTranslator 829368084
-Automatic (from alpha channel) GIFView Automatisch (per Alphakanal)
-Be Bitmap Format (GIFTranslator) GIFTranslator Be-Bitmap-Format (GIFTranslator)
-BeOS system GIFView BeOS System
-Colors GIFView Farben:
-GIF Settings GIFTranslator GIF-Einstellungen
-GIF image GIFTranslator GIF-Bild
-Greyscale GIFView Graustufen
+Websafe GIFView Web-Farben
+Write interlaced images GIFView Bilder interlaced ausgeben
Optimal GIFView Optimal
+Greyscale GIFView Graustufen
+Be Bitmap Format (GIFTranslator) GIFTranslator Be-Bitmap-Format (GIFTranslator)
+GIF image GIFTranslator GIF-Bild
+Write transparent images GIFView Bilder mit Transparenz ausgeben
Palette GIFView Palette:
Use RGB color GIFView RGB-Farbe:
Use dithering GIFView Dithering benutzen
-Websafe GIFView Web-Farben
-Write interlaced images GIFView Bilder interlaced ausgeben
-Write transparent images GIFView Bilder mit Transparenz ausgeben
+GIF Settings GIFTranslator GIF-Einstellungen
+BeOS system GIFView BeOS System
+Automatic (from alpha channel) GIFView Automatisch (per Alphakanal)
+Colors GIFView Farben:
diff --git a/data/catalogs/add-ons/translators/gif/hr.catkeys b/data/catalogs/add-ons/translators/gif/hr.catkeys
new file mode 100644
index 0000000000..0378b195e2
--- /dev/null
+++ b/data/catalogs/add-ons/translators/gif/hr.catkeys
@@ -0,0 +1,9 @@
+1 croatian x-vnd.Haiku-GIFTranslator 917293993
+Automatic (from alpha channel) GIFView Automatski (iz alfa kanala)
+BeOS system GIFView BeOS sustav
+Colors GIFView Boje
+GIF Settings GIFTranslator GIF postavke
+GIF image GIFTranslator GIF slika
+Optimal GIFView Optimalno
+Palette GIFView Paleta
+Use RGB color GIFView Koristi RGB boju
diff --git a/data/catalogs/add-ons/translators/gif/lt.catkeys b/data/catalogs/add-ons/translators/gif/lt.catkeys
new file mode 100644
index 0000000000..3162211bee
--- /dev/null
+++ b/data/catalogs/add-ons/translators/gif/lt.catkeys
@@ -0,0 +1,15 @@
+1 lithuanian x-vnd.Haiku-GIFTranslator 829368084
+Websafe GIFView saityno spalvos
+Write interlaced images GIFView Naudoti progresinį paveikslų kodavimą
+Optimal GIFView optimali
+Greyscale GIFView pilkumo tonai
+Be Bitmap Format (GIFTranslator) GIFTranslator „Be“ paveikslų formatas (GIF keitiklis)
+GIF image GIFTranslator GIF paveikslas
+Write transparent images GIFView Naudoti permatomumą
+Palette GIFView Paletė
+Use RGB color GIFView Naudoti RŽM spalvą
+Use dithering GIFView Naudoti elementų smulkinimą
+GIF Settings GIFTranslator GIF nuostatos
+BeOS system GIFView „BeOS“ sisteminė
+Automatic (from alpha channel) GIFView Automatinė spalva (iš alfa kanalo)
+Colors GIFView Spalvos
diff --git a/data/catalogs/add-ons/translators/gif/nl.catkeys b/data/catalogs/add-ons/translators/gif/nl.catkeys
new file mode 100644
index 0000000000..d9a48343e9
--- /dev/null
+++ b/data/catalogs/add-ons/translators/gif/nl.catkeys
@@ -0,0 +1,15 @@
+1 dutch; flemish x-vnd.Haiku-GIFTranslator 829368084
+Websafe GIFView Websafe
+Write interlaced images GIFView Schrijf interlaced afbeelding
+Optimal GIFView Optimaal
+Greyscale GIFView Grijswaarde
+Be Bitmap Format (GIFTranslator) GIFTranslator Be Bitmap Formaat (GIFVertaler)
+GIF image GIFTranslator GIF afbeelding
+Write transparent images GIFView Schrijf transparante afbeeldingen
+Palette GIFView Kleurenpalet
+Use RGB color GIFView Gebruik RGB kleur
+Use dithering GIFView Gebruik dithering
+GIF Settings GIFTranslator GIF instellingen
+BeOS system GIFView BeOS systeem
+Automatic (from alpha channel) GIFView Automatisch (van alpha kanaal)
+Colors GIFView Kleuren
diff --git a/data/catalogs/add-ons/translators/gif/ru.catkeys b/data/catalogs/add-ons/translators/gif/ru.catkeys
index 8205615aa0..088108e5ab 100644
--- a/data/catalogs/add-ons/translators/gif/ru.catkeys
+++ b/data/catalogs/add-ons/translators/gif/ru.catkeys
@@ -1,15 +1,15 @@
1 russian x-vnd.Haiku-GIFTranslator 829368084
-Automatic (from alpha channel) GIFView Автоматически (из альфа канала)
-Be Bitmap Format (GIFTranslator) GIFTranslator Растровый формат Be (GIFTranslator)
-BeOS system GIFView Система BeOS
-Colors GIFView Цвета
-GIF Settings GIFTranslator Настройки GIF транслятора
-GIF image GIFTranslator GIF изображение
-Greyscale GIFView Оттенки серого
+Websafe GIFView Безопасная
+Write interlaced images GIFView Записывать чересстрочные изображения
Optimal GIFView Оптимальная
+Greyscale GIFView Оттенки серого
+Be Bitmap Format (GIFTranslator) GIFTranslator Растровый формат Be (GIFTranslator)
+GIF image GIFTranslator GIF изображение
+Write transparent images GIFView Записывать прозрачные изображения
Palette GIFView Палитра
Use RGB color GIFView Использовать RGB цвета
Use dithering GIFView Использовать сглаживание
-Websafe GIFView Безопасная
-Write interlaced images GIFView Записывать чересстрочные изображения
-Write transparent images GIFView Записывать прозрачные изображения
+GIF Settings GIFTranslator Настройки GIF транслятора
+BeOS system GIFView Система BeOS
+Automatic (from alpha channel) GIFView Автоматически (из альфа канала)
+Colors GIFView Цвета
diff --git a/data/catalogs/add-ons/translators/gif/sk.catkeys b/data/catalogs/add-ons/translators/gif/sk.catkeys
index e019d2aab3..c0ea2c0e95 100644
--- a/data/catalogs/add-ons/translators/gif/sk.catkeys
+++ b/data/catalogs/add-ons/translators/gif/sk.catkeys
@@ -1,15 +1,15 @@
1 slovak x-vnd.Haiku-GIFTranslator 829368084
-Automatic (from alpha channel) GIFView Automaticky (podľa kanála alfa)
-Be Bitmap Format (GIFTranslator) GIFTranslator Be Bitmap Format (GIFTranslator)
-BeOS system GIFView Systém BeOS
-Colors GIFView Farby
-GIF Settings GIFTranslator Nastavenia GIF
-GIF image GIFTranslator Obrázok GIF
-Greyscale GIFView Odtiene šedej
+Websafe GIFView Farby pre web
+Write interlaced images GIFView Zapisovať obrázky s prekladanými riadkami
Optimal GIFView Optimálne
+Greyscale GIFView Odtiene šedej
+Be Bitmap Format (GIFTranslator) GIFTranslator Be Bitmap Format (GIFTranslator)
+GIF image GIFTranslator Obrázok GIF
+Write transparent images GIFView Zapisovať priesvitné obrázky
Palette GIFView Paleta
Use RGB color GIFView Použiť farby RGB
Use dithering GIFView Použiť dithering
-Websafe GIFView Farby pre web
-Write interlaced images GIFView Zapisovať obrázky s prekladanými riadkami
-Write transparent images GIFView Zapisovať priesvitné obrázky
+GIF Settings GIFTranslator Nastavenia GIF
+BeOS system GIFView Systém BeOS
+Automatic (from alpha channel) GIFView Automaticky (podľa kanála alfa)
+Colors GIFView Farby
diff --git a/data/catalogs/add-ons/translators/hpgs/be.catkeys b/data/catalogs/add-ons/translators/hpgs/be.catkeys
index e38833fd04..ad7e9bfad1 100644
--- a/data/catalogs/add-ons/translators/hpgs/be.catkeys
+++ b/data/catalogs/add-ons/translators/hpgs/be.catkeys
@@ -1,12 +1,12 @@
1 belarusian x-vnd.Haiku-HPGSTranslator 3633584048
Based on HPGS (http://hpgs.berlios.de) ConfigView Грунтуецца на распрацоўках праекту HPGS (http://hpgs.berlios.de)
-Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Памылка: Немагчыма далучыць прыладу малявання да чытача: %s\n
+Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
Error: Cannot process plot data %s\n HPGSTranslator Памылка: Немагчыма апрацаваць даныя малюнку %s\n
HPGS image HPGSTranslator выява HPGS
-HPGS image translator HPGSTranslator Канвертар выяваў HPGS
+HPGSTranslator Settings ConfigView Наладкі канвертара HPGS
+Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Памылка: Немагчыма далучыць прыладу малявання да чытача: %s\n
HPGS images ConfigView выявы HPGS
HPGS images HPGSTranslator выявы HPGS
-HPGSTranslator Settings ConfigView Наладкі канвертара HPGS
-Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
-Write error %s\n HPGSTranslator Памылка запісу %s\n
no hpgs\n HPGSTranslator не hpgs\n
+HPGS image translator HPGSTranslator Канвертар выяваў HPGS
+Write error %s\n HPGSTranslator Памылка запісу %s\n
diff --git a/data/catalogs/add-ons/translators/hpgs/de.catkeys b/data/catalogs/add-ons/translators/hpgs/de.catkeys
index 378f31d7cd..e61fe3e54a 100644
--- a/data/catalogs/add-ons/translators/hpgs/de.catkeys
+++ b/data/catalogs/add-ons/translators/hpgs/de.catkeys
@@ -1,12 +1,12 @@
1 german x-vnd.Haiku-HPGSTranslator 3633584048
Based on HPGS (http://hpgs.berlios.de) ConfigView Basiert auf HPGS (http://hpgs.berlios.de)
-Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Fehler: Für den Reader konnte kein Vektorzeichner gesetzt werden (hpgs_reader_imbue): %s\n
+Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
Error: Cannot process plot data %s\n HPGSTranslator Fehler: Kann Plot-Daten %s nicht verarbeiten\n
HPGS image HPGSTranslator HPGS-Bild
-HPGS image translator HPGSTranslator HPGS-Bild-Translator
+HPGSTranslator Settings ConfigView HPGSTranslator-Einstellungen
+Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Fehler: Für den Reader konnte kein Vektorzeichner gesetzt werden (hpgs_reader_imbue): %s\n
HPGS images ConfigView HPGS-Bilder
HPGS images HPGSTranslator HPGS-Bilder
-HPGSTranslator Settings ConfigView HPGSTranslator-Einstellungen
-Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
-Write error %s\n HPGSTranslator Schreibfehler %s\n
no hpgs\n HPGSTranslator kein HPGS\n
+HPGS image translator HPGSTranslator HPGS-Bild-Translator
+Write error %s\n HPGSTranslator Schreibfehler %s\n
diff --git a/data/catalogs/add-ons/translators/hpgs/hr.catkeys b/data/catalogs/add-ons/translators/hpgs/hr.catkeys
new file mode 100644
index 0000000000..70d6b83726
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hpgs/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-HPGSTranslator 1752058641
+Based on HPGS (http://hpgs.berlios.de) ConfigView Bazirano na HPGS (http://hpgs.berlios.de)
+HPGS image HPGSTranslator HPGS slika
+HPGS image translator HPGSTranslator HPGS prevoditelj slika
+HPGS images ConfigView HPGS slike
+HPGS images HPGSTranslator HPGS slike
+HPGSTranslator Settings ConfigView Postavke HPGST prevoditelja
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hpgs/lt.catkeys b/data/catalogs/add-ons/translators/hpgs/lt.catkeys
new file mode 100644
index 0000000000..ee5b6d7dd3
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hpgs/lt.catkeys
@@ -0,0 +1,11 @@
+1 lithuanian x-vnd.Haiku-HPGSTranslator 885771575
+Based on HPGS (http://hpgs.berlios.de) ConfigView Sukurta HPGS (http://hpgs.berlios.de) pagrindu
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+Error: Cannot process plot data %s\n HPGSTranslator Klaida: nepavyko apdoroti braižymo duomenų %s\n
+HPGS image HPGSTranslator HPGS paveikslas
+HPGSTranslator Settings ConfigView HPGS keitiklio nuostatos
+HPGS images ConfigView HPGS paveikslai
+HPGS images HPGSTranslator HPGS paveikslai
+no hpgs\n HPGSTranslator ne hpgs\n
+HPGS image translator HPGSTranslator HPGS paveikslų keitiklis
+Write error %s\n HPGSTranslator Rašymo klaida %s\n
diff --git a/data/catalogs/add-ons/translators/hpgs/nl.catkeys b/data/catalogs/add-ons/translators/hpgs/nl.catkeys
new file mode 100644
index 0000000000..e0766ec7a3
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hpgs/nl.catkeys
@@ -0,0 +1,12 @@
+1 dutch; flemish x-vnd.Haiku-HPGSTranslator 3633584048
+Based on HPGS (http://hpgs.berlios.de) ConfigView Gebaseerd op HPGS (http://hpgs.berlios.de)
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+Error: Cannot process plot data %s\n HPGSTranslator Fout: kan plot data niet verwerken %s\n
+HPGS image HPGSTranslator HPGS afbeelding
+HPGSTranslator Settings ConfigView HPGSTranslator instellingen
+Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Fout: kan niet doordringen tot lees apparaat: %s\n
+HPGS images ConfigView HPGS afbeeldingen
+HPGS images HPGSTranslator HPGS-afbeeldingen
+no hpgs\n HPGSTranslator geen hpgs\n
+HPGS image translator HPGSTranslator HPGS afbeelding vertaler
+Write error %s\n HPGSTranslator Schrijffout %s\n
diff --git a/data/catalogs/add-ons/translators/hpgs/ru.catkeys b/data/catalogs/add-ons/translators/hpgs/ru.catkeys
index 01b75faa29..33e29d9513 100644
--- a/data/catalogs/add-ons/translators/hpgs/ru.catkeys
+++ b/data/catalogs/add-ons/translators/hpgs/ru.catkeys
@@ -1,12 +1,12 @@
1 russian x-vnd.Haiku-HPGSTranslator 3633584048
Based on HPGS (http://hpgs.berlios.de) ConfigView Основано на HPGS (http://hpgs.berlios.de)
-Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Ошибка: Невозможно подключить рисовальщик к читателю: %s\n
+Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
Error: Cannot process plot data %s\n HPGSTranslator Ошибка: Невозможно обработать часть данных %s\n
HPGS image HPGSTranslator HPGS изображение
-HPGS image translator HPGSTranslator Транслятор HPGS изображений
+HPGSTranslator Settings ConfigView Настройки HPGS транслятора
+Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Ошибка: Невозможно подключить рисовальщик к читателю: %s\n
HPGS images ConfigView HPGS изображения
HPGS images HPGSTranslator HPGS изображения
-HPGSTranslator Settings ConfigView Настройки HPGS транслятора
-Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
-Write error %s\n HPGSTranslator Ошибка записи %s\n
no hpgs\n HPGSTranslator не hpgs\n
+HPGS image translator HPGSTranslator Транслятор HPGS изображений
+Write error %s\n HPGSTranslator Ошибка записи %s\n
diff --git a/data/catalogs/add-ons/translators/hpgs/sk.catkeys b/data/catalogs/add-ons/translators/hpgs/sk.catkeys
index 0450a020f3..7f9cdacae6 100644
--- a/data/catalogs/add-ons/translators/hpgs/sk.catkeys
+++ b/data/catalogs/add-ons/translators/hpgs/sk.catkeys
@@ -1,12 +1,12 @@
1 slovak x-vnd.Haiku-HPGSTranslator 3633584048
Based on HPGS (http://hpgs.berlios.de) ConfigView Založené na HPGS (http://hpgs.berlios.de)
-Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Chyba: Nemožno vložiť vykresľovacie zariadenie do čítača: %s\n
+Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
Error: Cannot process plot data %s\n HPGSTranslator Chyba: Nemožno spracovať dáta výkresu %s\n
HPGS image HPGSTranslator Obrázok HPGS
-HPGS image translator HPGSTranslator Prekladač obrázkov HPGS
+HPGSTranslator Settings ConfigView Nastavenia HPGSTranslator
+Error: Cannot imbue plot device to reader: %s\n HPGSTranslator Chyba: Nemožno vložiť vykresľovacie zariadenie do čítača: %s\n
HPGS images ConfigView Obrázky HPGS
HPGS images HPGSTranslator Obrázky HPGS
-HPGSTranslator Settings ConfigView Nastavenia HPGSTranslator
-Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
-Write error %s\n HPGSTranslator Chyba zápisu %s\n
no hpgs\n HPGSTranslator bez hpgs\n
+HPGS image translator HPGSTranslator Prekladač obrázkov HPGS
+Write error %s\n HPGSTranslator Chyba zápisu %s\n
diff --git a/data/catalogs/add-ons/translators/hvif/be.catkeys b/data/catalogs/add-ons/translators/hvif/be.catkeys
index cf090caf1a..870676a9fc 100644
--- a/data/catalogs/add-ons/translators/hvif/be.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/be.catkeys
@@ -1,8 +1,8 @@
1 belarusian x-vnd.Haiku-HVIFTranslator 813066125
-HVIF Settings HVIFMain Наладкі HVIF
HVIF icons HVIFTranslator значкі HVIF
-HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF
-Native Haiku icon format translator HVIFView Канвертар фармату вектарных значкаў Haiku
-Native Haiku vector icon translator HVIFTranslator Канвертар вектарных значкаў Haiku
Render size: HVIFView Памер выніковай выявы:
+HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF
+Native Haiku vector icon translator HVIFTranslator Канвертар вектарных значкаў Haiku
+Native Haiku icon format translator HVIFView Канвертар фармату вектарных значкаў Haiku
+HVIF Settings HVIFMain Наладкі HVIF
Version %d.%d.%d, %s HVIFView Версія %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/de.catkeys b/data/catalogs/add-ons/translators/hvif/de.catkeys
index 94fb4c3848..e1001aa6a7 100644
--- a/data/catalogs/add-ons/translators/hvif/de.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/de.catkeys
@@ -1,8 +1,8 @@
1 german x-vnd.Haiku-HVIFTranslator 813066125
-HVIF Settings HVIFMain HVIF-Einstellungen
HVIF icons HVIFTranslator HVIF-Icons
-HVIFTranslator Settings HVIFTranslator HVIFTranslator-Einstellungen
-Native Haiku icon format translator HVIFView Translator für Haikus eigenes Icon-Format
-Native Haiku vector icon translator HVIFTranslator Translator für Haikus eigenes Vektor-Icon-Format
Render size: HVIFView Ausgabegröße:
+HVIFTranslator Settings HVIFTranslator HVIFTranslator-Einstellungen
+Native Haiku vector icon translator HVIFTranslator Translator für Haikus eigenes Vektor-Icon-Format
+Native Haiku icon format translator HVIFView Translator für Haikus eigenes Icon-Format
+HVIF Settings HVIFMain HVIF-Einstellungen
Version %d.%d.%d, %s HVIFView Version %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/hr.catkeys b/data/catalogs/add-ons/translators/hvif/hr.catkeys
new file mode 100644
index 0000000000..299703e113
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hvif/hr.catkeys
@@ -0,0 +1,5 @@
+1 croatian x-vnd.Haiku-HVIFTranslator 1210647088
+HVIF Settings HVIFMain HVIF postavke
+HVIF icons HVIFTranslator HVIF ikone
+HVIFTranslator Settings HVIFTranslator Postavke HVIFTprevoditelja
+Version %d.%d.%d, %s HVIFView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/lt.catkeys b/data/catalogs/add-ons/translators/hvif/lt.catkeys
new file mode 100644
index 0000000000..00db84ae6e
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hvif/lt.catkeys
@@ -0,0 +1,8 @@
+1 lithuanian x-vnd.Haiku-HVIFTranslator 813066125
+HVIF icons HVIFTranslator HVIF piktogramos
+Render size: HVIFView Piktogramų dydis:
+HVIFTranslator Settings HVIFTranslator HVIF keitiklio nuostatos
+Native Haiku vector icon translator HVIFTranslator „Haiku“ vektorinių piktogramų keitiklis
+Native Haiku icon format translator HVIFView „Haiku“ vektorinių piktogramų keitiklis
+HVIF Settings HVIFMain HVIF nuostatos
+Version %d.%d.%d, %s HVIFView Versija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/nl.catkeys b/data/catalogs/add-ons/translators/hvif/nl.catkeys
new file mode 100644
index 0000000000..a974e83c2f
--- /dev/null
+++ b/data/catalogs/add-ons/translators/hvif/nl.catkeys
@@ -0,0 +1,8 @@
+1 dutch; flemish x-vnd.Haiku-HVIFTranslator 813066125
+HVIF icons HVIFTranslator HVIF pictogrammen
+Render size: HVIFView Rendergrootte:
+HVIFTranslator Settings HVIFTranslator HVIFTranslator instellingen
+Native Haiku vector icon translator HVIFTranslator Native Haiku vector pictogram vertaler
+Native Haiku icon format translator HVIFView Native Haiku pictogram formaat vertaler
+HVIF Settings HVIFMain HVIF Instellingen
+Version %d.%d.%d, %s HVIFView Versie %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/ru.catkeys b/data/catalogs/add-ons/translators/hvif/ru.catkeys
index ae8904f500..5d421e03bd 100644
--- a/data/catalogs/add-ons/translators/hvif/ru.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/ru.catkeys
@@ -1,8 +1,8 @@
1 russian x-vnd.Haiku-HVIFTranslator 813066125
-HVIF Settings HVIFMain Настройки HVIF транслятора
HVIF icons HVIFTranslator HVIF значки
-HVIFTranslator Settings HVIFTranslator Настройки HVIF транслятора
-Native Haiku icon format translator HVIFView Транслятор HVIF значков
-Native Haiku vector icon translator HVIFTranslator Транслятор векторных значков Haiku
Render size: HVIFView Размер значков:
+HVIFTranslator Settings HVIFTranslator Настройки HVIF транслятора
+Native Haiku vector icon translator HVIFTranslator Транслятор векторных значков Haiku
+Native Haiku icon format translator HVIFView Транслятор HVIF значков
+HVIF Settings HVIFMain Настройки HVIF транслятора
Version %d.%d.%d, %s HVIFView Версия %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/hvif/sk.catkeys b/data/catalogs/add-ons/translators/hvif/sk.catkeys
index 3a24e0e17d..d53af0d8b1 100644
--- a/data/catalogs/add-ons/translators/hvif/sk.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/sk.catkeys
@@ -1,8 +1,8 @@
1 slovak x-vnd.Haiku-HVIFTranslator 813066125
-HVIF Settings HVIFMain Nastavenia HVIF
HVIF icons HVIFTranslator Ikony HVIF
-HVIFTranslator Settings HVIFTranslator Nastavenia HVIFTranslator
-Native Haiku icon format translator HVIFView Prekladač Natívny vektorový formát ikon Haiku
-Native Haiku vector icon translator HVIFTranslator Prekladač Natívny vektorový formát ikon Haiku
Render size: HVIFView Veľkosť vykreslenia:
+HVIFTranslator Settings HVIFTranslator Nastavenia HVIFTranslator
+Native Haiku vector icon translator HVIFTranslator Prekladač Natívny vektorový formát ikon Haiku
+Native Haiku icon format translator HVIFView Prekladač Natívny vektorový formát ikon Haiku
+HVIF Settings HVIFMain Nastavenia HVIF
Version %d.%d.%d, %s HVIFView Verzia %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/ico/be.catkeys b/data/catalogs/add-ons/translators/ico/be.catkeys
index d9c0824efb..18468b2bb7 100644
--- a/data/catalogs/add-ons/translators/ico/be.catkeys
+++ b/data/catalogs/add-ons/translators/ico/be.catkeys
@@ -1,14 +1,14 @@
1 belarusian x-vnd.Haiku-ICOTranslator 3151213372
Cursor ICOTranslator Курсор
-Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры
-ICO Settings main Наладкі ICO
-ICOTranslator Settings ConfigView Наладкі канвертара ICO
-Icon ICOTranslator Значак
-Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Выява Windows %s %ld біт
Windows icon images ConfigView Выявы значкаў Windows
-Windows icon images ICOTranslator Выявы значкаў Windows
+Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48
+Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры
+ICO Settings main Наладкі ICO
Windows icon translator ICOTranslator Канвертар значкаў Windows
-Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер
pixels in either direction. ConfigView пікселяў у кожным напрамку
+Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер
+Icon ICOTranslator Значак
+ICOTranslator Settings ConfigView Наладкі канвертара ICO
+Windows icon images ICOTranslator Выявы значкаў Windows
diff --git a/data/catalogs/add-ons/translators/ico/de.catkeys b/data/catalogs/add-ons/translators/ico/de.catkeys
index 7802ed5035..752aeadee3 100644
--- a/data/catalogs/add-ons/translators/ico/de.catkeys
+++ b/data/catalogs/add-ons/translators/ico/de.catkeys
@@ -1,14 +1,14 @@
1 german x-vnd.Haiku-ICOTranslator 3151213372
Cursor ICOTranslator Cursor
-Enforce valid icon sizes ConfigView Nur gültige Icongrößen zulassen
-ICO Settings main ICO-Einstellungen
-ICOTranslator Settings ConfigView ICOTranslator-Einstellungen
-Icon ICOTranslator Icon
-Valid icon sizes are 16, 32, or 48 ConfigView Gültige Icongrößen sind 16, 32 oder 48 Pixel
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Windows %s %ld Bit Bild
Windows icon images ConfigView Windows-Icons
-Windows icon images ICOTranslator Windows-Icons
+Valid icon sizes are 16, 32, or 48 ConfigView Gültige Icongrößen sind 16, 32 oder 48 Pixel
+Enforce valid icon sizes ConfigView Nur gültige Icongrößen zulassen
+ICO Settings main ICO-Einstellungen
Windows icon translator ICOTranslator Windows Icon-Translator
-Write 32 bit images on true color input ConfigView Bei Truecolor-Eingabe 32-Bit-Bilder ausgeben
pixels in either direction. ConfigView als Höhe oder Breite.
+Write 32 bit images on true color input ConfigView Bei Truecolor-Eingabe 32-Bit-Bilder ausgeben
+Icon ICOTranslator Icon
+ICOTranslator Settings ConfigView ICOTranslator-Einstellungen
+Windows icon images ICOTranslator Windows-Icons
diff --git a/data/catalogs/add-ons/translators/ico/hr.catkeys b/data/catalogs/add-ons/translators/ico/hr.catkeys
new file mode 100644
index 0000000000..a74779ddba
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ico/hr.catkeys
@@ -0,0 +1,11 @@
+1 croatian x-vnd.Haiku-ICOTranslator 2936115169
+Cursor ICOTranslator Pokazivač
+Enforce valid icon sizes ConfigView Prisili valjane veličine ikona
+ICO Settings main ICO postavke
+ICOTranslator Settings ConfigView Postavke ICO prevoditelja
+Icon ICOTranslator Ikona
+Valid icon sizes are 16, 32, or 48 ConfigView Valjane veličine su 16, 32, ili 48
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
+Windows icon images ConfigView Slike ikona prozora
+Windows icon images ICOTranslator Slike ikona prozora
+Windows icon translator ICOTranslator Prevoditelj ikona prozora
diff --git a/data/catalogs/add-ons/translators/ico/lt.catkeys b/data/catalogs/add-ons/translators/ico/lt.catkeys
new file mode 100644
index 0000000000..4d4665bb59
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ico/lt.catkeys
@@ -0,0 +1,14 @@
+1 lithuanian x-vnd.Haiku-ICOTranslator 3151213372
+Cursor ICOTranslator Žymeklis
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+Windows %s %ld bit image ICOTranslator „Windows“ %s %ld bitų paveikslas
+Windows icon images ConfigView „Windows“ piktogramos
+Valid icon sizes are 16, 32, or 48 ConfigView Piktogramų kraštinės gali būti 16, 32 arba 48 taškų ilgio
+Enforce valid icon sizes ConfigView Reikalauti leistino paveikslo dydžio
+ICO Settings main ICO nuostatos
+Windows icon translator ICOTranslator „Windows“ piktogramų keitiklis
+pixels in either direction. ConfigView taškų abiem kryptimis.
+Write 32 bit images on true color input ConfigView Rašyti 24 bitų piktogramas kaip 32 bitų
+Icon ICOTranslator Piktograma
+ICOTranslator Settings ConfigView ICO keitiklio nuostatos
+Windows icon images ICOTranslator „Windows“ piktogramos
diff --git a/data/catalogs/add-ons/translators/ico/nl.catkeys b/data/catalogs/add-ons/translators/ico/nl.catkeys
new file mode 100644
index 0000000000..1b1b3d4756
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ico/nl.catkeys
@@ -0,0 +1,14 @@
+1 dutch; flemish x-vnd.Haiku-ICOTranslator 3151213372
+Cursor ICOTranslator Muisaanwijzer
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+Windows %s %ld bit image ICOTranslator Windows %s %ld bit afbeelding
+Windows icon images ConfigView Windows pictogram
+Valid icon sizes are 16, 32, or 48 ConfigView Toegelaten icoon grote zijn 16, 32 of 48
+Enforce valid icon sizes ConfigView Geldige pictogramgrootten afdwingen
+ICO Settings main ICO Instellingen
+Windows icon translator ICOTranslator Windows pictogram vertaler
+pixels in either direction. ConfigView pixels in beide richtingen.
+Write 32 bit images on true color input ConfigView Schrijf 32 bit afbeeldingen op ware kleur input
+Icon ICOTranslator Pictogram
+ICOTranslator Settings ConfigView ICOTranslator Instellingen
+Windows icon images ICOTranslator Windows pictogrammen
diff --git a/data/catalogs/add-ons/translators/ico/ru.catkeys b/data/catalogs/add-ons/translators/ico/ru.catkeys
index a38ff932aa..edd17d2620 100644
--- a/data/catalogs/add-ons/translators/ico/ru.catkeys
+++ b/data/catalogs/add-ons/translators/ico/ru.catkeys
@@ -1,14 +1,14 @@
1 russian x-vnd.Haiku-ICOTranslator 3151213372
Cursor ICOTranslator Курсор
-Enforce valid icon sizes ConfigView Форсировать верные размеры значков
-ICO Settings main Настройки ICO транслятора
-ICOTranslator Settings ConfigView Настройки ICO транслятора
-Icon ICOTranslator Значок
-Valid icon sizes are 16, 32, or 48 ConfigView Верные размеры значков 16, 32 или 48
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Windows %s %ld битное изображение
Windows icon images ConfigView Транслятор ICO значков
-Windows icon images ICOTranslator ICO значки
+Valid icon sizes are 16, 32, or 48 ConfigView Верные размеры значков 16, 32 или 48
+Enforce valid icon sizes ConfigView Форсировать верные размеры значков
+ICO Settings main Настройки ICO транслятора
Windows icon translator ICOTranslator Транслятор значков Windows
-Write 32 bit images on true color input ConfigView Записывать 24-битные значки как 32-битные
pixels in either direction. ConfigView пикселей в оба направления.
+Write 32 bit images on true color input ConfigView Записывать 24-битные значки как 32-битные
+Icon ICOTranslator Значок
+ICOTranslator Settings ConfigView Настройки ICO транслятора
+Windows icon images ICOTranslator ICO значки
diff --git a/data/catalogs/add-ons/translators/ico/sk.catkeys b/data/catalogs/add-ons/translators/ico/sk.catkeys
index 52affffb5e..95af75fef7 100644
--- a/data/catalogs/add-ons/translators/ico/sk.catkeys
+++ b/data/catalogs/add-ons/translators/ico/sk.catkeys
@@ -1,14 +1,14 @@
1 slovak x-vnd.Haiku-ICOTranslator 3151213372
Cursor ICOTranslator Kurzor
-Enforce valid icon sizes ConfigView Vynútiť veľkosť ikon
-ICO Settings main Nastavenia ICO
-ICOTranslator Settings ConfigView Nastavenia ICOTranslator
-Icon ICOTranslator Ikona
-Valid icon sizes are 16, 32, or 48 ConfigView Platné veľkosti ikon sú 16, 32 alebo 48
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Windows %s %ld-bitový obrázok
Windows icon images ConfigView Obrázky ikon Windows
-Windows icon images ICOTranslator Obrázky ikon Windows
+Valid icon sizes are 16, 32, or 48 ConfigView Platné veľkosti ikon sú 16, 32 alebo 48
+Enforce valid icon sizes ConfigView Vynútiť veľkosť ikon
+ICO Settings main Nastavenia ICO
Windows icon translator ICOTranslator Prekladač ikon Windows
-Write 32 bit images on true color input ConfigView Zapisovať 32-btové obrázky na vstup true color
pixels in either direction. ConfigView pixle v oboch smeroch.
+Write 32 bit images on true color input ConfigView Zapisovať 32-btové obrázky na vstup true color
+Icon ICOTranslator Ikona
+ICOTranslator Settings ConfigView Nastavenia ICOTranslator
+Windows icon images ICOTranslator Obrázky ikon Windows
diff --git a/data/catalogs/add-ons/translators/jpeg/be.catkeys b/data/catalogs/add-ons/translators/jpeg/be.catkeys
index 451f07d29d..f7eba225b8 100644
--- a/data/catalogs/add-ons/translators/jpeg/be.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg/be.catkeys
@@ -1,21 +1,21 @@
1 belarusian x-vnd.Haiku-JPEGTranslator 965709535
-About JPEGTranslator Пра праграму
-Be Bitmap Format (JPEGTranslator) JPEGTranslator Фармат бітмапу BeOS (канвертар JPEG)
-High JPEGTranslator Ныйвышэйшая
-JPEG Library Error: %s\n be_jerror Памылка бібліятэкі JPEG: %s\n
-JPEG Library Warning: %s\n be_jerror Папярэджанне бібліятэкі JPEG: %s\n
+Output quality JPEGTranslator Якасьць выніку
JPEG images JPEGTranslator Выявы JPEG
+Prevent colors 'washing out' JPEGTranslator Прадухіляць страту 'насычанасці' колераў
+JPEG Library Error: %s\n be_jerror Памылка бібліятэкі JPEG: %s\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Выкарыстоўваць код CMYK 0 для 100% ахопа чарніламі
+About JPEGTranslator Пра праграму
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nГрунтуецца на праекце IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nз падтрымкай \"безстратнага\" кадавання (дададзена Ken Murchison)\n\thttp://www.oceana.com/ftp/ljpeg/\n\nВыкарыстоўваць мэтады пераўтварэнняў колераў (распрацаваныя Magnus Hellman)\n\thttp://www.bebits.com/app/802\n
Low JPEGTranslator Нізкая
Make file smaller (sligthtly worse quality) JPEGTranslator Зрабіць файл меншым (магчыма страта якасці)
None JPEGTranslator Адсутнічае
-Output quality JPEGTranslator Якасьць выніку
-Output smoothing strength JPEGTranslator Інтэнсыўнасць згладжвання
-Prevent colors 'washing out' JPEGTranslator Прадухіляць страту 'насычанасці' колераў
-Read JPEGTranslator Прачытаць
-Read greyscale images as RGB32 JPEGTranslator Чытаць выявы з шэрай палетай як RGB32
+Be Bitmap Format (JPEGTranslator) JPEGTranslator Фармат бітмапу BeOS (канвертар JPEG)
Show warning messages JPEGTranslator Паказваць папярэджанні
-Use CMYK code with 0 for 100% ink coverage JPEGTranslator Выкарыстоўваць код CMYK 0 для 100% ахопа чарніламі
-Use progressive compression JPEGTranslator Выкарыстоўваць "прагрэсіўны" сціск
+Output smoothing strength JPEGTranslator Інтэнсыўнасць згладжвання
+High JPEGTranslator Ныйвышэйшая
Write JPEGTranslator Запісаць
Write black-and-white images as RGB24 JPEGTranslator Запісваць чорна-белыя выявы як RGB24
-©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nГрунтуецца на праекце IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nз падтрымкай \"безстратнага\" кадавання (дададзена Ken Murchison)\n\thttp://www.oceana.com/ftp/ljpeg/\n\nВыкарыстоўваць мэтады пераўтварэнняў колераў (распрацаваныя Magnus Hellman)\n\thttp://www.bebits.com/app/802\n
+Read greyscale images as RGB32 JPEGTranslator Чытаць выявы з шэрай палетай як RGB32
+Read JPEGTranslator Прачытаць
+JPEG Library Warning: %s\n be_jerror Папярэджанне бібліятэкі JPEG: %s\n
+Use progressive compression JPEGTranslator Выкарыстоўваць "прагрэсіўны" сціск
diff --git a/data/catalogs/add-ons/translators/jpeg/de.catkeys b/data/catalogs/add-ons/translators/jpeg/de.catkeys
index c2272340eb..9b6c04abec 100644
--- a/data/catalogs/add-ons/translators/jpeg/de.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg/de.catkeys
@@ -1,21 +1,21 @@
1 german x-vnd.Haiku-JPEGTranslator 965709535
-About JPEGTranslator Über
-Be Bitmap Format (JPEGTranslator) JPEGTranslator Be-Bitmap-Format (JPEGTranslator)
-High JPEGTranslator Hoch
-JPEG Library Error: %s\n be_jerror JPEG-Bibliothek, Fehler: %s\n
-JPEG Library Warning: %s\n be_jerror JPEG-Bibliothek, Warnung: %s\n
+Output quality JPEGTranslator Ausgabequalität
JPEG images JPEGTranslator JPEG-Bilder
+Prevent colors 'washing out' JPEGTranslator 'Ausgewaschene' Farben verhindern
+JPEG Library Error: %s\n be_jerror JPEG-Bibliothek, Fehler: %s\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Benutze CMYK-Code '0' als 100% Farbdeckung
+About JPEGTranslator Über
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBasierend auf der IJG-Bibliothek © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nmit dem \"verlustfreien\" Encoding-Unterstützungspatch von Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nMit einigen Colorspace-Konvertierungsroutinen von Magnus Hellman\n\thttp://www.bebits.com/app/802\n
Low JPEGTranslator Niedrig
Make file smaller (sligthtly worse quality) JPEGTranslator Kleinere Dateien (mit etwas schlechterer Qualität)
None JPEGTranslator Keine
-Output quality JPEGTranslator Ausgabequalität
-Output smoothing strength JPEGTranslator Glättung
-Prevent colors 'washing out' JPEGTranslator 'Ausgewaschene' Farben verhindern
-Read JPEGTranslator Lesen
-Read greyscale images as RGB32 JPEGTranslator Graustufen-Bilder als RGB32 einlesen.
+Be Bitmap Format (JPEGTranslator) JPEGTranslator Be-Bitmap-Format (JPEGTranslator)
Show warning messages JPEGTranslator Warnungen anzeigen
-Use CMYK code with 0 for 100% ink coverage JPEGTranslator Benutze CMYK-Code '0' als 100% Farbdeckung
-Use progressive compression JPEGTranslator Progressive Komprimierung
+Output smoothing strength JPEGTranslator Glättung
+High JPEGTranslator Hoch
Write JPEGTranslator Schreiben
Write black-and-white images as RGB24 JPEGTranslator Schwarz-Weiß-Bilder als RGB24 ausgeben
-©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBasierend auf der IJG-Bibliothek © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nmit dem \"verlustfreien\" Encoding-Unterstützungspatch von Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nMit einigen Colorspace-Konvertierungsroutinen von Magnus Hellman\n\thttp://www.bebits.com/app/802\n
+Read greyscale images as RGB32 JPEGTranslator Graustufen-Bilder als RGB32 einlesen.
+Read JPEGTranslator Lesen
+JPEG Library Warning: %s\n be_jerror JPEG-Bibliothek, Warnung: %s\n
+Use progressive compression JPEGTranslator Progressive Komprimierung
diff --git a/data/catalogs/add-ons/translators/jpeg/hr.catkeys b/data/catalogs/add-ons/translators/jpeg/hr.catkeys
new file mode 100644
index 0000000000..c62bd88b0f
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg/hr.catkeys
@@ -0,0 +1,14 @@
+1 croatian x-vnd.Haiku-JPEGTranslator 4171578918
+High JPEGTranslator Visoko
+JPEG Library Error: %s\n be_jerror Greška JPEG biblioteke: %s\n
+JPEG Library Warning: %s\n be_jerror Upozorenje JPEG biblioteke: %s\n
+JPEG images JPEGTranslator JPEG slike
+Low JPEGTranslator Nisko
+Make file smaller (sligthtly worse quality) JPEGTranslator Napravite datoteku manjom ( neznatno lošija kvaliteta)
+None JPEGTranslator Nijedan
+Read JPEGTranslator Čitaj
+Read greyscale images as RGB32 JPEGTranslator Čitaj sve slike kao RGB32
+Show warning messages JPEGTranslator Pokaži poruke upozorenja
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Koristi CMYK sa 0 za 100% pokrivenosti tintom
+Write JPEGTranslator Piši
+Write black-and-white images as RGB24 JPEGTranslator Piši crno-bijele slike kao RGB24
diff --git a/data/catalogs/add-ons/translators/jpeg/lt.catkeys b/data/catalogs/add-ons/translators/jpeg/lt.catkeys
new file mode 100644
index 0000000000..4f8c362d2d
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg/lt.catkeys
@@ -0,0 +1,21 @@
+1 lithuanian x-vnd.Haiku-JPEGTranslator 965709535
+Output quality JPEGTranslator Išvesties kokybė
+JPEG images JPEGTranslator JPEG paveikslai
+Prevent colors 'washing out' JPEGTranslator Neleisti spalvoms išsilieti
+JPEG Library Error: %s\n be_jerror JPEG bibliotekos klaida: %s\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Šimtaprocentiniam padengimui rašalu naudoti CMYK kodus su nuliais
+About JPEGTranslator Apie
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nSukurta IJG bibliotekos pagrindu, © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nsu nenuostolingo glaudinimo pataisa, kurios autorius – Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nKai kurių spalvų erdvių konvertavimo procedūrų autorius – Magnus Hellman\n\thttp://www.bebits.com/app/802\n
+Low JPEGTranslator Žema
+Make file smaller (sligthtly worse quality) JPEGTranslator Sumažinti failą (šiek tiek prastesnės kokybės sąskaita)
+None JPEGTranslator Nėra
+Be Bitmap Format (JPEGTranslator) JPEGTranslator „Be“ paveikslų formatas (JPEG keitiklis)
+Show warning messages JPEGTranslator Rodyti įspėjimus
+Output smoothing strength JPEGTranslator Išvesties glodinimo stiprumas
+High JPEGTranslator Aukšta
+Write JPEGTranslator Rašymas
+Write black-and-white images as RGB24 JPEGTranslator Rašyti juodai baltus paveikslus kaip 24 bitų spalvotus
+Read greyscale images as RGB32 JPEGTranslator Atverti pilkumo tonais užkoduotus paveikslus kaip 32 bitų spalvotus
+Read JPEGTranslator Skaitymas
+JPEG Library Warning: %s\n be_jerror JPEG bibliotekos įspėjimas: %s\n
+Use progressive compression JPEGTranslator Naudoti progresinį paveikslų kodavimą
diff --git a/data/catalogs/add-ons/translators/jpeg/nl.catkeys b/data/catalogs/add-ons/translators/jpeg/nl.catkeys
new file mode 100644
index 0000000000..662b06bc61
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg/nl.catkeys
@@ -0,0 +1,21 @@
+1 dutch; flemish x-vnd.Haiku-JPEGTranslator 965709535
+Output quality JPEGTranslator Uitvoerkwaliteit
+JPEG images JPEGTranslator JPEG afbeeldingen
+Prevent colors 'washing out' JPEGTranslator Voorkom kleuren 'uitwassen'
+JPEG Library Error: %s\n be_jerror JPEG Bibliotheek fout: %\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Gebruik CMYK code met 0 voor 100% ink cover
+About JPEGTranslator Over
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nGebaseerd op IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\t http://www.ijg.org/files/\n\nmet \"lossless\" encoderingsondersteuning door Ken Murchison\n\t http://www.oceana.com/ftp/ljpeg/\n\nMet sommige colorspace omzetting routines door Magnus Hellman\n\t http://www.bebits.com/app/802\n
+Low JPEGTranslator Laag
+Make file smaller (sligthtly worse quality) JPEGTranslator Maak het bestand kleiner (beetje slechtere kwaliteit)
+None JPEGTranslator Geen
+Be Bitmap Format (JPEGTranslator) JPEGTranslator Be Bitmap Formaat (JPEGVertaler)
+Show warning messages JPEGTranslator Laat aarschuwingsberichten zien
+Output smoothing strength JPEGTranslator Sterkte van uitvoersmoothing
+High JPEGTranslator Hoog
+Write JPEGTranslator Schrijven
+Write black-and-white images as RGB24 JPEGTranslator Zwart-wit afbeeldingen als RGB24 schrijven
+Read greyscale images as RGB32 JPEGTranslator Afbeeldingen met grijswaarden als RGB32 lezen
+Read JPEGTranslator Lezen
+JPEG Library Warning: %s\n be_jerror JPEG Bibliotheek waarschuwing: %s\n
+Use progressive compression JPEGTranslator Gebruik progressieve compressie
diff --git a/data/catalogs/add-ons/translators/jpeg/ru.catkeys b/data/catalogs/add-ons/translators/jpeg/ru.catkeys
index 5b7c3002c5..da46dcf422 100644
--- a/data/catalogs/add-ons/translators/jpeg/ru.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg/ru.catkeys
@@ -1,21 +1,21 @@
1 russian x-vnd.Haiku-JPEGTranslator 965709535
-About JPEGTranslator Авторы
-Be Bitmap Format (JPEGTranslator) JPEGTranslator Растровый формат Be (JPEGTranslator)
-High JPEGTranslator Высокое
-JPEG Library Error: %s\n be_jerror Ошибка библиотеки JPEG: %s\n
-JPEG Library Warning: %s\n be_jerror Предупреждение библиотеки JPEG: %s\n
+Output quality JPEGTranslator Качество вывода
JPEG images JPEGTranslator JPEG изображения
+Prevent colors 'washing out' JPEGTranslator Предотвращать 'размывание' цветов
+JPEG Library Error: %s\n be_jerror Ошибка библиотеки JPEG: %s\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Использовать CMYK код с 0 для 100% чернильного покрытия
+About JPEGTranslator Авторы
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nОсновано на библиотеке IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nПоддержку записи без потерь разработал Ken Murchison.\n\thttp://www.oceana.com/ftp/ljpeg/\n\nПроцедуры преобразования цветовых пространств разработал Magnus Hellman.\n\thttp://www.bebits.com/app/802\n
Low JPEGTranslator Низкое
Make file smaller (sligthtly worse quality) JPEGTranslator Делать файл меньше (немного худшего качества)
None JPEGTranslator Нет
-Output quality JPEGTranslator Качество вывода
-Output smoothing strength JPEGTranslator Сглаживание вывода
-Prevent colors 'washing out' JPEGTranslator Предотвращать 'размывание' цветов
-Read JPEGTranslator Чтение
-Read greyscale images as RGB32 JPEGTranslator Открывать рисунки серого цвета как RGB32
+Be Bitmap Format (JPEGTranslator) JPEGTranslator Растровый формат Be (JPEGTranslator)
Show warning messages JPEGTranslator Показывать сообщения о предупреждениях
-Use CMYK code with 0 for 100% ink coverage JPEGTranslator Использовать CMYK код с 0 для 100% чернильного покрытия
-Use progressive compression JPEGTranslator Использовать прогрессивное сжатие
+Output smoothing strength JPEGTranslator Сглаживание вывода
+High JPEGTranslator Высокое
Write JPEGTranslator Запись
Write black-and-white images as RGB24 JPEGTranslator Сохранять черно-белые рисунки как RGB24
-©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nОсновано на библиотеке IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nПоддержку записи без потерь разработал Ken Murchison.\n\thttp://www.oceana.com/ftp/ljpeg/\n\nПроцедуры преобразования цветовых пространств разработал Magnus Hellman.\n\thttp://www.bebits.com/app/802\n
+Read greyscale images as RGB32 JPEGTranslator Открывать рисунки серого цвета как RGB32
+Read JPEGTranslator Чтение
+JPEG Library Warning: %s\n be_jerror Предупреждение библиотеки JPEG: %s\n
+Use progressive compression JPEGTranslator Использовать прогрессивное сжатие
diff --git a/data/catalogs/add-ons/translators/jpeg/sk.catkeys b/data/catalogs/add-ons/translators/jpeg/sk.catkeys
index 9b1b8a276f..831679d5f2 100644
--- a/data/catalogs/add-ons/translators/jpeg/sk.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg/sk.catkeys
@@ -1,21 +1,21 @@
1 slovak x-vnd.Haiku-JPEGTranslator 965709535
-About JPEGTranslator O aplikácii
-Be Bitmap Format (JPEGTranslator) JPEGTranslator Be Bitmap Format (JPEGTranslator)
-High JPEGTranslator Vysoká
-JPEG Library Error: %s\n be_jerror Chyba knižnice JPEG: %s\n
-JPEG Library Warning: %s\n be_jerror Upozornenie knižnice JPEG: %s\n
+Output quality JPEGTranslator Kvalita výstupu
JPEG images JPEGTranslator Obrázky JPEG
+Prevent colors 'washing out' JPEGTranslator Zabrániť „vyblednutiu“ farieb
+JPEG Library Error: %s\n be_jerror Chyba knižnice JPEG: %s\n
+Use CMYK code with 0 for 100% ink coverage JPEGTranslator Použiť kód CMYK s 0 pre 100% pokrytie atramentom
+About JPEGTranslator O aplikácii
+©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nZaložené na knižnici IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\npodporu „bezstratového“ kódovania napísal Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nNiektoré funkcie na konverziu medzi farebnými priestormi napísal Magnus Hellman\n\thttp://www.bebits.com/app/802\n
Low JPEGTranslator Nízka
Make file smaller (sligthtly worse quality) JPEGTranslator Zmenšiť súbor (mierne horšia kvalita)
None JPEGTranslator Žiadna
-Output quality JPEGTranslator Kvalita výstupu
-Output smoothing strength JPEGTranslator Sila vyhladzovania výstupu
-Prevent colors 'washing out' JPEGTranslator Zabrániť „vyblednutiu“ farieb
-Read JPEGTranslator Čítať
-Read greyscale images as RGB32 JPEGTranslator Čítať čiernobiele obrázky ako RGB32
+Be Bitmap Format (JPEGTranslator) JPEGTranslator Be Bitmap Format (JPEGTranslator)
Show warning messages JPEGTranslator Zobrazovať správy upozornení
-Use CMYK code with 0 for 100% ink coverage JPEGTranslator Použiť kód CMYK s 0 pre 100% pokrytie atramentom
-Use progressive compression JPEGTranslator Použiť progresívnu kompresiu
+Output smoothing strength JPEGTranslator Sila vyhladzovania výstupu
+High JPEGTranslator Vysoká
Write JPEGTranslator Zapísať
Write black-and-white images as RGB24 JPEGTranslator Zapísať čiernobiele obrázky ako RGB24
-©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nBased on IJG library © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\nwith \"lossless\" encoding support patch by Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nWith some colorspace conversion routines by Magnus Hellman\n\thttp://www.bebits.com/app/802\n JPEGTranslator ©2002-2003, Marcin Konicki\n©2005-2007, Haiku\n\nZaložené na knižnici IJG © 1994-2009, Thomas G. Lane, Guido Vollbeding.\n\thttp://www.ijg.org/files/\n\npodporu „bezstratového“ kódovania napísal Ken Murchison\n\thttp://www.oceana.com/ftp/ljpeg/\n\nNiektoré funkcie na konverziu medzi farebnými priestormi napísal Magnus Hellman\n\thttp://www.bebits.com/app/802\n
+Read greyscale images as RGB32 JPEGTranslator Čítať čiernobiele obrázky ako RGB32
+Read JPEGTranslator Čítať
+JPEG Library Warning: %s\n be_jerror Upozornenie knižnice JPEG: %s\n
+Use progressive compression JPEGTranslator Použiť progresívnu kompresiu
diff --git a/data/catalogs/add-ons/translators/jpeg2000/be.catkeys b/data/catalogs/add-ons/translators/jpeg2000/be.catkeys
index 8fe6db7455..a47ad1149d 100644
--- a/data/catalogs/add-ons/translators/jpeg2000/be.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg2000/be.catkeys
@@ -1,13 +1,13 @@
1 belarusian x-vnd.Haiku-JPEG2000Translator 547915409
-About JPEG2000Translator Пра праграму
-Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Фармат бітмапаў BeOS (Канвертар JPEG2000)
-High JPEG2000Translator Найлепшы
+Write JPEG2000Translator Запісаць
JPEG2000 images JPEG2000Translator Выявы JPEG2000
-Low JPEG2000Translator Эканомны
Output only codestream (.jpc) JPEG2000Translator Выводзіць толькі кодавы паток (.jpc)
+Write black-and-white images as RGB24 JPEG2000Translator Запісваць чорна-белыя выявы як RGB24
Output quality JPEG2000Translator Якасць вынікаў
Read JPEG2000Translator Чытаць
-Read greyscale images as RGB32 JPEG2000Translator Прыймаць шэрыя выявы як RGB32
-Write JPEG2000Translator Запісаць
-Write black-and-white images as RGB24 JPEG2000Translator Запісваць чорна-белыя выявы як RGB24
©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nГрунтуецца на бібліятэцы JasPer:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\n jp2 кадэк з пакету ImageMagick быў выкарыстаны як \"прыклад\".\n\thttp://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Фармат бітмапаў BeOS (Канвертар JPEG2000)
+Low JPEG2000Translator Эканомны
+About JPEG2000Translator Пра праграму
+High JPEG2000Translator Найлепшы
+Read greyscale images as RGB32 JPEG2000Translator Прыймаць шэрыя выявы як RGB32
diff --git a/data/catalogs/add-ons/translators/jpeg2000/de.catkeys b/data/catalogs/add-ons/translators/jpeg2000/de.catkeys
index 75a90d75a6..ce8ce221a7 100644
--- a/data/catalogs/add-ons/translators/jpeg2000/de.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg2000/de.catkeys
@@ -1,13 +1,13 @@
1 german x-vnd.Haiku-JPEG2000Translator 547915409
-About JPEG2000Translator Über
-Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Be-Bitmap-Format (JPEG2000Translator)
-High JPEG2000Translator Hoch
+Write JPEG2000Translator Schreiben
JPEG2000 images JPEG2000Translator JPEG2000-Bilder
-Low JPEG2000Translator Niedrig
Output only codestream (.jpc) JPEG2000Translator Nur als Codestream ausgeben (.jpc)
+Write black-and-white images as RGB24 JPEG2000Translator Schwarz-Weiß-Bilder als RGB24 ausgeben
Output quality JPEG2000Translator Ausgabequalität
Read JPEG2000Translator Lesen
-Read greyscale images as RGB32 JPEG2000Translator Graustufen-Bilder als RGB32 einlesen.
-Write JPEG2000Translator Schreiben
-Write black-and-white images as RGB24 JPEG2000Translator Schwarz-Weiß-Bilder als RGB24 ausgeben
©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nBasierend auf der JasPer-Bibliothek:\n© 1999-2000, Image Power, Inc. und\nder Universiät von British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2-Codec wurde als \"Tutorial\" benutzt.\n\thttp://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Be-Bitmap-Format (JPEG2000Translator)
+Low JPEG2000Translator Niedrig
+About JPEG2000Translator Über
+High JPEG2000Translator Hoch
+Read greyscale images as RGB32 JPEG2000Translator Graustufen-Bilder als RGB32 einlesen.
diff --git a/data/catalogs/add-ons/translators/jpeg2000/hr.catkeys b/data/catalogs/add-ons/translators/jpeg2000/hr.catkeys
new file mode 100644
index 0000000000..8ee1b56a7e
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg2000/hr.catkeys
@@ -0,0 +1,10 @@
+1 croatian x-vnd.Haiku-JPEG2000Translator 2060367215
+About JPEG2000Translator O programu
+High JPEG2000Translator Visoko
+JPEG2000 images JPEG2000Translator JPEG2000 slike
+Low JPEG2000Translator Nisko
+Output quality JPEG2000Translator Kvaliteta izlaza
+Read JPEG2000Translator Čitaj
+Read greyscale images as RGB32 JPEG2000Translator Čitaj sive slike kao RGB32
+Write JPEG2000Translator Piši
+Write black-and-white images as RGB24 JPEG2000Translator Piši crno-bijele slike kao RGB24
diff --git a/data/catalogs/add-ons/translators/jpeg2000/lt.catkeys b/data/catalogs/add-ons/translators/jpeg2000/lt.catkeys
new file mode 100644
index 0000000000..ef8956be75
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg2000/lt.catkeys
@@ -0,0 +1,13 @@
+1 lithuanian x-vnd.Haiku-JPEG2000Translator 547915409
+Write JPEG2000Translator Rašymas
+JPEG2000 images JPEG2000Translator JPEG2000 paveikslai
+Output only codestream (.jpc) JPEG2000Translator Išvesti tik kodų srautą (.jpg)
+Write black-and-white images as RGB24 JPEG2000Translator Rašyti juodai baltus paveikslus kaip 24 bitų spalvotus
+Output quality JPEG2000Translator Išvesties kokybė
+Read JPEG2000Translator Skaitymas
+©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nSukurta „JasPer“ bibliotekos pagrindu:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nKaip „vadovėlis“ naudotas „ImageMagick“ jp2 kodekas.\n\thttp://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator „Be“ paveikslų formatas (JPEG2000 keitiklis)
+Low JPEG2000Translator Žema
+About JPEG2000Translator Apie
+High JPEG2000Translator Aukšta
+Read greyscale images as RGB32 JPEG2000Translator Atverti pilkumo tonais užkoduotus paveikslus kaip 32 bitų spalvotus
diff --git a/data/catalogs/add-ons/translators/jpeg2000/nl.catkeys b/data/catalogs/add-ons/translators/jpeg2000/nl.catkeys
new file mode 100644
index 0000000000..4ca3481440
--- /dev/null
+++ b/data/catalogs/add-ons/translators/jpeg2000/nl.catkeys
@@ -0,0 +1,13 @@
+1 dutch; flemish x-vnd.Haiku-JPEG2000Translator 547915409
+Write JPEG2000Translator Schrijven
+JPEG2000 images JPEG2000Translator JPEG2000 afbeeldingen
+Output only codestream (.jpc) JPEG2000Translator Uitgang alleen codestream (.jpc)
+Write black-and-white images as RGB24 JPEG2000Translator Schrijf zwart-en-wit afbeeldingen als RGB24
+Output quality JPEG2000Translator Uitvoerkwaliteit
+Read JPEG2000Translator Lezen
+©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nGebaseerd op JasPer bibliotheek:\n© 1999-2000, Image Power, Inc. en\nde Universiteit van British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\t http://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was gebruikt als \"tutorial\".\n\t http://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Be Bitmap Formaat (JPEG2000Vertaler)
+Low JPEG2000Translator Laag
+About JPEG2000Translator Over
+High JPEG2000Translator Hoog
+Read greyscale images as RGB32 JPEG2000Translator Afbeeldingen in grijswaarden als RGB32 lezen
diff --git a/data/catalogs/add-ons/translators/jpeg2000/ru.catkeys b/data/catalogs/add-ons/translators/jpeg2000/ru.catkeys
index 1aed5c0b6e..a544d835a7 100644
--- a/data/catalogs/add-ons/translators/jpeg2000/ru.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg2000/ru.catkeys
@@ -1,13 +1,13 @@
1 russian x-vnd.Haiku-JPEG2000Translator 547915409
-About JPEG2000Translator Авторы
-Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Растровый формат Be (JPEG2000Translator)
-High JPEG2000Translator Высокое
+Write JPEG2000Translator Запись
JPEG2000 images JPEG2000Translator JPEG2000 изображения
-Low JPEG2000Translator Низкое
Output only codestream (.jpc) JPEG2000Translator Выводить только поток кодов (.jpc)
+Write black-and-white images as RGB24 JPEG2000Translator Записывать черно-белые изображения как RGB24
Output quality JPEG2000Translator Качество вывода
Read JPEG2000Translator Чтение
-Read greyscale images as RGB32 JPEG2000Translator Читать изображения в оттенках серого как RGB32
-Write JPEG2000Translator Запись
-Write black-and-white images as RGB24 JPEG2000Translator Записывать черно-белые изображения как RGB24
©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nОсновано на библиотеке JasPer:\n© 1999-2000, Image Power, Inc. и\nУниверситет Британской Колумбии, Канада.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\njp2 кодек из проекта ImageMagick был использован как \"учебник\".\n\thttp://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Растровый формат Be (JPEG2000Translator)
+Low JPEG2000Translator Низкое
+About JPEG2000Translator Авторы
+High JPEG2000Translator Высокое
+Read greyscale images as RGB32 JPEG2000Translator Читать изображения в оттенках серого как RGB32
diff --git a/data/catalogs/add-ons/translators/jpeg2000/sk.catkeys b/data/catalogs/add-ons/translators/jpeg2000/sk.catkeys
index 86dc8578b8..a42c318d35 100644
--- a/data/catalogs/add-ons/translators/jpeg2000/sk.catkeys
+++ b/data/catalogs/add-ons/translators/jpeg2000/sk.catkeys
@@ -1,13 +1,13 @@
1 slovak x-vnd.Haiku-JPEG2000Translator 547915409
-About JPEG2000Translator O aplikácii
-Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Be Bitmap Format (JPEG2000Translator)
-High JPEG2000Translator Vysoká
+Write JPEG2000Translator Zapísať
JPEG2000 images JPEG2000Translator Obrázky JPEG2000
-Low JPEG2000Translator Nízka
Output only codestream (.jpc) JPEG2000Translator Na výstup poslať iba kódový tok (.jpc)
+Write black-and-white images as RGB24 JPEG2000Translator Zapísať čiernobiele obrázky ako RGB24
Output quality JPEG2000Translator Kvalita výstupu
Read JPEG2000Translator Čítať
-Read greyscale images as RGB32 JPEG2000Translator Čítať čiernobiele obrázky ako RGB32
-Write JPEG2000Translator Zapísať
-Write black-and-white images as RGB24 JPEG2000Translator Zapísať čiernobiele obrázky ako RGB24
©2002-2003, Shard\n©2005-2006, Haiku\n\nBased on JasPer library:\n© 1999-2000, Image Power, Inc. and\nthe University of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nImageMagick's jp2 codec was used as \"tutorial\".\n\thttp://www.imagemagick.org/\n JPEG2000Translator ©2002-2003, Shard\n©2005-2006, Haiku\n\nZaložené na knižnici JasPer:\n© 1999-2000, Image Power, Inc. a\nUniversity of British Columbia, Canada.\n© 2001-2003 Michael David Adams.\n\thttp://www.ece.uvic.ca/~mdadams/jasper/\n\nAko „tutorial“ bol použitý kodek jp2 z ImageMagick.\n\thttp://www.imagemagick.org/\n
+Be Bitmap Format (JPEG2000Translator) JPEG2000Translator Be Bitmap Format (JPEG2000Translator)
+Low JPEG2000Translator Nízka
+About JPEG2000Translator O aplikácii
+High JPEG2000Translator Vysoká
+Read greyscale images as RGB32 JPEG2000Translator Čítať čiernobiele obrázky ako RGB32
diff --git a/data/catalogs/add-ons/translators/pcx/be.catkeys b/data/catalogs/add-ons/translators/pcx/be.catkeys
index 6f38354890..fe0ff8f3c2 100644
--- a/data/catalogs/add-ons/translators/pcx/be.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/be.catkeys
@@ -1,8 +1,8 @@
1 belarusian x-vnd.Haiku-PCXTranslator 1002061545
-PCX %lu bit image PCXTranslator %lu-бітная выява PCX
PCX Settings main Наладкі PCX
+PCX translator PCXTranslator Канвертар PCX
+Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
+PCXTranslator Settings ConfigView Наладкі канвертару PCX
+PCX %lu bit image PCXTranslator %lu-бітная выява PCX
PCX images ConfigView Выявы PCX
PCX images PCXTranslator Выявы PCX
-PCX translator PCXTranslator Канвертар PCX
-PCXTranslator Settings ConfigView Наладкі канвертару PCX
-Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/pcx/de.catkeys b/data/catalogs/add-ons/translators/pcx/de.catkeys
index 6bf8f2d33b..db18db395b 100644
--- a/data/catalogs/add-ons/translators/pcx/de.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/de.catkeys
@@ -1,8 +1,8 @@
1 german x-vnd.Haiku-PCXTranslator 1002061545
-PCX %lu bit image PCXTranslator PCX-%lu-Bit-Bild
PCX Settings main PCX-Einstellungen
+PCX translator PCXTranslator PCX-Translator
+Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
+PCXTranslator Settings ConfigView PCX-Translator-Einstellungen
+PCX %lu bit image PCXTranslator PCX-%lu-Bit-Bild
PCX images ConfigView PCX-Bild-Translator
PCX images PCXTranslator PCX-Bilder
-PCX translator PCXTranslator PCX-Translator
-PCXTranslator Settings ConfigView PCX-Translator-Einstellungen
-Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/pcx/hr.catkeys b/data/catalogs/add-ons/translators/pcx/hr.catkeys
new file mode 100644
index 0000000000..2d8cbe43d5
--- /dev/null
+++ b/data/catalogs/add-ons/translators/pcx/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-PCXTranslator 1002061545
+PCX %lu bit image PCXTranslator PCX %lu bit slika
+PCX Settings main PCX postavke
+PCX images ConfigView PCX slike
+PCX images PCXTranslator PCX slike
+PCX translator PCXTranslator PCX prevoditelj
+PCXTranslator Settings ConfigView Postavke PCXTranslatora
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/pcx/lt.catkeys b/data/catalogs/add-ons/translators/pcx/lt.catkeys
new file mode 100644
index 0000000000..be7ffe8354
--- /dev/null
+++ b/data/catalogs/add-ons/translators/pcx/lt.catkeys
@@ -0,0 +1,8 @@
+1 lithuanian x-vnd.Haiku-PCXTranslator 1002061545
+PCX Settings main PCX nuostatos
+PCX translator PCXTranslator PCX keitiklis
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+PCXTranslator Settings ConfigView PCX keitiklio nuostatos
+PCX %lu bit image PCXTranslator PCX %lu bitų paveikslas
+PCX images ConfigView PCX paveikslai
+PCX images PCXTranslator PCX paveikslai
diff --git a/data/catalogs/add-ons/translators/pcx/nl.catkeys b/data/catalogs/add-ons/translators/pcx/nl.catkeys
new file mode 100644
index 0000000000..45ddba5126
--- /dev/null
+++ b/data/catalogs/add-ons/translators/pcx/nl.catkeys
@@ -0,0 +1,8 @@
+1 dutch; flemish x-vnd.Haiku-PCXTranslator 1002061545
+PCX Settings main PCX Instellingen
+PCX translator PCXTranslator PCX vertaler
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+PCXTranslator Settings ConfigView PCXTranslator Instellingen
+PCX %lu bit image PCXTranslator PCX %lu bit afbeelding
+PCX images ConfigView PCX afbeeldingen
+PCX images PCXTranslator PCX afbeeldingen
diff --git a/data/catalogs/add-ons/translators/pcx/ru.catkeys b/data/catalogs/add-ons/translators/pcx/ru.catkeys
index 7e879bfa8d..ecb18159fa 100644
--- a/data/catalogs/add-ons/translators/pcx/ru.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/ru.catkeys
@@ -1,8 +1,8 @@
1 russian x-vnd.Haiku-PCXTranslator 1002061545
-PCX %lu bit image PCXTranslator PCX %lu битное изображение
PCX Settings main Настройки PCX транслятора
+PCX translator PCXTranslator Транслятор PCX изображений
+Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
+PCXTranslator Settings ConfigView Настройки PCX транслятора
+PCX %lu bit image PCXTranslator PCX %lu битное изображение
PCX images ConfigView PCX изображения
PCX images PCXTranslator PCX изображения
-PCX translator PCXTranslator Транслятор PCX изображений
-PCXTranslator Settings ConfigView Настройки PCX транслятора
-Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/pcx/sk.catkeys b/data/catalogs/add-ons/translators/pcx/sk.catkeys
index c06a1a148a..337125504b 100644
--- a/data/catalogs/add-ons/translators/pcx/sk.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/sk.catkeys
@@ -1,8 +1,8 @@
1 slovak x-vnd.Haiku-PCXTranslator 1002061545
-PCX %lu bit image PCXTranslator %lu-bitový obrázok PCX
PCX Settings main Nastavenia PCX
+PCX translator PCXTranslator Prekladač PCX
+Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
+PCXTranslator Settings ConfigView Nastavenia PCXTranslator
+PCX %lu bit image PCXTranslator %lu-bitový obrázok PCX
PCX images ConfigView Obrázky PCX
PCX images PCXTranslator Obrázok PCX
-PCX translator PCXTranslator Prekladač PCX
-PCXTranslator Settings ConfigView Nastavenia PCXTranslator
-Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/pcx/uk.catkeys b/data/catalogs/add-ons/translators/pcx/uk.catkeys
index 01a8f8e3c6..0ff3f8c751 100644
--- a/data/catalogs/add-ons/translators/pcx/uk.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/uk.catkeys
@@ -1,7 +1,8 @@
-1 ukrainian x-vnd.Haiku-PCXTranslator 2336213512
+1 ukrainian x-vnd.Haiku-PCXTranslator 1002061545
PCX %lu bit image PCXTranslator Зображення PCX %lu bit
PCX Settings main Настройки PCX
PCX images ConfigView Зображення PCX
PCX images PCXTranslator Зображення PCX
PCX translator PCXTranslator Перетворювач PCX
PCXTranslator Settings ConfigView Настройки перетворювача PCХ
+Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/png/be.catkeys b/data/catalogs/add-ons/translators/png/be.catkeys
index 65e329d6f7..bd839d3f9d 100644
--- a/data/catalogs/add-ons/translators/png/be.catkeys
+++ b/data/catalogs/add-ons/translators/png/be.catkeys
@@ -1,11 +1,11 @@
1 belarusian x-vnd.Haiku-PNGTranslator 2504765797
-Interlace Option PNGTranslator Чаргаванне
-Interlacing type: PNGTranslator Тып чаргавання:
-None PNGTranslator Адсутнічае
-PNG Interlace Menu PNGTranslator Меню чаргавання PNG
-PNG Settings PNGTranslator Наладкі PNG
-PNG image PNGTranslator Выява PNG
-PNG image translator PNGTranslator Канвертар выяваў PNG
-PNG images PNGTranslator Выявы PNG
-PNGTranslator Settings PNGTranslator Наладкі канвертару PNG
Version %d.%d.%d, %s PNGTranslator Версія %d.%d.%d, %s
+Interlace Option PNGTranslator Чаргаванне
+PNG Interlace Menu PNGTranslator Меню чаргавання PNG
+PNG image PNGTranslator Выява PNG
+PNG Settings PNGTranslator Наладкі PNG
+PNG image translator PNGTranslator Канвертар выяваў PNG
+None PNGTranslator Адсутнічае
+PNG images PNGTranslator Выявы PNG
+Interlacing type: PNGTranslator Тып чаргавання:
+PNGTranslator Settings PNGTranslator Наладкі канвертару PNG
diff --git a/data/catalogs/add-ons/translators/png/de.catkeys b/data/catalogs/add-ons/translators/png/de.catkeys
index 9a539aa0fe..a5df32f741 100644
--- a/data/catalogs/add-ons/translators/png/de.catkeys
+++ b/data/catalogs/add-ons/translators/png/de.catkeys
@@ -1,11 +1,11 @@
1 german x-vnd.Haiku-PNGTranslator 2504765797
-Interlace Option PNGTranslator Interlace-Option
-Interlacing type: PNGTranslator Interlacing-Art:
-None PNGTranslator Kein
-PNG Interlace Menu PNGTranslator PNG-Interlace-Menü
-PNG Settings PNGTranslator PNG-Einstellungen
-PNG image PNGTranslator PNG-Bild
-PNG image translator PNGTranslator PNG-Bild-Translator
-PNG images PNGTranslator PNG-Bild
-PNGTranslator Settings PNGTranslator PNG-Translator-Einstellungen
Version %d.%d.%d, %s PNGTranslator Version %d.%d.%d, %s
+Interlace Option PNGTranslator Interlace-Option
+PNG Interlace Menu PNGTranslator PNG-Interlace-Menü
+PNG image PNGTranslator PNG-Bild
+PNG Settings PNGTranslator PNG-Einstellungen
+PNG image translator PNGTranslator PNG-Bild-Translator
+None PNGTranslator Kein
+PNG images PNGTranslator PNG-Bild
+Interlacing type: PNGTranslator Interlacing-Art:
+PNGTranslator Settings PNGTranslator PNG-Translator-Einstellungen
diff --git a/data/catalogs/add-ons/translators/png/hr.catkeys b/data/catalogs/add-ons/translators/png/hr.catkeys
new file mode 100644
index 0000000000..d5ed8ec0fb
--- /dev/null
+++ b/data/catalogs/add-ons/translators/png/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-PNGTranslator 775334266
+None PNGTranslator Nijedan
+PNG Settings PNGTranslator PNG postavke
+PNG image PNGTranslator PNG slika
+PNG image translator PNGTranslator PNG prevoditelj slika
+PNG images PNGTranslator PNG slike
+PNGTranslator Settings PNGTranslator Postavke PNG prevoditelja
+Version %d.%d.%d, %s PNGTranslator Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/png/lt.catkeys b/data/catalogs/add-ons/translators/png/lt.catkeys
new file mode 100644
index 0000000000..fb4bbbc25f
--- /dev/null
+++ b/data/catalogs/add-ons/translators/png/lt.catkeys
@@ -0,0 +1,11 @@
+1 lithuanian x-vnd.Haiku-PNGTranslator 2504765797
+Version %d.%d.%d, %s PNGTranslator Versija %d.%d.%d, %s
+Interlace Option PNGTranslator Progresinio kodavimo nuostata
+PNG Interlace Menu PNGTranslator PNG progresinio kodavimo meniu
+PNG image PNGTranslator PNG paveikslas
+PNG Settings PNGTranslator PNG nuostatos
+PNG image translator PNGTranslator PNG paveikslų keitiklis
+None PNGTranslator joks
+PNG images PNGTranslator PNG paveikslai
+Interlacing type: PNGTranslator Progresinio kodavimo būdas:
+PNGTranslator Settings PNGTranslator PNG keitiklio nuostatos
diff --git a/data/catalogs/add-ons/translators/png/nl.catkeys b/data/catalogs/add-ons/translators/png/nl.catkeys
new file mode 100644
index 0000000000..ecd6d10511
--- /dev/null
+++ b/data/catalogs/add-ons/translators/png/nl.catkeys
@@ -0,0 +1,11 @@
+1 dutch; flemish x-vnd.Haiku-PNGTranslator 2504765797
+Version %d.%d.%d, %s PNGTranslator Versie %d.%d.%d, %s
+Interlace Option PNGTranslator Interlace opties
+PNG Interlace Menu PNGTranslator PNG Interlace Menu
+PNG image PNGTranslator PNG afbeelding
+PNG Settings PNGTranslator PNG Instellingen
+PNG image translator PNGTranslator PNG afbeelding vertaler
+None PNGTranslator Geen
+PNG images PNGTranslator PNG afbeeldingen
+Interlacing type: PNGTranslator Interlacing type:
+PNGTranslator Settings PNGTranslator PNGVertaler Instellingen
diff --git a/data/catalogs/add-ons/translators/png/ru.catkeys b/data/catalogs/add-ons/translators/png/ru.catkeys
index 738d6a5bd6..05ed45d005 100644
--- a/data/catalogs/add-ons/translators/png/ru.catkeys
+++ b/data/catalogs/add-ons/translators/png/ru.catkeys
@@ -1,11 +1,11 @@
1 russian x-vnd.Haiku-PNGTranslator 2504765797
-Interlace Option PNGTranslator Чересстрочные настройки
-Interlacing type: PNGTranslator Тип чередования
-None PNGTranslator Без чередования
-PNG Interlace Menu PNGTranslator Чересстрочные меню
-PNG Settings PNGTranslator Настройки PNG транслятора
-PNG image PNGTranslator PNG изображение
-PNG image translator PNGTranslator Транслятор PNG изображений
-PNG images PNGTranslator PNG изображения
-PNGTranslator Settings PNGTranslator Настройки PNG транслятора
Version %d.%d.%d, %s PNGTranslator Версия %d.%d.%d, %s
+Interlace Option PNGTranslator Чересстрочные настройки
+PNG Interlace Menu PNGTranslator Чересстрочные меню
+PNG image PNGTranslator PNG изображение
+PNG Settings PNGTranslator Настройки PNG транслятора
+PNG image translator PNGTranslator Транслятор PNG изображений
+None PNGTranslator Без чередования
+PNG images PNGTranslator PNG изображения
+Interlacing type: PNGTranslator Тип чередования
+PNGTranslator Settings PNGTranslator Настройки PNG транслятора
diff --git a/data/catalogs/add-ons/translators/png/sk.catkeys b/data/catalogs/add-ons/translators/png/sk.catkeys
index d52ec6c338..8293d8538e 100644
--- a/data/catalogs/add-ons/translators/png/sk.catkeys
+++ b/data/catalogs/add-ons/translators/png/sk.catkeys
@@ -1,11 +1,11 @@
1 slovak x-vnd.Haiku-PNGTranslator 2504765797
-Interlace Option PNGTranslator Možnosť prekladania
-Interlacing type: PNGTranslator Typ prekladania:
-None PNGTranslator Žiadne
-PNG Interlace Menu PNGTranslator Menu prekladania PNG
-PNG Settings PNGTranslator Nastavenia PNG
-PNG image PNGTranslator Obrázok PNG
-PNG image translator PNGTranslator Prekladač obrázkov PNG
-PNG images PNGTranslator Obrázky PNG
-PNGTranslator Settings PNGTranslator Nastavenia PNGTranslator
Version %d.%d.%d, %s PNGTranslator Verzia %d.%d.%d, %s
+Interlace Option PNGTranslator Možnosť prekladania
+PNG Interlace Menu PNGTranslator Menu prekladania PNG
+PNG image PNGTranslator Obrázok PNG
+PNG Settings PNGTranslator Nastavenia PNG
+PNG image translator PNGTranslator Prekladač obrázkov PNG
+None PNGTranslator Žiadne
+PNG images PNGTranslator Obrázky PNG
+Interlacing type: PNGTranslator Typ prekladania:
+PNGTranslator Settings PNGTranslator Nastavenia PNGTranslator
diff --git a/data/catalogs/add-ons/translators/ppm/be.catkeys b/data/catalogs/add-ons/translators/ppm/be.catkeys
index 4c816fb869..6e30d4235d 100644
--- a/data/catalogs/add-ons/translators/ppm/be.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/be.catkeys
@@ -1,31 +1,31 @@
1 belarusian x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain Наладкі PPM
Based on PPMTranslator sample code PPMTranslator Грунтуецца на зыходным тэксце прыкладу "PPMTranslator"
-Be Bitmap Format (PPMTranslator) PPMTranslator Фармат бітмапу BeOS (Канвертар PPM)
-Bitmap 1 bit PPMTranslator Бітмап 1 біт
+OK PPMMain ОК
+Grayscale 8 bits PPMTranslator Шэракаляровы 8 біт
CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 біт
+PPM image PPMTranslator Выява PPM
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт
+PPM Image Translator PPMTranslator Канвертар выяваў PPM
+Be Bitmap Format (PPMTranslator) PPMTranslator Фармат бітмапу BeOS (Канвертар PPM)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 біт
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 біт
-Grayscale 8 bits PPMTranslator Шэракаляровы 8 біт
-Input Color Space PPMTranslator Зыходная палета колераў
-None PPMTranslator Адсутнічае
-OK PPMMain ОК
-PPM Image Translator PPMTranslator Канвертар выяваў PPM
-PPM Settings PPMMain Наладкі PPM
-PPM image PPMTranslator Выява PPM
-PPMTranslator Settings PPMTranslator Наладкі канвертара PPM
-RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 бітаў
+bits/space PPMTranslator бітаў/ліст
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бітаў (big-endian)
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бітаў (big-endian)
+Version %d.%d.%d %s PPMTranslator Версія %d.%d.%d %s
RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 бітаў (big-endian)
RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 бітаў
-RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бітаў (big-endian)
-RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 бітаў
-RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бітаў (big-endian)
-RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт
-RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 бітаў (big-endian)
+Write ASCII PPMTranslator Запісваць ў ASCII
RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 бітаў
+None PPMTranslator Адсутнічае
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 бітаў (big-endian)
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 бітаў
+Bitmap 1 bit PPMTranslator Бітмап 1 біт
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 бітаў (big-endian)
+Input Color Space PPMTranslator Зыходная палета колераў
+RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 бітаў
Sample code copyright 1999, Be Incorporated PPMTranslator Ліцэнзія '1999, Be Incorporated' на выкарыстанне зыходнага коду прыкладаў.
+PPMTranslator Settings PPMTranslator Наладкі канвертара PPM
Something is wrong with the PPMTranslator! PPMMain Увага! Канвертар PPM мае нейкія праблемы!
System palette 8 bits PPMTranslator Сістэмная палета 8 бітаў
-Version %d.%d.%d %s PPMTranslator Версія %d.%d.%d %s
-Write ASCII PPMTranslator Запісваць ў ASCII
-bits/space PPMTranslator бітаў/ліст
diff --git a/data/catalogs/add-ons/translators/ppm/de.catkeys b/data/catalogs/add-ons/translators/ppm/de.catkeys
index 0002f82228..1e844d95ff 100644
--- a/data/catalogs/add-ons/translators/ppm/de.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/de.catkeys
@@ -1,31 +1,31 @@
1 german x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain PPM-Einstellungen
Based on PPMTranslator sample code PPMTranslator Basiert auf PPMTranslator Beispielcode
-Be Bitmap Format (PPMTranslator) PPMTranslator Be-Bitmap-Format (PPMTranslator)
-Bitmap 1 bit PPMTranslator Bitmap, 1 Bit
+OK PPMMain OK
+Grayscale 8 bits PPMTranslator Graustufen, 8 Bits
CMY 8:8:8 32 bits PPMTranslator CMY, 8:8:8, 32 Bits
+PPM image PPMTranslator PPM-Bild
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA, 5:5:5:1, 16 Bits
+PPM Image Translator PPMTranslator PPM-Bild-Translator
+Be Bitmap Format (PPMTranslator) PPMTranslator Be-Bitmap-Format (PPMTranslator)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA, 8:8:8:8, 32 Bits
CMYK 8:8:8:8 32 bits PPMTranslator CMYK, 8:8:8:8, 32 Bits
-Grayscale 8 bits PPMTranslator Graustufen, 8 Bits
-Input Color Space PPMTranslator Eingangs-Farbraum:
-None PPMTranslator Kein
-OK PPMMain OK
-PPM Image Translator PPMTranslator PPM-Bild-Translator
-PPM Settings PPMMain PPM-Einstellungen
-PPM image PPMTranslator PPM-Bild
-PPMTranslator Settings PPMTranslator PPMTranslator-Einstellungen
-RGB 5:5:5 16 bits PPMTranslator RGB, 5:5:5, 16 Bits
+bits/space PPMTranslator Bits/Raum
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB, 8:8:8, 32 Bits, Big-Endian
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB, 5:6:5, 16 Bits, Big-Endian
+Version %d.%d.%d %s PPMTranslator Version %d.%d.%d %s
RGB 5:5:5 16 bits big-endian PPMTranslator RGB, 5:5:5, 16 Bits, Big-Endian
RGB 5:6:5 16 bits PPMTranslator RGB, 5:6:5, 16 Bits
-RGB 5:6:5 16 bits big-endian PPMTranslator RGB, 5:6:5, 16 Bits, Big-Endian
-RGB 8:8:8 32 bits PPMTranslator RGB, 8:8:8, 32 Bits
-RGB 8:8:8 32 bits big-endian PPMTranslator RGB, 8:8:8, 32 Bits, Big-Endian
-RGBA 5:5:5:1 16 bits PPMTranslator RGBA, 5:5:5:1, 16 Bits
-RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA, 5:5:5:1, 16 Bits, Big-Endian
+Write ASCII PPMTranslator ASCII ausgeben
RGBA 8:8:8:8 32 bits PPMTranslator RGBA, 8:8:8:8, 32 Bits
+None PPMTranslator Kein
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA, 5:5:5:1, 16 Bits, Big-Endian
+RGB 5:5:5 16 bits PPMTranslator RGB, 5:5:5, 16 Bits
+Bitmap 1 bit PPMTranslator Bitmap, 1 Bit
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA, 8:8:8:8, 32 Bits, Big-Endian
+Input Color Space PPMTranslator Eingangs-Farbraum:
+RGB 8:8:8 32 bits PPMTranslator RGB, 8:8:8, 32 Bits
Sample code copyright 1999, Be Incorporated PPMTranslator Beispielcode Copyright 1999, Be Incorporated
+PPMTranslator Settings PPMTranslator PPMTranslator-Einstellungen
Something is wrong with the PPMTranslator! PPMMain Etwas stimmt nicht mit dem PPMTranslator!
System palette 8 bits PPMTranslator Systempalette, 8 Bits
-Version %d.%d.%d %s PPMTranslator Version %d.%d.%d %s
-Write ASCII PPMTranslator ASCII ausgeben
-bits/space PPMTranslator Bits/Raum
diff --git a/data/catalogs/add-ons/translators/ppm/hr.catkeys b/data/catalogs/add-ons/translators/ppm/hr.catkeys
new file mode 100644
index 0000000000..564d5ba096
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ppm/hr.catkeys
@@ -0,0 +1,24 @@
+1 croatian x-vnd.Haiku-PPMTranslator 2319918968
+Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPM prevoditelj)
+Bitmap 1 bit PPMTranslator Bitmap 1 bit
+CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 bit-a
+CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bit-a
+CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bit-a
+Grayscale 8 bits PPMTranslator Sivo 8 bit-a
+Input Color Space PPMTranslator Prostor za unešenu boju
+None PPMTranslator Nijedan
+OK PPMMain OK
+PPM Image Translator PPMTranslator PPM prevoditelj slika
+PPM Settings PPMMain PPM postavke
+PPM image PPMTranslator PPM slika
+PPMTranslator Settings PPMTranslator Postavke PPM prevoditelja
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 bit-a
+RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 bit-a
+RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 bit-ova
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bit-a
+RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 bit-a
+Something is wrong with the PPMTranslator! PPMMain Nešto nije uredu sa PPM prevoditeljem!
+System palette 8 bits PPMTranslator Paleta sustava 8 bit-a
+Version %d.%d.%d %s PPMTranslator Verzija %d.%d.%d %s
+Write ASCII PPMTranslator Piši ASCII
+bits/space PPMTranslator bit-a/prostor
diff --git a/data/catalogs/add-ons/translators/ppm/lt.catkeys b/data/catalogs/add-ons/translators/ppm/lt.catkeys
new file mode 100644
index 0000000000..c8a00de665
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ppm/lt.catkeys
@@ -0,0 +1,31 @@
+1 lithuanian x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain PPM nuostatos
+Based on PPMTranslator sample code PPMTranslator Sukurta PPM keitiklio pavyzdinio kodo pagrindu
+OK PPMMain Gerai
+Grayscale 8 bits PPMTranslator 8 bitų pilkumo tonai
+CMY 8:8:8 32 bits PPMTranslator ŽPG 8:8:8 32 bitų
+PPM image PPMTranslator PPM paveikslas
+RGBA 5:5:5:1 16 bits PPMTranslator RŽMA 5:5:5:1 16 bitų
+PPM Image Translator PPMTranslator PPM paveikslų keitiklis
+Be Bitmap Format (PPMTranslator) PPMTranslator „Be“ paveikslų formatas (PPM keitiklis)
+CMYA 8:8:8:8 32 bits PPMTranslator ŽPGA 8:8:8:8 32 bitų
+CMYK 8:8:8:8 32 bits PPMTranslator ŽPGJ 8:8:8:8 32 bitų
+bits/space PPMTranslator bitų/erdvėje
+RGB 8:8:8 32 bits big-endian PPMTranslator RŽM 8:8:8 32 bitų, mažėjantys baitai
+RGB 5:6:5 16 bits big-endian PPMTranslator RŽM 5:6:5 16 bitų, mažėjantys baitai
+Version %d.%d.%d %s PPMTranslator Versija %d.%d.%d %s
+RGB 5:5:5 16 bits big-endian PPMTranslator RŽM 5:5:5 16 bitų, mažėjantys baitai
+RGB 5:6:5 16 bits PPMTranslator RŽM 5:6:5, 16 bitų
+Write ASCII PPMTranslator Rašyti ASCII baitais
+RGBA 8:8:8:8 32 bits PPMTranslator RŽMA 8:8:8:8 32 bitų
+None PPMTranslator jokia
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RŽMA 5:5:5:1 16 bitų, mažėjantys baitai
+RGB 5:5:5 16 bits PPMTranslator RŽM 5:5:5 16 bitų
+Bitmap 1 bit PPMTranslator 1 bito paveikslas
+RGBA 8:8:8:8 32 bits big-endian PPMTranslator RŽMA 8:8:8:8 32 bitų, mažėjantys baitai
+Input Color Space PPMTranslator Įvesties spalvų erdvė
+RGB 8:8:8 32 bits PPMTranslator RŽM 8:8:8 32 bitų
+Sample code copyright 1999, Be Incorporated PPMTranslator Pavyzdinio kodo autorių teisės priklauso „Be Incorporated“, © 1999
+PPMTranslator Settings PPMTranslator PPM keitiklio nuostatos
+Something is wrong with the PPMTranslator! PPMMain Su PPM keitikliu kažkas ne taip!
+System palette 8 bits PPMTranslator sisteminė 8 bitų paletė
diff --git a/data/catalogs/add-ons/translators/ppm/nl.catkeys b/data/catalogs/add-ons/translators/ppm/nl.catkeys
new file mode 100644
index 0000000000..3dad751d28
--- /dev/null
+++ b/data/catalogs/add-ons/translators/ppm/nl.catkeys
@@ -0,0 +1,31 @@
+1 dutch; flemish x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain PPM Instellingen
+Based on PPMTranslator sample code PPMTranslator Gebaseerd op PPM-Vertaler voorbeeld code
+OK PPMMain OK
+Grayscale 8 bits PPMTranslator Grijswaarden 8 bits
+CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 bits
+PPM image PPMTranslator PPM afbeelding
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bits
+PPM Image Translator PPMTranslator PPM Afbeelding vertaler
+Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Formaat (PPM Vertaler)
+CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bits
+CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bits
+bits/space PPMTranslator bits/ruimte
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 bits big-endian
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 bits big-endian
+Version %d.%d.%d %s PPMTranslator Versie %d.%d.%d %s
+RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 bits big-endian
+RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 bits
+Write ASCII PPMTranslator ASCII schrijven
+RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 bits
+None PPMTranslator Geen
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 bits big-endian
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 bits
+Bitmap 1 bit PPMTranslator Bitmap 1 bit
+RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 bits big-endian
+Input Color Space PPMTranslator Kleurenruimte van invoer
+RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 bits
+Sample code copyright 1999, Be Incorporated PPMTranslator Sample Code copyright 1999, Be Incorprated
+PPMTranslator Settings PPMTranslator PMMVertaler Instellingen
+Something is wrong with the PPMTranslator! PPMMain Er is iets verkeerd met de PPMTranslator!
+System palette 8 bits PPMTranslator Systeemkleurenpalet 8 bits
diff --git a/data/catalogs/add-ons/translators/ppm/ru.catkeys b/data/catalogs/add-ons/translators/ppm/ru.catkeys
index eef62f1866..7490b78d75 100644
--- a/data/catalogs/add-ons/translators/ppm/ru.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/ru.catkeys
@@ -1,31 +1,31 @@
1 russian x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain Настройки PPM транслятора
Based on PPMTranslator sample code PPMTranslator Основано на исходном коде PPM транслятора
-Be Bitmap Format (PPMTranslator) PPMTranslator Битмапный формат BeOS (PPM транслятор)
-Bitmap 1 bit PPMTranslator Битмап 1 бит
+OK PPMMain ОК
+Grayscale 8 bits PPMTranslator Оттенки серого 8 бит
CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 бита
+PPM image PPMTranslator PPM изображение
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 бит
+PPM Image Translator PPMTranslator Транслятор PPM изображений
+Be Bitmap Format (PPMTranslator) PPMTranslator Битмапный формат BeOS (PPM транслятор)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 бита
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 бита
-Grayscale 8 bits PPMTranslator Оттенки серого 8 бит
-Input Color Space PPMTranslator Исходная палитра цветов
-None PPMTranslator Отстутствует
-OK PPMMain ОК
-PPM Image Translator PPMTranslator Транслятор PPM изображений
-PPM Settings PPMMain Настройки PPM транслятора
-PPM image PPMTranslator PPM изображение
-PPMTranslator Settings PPMTranslator Настройки PPM транслятора
-RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 бит
+bits/space PPMTranslator бит/пространство
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бита (big-endian)
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бит (big-endian)
+Version %d.%d.%d %s PPMTranslator Версия %d.%d.%d %s
RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 бит (big-endian)
RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 бит
-RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 бит (big-endian)
-RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 бита
-RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 бита (big-endian)
-RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 бит
-RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 бит (big-endian)
+Write ASCII PPMTranslator Записывать в ASCII
RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 бита
+None PPMTranslator Отстутствует
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 бит (big-endian)
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 бит
+Bitmap 1 bit PPMTranslator Битмап 1 бит
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 бита (big-endian)
+Input Color Space PPMTranslator Исходная палитра цветов
+RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 бита
Sample code copyright 1999, Be Incorporated PPMTranslator Лицензия 1999, Be Incorporated на использование примеров исходного кода
+PPMTranslator Settings PPMTranslator Настройки PPM транслятора
Something is wrong with the PPMTranslator! PPMMain Что-то не так с PPM транслятором!
System palette 8 bits PPMTranslator Системная палитра 8 бит
-Version %d.%d.%d %s PPMTranslator Версия %d.%d.%d %s
-Write ASCII PPMTranslator Записывать в ASCII
-bits/space PPMTranslator бит/пространство
diff --git a/data/catalogs/add-ons/translators/ppm/sk.catkeys b/data/catalogs/add-ons/translators/ppm/sk.catkeys
index 7164929f4e..13a54d19f6 100644
--- a/data/catalogs/add-ons/translators/ppm/sk.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/sk.catkeys
@@ -1,31 +1,31 @@
1 slovak x-vnd.Haiku-PPMTranslator 2886727868
+PPM Settings PPMMain Nastavenia PPM
Based on PPMTranslator sample code PPMTranslator Založené na vzorovom kóde PPMTranslator
-Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPMTranslator)
-Bitmap 1 bit PPMTranslator Bitmapa 1 bit
+OK PPMMain OK
+Grayscale 8 bits PPMTranslator Stupne šedej 8 bitov
CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 bitov
+PPM image PPMTranslator Obrázok PPM
+RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bitov
+PPM Image Translator PPMTranslator Prekladač obrázkov PPM
+Be Bitmap Format (PPMTranslator) PPMTranslator Be Bitmap Format (PPMTranslator)
CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 bitov
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 bitov
-Grayscale 8 bits PPMTranslator Stupne šedej 8 bitov
-Input Color Space PPMTranslator Vstupný farebný priestor
-None PPMTranslator Žiadne
-OK PPMMain OK
-PPM Image Translator PPMTranslator Prekladač obrázkov PPM
-PPM Settings PPMMain Nastavenia PPM
-PPM image PPMTranslator Obrázok PPM
-PPMTranslator Settings PPMTranslator Nastavenia PPMTranslator
-RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 bitov
+bits/space PPMTranslator bitov/priestor
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 bitov big-endian
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 bitov big-endian
+Version %d.%d.%d %s PPMTranslator Verzia %d.%d.%d %s
RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 bitov big-endian
RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 bitov
-RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 bitov big-endian
-RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 bitov
-RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 bitov big-endian
-RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 bitov
-RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 bitov big-endian
+Write ASCII PPMTranslator Zapísať ASCII
RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 bitov
+None PPMTranslator Žiadne
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 bitov big-endian
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 bitov
+Bitmap 1 bit PPMTranslator Bitmapa 1 bit
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 bitov big-endian
+Input Color Space PPMTranslator Vstupný farebný priestor
+RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 bitov
Sample code copyright 1999, Be Incorporated PPMTranslator Vzorový kód Copyright 1999, Be Incorporated
+PPMTranslator Settings PPMTranslator Nastavenia PPMTranslator
Something is wrong with the PPMTranslator! PPMMain Niečo v PPMTranslator sa pokazilo!
System palette 8 bits PPMTranslator Systémová paleta 8 bitov
-Version %d.%d.%d %s PPMTranslator Verzia %d.%d.%d %s
-Write ASCII PPMTranslator Zapísať ASCII
-bits/space PPMTranslator bitov/priestor
diff --git a/data/catalogs/add-ons/translators/ppm/uk.catkeys b/data/catalogs/add-ons/translators/ppm/uk.catkeys
index c8a91461d0..1ff4fcdbc4 100644
--- a/data/catalogs/add-ons/translators/ppm/uk.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/uk.catkeys
@@ -1,4 +1,5 @@
-1 ukrainian x-vnd.Haiku-PPMTranslator 3767812004
+1 ukrainian x-vnd.Haiku-PPMTranslator 2886727868
+Based on PPMTranslator sample code PPMTranslator На основі зразка коду Перетворювача PPM
Be Bitmap Format (PPMTranslator) PPMTranslator Формат Be Bitmap (Перетворювач PPM)
Bitmap 1 bit PPMTranslator Bitmap 1 біт
CMY 8:8:8 32 bits PPMTranslator CMY 8:8:8 32 біт
@@ -6,18 +7,25 @@ CMYA 8:8:8:8 32 bits PPMTranslator CMYA 8:8:8:8 32 біт
CMYK 8:8:8:8 32 bits PPMTranslator CMYK 8:8:8:8 32 біт
Grayscale 8 bits PPMTranslator 8 бітні сірі
Input Color Space PPMTranslator Вхідна палета кольорів
+None PPMTranslator Жоден
OK PPMMain Гаразд
PPM Image Translator PPMTranslator Перетворювач зображень PPM
PPM Settings PPMMain Настройки PPM
PPM image PPMTranslator Зображення PPM
PPMTranslator Settings PPMTranslator Настройка Перетворювача PPM
+RGB 5:5:5 16 bits PPMTranslator RGB 5:5:5 16 біт
RGB 5:5:5 16 bits big-endian PPMTranslator RGB 5:5:5 16 біт (big-endian)
RGB 5:6:5 16 bits PPMTranslator RGB 5:6:5 16 біт
+RGB 5:6:5 16 bits big-endian PPMTranslator RGB 5:6:5 16 біт (big-endian)
RGB 8:8:8 32 bits PPMTranslator RGB 8:8:8 32 біт
+RGB 8:8:8 32 bits big-endian PPMTranslator RGB 8:8:8 32 біт (big-endian)
RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт
+RGBA 5:5:5:1 16 bits big-endian PPMTranslator RGBA 5:5:5:1 16 біт (big-endian)
RGBA 8:8:8:8 32 bits PPMTranslator RGBA 8:8:8:8 32 біт
RGBA 8:8:8:8 32 bits big-endian PPMTranslator RGBA 8:8:8:8 32 bits (big-endian)
Sample code copyright 1999, Be Incorporated PPMTranslator Приклад коду copyright 1999, Be Incorporated
Something is wrong with the PPMTranslator! PPMMain Негаразди з Перетворювачем PPM!
System palette 8 bits PPMTranslator Системна палета 8 біт
+Version %d.%d.%d %s PPMTranslator Версія %d.%d.%d %s
Write ASCII PPMTranslator Записати в ASCII
+bits/space PPMTranslator біт/простір
diff --git a/data/catalogs/add-ons/translators/raw/be.catkeys b/data/catalogs/add-ons/translators/raw/be.catkeys
index 4409f5d586..342037ad83 100644
--- a/data/catalogs/add-ons/translators/raw/be.catkeys
+++ b/data/catalogs/add-ons/translators/raw/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-RAWTranslator 1938728039
-%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.
-RAW Images ConfigView Выявы RAW
-RAW Settings RAWTranslator main Наладкі RAW
-RAW image translator RAWTranslator Канвертар выяваў RAW
-RAW images RAWTranslator Выявы RAW
RAWTranslator Settings ConfigView Наладкі канвертара RAW
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
+RAW Images ConfigView Выявы RAW
+RAW image translator RAWTranslator Канвертар выяваў RAW
+RAW Settings RAWTranslator main Наладкі RAW
+RAW images RAWTranslator Выявы RAW
+%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.
diff --git a/data/catalogs/add-ons/translators/raw/de.catkeys b/data/catalogs/add-ons/translators/raw/de.catkeys
index 914946f100..e7f08c07e5 100644
--- a/data/catalogs/add-ons/translators/raw/de.catkeys
+++ b/data/catalogs/add-ons/translators/raw/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-RAWTranslator 1938728039
-%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
-RAW Images ConfigView RAW-Bilder
-RAW Settings RAWTranslator main RAW-Einstellungen
-RAW image translator RAWTranslator RAW-Bild-Translator
-RAW images RAWTranslator RAW-Bilder
RAWTranslator Settings ConfigView RAWTranslator-Einstellungen
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
+RAW Images ConfigView RAW-Bilder
+RAW image translator RAWTranslator RAW-Bild-Translator
+RAW Settings RAWTranslator main RAW-Einstellungen
+RAW images RAWTranslator RAW-Bilder
+%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
diff --git a/data/catalogs/add-ons/translators/raw/hr.catkeys b/data/catalogs/add-ons/translators/raw/hr.catkeys
new file mode 100644
index 0000000000..2ee1a1439f
--- /dev/null
+++ b/data/catalogs/add-ons/translators/raw/hr.catkeys
@@ -0,0 +1,9 @@
+1 croatian x-vnd.Haiku-RAWTranslator 1938728039
+%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') %s RAW slika
+Based on Dave Coffin's dcraw 8.63 ConfigView Bazirano na Dave Coffin-ovom dcraw 8.63
+RAW Images ConfigView RAW Slike
+RAW Settings RAWTranslator main RAW postavke
+RAW image translator RAWTranslator RAW prevoditelj slika
+RAW images RAWTranslator RAW slike
+RAWTranslator Settings ConfigView RAWTranslator postavke
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/raw/lt.catkeys b/data/catalogs/add-ons/translators/raw/lt.catkeys
new file mode 100644
index 0000000000..cd3e927cc9
--- /dev/null
+++ b/data/catalogs/add-ons/translators/raw/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-RAWTranslator 1938728039
+RAWTranslator Settings ConfigView RAW keitiklio nuostatos
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+RAW Images ConfigView RAW paveikslai
+RAW image translator RAWTranslator RAW paveikslų keitiklis
+RAW Settings RAWTranslator main RAW nuostatos
+RAW images RAWTranslator RAW paveikslai
+%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
diff --git a/data/catalogs/add-ons/translators/raw/nl.catkeys b/data/catalogs/add-ons/translators/raw/nl.catkeys
new file mode 100644
index 0000000000..61c84cebae
--- /dev/null
+++ b/data/catalogs/add-ons/translators/raw/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-RAWTranslator 1938728039
+RAWTranslator Settings ConfigView RAWTranslator Instellingen
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+RAW Images ConfigView RAW Afbeeldingen
+RAW image translator RAWTranslator RAW afbeelding vertaler
+RAW Settings RAWTranslator main RAW Instellingen
+RAW images RAWTranslator RAW afbeeldingen
+%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
diff --git a/data/catalogs/add-ons/translators/raw/ru.catkeys b/data/catalogs/add-ons/translators/raw/ru.catkeys
index 760824a6e0..8d25d2882e 100644
--- a/data/catalogs/add-ons/translators/raw/ru.catkeys
+++ b/data/catalogs/add-ons/translators/raw/ru.catkeys
@@ -1,9 +1,9 @@
1 russian x-vnd.Haiku-RAWTranslator 1938728039
-%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
-RAW Images ConfigView Транслятор RAW изображений
-RAW Settings RAWTranslator main Настройки RAW транслятора
-RAW image translator RAWTranslator Транслятор RAW изображений
-RAW images RAWTranslator RAW изображения
RAWTranslator Settings ConfigView Настройки RAW транслятора
Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
+RAW Images ConfigView Транслятор RAW изображений
+RAW image translator RAWTranslator Транслятор RAW изображений
+RAW Settings RAWTranslator main Настройки RAW транслятора
+RAW images RAWTranslator RAW изображения
+%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
diff --git a/data/catalogs/add-ons/translators/raw/sk.catkeys b/data/catalogs/add-ons/translators/raw/sk.catkeys
index 8593c3b15d..e06689ba40 100644
--- a/data/catalogs/add-ons/translators/raw/sk.catkeys
+++ b/data/catalogs/add-ons/translators/raw/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-RAWTranslator 1938728039
-%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
-RAW Images ConfigView Obrázky RAW
-RAW Settings RAWTranslator main Nastavenia RAW
-RAW image translator RAWTranslator Prekladač obrázkov RAW
-RAW images RAWTranslator obrázky RAW
RAWTranslator Settings ConfigView Nastavenia Prekladača RAW
Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
+RAW Images ConfigView Obrázky RAW
+RAW image translator RAWTranslator Prekladač obrázkov RAW
+RAW Settings RAWTranslator main Nastavenia RAW
+RAW images RAWTranslator Obrázky 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
diff --git a/data/catalogs/add-ons/translators/raw/uk.catkeys b/data/catalogs/add-ons/translators/raw/uk.catkeys
index 31793f78ae..9a22c628be 100644
--- a/data/catalogs/add-ons/translators/raw/uk.catkeys
+++ b/data/catalogs/add-ons/translators/raw/uk.catkeys
@@ -1,4 +1,6 @@
-1 ukrainian x-vnd.Haiku-RAWTranslator 4063218322
+1 ukrainian x-vnd.Haiku-RAWTranslator 1938728039
+%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
RAW Images ConfigView Зображення RAW
RAW Settings RAWTranslator main Настройки RAW
RAW image translator RAWTranslator Перетворювач зображень RAW
diff --git a/data/catalogs/add-ons/translators/rtf/be.catkeys b/data/catalogs/add-ons/translators/rtf/be.catkeys
index 85f8516be6..b5bb41fdc1 100644
--- a/data/catalogs/add-ons/translators/rtf/be.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-RTFTranslator 526958155
-RTF Settings main Наладки RTF
+Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
RTF text files RTFTranslator Файлы тэксту ў RTF
RTF-Translator Settings ConfigView Наладкі канвертара RTF
Rich Text Format (RTF) files ConfigView Файлы RTF (Багата фарматаваны тэкст)
+RTF Settings main Наладки RTF
+RichTextFormat file RTFTranslator Файл RichTextFormat
Rich Text Format Translator RTFTranslator Канвертар Багата Фарматаванага Тэксту (RTF)
Rich Text Format translator v%d.%d.%d %s RTFTranslator Канвертар Багата Фарматаванага Тэксту (RTF) версія %d.%d.%d %s
-RichTextFormat file RTFTranslator Файл RichTextFormat
-Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/rtf/de.catkeys b/data/catalogs/add-ons/translators/rtf/de.catkeys
index e68e31f318..4003f18e46 100644
--- a/data/catalogs/add-ons/translators/rtf/de.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-RTFTranslator 526958155
-RTF Settings main RTF-Einstellungen
+Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
RTF text files RTFTranslator RTF-Textdateien
RTF-Translator Settings ConfigView RTFTranslator-Einstellungen
Rich Text Format (RTF) files ConfigView Rich Text Format (RTF) Dateien
+RTF Settings main RTF-Einstellungen
+RichTextFormat file RTFTranslator RichTextFormat Datei
Rich Text Format Translator RTFTranslator Rich Text Format Translator
Rich Text Format translator v%d.%d.%d %s RTFTranslator Rich Text Format Translator v%d.%d.%d %s
-RichTextFormat file RTFTranslator RichTextFormat Datei
-Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/rtf/hr.catkeys b/data/catalogs/add-ons/translators/rtf/hr.catkeys
new file mode 100644
index 0000000000..ff5cb43368
--- /dev/null
+++ b/data/catalogs/add-ons/translators/rtf/hr.catkeys
@@ -0,0 +1,9 @@
+1 croatian x-vnd.Haiku-RTFTranslator 526958155
+RTF Settings main RTF postavke
+RTF text files RTFTranslator RTF tekst datoteke
+RTF-Translator Settings ConfigView Postavke RTF-prevoditelja
+Rich Text Format (RTF) files ConfigView Rich Text Format (RTF) datoteke
+Rich Text Format Translator RTFTranslator Rich Text Format prevoditelj
+Rich Text Format translator v%d.%d.%d %s RTFTranslator Rich Text Format prevoditelj v%d.%d.%d %s
+RichTextFormat file RTFTranslator RichTextFormat datoteka
+Version %d.%d.%d, %s ConfigView Verzija %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/rtf/lt.catkeys b/data/catalogs/add-ons/translators/rtf/lt.catkeys
new file mode 100644
index 0000000000..230e7f39c6
--- /dev/null
+++ b/data/catalogs/add-ons/translators/rtf/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-RTFTranslator 526958155
+Version %d.%d.%d, %s ConfigView Versija %d.%d.%d, %s
+RTF text files RTFTranslator RTF teksto failai
+RTF-Translator Settings ConfigView RTF keitiklio nuostatos
+Rich Text Format (RTF) files ConfigView RTF formato teksto failai
+RTF Settings main RTF nuostatos
+RichTextFormat file RTFTranslator RTF formato teksto failas
+Rich Text Format Translator RTFTranslator RTF keitiklis
+Rich Text Format translator v%d.%d.%d %s RTFTranslator RTF keitiklis, versija %d.%d.%d %s
diff --git a/data/catalogs/add-ons/translators/rtf/nl.catkeys b/data/catalogs/add-ons/translators/rtf/nl.catkeys
new file mode 100644
index 0000000000..deb9c1b26e
--- /dev/null
+++ b/data/catalogs/add-ons/translators/rtf/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-RTFTranslator 526958155
+Version %d.%d.%d, %s ConfigView Versie %d.%d.%d, %s
+RTF text files RTFTranslator RTF tekstbestanden
+RTF-Translator Settings ConfigView RTF-Translator instellingen
+Rich Text Format (RTF) files ConfigView Rich Text Format (RTF) bestanden
+RTF Settings main RTF Instellingen
+RichTextFormat file RTFTranslator RichTextFormat bestand
+Rich Text Format Translator RTFTranslator Rich Text Format Translator
+Rich Text Format translator v%d.%d.%d %s RTFTranslator Rich Text Format vertaler v%d.%d.%d %s
diff --git a/data/catalogs/add-ons/translators/rtf/ru.catkeys b/data/catalogs/add-ons/translators/rtf/ru.catkeys
index b49dd3f483..5d6d33999a 100644
--- a/data/catalogs/add-ons/translators/rtf/ru.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/ru.catkeys
@@ -1,9 +1,9 @@
1 russian x-vnd.Haiku-RTFTranslator 526958155
-RTF Settings main Настройки RTF транслятора
+Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
RTF text files RTFTranslator RTF текстовые файлы
RTF-Translator Settings ConfigView Настройки RTF транслятора
Rich Text Format (RTF) files ConfigView Файлы формата обогащённого текста (RTF)
+RTF Settings main Настройки RTF транслятора
+RichTextFormat file RTFTranslator Файл формата обогащённого текста
Rich Text Format Translator RTFTranslator Транслятор формата обогащённого текста
Rich Text Format translator v%d.%d.%d %s RTFTranslator Транслятор формата обогащённого текста v%d.%d.%d %s
-RichTextFormat file RTFTranslator Файл формата обогащённого текста
-Version %d.%d.%d, %s ConfigView Версия %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/rtf/sk.catkeys b/data/catalogs/add-ons/translators/rtf/sk.catkeys
index ddcab5a9a6..624ee7cd11 100644
--- a/data/catalogs/add-ons/translators/rtf/sk.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-RTFTranslator 526958155
-RTF Settings main Nastavenia RTF
+Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
RTF text files RTFTranslator Textové súbory RTF
RTF-Translator Settings ConfigView Nastavenia prekladača RTF
-Rich Text Format (RTF) files ConfigView súbory formátu Obohatený text (RTF)
+Rich Text Format (RTF) files ConfigView Súbory formátu Obohatený text (RTF)
+RTF Settings main Nastavenia RTF
+RichTextFormat file RTFTranslator Súbor RTF
Rich Text Format Translator RTFTranslator Prekladač RTF
Rich Text Format translator v%d.%d.%d %s RTFTranslator Prekladač RTF v%d.%d.%d %s
-RichTextFormat file RTFTranslator súbor RTF
-Version %d.%d.%d, %s ConfigView Verzia %d.%d.%d, %s
diff --git a/data/catalogs/add-ons/translators/sgi/be.catkeys b/data/catalogs/add-ons/translators/sgi/be.catkeys
index 519e8c9b87..4c97b550fe 100644
--- a/data/catalogs/add-ons/translators/sgi/be.catkeys
+++ b/data/catalogs/add-ons/translators/sgi/be.catkeys
@@ -1,13 +1,13 @@
1 belarusian x-vnd.Haiku-SGITranslator 2222378389
-None SGIView Ня трэба
-RLE SGIView RLE
-SGI Settings SGIMain Наладкі SGI
-SGI image SGITranslator Выява SGI
-SGI image translator SGITranslator Канвертар выяваў SGI
-SGI image translator SGIView Канвертар выяваў SGI
-SGI images SGITranslator Выявы SGI
-SGITranslator Settings SGITranslator Наладкі канвертара SGI
Use compression: SGIView Сціскваць:
Version %d.%d.%d %s SGIView Version %d.%d.%d %s
+SGITranslator Settings SGITranslator Наладкі канвертара SGI
+None SGIView Ня трэба
+SGI images SGITranslator Выявы SGI
+SGI image translator SGITranslator Канвертар выяваў SGI
+SGI image SGITranslator Выява SGI
+RLE SGIView RLE
+SGI Settings SGIMain Наладкі SGI
\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nгрунтуецца на SGI дадатку версіі 1.5 да GIMP:\n
written by:\n SGIView распрацаваны:\n
+SGI image translator SGIView Канвертар выяваў SGI
diff --git a/data/catalogs/add-ons/translators/sgi/de.catkeys b/data/catalogs/add-ons/translators/sgi/de.catkeys
index 8a2cdfa9e4..7840d2012a 100644
--- a/data/catalogs/add-ons/translators/sgi/de.catkeys
+++ b/data/catalogs/add-ons/translators/sgi/de.catkeys
@@ -1,13 +1,13 @@
1 german x-vnd.Haiku-SGITranslator 2222378389
-None SGIView Keine
-RLE SGIView RLE
-SGI Settings SGIMain SGI-Einstellungen
-SGI image SGITranslator SGI-Bild
-SGI image translator SGITranslator SGI-Bild-Translator
-SGI image translator SGIView SGI-Bild-Translator
-SGI images SGITranslator SGI-Bilder
-SGITranslator Settings SGITranslator SGITranslator-Einstellungen
Use compression: SGIView Komprimierung:
Version %d.%d.%d %s SGIView Version %d.%d.%d %s
+SGITranslator Settings SGITranslator SGITranslator-Einstellungen
+None SGIView Keine
+SGI images SGITranslator SGI-Bilder
+SGI image translator SGITranslator SGI-Bild-Translator
+SGI image SGITranslator SGI-Bild
+RLE SGIView RLE
+SGI Settings SGIMain SGI-Einstellungen
\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nbasiert auf GIMP SGI-Plugin v1.5:\n
written by:\n SGIView von:\n
+SGI image translator SGIView SGI-Bild-Translator
diff --git a/data/catalogs/add-ons/translators/sgi/hr.catkeys b/data/catalogs/add-ons/translators/sgi/hr.catkeys
new file mode 100644
index 0000000000..4b5c6f7d82
--- /dev/null
+++ b/data/catalogs/add-ons/translators/sgi/hr.catkeys
@@ -0,0 +1,13 @@
+1 croatian x-vnd.Haiku-SGITranslator 2222378389
+None SGIView Nema
+RLE SGIView RLE
+SGI Settings SGIMain SGI postavke
+SGI image SGITranslator SGI slika
+SGI image translator SGITranslator SGI prevoditelj slika
+SGI image translator SGIView SGI prevoditelj slika
+SGI images SGITranslator SGI slike
+SGITranslator Settings SGITranslator SGITranslator postavke
+Use compression: SGIView Koristi kompresiju:
+Version %d.%d.%d %s SGIView Verzija %d.%d.%d %s
+\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nbazirano na GIMP SHI priključku v1.5:\n
+written by:\n SGIView napisao:\n
diff --git a/data/catalogs/add-ons/translators/sgi/lt.catkeys b/data/catalogs/add-ons/translators/sgi/lt.catkeys
new file mode 100644
index 0000000000..909e9fa79d
--- /dev/null
+++ b/data/catalogs/add-ons/translators/sgi/lt.catkeys
@@ -0,0 +1,13 @@
+1 lithuanian x-vnd.Haiku-SGITranslator 2222378389
+Use compression: SGIView Naudoti glaudinimą:
+Version %d.%d.%d %s SGIView Versija %d.%d.%d %s
+SGITranslator Settings SGITranslator SGI keitiklio nuostatos
+None SGIView jokio
+SGI images SGITranslator SGI paveikslai
+SGI image translator SGITranslator SGI paveikslų keitiklis
+SGI image SGITranslator SGI paveikslas
+RLE SGIView RLE
+SGI Settings SGIMain SGI nuostatos
+\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nSukurta GIMP SGI papildinio 1.5 versijos pagrindu:\n
+written by:\n SGIView Autorius:\n
+SGI image translator SGIView SGI paveikslų keitiklis
diff --git a/data/catalogs/add-ons/translators/sgi/nl.catkeys b/data/catalogs/add-ons/translators/sgi/nl.catkeys
new file mode 100644
index 0000000000..65a2c14eb5
--- /dev/null
+++ b/data/catalogs/add-ons/translators/sgi/nl.catkeys
@@ -0,0 +1,13 @@
+1 dutch; flemish x-vnd.Haiku-SGITranslator 2222378389
+Use compression: SGIView Gebruik compressie:
+Version %d.%d.%d %s SGIView Versie %d.%d.%d %s
+SGITranslator Settings SGITranslator SGIVertaler Instellingen
+None SGIView Geen
+SGI images SGITranslator SGI afbeeldingen
+SGI image translator SGITranslator SGI afbeelding vertaler
+SGI image SGITranslator SGI afbeelding
+RLE SGIView RLE
+SGI Settings SGIMain SGI Instellingen
+\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\ngebaseerd op GIMP SGI plugin v1.5:\n
+written by:\n SGIView geschreven door:\n
+SGI image translator SGIView SGI afbeelding vertaler
diff --git a/data/catalogs/add-ons/translators/sgi/ru.catkeys b/data/catalogs/add-ons/translators/sgi/ru.catkeys
index ef61cd6623..efbce668b6 100644
--- a/data/catalogs/add-ons/translators/sgi/ru.catkeys
+++ b/data/catalogs/add-ons/translators/sgi/ru.catkeys
@@ -1,13 +1,13 @@
1 russian x-vnd.Haiku-SGITranslator 2222378389
-None SGIView без сжатия
-RLE SGIView кодирования повторов (RLE)
-SGI Settings SGIMain Настройки SGI транслятора
-SGI image SGITranslator SGI изображение
-SGI image translator SGITranslator Транслятор SGI изображений
-SGI image translator SGIView Транслятор SGI изображений
-SGI images SGITranslator SGI изображения
-SGITranslator Settings SGITranslator Настройки SGI транслятора
Use compression: SGIView Использовать сжатие:
Version %d.%d.%d %s SGIView Версия %d.%d.%d %s
+SGITranslator Settings SGITranslator Настройки SGI транслятора
+None SGIView без сжатия
+SGI images SGITranslator SGI изображения
+SGI image translator SGITranslator Транслятор SGI изображений
+SGI image SGITranslator SGI изображение
+RLE SGIView кодирования повторов (RLE)
+SGI Settings SGIMain Настройки SGI транслятора
\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nоснован на плагине GIMP SGI v1.5:\n
written by:\n SGIView разработан:\n
+SGI image translator SGIView Транслятор SGI изображений
diff --git a/data/catalogs/add-ons/translators/sgi/sk.catkeys b/data/catalogs/add-ons/translators/sgi/sk.catkeys
index 988b0e8f39..321e066bf1 100644
--- a/data/catalogs/add-ons/translators/sgi/sk.catkeys
+++ b/data/catalogs/add-ons/translators/sgi/sk.catkeys
@@ -1,13 +1,13 @@
1 slovak x-vnd.Haiku-SGITranslator 2222378389
-None SGIView Žiadne
-RLE SGIView RLE
-SGI Settings SGIMain Nastavenia SGI
-SGI image SGITranslator obrázok SGI
-SGI image translator SGITranslator Prekladač obrázkov SGI
-SGI image translator SGIView Prekladač obrázkov SGI
-SGI images SGITranslator Obrázky SGI
-SGITranslator Settings SGITranslator Nastavenia Prekladača SGI
Use compression: SGIView Použiť kompresiu:
Version %d.%d.%d %s SGIView Verzia %d.%d.%d %s
+SGITranslator Settings SGITranslator Nastavenia Prekladača SGI
+None SGIView Žiadne
+SGI images SGITranslator Obrázky SGI
+SGI image translator SGITranslator Prekladač obrázkov SGI
+SGI image SGITranslator Obrázok SGI
+RLE SGIView RLE
+SGI Settings SGIMain Nastavenia SGI
\n\nbased on GIMP SGI plugin v1.5:\n SGIView \n\nzaložené na zásuvnom module SGI v1.5 pre GIMP:\n
written by:\n SGIView napísal:\n
+SGI image translator SGIView Prekladač obrázkov SGI
diff --git a/data/catalogs/add-ons/translators/shared/be.catkeys b/data/catalogs/add-ons/translators/shared/be.catkeys
index 7112838440..fd36f1839c 100644
--- a/data/catalogs/add-ons/translators/shared/be.catkeys
+++ b/data/catalogs/add-ons/translators/shared/be.catkeys
@@ -1,5 +1,5 @@
1 belarusian x-pseudo.libtranslatorsutils 1020614280
-Be Bitmap Format BaseTranslator Фармат Бітмапаў
Error TranslatorWindow Памылка
OK TranslatorWindow ОК
+Be Bitmap Format BaseTranslator Фармат Бітмапаў
Unable to create the view. TranslatorWindow Немагчыма стварыць вакно
diff --git a/data/catalogs/add-ons/translators/shared/de.catkeys b/data/catalogs/add-ons/translators/shared/de.catkeys
index 13af6b7ae4..b5e5d2903e 100644
--- a/data/catalogs/add-ons/translators/shared/de.catkeys
+++ b/data/catalogs/add-ons/translators/shared/de.catkeys
@@ -1,5 +1,5 @@
1 german x-pseudo.libtranslatorsutils 1020614280
-Be Bitmap Format BaseTranslator Be Bitmap-Format
Error TranslatorWindow Fehler
OK TranslatorWindow OK
+Be Bitmap Format BaseTranslator Be Bitmap-Format
Unable to create the view. TranslatorWindow Der View konnte nicht erzeugt werden.
diff --git a/data/catalogs/add-ons/translators/shared/hr.catkeys b/data/catalogs/add-ons/translators/shared/hr.catkeys
new file mode 100644
index 0000000000..655956424d
--- /dev/null
+++ b/data/catalogs/add-ons/translators/shared/hr.catkeys
@@ -0,0 +1,5 @@
+1 croatian x-pseudo.libtranslatorsutils 1020614280
+Be Bitmap Format BaseTranslator Be Bitmap Format
+Error TranslatorWindow Greška
+OK TranslatorWindow U redu
+Unable to create the view. TranslatorWindow Nije moguće kreirati pogled.
diff --git a/data/catalogs/add-ons/translators/shared/lt.catkeys b/data/catalogs/add-ons/translators/shared/lt.catkeys
new file mode 100644
index 0000000000..fbe237e097
--- /dev/null
+++ b/data/catalogs/add-ons/translators/shared/lt.catkeys
@@ -0,0 +1,5 @@
+1 lithuanian x-pseudo.libtranslatorsutils 1020614280
+Error TranslatorWindow Klaida
+OK TranslatorWindow Gerai
+Be Bitmap Format BaseTranslator „Be“ paveikslų formatas
+Unable to create the view. TranslatorWindow Nepavyko sukurti rodinio.
diff --git a/data/catalogs/add-ons/translators/shared/nl.catkeys b/data/catalogs/add-ons/translators/shared/nl.catkeys
index 5e474f24e8..c43f804b0d 100644
--- a/data/catalogs/add-ons/translators/shared/nl.catkeys
+++ b/data/catalogs/add-ons/translators/shared/nl.catkeys
@@ -1,5 +1,5 @@
-1 dutch x-pseudo.libtranslatorsutils 1020614280
-Be Bitmap Format BaseTranslator Be-Bitmapformaat
+1 dutch; flemish x-pseudo.libtranslatorsutils 1020614280
Error TranslatorWindow Fout
OK TranslatorWindow Oké
+Be Bitmap Format BaseTranslator Be-Bitmapformaat
Unable to create the view. TranslatorWindow Niet in staat om het venster te maken.
diff --git a/data/catalogs/add-ons/translators/shared/ru.catkeys b/data/catalogs/add-ons/translators/shared/ru.catkeys
index 4c065f15e0..6cabb4a770 100644
--- a/data/catalogs/add-ons/translators/shared/ru.catkeys
+++ b/data/catalogs/add-ons/translators/shared/ru.catkeys
@@ -1,5 +1,5 @@
1 russian x-pseudo.libtranslatorsutils 1020614280
-Be Bitmap Format BaseTranslator Растровый формат Be
Error TranslatorWindow Ошибка
OK TranslatorWindow ОК
+Be Bitmap Format BaseTranslator Растровый формат Be
Unable to create the view. TranslatorWindow Невозможно создать вид.
diff --git a/data/catalogs/add-ons/translators/shared/sk.catkeys b/data/catalogs/add-ons/translators/shared/sk.catkeys
index 09e0b0d081..af2b2959f2 100644
--- a/data/catalogs/add-ons/translators/shared/sk.catkeys
+++ b/data/catalogs/add-ons/translators/shared/sk.catkeys
@@ -1,5 +1,5 @@
1 slovak x-pseudo.libtranslatorsutils 1020614280
-Be Bitmap Format BaseTranslator Be Bitmap Format
Error TranslatorWindow Chyba
OK TranslatorWindow OK
+Be Bitmap Format BaseTranslator Be Bitmap Format
Unable to create the view. TranslatorWindow Nebolo možné vytvoriť zobrazenie.
diff --git a/data/catalogs/add-ons/translators/stxt/be.catkeys b/data/catalogs/add-ons/translators/stxt/be.catkeys
index 5bf4659faa..8bd6f7edce 100644
--- a/data/catalogs/add-ons/translators/stxt/be.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/be.catkeys
@@ -1,7 +1,8 @@
-1 belarusian x-vnd.Haiku-STXTTranslator 4053395273
+1 belarusian x-vnd.Haiku-STXTTranslator 4075159346
Be styled text file STXTTranslator Тэкставы файл са стылямі (Be styled)
+StyledEdit files translator STXTTranslator Канвртар файлаў StyledEdit
Plain text file STXTTranslator Файл з простым тэкстам
-STXT Settings STXTMain Наладкі STXT
+StyledEdit files translator STXTView Канвертар файлаў StyledEdit
STXTTranslator Settings STXTTranslator Наладкі канвертара STXT
StyledEdit files STXTTranslator Файлы StyledEdit
-StyledEdit files translator STXTTranslator Канвртар файлаў StyledEdit
+STXT Settings STXTMain Наладкі STXT
diff --git a/data/catalogs/add-ons/translators/stxt/de.catkeys b/data/catalogs/add-ons/translators/stxt/de.catkeys
index 5b38d12c4c..e48b66df0c 100644
--- a/data/catalogs/add-ons/translators/stxt/de.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/de.catkeys
@@ -1,7 +1,8 @@
-1 german x-vnd.Haiku-STXTTranslator 4053395273
+1 german x-vnd.Haiku-STXTTranslator 4075159346
Be styled text file STXTTranslator Be-Styled-Textdatei
+StyledEdit files translator STXTTranslator StyledEdit-Text-Translator
Plain text file STXTTranslator Einfache Textdatei
-STXT Settings STXTMain STXT-Einstellungen
+StyledEdit files translator STXTView StyledEdit-Text-Translator
STXTTranslator Settings STXTTranslator STXTTranslator-Einstellungen
StyledEdit files STXTTranslator StyledEdit-Dateien
-StyledEdit files translator STXTTranslator StyledEdit-Text-Translator
+STXT Settings STXTMain STXT-Einstellungen
diff --git a/data/catalogs/add-ons/translators/stxt/fi.catkeys b/data/catalogs/add-ons/translators/stxt/fi.catkeys
index 237d97f625..954e359da7 100644
--- a/data/catalogs/add-ons/translators/stxt/fi.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/fi.catkeys
@@ -1,7 +1,8 @@
-1 finnish x-vnd.Haiku-STXTTranslator 4053395273
+1 finnish x-vnd.Haiku-STXTTranslator 4075159346
Be styled text file STXTTranslator Be-tyylinen tekstitiedosto
Plain text file STXTTranslator Pelkkä tekstitiedosto
STXT Settings STXTMain STXT-asetukset
STXTTranslator Settings STXTTranslator STXT-muunninasetukset
StyledEdit files STXTTranslator StyledEdit-tiedostot
StyledEdit files translator STXTTranslator StyledEdit-tiedostomuunnin
+StyledEdit files translator STXTView StyledEdit-tiedostomuunnin
diff --git a/data/catalogs/add-ons/translators/stxt/hr.catkeys b/data/catalogs/add-ons/translators/stxt/hr.catkeys
new file mode 100644
index 0000000000..3f4f5e51b2
--- /dev/null
+++ b/data/catalogs/add-ons/translators/stxt/hr.catkeys
@@ -0,0 +1,8 @@
+1 croatian x-vnd.Haiku-STXTTranslator 4075159346
+Be styled text file STXTTranslator Stilizirana tekstualna datoteka
+Plain text file STXTTranslator Obična tekstualna datoteka
+STXT Settings STXTMain STXT postavke
+STXTTranslator Settings STXTTranslator STXTTranstator postavke
+StyledEdit files STXTTranslator StyledEdit datoteke
+StyledEdit files translator STXTTranslator StyledEdit prevoditelj datoteka
+StyledEdit files translator STXTView StyledEdit prevoditelj datoteka
diff --git a/data/catalogs/add-ons/translators/stxt/lt.catkeys b/data/catalogs/add-ons/translators/stxt/lt.catkeys
new file mode 100644
index 0000000000..3899adcde7
--- /dev/null
+++ b/data/catalogs/add-ons/translators/stxt/lt.catkeys
@@ -0,0 +1,8 @@
+1 lithuanian x-vnd.Haiku-STXTTranslator 4075159346
+Be styled text file STXTTranslator „BeOS“ raiškiojo teksto failas
+StyledEdit files translator STXTTranslator Rašyklės raiškiojo teksto failų keitiklis
+Plain text file STXTTranslator Grynojo teksto failas
+StyledEdit files translator STXTView Rašyklės raiškiojo teksto failų keitiklis
+STXTTranslator Settings STXTTranslator STXT keitiklio nuostatos
+StyledEdit files STXTTranslator Rašyklės teksto failai
+STXT Settings STXTMain STXT nuostatos
diff --git a/data/catalogs/add-ons/translators/stxt/nl.catkeys b/data/catalogs/add-ons/translators/stxt/nl.catkeys
new file mode 100644
index 0000000000..05dad35289
--- /dev/null
+++ b/data/catalogs/add-ons/translators/stxt/nl.catkeys
@@ -0,0 +1,8 @@
+1 dutch; flemish x-vnd.Haiku-STXTTranslator 4075159346
+Be styled text file STXTTranslator Be stijl tekstbestand
+StyledEdit files translator STXTTranslator StyledEdit bestanden vertaler
+Plain text file STXTTranslator Platte tekstbestand
+StyledEdit files translator STXTView StyledEdit bestanden vertaler
+STXTTranslator Settings STXTTranslator STXTVertaler Instellingen
+StyledEdit files STXTTranslator StyledEdit bestanden
+STXT Settings STXTMain STXT Instellingen
diff --git a/data/catalogs/add-ons/translators/stxt/ru.catkeys b/data/catalogs/add-ons/translators/stxt/ru.catkeys
index 931f1a5ead..013163420a 100644
--- a/data/catalogs/add-ons/translators/stxt/ru.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/ru.catkeys
@@ -1,7 +1,7 @@
1 russian x-vnd.Haiku-STXTTranslator 4053395273
Be styled text file STXTTranslator Стилизованный текстовый файл BeOS
+StyledEdit files translator STXTTranslator Транслятор файлов StyledEdit
Plain text file STXTTranslator Текстовый файл
-STXT Settings STXTMain Настройки STXT транслятора
STXTTranslator Settings STXTTranslator Настройки STXT транслятора
StyledEdit files STXTTranslator Файлы StyledEdit
-StyledEdit files translator STXTTranslator Транслятор файлов StyledEdit
+STXT Settings STXTMain Настройки STXT транслятора
diff --git a/data/catalogs/add-ons/translators/stxt/sk.catkeys b/data/catalogs/add-ons/translators/stxt/sk.catkeys
index 671c4053ae..c2ffa3e1d4 100644
--- a/data/catalogs/add-ons/translators/stxt/sk.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/sk.catkeys
@@ -1,7 +1,8 @@
-1 slovak x-vnd.Haiku-STXTTranslator 4053395273
+1 slovak x-vnd.Haiku-STXTTranslator 4075159346
Be styled text file STXTTranslator Textový súbor so štýlom Be
+StyledEdit files translator STXTTranslator Prekladač súborov StyledEdit
Plain text file STXTTranslator Čistý textový súbor
-STXT Settings STXTMain Nastavenia STXT
+StyledEdit files translator STXTView Prekladač súborov StyledEdit
STXTTranslator Settings STXTTranslator Nastavenia STXTTranslator
StyledEdit files STXTTranslator Súbory StyledEdit
-StyledEdit files translator STXTTranslator Prekladač súborov StyledEdit
+STXT Settings STXTMain Nastavenia STXT
diff --git a/data/catalogs/add-ons/translators/stxt/sv.catkeys b/data/catalogs/add-ons/translators/stxt/sv.catkeys
index 30515951f5..1b2d07e422 100644
--- a/data/catalogs/add-ons/translators/stxt/sv.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/sv.catkeys
@@ -1,7 +1,8 @@
-1 swedish x-vnd.Haiku-STXTTranslator 4053395273
-Be styled text file STXTTranslator Textfil i StyledEdit-format
+1 swedish x-vnd.Haiku-STXTTranslator 4075159346
+Be styled text file STXTTranslator Textfil i Be-format
Plain text file STXTTranslator Klartextfil
STXT Settings STXTMain STXT-inställningar
STXTTranslator Settings STXTTranslator STXT-översättningsinställningar
-StyledEdit files STXTTranslator StyledEdit-filer
-StyledEdit files translator STXTTranslator StyledEdit filöversättare
+StyledEdit files STXTTranslator SkrivStiligt-filer
+StyledEdit files translator STXTTranslator SkrivStiligt filöversättare
+StyledEdit files translator STXTView SkrivStiligt filöversättare
diff --git a/data/catalogs/add-ons/translators/tga/be.catkeys b/data/catalogs/add-ons/translators/tga/be.catkeys
index 17efb0ea24..ce853cb29a 100644
--- a/data/catalogs/add-ons/translators/tga/be.catkeys
+++ b/data/catalogs/add-ons/translators/tga/be.catkeys
@@ -1,15 +1,16 @@
-1 belarusian x-vnd.Haiku-TGATranslator 2221210336
-Ignore TGA alpha channel TGAView Игнараваць альфа канал TGA
-Save with RLE Compression TGAView Захаваць з RLE сціскваннем
-TGA Settings TGAMain Наладкі TGA
-TGA image translator TGATranslator Канвертар выяваў TGA
-TGA images TGATranslator Выявы TGA
-TGATranslator Settings TGATranslator Наладкі канвертара TGA
-Targa image (%d bits RLE colormap) TGATranslator Выява Targa (палета колераў RLE %d бітаў)
-Targa image (%d bits RLE gray) TGATranslator Выява Targa (шэракаляровы RLE %d бітаў)
-Targa image (%d bits RLE truecolor) TGATranslator Выява Targa (поўнакаляровы RLE %d бітаў)
-Targa image (%d bits colormap) TGATranslator Выява Targa (палета колераў %d бітаў)
-Targa image (%d bits gray) TGATranslator Выява Targa (адценні шэрага %d бітаў)
+1 belarusian x-vnd.Haiku-TGATranslator 4159874267
Targa image (%d bits truecolor) TGATranslator Выява Targa (%d бітаў поўнaкаляровы)
Version %d.%d.%d %s TGAView Версія %d.%d.%d %s
+Ignore TGA alpha channel TGAView Игнараваць альфа канал TGA
+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 gray) TGATranslator Выява Targa (адценні шэрага %d бітаў)
Written by the Haiku Translation Kit Team TGAView Распрацаваны Haiku Translation Kit Team
+Targa image (%d bits RLE truecolor) TGATranslator Выява Targa (поўнакаляровы RLE %d бітаў)
+TGA images TGATranslator Выявы TGA
+TGATranslator Settings TGATranslator Наладкі канвертара TGA
+Save with RLE Compression TGAView Захаваць з RLE сціскваннем
+TGA image translator TGATranslator Канвертар выяваў TGA
+Targa image (%d bits RLE gray) TGATranslator Выява Targa (шэракаляровы RLE %d бітаў)
+TGA Settings TGAMain Наладкі TGA
diff --git a/data/catalogs/add-ons/translators/tga/de.catkeys b/data/catalogs/add-ons/translators/tga/de.catkeys
index 99bb927002..2b561b5874 100644
--- a/data/catalogs/add-ons/translators/tga/de.catkeys
+++ b/data/catalogs/add-ons/translators/tga/de.catkeys
@@ -1,15 +1,16 @@
-1 german x-vnd.Haiku-TGATranslator 2221210336
-Ignore TGA alpha channel TGAView TGA-Alphakanal ignorieren
-Save with RLE Compression TGAView Speichern mit RLE-Komprimierung
-TGA Settings TGAMain TGA-Einstellungen
-TGA image translator TGATranslator TGA-Bild-Translator
-TGA images TGATranslator TGA-Bilder
-TGATranslator Settings TGATranslator TGATranslator-Einstellungen
-Targa image (%d bits RLE colormap) TGATranslator Targa-Bild (%d Bits RLE Colormap)
-Targa image (%d bits RLE gray) TGATranslator Targa-Bild (%d Bits RLE-Graustufen)
-Targa image (%d bits RLE truecolor) TGATranslator Targa-Bild (%d Bits RLE Truecolor)
-Targa image (%d bits colormap) TGATranslator Targa-Bild (%d Bits Colormap)
-Targa image (%d bits gray) TGATranslator Targa-Bild (%d Bits Graustufen)
+1 german x-vnd.Haiku-TGATranslator 4159874267
Targa image (%d bits truecolor) TGATranslator Targa-Bild (%d Bits Truecolor)
Version %d.%d.%d %s TGAView Version %d.%d.%d %s
+Ignore TGA alpha channel TGAView TGA-Alphakanal ignorieren
+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 gray) TGATranslator Targa-Bild (%d Bits Graustufen)
Written by the Haiku Translation Kit Team TGAView vom Haiku Translation Kit Team
+Targa image (%d bits RLE truecolor) TGATranslator Targa-Bild (%d Bits RLE Truecolor)
+TGA images TGATranslator TGA-Bilder
+TGATranslator Settings TGATranslator TGATranslator-Einstellungen
+Save with RLE Compression TGAView Speichern mit RLE-Komprimierung
+TGA image translator TGATranslator TGA-Bild-Translator
+Targa image (%d bits RLE gray) TGATranslator Targa-Bild (%d Bits RLE-Graustufen)
+TGA Settings TGAMain TGA-Einstellungen
diff --git a/data/catalogs/add-ons/translators/tga/fi.catkeys b/data/catalogs/add-ons/translators/tga/fi.catkeys
index 677fc0001b..7ee5e9f4ca 100644
--- a/data/catalogs/add-ons/translators/tga/fi.catkeys
+++ b/data/catalogs/add-ons/translators/tga/fi.catkeys
@@ -1,6 +1,7 @@
-1 finnish x-vnd.Haiku-TGATranslator 2221210336
+1 finnish x-vnd.Haiku-TGATranslator 4159874267
Ignore TGA alpha channel TGAView Ohita TGA-alfakanava
Save with RLE Compression TGAView Tallenna RLE-tiivistyksellä
+TGA Image Translator TGAView TGA-kuvamuunnin
TGA Settings TGAMain TGA-asetukset
TGA image translator TGATranslator TGA-kuvamuunnin
TGA images TGATranslator TGA-kuvat
diff --git a/data/catalogs/add-ons/translators/tga/hr.catkeys b/data/catalogs/add-ons/translators/tga/hr.catkeys
new file mode 100644
index 0000000000..ca726564c9
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tga/hr.catkeys
@@ -0,0 +1,13 @@
+1 croatian x-vnd.Haiku-TGATranslator 3031470051
+Ignore TGA alpha channel TGAView Ignoriraj TGA alfa kanal
+Save with RLE Compression TGAView Spremi sa RLE kompresijom
+TGA Image Translator TGAView TGA prevoditelj slika
+TGA Settings TGAMain TGA postavke
+TGA image translator TGATranslator TGA prevoditelj slika
+TGA images TGATranslator TGA slike
+TGATranslator Settings TGATranslator TGATranlsator postavke
+Targa image (%d bits RLE gray) TGATranslator Targa slika (%d sivi RLE bitovi)
+Targa image (%d bits gray) TGATranslator Targa slika (%d sivi bitovi)
+Targa image (%d bits truecolor) TGATranslator Targa slika (%d bita prava boja)
+Version %d.%d.%d %s TGAView Verzija %d.%d.%d %s
+Written by the Haiku Translation Kit Team TGAView Napisao Haiku Translation Kit Tim
diff --git a/data/catalogs/add-ons/translators/tga/lt.catkeys b/data/catalogs/add-ons/translators/tga/lt.catkeys
new file mode 100644
index 0000000000..82ff6e79b6
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tga/lt.catkeys
@@ -0,0 +1,16 @@
+1 lithuanian x-vnd.Haiku-TGATranslator 4159874267
+Targa image (%d bits truecolor) TGATranslator TGA paveikslas (%d bitų tikrosios spalvos)
+Version %d.%d.%d %s TGAView Versija %d.%d.%d %s
+Ignore TGA alpha channel TGAView Nepaisyti TGA alfa kanalo
+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 gray) TGATranslator TGA paveikslas (%d bitų pilkumo tonai)
+Written by the Haiku Translation Kit Team TGAView Sukūrė „Haiku“ komanda
+Targa image (%d bits RLE truecolor) TGATranslator TGA paveikslas (%d bitų RLE tikrosios spalvos)
+TGA images TGATranslator TGA paveikslai
+TGATranslator Settings TGATranslator TGA keitiklio nuostatos
+Save with RLE Compression TGAView Įrašant naudoti RLE glaudinimą
+TGA image translator TGATranslator TGA paveikslų keitiklis
+Targa image (%d bits RLE gray) TGATranslator TGA paveikslas (%d bitų RLE pilkumo tonai)
+TGA Settings TGAMain TGA nuostatos
diff --git a/data/catalogs/add-ons/translators/tga/nl.catkeys b/data/catalogs/add-ons/translators/tga/nl.catkeys
new file mode 100644
index 0000000000..c36aad9d92
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tga/nl.catkeys
@@ -0,0 +1,16 @@
+1 dutch; flemish x-vnd.Haiku-TGATranslator 4159874267
+Targa image (%d bits truecolor) TGATranslator Targa afbeelding (%d bits truecolor)
+Version %d.%d.%d %s TGAView Versie %d.%d.%d %s
+Ignore TGA alpha channel TGAView Negeer TGA alpha kanaal
+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 gray) TGATranslator Targa afbeelding (%d bits grijs)
+Written by the Haiku Translation Kit Team TGAView Geschreven door het Haiku Translation Kit Team
+Targa image (%d bits RLE truecolor) TGATranslator Targa afbeelding (%d bits RLE truecolor)
+TGA images TGATranslator TGA afbeeldingen
+TGATranslator Settings TGATranslator TGAVertaler Instellingen
+Save with RLE Compression TGAView Met RLE-compressie opslaan
+TGA image translator TGATranslator TGA afbeelding vertaler
+Targa image (%d bits RLE gray) TGATranslator Targa afbeelding (%d bits RLE grijs)
+TGA Settings TGAMain TGA Instellingen
diff --git a/data/catalogs/add-ons/translators/tga/ru.catkeys b/data/catalogs/add-ons/translators/tga/ru.catkeys
index bd5141e3d5..81bfc99fe5 100644
--- a/data/catalogs/add-ons/translators/tga/ru.catkeys
+++ b/data/catalogs/add-ons/translators/tga/ru.catkeys
@@ -1,15 +1,15 @@
1 russian x-vnd.Haiku-TGATranslator 2221210336
-Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
-Save with RLE Compression TGAView Сохранить с RLE сжатием
-TGA Settings TGAMain Настройки TGA транслятора
-TGA image translator TGATranslator Транслятор TGA изображений
-TGA images TGATranslator TGA изображения
-TGATranslator Settings TGATranslator Настройки TGA транслятора
-Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
-Targa image (%d bits RLE gray) TGATranslator Targa изображение (%d битное серое RLE)
-Targa image (%d bits RLE truecolor) TGATranslator Targa изображение (%d битное полноцветное RLE)
-Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
-Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
Targa image (%d bits truecolor) TGATranslator Targa изображение (%d битный истинный цвет)
Version %d.%d.%d %s TGAView Версия %d.%d.%d %s
+Ignore TGA alpha channel TGAView Игнорировать альфа канал TGA
+Targa image (%d bits colormap) TGATranslator Targa изображение (%d битная цветовая карта)
+Targa image (%d bits RLE colormap) TGATranslator Targa изображение (%d битная цветовая карта RLE)
+Targa image (%d bits gray) TGATranslator Targa изображение (%d битное серое)
Written by the Haiku Translation Kit Team TGAView Разработан командой Haiku Translation Kit
+Targa image (%d bits RLE truecolor) TGATranslator Targa изображение (%d битное полноцветное RLE)
+TGA images TGATranslator TGA изображения
+TGATranslator Settings TGATranslator Настройки TGA транслятора
+Save with RLE Compression TGAView Сохранить с RLE сжатием
+TGA image translator TGATranslator Транслятор TGA изображений
+Targa image (%d bits RLE gray) TGATranslator Targa изображение (%d битное серое RLE)
+TGA Settings TGAMain Настройки TGA транслятора
diff --git a/data/catalogs/add-ons/translators/tga/sk.catkeys b/data/catalogs/add-ons/translators/tga/sk.catkeys
index 6da976cca9..451b9e2423 100644
--- a/data/catalogs/add-ons/translators/tga/sk.catkeys
+++ b/data/catalogs/add-ons/translators/tga/sk.catkeys
@@ -1,15 +1,16 @@
-1 slovak x-vnd.Haiku-TGATranslator 2221210336
-Ignore TGA alpha channel TGAView Ignorovať alfa kanál TGA
-Save with RLE Compression TGAView Uložiť s kompresiou RLE
-TGA Settings TGAMain Nastavenia TGA
-TGA image translator TGATranslator Prekladač obrázkov TGA
-TGA images TGATranslator Obrázky Targa
-TGATranslator Settings TGATranslator Nastavenia TGATranslator
-Targa image (%d bits RLE colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa RLE)
-Targa image (%d bits RLE gray) TGATranslator Obrázok Targa (%d-bitov šedej RLE)
-Targa image (%d bits RLE truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor RLE)
-Targa image (%d bits colormap) TGATranslator Obrázok Targa (%d-bitová farebná mapa)
-Targa image (%d bits gray) TGATranslator Obrázok Targa (%d-bitov šedej)
+1 slovak x-vnd.Haiku-TGATranslator 4159874267
Targa image (%d bits truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor)
Version %d.%d.%d %s TGAView Verzia %d.%d.%d %s
+Ignore TGA alpha channel TGAView Ignorovať alfa kanál TGA
+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 gray) TGATranslator Obrázok Targa (%d bitov šedej)
Written by the Haiku Translation Kit Team TGAView Napísal Haiku Translation Kit Team
+Targa image (%d bits RLE truecolor) TGATranslator Obrázok Targa (%d-bitový truecolor RLE)
+TGA images TGATranslator Obrázky TGA
+TGATranslator Settings TGATranslator Nastavenia TGATranslator
+Save with RLE Compression TGAView Uložiť s kompresiou RLE
+TGA image translator TGATranslator Prekladač obrázkov TGA
+Targa image (%d bits RLE gray) TGATranslator Obrázok Targa (%d-bitov šedej RLE)
+TGA Settings TGAMain Nastavenia TGA
diff --git a/data/catalogs/add-ons/translators/tga/sv.catkeys b/data/catalogs/add-ons/translators/tga/sv.catkeys
index f4cbb49698..1790125079 100644
--- a/data/catalogs/add-ons/translators/tga/sv.catkeys
+++ b/data/catalogs/add-ons/translators/tga/sv.catkeys
@@ -1,6 +1,7 @@
-1 swedish x-vnd.Haiku-TGATranslator 2221210336
+1 swedish x-vnd.Haiku-TGATranslator 4159874267
Ignore TGA alpha channel TGAView Ignorera TGA-alfakanal
Save with RLE Compression TGAView Spara med RLE komprimering
+TGA Image Translator TGAView TGA bildöversättare
TGA Settings TGAMain TGA inställningar
TGA image translator TGATranslator TGA-bildöversättare
TGA images TGATranslator TGA-bilder
diff --git a/data/catalogs/add-ons/translators/tiff/be.catkeys b/data/catalogs/add-ons/translators/tiff/be.catkeys
index 038bdcb27a..26a6ceaebb 100644
--- a/data/catalogs/add-ons/translators/tiff/be.catkeys
+++ b/data/catalogs/add-ons/translators/tiff/be.catkeys
@@ -1,16 +1,16 @@
1 belarusian x-vnd.Haiku-TIFFTranslator 292291870
LZW TIFFView LZW
-None TIFFView Адсутнічае
-RLE (Packbits) TIFFView RLE (Packbits)
-TIFF Image Translator TIFFView Канвертар выяваў TIFF
-TIFF Library: TIFFView Бібліятэка TIFF:
-TIFF Settings TIFFMain Наладкі TIFF
+identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: немагчыма пераключыць каталог\n
TIFF image TIFFTranslator Выява TIFF
-TIFF image translator TIFFTranslator Канвертар выяваў TIFF
+TIFF Library: TIFFView Бібліятэка TIFF:
+TIFF Image Translator TIFFView Канвертар выяваў TIFF
+None TIFFView Адсутнічае
TIFF images TIFFTranslator Выявы TIFF
TIFFTranslator Settings TIFFTranslator Наладкі канвертара выяваў TIFF
-Use Compression: TIFFView Запакаваць:
-Version %d.%d.%d %s TIFFView Версія %d.%d.%d %s
-ZIP (Deflate) TIFFView ZIP (Deflate)
-identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: немагчыма пераключыць каталог\n
+TIFF image translator TIFFTranslator Канвертар выяваў TIFF
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain Наладкі TIFF
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: некарэктны індэкс дакументу\n
+ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Версія %d.%d.%d %s
+Use Compression: TIFFView Запакаваць:
diff --git a/data/catalogs/add-ons/translators/tiff/de.catkeys b/data/catalogs/add-ons/translators/tiff/de.catkeys
index a9b3b2c442..1f521bea5f 100644
--- a/data/catalogs/add-ons/translators/tiff/de.catkeys
+++ b/data/catalogs/add-ons/translators/tiff/de.catkeys
@@ -1,16 +1,16 @@
1 german x-vnd.Haiku-TIFFTranslator 292291870
LZW TIFFView LZW
-None TIFFView Keine
-RLE (Packbits) TIFFView RLE (Packbits)
-TIFF Image Translator TIFFView TIFF-Bild-Translator
-TIFF Library: TIFFView TIFF-Bibliothek:
-TIFF Settings TIFFMain TIFF-Einstellungen
+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 translator TIFFTranslator TIFF-Bild-Translator
+TIFF Library: TIFFView TIFF-Bibliothek:
+TIFF Image Translator TIFFView TIFF-Bild-Translator
+None TIFFView Keine
TIFF images TIFFTranslator TIFF-Bilder
TIFFTranslator Settings TIFFTranslator TIFFTranslator-Einstellungen
-Use Compression: TIFFView Komprimierung:
-Version %d.%d.%d %s TIFFView Version %d.%d.%d %s
-ZIP (Deflate) TIFFView ZIP (Deflate)
-identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: Ordner konnte nicht gesetzt werden\n
+TIFF image translator TIFFTranslator TIFF-Bild-Translator
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain TIFF-Einstellungen
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: ungültiger Dokument-Index\n
+ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Version %d.%d.%d %s
+Use Compression: TIFFView Komprimierung:
diff --git a/data/catalogs/add-ons/translators/tiff/hr.catkeys b/data/catalogs/add-ons/translators/tiff/hr.catkeys
new file mode 100644
index 0000000000..ae264ded50
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tiff/hr.catkeys
@@ -0,0 +1,14 @@
+1 croatian x-vnd.Haiku-TIFFTranslator 1327609507
+LZW TIFFView LZW
+None TIFFView nijedan
+RLE (Packbits) TIFFView RLE(Packbits)
+TIFF Image Translator TIFFView TIFF prevoditelj slika
+TIFF Library: TIFFView TIFF biblioteka:
+TIFF Settings TIFFMain TIFF postavke
+TIFF image TIFFTranslator TIFF slika
+TIFF image translator TIFFTranslator TIFF prevoditelj slika
+TIFF images TIFFTranslator TIFF slike
+TIFFTranslator Settings TIFFTranslator TIFFTranslator postavke
+Use Compression: TIFFView Koristi kompresiju
+Version %d.%d.%d %s TIFFView Verzija %d.%d.%d %s
+ZIP (Deflate) TIFFView ZIP (Deflate)
diff --git a/data/catalogs/add-ons/translators/tiff/lt.catkeys b/data/catalogs/add-ons/translators/tiff/lt.catkeys
new file mode 100644
index 0000000000..bf7d51e46b
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tiff/lt.catkeys
@@ -0,0 +1,16 @@
+1 lithuanian x-vnd.Haiku-TIFFTranslator 292291870
+LZW TIFFView LZW
+identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: nepavyko nustatyti katalogo\n
+TIFF image TIFFTranslator TIFF paveikslas
+TIFF Library: TIFFView TIFF biblioteka:
+TIFF Image Translator TIFFView TIFF paveikslų keitiklis
+None TIFFView jokio
+TIFF images TIFFTranslator TIFF paveikslai
+TIFFTranslator Settings TIFFTranslator TIFF keitiklio nuostatos
+TIFF image translator TIFFTranslator TIFF paveikslų keitiklis
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain TIFF nuostatos
+identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: negalimas dokumento indeksas\n
+ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Versija %d.%d.%d %s
+Use Compression: TIFFView Naudoti glaudinimą:
diff --git a/data/catalogs/add-ons/translators/tiff/nl.catkeys b/data/catalogs/add-ons/translators/tiff/nl.catkeys
new file mode 100644
index 0000000000..eb3b7476a6
--- /dev/null
+++ b/data/catalogs/add-ons/translators/tiff/nl.catkeys
@@ -0,0 +1,16 @@
+1 dutch; flemish x-vnd.Haiku-TIFFTranslator 292291870
+LZW TIFFView LZW
+identify_tiff_header: couldn't set directory\n TIFFTranslator identify_tiff_header: kan directory niet plaatsen\n
+TIFF image TIFFTranslator TIFF afbeelding
+TIFF Library: TIFFView TIFF bibliotheek:
+TIFF Image Translator TIFFView TIFF Afbeelding Vertaler
+None TIFFView Geen
+TIFF images TIFFTranslator TIFF afbeeldingen
+TIFFTranslator Settings TIFFTranslator TIFFTranslator Instellingen
+TIFF image translator TIFFTranslator TIFF afbeelding vertaler
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain TIFF Instellingen
+identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: ongeldige documentindex\n
+ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Versie %d.%d.%d %s
+Use Compression: TIFFView Gebruik compressie:
diff --git a/data/catalogs/add-ons/translators/tiff/ru.catkeys b/data/catalogs/add-ons/translators/tiff/ru.catkeys
index f5385e94a0..a709966e31 100644
--- a/data/catalogs/add-ons/translators/tiff/ru.catkeys
+++ b/data/catalogs/add-ons/translators/tiff/ru.catkeys
@@ -1,14 +1,14 @@
1 russian x-vnd.Haiku-TIFFTranslator 1327609507
LZW TIFFView LZW
-None TIFFView Не использовать
-RLE (Packbits) TIFFView RLE (Packbits)
-TIFF Image Translator TIFFView Транслятор TIFF изображений
-TIFF Library: TIFFView Библиотека TIFF:
-TIFF Settings TIFFMain Настройки TIFF транслятора
TIFF image TIFFTranslator TIFF изображение
-TIFF image translator TIFFTranslator Транслятор TIFF изображений
+TIFF Library: TIFFView Библиотека TIFF:
+TIFF Image Translator TIFFView Транслятор TIFF изображений
+None TIFFView Не использовать
TIFF images TIFFTranslator TIFF изображения
TIFFTranslator Settings TIFFTranslator Настройки TIFF транслятора
-Use Compression: TIFFView Использовать сжатие:
-Version %d.%d.%d %s TIFFView Версия %d.%d.%d %s
+TIFF image translator TIFFTranslator Транслятор TIFF изображений
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain Настройки TIFF транслятора
ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Версия %d.%d.%d %s
+Use Compression: TIFFView Использовать сжатие:
diff --git a/data/catalogs/add-ons/translators/tiff/sk.catkeys b/data/catalogs/add-ons/translators/tiff/sk.catkeys
index 598c5375b4..70f44ccaf3 100644
--- a/data/catalogs/add-ons/translators/tiff/sk.catkeys
+++ b/data/catalogs/add-ons/translators/tiff/sk.catkeys
@@ -1,16 +1,16 @@
1 slovak x-vnd.Haiku-TIFFTranslator 292291870
LZW TIFFView LZW
-None TIFFView Žiadne
-RLE (Packbits) TIFFView RLE (Packbits)
-TIFF Image Translator TIFFView Prekladač obrázkov TIFF:
-TIFF Library: TIFFView Knižnica TIFF:
-TIFF Settings TIFFMain Nastavenia TIFF
-TIFF image TIFFTranslator Obrázok TIFF:
-TIFF image translator TIFFTranslator Prekladač obrázkov TIFF
-TIFF images TIFFTranslator Obrázky TIFF:
-TIFFTranslator Settings TIFFTranslator Nastavenia TIFFTranslator
-Use Compression: TIFFView Použiť kompresiu:
-Version %d.%d.%d %s TIFFView Verzia %d.%d.%d %s
-ZIP (Deflate) TIFFView ZIP (Deflate)
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 Library: TIFFView Knižnica TIFF:
+TIFF Image Translator TIFFView Prekladač obrázkov TIFF
+None TIFFView Žiadne
+TIFF images TIFFTranslator Obrázky TIFF
+TIFFTranslator Settings TIFFTranslator Nastavenia TIFFTranslator
+TIFF image translator TIFFTranslator Prekladač obrázkov TIFF
+RLE (Packbits) TIFFView RLE (Packbits)
+TIFF Settings TIFFMain Nastavenia TIFF
identify_tiff_header: invalid document index\n TIFFTranslator identify_tiff_header: neplatný index dokumentu\n
+ZIP (Deflate) TIFFView ZIP (Deflate)
+Version %d.%d.%d %s TIFFView Verzia %d.%d.%d %s
+Use Compression: TIFFView Použiť kompresiu:
diff --git a/data/catalogs/add-ons/translators/webp/be.catkeys b/data/catalogs/add-ons/translators/webp/be.catkeys
index 03caa5a83d..57211cfe5f 100644
--- a/data/catalogs/add-ons/translators/webp/be.catkeys
+++ b/data/catalogs/add-ons/translators/webp/be.catkeys
@@ -1,25 +1,25 @@
1 belarusian x-vnd.Haiku-WebPTranslator 3630570850
-Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1,
Compression method: ConfigView Метад сціску:
-Default ConfigView Прадвызначаныя
-Drawing ConfigView Малюнак
-Fast ConfigView Хуткі
-High ConfigView Высокі
-Icon ConfigView Значак
-Low ConfigView Нізкі
-Output preset: ConfigView Зыходныя прадвызначэнні:
-Output quality: ConfigView Выходная якасць:
-Photo ConfigView Фота
-Picture ConfigView Выява
-Preprocessing filter ConfigView Апрацоўка фільтра
+Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1,
Preset ConfigView Прадвызначаныя
-Slower but better ConfigView Павольней але якасней
-Text ConfigView Тэкст
WebP Images ConfigView Выявы WebP
-WebP Settings main Наладкі WebP
-WebP image WebPTranslator выява WebP
-WebP image translator WebPTranslator Канвертар выяваў WebP
WebP images WebPTranslator Выявы WebP
WebPTranslator Settings ConfigView Наладкі канвертара выяваў WebP
-©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+Output quality: ConfigView Выходная якасць:
+WebP Settings main Наладкі WebP
+Text ConfigView Тэкст
+Slower but better ConfigView Павольней але якасней
+WebP image WebPTranslator выява WebP
©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
+Output preset: ConfigView Зыходныя прадвызначэнні:
+Picture ConfigView Выява
+Low ConfigView Нізкі
+High ConfigView Высокі
+Drawing ConfigView Малюнак
+Default ConfigView Прадвызначаныя
+Fast ConfigView Хуткі
+Photo ConfigView Фота
+Preprocessing filter ConfigView Апрацоўка фільтра
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+WebP image translator WebPTranslator Канвертар выяваў WebP
+Icon ConfigView Значак
diff --git a/data/catalogs/add-ons/translators/webp/de.catkeys b/data/catalogs/add-ons/translators/webp/de.catkeys
index db4a777284..11cb5c09d3 100644
--- a/data/catalogs/add-ons/translators/webp/de.catkeys
+++ b/data/catalogs/add-ons/translators/webp/de.catkeys
@@ -1,25 +1,25 @@
1 german x-vnd.Haiku-WebPTranslator 3630570850
-Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
Compression method: ConfigView Komprimierungsart:
-Default ConfigView Standard
-Drawing ConfigView Zeichnung
-Fast ConfigView Schnell
-High ConfigView Hoch
-Icon ConfigView Icon
-Low ConfigView Niedrig
-Output preset: ConfigView Ausgabe-Voreinstellung:
-Output quality: ConfigView Ausgabequalität:
-Photo ConfigView Foto
-Picture ConfigView Bild
-Preprocessing filter ConfigView Vorgeschalteter Filter
+Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
Preset ConfigView Voreinstellung
-Slower but better ConfigView Langsamer, aber besser
-Text ConfigView Text
WebP Images ConfigView WebP-Bilder
-WebP Settings main WebP-Einstellungen
-WebP image WebPTranslator WebP-Bild
-WebP image translator WebPTranslator WebP-Bild-Translator
WebP images WebPTranslator WebP-Bilder
WebPTranslator Settings ConfigView WebPTranslator-Einstellungen
-©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+Output quality: ConfigView Ausgabequalität:
+WebP Settings main WebP-Einstellungen
+Text ConfigView Text
+Slower but better ConfigView Langsamer, aber besser
+WebP image WebPTranslator WebP-Bild
©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
+Output preset: ConfigView Ausgabe-Voreinstellung:
+Picture ConfigView Bild
+Low ConfigView Niedrig
+High ConfigView Hoch
+Drawing ConfigView Zeichnung
+Default ConfigView Standard
+Fast ConfigView Schnell
+Photo ConfigView Foto
+Preprocessing filter ConfigView Vorgeschalteter Filter
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+WebP image translator WebPTranslator WebP-Bild-Translator
+Icon ConfigView Icon
diff --git a/data/catalogs/add-ons/translators/webp/hr.catkeys b/data/catalogs/add-ons/translators/webp/hr.catkeys
new file mode 100644
index 0000000000..43cc1f1478
--- /dev/null
+++ b/data/catalogs/add-ons/translators/webp/hr.catkeys
@@ -0,0 +1,25 @@
+1 croatian x-vnd.Haiku-WebPTranslator 3630570850
+Based on libwebp v0.1, ConfigView Bazirano na libwebp v0.1
+Compression method: ConfigView Način kompresije:
+Default ConfigView Zadano
+Drawing ConfigView Crtanje
+Fast ConfigView Brzo
+High ConfigView Visoko
+Icon ConfigView Ikona
+Low ConfigView Nisko
+Output preset: ConfigView Izlazne postavke:
+Output quality: ConfigView Izlazna kvaliteta:
+Photo ConfigView Fotografija
+Picture ConfigView Slika
+Preprocessing filter ConfigView Predprocesorski filter
+Preset ConfigView Unaprijed postavljeno
+Slower but better ConfigView Sporije ali bolje
+Text ConfigView Tekst
+WebP Images ConfigView WebP Slike
+WebP Settings main WebP postavke
+WebP image WebPTranslator WebP slika
+WebP image translator WebPTranslator WebP prevoditelj slika
+WebP images WebPTranslator WebP slike
+WebPTranslator Settings ConfigView Postavke Webp prevoditelja
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
diff --git a/data/catalogs/add-ons/translators/webp/lt.catkeys b/data/catalogs/add-ons/translators/webp/lt.catkeys
new file mode 100644
index 0000000000..51e0cf11bb
--- /dev/null
+++ b/data/catalogs/add-ons/translators/webp/lt.catkeys
@@ -0,0 +1,25 @@
+1 lithuanian x-vnd.Haiku-WebPTranslator 3630570850
+Compression method: ConfigView Glaudinimo būdas:
+Based on libwebp v0.1, ConfigView Sukurta „libwebp v0.1“ pagrindu,
+Preset ConfigView Ruošinys
+WebP Images ConfigView WebP paveikslai
+WebP images WebPTranslator WebP paveikslai
+WebPTranslator Settings ConfigView WebP keitiklio nuostatos
+Output quality: ConfigView Išvesties kokybė:
+WebP Settings main WebP nuostatos
+Text ConfigView Tekstas
+Slower but better ConfigView Lėtesnis, bet geresnis
+WebP image WebPTranslator WebP paveikslas
+©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
+Output preset: ConfigView Išvesties nuostatų ruošinys:
+Picture ConfigView Paveikslas
+Low ConfigView Žema
+High ConfigView Aukšta
+Drawing ConfigView Piešinys
+Default ConfigView Numatytasis
+Fast ConfigView Greitas
+Photo ConfigView Nuotrauka
+Preprocessing filter ConfigView Išankstinio apdorojimo filtras
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+WebP image translator WebPTranslator „WebP“ paveikslų keitiklis
+Icon ConfigView Piktograma
diff --git a/data/catalogs/add-ons/translators/webp/nl.catkeys b/data/catalogs/add-ons/translators/webp/nl.catkeys
new file mode 100644
index 0000000000..7a155c126c
--- /dev/null
+++ b/data/catalogs/add-ons/translators/webp/nl.catkeys
@@ -0,0 +1,25 @@
+1 dutch; flemish x-vnd.Haiku-WebPTranslator 3630570850
+Compression method: ConfigView Compressie methode:
+Based on libwebp v0.1, ConfigView Gebaseerd op libwebp v0.1,
+Preset ConfigView Voorinstelling
+WebP Images ConfigView WebP Afbeeldingen
+WebP images WebPTranslator WebP afbeeldingen
+WebPTranslator Settings ConfigView WebPVertaler Instellingen
+Output quality: ConfigView Uitvoerkwaliteit:
+WebP Settings main WebP Instellingen
+Text ConfigView Tekst
+Slower but better ConfigView Trager maar beter
+WebP image WebPTranslator WebP afbeelding
+©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
+Output preset: ConfigView Uitvoer voorinstellingen:
+Picture ConfigView Afbeelding
+Low ConfigView Laag
+High ConfigView Hoog
+Drawing ConfigView Tekening
+Default ConfigView Standaard
+Fast ConfigView Snel
+Photo ConfigView Foto
+Preprocessing filter ConfigView Voorverwerkingsfilter
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+WebP image translator WebPTranslator WebP afbeelding vertaler
+Icon ConfigView Pictogram
diff --git a/data/catalogs/add-ons/translators/webp/ru.catkeys b/data/catalogs/add-ons/translators/webp/ru.catkeys
index 77a1cd5222..813c2a2acb 100644
--- a/data/catalogs/add-ons/translators/webp/ru.catkeys
+++ b/data/catalogs/add-ons/translators/webp/ru.catkeys
@@ -1,25 +1,25 @@
1 russian x-vnd.Haiku-WebPTranslator 3630570850
-Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
Compression method: ConfigView Метод сжатия
-Default ConfigView По умолчанию
-Drawing ConfigView Рисунок
-Fast ConfigView Быстрое
-High ConfigView Высокое
-Icon ConfigView Значок
-Low ConfigView Низкое
-Output preset: ConfigView Пресет вывода:
-Output quality: ConfigView Качество вывода:
-Photo ConfigView Фотография
-Picture ConfigView Изображение
-Preprocessing filter ConfigView Фильтр предварительной обработки
+Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
Preset ConfigView Пресет
-Slower but better ConfigView Медленнее, но лучше
-Text ConfigView Текст
WebP Images ConfigView Транслятор WebP изображений
-WebP Settings main Настройки WebP транслятора
-WebP image WebPTranslator WebP изображение
-WebP image translator WebPTranslator Транслятор WebP изображений
WebP images WebPTranslator WebP изображения
WebPTranslator Settings ConfigView Настройки WebP транслятора
-©2010-2011 Google Inc. ConfigView Все права защищены ©2010-2011 Google Inc.
+Output quality: ConfigView Качество вывода:
+WebP Settings main Настройки WebP транслятора
+Text ConfigView Текст
+Slower but better ConfigView Медленнее, но лучше
+WebP image WebPTranslator WebP изображение
©2010-2011 Haiku Inc. ConfigView Все права защищены ©2010-2011 Haiku Inc.
+Output preset: ConfigView Пресет вывода:
+Picture ConfigView Изображение
+Low ConfigView Низкое
+High ConfigView Высокое
+Drawing ConfigView Рисунок
+Default ConfigView По умолчанию
+Fast ConfigView Быстрое
+Photo ConfigView Фотография
+Preprocessing filter ConfigView Фильтр предварительной обработки
+©2010-2011 Google Inc. ConfigView Все права защищены ©2010-2011 Google Inc.
+WebP image translator WebPTranslator Транслятор WebP изображений
+Icon ConfigView Значок
diff --git a/data/catalogs/add-ons/translators/webp/sk.catkeys b/data/catalogs/add-ons/translators/webp/sk.catkeys
index 72003745eb..8ca3462ecc 100644
--- a/data/catalogs/add-ons/translators/webp/sk.catkeys
+++ b/data/catalogs/add-ons/translators/webp/sk.catkeys
@@ -1,25 +1,25 @@
1 slovak x-vnd.Haiku-WebPTranslator 3630570850
-Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
Compression method: ConfigView Spôsob kompresie:
-Default ConfigView Predvolené
-Drawing ConfigView Vykresľovanie
-Fast ConfigView Rýchla
-High ConfigView Vysoká
-Icon ConfigView Ikona
-Low ConfigView Nízka
-Output preset: ConfigView Predvoľby výstupu:
-Output quality: ConfigView Kvalita výstupu:
-Photo ConfigView Foto
-Picture ConfigView Obraz
-Preprocessing filter ConfigView Filter predspracovania
+Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
Preset ConfigView Predvoľby
-Slower but better ConfigView Pomalšia, ale lepšia
-Text ConfigView Text
WebP Images ConfigView Obrázky WebP
-WebP Settings main Nastavenie WebP
-WebP image WebPTranslator obrázok WebP
-WebP image translator WebPTranslator Prekladač obrázkov WebP
-WebP images WebPTranslator obrázky WebP
+WebP images WebPTranslator Obrázky WebP
WebPTranslator Settings ConfigView Nastavenie WebPTranslator
-©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+Output quality: ConfigView Kvalita výstupu:
+WebP Settings main Nastavenie WebP
+Text ConfigView Text
+Slower but better ConfigView Pomalšia, ale lepšia
+WebP image WebPTranslator Obrázok WebP
©2010-2011 Haiku Inc. ConfigView ©2010-2011 Haiku Inc.
+Output preset: ConfigView Predvoľby výstupu:
+Picture ConfigView Obraz
+Low ConfigView Nízka
+High ConfigView Vysoká
+Drawing ConfigView Vykresľovanie
+Default ConfigView Predvolené
+Fast ConfigView Rýchla
+Photo ConfigView Foto
+Preprocessing filter ConfigView Filter predspracovania
+©2010-2011 Google Inc. ConfigView ©2010-2011 Google Inc.
+WebP image translator WebPTranslator Prekladač obrázkov WebP
+Icon ConfigView Ikona
diff --git a/data/catalogs/add-ons/translators/wonderbrush/be.catkeys b/data/catalogs/add-ons/translators/wonderbrush/be.catkeys
index d34c5d5fd9..a1069d4598 100644
--- a/data/catalogs/add-ons/translators/wonderbrush/be.catkeys
+++ b/data/catalogs/add-ons/translators/wonderbrush/be.catkeys
@@ -1,9 +1,9 @@
1 belarusian x-vnd.Haiku-WonderBrushTranslator 491575314
-Version %d.%d.%d %s WonderBrushView Версія %d.%d.%d %s
-WBI Settings WonderBrushMain Наладкі WBI
-WBI Settings WonderBrushTranslator Наладкі WBI
-WonderBrush image WonderBrushTranslator выява WonderBrush
WonderBrush image translator WonderBrushTranslator Канвертар выяваў WonderBrush
-WonderBrush image translator WonderBrushView Канвертар выяваў WonderBrush
+WBI Settings WonderBrushTranslator Наладкі WBI
+WBI Settings WonderBrushMain Наладкі WBI
+Version %d.%d.%d %s WonderBrushView Версія %d.%d.%d %s
WonderBrush images WonderBrushTranslator Выявы WonderBrush
+WonderBrush image WonderBrushTranslator выява WonderBrush
+WonderBrush image translator WonderBrushView Канвертар выяваў WonderBrush
written by: WonderBrushView распрацаваны:
diff --git a/data/catalogs/add-ons/translators/wonderbrush/de.catkeys b/data/catalogs/add-ons/translators/wonderbrush/de.catkeys
index 423103cdff..cf06fdbdd2 100644
--- a/data/catalogs/add-ons/translators/wonderbrush/de.catkeys
+++ b/data/catalogs/add-ons/translators/wonderbrush/de.catkeys
@@ -1,9 +1,9 @@
1 german x-vnd.Haiku-WonderBrushTranslator 491575314
-Version %d.%d.%d %s WonderBrushView Version %d.%d.%d %s
-WBI Settings WonderBrushMain WBI-Einstellungen
-WBI Settings WonderBrushTranslator WBI-Einstellungen
-WonderBrush image WonderBrushTranslator WonderBrush-Bild
WonderBrush image translator WonderBrushTranslator WonderBrush-Bild-Translator
-WonderBrush image translator WonderBrushView WonderBrush-Bild-Translator
+WBI Settings WonderBrushTranslator WBI-Einstellungen
+WBI Settings WonderBrushMain WBI-Einstellungen
+Version %d.%d.%d %s WonderBrushView Version %d.%d.%d %s
WonderBrush images WonderBrushTranslator WonderBrush-Bilder
+WonderBrush image WonderBrushTranslator WonderBrush-Bild
+WonderBrush image translator WonderBrushView WonderBrush-Bild-Translator
written by: WonderBrushView von:
diff --git a/data/catalogs/add-ons/translators/wonderbrush/hr.catkeys b/data/catalogs/add-ons/translators/wonderbrush/hr.catkeys
new file mode 100644
index 0000000000..f13a1fba83
--- /dev/null
+++ b/data/catalogs/add-ons/translators/wonderbrush/hr.catkeys
@@ -0,0 +1,9 @@
+1 croatian x-vnd.Haiku-WonderBrushTranslator 491575314
+Version %d.%d.%d %s WonderBrushView Verzija %d.%d.%d %s
+WBI Settings WonderBrushMain WBI postavke
+WBI Settings WonderBrushTranslator WBI postavke
+WonderBrush image WonderBrushTranslator WonderBrush slika
+WonderBrush image translator WonderBrushTranslator WonderBrush prevoditelj slika
+WonderBrush image translator WonderBrushView WonderBrush prevoditelj slika
+WonderBrush images WonderBrushTranslator WonderBrush slike
+written by: WonderBrushView napisao:
diff --git a/data/catalogs/add-ons/translators/wonderbrush/lt.catkeys b/data/catalogs/add-ons/translators/wonderbrush/lt.catkeys
new file mode 100644
index 0000000000..9cd8d7f311
--- /dev/null
+++ b/data/catalogs/add-ons/translators/wonderbrush/lt.catkeys
@@ -0,0 +1,9 @@
+1 lithuanian x-vnd.Haiku-WonderBrushTranslator 491575314
+WonderBrush image translator WonderBrushTranslator „WonderBrush“ paveikslų keitiklis
+WBI Settings WonderBrushTranslator WBI nuostatos
+WBI Settings WonderBrushMain WBI nuostatos
+Version %d.%d.%d %s WonderBrushView Versija %d.%d.%d %s
+WonderBrush images WonderBrushTranslator „WonderBrush“ paveikslai
+WonderBrush image WonderBrushTranslator „WonderBrush“ paveikslas
+WonderBrush image translator WonderBrushView „WonderBrush“ paveikslų keitiklis
+written by: WonderBrushView autorius:
diff --git a/data/catalogs/add-ons/translators/wonderbrush/nl.catkeys b/data/catalogs/add-ons/translators/wonderbrush/nl.catkeys
new file mode 100644
index 0000000000..a5f6486dfe
--- /dev/null
+++ b/data/catalogs/add-ons/translators/wonderbrush/nl.catkeys
@@ -0,0 +1,9 @@
+1 dutch; flemish x-vnd.Haiku-WonderBrushTranslator 491575314
+WonderBrush image translator WonderBrushTranslator WonderBrush afbeelding vertaler
+WBI Settings WonderBrushTranslator WBI Instellingen
+WBI Settings WonderBrushMain WBI instellingen
+Version %d.%d.%d %s WonderBrushView Versie %d.%d.%d %s
+WonderBrush images WonderBrushTranslator WonderBrush afbeeldingen
+WonderBrush image WonderBrushTranslator WonderBrush afbeelding
+WonderBrush image translator WonderBrushView WonderBrush afbeelding vertaler
+written by: WonderBrushView geschreven door:
diff --git a/data/catalogs/add-ons/translators/wonderbrush/sk.catkeys b/data/catalogs/add-ons/translators/wonderbrush/sk.catkeys
index ec8fc83656..347f4edf55 100644
--- a/data/catalogs/add-ons/translators/wonderbrush/sk.catkeys
+++ b/data/catalogs/add-ons/translators/wonderbrush/sk.catkeys
@@ -1,9 +1,9 @@
1 slovak x-vnd.Haiku-WonderBrushTranslator 491575314
-Version %d.%d.%d %s WonderBrushView Verzia %d.%d.%d %s
-WBI Settings WonderBrushMain Nastavenia WBI
+WonderBrush image translator WonderBrushTranslator Prekladač obrázkov WonderBrush
WBI Settings WonderBrushTranslator Nastavenia WBI
-WonderBrush image WonderBrushTranslator obrázok WonderBrush
-WonderBrush image translator WonderBrushTranslator prekladač obrázkov WonderBrush
-WonderBrush image translator WonderBrushView prekladač obrázkov WonderBrush
-WonderBrush images WonderBrushTranslator obrázky WonderBrush
+WBI Settings WonderBrushMain Nastavenia WBI
+Version %d.%d.%d %s WonderBrushView Verzia %d.%d.%d %s
+WonderBrush images WonderBrushTranslator Obrázky WonderBrush
+WonderBrush image WonderBrushTranslator Obrázok WonderBrush
+WonderBrush image translator WonderBrushView Prekladač obrázkov WonderBrush
written by: WonderBrushView napísal:
diff --git a/data/catalogs/apps/3dmov/hr.catkeys b/data/catalogs/apps/3dmov/hr.catkeys
new file mode 100644
index 0000000000..f737d2a21c
--- /dev/null
+++ b/data/catalogs/apps/3dmov/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-3DMov 40426706
+3DMov System name 3DMov
diff --git a/data/catalogs/apps/3dmov/lt.catkeys b/data/catalogs/apps/3dmov/lt.catkeys
new file mode 100644
index 0000000000..34da72758f
--- /dev/null
+++ b/data/catalogs/apps/3dmov/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-3DMov 40426706
+3DMov System name 3DMov
diff --git a/data/catalogs/apps/3dmov/nl.catkeys b/data/catalogs/apps/3dmov/nl.catkeys
new file mode 100644
index 0000000000..48c5c181aa
--- /dev/null
+++ b/data/catalogs/apps/3dmov/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-3DMov 40426706
+3DMov System name 3DMov
diff --git a/data/catalogs/apps/aboutsystem/be.catkeys b/data/catalogs/apps/aboutsystem/be.catkeys
index 408553a32f..73e02e7288 100644
--- a/data/catalogs/apps/aboutsystem/be.catkeys
+++ b/data/catalogs/apps/aboutsystem/be.catkeys
@@ -1,85 +1,83 @@
-1 belarusian x-vnd.Haiku-About 1133193730
-%.2f GHz AboutView %.2f ГГц
-%d MiB total AboutView %d MiB усяго
-%d MiB used (%d%%) AboutView %d MiB выкарыстана (%d%%)
-%ld MHz AboutView %ld МГц
-%ld Processors: AboutView %ld Працэсараў:
-%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB усяго %inaccessible MiB недаступна
-... and the many people making donations!\n\n AboutView ... і тыя, хто рабіў саве ахвяраванні!\n\n
-2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger грунтуецца на Generalized Timing Formula
-About this system AboutWindow Інфармацыя пра сістэму
-AboutSystem System name Пра Сістэму
-BSD (2-clause) AboutView BSD (2 часткі)
-BSD (3-clause) AboutView BSD (3 часткі)
+1 belarusian x-vnd.Haiku-About 2840857586
+Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Аўтарскае права © 1999-2010 by the authors of Gutenprint. Правы захаваныя.
+Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (асабіста за ядро NewOS)\n
BSD (4-clause) AboutView BSD (4 часткі)
+%ld Processors: AboutView %ld Працэсараў:
+Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Аўтарскае права © 2000 Jean-Pierre ervbefeL and Remi Lefebvre.
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Аўтарскае права © 1996-2005 Julian R Seward. Правы захаваныя.
+%d MiB total AboutView %d MiB усяго
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (заснавальнік праекту)\n\n
+The Haiku-Ports team\n AboutView Каманда Haiku-Ports\n
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 1998-2003 Daniel Veillard. Правы захаваныя.
+%d MiB used (%d%%) AboutView %d MiB выкарыстана (%d%%)
+Website, marketing & documentation:\n AboutView Web-сайт, маркетынг і дакументацыя:\n
+AboutSystem System name Пра Сістэму
+MIT (no promotion) AboutView MIT (без рэкламы)
+Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Аўтарскае права © 1994-1997 Mark Kilgard. Правы захаваныя.
+Revision AboutView Рэвізія
+Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Аўтарскае права © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC.
Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. і яе распрацоўшчыкам, за тое што ставарылі BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Аўтарскае права © 1999-2000 Y.Takagi. Правы захаваныя.
+Source Code: AboutView Зыходны код:
+Processor: AboutView Працэсар:
+Kernel: AboutView Ядро:
+BSD (3-clause) AboutView BSD (3 часткі)
+Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. Правы захаваныя.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Аўтарскія правы на зыходны код Haiku належаць Haiku, Inc. ці суадносным аўтарам якія пазначаны ў зыходных тэкстах. Haiku® і HAIKU logo® з´яўляюцца зарэгістраванымі гандлёвымі знакамі Haiku, Inc.\n\n
+Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Аўтарскае права © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\n Правы захаваныя.
+%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB усяго %inaccessible MiB недаступна
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Аўтарскае права © 2000-2007 Fabrice Bellard, et al.
+Contributors:\n AboutView Удзельнікі:\n
+Unknown AboutView Невядома
+Copyright © 2001-2003 Expat maintainers. AboutView Аўтарскае права © 2001-2003 Expat maintainers.
+Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Аўтарскае права © 1999-2006 Brian Paul. Mesa3D Project. Правы захаваныя.
+Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Аўтарскае права © 2002-2004 Vivek Mohan. Правы захаваныя.
+... and the many people making donations!\n\n AboutView ... і тыя, хто рабіў саве ахвяраванні!\n\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… і прабачце нас тыя, пра каго мы, магчыма, забылі тут згадаць.\n\n
+%.2f GHz AboutView %.2f ГГц
+Memory: AboutView Памяць:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя.
+Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Аўтарскае права © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group.
+Past maintainers:\n AboutView Былыя дагляднікі:\n
+\n\nSpecial thanks to:\n AboutView \n\nАсабістыя падзякі:\n
+Licenses: AboutView Лицэнзіі:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Аўтарскае права © 1995-2004 Jean-loup Gailly and Mark Adler.
+Google & their Google Summer of Code program\n AboutView Google і іх праграма Google Summer of Code\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Аўтарскае права © 2002-2003 Steve Lhomme. Правы захаваныя.
+\nCopyrights\n\n AboutView \nАўтарскія правы\n\n
+Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Аўтарскае права © 2007-2009 Marvell Semiconductor, Inc. Правы захаваныя.
+Current maintainers:\n AboutView Распрацоўшчыкі:\n
+Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2006-2007 Intel Corporation. Правы захаваныя.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Код, якi з'яўляецца ўласнасцю Haiku, асаблiва ядро и праграмы, могуць распаўсюджвацца ў станаўленнi з ўмовами . Некаторыя сiстэмныя бiблiятэки змяшчаюць староннi код, якi распаўсюджваюцца пад лицэнзiяй . Аўтарскiя правы на староннi код вы можаце знайсцi нiжэй.\n\n
+Time running: AboutView Час працы:
Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Утрымлівае праграмныя прадукты выдадзеныя NetBSD Foundation, Inc. і яе распрацоўшчыкамі:\nftp, tput\nАўтарскае права © 1996-2008 The NetBSD Foundation, Inc. Правы захаваныя.
Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Утрымлівае праграмныя прадукты праекта FreeBSD, выдадзеныя пад ліцэнзіяй BSD:\ncal, ftpd, ping, telnet, telnetd, traceroute\nАўтарскае права © 1994-2008 The FreeBSD Project. Правы захаваныя.
-Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Утрымлівае праграмныя прадукты праекта GNU, выдадзеныя пад GPL і LGPL ліцэнзіямі:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nАўтарскае права © The Free Software Foundation.
-Contributors:\n AboutView Удзельнікі:\n
-Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Аўтарскае права © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\n Правы захаваныя.
-Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Аўтарскае права © 1990-2002 Info-ZIP. Правы захаваныя.
-Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Аўтарскае права © 1990-2003 Wada Laboratory, the University of Tokyo.
-Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. All rights reserved. AboutView Аўтарскае права © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. Правы захаваныя.
-Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Аўтарскае права © 1994-1997 Mark Kilgard. Правы захаваныя.
-Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Аўтарскае права © 1994-2008 Xiph.Org. Правы захаваныя.
-Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Аўтарскае права © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group.
-Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Аўтарскае права © 1995, 1998-2001 Jef Poskanzer. Правы захаваныя.
-Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Аўтарскае права © 1995-2001 Lars Düning. Правы захаваныя.
-Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Аўтарскае права © 1995-2004 Jean-loup Gailly and Mark Adler.
-Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Аўтарскае права © 1996-1997 Jeff Prosise. Правы захаваныя.
-Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Аўтарскае права © 1996-2005 Julian R Seward. Правы захаваныя.
-Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Аўтарскае права © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib і PDFlib logo з´яўляюцца зарэгістраванымі гандлёвымі знакамі PDFlib GmbH.
-Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Аўтарскае права © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper.
-Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 1998-2003 Daniel Veillard. Правы захаваныя.
-Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Аўтарскае права © 1999-2000 Y.Takagi. Правы захаваныя.
-Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Аўтарскае права © 1999-2006 Brian Paul. Mesa3D Project. Правы захаваныя.
-Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Аўтарскае права © 1999-2007 Michael C. Ring. Правы захаваныя.
-Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Аўтарскае права © 1999-2010 by the authors of Gutenprint. Правы захаваныя.
-Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Аўтарскае права © 2000 Jean-Pierre ervbefeL and Remi Lefebvre.
-Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Аўтарскае права © 2000-2007 Fabrice Bellard, et al.
-Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Аўтарскае права © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. Правы захаваныя.
-Copyright © 2001-2003 Expat maintainers. AboutView Аўтарскае права © 2001-2003 Expat maintainers.
-Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Аўтарскае права © 2002-2003 Steve Lhomme. Правы захаваныя.
-Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Аўтарскае права © 2002-2004 Vivek Mohan. Правы захаваныя.
-Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Аўтарскае права © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC.
-Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Аўтарскае права © 2002-2006 Maxim Shemanarev (McSeem).
-Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Аўтарскае права © 2002-2008 Alexander L. Roshal. Правы захаваныя.
-Copyright © 2003 Peter Hanappe and others. AboutView Аўтарскае права © 2003 Peter Hanappe і іншыя.
-Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2003-2006 Intel Corporation. Правы захаваныя.
-Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2004-2005 Intel Corporation. Правы захаваныя.
-Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2006-2007 Intel Corporation. Правы захаваныя.
-Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Аўтарскае права © 2007 Ralink Technology Corporation. Правы захаваныя.
-Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Аўтарскае права © 2007-2009 Marvell Semiconductor, Inc. Правы захаваныя.
-Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Аўтарскае права © 2010-2011 Google Inc. Правы захаваныя.
-Current maintainers:\n AboutView Распрацоўшчыкі:\n
-GCC %d Hybrid AboutView GCC %d Hybrid
-Google & their Google Summer of Code program\n AboutView Google і іх праграма Google Summer of Code\n
-Kernel: AboutView Ядро:
-License: AboutView Ліцензія:
-Licenses: AboutView Лицэнзіі:
-MIT (no promotion) AboutView MIT (без рэкламы)
-MIT license. All rights reserved. AboutView Ліцэнзія MIT. Правы захаваныя.
-Memory: AboutView Памяць:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (заснавальнік праекту)\n\n
-Past maintainers:\n AboutView Былыя дагляднікі:\n
-Portions of this software are copyright. Copyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Частка гэтага праграмнага прадукта абараняецца аўтарскім правам. Аўтарскае права © 1996-2006 The FreeType Project. Правы захаваныя.
-Processor: AboutView Працэсар:
-Revision AboutView Рэвізія
-Source Code: AboutView Зыходны код:
-The BeGeistert team\n AboutView Каманада BeGeistert\n
-The Haiku-Ports team\n AboutView Каманда Haiku-Ports\n
The Haikuware team and their bounty program\n AboutView Каманда Haikuware і ихнія ахвяраванні\n
-The University of Auckland and Christof Lutteroth\n\n AboutView The University of Auckland and Christof Lutteroth\n\n
-The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the %MIT license%. Some system libraries contain third party code distributed under the LGPL license. You can find the copyrights to third party code below.\n\n AboutView %MIT license% isn't a variable and has to be translated. Код, унікальны для Haiku, асабіста ядро і ўвесь код, да якога могуць звяртацца праграмы, распаўсюджваецца ў межах %ліцэнзіі MIT%. Некаторыя сістэмныя бібліятэкі змяшчаюць код, які распаўсюджваецца ў межах ліцэнзіі LGPL. Аўтарскія правы на код трэціх старон глядзіце ніжэй.\n\n
-The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Аўтарскія правы на зыходны код Haiku належаць Haiku, Inc. ці суадносным аўтарам якія пазначаны ў зыходных тэкстах. Haiku® і HAIKU logo® з´яўляюцца зарэгістраванымі гандлёвымі знакамі Haiku, Inc.\n\n
-Time running: AboutView Час працы:
-Translations:\n AboutView Пераклады:\n
-Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (асабіста за ядро NewOS)\n
-Unknown AboutView Невядома
+Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Аўтарскае права © 1995, 1998-2001 Jef Poskanzer. Правы захаваныя.
+Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Аўтарскае права © 2010-2011 Google Inc. Правы захаваныя.
+About this system AboutWindow Інфармацыя пра сістэму
+BSD (2-clause) AboutView BSD (2 часткі)
Version: AboutView Версія:
-Website, marketing & documentation:\n AboutView Web-сайт, маркетынг і дакументацыя:\n
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Аўтарскае права © 1994-2008 Xiph.Org. Правы захаваныя.
+Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Аўтарскае права © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper.
+Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2004-2005 Intel Corporation. Правы захаваныя.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Аўтарскае права © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Аўтарскае права © 1999-2007 Michael C. Ring. Правы захаваныя.
+The BeGeistert team\n AboutView Каманада BeGeistert\n
+The University of Auckland and Christof Lutteroth\n\n AboutView The University of Auckland and Christof Lutteroth\n\n
+Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Аўтарскае права © 1990-2003 Wada Laboratory, the University of Tokyo.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Аўтарскае права © 1995-2001 Lars Düning. Правы захаваныя.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Аўтарскае права © 2002-2008 Alexander L. Roshal. Правы захаваныя.
+Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Аўтарскае права © 2003-2006 Intel Corporation. Правы захаваныя.
+%ld MHz AboutView %ld МГц
+Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Аўтарскае права © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib і PDFlib logo з´яўляюцца зарэгістраванымі гандлёвымі знакамі PDFlib GmbH.
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Утрымлівае праграмныя прадукты праекта GNU, выдадзеныя пад GPL і LGPL ліцэнзіямі:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nАўтарскае права © The Free Software Foundation.
+MIT license. All rights reserved. AboutView Ліцэнзія MIT. Правы захаваныя.
[Click a license name to read the respective license.]\n\n AboutView [Націсніце ня імя ліцэнзіі каб азнёміцца з яе тэкстам.]\n\n
-\nCopyrights\n\n AboutView \nАўтарскія правы\n\n
-\n\nSpecial thanks to:\n AboutView \n\nАсабістыя падзякі:\n
-\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… і прабачце нас тыя, пра каго мы, магчыма, забылі тут згадаць.\n\n
+Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Аўтарскае права © 2007 Ralink Technology Corporation. Правы захаваныя.
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Аўтарскае права © 1990-2002 Info-ZIP. Правы захаваныя.
+License: AboutView Ліцензія:
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 by Andy Ritger грунтуецца на Generalized Timing Formula
+GCC %d Hybrid AboutView GCC %d Hybrid
+Translations:\n AboutView Пераклады:\n
diff --git a/data/catalogs/apps/aboutsystem/de.catkeys b/data/catalogs/apps/aboutsystem/de.catkeys
index ff94452b5c..1e1e2be616 100644
--- a/data/catalogs/apps/aboutsystem/de.catkeys
+++ b/data/catalogs/apps/aboutsystem/de.catkeys
@@ -1,85 +1,85 @@
-1 german x-vnd.Haiku-About 1133193730
-%.2f GHz AboutView %.2f GHz
-%d MiB total AboutView %d MiB gesamt
-%d MiB used (%d%%) AboutView %d MiB benutzt (%d%%)
-%ld MHz AboutView %ld MHz
-%ld Processors: AboutView %ld Prozessoren:
-%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB gesamt, %inaccessible MiB nicht verfügbar
-... and the many people making donations!\n\n AboutView ... und die vielen Leute, die durch Spenden geholfen haben!\n\n
-2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basierend auf 'Generalized Timing Formula'.
-About this system AboutWindow Über dieses System
-AboutSystem System name Über Haiku
-BSD (2-clause) AboutView 2-Klausel-BSD
-BSD (3-clause) AboutView 3-Klausel-BSD
+1 german x-vnd.Haiku-About 3434348710
+Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 durch die Autoren von Gutenprint. Alle Rechte vorbehalten.
+Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (und seinen NewOS-Kernel)\n
BSD (4-clause) AboutView 4-Klausel-BSD
+%ld Processors: AboutView %ld Prozessoren:
+Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Copyright © 2000 Jean-Pierre ervbefeL und Remi Lefebvre.
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Alle Rechte vorbehalten.
+%d MiB total AboutView %d MiB gesamt
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (Projektgründer)\n\n
+The Haiku-Ports team\n AboutView Das Haiku-Ports-Team\n
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Alle Rechte vorbehalten.
+%d MiB used (%d%%) AboutView %d MiB benutzt (%d%%)
+Website, marketing & documentation:\n AboutView Webseite, Marketing & Dokumentation:\n
+AboutSystem System name Über Haiku
+MIT (no promotion) AboutView MIT (ohne Werbeklausel)
+Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe und andere.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Alle Rechte vorbehalten.
+Revision AboutView Stand:
+Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Copyright © 2002-2005 Industrial Light & Magic, eine Abteilung von Lucas Digital Ltd. LLC.
Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. und dessen Programmier-Team für die Entwicklung von BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y. Takagi. Alle Rechte vorbehalten.
+Source Code: AboutView Quellcode:
+Processor: AboutView Prozessor:
+Kernel: AboutView Kernel:
+BSD (3-clause) AboutView 3-Klausel-BSD
+Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman und Daniel Veillard. Alle Rechte vorbehalten.
+Portions of this software are under copyright.\nCopyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Teile dieser Software sind urheberrechtlich geschützt.\nCopyright © 1996-2006 The FreeType Project. Alle Rechte vorbehalten.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Die Urheberrechte am Haiku-Code liegen bei Haiku, Inc., beziehungsweise bei den entsprechenden Autoren, die explizit im Quelltext aufgeführt sind. Haiku® und das HAIKU Logo® sind registrierte Marken von Haiku, Inc.\n\n
+Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts. Alle Rechte vorbehalten.
+%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB gesamt, %inaccessible MiB nicht verfügbar
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Copyright © 2000-2007 Fabrice Bellard, et al.
+Contributors:\n AboutView Mitwirkende:\n
+Unknown AboutView Unbekannt
+Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 Expat-Entwickler.
+Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Projekt. Alle Rechte vorbehalten.
+Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Alle Rechte vorbehalten.
+... and the many people making donations!\n\n AboutView ... und die vielen Leute, die durch Spenden geholfen haben!\n\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… und vermutlich noch einige mehr, die wir leider vergessen haben zu erwähnen.\n\n
+%.2f GHz AboutView %.2f GHz
+Memory: AboutView Arbeitsspeicher:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten.
+Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group.
+Past maintainers:\n AboutView Ehemalige Betreuer:\n
+\n\nSpecial thanks to:\n AboutView \n\nBesonderer Dank an:\n
+Licenses: AboutView Lizenzen:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly und Mark Adler.
+Google & their Google Summer of Code program\n AboutView Google & deren Google-Summer-of-Code-Programm\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle Rechte vorbehalten.
+\nCopyrights\n\n AboutView \nCopyrights\n\n
+Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Alle Rechte vorbehalten.
+Current maintainers:\n AboutView Aktuelle Betreuer:\n
+Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2007 Intel Corporation. Alle Rechte vorbehalten.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Der von Haiku selbst erstellte Quellcode, besonders der Kernel und alle Teile des Codes, gegen den Anwendungen gelinkt werden können, wird unter den Bedingungen der veröffentlicht. Einige Systembibliotheken, die Code von Dritten enthalten, stehen unter der . Angaben zum Copyright von externen Quellen sind nachfolgend aufgeführt.\n\n
+Time running: AboutView Laufzeit:
Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Enthält Software der NetBSD Foundation, Inc. und deren Mitwirkenden:\nftp, tput\nCopyright © 1996-2008 NetBSD Foundation, Inc. Alle Rechte vorbehalten.
Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Enthält Software des FreeBSD Project, die unter der BSD-Lizenz veröffentlicht wurde:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Alle Rechte vorbehalten.
-Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enthält Software des GNU-Projekts, die unter den GPL- und LGPL-Lizenzen veröffentlicht wurde:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © Free Software Foundation.
-Contributors:\n AboutView Mitwirkende:\n
-Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts. Alle Rechte vorbehalten.
-Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Alle Rechte vorbehalten.
-Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratorien der Universität Tokyo.
-Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB-Lizenz. Alle Rechte vorbehalten.
-Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Alle Rechte vorbehalten.
-Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Alle Rechte vorbehalten.
-Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Die Software basiert teilweise auf der Arbeit der Independent JPEG Group.
-Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Alle Rechte vorbehalten.
-Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Alle Rechte vorbehalten.
-Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly und Mark Adler.
-Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle Rechte vorbehalten.
-Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Alle Rechte vorbehalten.
-Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH und Thomas Merz. Alle Rechte vorbehalten.\nPDFlib und das PDFlib-Logo sind eingetragene Handelsmarken der PDFlib GmbH.
-Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd und Clark Cooper.
-Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Alle Rechte vorbehalten.
-Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y. Takagi. Alle Rechte vorbehalten.
-Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Projekt. Alle Rechte vorbehalten.
-Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten.
-Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 durch die Autoren von Gutenprint. Alle Rechte vorbehalten.
-Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Copyright © 2000 Jean-Pierre ervbefeL und Remi Lefebvre.
-Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Copyright © 2000-2007 Fabrice Bellard, et al.
-Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman und Daniel Veillard. Alle Rechte vorbehalten.
-Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 Expat-Entwickler.
-Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle Rechte vorbehalten.
-Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Alle Rechte vorbehalten.
-Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Copyright © 2002-2005 Industrial Light & Magic, eine Abteilung von Lucas Digital Ltd. LLC.
-Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
-Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Copyright © 2002-2008 Alexander L. Roshal. Alle Rechte vorbehalten.
-Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe und andere.
-Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Alle Rechte vorbehalten.
-Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Alle Rechte vorbehalten.
-Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2007 Intel Corporation. Alle Rechte vorbehalten.
-Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Alle Rechte vorbehalten.
-Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Alle Rechte vorbehalten.
-Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle Rechte vorbehalten.
-Current maintainers:\n AboutView Aktuelle Betreuer:\n
-GCC %d Hybrid AboutView GCC %d Hybrid
-Google & their Google Summer of Code program\n AboutView Google & deren Google-Summer-of-Code-Programm\n
-Kernel: AboutView Kernel:
-License: AboutView Lizenz:
-Licenses: AboutView Lizenzen:
-MIT (no promotion) AboutView MIT (ohne Werbeklausel)
-MIT license. All rights reserved. AboutView MIT-Lizenz. Alle Rechte vorbehalten.
-Memory: AboutView Arbeitsspeicher:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (Projektgründer)\n\n
-Past maintainers:\n AboutView Ehemalige Betreuer:\n
-Portions of this software are copyright. Copyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Teile dieser Software sind urheberrechtlich geschützt. Copyright © 1996-2006 The FreeType Project. Alle Rechte vorbehalten.
-Processor: AboutView Prozessor:
-Revision AboutView Stand:
-Source Code: AboutView Quellcode:
-The BeGeistert team\n AboutView Das BeGeistert-Team\n
-The Haiku-Ports team\n AboutView Das Haiku-Ports-Team\n
The Haikuware team and their bounty program\n AboutView Das Haikuware-Team und deren Bounty-Programm\n
-The University of Auckland and Christof Lutteroth\n\n AboutView Die Universität von Auckland und Christof Lutteroth\n\n
-The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the %MIT license%. Some system libraries contain third party code distributed under the LGPL license. You can find the copyrights to third party code below.\n\n AboutView %MIT license% isn't a variable and has to be translated. Der von Haiku selbst erstellte Quellcode, besonders der Kernel und alle Teile des Codes, gegen den Anwendungen gelinkt werden können, wird unter den Bedingungen der %MIT Lizenz% veröffentlicht. Einige Systembibliotheken, die Code von Dritten enthalten, stehen unter der LGPL Lizenz. Angaben zum Copyright von externen Quellen sind unten aufgeführt.\n\n
-The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Die Urheberrechte am Haiku-Code liegen bei Haiku, Inc., beziehungsweise bei den entsprechenden Autoren, die explizit im Quelltext aufgeführt sind. Haiku® und das HAIKU Logo® sind registrierte Marken von Haiku, Inc.\n\n
-Time running: AboutView Laufzeit:
-Translations:\n AboutView Übersetzungen:\n
-Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (und seinen NewOS-Kernel)\n
-Unknown AboutView Unbekannt
+Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Alle Rechte vorbehalten.
+Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle Rechte vorbehalten.
+About this system AboutWindow Über dieses System
+BSD (2-clause) AboutView 2-Klausel-BSD
Version: AboutView Version:
-Website, marketing & documentation:\n AboutView Webseite, Marketing & Dokumentation:\n
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Alle Rechte vorbehalten.
+Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd und Clark Cooper.
+Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Alle Rechte vorbehalten.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle Rechte vorbehalten.
+The BeGeistert team\n AboutView Das BeGeistert-Team\n
+The University of Auckland and Christof Lutteroth\n\n AboutView Die Universität von Auckland und Christof Lutteroth\n\n
+Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratorien der Universität Tokyo.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Alle Rechte vorbehalten.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Copyright © 2002-2008 Alexander L. Roshal. Alle Rechte vorbehalten.
+Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Alle Rechte vorbehalten.
+%ld MHz AboutView %ld MHz
+Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH und Thomas Merz. Alle Rechte vorbehalten.\nPDFlib und das PDFlib-Logo sind eingetragene Handelsmarken der PDFlib GmbH.
+Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Alle Rechte vorbehalten.
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Enthält Software des GNU-Projekts, die unter den GPL- und LGPL-Lizenzen veröffentlicht wurde:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © Free Software Foundation.
+MIT license. All rights reserved. AboutView MIT-Lizenz. Alle Rechte vorbehalten.
[Click a license name to read the respective license.]\n\n AboutView [Ein Klick auf einen Lizenznamen zeigt den jeweiligen Lizenztext.]\n\n
-\nCopyrights\n\n AboutView \nCopyrights\n\n
-\n\nSpecial thanks to:\n AboutView \n\nBesonderer Dank an:\n
-\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… und vermutlich noch einige mehr, die wir leider vergessen haben zu erwähnen.\n\n
+Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Alle Rechte vorbehalten.
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Alle Rechte vorbehalten.
+License: AboutView Lizenz:
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView Copyright © 2001 Andy Ritger, basierend auf 'Generalized Timing Formula'.
+GCC %d Hybrid AboutView GCC %d Hybrid
+Translations:\n AboutView Übersetzungen:\n
diff --git a/data/catalogs/apps/aboutsystem/fi.catkeys b/data/catalogs/apps/aboutsystem/fi.catkeys
index f6534d7797..3178c5b678 100644
--- a/data/catalogs/apps/aboutsystem/fi.catkeys
+++ b/data/catalogs/apps/aboutsystem/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Haiku-About 1133193730
+1 finnish x-vnd.Haiku-About 3434348710
%.2f GHz AboutView %.2f GHz
%d MiB total AboutView %d mebitavua yhteensä
%d MiB used (%d%%) AboutView %d mebitavua käytetty (%d%%)
@@ -20,7 +20,7 @@ Contributors:\n AboutView Avustajat:\n
Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nKaikki oikeudet pidätetty.
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Kaikki oikeudet pidätetty.
Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratory, Tokion yliopisto.
-Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. Kaikki oikeudet pidätetty.
+Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Kaikki oikeudet pidätetty.
Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Kaikki oikeudet pidätetty.
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Kaikki oikeudet pidätetty.
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Tämä ohjelmisto perustuu Independent JPEG Group-ryhmän työhön.
@@ -63,7 +63,7 @@ MIT license. All rights reserved. AboutView MIT-lisenssi. Kaikki oikeudet pidä
Memory: AboutView Muisti:
Michael Phipps (project founder)\n\n AboutView Michael Phipps (projektin perustaja)\n\n
Past maintainers:\n AboutView Entiset ylläpitäjät:\n
-Portions of this software are copyright. Copyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Osia tästä ohjelmistosta on copyright-suojattu. Copyright © 1996-2006 The FreeType Project. Kaikki oikeudet pidätetty.
+Portions of this software are under copyright.\nCopyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Osia tästä ohjelmistosta on copyright-suojattu.\nCopyright © 1996-2006 The FreeType Project. Kaikki oikeudet pidätetty.
Processor: AboutView Suoritin:
Revision AboutView Korjausversio
Source Code: AboutView Lähdekoodi:
@@ -71,7 +71,8 @@ The BeGeistert team\n AboutView BeGeistert-ryhmä\n
The Haiku-Ports team\n AboutView Haiku-Ports -ryhmä\n
The Haikuware team and their bounty program\n AboutView Haikuware-ryhmä ja heidän bounty-ohjelmansa\n
The University of Auckland and Christof Lutteroth\n\n AboutView Aucklandin yliopisto ja Christof Lutteroth\n\n
-The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the %MIT license%. Some system libraries contain third party code distributed under the LGPL license. You can find the copyrights to third party code below.\n\n AboutView %MIT license% isn't a variable and has to be translated. Haikulle uniikki koodi, erityisesti ydin ja kaikki koodi, johon sovellukset ehkä linkitetään, jaellaan %MIT licence%-lisenssin ehtojen alla. Jotkut järjestelmäkirjastot sisältävät kolmannen osapuolen koodia, joka jaetaan LGPL-lisenssin alla. Löydät kolmannen osapuolen tekijänoikeustiedot alta.\n\nHuomautus: %MIT license% ei ole muuttuja ja se on suomennettava.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koodi, joka on uniikkia Haikulle, erityisesti ydinkoodi ja kaikki koodi, johon sovellukset linkittyvät, jaetaan -lisenssin ehtojen mukaisesti. Jotkut järjestelmäkirjastot sisältävät kolmannen osapuolen koodia, joka jaetaan -lisenssin alaisena. Voit löytää kolmannen osapuolen koodin copyrights-tiedot alla.\n\n
+Huomaa: -lisenssi ja -lisenssi eivät ole muuttujia ja niitä ei suomenneta. Älä kuitenkaan poista hakasulkua < eikä > koska niitä tarvitaan hypertekstitoiminnon korvaajina.
The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Tekijänoikeus Haiku-koodiin on Haiku, Inc.-yrityksen tai vastaavien lähdekoodissa nimenomaisesti ilmaistujen tekijöiden omaisuutta. Haiku® ja HAIKU logo® ovat Haiku, Inc.-yrityksen rekisteröityjä tavaramerkkejä.\n\n
Time running: AboutView Käynnissäoloaika:
Translations:\n AboutView Käännökset:\n
diff --git a/data/catalogs/apps/aboutsystem/fr.catkeys b/data/catalogs/apps/aboutsystem/fr.catkeys
index 73602d8bf2..d1f7df9368 100644
--- a/data/catalogs/apps/aboutsystem/fr.catkeys
+++ b/data/catalogs/apps/aboutsystem/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-About 282658629
+1 french x-vnd.Haiku-About 2840857586
%.2f GHz AboutView %.2f GHz
%d MiB total AboutView %d Mio au total
%d MiB used (%d%%) AboutView %d Mio utilisés (%d%%)
@@ -6,6 +6,7 @@
%ld Processors: AboutView %ld Processeurs :
%total MiB total, %inaccessible MiB inaccessible AboutView %total Mio au total, %inaccessible Mio inaccessibles
... and the many people making donations!\n\n AboutView … et nos nombreux donateurs!\n\n
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 par Andy Ritger selon la « Generalized Timing Formula »
About this system AboutWindow À propos de ce système
AboutSystem System name À propos du système
BSD (2-clause) AboutView BSD (clause-2)
@@ -19,7 +20,6 @@ Contributors:\n AboutView Contributeurs :\n
Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\ntous droits réservés.
Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Tous droits réservés.
Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratory, l'Université de Tokyo.
-Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. SGI Free Software License « B ». Tous droits réservés.
Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Tous droits réservés.
Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Tous droits réservés.
Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ce logiciel est basé en partie sur le travail de l'Independent JPEG Group.
@@ -62,7 +62,6 @@ MIT license. All rights reserved. AboutView La licence MIT. Tous droits réserv
Memory: AboutView Mémoire :
Michael Phipps (project founder)\n\n AboutView Michael Phipps (fondateur du projet)\n\n
Past maintainers:\n AboutView Précédents développeurs :\n
-Portions of this software are copyright. Copyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Certaines parties de ce logiciel sont protégées. Copyright © 1996-2006 Le Projet FreeType. Tous droits réservés.
Processor: AboutView Processeur :
Revision AboutView Révision
Source Code: AboutView Code Source :
@@ -70,7 +69,8 @@ The BeGeistert team\n AboutView L'équipe BeGeistert\n
The Haiku-Ports team\n AboutView L'équipe de Haiku-Ports\n
The Haikuware team and their bounty program\n AboutView L'équipe Haikuware et son programme de récompenses\n
The University of Auckland and Christof Lutteroth\n\n AboutView L'université d'Auckland et Christof Lutteroth\n\n
-The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku™ and the HAIKU logo® are (registered) trademarks of Haiku, Inc.\n\n AboutView Les droits d'auteurs sur le code d'Haiku sont la propriété d'Haiku, Inc ou de ses auteurs respectifs, conformément à ce qui est expressément indiqué dans les sources. Haiku™ et le logo HAIKU ® sont des marques (déposées) de Haiku, Inc\n\n
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Le code source spécifique à Haiku, en particulier, celui du noyau et des applications liées, est distribué suivant les termes de la . Quelques librairies systèmes contiennent du code tiers, distribué sous . Vous pouvez trouver les copyrights de ce code ci-dessous.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Le code source d'Haiku et les droits d'auteurs afférents sont la propriété de Haiku, Inc ou de ses auteurs respectifs lorsque cela est expressément indiqué dans les sources. Haiku® et le logo® de haïku sont des marques déposées de Haiku, Inc.\n\n
Time running: AboutView Temps depuis le démarrage :
Translations:\n AboutView Traductions :\n
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (et son noyau, NewOS)\n
diff --git a/data/catalogs/apps/aboutsystem/hr.catkeys b/data/catalogs/apps/aboutsystem/hr.catkeys
new file mode 100644
index 0000000000..ac64df8c8b
--- /dev/null
+++ b/data/catalogs/apps/aboutsystem/hr.catkeys
@@ -0,0 +1,46 @@
+1 croatian x-vnd.Haiku-About 356695232
+%.2f GHz AboutView %.2f GHz
+%d MiB total AboutView %d MiB ukupno
+%d MiB used (%d%%) AboutView %d MiB korišteno (%d%%)
+%ld MHz AboutView %ld MHz
+%ld Processors: AboutView %ld Procesori:
+%total MiB total, %inaccessible MiB inaccessible AboutView %ukupno MiB ukupno, %nepristupačno MiB nepristupačno
+... and the many people making donations!\n\n AboutView ... i mnogi ljudi koji su donirali!\n\n
+About this system AboutWindow O ovom sustavu
+BSD (4-clause) AboutView BSD (4-clause)
+Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. i njihovom razvojnom timu,jer su napravili BeOS!\n\n
+Contributors:\n AboutView Doprinositelji:\n
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Autorska prava © 1994-1997 Mark Kilgard.Sva prava pridržana.
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Autorska prava © 1994-2008 Xiph.Org.Sva prava pridržana.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Autorska prava © 1995-2001 Lars Düning.Sva prava pridržana.
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Autorska prava © 1995-2004 Jean-loup Gailly and Mark Adler.
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Autorska prava © 1996-1997 Jeff Prosise.Sva prava pridržana.
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Autorska prava © 1998-2003 Daniel Veillard.Sva prava pridržana.
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Autorska prava © 1999-2000 Y.Takagi.Sva prava pridržana.
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Autorska prava © 1999-2007 Michael C. Ring.Sva prava pridržana.
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Autorska prava © 2002-2003 Steve Lhomme.Sva prava pridržana.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Autorska prava © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Autorska prava © 2002-2008 Alexander L. Roshal.Sva prava pridržana.
+Current maintainers:\n AboutView Trenutni održavatelji
+GCC %d Hybrid AboutView GCC %d hibridni
+Kernel: AboutView Kernel:
+License: AboutView Licenca:
+Licenses: AboutView Licence:
+Memory: AboutView Memorija:
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (utemeljitelj projekta)\n\n
+Past maintainers:\n AboutView Bivši održavatelji:\n
+Processor: AboutView Procesor:
+Revision AboutView Revizija
+Source Code: AboutView Izvorni kod:
+The BeGeistert team\n AboutView BeGeistert tim\n
+The Haiku-Ports team\n AboutView Haiku-Ports tim\n
+The Haikuware team and their bounty program\n AboutView Haikuware tim i njihov darežljivi program\n
+The University of Auckland and Christof Lutteroth\n\n AboutView Sveučilište u Auckland-u i Christof Lutteroth\n\n
+Translations:\n AboutView Prijevodi:\n
+Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (i njegov NewOS kernel)\n
+Unknown AboutView Nepoznato
+Version: AboutView Verzija:
+Website, marketing & documentation:\n AboutView Web stranica, marketing i dokumentacija:\n
+\nCopyrights\n\n AboutView \Autorska prava\n\n
+\n\nSpecial thanks to:\n AboutView \n\nPosebna zahvala:\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… i vjerojatno još neki koje smo zaboravili spomenuti (oprostite!)\n\n
diff --git a/data/catalogs/apps/aboutsystem/lt.catkeys b/data/catalogs/apps/aboutsystem/lt.catkeys
index aadfa86d51..156cbe2340 100644
--- a/data/catalogs/apps/aboutsystem/lt.catkeys
+++ b/data/catalogs/apps/aboutsystem/lt.catkeys
@@ -1,36 +1,85 @@
-1 lithuanian x-vnd.Haiku-About 3304165178
-%.2f GHz AboutView %.2f GHz
+1 lithuanian x-vnd.Haiku-About 3434348710
+Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView © 1999-2010 „Gutenprint“ autoriai. Visos teisės saugomos.
+Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis'ui Geiselbrecht'ui (už „NewOS“ branduolį)\n
+BSD (4-clause) AboutView BSD (4 punktų)
+%ld Processors: AboutView %ld procesoriai:
+Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView © 2000 Jean-Pierre ervbefeL ir Remi Lefebvre.
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView © 1996-2005 Julian R Seward. Visos teisės saugomos.
%d MiB total AboutView %d MiB iš viso
-%d MiB used (%d%%) AboutView %d MiB naudojama (%d%%)
-%ld MHz AboutView %ld MHz
-%ld Processors: AboutView %ld Procesoriai:
-%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB viso, %inaccessible MiB neprieinama
-... and the many people making donations!\n\n AboutView … ir daugybei aukojusių žmonių!\n\n
-About this system AboutWindow Apie šią sistemą
-Contributors:\n AboutView Talkininkai:\n
-Current maintainers:\n AboutView Dabartiniai leidėjai:\n
-GCC %d Hybrid AboutView GCC %d hibridinė sistema
-Google & their Google Summer of Code program\n AboutView „Google“ ir „Google Summer of Code“ programai\n
-Kernel: AboutView Branduolys:
-License: AboutView Licencija:
-Licenses: AboutView Licencijos:
-Memory: AboutView Atmintis:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (projekto įkūrėjui)\n\n
-Past maintainers:\n AboutView Ankstesni leidėjai:\n
-Processor: AboutView Procesorius:
-Revision AboutView modifikacija
-Source Code: AboutView Pirminiai tekstai:
-The BeGeistert team\n AboutView „BeGeistert“ komandai\n
+Michael Phipps (project founder)\n\n AboutView Michael'ui Phipps'ui (projekto įkūrėjui)\n\n
The Haiku-Ports team\n AboutView „Haiku-Ports“ komandai\n
-The Haikuware team and their bounty program\n AboutView „Haikuware“ komandai ir jos premijavimo programai\n
-The University of Auckland and Christof Lutteroth\n\n AboutView Oklando universitetui ir Kristofui Luterotui\n\n
-Time running: AboutView Veikimo laikas:
-Translations:\n AboutView Vertimai:\n
-Travis Geiselbrecht (and his NewOS kernel)\n AboutView Traviui Geiselbrecht (bei jo NewOS branduoliui)\n
-Unknown AboutView Nežinoma
-Version: AboutView Laida:
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView © 1998-2003 Daniel Veillard. Visos teisės saugomos.
+%d MiB used (%d%%) AboutView %d MiB naudojama (%d%%)
Website, marketing & documentation:\n AboutView Saityno svetainė, rinkodara ir dokumentacija:\n
-[Click a license name to read the respective license.]\n\n AboutView [Norėdami perskaityti licenciją, spustelėkite jos pavadinimą.]\n\n
-\nCopyrights\n\n AboutView \nAutorių teisės\n\n
+AboutSystem System name Apie šią sistemą
+MIT (no promotion) AboutView MIT (su ribojimu reklamai)
+Copyright © 2003 Peter Hanappe and others. AboutView © 2003 Peter Hanappe ir kiti.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView © 1994-1997 Mark Kilgard. Visos teisės saugomos.
+Revision AboutView modifikacija
+Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC.
+Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. ir jos programuotojų komandai, už tai, kad sukūrė BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView © 1999-2000 Y.Takagi. Visos teisės saugomos.
+Source Code: AboutView Pirminiai tekstai:
+Processor: AboutView Procesorius:
+Kernel: AboutView Branduolys:
+BSD (3-clause) AboutView BSD (3 punktų)
+Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView © 2001-2002 Thomas Broyer, Charlie Bozeman ir Daniel Veillard. Visos teisės saugomos.
+Portions of this software are under copyright.\nCopyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Dalies šios progarminės įrangos autorių teisės priklauso © 1996-2006 The FreeType Project. Visos teisės saugomos.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Visos autorių teisės į „Haiku“ pirminius tekstus priklauso „Haiku, Inc.“ arba konkretiems tuose tekstuose paminėtiems autoriams. „Haiku“® ir „HAIKU“® logotipas yra registruoti „Haiku, Inc.“ prekės ženklai.\n\n
+Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nVisos teisės saugomos.
+%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB iš viso, %inaccessible MiB nepasiekiama
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView © 2000-2007 Fabrice Bellard ir kiti.
+Contributors:\n AboutView Talkininkai:\n
+Unknown AboutView Nežinoma
+Copyright © 2001-2003 Expat maintainers. AboutView © 2001-2003 Expat maintainers.
+Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView © 1999-2006 Brian Paul. Mesa3D Project. Visos teisės saugomos.
+Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView © 2002-2004 Vivek Mohan. Visos teisės saugomos.
+... and the many people making donations!\n\n AboutView …ir daugybei aukojusių žmonių!\n\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n…ir visi kiti, ką galbūt pamiršome paminėti (atleiskite!)\n\n
+%.2f GHz AboutView %.2f GHz
+Memory: AboutView Atmintis:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView © 1996-1997 Jeff Prosise. Visos teisės saugomos.
+Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView © 1994-2009, Thomas G. Lane, Guido Vollbeding. Ši programinė įranga iš dalies pagrįsta „Independent JPEG Group“ darbu.
+Past maintainers:\n AboutView Ankstesni vystytojai:\n
\n\nSpecial thanks to:\n AboutView \n\nYpatingos padėkos:\n
-\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… ir visi kiti, ką galbūt pamiršome paminėti (atleiskite!)\n\n
+Licenses: AboutView Licencijos:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView © 1995-2004 Jean-loup Gailly ir Mark Adler.
+Google & their Google Summer of Code program\n AboutView „Google“ už „Google Summer of Code“ programą bei šios programos dalyviams\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView © 2002-2003 Steve Lhomme. Visos teisės saugomos.
+\nCopyrights\n\n AboutView \nAutorių teisės\n\n
+Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView © 2007-2009 Marvell Semiconductor, Inc. Visos teisės saugomos.
+Current maintainers:\n AboutView Dabartiniai vystytojai:\n
+Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView © 2006-2007 Intel Corporation. Visos teisės saugomos.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Pirminiai tekstai, kurti specialiai „Haiku“ projektui, ypač branduolys ir bet koks programinis kodas, su kuriuo programos gali būti saistomos, yra platinamas pagal . Kai kuriose sisteminėse bibliotekose gali būti trečiųjų šalių kurto programinio kodo, platinamo pagal . Trečiųjų šalių kurto programinio kodo autorių teisės išvardintos žemiau.\n\n
+Time running: AboutView Veikimo laikas:
+Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Dalies pateiktos programinės įrangos autorių teisės priklauso „NetBSD Foundation, Inc.“ ir talkininkams:\nftp, tput\n© 1996-2008 The NetBSD Foundation, Inc. Visos teisės saugomos.
+Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Dalis pateiktos programinės įrangos yra iš „FreeBSD“ Projekto, ir platinama pagal BSD licenciją:\ncal, ftpd, ping, telnet, telnetd, traceroute\n© 1994-2008 The FreeBSD Project. Visos teisės saugomos.
+The Haikuware team and their bounty program\n AboutView „Haikuware“ komandai už premijavimo programą bei šios programos dalyviams\n
+Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView © 1995, 1998-2001 Jef Poskanzer. Visos teisės saugomos.
+Copyright © 2010-2011 Google Inc. All rights reserved. AboutView © 2010-2011 Google Inc. Visos teisės saugomos.
+About this system AboutWindow Apie šią sistemą
+BSD (2-clause) AboutView BSD (2 punktų)
+Version: AboutView Versija:
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView © 1994-2008 Xiph.Org. Visos teisės saugomos.
+Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView © 1998-2000 Thai Open Source Software Center Ltd ir Clark Cooper.
+Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView © 2004-2005 Intel Corporation. Visos teisės saugomos.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView © 1999-2007 Michael C. Ring. Visos teisės saugomos.
+The BeGeistert team\n AboutView „BeGeistert“ komandai\n
+The University of Auckland and Christof Lutteroth\n\n AboutView Oklando universitetui ir Kristofui Luterotui\n\n
+Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView © 1990-2003 Wada Laboratory, the University of Tokyo.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView © 1995-2001 Lars Düning. Visos teisės saugomos.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView © 2002-2008 Alexander L. Roshal. Visos teisės saugomos.
+Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView © 2003-2006 Intel Corporation. Visos teisės saugomos.
+%ld MHz AboutView %ld MHz
+Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView © 1997-2006 PDFlib GmbH ir Thomas Merz. Visos teisės saugomos.\n„PDFlib“ and „PDFlib“ logotipas yra „PDFlib GmbH“ registruoti prekės ženklai.
+Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView © 1991-2000 Silicon Graphics, Inc. Visos teisės saugomos.
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Dalis pateiktos programinės įrangos yra iš GNU projekto ir platinama pagal GPL ir LGPL licencijas:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\n© The Free Software Foundation.
+MIT license. All rights reserved. AboutView MIT licencija. Visos teisės saugomos.
+[Click a license name to read the respective license.]\n\n AboutView [Norėdami perskaityti licenciją, spustelėkite jos pavadinimą.]\n\n
+Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView © 2007 Ralink Technology Corporation. Visos teisės saugomos.
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView © 1990-2002 Info-ZIP. Visos teisės saugomos.
+License: AboutView Licencija:
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 m. parašė Andy Ritger, remdamasis „Generalized Timing Formula“ standartu.
+GCC %d Hybrid AboutView GCC %d hibridas
+Translations:\n AboutView Vertimai:\n
diff --git a/data/catalogs/apps/aboutsystem/nl.catkeys b/data/catalogs/apps/aboutsystem/nl.catkeys
index dcd0db3cc2..356dc97d29 100644
--- a/data/catalogs/apps/aboutsystem/nl.catkeys
+++ b/data/catalogs/apps/aboutsystem/nl.catkeys
@@ -1,35 +1,85 @@
-1 dutch x-vnd.Haiku-About 2917609991
-%.2f GHz AboutView %.2f GHz
-%d MiB total AboutView %d MiB totaal
-%d MiB used (%d%%) AboutView %d MiB gebruikt (%d%%)
-%ld MHz AboutView %ld MHz
-%ld Processors: AboutView %ld Processors:
-%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totaal, %ontoegankelijk MiB ontoegankelijk
-... and the many people making donations!\n\n AboutView ... en de vele mensen die doneerden!\n\n
-About this system AboutWindow Over dit systeem
-Contributors:\n AboutView Bijdragers:\n
-Current maintainers:\n AboutView Huidige handhavers:\n
-GCC %d Hybrid AboutView GCC %d Hybride
-Google & their Google Summer of Code program\n AboutView Google & hun 'Google Summer of Code' programma\n
-Kernel: AboutView Kernel:
-License: AboutView Licentie:
-Licenses: AboutView Licenties:
-Memory: AboutView Geheugen:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (projectstichter)\n\n
-Past maintainers:\n AboutView Gewezen handhavers:\n
-Processor: AboutView Processor:
-Revision AboutView Revisie
-Source Code: AboutView Broncode:
-The BeGeistert team\n AboutView Het BeGeistert-team\n
-The Haiku-Ports team\n AboutView Het Haiku-Ports-team\n
-The Haikuware team and their bounty program\n AboutView Het Haikuware-team en hun bountyprogramma\n
-The University of Auckland and Christof Lutteroth\n\n AboutView De Universiteit van Auckland en Christof Lutteroth\n\n
-Time running: AboutView Looptijd:
-Translations:\n AboutView Vertalingen:\n
+1 dutch; flemish x-vnd.Haiku-About 3434348710
+Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 door de auteurs van Gutenprint. Alle rechten voorbehouden
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (en zijn NewOS kernel)\n
-Unknown AboutView Onbekend
-Version: AboutView Versie:
+BSD (4-clause) AboutView BSD (4-clausule)
+%ld Processors: AboutView %ld Processors:
+Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Copyright © 2000 Jean-Pierre ervbefeL en Remi Lefebvre.
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Alle rechten voorbehouden.
+%d MiB total AboutView %d MiB totaal
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (projectstichter)\n\n
+The Haiku-Ports team\n AboutView Het Haiku-Ports-team\n
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Alle rechten voorbehouden.
+%d MiB used (%d%%) AboutView %d MiB gebruikt (%d%%)
Website, marketing & documentation:\n AboutView Website, marketing & documentatie:\n
-[Click a license name to read the respective license.]\n\n AboutView [Klik op een licentienaam om de bijbehorende licentie te lezen.]\n\n
-\nCopyrights\n\n AboutView \nCopyrights\n\n
+AboutSystem System name AboutSystem
+MIT (no promotion) AboutView MIT (geen promotie)
+Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe en anderen.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Alle rechten voorbehouden.
+Revision AboutView Revisie
+Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Copyright © 2002-2005 Industrial Light & Magic, een divisie van Lucas Digital Ltd. LLC.
+Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. en zijn ontwikkelteam, voor het ontwerpen van BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Alle rechten voorbehouden.
+Source Code: AboutView Broncode:
+Processor: AboutView Processor:
+Kernel: AboutView Kernel:
+BSD (3-clause) AboutView BSD (3-clausule)
+Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman en Daniel Veillard. Alle rechten voorbehouden.
+Portions of this software are under copyright.\nCopyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Delen van deze software zijn beschermd door auteursrechten.\nCopyright © 1996-2006 The FreeType Project. Alle rechten voorbehouden.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView De copyright van de Haiku-code is eigendom van Haiku, Inc of van de respectievelijke auteurs indien uitdrukkelijk vermeld in de bron. Haiku ® en het logo van HAIKU ® zijn geregistreerde handelsmerken van Haiku, Inc.\n\n
+Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAlle rechten voorbehouden.
+%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB totaal, %inaccessible MiB ontoegankelijk
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Copyright © 2000-2007 Fabrice Bellard, et al.
+Contributors:\n AboutView Bijdragers:\n
+Unknown AboutView Onbekend
+Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 Expat maintainers.
+Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Alle rechten voorbehouden.
+Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Alle rechten voorbehouden.
+... and the many people making donations!\n\n AboutView ... en de vele mensen die doneerden!\n\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… en waarschijnlijk nog meerdere die we vergeten te benoemen zijn (sorry!)\n\n
+%.2f GHz AboutView %.2f GHz
+Memory: AboutView Geheugen:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Alle rechten voorbehouden.
+Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Deze software is gebaseerd op het werk van Independent JPEG Group.
+Past maintainers:\n AboutView Gewezen handhavers:\n
\n\nSpecial thanks to:\n AboutView \n\nBijzondere dank aan:\n
+Licenses: AboutView Licenties:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly and Mark Adler.
+Google & their Google Summer of Code program\n AboutView Google & hun 'Google Summer of Code' programma\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Alle rechten voorbehouden.
+\nCopyrights\n\n AboutView \nCopyrights\n\n
+Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Alle rechten voorbehouden.
+Current maintainers:\n AboutView Huidige handhavers:\n
+Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2007 Intel Corporation. Alle rechten voorbehouden.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. De code die uniek is voor Haiku, vooral de kernel en alle codes die applicaties kunnen linken, wordt gedistribueerd onder de voorwaarden van de . Sommige systeembibliotheken bevatten code van andere partijen gedistribueerd onder de . Je kan de copyrights van deze partijen hieronder vinden.\n\n
+Time running: AboutView Looptijd:
+Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Bevat software ontwikkeld door de NetBSD stichting, Inc en haar medewerkers:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. Alle rechten voorbehouden.
+Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Bevat software van het FreeBSD project, uitgegeven onder de BSD licentie:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. Alle rechten voorbehouden.
+The Haikuware team and their bounty program\n AboutView Het Haikuware-team en hun bountyprogramma\n
+Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Alle rechten voorbehouden.
+Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Alle rechten voorbehouden.
+About this system AboutWindow Over dit systeem
+BSD (2-clause) AboutView BSD (2-clausule)
+Version: AboutView Versie:
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Alle rechten voorbehouden.
+Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd en Clark Cooper.
+Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Alle rechten voorbehouden.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Alle rechten voorbehouden.
+The BeGeistert team\n AboutView Het BeGeistert-team\n
+The University of Auckland and Christof Lutteroth\n\n AboutView De Universiteit van Auckland en Christof Lutteroth\n\n
+Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratoriums, de universiteit van Tokyo.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Alle rechten voorbehouden.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Copyright © 2002-2008 Alexander L. Roshal. Alle rechten voorbehouden.
+Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Alle rechten voorbehouden.
+%ld MHz AboutView %ld MHz
+Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH en Thomas Merz. Alle rechten voorbehouden.\nPDFlib en PDflib logo zijn geregistreerde handelsmerken van PDFlib GmbH.
+Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Alle rechten voorbehouden.
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Bevat software van het GNU Project, uitgegeven onder de GPL en LGPL Licenties:\nGNU C Bibliotheek, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nAuteursrechten © De vrije software stichting.
+MIT license. All rights reserved. AboutView MIT licentie. Alle rechten voorbehouden.
+[Click a license name to read the respective license.]\n\n AboutView [Klik op een licentienaam om de bijbehorende licentie te lezen.]\n\n
+Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Alle rechten voorbehouden.
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Alle rechten voorbehouden.
+License: AboutView Licentie:
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001 door Andy Ritger gebaseerd op het Generalized Timing Formula.
+GCC %d Hybrid AboutView GCC %d Hybride
+Translations:\n AboutView Vertalingen:\n
diff --git a/data/catalogs/apps/aboutsystem/ru.catkeys b/data/catalogs/apps/aboutsystem/ru.catkeys
index bf5fc23203..6702135edf 100644
--- a/data/catalogs/apps/aboutsystem/ru.catkeys
+++ b/data/catalogs/apps/aboutsystem/ru.catkeys
@@ -1,57 +1,57 @@
1 russian x-vnd.Haiku-About 2392344107
-%.2f GHz AboutView %.2f ГГц
-%d MiB total AboutView Всего %d Мбайт
-%d MiB used (%d%%) AboutView %d Мбайт использовано (%d%%)
-%ld MHz AboutView %ld МГц
-%ld Processors: AboutView Процессоров: %ld
-%total MiB total, %inaccessible MiB inaccessible AboutView %total Мбайт всего, %inaccessible Мбайт недоступно
-... and the many people making donations!\n\n AboutView ... и многим другим людям, делающим пожертвования!\n\n
-About this system AboutWindow Об этой системе
-AboutSystem System name О системе
-BSD (3-clause) AboutView 3-пунктовая BSD
-BSD (4-clause) AboutView 4-пунктовая BSD
-Be Inc. and its developer team, for having created BeOS!\n\n AboutView Корпорации Be и ее команде разработчиков, за создание BeOS!\n\n
-Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Содержит программное обеспечение из Проекта GNU, выпущенное под лицензиями GPL и LGPL:\nБиблиотека GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nВсе права защищены © Фонд свободного программного обеспечения.
-Contributors:\n AboutView Внесли вклад в развитие:\n
-Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Все права защищены © 1990-2002 Info-ZIP.
-Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Все права защищены © 1994-1997 Mark Kilgard.
-Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Все права защищены © 1994-2008 Xiph.Org.
-Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Все права защищены © 1995-2001 Lars Düning.
-Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Все права защищены © 1995-2004 Jean-loup Gailly и Mark Adler.
-Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Все права защищены © 1996-1997 Jeff Prosise.
-Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Все права защищены © 1996-2005 Julian R Seward.
-Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Все права защищены © 1998-2003 Daniel Veillard.
-Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Все права защищены © 1999-2000 Y.Takagi.
-Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Все права защищены © 1999-2007 Michael C. Ring.
-Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Все права защищены © 2000-2007 Fabrice Bellard и другие.
-Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Все права защищены © 2002-2003 Steve Lhomme.
-Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Все права защищены © Максим Шеманарев (McSeem).
-Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Все права защищены © Александр Л. Рошал.
-Copyright © 2003 Peter Hanappe and others. AboutView Все права защищены © 2003 Peter Hanappe и другие.
-Current maintainers:\n AboutView Текущие разработчики:\n
-GCC %d Hybrid AboutView GCC %d Гибрид
-Google & their Google Summer of Code program\n AboutView Корпорации Google и их программе Google Summer of Code\n
-Kernel: AboutView Ядро:
-License: AboutView Лицензия:
-Licenses: AboutView Лицензии:
-MIT license. All rights reserved. AboutView Лицензия MIT. Все права защищены.
-Memory: AboutView Память:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (основателю проекта)\n\n
-Past maintainers:\n AboutView Предыдущие разработчики:\n
-Processor: AboutView Процессор:
-Revision AboutView Ревизия
-Source Code: AboutView Исходный код:
-The BeGeistert team\n AboutView Команде BeGeistert\n
-The Haiku-Ports team\n AboutView Команде Haiku-Ports\n
-The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
-The University of Auckland and Christof Lutteroth\n\n AboutView Университету Окленда и Christof Lutteroth\n\n
-Time running: AboutView Время работы:
-Translations:\n AboutView Переводчики:\n
Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (за его ядро NewOS)\n
-Unknown AboutView Неизвестен
-Version: AboutView Версия:
+BSD (4-clause) AboutView 4-пунктовая BSD
+%ld Processors: AboutView Процессоров: %ld
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Все права защищены © 1996-2005 Julian R Seward.
+%d MiB total AboutView Всего %d Мбайт
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (основателю проекта)\n\n
+The Haiku-Ports team\n AboutView Команде Haiku-Ports\n
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Все права защищены © 1998-2003 Daniel Veillard.
+%d MiB used (%d%%) AboutView %d Мбайт использовано (%d%%)
Website, marketing & documentation:\n AboutView Веб-сайт, маркетинг и документация:\n
-[Click a license name to read the respective license.]\n\n AboutView [Щелкните левой кнопкой мыши на название лицензии для её прочтения.]\n\n
-\nCopyrights\n\n AboutView \nАвторские права\n\n
-\n\nSpecial thanks to:\n AboutView \n\nОсобая благодарность:\n
+AboutSystem System name О системе
+Copyright © 2003 Peter Hanappe and others. AboutView Все права защищены © 2003 Peter Hanappe и другие.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Все права защищены © 1994-1997 Mark Kilgard.
+Revision AboutView Ревизия
+Be Inc. and its developer team, for having created BeOS!\n\n AboutView Корпорации Be и ее команде разработчиков, за создание BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Все права защищены © 1999-2000 Y.Takagi.
+Source Code: AboutView Исходный код:
+Processor: AboutView Процессор:
+Kernel: AboutView Ядро:
+BSD (3-clause) AboutView 3-пунктовая BSD
+%total MiB total, %inaccessible MiB inaccessible AboutView %total Мбайт всего, %inaccessible Мбайт недоступно
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Все права защищены © 2000-2007 Fabrice Bellard и другие.
+Contributors:\n AboutView Внесли вклад в развитие:\n
+Unknown AboutView Неизвестен
+... and the many people making donations!\n\n AboutView ... и многим другим людям, делающим пожертвования!\n\n
\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… а также те, кого мы забыли упомянуть (простите!)\n\n
+%.2f GHz AboutView %.2f ГГц
+Memory: AboutView Память:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Все права защищены © 1996-1997 Jeff Prosise.
+Past maintainers:\n AboutView Предыдущие разработчики:\n
+\n\nSpecial thanks to:\n AboutView \n\nОсобая благодарность:\n
+Licenses: AboutView Лицензии:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Все права защищены © 1995-2004 Jean-loup Gailly и Mark Adler.
+Google & their Google Summer of Code program\n AboutView Корпорации Google и их программе Google Summer of Code\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Все права защищены © 2002-2003 Steve Lhomme.
+\nCopyrights\n\n AboutView \nАвторские права\n\n
+Current maintainers:\n AboutView Текущие разработчики:\n
+Time running: AboutView Время работы:
+The Haikuware team and their bounty program\n AboutView Команде Haikuware и их программе пожертвований\n
+About this system AboutWindow Об этой системе
+Version: AboutView Версия:
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Все права защищены © 1994-2008 Xiph.Org.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Все права защищены © Максим Шеманарев (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Все права защищены © 1999-2007 Michael C. Ring.
+The BeGeistert team\n AboutView Команде BeGeistert\n
+The University of Auckland and Christof Lutteroth\n\n AboutView Университету Окленда и Christof Lutteroth\n\n
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Все права защищены © 1995-2001 Lars Düning.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Все права защищены © Александр Л. Рошал.
+%ld MHz AboutView %ld МГц
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Содержит программное обеспечение из Проекта GNU, выпущенное под лицензиями GPL и LGPL:\nБиблиотека GNU C, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nВсе права защищены © Фонд свободного программного обеспечения.
+MIT license. All rights reserved. AboutView Лицензия MIT. Все права защищены.
+[Click a license name to read the respective license.]\n\n AboutView [Щелкните левой кнопкой мыши на название лицензии для её прочтения.]\n\n
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Все права защищены © 1990-2002 Info-ZIP.
+License: AboutView Лицензия:
+GCC %d Hybrid AboutView GCC %d Гибрид
+Translations:\n AboutView Переводчики:\n
diff --git a/data/catalogs/apps/aboutsystem/sk.catkeys b/data/catalogs/apps/aboutsystem/sk.catkeys
index 6cc23be1e1..852a95a69b 100644
--- a/data/catalogs/apps/aboutsystem/sk.catkeys
+++ b/data/catalogs/apps/aboutsystem/sk.catkeys
@@ -1,83 +1,85 @@
-1 slovak x-vnd.Haiku-About 282658629
-%.2f GHz AboutView %.2f GHz
-%d MiB total AboutView %d MiB celkom
-%d MiB used (%d%%) AboutView %d MiB využitých (%d%%)
-%ld MHz AboutView %ld MHz
-%ld Processors: AboutView %ld procesory:
-%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB celkom, %inaccessible MiB neprístupných
-... and the many people making donations!\n\n AboutView ... a mnohí ďalší, ktorí prispeli darom!\n\n
-About this system AboutWindow O tomto systéme
-AboutSystem System name O systéme
-BSD (2-clause) AboutView BSD (2-bodová)
-BSD (3-clause) AboutView BSD (3-bodová)
+1 slovak x-vnd.Haiku-About 3434348710
+Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 autori Gutenprint. Všetky práva vyhradené.
+Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (a jeho jadro NewOS)\n
BSD (4-clause) AboutView BSD (4-bodová)
+%ld Processors: AboutView %ld procesory:
+Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Copyright © 2000 Jean-Pierre ervbefeL a Remi Lefebvre.
+Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Všetky práva vyhradené.
+%d MiB total AboutView %d MiB celkom
+Michael Phipps (project founder)\n\n AboutView Michael Phipps (zakladateľ projektu)\n\n
+The Haiku-Ports team\n AboutView Tím Haiku-Ports\n
+Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Všetky práva vyhradené.
+%d MiB used (%d%%) AboutView %d MiB využitých (%d%%)
+Website, marketing & documentation:\n AboutView Webová stránka, marketing a dokumentácia:\n
+AboutSystem System name O systéme
+MIT (no promotion) AboutView MIT (nie je reklama)
+Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe a ďalší.
+Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Všetky práva vyhradené.
+Revision AboutView Revízia
+Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Copyright © 2002-2005 Industrial Light & Magic, divízia Lucas Digital Ltd. LLC.
Be Inc. and its developer team, for having created BeOS!\n\n AboutView Be Inc. a jeho tímu vývojárov za vytvorenie BeOS!\n\n
+Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Všetky práva vyhradené.
+Source Code: AboutView Zdrojový kód:
+Processor: AboutView Procesor:
+Kernel: AboutView Jadro:
+BSD (3-clause) AboutView BSD (3-bodová)
+Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. Všetky práva vyhradené.
+Portions of this software are under copyright.\nCopyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Časti tohto softvéru sú chránené autorským právom.\nCopyright © 1996-2006 Projekt FreeType. Všetky práva vyhradené.
+The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Autorské práva ku kódu Haiku sú vlastníctvom Haiku, Inc. alebo príslušných autorov, kde sú výslovne uvedení v zdrojovom kóde. Haiku® a logo HAIKU® sú registrovanými ochrannými známkami Haiku, Inc.\n\n
+Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nVšetky práva vyhradené.
+%total MiB total, %inaccessible MiB inaccessible AboutView %total MiB celkom, %inaccessible MiB neprístupných
+Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Copyright © 2000-2007 Fabrice Bellard, et al.
+Contributors:\n AboutView Prispievatelia:\n
+Unknown AboutView Neznáme
+Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 správci Expat.
+Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Všetky práva vyhradené.
+Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Všetky práva vyhradené.
+... and the many people making donations!\n\n AboutView ... a mnohí ďalší, ktorí prispeli darom!\n\n
+\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… a mnoho ďalších, ktorých sme zabudli uviesť (prepáčte!)\n\n
+%.2f GHz AboutView %.2f GHz
+Memory: AboutView Pamäť:
+Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všetky práva vyhradené.
+Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Tento softvér je sčasti zaločený na práci Independent JPEG Group.
+Past maintainers:\n AboutView Minulí vývojári:\n
+\n\nSpecial thanks to:\n AboutView \n\nŠpecialne poďakovanie:\n
+Licenses: AboutView Licencie:
+Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly a Mark Adler.
+Google & their Google Summer of Code program\n AboutView Google a jeho program Google Summer of Code\n
+Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všetky práva vyhradené.
+\nCopyrights\n\n AboutView \nAutorské práva\n\n
+Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Všetky práva vyhradené.
+Current maintainers:\n AboutView Aktívni vývojári:\n
+Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2007 Intel Corporation. Všetky práva vyhradené.
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Kód, ktorý je jedinečný pre Haiku, obzvlášť jadro a všetok kód, voči ktorému sa linkujú aplikácie je šírený za podmienok . Niektoré knižnice systému môžu obsahovať kód tretích strán, ktorý je šírený za podmienok. Informácie o autorských právach ku kódu tretích strán si môžete prečítať nižšie.\n\n
+Time running: AboutView Čas behu:
Contains software developed by the NetBSD Foundation, Inc. and its contributors:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. All rights reserved. AboutView Obsahuje softvér, ktorý vyvinula NetBSD Foundation, Inc. a jej prispievatelia:\nftp, tput\nCopyright © 1996-2008 The NetBSD Foundation, Inc. Všetky práva vyhradené.
Contains software from the FreeBSD Project, released under the BSD license:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 The FreeBSD Project. All rights reserved. AboutView Obsahuje softvér z projektu FreeBSD, vydaný pod licenciou BSD:\ncal, ftpd, ping, telnet, telnetd, traceroute\nCopyright © 1994-2008 Projekt FreeBSD. Všetky práva vyhradené.
-Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje softvér z projektu GNU, vydaný pod licenciami GPL a LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
-Contributors:\n AboutView Prispievatelia:\n
-Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nAll rights reserved. AboutView Copyright © 1987-1988 Digital Equipment Corporation, Maynard, Massachusetts.\nVšetky práva vyhradené.
-Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Všetky práva vyhradené.
-Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratory, University of Tokyo.
-Copyright © 1991-2000 Silicon Graphics, Inc. SGI's Software FreeB license. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Licencia Software FreeB od SGI. Všetky práva vyhradené.
-Copyright © 1994-1997 Mark Kilgard. All rights reserved. AboutView Copyright © 1994-1997 Mark Kilgard. Všetky práva vyhradené.
-Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Všetky práva vyhradené.
-Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. This software is based in part on the work of the Independent JPEG Group. AboutView Copyright © 1994-2009, Thomas G. Lane, Guido Vollbeding. Tento softvér je sčasti zaločený na práci Independent JPEG Group.
-Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Všetky práva vyhradené.
-Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Všetky práva vyhradené.
-Copyright © 1995-2004 Jean-loup Gailly and Mark Adler. AboutView Copyright © 1995-2004 Jean-loup Gailly a Mark Adler.
-Copyright © 1996-1997 Jeff Prosise. All rights reserved. AboutView Copyright © 1996-1997 Jeff Prosise. Všetky práva vyhradené.
-Copyright © 1996-2005 Julian R Seward. All rights reserved. AboutView Copyright © 1996-2005 Julian R Seward. Všetky práva vyhradené.
-Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH a Thomas Merz. Všetky práva vyhradené.\nPDFlib a logo PDFlib sú registrované obchodné známky PDFlib GmbH.
-Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd a Clark Cooper.
-Copyright © 1998-2003 Daniel Veillard. All rights reserved. AboutView Copyright © 1998-2003 Daniel Veillard. Všetky práva vyhradené.
-Copyright © 1999-2000 Y.Takagi. All rights reserved. AboutView Copyright © 1999-2000 Y.Takagi. Všetky práva vyhradené.
-Copyright © 1999-2006 Brian Paul. Mesa3D Project. All rights reserved. AboutView Copyright © 1999-2006 Brian Paul. Mesa3D Project. Všetky práva vyhradené.
-Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Všetky práva vyhradené.
-Copyright © 1999-2010 by the authors of Gutenprint. All rights reserved. AboutView Copyright © 1999-2010 autori Gutenprint. Všetky práva vyhradené.
-Copyright © 2000 Jean-Pierre ervbefeL and Remi Lefebvre. AboutView Copyright © 2000 Jean-Pierre ervbefeL a Remi Lefebvre.
-Copyright © 2000-2007 Fabrice Bellard, et al. AboutView Copyright © 2000-2007 Fabrice Bellard, et al.
-Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. All rights reserved. AboutView Copyright © 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. Všetky práva vyhradené.
-Copyright © 2001-2003 Expat maintainers. AboutView Copyright © 2001-2003 správci Expat.
-Copyright © 2002-2003 Steve Lhomme. All rights reserved. AboutView Copyright © 2002-2003 Steve Lhomme. Všetky práva vyhradené.
-Copyright © 2002-2004 Vivek Mohan. All rights reserved. AboutView Copyright © 2002-2004 Vivek Mohan. Všetky práva vyhradené.
-Copyright © 2002-2005 Industrial Light & Magic, a division of Lucas Digital Ltd. LLC. AboutView Copyright © 2002-2005 Industrial Light & Magic, divízia Lucas Digital Ltd. LLC.
-Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
-Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Copyright © 2002-2008 Alexander L. Roshal. Všetky práva vyhradené.
-Copyright © 2003 Peter Hanappe and others. AboutView Copyright © 2003 Peter Hanappe a ďalší.
-Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Všetky práva vyhradené.
-Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Všetky práva vyhradené.
-Copyright © 2006-2007 Intel Corporation. All rights reserved. AboutView Copyright © 2006-2007 Intel Corporation. Všetky práva vyhradené.
-Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Všetky práva vyhradené.
-Copyright © 2007-2009 Marvell Semiconductor, Inc. All rights reserved. AboutView Copyright © 2007-2009 Marvell Semiconductor, Inc. Všetky práva vyhradené.
-Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všetky práva vyhradené.
-Current maintainers:\n AboutView Aktívni vývojári:\n
-GCC %d Hybrid AboutView GCC %d Hybrid
-Google & their Google Summer of Code program\n AboutView Google a jeho program Google Summer of Code\n
-Kernel: AboutView Jadro:
-License: AboutView Licencia:
-Licenses: AboutView Licencie:
-MIT (no promotion) AboutView MIT (nie je reklama)
-MIT license. All rights reserved. AboutView Licencia MIT. Všetky práva vyhradené.
-Memory: AboutView Pamäť:
-Michael Phipps (project founder)\n\n AboutView Michael Phipps (zakladateľ projektu)\n\n
-Past maintainers:\n AboutView Minulí vývojári:\n
-Portions of this software are copyright. Copyright © 1996-2006 The FreeType Project. All rights reserved. AboutView Časti tohto softvéru sú chránené autorským právom. Copyright © 1996-2006 Projekt FreeType. Všetky práva vyhradené.
-Processor: AboutView Procesor:
-Revision AboutView Revízia:
-Source Code: AboutView Zdrojový kód:
-The BeGeistert team\n AboutView Tím BeGeistert\n
-The Haiku-Ports team\n AboutView Tím Haiku-Ports\n
The Haikuware team and their bounty program\n AboutView Tím Haikuware a ich program odmien\n
-The University of Auckland and Christof Lutteroth\n\n AboutView University of Auckland a Christof Lutteroth\n\n
-The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku™ and the HAIKU logo® are (registered) trademarks of Haiku, Inc.\n\n AboutView Autorské práva ku kódu Haiku sú vlastníctvom Haiku, Inc. alebo jednotlivých autorov, kde sú v kóde výslovne uvedení. Haiku™ a logo HAIKU® sú (registrované) obchodné známky Haiku, Inc.\n\n
-Time running: AboutView Čas behu:
-Translations:\n AboutView Preklady:\n
-Travis Geiselbrecht (and his NewOS kernel)\n AboutView Travis Geiselbrecht (a jeho jadro NewOS)\n
-Unknown AboutView Neznáme
+Copyright © 1995, 1998-2001 Jef Poskanzer. All rights reserved. AboutView Copyright © 1995, 1998-2001 Jef Poskanzer. Všetky práva vyhradené.
+Copyright © 2010-2011 Google Inc. All rights reserved. AboutView Copyright © 2010-2011 Google Inc. Všetky práva vyhradené.
+About this system AboutWindow O tomto systéme
+BSD (2-clause) AboutView BSD (2-bodová)
Version: AboutView Verzia:
-Website, marketing & documentation:\n AboutView Webová stránka, marketing a dokumentácia:\n
+Copyright © 1994-2008 Xiph.Org. All rights reserved. AboutView Copyright © 1994-2008 Xiph.Org. Všetky práva vyhradené.
+Copyright © 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. AboutView Copyright © 1998-2000 Thai Open Source Software Center Ltd a Clark Cooper.
+Copyright © 2004-2005 Intel Corporation. All rights reserved. AboutView Copyright © 2004-2005 Intel Corporation. Všetky práva vyhradené.
+Copyright © 2002-2006 Maxim Shemanarev (McSeem). AboutView Copyright © 2002-2006 Maxim Shemanarev (McSeem).
+Copyright © 1999-2007 Michael C. Ring. All rights reserved. AboutView Copyright © 1999-2007 Michael C. Ring. Všetky práva vyhradené.
+The BeGeistert team\n AboutView Tím BeGeistert\n
+The University of Auckland and Christof Lutteroth\n\n AboutView University of Auckland a Christof Lutteroth\n\n
+Copyright © 1990-2003 Wada Laboratory, the University of Tokyo. AboutView Copyright © 1990-2003 Wada Laboratory, University of Tokyo.
+Copyright © 1995-2001 Lars Düning. All rights reserved. AboutView Copyright © 1995-2001 Lars Düning. Všetky práva vyhradené.
+Copyright © 2002-2008 Alexander L. Roshal. All rights reserved. AboutView Copyright © 2002-2008 Alexander L. Roshal. Všetky práva vyhradené.
+Copyright © 2003-2006 Intel Corporation. All rights reserved. AboutView Copyright © 2003-2006 Intel Corporation. Všetky práva vyhradené.
+%ld MHz AboutView %ld MHz
+Copyright © 1997-2006 PDFlib GmbH and Thomas Merz. All rights reserved.\nPDFlib and PDFlib logo are registered trademarks of PDFlib GmbH. AboutView Copyright © 1997-2006 PDFlib GmbH a Thomas Merz. Všetky práva vyhradené.\nPDFlib a logo PDFlib sú registrované ochranné známky PDFlib GmbH.
+Copyright © 1991-2000 Silicon Graphics, Inc. All rights reserved. AboutView Copyright © 1991-2000 Silicon Graphics, Inc. Všetky práva vyhradené.
+Contains software from the GNU Project, released under the GPL and LGPL licenses:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation. AboutView Obsahuje softvér z projektu GNU, vydaný pod licenciami GPL a LGPL:\nGNU C Library, GNU coretools, diffutils, findutils, sharutils, gawk, bison, m4, make, gdb, wget, ncurses, termcap, Bourne Again Shell.\nCopyright © The Free Software Foundation.
+MIT license. All rights reserved. AboutView Licencia MIT. Všetky práva vyhradené.
[Click a license name to read the respective license.]\n\n AboutView [Kliknite na názov licencie a prečítajte si príslušnú licenciu.]\n\n
-\nCopyrights\n\n AboutView \nAutorské práva\n\n
-\n\nSpecial thanks to:\n AboutView \n\nŠpecialne poďakovanie:\n
-\n… and probably some more we forgot to mention (sorry!)\n\n AboutView \n… a mnoho ďalších, ktorých sme zabudli uviesť (prepáčte!)\n\n
+Copyright © 2007 Ralink Technology Corporation. All rights reserved. AboutView Copyright © 2007 Ralink Technology Corporation. Všetky práva vyhradené.
+Copyright © 1990-2002 Info-ZIP. All rights reserved. AboutView Copyright © 1990-2002 Info-ZIP. Všetky práva vyhradené.
+License: AboutView Licencia:
+2001 by Andy Ritger based on the Generalized Timing Formula AboutView 2001, Andy Ritger, založené na Zovšeobecnenom časovacom vzorci
+GCC %d Hybrid AboutView GCC %d Hybrid
+Translations:\n AboutView Preklady:\n
diff --git a/data/catalogs/apps/aboutsystem/sv.catkeys b/data/catalogs/apps/aboutsystem/sv.catkeys
index 36a30e2b34..88c29752fe 100644
--- a/data/catalogs/apps/aboutsystem/sv.catkeys
+++ b/data/catalogs/apps/aboutsystem/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Haiku-About 1133193730
+1 swedish x-vnd.Haiku-About 2717523515
%.2f GHz AboutView %.2f GHz
%d MiB total AboutView %d MiB totalt
%d MiB used (%d%%) AboutView %d MiB använt (%d%%)
@@ -71,7 +71,7 @@ The BeGeistert team\n AboutView BeGeistert-teamet\n
The Haiku-Ports team\n AboutView Haiku Ports-teamet\n
The Haikuware team and their bounty program\n AboutView Haikuware-teamet och deras belöningsprogram\n
The University of Auckland and Christof Lutteroth\n\n AboutView The University of Auckland och Christof Lutteroth\n\n
-The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the %MIT license%. Some system libraries contain third party code distributed under the LGPL license. You can find the copyrights to third party code below.\n\n AboutView %MIT license% isn't a variable and has to be translated. Koden som är unik för Haiku, särskilt kärnan och all kod som program länkar mot, är distribuerad under villkoren hos %MIT licensen%. Några systembibliotek innehåller tredjepartskod distribuerat under villkoren för LGPL licensen. Du kan finna upphovsrättsvillkoren för tredjepartskod nedan.\n\n
+The code that is unique to Haiku, especially the kernel and all code that applications may link against, is distributed under the terms of the . Some system libraries contain third party code distributed under the . You can find the copyrights to third party code below.\n\n AboutView and aren't variables and can be translated. However, please, don't remove < and > as they're needed as placeholders for proper hypertext functionality. Koden som är unik för Haiku, särskilt kärnan och all kod som program länkar mot, är distribuerad under villkoren för . Några systembibliotek innehåller tredjepartskod distribuerat under villkoren för . Du finner upphovsrättsvillkoren för tredjepartskod nedan.\n\n
The copyright to the Haiku code is property of Haiku, Inc. or of the respective authors where expressly noted in the source. Haiku® and the HAIKU logo® are registered trademarks of Haiku, Inc.\n\n AboutView Upphovsrätten till Haiku's källkod en egendom tillhörande Haiku, Inc. eller respektive upphovsman, där det uttryckligen är angivet i källkoden. Haiku® och Haiku's logo® är registrerade varumärken tillhörande Haiku, Inc.\n\n
Time running: AboutView Tid sedan uppstart:
Translations:\n AboutView Översättningar:\n
diff --git a/data/catalogs/apps/activitymonitor/be.catkeys b/data/catalogs/apps/activitymonitor/be.catkeys
index f8bf8567a4..136cbb9184 100644
--- a/data/catalogs/apps/activitymonitor/be.catkeys
+++ b/data/catalogs/apps/activitymonitor/be.catkeys
@@ -1,48 +1,48 @@
1 belarusian x-vnd.Haiku-ActivityMonitor 3704566709
-%.1f KB/s DataSource %.1f КБ/сек
-%.1f MB DataSource %.1f МБ
-%.1f faults/s DataSource %.1f памылак/сек
-%lld ms SettingsWindow %lld м.сек
-%lld sec. SettingsWindow %lld сек.
-ActivityMonitor System name МаніторАктыўнасці
-Add graph ActivityWindow Дадаць графік
-Additional items ActivityView Дадатковыя элементы
-Apps DataSource Праграмы
-Block cache DataSource Блокавы кэш
-Block cache memory DataSource Памяць блокавага кэшу
-CPU DataSource ЦП
-CPU usage DataSource Выкарыстанне ЦП
-CPU usage (combined) DataSource Выкарыстанне ЦП (камбінавана)
-Cache DataSource Кэш
-Cached memory DataSource Кэшаваная памяць
-File ActivityWindow Файл
-Hide legend ActivityView Схаваць легенду
-MB DataSource МБ
-Media nodes DataSource Медыя узлы
-Memory DataSource Памяць
-Network receive DataSource Атрыманне па сетцы
-Network send DataSource Адпраўка па сетцы
P-faults DataSource Памылкі старонак памяці
-Page faults DataSource Памылкі старонак памяці
-Ports DataSource Парты
-Quit ActivityWindow Выйсці
-RX DataSource Shorter version for Receiving. Атрым.
-Raw clipboard DataSource Агульны буфер
+Media nodes DataSource Медыя узлы
+Threads DataSource Патокі
+MB DataSource МБ
+Add graph ActivityWindow Дадаць графік
+Teams DataSource Групы
+Hide legend ActivityView Схаваць легенду
+Network send DataSource Адпраўка па сетцы
+CPU usage (combined) DataSource Выкарыстанне ЦП (камбінавана)
+CPU DataSource ЦП
+Used memory DataSource Ужытая памяць
+Cached memory DataSource Кэшаваная памяць
+Apps DataSource Праграмы
+Show legend ActivityView Паказаць легенду
+Text clipboard DataSource Тэкставы буфер
+Settings ActivityWindow Наладкі
Receiving DataSource Атрыманне
+Settings… ActivityWindow Наладкі…
+Ports DataSource Парты
+Page faults DataSource Памылкі старонак памяці
+Sending DataSource Адпраўка
+Cache DataSource Кэш
+%.1f faults/s DataSource %.1f памылак/сек
+Update time interval: SettingsWindow Інтэрвал часу абнаўлення:
+TX DataSource Shorter version for Sending Адпр.
+Quit ActivityWindow Выйсці
+Block cache memory DataSource Памяць блокавага кэшу
Remove graph ActivityView Выдаліць графік
+%.1f MB DataSource %.1f МБ
+%lld sec. SettingsWindow %lld сек.
+%lld ms SettingsWindow %lld м.сек
+CPU usage DataSource Выкарыстанне ЦП
+Raw clipboard DataSource Агульны буфер
+Sems DataSource Семафоры
+ActivityMonitor System name МаніторАктыўнасці
Running applications DataSource Запушчаныя праграмы
Semaphores DataSource Семафоры
-Sems DataSource Семафоры
-Sending DataSource Адпраўка
-Settings ActivityWindow Наладкі
-Settings… ActivityWindow Наладкі…
-Show legend ActivityView Паказаць легенду
-Swap DataSource Своп
+Block cache DataSource Блокавы кэш
Swap space DataSource Прастора свопу
-TX DataSource Shorter version for Sending Адпр.
-Teams DataSource Групы
-Text clipboard DataSource Тэкставы буфер
-Threads DataSource Патокі
-Update time interval: SettingsWindow Інтэрвал часу абнаўлення:
-Used memory DataSource Ужытая памяць
+Swap DataSource Своп
+File ActivityWindow Файл
usage DataSource выкарыстанне
+Additional items ActivityView Дадатковыя элементы
+Network receive DataSource Атрыманне па сетцы
+%.1f KB/s DataSource %.1f КБ/сек
+Memory DataSource Памяць
+RX DataSource Shorter version for Receiving. Атрым.
diff --git a/data/catalogs/apps/activitymonitor/de.catkeys b/data/catalogs/apps/activitymonitor/de.catkeys
index 88699d7092..99f51a8b77 100644
--- a/data/catalogs/apps/activitymonitor/de.catkeys
+++ b/data/catalogs/apps/activitymonitor/de.catkeys
@@ -1,48 +1,48 @@
1 german x-vnd.Haiku-ActivityMonitor 3704566709
-%.1f KB/s DataSource %.1f KiB/s
-%.1f MB DataSource %.1f MiB
-%.1f faults/s DataSource %.1f Fehler/s
-%lld ms SettingsWindow %lld ms
-%lld sec. SettingsWindow %lld Sek.
-ActivityMonitor System name Systemmonitor
-Add graph ActivityWindow Graphen hinzufügen
-Additional items ActivityView Zusätzliche Elemente
-Apps DataSource Apps
-Block cache DataSource Block-Cache
-Block cache memory DataSource Block-Cache-Speicher
-CPU DataSource CPU
-CPU usage DataSource CPU-Auslastung
-CPU usage (combined) DataSource CPU-Auslastung (alle)
-Cache DataSource Cache
-Cached memory DataSource Gecachter Speicher
-File ActivityWindow Datei
-Hide legend ActivityView Legende ausblenden
-MB DataSource MiB
-Media nodes DataSource Media-Nodes
-Memory DataSource Speicher
-Network receive DataSource Netzwerk empfangen
-Network send DataSource Netzwerk senden
P-faults DataSource Seitenfehler
-Page faults DataSource Seitenfehler
-Ports DataSource Ports
-Quit ActivityWindow Beenden
-RX DataSource Shorter version for Receiving. Empfangen
-Raw clipboard DataSource Raw-Ablage
+Media nodes DataSource Media-Nodes
+Threads DataSource Threads
+MB DataSource MiB
+Add graph ActivityWindow Graphen hinzufügen
+Teams DataSource Teams
+Hide legend ActivityView Legende ausblenden
+Network send DataSource Netzwerk senden
+CPU usage (combined) DataSource CPU-Auslastung (alle)
+CPU DataSource CPU
+Used memory DataSource Benutzter Speicher
+Cached memory DataSource Gecachter Speicher
+Apps DataSource Apps
+Show legend ActivityView Legende anzeigen
+Text clipboard DataSource Text-Ablage
+Settings ActivityWindow Einstellungen
Receiving DataSource Empfangen
+Settings… ActivityWindow Einstellungen...
+Ports DataSource Ports
+Page faults DataSource Seitenfehler
+Sending DataSource Senden
+Cache DataSource Cache
+%.1f faults/s DataSource %.1f Fehler/s
+Update time interval: SettingsWindow Aktualisierungsintervall:
+TX DataSource Shorter version for Sending Senden
+Quit ActivityWindow Beenden
+Block cache memory DataSource Block-Cache-Speicher
Remove graph ActivityView Graph entfernen
+%.1f MB DataSource %.1f MiB
+%lld sec. SettingsWindow %lld Sek.
+%lld ms SettingsWindow %lld ms
+CPU usage DataSource CPU-Auslastung
+Raw clipboard DataSource Raw-Ablage
+Sems DataSource Sems
+ActivityMonitor System name Systemmonitor
Running applications DataSource Laufende Anwendungen
Semaphores DataSource Semaphoren
-Sems DataSource Sems
-Sending DataSource Senden
-Settings ActivityWindow Einstellungen
-Settings… ActivityWindow Einstellungen...
-Show legend ActivityView Legende anzeigen
-Swap DataSource Auslagerung
+Block cache DataSource Block-Cache
Swap space DataSource Auslagerungsspeicher
-TX DataSource Shorter version for Sending Senden
-Teams DataSource Teams
-Text clipboard DataSource Text-Ablage
-Threads DataSource Threads
-Update time interval: SettingsWindow Aktualisierungsintervall:
-Used memory DataSource Benutzter Speicher
+Swap DataSource Auslagerung
+File ActivityWindow Datei
usage DataSource Last
+Additional items ActivityView Zusätzliche Elemente
+Network receive DataSource Netzwerk empfangen
+%.1f KB/s DataSource %.1f KiB/s
+Memory DataSource Speicher
+RX DataSource Shorter version for Receiving. Empfangen
diff --git a/data/catalogs/apps/activitymonitor/hr.catkeys b/data/catalogs/apps/activitymonitor/hr.catkeys
new file mode 100644
index 0000000000..4afd7d8cc7
--- /dev/null
+++ b/data/catalogs/apps/activitymonitor/hr.catkeys
@@ -0,0 +1,24 @@
+1 croatian x-vnd.Haiku-ActivityMonitor 2463799300
+%.1f KB/s DataSource %.1f KB/s
+%.1f MB DataSource %.1f MB
+Additional items ActivityView Dodatne stavke
+Apps DataSource Programi
+CPU DataSource CPU
+CPU usage DataSource CPU upotreba
+CPU usage (combined) DataSource CPU upotreba (kombinirano)
+File ActivityWindow Datoteka
+MB DataSource MB
+Memory DataSource Memorija
+Ports DataSource Portovi
+Quit ActivityWindow Isključi
+Receiving DataSource Primaanje
+Running applications DataSource Pokretanje programa
+Semaphores DataSource Semafori
+Sending DataSource Slanje
+Settings ActivityWindow Postavke
+Settings… ActivityWindow Postavke...
+Swap DataSource Swap
+Swap space DataSource Swap prostor
+Update time interval: SettingsWindow Dopuni vremenski interval
+Used memory DataSource Korištena memorija
+usage DataSource upotreba
diff --git a/data/catalogs/apps/activitymonitor/lt.catkeys b/data/catalogs/apps/activitymonitor/lt.catkeys
new file mode 100644
index 0000000000..6545176aaf
--- /dev/null
+++ b/data/catalogs/apps/activitymonitor/lt.catkeys
@@ -0,0 +1,47 @@
+1 lithuanian x-vnd.Haiku-ActivityMonitor 3130452266
+P-faults DataSource Psl. klaidos
+Threads DataSource Gijos
+MB DataSource MB
+Add graph ActivityWindow Pridėti grafiką
+Teams DataSource Procesų grupės
+Hide legend ActivityView Nerodyti legendos
+Network send DataSource Išsiunčiami duomenys
+CPU usage (combined) DataSource Centrinio procesoriaus apkrova (kompleksinė)
+CPU DataSource Centrinis procesorius Nr.
+Used memory DataSource Naudojama atmintis
+Cached memory DataSource Atmintis podėlyje
+Apps DataSource Programos
+Show legend ActivityView Rodyti legendą
+Text clipboard DataSource Tekstas iškarpinėje
+Settings ActivityWindow Nuostatos
+Receiving DataSource Atsiuntimas
+Settings… ActivityWindow Nuostatos…
+Ports DataSource Prievadai
+Page faults DataSource Puslapiavimo klaidos
+Sending DataSource Išsiuntimas
+Cache DataSource Podėlis
+%.1f faults/s DataSource %.1f klaidų/s
+Update time interval: SettingsWindow Atnaujinimo periodas:
+TX DataSource Shorter version for Sending Išs.
+Quit ActivityWindow Baigti darbą
+Block cache memory DataSource Blokinio podėlio atmintis
+Remove graph ActivityView Pašalinti grafiką
+%.1f MB DataSource %.1f MB
+%lld sec. SettingsWindow %lld sek.
+%lld ms SettingsWindow %lld ms
+CPU usage DataSource Centrinio procesoriaus apkrova
+Raw clipboard DataSource Iškarpinės apimtis
+Sems DataSource Sem.
+ActivityMonitor System name Aktyvumo monitorius
+Running applications DataSource Veikiančios programos
+Semaphores DataSource Semaforai
+Block cache DataSource Blokinis podėlis
+Swap space DataSource Sukeitimų failo dydis
+Swap DataSource Sukeitimų failas
+File ActivityWindow Failas
+usage DataSource apkrova
+Additional items ActivityView Papildomi elementai
+Network receive DataSource Atsiunčiami duomenys
+%.1f KB/s DataSource %.1f KB/s
+Memory DataSource Atmintis
+RX DataSource Shorter version for Receiving. Ats.
diff --git a/data/catalogs/apps/activitymonitor/nl.catkeys b/data/catalogs/apps/activitymonitor/nl.catkeys
index 155def22b2..e17269f664 100644
--- a/data/catalogs/apps/activitymonitor/nl.catkeys
+++ b/data/catalogs/apps/activitymonitor/nl.catkeys
@@ -1,36 +1,48 @@
-1 dutch x-vnd.Haiku-ActivityMonitor 1437495034
-Add graph ActivityWindow Voeg grafiek toe
-Additional items ActivityView Toegevoegde items
-Apps DataSource Toepassingen
-Block cache DataSource Blok-cache
-Block cache memory DataSource Geheugen blok-cache
-CPU DataSource CPU
-CPU usage DataSource CPU-gebruik
-CPU usage (combined) DataSource CPU-gebruik (gecombineerd)
-Cache DataSource Cache
-Cached memory DataSource Geheugen in cache
-File ActivityWindow Bestand
-Hide legend ActivityView Verberg legenda
-Media nodes DataSource Media-eenheid
-Memory DataSource Geheugen
-Network receive DataSource Netwerk (ontvangst)
-Network send DataSource Netwerk (uitgaand)
+1 dutch; flemish x-vnd.Haiku-ActivityMonitor 3704566709
P-faults DataSource P-onderbrekingen
-Page faults DataSource Page-onderbrekingen
-Ports DataSource Poorten
-Quit ActivityWindow Afsluiten
+Media nodes DataSource Media-eenheid
+Threads DataSource Threads
+MB DataSource MB
+Add graph ActivityWindow Voeg grafiek toe
+Teams DataSource Teams
+Hide legend ActivityView Verberg legenda
+Network send DataSource Netwerk (uitgaand)
+CPU usage (combined) DataSource CPU-gebruik (gecombineerd)
+CPU DataSource CPU
+Used memory DataSource Gebruikt geheugen
+Cached memory DataSource Geheugen in cache
+Apps DataSource Toepassingen
+Show legend ActivityView Toon legenda
+Text clipboard DataSource Tekst klembord
+Settings ActivityWindow Instellingen
Receiving DataSource Ontvangend
+Settings… ActivityWindow Instellingen...
+Ports DataSource Poorten
+Page faults DataSource Page-onderbrekingen
+Sending DataSource Versturend
+Cache DataSource Cache
+%.1f faults/s DataSource %.1f fout(en)
+Update time interval: SettingsWindow Interval bijwerktijd:
+TX DataSource Shorter version for Sending TX
+Quit ActivityWindow Afsluiten
+Block cache memory DataSource Geheugen blok-cache
Remove graph ActivityView Verwijder grafiek
+%.1f MB DataSource %.1f MB
+%lld sec. SettingsWindow %lld sec.
+%lld ms SettingsWindow %lld ms
+CPU usage DataSource CPU-gebruik
+Raw clipboard DataSource Onbewerkt klembord
+Sems DataSource Semaforen
+ActivityMonitor System name ActivityMonitor
Running applications DataSource Lopende toepassingen
Semaphores DataSource Semaforen
-Sems DataSource Semaforen
-Sending DataSource Versturend
-Settings ActivityWindow Instellingen
-Settings… ActivityWindow Instellingen...
-Show legend ActivityView Toon legenda
-Swap DataSource Swap
+Block cache DataSource Blok-cache
Swap space DataSource Swap-ruimte
-Teams DataSource Teams
-Threads DataSource Threads
-Update time interval: SettingsWindow Interval bijwerktijd:
-Used memory DataSource Gebruikt geheugen
+Swap DataSource Swap
+File ActivityWindow Bestand
+usage DataSource gebruik
+Additional items ActivityView Toegevoegde items
+Network receive DataSource Netwerk (ontvangst)
+%.1f KB/s DataSource %.1f KB/s
+Memory DataSource Geheugen
+RX DataSource Shorter version for Receiving. RX
diff --git a/data/catalogs/apps/activitymonitor/ru.catkeys b/data/catalogs/apps/activitymonitor/ru.catkeys
index cdd4c168f9..c16eb4b641 100644
--- a/data/catalogs/apps/activitymonitor/ru.catkeys
+++ b/data/catalogs/apps/activitymonitor/ru.catkeys
@@ -1,48 +1,48 @@
1 russian x-vnd.Haiku-ActivityMonitor 3704566709
-%.1f KB/s DataSource %.1f Кбайт/с
-%.1f MB DataSource %.1f Мбайт
-%.1f faults/s DataSource %.1f ошибок/с
-%lld ms SettingsWindow %lld мс
-%lld sec. SettingsWindow %lld сек.
-ActivityMonitor System name Монитор активности
-Add graph ActivityWindow Добавить график
-Additional items ActivityView Дополнительные графики
-Apps DataSource Приложения
-Block cache DataSource Блоковый кэш
-Block cache memory DataSource Память блокового кэша
-CPU DataSource ЦПУ
-CPU usage DataSource Использование ЦПУ
-CPU usage (combined) DataSource Использование ЦПУ (всего)
-Cache DataSource Кэш
-Cached memory DataSource Кэшируемая память
-File ActivityWindow Файл
-Hide legend ActivityView Скрыть легенду
-MB DataSource Мбайт
-Media nodes DataSource Медиа узлы
-Memory DataSource Память
-Network receive DataSource Входящий трафик
-Network send DataSource Исходящий трафик
P-faults DataSource Ошибки страниц
-Page faults DataSource Ошибки страниц
-Ports DataSource Порты
-Quit ActivityWindow Выход
-RX DataSource Shorter version for Receiving. Прием
-Raw clipboard DataSource Полный буфер обмена
+Media nodes DataSource Медиа узлы
+Threads DataSource Потоки
+MB DataSource Мбайт
+Add graph ActivityWindow Добавить график
+Teams DataSource Процессы
+Hide legend ActivityView Скрыть легенду
+Network send DataSource Исходящий трафик
+CPU usage (combined) DataSource Использование ЦПУ (всего)
+CPU DataSource ЦПУ
+Used memory DataSource Использованная память
+Cached memory DataSource Кэшируемая память
+Apps DataSource Приложения
+Show legend ActivityView Показать легенду
+Text clipboard DataSource Текстовый буфер обмена
+Settings ActivityWindow Настройки
Receiving DataSource Прием
+Settings… ActivityWindow Настройки…
+Ports DataSource Порты
+Page faults DataSource Ошибки страниц
+Sending DataSource Передача
+Cache DataSource Кэш
+%.1f faults/s DataSource %.1f ошибок/с
+Update time interval: SettingsWindow Интервал обновления:
+TX DataSource Shorter version for Sending Передача
+Quit ActivityWindow Выход
+Block cache memory DataSource Память блокового кэша
Remove graph ActivityView Удалить график
+%.1f MB DataSource %.1f Мбайт
+%lld sec. SettingsWindow %lld сек.
+%lld ms SettingsWindow %lld мс
+CPU usage DataSource Использование ЦПУ
+Raw clipboard DataSource Полный буфер обмена
+Sems DataSource Семафоры
+ActivityMonitor System name Монитор активности
Running applications DataSource Запущенные приложения
Semaphores DataSource Семафоры
-Sems DataSource Семафоры
-Sending DataSource Передача
-Settings ActivityWindow Настройки
-Settings… ActivityWindow Настройки…
-Show legend ActivityView Показать легенду
-Swap DataSource Файл подкачки
+Block cache DataSource Блоковый кэш
Swap space DataSource Размер файла подкачки
-TX DataSource Shorter version for Sending Передача
-Teams DataSource Процессы
-Text clipboard DataSource Текстовый буфер обмена
-Threads DataSource Потоки
-Update time interval: SettingsWindow Интервал обновления:
-Used memory DataSource Использованная память
+Swap DataSource Файл подкачки
+File ActivityWindow Файл
usage DataSource (загрузка)
+Additional items ActivityView Дополнительные графики
+Network receive DataSource Входящий трафик
+%.1f KB/s DataSource %.1f Кбайт/с
+Memory DataSource Память
+RX DataSource Shorter version for Receiving. Прием
diff --git a/data/catalogs/apps/activitymonitor/sk.catkeys b/data/catalogs/apps/activitymonitor/sk.catkeys
index cbe6973fd2..32aa94da2f 100644
--- a/data/catalogs/apps/activitymonitor/sk.catkeys
+++ b/data/catalogs/apps/activitymonitor/sk.catkeys
@@ -1,48 +1,48 @@
1 slovak x-vnd.Haiku-ActivityMonitor 3704566709
-%.1f KB/s DataSource %.1f KB/s
-%.1f MB DataSource %.1f MB
-%.1f faults/s DataSource %.1f výpadkov/s
-%lld ms SettingsWindow %lld ms
-%lld sec. SettingsWindow %lld sek.
-ActivityMonitor System name Monitor aktivity
-Add graph ActivityWindow Pridať graf
-Additional items ActivityView Ďalšie položky
-Apps DataSource Aplikácie
-Block cache DataSource Bloková cache
-Block cache memory DataSource Bloková vyrovnávacia pamäť
-CPU DataSource CPU
-CPU usage DataSource Využitie CPU
-CPU usage (combined) DataSource Využitie CPU (kombinované)
-Cache DataSource Vyrovnávacia pamäť
-Cached memory DataSource Pamäť v cache
-File ActivityWindow Súbor
-Hide legend ActivityView Skryť legendu
-MB DataSource MB
-Media nodes DataSource Mediálne uzly
-Memory DataSource Pamäť
-Network receive DataSource Sieť - prijaté
-Network send DataSource Sieť - odoslané
P-faults DataSource P-fault
-Page faults DataSource Výpadky stránok
-Ports DataSource Porty
-Quit ActivityWindow Ukončiť
-RX DataSource Shorter version for Receiving. RX
-Raw clipboard DataSource Schránka bez formátu
+Media nodes DataSource Mediálne uzly
+Threads DataSource Vlákna
+MB DataSource MB
+Add graph ActivityWindow Pridať graf
+Teams DataSource Tímy
+Hide legend ActivityView Skryť legendu
+Network send DataSource Sieť - odoslané
+CPU usage (combined) DataSource Využitie CPU (kombinované)
+CPU DataSource CPU
+Used memory DataSource Využitá pamäť
+Cached memory DataSource Pamäť v cache
+Apps DataSource Aplikácie
+Show legend ActivityView Zobraziť legendu
+Text clipboard DataSource Textová schránka
+Settings ActivityWindow Nastavenia
Receiving DataSource Prijíma sa
+Settings… ActivityWindow Nastavenia…
+Ports DataSource Porty
+Page faults DataSource Výpadky stránok
+Sending DataSource Posiela sa
+Cache DataSource Vyrovnávacia pamäť
+%.1f faults/s DataSource %.1f výpadkov/s
+Update time interval: SettingsWindow Časový interval aktualizácie:
+TX DataSource Shorter version for Sending TX
+Quit ActivityWindow Ukončiť
+Block cache memory DataSource Bloková vyrovnávacia pamäť
Remove graph ActivityView Odstrániť graf
+%.1f MB DataSource %.1f MB
+%lld sec. SettingsWindow %lld sek.
+%lld ms SettingsWindow %lld ms
+CPU usage DataSource Využitie CPU
+Raw clipboard DataSource Schránka bez formátu
+Sems DataSource Semafory
+ActivityMonitor System name Monitor aktivity
Running applications DataSource Bežiace aplikácie
Semaphores DataSource Semafory
-Sems DataSource Semafory
-Sending DataSource Posiela sa
-Settings ActivityWindow Nastavenia
-Settings… ActivityWindow Nastavenia...
-Show legend ActivityView Zobraziť legendu
-Swap DataSource Odkladací priestor
+Block cache DataSource Bloková cache
Swap space DataSource Odkladací priestor
-TX DataSource Shorter version for Sending TX
-Teams DataSource Tímy
-Text clipboard DataSource Textová schránka
-Threads DataSource Vlákna
-Update time interval: SettingsWindow Časový interval aktualizácie:
-Used memory DataSource Využitá pamäť
+Swap DataSource Odkladací priestor
+File ActivityWindow Súbor
usage DataSource využitie
+Additional items ActivityView Ďalšie položky
+Network receive DataSource Sieť - prijaté
+%.1f KB/s DataSource %.1f KB/s
+Memory DataSource Pamäť
+RX DataSource Shorter version for Receiving. RX
diff --git a/data/catalogs/apps/bootmanager/be.catkeys b/data/catalogs/apps/bootmanager/be.catkeys
index f82351af7f..781591704d 100644
--- a/data/catalogs/apps/bootmanager/be.catkeys
+++ b/data/catalogs/apps/bootmanager/be.catkeys
@@ -1,65 +1,65 @@
1 belarusian x-vnd.Haiku-BootManager 3014946856
-About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Master Boot Record (MBR) дыска %disk зараз будзе адноўлены з выкарыстаннем раней захаванай копіі змешчанай ў файле %file. Жадаеце аднавіць Master Boot Record?
-About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Гатовы запісаць меню запуску на дыск. Вы сапраўды жадаеце працягваць?
-About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Гатовы запісаць наступнае меню запуску на ўстройства (%s). Калі ласка, праверце інфармацыю ніжэй перад тым, як працягваць.
-After five seconds DefaultPartitionPage Праз пяць секунд
-After four seconds DefaultPartitionPage Праз чатыры секунды
-After one minute DefaultPartitionPage Праз адну хвіліну
-After one second DefaultPartitionPage Праз адну секунду
-After three seconds DefaultPartitionPage Праз тры секунды
+The boot manager has been successfully installed on your system. BootManagerController Менеджэр запуску быў паспяхова ўсталяваны на вашу сістэму.
After two seconds DefaultPartitionPage Пасля двух секунд
-An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Падчас запісу меню запуску на дыск адбылася памылка. Магчыма, што Master Boot Record можа быць пашкоджаны. Каб пазбегнуць праблем аднавіце MBR!
+Uninstall Boot Manager UninstallPage Title Выдаліць Менеджэр Запуску
At least one partition must be selected! BootManagerController Найменей як адзін падзел павінен быць абраны!
-Back BootManagerController Button Назад
-Backup Master Boot Record BootManagerController Title Захаваць рэзервовую копію Master Boot Record
-Boot Manager is unable to read the partition table! BootManagerController Менеджер Запуску не можа прачытаць табліцу раздзелаў!
-BootManager System name Мэнэджэр Загрузкі
-Cannot access! DrivesPage Cannot install Няма доступу!
-Default Partition DefaultPartitionPage Title Прадвызначаны падзел
-Default Partition: DefaultPartitionPage Menu field label Прадвызначаны падзел:
-Done BootManagerController Button Зроблена
-Drives DrivesPage Title Дыскі
-Error reading partition table BootManagerController Title Памылка пры чытанні табліцы падзелаў
-File: FileSelectionPage Text control label Файл:
+The old Master Boot Record could not be saved to %s BootManagerController Немагчыма захаваць зыходную копію Master Boot Record у файле %s
+Restore MBR BootManagerController Button Аднавіць MBR
Hard Drive DrivesPage Default disk name Дыск
-Immediately DefaultPartitionPage Неадкладна
-Install DrivesPage Button Усталяваць
-Installation of boot menu completed BootManagerController Title Устаноўка меню запуску скончаная.
-Installation of boot menu failed BootManagerController Title Устаноўка загрузачнага меню не ўдалася
-Never DefaultPartitionPage Ніколі
-Next WizardView Button Далей
-No space available! DrivesPage Cannot install Недастаткова месца!
-OK BootManagerController Button ОК
-Old Master Boot Record Saved failure BootManagerController Title Не ўдалося захаваць зыходны Master Boot Record
-Old Master Boot Record saved BootManagerController Title Зыходны Master Boot Record захаваны
-Partition table not compatible BootManagerController Title Табліца раздзелаў несумяшчальная
-Partitions DefaultPartitionPage Pop up menu title Падзелы
+USB Drive DrivesPage Default disk name USB дыск
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Master Boot Record (MBR) прылады:\n\t%s\n зараз будзе запісаны на дыск. Калі ласка, абярыце файл для захавання MBR. \n\nКалі пры ўстаноўцы нешта пойдзе не так, або вы пажадаеце выдаліць меню загрузкі пазней, проста запусціце праграму загрузчыка (bootman) і абярыце опцыю "Выдаліць".
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Master Boot Record (MBR) дыска %disk зараз будзе адноўлены з выкарыстаннем раней захаванай копіі змешчанай ў файле %file. Жадаеце аднавіць Master Boot Record?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Падчас запісу меню запуску на дыск адбылася памылка. Магчыма, што Master Boot Record можа быць пашкоджаны. Каб пазбегнуць праблем аднавіце MBR!
Partitions PartitionsPage Title Падзелы
+Timeout: %s DefaultPartitionPage Запусціць: %s
+Select FileSelectionPage Button Абраць
+Cannot access! DrivesPage Cannot install Няма доступу!
+Uninstall boot manager BootManagerController Title Выдаліць Менеджэр Запуску
+After four seconds DefaultPartitionPage Праз чатыры секунды
+Uninstallation of boot menu failed BootManagerController Title Памылка. Выдаленне меню запуску не ўдалося.
Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Калі ласка, азначце файл, з якога будзе адноўлены MBR. Гэта файл, створаны пры першай ўстаноўцы менеджэра запуску.
-Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Калі ласка, азначце файл, з якога будзе адноўлены MBR. Гэта файл, створаны пры першай ўстаноўцы менеджэра запуску.
+Next WizardView Button Далей
+Uninstallation of boot menu completed BootManagerController Title Выдаленне меню запуску завершана
Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Калі ласка пазначце дыск на які вы збіраецеся усталяваць ці выдаліць мэнэджэр запуску.
Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Калі ласка, вызначце падзел па змоўчанню і таймаут.\nСістэма на падзеле па змоўчанню будзе запушчана пасля таймауту, калі вы не абераце іншы раздзел. Вы таксама можаце ўказаць загрузчыку чакаць вашага выбара.\nТрымайце націснутай клавішу 'ALT', каб спыніць адлік у час запуску.
-Previous WizardView Button Папярэдняе
-Quit DrivesPage Button Выйсці
-Restore MBR BootManagerController Button Аднавіць MBR
-Select FileSelectionPage Button Абраць
-Summary BootManagerController Title Падрахунак
-The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Master Boot Record (MBR) прылады:\n\t%s\n зараз будзе запісаны на дыск. Калі ласка, абярыце файл для захавання MBR. \n\nКалі пры ўстаноўцы нешта пойдзе не так, або вы пажадаеце выдаліць меню загрузкі пазней, проста запусціце праграму загрузчыка (bootman) і абярыце опцыю "Выдаліць".
-The Master Boot Record could not be restored! BootManagerController Не ўдалося аднавіць табліцу падзелаў!
-The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Загрузачны запіс (MBR) устройства (%DISK) паспяхова адноулены з файла %FILE
-The boot manager has been successfully installed on your system. BootManagerController Менеджэр запуску быў паспяхова ўсталяваны на вашу сістэму.
-The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Былі найдзеныя наступныя падзелы. Калі ласка, адзначце падзелы, якія будуць уключаны ў меню запуску. Вы таксама можаце ўказаць пажаданыя назвы падзелаў для меню.
-The old Master Boot Record could not be saved to %s BootManagerController Немагчыма захаваць зыходную копію Master Boot Record у файле %s
-The old Master Boot Record was successfully saved to %s. BootManagerController Зыходны Master Boot Record паспяхова захаваны ў %s.
+After one second DefaultPartitionPage Праз адну секунду
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Табліца падзелаў першага дыска несумяшчальная з Менеджерам Запуску.\nМенеджэру Запуску неабходна 2KB свабоднага месца перад першым падзелам.
-Timeout: %s DefaultPartitionPage Запусціць: %s
-USB Drive DrivesPage Default disk name USB дыск
-Uninstall DrivesPage Button Выдаліць
-Uninstall Boot Manager UninstallPage Title Выдаліць Менеджэр Запуску
-Uninstall boot manager BootManagerController Title Выдаліць Менеджэр Запуску
-Uninstallation of boot menu completed BootManagerController Title Выдаленне меню запуску завершана
-Uninstallation of boot menu failed BootManagerController Title Памылка. Выдаленне меню запуску не ўдалося.
-Unknown LegacyBootMenu Text is shown for an unknown partition type Невядома
-Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Bez nazvy %d
-Update DrivesPage Button Абнавіць
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Былі найдзеныя наступныя падзелы. Калі ласка, адзначце падзелы, якія будуць уключаны ў меню запуску. Вы таксама можаце ўказаць пажаданыя назвы падзелаў для меню.
+After one minute DefaultPartitionPage Праз адну хвіліну
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Загрузачны запіс (MBR) устройства (%DISK) паспяхова адноулены з файла %FILE
Write boot menu BootManagerController Button Запісаць меню запуску на дыск
+The Master Boot Record could not be restored! BootManagerController Не ўдалося аднавіць табліцу падзелаў!
+Uninstall DrivesPage Button Выдаліць
+Default Partition DefaultPartitionPage Title Прадвызначаны падзел
+After five seconds DefaultPartitionPage Праз пяць секунд
+Back BootManagerController Button Назад
+Installation of boot menu completed BootManagerController Title Устаноўка меню запуску скончаная.
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Bez nazvy %d
+File: FileSelectionPage Text control label Файл:
+Previous WizardView Button Папярэдняе
+Install DrivesPage Button Усталяваць
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Гатовы запісаць наступнае меню запуску на ўстройства (%s). Калі ласка, праверце інфармацыю ніжэй перад тым, як працягваць.
+Unknown LegacyBootMenu Text is shown for an unknown partition type Невядома
+Update DrivesPage Button Абнавіць
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Калі ласка, азначце файл, з якога будзе адноўлены MBR. Гэта файл, створаны пры першай ўстаноўцы менеджэра запуску.
+Old Master Boot Record Saved failure BootManagerController Title Не ўдалося захаваць зыходны Master Boot Record
+Drives DrivesPage Title Дыскі
+No space available! DrivesPage Cannot install Недастаткова месца!
+Never DefaultPartitionPage Ніколі
+Partition table not compatible BootManagerController Title Табліца раздзелаў несумяшчальная
+Old Master Boot Record saved BootManagerController Title Зыходны Master Boot Record захаваны
+Boot Manager is unable to read the partition table! BootManagerController Менеджер Запуску не можа прачытаць табліцу раздзелаў!
+Error reading partition table BootManagerController Title Памылка пры чытанні табліцы падзелаў
+Installation of boot menu failed BootManagerController Title Устаноўка загрузачнага меню не ўдалася
+Backup Master Boot Record BootManagerController Title Захаваць рэзервовую копію Master Boot Record
+Quit DrivesPage Button Выйсці
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Гатовы запісаць меню запуску на дыск. Вы сапраўды жадаеце працягваць?
+The old Master Boot Record was successfully saved to %s. BootManagerController Зыходны Master Boot Record паспяхова захаваны ў %s.
+Default Partition: DefaultPartitionPage Menu field label Прадвызначаны падзел:
+Partitions DefaultPartitionPage Pop up menu title Падзелы
+BootManager System name Мэнэджэр Загрузкі
+Summary BootManagerController Title Падрахунак
+OK BootManagerController Button ОК
+Immediately DefaultPartitionPage Неадкладна
+Done BootManagerController Button Зроблена
+After three seconds DefaultPartitionPage Праз тры секунды
diff --git a/data/catalogs/apps/bootmanager/de.catkeys b/data/catalogs/apps/bootmanager/de.catkeys
index 796eed002c..5598a5cddf 100644
--- a/data/catalogs/apps/bootmanager/de.catkeys
+++ b/data/catalogs/apps/bootmanager/de.catkeys
@@ -1,65 +1,65 @@
1 german x-vnd.Haiku-BootManager 3014946856
-About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Im nächsten Schritt wird der Master-Boot-Record (MBR) auf %disk aus der Sicherungsdatei %file wiederhergestellt. Wirklich fortfahren?
-About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Im nächsten Schritt wird das Bootmenü auf den Datenträger geschrieben. Wirklich fortfahren?
-About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Es wird nun das folgende Bootmenü auf das Laufwerk (%s) geschrieben. Die Einstellungen sollten vor dem nächsten Schritt noch einmal geprüft werden.
-After five seconds DefaultPartitionPage Nach fünf Sekunden
-After four seconds DefaultPartitionPage Nach vier Sekunden
-After one minute DefaultPartitionPage Nach einer Minute
-After one second DefaultPartitionPage Nach einer Sekunde
-After three seconds DefaultPartitionPage Nach drei Sekunden
-After two seconds DefaultPartitionPage Nach zwei Sekunden
-An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Beim Schreiben des Bootmenüs ist ein Fehler aufgetreten. Der Master-Boot-Record ist eventuell beschädigt. Der MBR sollte daher sofort wiederhergestellt werden!
-At least one partition must be selected! BootManagerController Es muss mindestens eine Partition ausgewählt werden!
-Back BootManagerController Button Zurück
-Backup Master Boot Record BootManagerController Title Backup des Master-Boot-Record erstellen
-Boot Manager is unable to read the partition table! BootManagerController BootManager kann die Partitionstabelle nicht auslesen!
-BootManager System name Bootmanager
-Cannot access! DrivesPage Cannot install Zugriff unmöglich!
-Default Partition DefaultPartitionPage Title Standard-Partition
-Default Partition: DefaultPartitionPage Menu field label Standard-Partition
-Done BootManagerController Button Fertig
-Drives DrivesPage Title Laufwerke
-Error reading partition table BootManagerController Title Fehler beim Lesen der Partitionstabelle
-File: FileSelectionPage Text control label Datei:
-Hard Drive DrivesPage Default disk name Festplatte
-Immediately DefaultPartitionPage Sofort
-Install DrivesPage Button Installieren
-Installation of boot menu completed BootManagerController Title Installation des Bootmenüs abgeschlossen
-Installation of boot menu failed BootManagerController Title Installation des Bootmenüs fehlgeschlagen
-Never DefaultPartitionPage Niemals
-Next WizardView Button Weiter
-No space available! DrivesPage Cannot install Kein Speicher verfügbar!
-OK BootManagerController Button OK
-Old Master Boot Record Saved failure BootManagerController Title Fehler beim Sichern des alten Master-Boot-Record
-Old Master Boot Record saved BootManagerController Title Alter Master-Boot-Record gespeichert
-Partition table not compatible BootManagerController Title Partitionstabelle nicht kompatibel
-Partitions DefaultPartitionPage Pop up menu title Partitionen
-Partitions PartitionsPage Title Partitionen
-Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Es muss eine Sicherungsdatei mit dem Master-Boot-Record (MBR) angegeben werden, der für die Wiederherstellung verwendet werden soll. Diese Datei wurde erstellt, als das Bootmenü das erste Mal installiert wurde.
-Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Es muss eine Sicherungsdatei mit dem Master-Boot-Record (MBR) angegeben werden, der für die Wiederherstellung verwendet werden soll. Diese Datei wurde erstellt, als das Bootmenü das erste Mal installiert wurde.
-Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Es muss ein Laufwerk ausgewählt werden, auf dem der Bootmanager eingerichtet oder entfernt werden kann.
-Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Es muss eine Standard-Partition und ein Zeitlimit angegeben werden.\nDas Bootmenü wird die Standard-Partition nach Ablauf der Zeitbegrenzung laden, sofern keine andere Partition gewählt wird. Es ist auch möglich, das Bootmenü unbegrenzt auf eine bestimmte Auswahl warten zu lassen.\nWenn beim Start die ALT-Taste gedrückt gehalten wird, deaktiviert sich die Zeitbegrenzung.
-Previous WizardView Button Zurück
-Quit DrivesPage Button Beenden
-Restore MBR BootManagerController Button MBR wiederherstellen
-Select FileSelectionPage Button Auswählen
-Summary BootManagerController Title Zusammenfassung
-The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Der Master-Boot-Record (MBR) des Bootmediums \n\t%s\n wird nun gesichert.\n\nSollte die Installation fehlschlagen oder soll das Bootmenü wieder entfernt werden, kann BootManager erneut ausgeführt und die Option 'Entfernen' gewählt werden.
-The Master Boot Record could not be restored! BootManagerController Der Master-Boot-Record konnte nicht wiederhergestellt werden!
-The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Der Master-Boot-Record des Bootlaufwerks (%s) wurde erfolgreich aus der Sicherungsdatei %s wiederhergestellt.
The boot manager has been successfully installed on your system. BootManagerController Das Bootmenü wurde erfolgreich auf dem System eingerichtet.
-The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Die folgenden Partitionen wurden erkannt. Die Partitionen, die im Bootmenü erscheinen sollen, müssen nun ausgewählt werden. Außerdem können die Partitionen so benannt werden, wie sie im Menü erscheinen sollen.
-The old Master Boot Record could not be saved to %s BootManagerController Der alte Master-Boot-Record konnte nicht unter %s gespeichert werden.
-The old Master Boot Record was successfully saved to %s. BootManagerController Der vorherige Master-Boot-Record (MBR) wurde unter %s gespeichert.
-The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Die Partitionstabelle auf der ersten Festplatte ist nicht mit dem Bootmenü kompatibel.\nDas Bootmenü benötigt 2 KB freien Speicher vor der ersten Partition.
-Timeout: %s DefaultPartitionPage Zeitlimit: %s
-USB Drive DrivesPage Default disk name USB-Laufwerk
-Uninstall DrivesPage Button Entfernen
+After two seconds DefaultPartitionPage Nach zwei Sekunden
Uninstall Boot Manager UninstallPage Title Bootmenü entfernen
+At least one partition must be selected! BootManagerController Es muss mindestens eine Partition ausgewählt werden!
+The old Master Boot Record could not be saved to %s BootManagerController Der alte Master-Boot-Record konnte nicht unter %s gespeichert werden.
+Restore MBR BootManagerController Button MBR wiederherstellen
+Hard Drive DrivesPage Default disk name Festplatte
+USB Drive DrivesPage Default disk name USB-Laufwerk
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Der Master-Boot-Record (MBR) des Bootmediums \n\t%s\n wird nun gesichert.\n\nSollte die Installation fehlschlagen oder soll das Bootmenü wieder entfernt werden, kann BootManager erneut ausgeführt und die Option 'Entfernen' gewählt werden.
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Im nächsten Schritt wird der Master-Boot-Record (MBR) auf %disk aus der Sicherungsdatei %file wiederhergestellt. Wirklich fortfahren?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Beim Schreiben des Bootmenüs ist ein Fehler aufgetreten. Der Master-Boot-Record ist eventuell beschädigt. Der MBR sollte daher sofort wiederhergestellt werden!
+Partitions PartitionsPage Title Partitionen
+Timeout: %s DefaultPartitionPage Zeitlimit: %s
+Select FileSelectionPage Button Auswählen
+Cannot access! DrivesPage Cannot install Zugriff unmöglich!
Uninstall boot manager BootManagerController Title Bootmenü entfernen
-Uninstallation of boot menu completed BootManagerController Title Entfernen des Bootmenüs abgeschlossen.
+After four seconds DefaultPartitionPage Nach vier Sekunden
Uninstallation of boot menu failed BootManagerController Title Entfernen des Bootmenüs fehlgeschlagen
-Unknown LegacyBootMenu Text is shown for an unknown partition type Unbekannt
-Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Unbenannte %d
-Update DrivesPage Button Aktualisieren
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Es muss eine Sicherungsdatei mit dem Master-Boot-Record (MBR) angegeben werden, der für die Wiederherstellung verwendet werden soll. Diese Datei wurde erstellt, als das Bootmenü das erste Mal installiert wurde.
+Next WizardView Button Weiter
+Uninstallation of boot menu completed BootManagerController Title Entfernen des Bootmenüs abgeschlossen.
+Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Es muss ein Laufwerk ausgewählt werden, auf dem der Bootmanager eingerichtet oder entfernt werden kann.
+Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Es muss eine Standard-Partition und ein Zeitlimit angegeben werden.\nDas Bootmenü wird die Standard-Partition nach Ablauf der Zeitbegrenzung laden, sofern keine andere gewählt wird. Es ist auch möglich, das Bootmenü unbegrenzt auf eine bestimmte Auswahl warten zu lassen.\nWenn beim Start die ALT-Taste gedrückt gehalten wird, deaktiviert sich die Zeitbegrenzung.
+After one second DefaultPartitionPage Nach einer Sekunde
+The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Die Partitionstabelle auf der ersten Festplatte ist nicht mit dem Bootmenü kompatibel.\nDas Bootmenü benötigt 2 KiB freien Speicher vor der ersten Partition.
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Die folgenden Partitionen wurden erkannt. Nun müssen die Partitionen ausgewählt werden, die im Bootmenü erscheinen sollen. Außerdem können sie so benannt werden, wie sie später im Menü erscheinen sollen.
+After one minute DefaultPartitionPage Nach einer Minute
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Der Master-Boot-Record des Bootlaufwerks (%s) wurde erfolgreich aus der Sicherungsdatei %s wiederhergestellt.
Write boot menu BootManagerController Button Bootmenü schreiben
+The Master Boot Record could not be restored! BootManagerController Der Master-Boot-Record konnte nicht wiederhergestellt werden!
+Uninstall DrivesPage Button Entfernen
+Default Partition DefaultPartitionPage Title Standard-Partition
+After five seconds DefaultPartitionPage Nach fünf Sekunden
+Back BootManagerController Button Zurück
+Installation of boot menu completed BootManagerController Title Installation des Bootmenüs abgeschlossen
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Unbenannt %d
+File: FileSelectionPage Text control label Datei:
+Previous WizardView Button Zurück
+Install DrivesPage Button Installieren
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Es wird nun das folgende Bootmenü auf das Laufwerk (%s) geschrieben. Die Einstellungen sollten vor dem nächsten Schritt noch einmal geprüft werden.
+Unknown LegacyBootMenu Text is shown for an unknown partition type Unbekannt
+Update DrivesPage Button Aktualisieren
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Es muss eine Sicherungsdatei mit dem Master-Boot-Record (MBR) angegeben werden, der für die Wiederherstellung verwendet werden soll. Diese Datei wurde erstellt, als das Bootmenü das erste Mal installiert wurde.
+Old Master Boot Record Saved failure BootManagerController Title Fehler beim Sichern des alten Master-Boot-Record
+Drives DrivesPage Title Laufwerke
+No space available! DrivesPage Cannot install Kein Speicher verfügbar!
+Never DefaultPartitionPage Nie
+Partition table not compatible BootManagerController Title Partitionstabelle nicht kompatibel
+Old Master Boot Record saved BootManagerController Title Alter Master-Boot-Record wurde gespeichert
+Boot Manager is unable to read the partition table! BootManagerController BootManager kann die Partitionstabelle nicht auslesen!
+Error reading partition table BootManagerController Title Fehler beim Lesen der Partitionstabelle
+Installation of boot menu failed BootManagerController Title Installation des Bootmenüs fehlgeschlagen
+Backup Master Boot Record BootManagerController Title Backup des Master-Boot-Record erstellen
+Quit DrivesPage Button Beenden
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Im nächsten Schritt wird das Bootmenü auf den Datenträger geschrieben. Wirklich fortfahren?
+The old Master Boot Record was successfully saved to %s. BootManagerController Der vorherige Master-Boot-Record (MBR) wurde unter %s gespeichert.
+Default Partition: DefaultPartitionPage Menu field label Standard-Partition
+Partitions DefaultPartitionPage Pop up menu title Partitionen
+BootManager System name Bootmanager
+Summary BootManagerController Title Zusammenfassung
+OK BootManagerController Button OK
+Immediately DefaultPartitionPage Sofort
+Done BootManagerController Button Fertig
+After three seconds DefaultPartitionPage Nach drei Sekunden
diff --git a/data/catalogs/apps/bootmanager/hr.catkeys b/data/catalogs/apps/bootmanager/hr.catkeys
new file mode 100644
index 0000000000..8ac74f9c54
--- /dev/null
+++ b/data/catalogs/apps/bootmanager/hr.catkeys
@@ -0,0 +1,37 @@
+1 croatian x-vnd.Haiku-BootManager 522739330
+After five seconds DefaultPartitionPage Nakon pet sekundi
+After four seconds DefaultPartitionPage Nakon četiri sekunde
+After one minute DefaultPartitionPage Nakon jedne minute
+After one second DefaultPartitionPage Nakon jedne sekunde
+After three seconds DefaultPartitionPage Nakon tri sekunde
+After two seconds DefaultPartitionPage Nakon dvije sekunde
+At least one partition must be selected! BootManagerController Barem jedna particija mora biti odabrana!
+Back BootManagerController Button Natrag
+Boot Manager is unable to read the partition table! BootManagerController Upravitelj podizanja sustava ne može čitati particijsku tablicu!
+BootManager System name Upravitelj podizanja sustava
+Default Partition DefaultPartitionPage Title Zadana particija
+Default Partition: DefaultPartitionPage Menu field label Zadana particija:
+Done BootManagerController Button Učinjeno
+Drives DrivesPage Title Pogoni
+Error reading partition table BootManagerController Title Greška pri čitanju particijske tablice
+File: FileSelectionPage Text control label Datoteka:
+Immediately DefaultPartitionPage Odmah
+Install DrivesPage Button Instaliraj
+Installation of boot menu completed BootManagerController Title Završena instalacija upravitelja podizanja sustava
+Next WizardView Button Slijedeće
+No space available! DrivesPage Cannot install Nema dostupnog prostora
+OK BootManagerController Button U redu
+Partitions DefaultPartitionPage Pop up menu title Particije
+Partitions PartitionsPage Title Particije
+Previous WizardView Button Prethodno
+Quit DrivesPage Button Isključi
+Select FileSelectionPage Button Odaberi
+The boot manager has been successfully installed on your system. BootManagerController Upravitelj podizanja sustava uspješno je instaliran u vaš sustav.
+The old Master Boot Record could not be saved to %s BootManagerController Stari Master Boot Record ne može se spremiti u %s
+Uninstall DrivesPage Button Deinstaliraj
+Uninstall Boot Manager UninstallPage Title Deinstaliraj Upravitelj podizanja sustava
+Uninstall boot manager BootManagerController Title Deinstaliraj upravitelja podizanja sustava
+Uninstallation of boot menu failed BootManagerController Title Neuspjela deinstalacija upravitelja podizanja sustava
+Unknown LegacyBootMenu Text is shown for an unknown partition type Nepoznato
+Update DrivesPage Button Dopune
+Write boot menu BootManagerController Button Zapiši izbornik podizanja sustava
diff --git a/data/catalogs/apps/bootmanager/lt.catkeys b/data/catalogs/apps/bootmanager/lt.catkeys
new file mode 100644
index 0000000000..efdb0c4667
--- /dev/null
+++ b/data/catalogs/apps/bootmanager/lt.catkeys
@@ -0,0 +1,65 @@
+1 lithuanian x-vnd.Haiku-BootManager 3014946856
+The boot manager has been successfully installed on your system. BootManagerController Paleidyklė sėkmingai įdiegta į šią sistemą.
+After two seconds DefaultPartitionPage dvi sekundės
+Uninstall Boot Manager UninstallPage Title Paleidyklės šalinimas
+At least one partition must be selected! BootManagerController Privalote pasirinkti bent vieną skaidinį!
+The old Master Boot Record could not be saved to %s BootManagerController Senojo paleidimo įrašo kopijos nepavyko įrašyti į failą „%s“
+Restore MBR BootManagerController Button Atkurti paleidimo įrašą
+Hard Drive DrivesPage Default disk name Standusis diskas
+USB Drive DrivesPage Default disk name USB laikmena
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Paleidimo įrašo (MBR), esančio paleidimo įrenginyje:\n\t%s\natsarginė kopija dabar bus įrašyta į diską. Pasirinkite failą, į kurį norite įrašyti šią kopiją.\n\nJeigu paleidyklės diegimo metu iškils nenumatytų problemų, arba jeigu vėliau norėsite paleidyklės meniu pašalinti, tiesiog paleiskite šią programą vėl ir pasirinkite punktą „Šalinti“.
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Ketinama atkurti disko %disk paleidimo įrašą (MBR) iš failo %file. Ar norite tęsti?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Įrašant paleidimo meniu, įvyko klaida. Gali būti, kad buvo pažeistas paleidimo įrašas (MBR). Dabar patartina atkurti paleidimo įrašą.
+Partitions PartitionsPage Title Skaidiniai
+Timeout: %s DefaultPartitionPage Laukimo laikas: %s
+Select FileSelectionPage Button Parinkti
+Cannot access! DrivesPage Cannot install Prieiga negalima!
+Uninstall boot manager BootManagerController Title Paleidyklės šalinimas
+After four seconds DefaultPartitionPage keturios sekundės
+Uninstallation of boot menu failed BootManagerController Title Paleidyklės meniu pašalinti nepavyko
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Parinkite failą su atsargine paleidimo įrašo (MBR) kopija atkūrimui. Šis failas turėjo būti sukurtas pirmąkart įdiegiant paleidyklę.
+Next WizardView Button Toliau
+Uninstallation of boot menu completed BootManagerController Title Paleidyklės meniu šalinimas baigtas
+Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Pasirinkite kaupiklį, į kurį norite įdiegti (arba iš kurio pašalinti) paleidyklę.
+Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Parinkite numatytąjį skaidinį ir laukimo laiką.\nPasibaigus laukimo laikui, paleidyklė automatiškai paleis numatytąjį skirsnį, jeigu nebus pasirinktas joks kitas. Jeigu norite, galite pasirinkti, kad paleidyklė skirsnio pasirinkimo lauktų neribotą laiką.\nJeigu sistemos įkėlimo metu laikysite nuspaudę Alt klavišą, tam kartui laukimo laikas bus neribotas.
+After one second DefaultPartitionPage viena sekundė
+The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Pirmojo standaus disko skaidinių lentelė nesuderinama su šia Paleidykle.\nPaleidyklei reikia bent 2 KB laisvos disko vietos prieš pirmojo skaidinio pradžią.
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Aptikti žemiau išvardyti skaidiniai. Pažymėkite skaidinius, kuriuos norite matyti paleidyklės meniu. Taip pat galite nurodyti tokius skaidinių pavadinimus, kokius norite matyti paleidyklės meniu.
+After one minute DefaultPartitionPage viena minutė
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Paleidimo įrenginio (%DISK) paleidimo įrašas sėkmingai atkurtas iš failo %FILE.
+Write boot menu BootManagerController Button Įrašyti paleidyklę
+The Master Boot Record could not be restored! BootManagerController Paleidimo įrašo atkurti nepavyko!
+Uninstall DrivesPage Button Šalinti
+Default Partition DefaultPartitionPage Title Numatytasis skaidinys
+After five seconds DefaultPartitionPage penkios sekundės
+Back BootManagerController Button Grįžti
+Installation of boot menu completed BootManagerController Title Paleidyklės meniu įdiegimas baigtas
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Neįvardintas %d
+File: FileSelectionPage Text control label Failas:
+Previous WizardView Button Atgal
+Install DrivesPage Button Įdiegti
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Žemiau pavaizduotą paleidyklės meniu ketinama įrašyti į paleidimo diską (%s). Prieš tęsdami, dar kartą patikrinkite informaciją.
+Unknown LegacyBootMenu Text is shown for an unknown partition type tipas nežinomas
+Update DrivesPage Button Atnaujinti
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Parinkite failą su atsargine paleidimo įrašo (MBR) kopija atkūrimui. Šis failas turėjo būti sukurtas pirmąkart įdiegiant paleidyklę.
+Old Master Boot Record Saved failure BootManagerController Title Esamo paleidimo įrašo kopija neįrašyta
+Drives DrivesPage Title Kaupikliai
+No space available! DrivesPage Cannot install Nepakanka laisvos vietos!
+Never DefaultPartitionPage Neribotas
+Partition table not compatible BootManagerController Title Nesuderinama skaidinių lentelė
+Old Master Boot Record saved BootManagerController Title Esamo paleidimo įrašo kopija įrašyta
+Boot Manager is unable to read the partition table! BootManagerController Paleidyklei nepavyko perskaityti skaidinių lentelės!
+Error reading partition table BootManagerController Title Klaida skaitant skaidinių lentelę
+Installation of boot menu failed BootManagerController Title Paleidimo meniu įdiegti nepavyko
+Backup Master Boot Record BootManagerController Title Esamo paleidimo įrašo atsarginė kopija
+Quit DrivesPage Button Baigti darbą
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Paleidyklė bus įrašyta į diską. Ar tikrai norite tęsti?
+The old Master Boot Record was successfully saved to %s. BootManagerController Esamo paleidimo įrašo kopija sėkmingai įrašyta į failą %s.
+Default Partition: DefaultPartitionPage Menu field label Numatytasis skaidinys:
+Partitions DefaultPartitionPage Pop up menu title Skaidiniai
+BootManager System name Paleidyklė
+Summary BootManagerController Title Suvestinė
+OK BootManagerController Button Gerai
+Immediately DefaultPartitionPage Nelaukti
+Done BootManagerController Button Atlikta
+After three seconds DefaultPartitionPage trys sekundės
diff --git a/data/catalogs/apps/bootmanager/nl.catkeys b/data/catalogs/apps/bootmanager/nl.catkeys
new file mode 100644
index 0000000000..c91f39e5ac
--- /dev/null
+++ b/data/catalogs/apps/bootmanager/nl.catkeys
@@ -0,0 +1,65 @@
+1 dutch; flemish x-vnd.Haiku-BootManager 3014946856
+The boot manager has been successfully installed on your system. BootManagerController De bootmanager is met succes op uw systeem geïnstalleerd.
+After two seconds DefaultPartitionPage Na twee seconden
+Uninstall Boot Manager UninstallPage Title Boot Manager verwijderen
+At least one partition must be selected! BootManagerController Er moet tenminste één partitie geselecteerd worden!
+The old Master Boot Record could not be saved to %s BootManagerController De oude Master Boot Record kon niet in %s worden opgeslagen.
+Restore MBR BootManagerController Button MBR herstellen
+Hard Drive DrivesPage Default disk name Harde Schijf
+USB Drive DrivesPage Default disk name USB-schijf
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Het Master Boot Record (MBR) van het opstartapparaat:\n\t%s\nwordt nu opgeslagen op de schijf. Selecteerd a.u.b. een map om de MRB in op te slaan.\n\nAls er iets misgaat met de installatie of als je later het opstartmenu wilt verwijderen, open simpelweg het bootman programma en kies de 'Verwijderen' optie.
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Op het punt om het Master Boot Record (MBR) van %disk vanuit %file te herstellen. Wilt u doorgaan?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Er is een fout opgetreden bij het schrijven van het boot-menu. De Master Boot Record zou kunnen worden vernietigd, daarom moet u de MBR nu herstellen!
+Partitions PartitionsPage Title Partities
+Timeout: %s DefaultPartitionPage Tijdslimiet: %s
+Select FileSelectionPage Button Kiezen
+Cannot access! DrivesPage Cannot install Kan geen toegang krijgen!
+Uninstall boot manager BootManagerController Title Boot manager verwijderen
+After four seconds DefaultPartitionPage Na vier seconden
+Uninstallation of boot menu failed BootManagerController Title Verwijderen van opstartmenu is mislukt
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Gelieve de bestandsmap van het Master Boot Record (MBR) te kiezen om van te herstellen. Dit is de map die is gemaakt toen de boot manager voor het eerst werd geïnstalleerd.
+Next WizardView Button Volgende
+Uninstallation of boot menu completed BootManagerController Title Verwijderen van het opstartmenu is afgerond
+Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Selecteer a.u.b de schijf waar je de boot manager op wilt installeren of van verwijderen.
+Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Geef a.u.b een standaard partititie en een time-out.\nHet opstart menu laadt de standaard partitie na de time-out tenzij je een andere parititie selecteert. Je kan ook het opstartmenu laten wachten op jou om een partitie te selecteren\nHoud de 'ALT' toets ingedrukt om de time-out uit te schakelen tijdens het opstarten.
+After one second DefaultPartitionPage Na een seconde
+The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController De partitietabel van de eerste harde schijf is niet compatiebel met Boot Manager.\nBoot Manager heeft 2KB vrije ruimte nodig voor de eerste partitie.
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage De volgende partities werden gedetecteerd. Gelieve het vakje naast de partities aan te vinken om opgenomen te worden in het opstartmenu. Je kan ook de namen van de partities aanpassen hoe jij ze wilt laten verschijnen in het opstartmenu.
+After one minute DefaultPartitionPage Na één minuut
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Het Master Boot Record van het opstartapparaat (%DISK) is succesvol hersteld vanuit %FILE.
+Write boot menu BootManagerController Button Opstartmenu schrijven
+The Master Boot Record could not be restored! BootManagerController Het Master Boot Record kon niet worden hersteld!
+Uninstall DrivesPage Button Verwijderen
+Default Partition DefaultPartitionPage Title Standaardpartitie
+After five seconds DefaultPartitionPage Na vijf seconden
+Back BootManagerController Button Terug
+Installation of boot menu completed BootManagerController Title Installatie van opstartmenu voltooid
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Naamloos %d
+File: FileSelectionPage Text control label Bestand:
+Previous WizardView Button Vorige
+Install DrivesPage Button Installeren
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Op het punt om het volgende opstart menu naar de opstartschijf (%s) te schrijven. Verifieer a.b. de informatie hieronder voordat je verder gaat.
+Unknown LegacyBootMenu Text is shown for an unknown partition type Onbekend
+Update DrivesPage Button Bijwerken
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Selecteer a.u.b. het Master Boot Record (MBR) bestan om van te herstellen. Dit is het bestand dat werd gecreeërd toen de boot-manager voor het eerst werd geïnstalleerd.
+Old Master Boot Record Saved failure BootManagerController Title Oude Master Boot Record opslaan mislukt
+Drives DrivesPage Title Schijven
+No space available! DrivesPage Cannot install Geen ruimte beschikbaar!
+Never DefaultPartitionPage Nooit
+Partition table not compatible BootManagerController Title Partitietabel niet compatibel
+Old Master Boot Record saved BootManagerController Title Oude Master Boot Record opgeslagen
+Boot Manager is unable to read the partition table! BootManagerController Boot Manager is niet in staan om de partitietabel te lezen!
+Error reading partition table BootManagerController Title Fout bij het lezen van partitietabel
+Installation of boot menu failed BootManagerController Title Installatie van opstartmenu mislukt
+Backup Master Boot Record BootManagerController Title Backup maken van Master Boot Record
+Quit DrivesPage Button Afsluiten
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Op het punt om het opstartmenu naar de schijf te schrijven. Ben je zeker dat je wilt doorgaan?
+The old Master Boot Record was successfully saved to %s. BootManagerController De oude Master Boot Record werd succesvol opgeslagen naar %s.
+Default Partition: DefaultPartitionPage Menu field label Standaardpartitie:
+Partitions DefaultPartitionPage Pop up menu title Partities
+BootManager System name BootManager
+Summary BootManagerController Title Overzicht
+OK BootManagerController Button Ok
+Immediately DefaultPartitionPage Onmiddellijk
+Done BootManagerController Button Gedaan
+After three seconds DefaultPartitionPage Na drie seconden
diff --git a/data/catalogs/apps/bootmanager/ru.catkeys b/data/catalogs/apps/bootmanager/ru.catkeys
index e74d8918c0..98eb5074ba 100644
--- a/data/catalogs/apps/bootmanager/ru.catkeys
+++ b/data/catalogs/apps/bootmanager/ru.catkeys
@@ -1,65 +1,65 @@
1 russian x-vnd.Haiku-BootManager 3014946856
-About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Все готово для восстановления загрузочной записи (MBR) раздела %disk из файла %file. Хотите продолжить?
-About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Все готово для записи загрузочного меню на диск. Вы уверены, что хотите продолжить?
-About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Все готово для записи загрузочного меню на загрузочный диск (%s). Пожалуйста, проверьте информацию ниже перед тем как продолжить.
-After five seconds DefaultPartitionPage 5 секунд
-After four seconds DefaultPartitionPage 4 секунды
-After one minute DefaultPartitionPage 1 минута
-After one second DefaultPartitionPage 1 секунда
-After three seconds DefaultPartitionPage 3 секунды
+The boot manager has been successfully installed on your system. BootManagerController Менеджер загрузки был успешно установлен.
After two seconds DefaultPartitionPage 2 секунды
-An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Произошла ошибка при записи загрузочного меню. Загрузочная запись (MBR) может быть повреждена. Вы должны восстановить её (MBR) прямо сейчас!
+Uninstall Boot Manager UninstallPage Title Удаление Менеджер Загрузки
At least one partition must be selected! BootManagerController Как минимум один раздел должен быть выбран!
-Back BootManagerController Button Назад
-Backup Master Boot Record BootManagerController Title Сохранить главную загрузочную запись (MBR)
-Boot Manager is unable to read the partition table! BootManagerController Менеджеру загрузки не удалось прочитать таблицу разделов!
-BootManager System name Менеджер загрузки
-Cannot access! DrivesPage Cannot install Невозможно получить доступ!
-Default Partition DefaultPartitionPage Title Раздел по умолчанию
-Default Partition: DefaultPartitionPage Menu field label Раздел по умолчанию:
-Done BootManagerController Button Готово
-Drives DrivesPage Title Диски
-Error reading partition table BootManagerController Title Ошибка чтения таблицы разделов
-File: FileSelectionPage Text control label Файл:
+The old Master Boot Record could not be saved to %s BootManagerController Предыдущая загрузочная запись (MBR) не может быть сохранена в %s
+Restore MBR BootManagerController Button Восстановить загрузочную запись (MBR)
Hard Drive DrivesPage Default disk name Жесткий диск
-Immediately DefaultPartitionPage Без ожидания
-Install DrivesPage Button Установить
-Installation of boot menu completed BootManagerController Title Установка загрузочного меню завершена
-Installation of boot menu failed BootManagerController Title Удаление загрузочного меню завершено
-Never DefaultPartitionPage бесконечно
-Next WizardView Button Далее
-No space available! DrivesPage Cannot install Невозможно записать MBR!
-OK BootManagerController Button ОК
-Old Master Boot Record Saved failure BootManagerController Title Предыдущая загрузочная запись (MBR) сохранена
-Old Master Boot Record saved BootManagerController Title Предыдущая загрузочная запись (MBR) сохранена
-Partition table not compatible BootManagerController Title Несовместимая таблица разделов
-Partitions DefaultPartitionPage Pop up menu title Разделы
+USB Drive DrivesPage Default disk name USB диск
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Загрузочная запись (MBR) устройства:\n\t%s\nсейчас будет записана на диск. Пожалуйста, выберите файл, в который будет сохранена загрузочная запись.\n\nЕсли что-то пойдет не так во время установки или если позже вы захотите удалить загрузочное меню, просто запустите программу Менеджер загрузки и нажмите кнопку 'Удалить.
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Все готово для восстановления загрузочной записи (MBR) раздела %disk из файла %file. Хотите продолжить?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Произошла ошибка при записи загрузочного меню. Загрузочная запись (MBR) может быть повреждена. Вы должны восстановить её (MBR) прямо сейчас!
Partitions PartitionsPage Title Разделы
+Timeout: %s DefaultPartitionPage Время ожидания: %s
+Select FileSelectionPage Button Выбрать
+Cannot access! DrivesPage Cannot install Невозможно получить доступ!
+Uninstall boot manager BootManagerController Title Удалить менеджер загрузки
+After four seconds DefaultPartitionPage 4 секунды
+Uninstallation of boot menu failed BootManagerController Title Не удалось удалить загрузочное меню
Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Пожалуйста, выберите файл, содержащий загрузочную запись (MBR) для восстановления. Этот файл был создан при первой установке менеджера загрузки.
-Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Пожалуйста, выберите файл, содержащий главную загрузочную запись (MBR) для восстановления. Этот файл был создан при первой установке менеджера загрузки.
+Next WizardView Button Далее
+Uninstallation of boot menu completed BootManagerController Title Удаление загрузочного меню завершено
Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Пожалуйста, выберите диск, на который вы хотите установить или с которого вы хотите удалить менеджер загрузки.
Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Пожалуйста, укажите раздел по умолчанию и время ожидания.\nЗагрузочное меню передаст управление этому разделу по истечении времени ожидания, если только вы не выберите другой раздел.\nЗажмите клавишу 'ALT' при загрузке для отключения ожидания.
-Previous WizardView Button Назад
-Quit DrivesPage Button Выход
-Restore MBR BootManagerController Button Восстановить загрузочную запись (MBR)
-Select FileSelectionPage Button Выбрать
-Summary BootManagerController Title Итог
-The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController Загрузочная запись (MBR) устройства:\n\t%s\nсейчас будет записана на диск. Пожалуйста, выберите файл, в который будет сохранена загрузочная запись.\n\nЕсли что-то пойдет не так во время установки или если позже вы захотите удалить загрузочное меню, просто запустите программу Менеджер загрузки и нажмите кнопку 'Удалить.
-The Master Boot Record could not be restored! BootManagerController Невозможно восстановить загрузочную запись (MBR)!
-The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Загрузочная запись (MBR) устройства (%DISK) была успешна восстановлена из файла %s.
-The boot manager has been successfully installed on your system. BootManagerController Менеджер загрузки был успешно установлен.
-The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Были обнаружены следующие разделы. Пожалуйста, отметьте разделы, которые должны отображаться в загрузочном меню. Вы также можете присвоить имена разделам, которые будут отображаться в этом меню.
-The old Master Boot Record could not be saved to %s BootManagerController Предыдущая загрузочная запись (MBR) не может быть сохранена в %s
-The old Master Boot Record was successfully saved to %s. BootManagerController Предыдущая загрузочная запись (MBR) была успешна сохранена в %s.
+After one second DefaultPartitionPage 1 секунда
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Таблица разделов первого жесткого диска несовместима с менеджером загрузки.\nМенеджеру загрузки требуется 2 Кбайт свободного места перед первым разделом.
-Timeout: %s DefaultPartitionPage Время ожидания: %s
-USB Drive DrivesPage Default disk name USB диск
-Uninstall DrivesPage Button Удалить
-Uninstall Boot Manager UninstallPage Title Удаление Менеджер Загрузки
-Uninstall boot manager BootManagerController Title Удалить менеджер загрузки
-Uninstallation of boot menu completed BootManagerController Title Удаление загрузочного меню завершено
-Uninstallation of boot menu failed BootManagerController Title Не удалось удалить загрузочное меню
-Unknown LegacyBootMenu Text is shown for an unknown partition type Неизвестная файловая система
-Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Unnamed %d
-Update DrivesPage Button Обновить
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Были обнаружены следующие разделы. Пожалуйста, отметьте разделы, которые должны отображаться в загрузочном меню. Вы также можете присвоить имена разделам, которые будут отображаться в этом меню.
+After one minute DefaultPartitionPage 1 минута
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController Загрузочная запись (MBR) устройства (%DISK) была успешна восстановлена из файла %s.
Write boot menu BootManagerController Button Записать загрузочное меню
+The Master Boot Record could not be restored! BootManagerController Невозможно восстановить загрузочную запись (MBR)!
+Uninstall DrivesPage Button Удалить
+Default Partition DefaultPartitionPage Title Раздел по умолчанию
+After five seconds DefaultPartitionPage 5 секунд
+Back BootManagerController Button Назад
+Installation of boot menu completed BootManagerController Title Установка загрузочного меню завершена
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Unnamed %d
+File: FileSelectionPage Text control label Файл:
+Previous WizardView Button Назад
+Install DrivesPage Button Установить
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Все готово для записи загрузочного меню на загрузочный диск (%s). Пожалуйста, проверьте информацию ниже перед тем как продолжить.
+Unknown LegacyBootMenu Text is shown for an unknown partition type Неизвестная файловая система
+Update DrivesPage Button Обновить
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Пожалуйста, выберите файл, содержащий главную загрузочную запись (MBR) для восстановления. Этот файл был создан при первой установке менеджера загрузки.
+Old Master Boot Record Saved failure BootManagerController Title Предыдущая загрузочная запись (MBR) сохранена
+Drives DrivesPage Title Диски
+No space available! DrivesPage Cannot install Невозможно записать MBR!
+Never DefaultPartitionPage бесконечно
+Partition table not compatible BootManagerController Title Несовместимая таблица разделов
+Old Master Boot Record saved BootManagerController Title Предыдущая загрузочная запись (MBR) сохранена
+Boot Manager is unable to read the partition table! BootManagerController Менеджеру загрузки не удалось прочитать таблицу разделов!
+Error reading partition table BootManagerController Title Ошибка чтения таблицы разделов
+Installation of boot menu failed BootManagerController Title Удаление загрузочного меню завершено
+Backup Master Boot Record BootManagerController Title Сохранить главную загрузочную запись (MBR)
+Quit DrivesPage Button Выход
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Все готово для записи загрузочного меню на диск. Вы уверены, что хотите продолжить?
+The old Master Boot Record was successfully saved to %s. BootManagerController Предыдущая загрузочная запись (MBR) была успешна сохранена в %s.
+Default Partition: DefaultPartitionPage Menu field label Раздел по умолчанию:
+Partitions DefaultPartitionPage Pop up menu title Разделы
+BootManager System name Менеджер загрузки
+Summary BootManagerController Title Итог
+OK BootManagerController Button ОК
+Immediately DefaultPartitionPage Без ожидания
+Done BootManagerController Button Готово
+After three seconds DefaultPartitionPage 3 секунды
diff --git a/data/catalogs/apps/bootmanager/sk.catkeys b/data/catalogs/apps/bootmanager/sk.catkeys
index cc79a3f234..ce80b1ce7f 100644
--- a/data/catalogs/apps/bootmanager/sk.catkeys
+++ b/data/catalogs/apps/bootmanager/sk.catkeys
@@ -1,65 +1,65 @@
1 slovak x-vnd.Haiku-BootManager 3014946856
-About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Chystáte sa obnoviť MBR disku %disk zo súboru %file. Chcete pokračovať?
-About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Chystá sa zápis menu zavádzača na disk. Ste si istý, že chcete pokračovať?
-About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Chystá sa zápis nasledovného menu zavádzača na zavádzací disk (%s). Prosím, overte nasledovné informácie predtým, než budete pokračovať.
-After five seconds DefaultPartitionPage Po piatich sekundách
-After four seconds DefaultPartitionPage Po štyroch sekundách
-After one minute DefaultPartitionPage Po jednej minúte
-After one second DefaultPartitionPage Po jednej sekunde
-After three seconds DefaultPartitionPage Po troch sekundách
+The boot manager has been successfully installed on your system. BootManagerController Správca zavádzania bol úspešne nainštalovaný na váš systém.
After two seconds DefaultPartitionPage Po dvoch sekundách
-An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Vyskytla sa chyba počas zapisovania menu zavádzača. MBR môže byť zničený. Mali by ste ihneď obnoviť MBR!
+Uninstall Boot Manager UninstallPage Title Odinštalovať Správcu zavádzania
At least one partition must be selected! BootManagerController Musí byť vybraná aspoň jedna disková oblasť!
-Back BootManagerController Button Späť
-Backup Master Boot Record BootManagerController Title Zálohovať MBR
-Boot Manager is unable to read the partition table! BootManagerController Správca zavádzania nedokáže prečítať tabuľku oblastí!
-BootManager System name Správca zavádzania
-Cannot access! DrivesPage Cannot install Nie je možný prístup!
-Default Partition DefaultPartitionPage Title Prevolená disková oblasť
-Default Partition: DefaultPartitionPage Menu field label Predvolená oblasť
-Done BootManagerController Button Hotovo
-Drives DrivesPage Title Disky
-Error reading partition table BootManagerController Title Chyba pri čítaní tabuľky oblastí
-File: FileSelectionPage Text control label Súbor
+The old Master Boot Record could not be saved to %s BootManagerController Starý MBR nebolo možné uložiť do %s
+Restore MBR BootManagerController Button Obnoviť MBR
Hard Drive DrivesPage Default disk name Pevný disk
-Immediately DefaultPartitionPage Okamžite
-Install DrivesPage Button Nainštalovať
-Installation of boot menu completed BootManagerController Title Inštalácia menu zavádzača dokončená
-Installation of boot menu failed BootManagerController Title Inštalácia menu zavádzača zlyhala
-Never DefaultPartitionPage Nikdy
-Next WizardView Button Ďalej
-No space available! DrivesPage Cannot install Nie je voľné miesto!
-OK BootManagerController Button OK
-Old Master Boot Record Saved failure BootManagerController Title Zlyhalo uloženie starého MBR
-Old Master Boot Record saved BootManagerController Title Starý MBR je uložený
-Partition table not compatible BootManagerController Title Tabuľka oblastí nie je kompatibilná
-Partitions DefaultPartitionPage Pop up menu title Oblasti
+USB Drive DrivesPage Default disk name Disk USB
+The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController MBR zavádzacieho zariadenia:\n\t %s\nsa teraz uloží na disk. Prosím, zvoľte súbor, kam sa uloží MBR.\n\nAk sa niečo v inštalácii pokazí alebo jednoducho neskôr budete chcieť odstrániť menu zavádzača, jednoducho spustite program Správca zavádzania a zvoľte možnosť „Odinštalovať“.
+About to restore the Master Boot Record (MBR) of %disk from %file. Do you wish to continue? BootManagerController Don't translate the place holders: %disk and %file Chystáte sa obnoviť MBR disku %disk zo súboru %file. Chcete pokračovať?
+An error occurred writing the boot menu. The Master Boot Record might be destroyed, you should restore the MBR now! BootManagerController Vyskytla sa chyba počas zapisovania menu zavádzača. MBR môže byť zničený. Mali by ste ihneď obnoviť MBR!
Partitions PartitionsPage Title Oblasti
+Timeout: %s DefaultPartitionPage Časový interval: %s
+Select FileSelectionPage Button Vybrať
+Cannot access! DrivesPage Cannot install Nie je možný prístup!
+Uninstall boot manager BootManagerController Title Odinštalovať Správcu zavádzania
+After four seconds DefaultPartitionPage Po štyroch sekundách
+Uninstallation of boot menu failed BootManagerController Title Odinštalovanie menu zavádzača zlyhalo
Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. BootManagerController Prosím, nájdite súbor s uloženým MBR, z ktorého chcete obnoviť MBR. Tento súbor bol vytvorený, keď ste prvýkrát nainštalovali Správcu zavádzania.
-Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Prosím, nájdite súbor s uloženým MBR, z ktorého chcete obnoviť MBR. Tento súbor bol vytvorený, keď ste prvýkrát nainštalovali Správcu zavádzania.
+Next WizardView Button Ďalej
+Uninstallation of boot menu completed BootManagerController Title Odinštalovanie menu zavádzača dokončené
Please select the drive you want the boot manager to be installed to or uninstalled from. DrivesPage Prosím, vyberte disk, kam chcete nainštalovať alebo odinštalovať správcu zavádzania.
Please specify a default partition and a timeout.\nThe boot menu will load the default partition after the timeout unless you select another partition. You can also have the boot menu wait indefinitely for you to select a partition.\nKeep the 'ALT' key pressed to disable the timeout at boot time. DefaultPartitionPage Prosím, uveďte predvolenú diskovú oblasť a časový interval.\nMenu zavádzača načíta predvolenú oblasť po vypršaní intervalu ak si nevyberiete inú. Môžete tiež nechať menu čakať bez intervalu, kým sami nezvolíte oblasť\nAk chcete vypnúť časový interval pri zavádzaní, držte stlačený kláves „Alt“.
-Previous WizardView Button Späť
-Quit DrivesPage Button Ukončiť
-Restore MBR BootManagerController Button Obnoviť MBR
-Select FileSelectionPage Button Vybrať
-Summary BootManagerController Title Zhrnutie
-The Master Boot Record (MBR) of the boot device:\n\t%s\nwill now be saved to disk. Please select a file to save the MBR into.\n\nIf something goes wrong with the installation or if you later wish to remove the boot menu, simply run the bootman program and choose the 'Uninstall' option. BootManagerController MBR zavádzacieho zariadenia:\n\t%s\nsa teraz uloží na disk. Prosím, zvoľte súbor, kam sa uloží MBR.\n\nAk sa niečo v inštalácii pokazí alebo jednoducho nekôr budetechcieť odstrániť menu zavádzača, jednoducho spustite program Správca zavádzania a zvoľte možnosť „Odinštalovať“.
-The Master Boot Record could not be restored! BootManagerController MBR nebolo možné obnoviť!
-The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController MBR zavádzacieho zariadenia (%DISK) bol úspešne obnovený zo súboru %FILE.
-The boot manager has been successfully installed on your system. BootManagerController Správca zavádzania bol úspešne nainštalovaný na váš systém.
-The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Boli zistené nasledovné oblasti. Prosím, zaškrtnite pole vedľa oblastí, ktoré chcete zahrnúť do menu zavádzača. Môžete tiež nastaviť názvy oblastí, aké chcete aby sa zobrazovali v menu zavádzača.
-The old Master Boot Record could not be saved to %s BootManagerController Starý MBR nebolo možné uložiť do %s
-The old Master Boot Record was successfully saved to %s. BootManagerController Starý MBR bol úspešne uložený do %s.
+After one second DefaultPartitionPage Po jednej sekunde
The partition table of the first hard disk is not compatible with Boot Manager.\nBoot Manager needs 2 KB available space before the first partition. BootManagerController Tabuľka oblastí prvého disku nie je kompatibilná so Správcom zavádzania.\nSprávca zavádzania potrebuje 2 KB voľného miesta pred prvou oblasťou.
-Timeout: %s DefaultPartitionPage Časový interval: %s
-USB Drive DrivesPage Default disk name Disk USB
-Uninstall DrivesPage Button Odinštalovať
-Uninstall Boot Manager UninstallPage Title Odinštalovať Správcu zavádzania
-Uninstall boot manager BootManagerController Title Odinštalovať Správcu zavádzania
-Uninstallation of boot menu completed BootManagerController Title Odinštalovanie menu zavádzača dokončené
-Uninstallation of boot menu failed BootManagerController Title Odinštalovanie menu zavádzača zlyhalo
-Unknown LegacyBootMenu Text is shown for an unknown partition type Neznámy
-Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Nepomenovaný %d
-Update DrivesPage Button Aktualizovať
+The following partitions were detected. Please check the box next to the partitions to be included in the boot menu. You can also set the names of the partitions as you would like them to appear in the boot menu. PartitionsPage Boli zistené nasledovné oblasti. Prosím, zaškrtnite pole vedľa oblastí, ktoré chcete zahrnúť do menu zavádzača. Môžete tiež nastaviť názvy oblastí, aké chcete aby sa zobrazovali v menu zavádzača.
+After one minute DefaultPartitionPage Po jednej minúte
+The Master Boot Record of the boot device (%DISK) has been successfully restored from %FILE. BootManagerController MBR zavádzacieho zariadenia (%DISK) bol úspešne obnovený zo súboru %FILE.
Write boot menu BootManagerController Button Zapísať menu zavádzača
+The Master Boot Record could not be restored! BootManagerController MBR nebolo možné obnoviť!
+Uninstall DrivesPage Button Odinštalovať
+Default Partition DefaultPartitionPage Title Prevolená disková oblasť
+After five seconds DefaultPartitionPage Po piatich sekundách
+Back BootManagerController Button Späť
+Installation of boot menu completed BootManagerController Title Inštalácia menu zavádzača dokončená
+Unnamed %d LegacyBootMenu Default name of a partition whose name could not be read from disk; characters in codepage 437 are allowed only Nepomenovaný %d
+File: FileSelectionPage Text control label Súbor:
+Previous WizardView Button Späť
+Install DrivesPage Button Nainštalovať
+About to write the following boot menu to the boot disk (%s). Please verify the information below before continuing. BootManagerController Chystá sa zápis nasledovného menu zavádzača na zavádzací disk (%s). Prosím, overte nasledovné informácie predtým, než budete pokračovať.
+Unknown LegacyBootMenu Text is shown for an unknown partition type Neznámy
+Update DrivesPage Button Aktualizovať
+Please locate the Master Boot Record (MBR) save file to restore from. This is the file that was created when the boot manager was first installed. UninstallPage Prosím, nájdite súbor s uloženým MBR, z ktorého chcete obnoviť MBR. Tento súbor bol vytvorený, keď ste prvýkrát nainštalovali Správcu zavádzania.
+Old Master Boot Record Saved failure BootManagerController Title Zlyhalo uloženie starého MBR
+Drives DrivesPage Title Disky
+No space available! DrivesPage Cannot install Nie je voľné miesto!
+Never DefaultPartitionPage Nikdy
+Partition table not compatible BootManagerController Title Tabuľka oblastí nie je kompatibilná
+Old Master Boot Record saved BootManagerController Title Starý MBR je uložený
+Boot Manager is unable to read the partition table! BootManagerController Správca zavádzania nedokáže prečítať tabuľku oblastí!
+Error reading partition table BootManagerController Title Chyba pri čítaní tabuľky oblastí
+Installation of boot menu failed BootManagerController Title Inštalácia menu zavádzača zlyhala
+Backup Master Boot Record BootManagerController Title Zálohovať MBR
+Quit DrivesPage Button Ukončiť
+About to write the boot menu to disk. Are you sure you want to continue? BootManagerController Chystá sa zápis menu zavádzača na disk. Ste si istý, že chcete pokračovať?
+The old Master Boot Record was successfully saved to %s. BootManagerController Starý MBR bol úspešne uložený do %s.
+Default Partition: DefaultPartitionPage Menu field label Predvolená oblasť:
+Partitions DefaultPartitionPage Pop up menu title Oblasti
+BootManager System name Správca zavádzania
+Summary BootManagerController Title Zhrnutie
+OK BootManagerController Button OK
+Immediately DefaultPartitionPage Okamžite
+Done BootManagerController Button Hotovo
+After three seconds DefaultPartitionPage Po troch sekundách
diff --git a/data/catalogs/apps/bsnow/be.catkeys b/data/catalogs/apps/bsnow/be.catkeys
new file mode 100644
index 0000000000..12a471d727
--- /dev/null
+++ b/data/catalogs/apps/bsnow/be.catkeys
@@ -0,0 +1,3 @@
+1 belarusian x-vnd.mmu_man.BSnow 2460058908
+Drag me on your desktop… BSnow Перасунь мяне на твой працоўны стол…
+Click me to remove BSnow… BSnow Націсні мяне каб выдаліць BSnow…
diff --git a/data/catalogs/apps/bsnow/de.catkeys b/data/catalogs/apps/bsnow/de.catkeys
new file mode 100644
index 0000000000..2967ceb329
--- /dev/null
+++ b/data/catalogs/apps/bsnow/de.catkeys
@@ -0,0 +1,3 @@
+1 german x-vnd.mmu_man.BSnow 2460058908
+Drag me on your desktop… BSnow Auf den Desktop ziehen...
+Click me to remove BSnow… BSnow Klicken, um BSnow zu entfernen...
diff --git a/data/catalogs/apps/bsnow/fi.catkeys b/data/catalogs/apps/bsnow/fi.catkeys
new file mode 100644
index 0000000000..bc7d6ab5f7
--- /dev/null
+++ b/data/catalogs/apps/bsnow/fi.catkeys
@@ -0,0 +1,3 @@
+1 finnish x-vnd.mmu_man.BSnow 2460058908
+Click me to remove BSnow… BSnow Napsauta minua BSnow-ohjelman poistamiseksi...
+Drag me on your desktop… BSnow Raahaa minut työpöydällesi...
diff --git a/data/catalogs/apps/bsnow/hr.catkeys b/data/catalogs/apps/bsnow/hr.catkeys
new file mode 100644
index 0000000000..7e3ca038c0
--- /dev/null
+++ b/data/catalogs/apps/bsnow/hr.catkeys
@@ -0,0 +1,3 @@
+1 croatian x-vnd.mmu_man.BSnow 2460058908
+Click me to remove BSnow… BSnow Klikni na mene za uklanjanje BSnow…
+Drag me on your desktop… BSnow Povuci me na svoju radnu površinu...
diff --git a/data/catalogs/apps/bsnow/lt.catkeys b/data/catalogs/apps/bsnow/lt.catkeys
new file mode 100644
index 0000000000..bc3981289a
--- /dev/null
+++ b/data/catalogs/apps/bsnow/lt.catkeys
@@ -0,0 +1,3 @@
+1 lithuanian x-vnd.mmu_man.BSnow 2460058908
+Drag me on your desktop… BSnow Nutempkite mane į darbalaukį…
+Click me to remove BSnow… BSnow Spustelėkite mane, jeigu norite pašalinti „BSnow“…
diff --git a/data/catalogs/apps/bsnow/nl.catkeys b/data/catalogs/apps/bsnow/nl.catkeys
new file mode 100644
index 0000000000..3b45614ae9
--- /dev/null
+++ b/data/catalogs/apps/bsnow/nl.catkeys
@@ -0,0 +1,3 @@
+1 dutch; flemish x-vnd.mmu_man.BSnow 2460058908
+Drag me on your desktop… BSnow Sleep me naar je bureaublad...
+Click me to remove BSnow… BSnow Klik op mij om BSnow te verwijderen...
diff --git a/data/catalogs/apps/bsnow/sk.catkeys b/data/catalogs/apps/bsnow/sk.catkeys
new file mode 100644
index 0000000000..61aaaa58cd
--- /dev/null
+++ b/data/catalogs/apps/bsnow/sk.catkeys
@@ -0,0 +1,3 @@
+1 slovak x-vnd.mmu_man.BSnow 2460058908
+Drag me on your desktop… BSnow Pretiahnite ma na vašu plochu…
+Click me to remove BSnow… BSnow Kliknutím sem odstránite BSnow…
diff --git a/data/catalogs/apps/bsnow/sv.catkeys b/data/catalogs/apps/bsnow/sv.catkeys
new file mode 100644
index 0000000000..8240fabc75
--- /dev/null
+++ b/data/catalogs/apps/bsnow/sv.catkeys
@@ -0,0 +1 @@
+1 swedish x-vnd.mmu_man.BSnow 0
diff --git a/data/catalogs/apps/cdplayer/be.catkeys b/data/catalogs/apps/cdplayer/be.catkeys
index 54e3fcd64f..3aef37a61a 100644
--- a/data/catalogs/apps/cdplayer/be.catkeys
+++ b/data/catalogs/apps/cdplayer/be.catkeys
@@ -1,14 +1,14 @@
1 belarusian x-vnd.Haiku-CDPlayer 592310631
-Audio CD CDPlayer Аўдыё CD
-CD CDPlayer CD
-CD drive is empty CDPlayer CD прывад пусты
CDPlayer System name Праігравальнік CD
+CD CDPlayer CD
Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Дыск: %ld:%.2ld / %ld:%.2ld
-Disc: --:-- / --:-- CDPlayer Дыск: --:-- / --:--
-Disc: 88:88 / 88:88 CDPlayer Дыск: 88:88 / 88:88
-It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Выходзіць, што у Вашай сістэме няма CD прывадаў або сістэмных сродкаў для работы з імі. Прабачце.
OK CDPlayer ОК
Track %whichTrack%: %trackAt% CDPlayer Трэк %whichTrack%: %trackAt%
+Audio CD CDPlayer Аўдыё CD
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Выходзіць, што у Вашай сістэме няма CD прывадаў або сістэмных сродкаў для работы з імі. Прабачце.
Track: %ld:%.2ld / %ld:%.2ld CDPlayer Трэк: %ld:%.2ld / %ld:%.2ld
-Track: --:-- / --:-- CDPlayer Трэк: --:-- / --:--
Track: 88:88 / 88:88 CDPlayer Трэк: 88:88 / 88:88
+Track: --:-- / --:-- CDPlayer Трэк: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Дыск: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer Дыск: --:-- / --:--
+CD drive is empty CDPlayer CD прывад пусты
diff --git a/data/catalogs/apps/cdplayer/de.catkeys b/data/catalogs/apps/cdplayer/de.catkeys
index 0941c60c4c..4b193fd732 100644
--- a/data/catalogs/apps/cdplayer/de.catkeys
+++ b/data/catalogs/apps/cdplayer/de.catkeys
@@ -1,14 +1,14 @@
1 german x-vnd.Haiku-CDPlayer 592310631
-Audio CD CDPlayer Audio-CD
-CD CDPlayer CD
-CD drive is empty CDPlayer Es befindet sich keine CD im Laufwerk.
CDPlayer System name CD-Player
+CD CDPlayer CD
Disc: %ld:%.2ld / %ld:%.2ld CDPlayer CD: %ld:%.2ld / %ld:%.2ld
-Disc: --:-- / --:-- CDPlayer CD: --:-- / --:--
-Disc: 88:88 / 88:88 CDPlayer CD: 88:88 / 88:88
-It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Anscheinend sind keine CD-Laufwerke vorhanden oder es ist keine Software dafür installiert.
OK CDPlayer OK
Track %whichTrack%: %trackAt% CDPlayer Track %whichTrack%: %trackAt%
+Audio CD CDPlayer Audio-CD
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Anscheinend sind keine CD-Laufwerke vorhanden oder es ist keine Software dafür installiert.
Track: %ld:%.2ld / %ld:%.2ld CDPlayer Track: %ld:%.2ld / %ld:%.2ld
-Track: --:-- / --:-- CDPlayer Track: --:-- / --:--
Track: 88:88 / 88:88 CDPlayer Track: 88:88 / 88:88
+Track: --:-- / --:-- CDPlayer Track: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer CD: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer CD: --:-- / --:--
+CD drive is empty CDPlayer Es befindet sich keine CD im Laufwerk.
diff --git a/data/catalogs/apps/cdplayer/hr.catkeys b/data/catalogs/apps/cdplayer/hr.catkeys
new file mode 100644
index 0000000000..4b027be23c
--- /dev/null
+++ b/data/catalogs/apps/cdplayer/hr.catkeys
@@ -0,0 +1,13 @@
+1 croatian x-vnd.Haiku-CDPlayer 4290325531
+Audio CD CDPlayer Audio CD
+CD CDPlayer CD
+CD drive is empty CDPlayer CD pogon je prazan
+CDPlayer System name CD svirač
+Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Disk: %ld:%.2ld / %ld:%.2ld
+Disc: --:-- / --:-- CDPlayer Disk: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Disk: 88:88 / 88:88
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Izgleda da nema CD pogona u vašem računalu ili nema podrške za njega.Žao nam je.
+OK CDPlayer U redu
+Track: %ld:%.2ld / %ld:%.2ld CDPlayer Zapis: %ld:%.2ld / %ld:%.2ld
+Track: --:-- / --:-- CDPlayer Zapis: --:-- / --:--
+Track: 88:88 / 88:88 CDPlayer Zapis: 88:88 / 88:88
diff --git a/data/catalogs/apps/cdplayer/lt.catkeys b/data/catalogs/apps/cdplayer/lt.catkeys
new file mode 100644
index 0000000000..c0dad8a63d
--- /dev/null
+++ b/data/catalogs/apps/cdplayer/lt.catkeys
@@ -0,0 +1,14 @@
+1 lithuanian x-vnd.Haiku-CDPlayer 592310631
+CDPlayer System name CD leistuvas
+CD CDPlayer CD
+Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Diskas: %ld:%.2ld / %ld:%.2ld
+OK CDPlayer Gerai
+Track %whichTrack%: %trackAt% CDPlayer %whichTrack% takelis: %trackAt%
+Audio CD CDPlayer Audio CD
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Panašu, jog šiame kompiuteryje nėra CD kaupiklio, arba jis nepalaikomas sistemos. Apgailestaujame.
+Track: %ld:%.2ld / %ld:%.2ld CDPlayer Takelis: %ld:%.2ld / %ld:%.2ld
+Track: 88:88 / 88:88 CDPlayer Takelis: 88:88 / 88:88
+Track: --:-- / --:-- CDPlayer Takelis: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Diskas: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer Diskas: --:-- / --:--
+CD drive is empty CDPlayer CD kaupiklyje nėra disko
diff --git a/data/catalogs/apps/cdplayer/nl.catkeys b/data/catalogs/apps/cdplayer/nl.catkeys
index 3d37229a12..da1d17e686 100644
--- a/data/catalogs/apps/cdplayer/nl.catkeys
+++ b/data/catalogs/apps/cdplayer/nl.catkeys
@@ -1,6 +1,14 @@
-1 dutch x-vnd.Haiku-CDPlayer 3757937427
+1 dutch; flemish x-vnd.Haiku-CDPlayer 592310631
+CDPlayer System name CDPlayer
+CD CDPlayer CD
+Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Schijf: %ld:%.2ld / %ld:%.2ld
+OK CDPlayer Ok
+Track %whichTrack%: %trackAt% CDPlayer Spoor %whichTrack%: %trackAt%
Audio CD CDPlayer Audio-cd
-CD drive is empty CDPlayer cd-station is leeg
-Disc: --:-- / --:-- CDPlayer Schijf: --:-- / --:--
It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Het lijkt erop dat uw computer geen cd-station heeft, of dat er geen ondersteunende systeemsoftware voor aanwezig is. Sorry.
+Track: %ld:%.2ld / %ld:%.2ld CDPlayer Spoor: %ld:%.2ld / %ld:%.2ld
+Track: 88:88 / 88:88 CDPlayer Spoor: 88:88 / 88:88
Track: --:-- / --:-- CDPlayer Track: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Schijf: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer Schijf: --:-- / --:--
+CD drive is empty CDPlayer cd-station is leeg
diff --git a/data/catalogs/apps/cdplayer/ru.catkeys b/data/catalogs/apps/cdplayer/ru.catkeys
index beb457858f..8dc51fb837 100644
--- a/data/catalogs/apps/cdplayer/ru.catkeys
+++ b/data/catalogs/apps/cdplayer/ru.catkeys
@@ -1,14 +1,14 @@
1 russian x-vnd.Haiku-CDPlayer 592310631
-Audio CD CDPlayer Аудио CD
-CD CDPlayer CD
-CD drive is empty CDPlayer CD-привод пуст
CDPlayer System name CD плеер
+CD CDPlayer CD
Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Диск: %ld:%.2ld / %ld:%.2ld
-Disc: --:-- / --:-- CDPlayer Диск: --:-- / --:--
-Disc: 88:88 / 88:88 CDPlayer Диск: 88:88 / 88:88
-It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Похоже, что на вашем компьютере отсутствуют CD-приводы или он не поддерживается системой. Извините.
OK CDPlayer ОК
Track %whichTrack%: %trackAt% CDPlayer Трек %whichTrack%: %trackAt%
+Audio CD CDPlayer Аудио CD
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Похоже, что на вашем компьютере отсутствуют CD-приводы или он не поддерживается системой. Извините.
Track: %ld:%.2ld / %ld:%.2ld CDPlayer Трек: %ld:%.2ld / %ld:%.2ld
-Track: --:-- / --:-- CDPlayer Дорожка: --:-- / --:--
Track: 88:88 / 88:88 CDPlayer Трек: 88:88 / 88:88
+Track: --:-- / --:-- CDPlayer Дорожка: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Диск: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer Диск: --:-- / --:--
+CD drive is empty CDPlayer CD-привод пуст
diff --git a/data/catalogs/apps/cdplayer/sk.catkeys b/data/catalogs/apps/cdplayer/sk.catkeys
index cab217cacd..7f6dba89d2 100644
--- a/data/catalogs/apps/cdplayer/sk.catkeys
+++ b/data/catalogs/apps/cdplayer/sk.catkeys
@@ -1,14 +1,14 @@
1 slovak x-vnd.Haiku-CDPlayer 592310631
-Audio CD CDPlayer Zvukové CD
-CD CDPlayer CD
-CD drive is empty CDPlayer Mechanika CD je prázdna
CDPlayer System name Prehrávač CD
+CD CDPlayer CD
Disc: %ld:%.2ld / %ld:%.2ld CDPlayer Disk: %ld:%.2ld / %ld:%.2ld
-Disc: --:-- / --:-- CDPlayer Disk: --:-- / --:--
-Disc: 88:88 / 88:88 CDPlayer Disk: 88:88 / 88:88
-It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Zdá sa, že váš počítač neobsahuje mechaniky CD a nemáte systémový softvér, ktorý by ich poskytol. Ľutujeme.
OK CDPlayer OK
Track %whichTrack%: %trackAt% CDPlayer Stopa %whichTrack%: %trackAt%
+Audio CD CDPlayer Zvukové CD
+It appears that there are no CD drives on your computer or there is no system software to support one. Sorry. CDPlayer Zdá sa, že váš počítač neobsahuje mechaniky CD alebo nemáte systémový softvér, ktorý by ich podporoval. Ľutujeme.
Track: %ld:%.2ld / %ld:%.2ld CDPlayer Stopa: %ld:%.2ld / %ld:%.2ld
-Track: --:-- / --:-- CDPlayer Stopa: --:-- / --:--
Track: 88:88 / 88:88 CDPlayer Stopa: 88:88 / 88:88
+Track: --:-- / --:-- CDPlayer Stopa: --:-- / --:--
+Disc: 88:88 / 88:88 CDPlayer Disk: 88:88 / 88:88
+Disc: --:-- / --:-- CDPlayer Disk: --:-- / --:--
+CD drive is empty CDPlayer Mechanika CD je prázdna
diff --git a/data/catalogs/apps/charactermap/be.catkeys b/data/catalogs/apps/charactermap/be.catkeys
index 0e5832b409..41bfbbfe54 100644
--- a/data/catalogs/apps/charactermap/be.catkeys
+++ b/data/catalogs/apps/charactermap/be.catkeys
@@ -1,181 +1,180 @@
-1 belarusian x-vnd.Haiku-CharacterMap 4082916013
-Aegean numbers UnicodeBlocks Эгейскія лічбы
-Alphabetic presentation forms UnicodeBlocks Формы алфавітнага прадстаўлення
-Ancient Greek musical notation UnicodeBlocks Старажытнагрэчаскія музыкальныя сімвалы
-Ancient Greek numbers UnicodeBlocks Старадаўнія грэчаскія лічбы
-Ancient smbols UnicodeBlocks Старадаўнія сімвалы
-Arabic UnicodeBlocks Арабскі
-Arabic presentation forms A UnicodeBlocks Арабскія формы прадстаўлення А
-Arabic presentation forms B UnicodeBlocks Арабскія формы прадстаўлення B
-Arabic supplement UnicodeBlocks Арабскія дапаўненні
-Armenian UnicodeBlocks Армянскі
-Arrows UnicodeBlocks Стрэлкі
-Balinese UnicodeBlocks Балінэзскі
-Basic Latin UnicodeBlocks Простая лацінка
-Bengali UnicodeBlocks Бенгальскі
-Block elements UnicodeBlocks Блокавыя Элементы
-Bopomofo UnicodeBlocks Бопомофо
-Bopomofo extended UnicodeBlocks Бопомофо пашыраны
-Box drawing UnicodeBlocks Рысаванне рамак
-Braille patterns UnicodeBlocks Шрыфт Брайля
-Buginese UnicodeBlocks Бугінэзскі
-Buhid UnicodeBlocks Бухід
-Byzantine musical symbols UnicodeBlocks Візантыйскія музычныя сімвалы
-CJK compatibility UnicodeBlocks Сумяшчальнасць CJK
-CJK compatibility forms UnicodeBlocks Формы сумяшчальнасці CJK
-CJK compatibility ideographs UnicodeBlocks CJK сумяшчальныя іерогліфы
-CJK compatibility ideographs Supplement UnicodeBlocks CJK сумяшчальныя іерогліфы Дапаўненне
-CJK radicals supplement UnicodeBlocks Дапаўненнк радыкалаў CJK
-CJK strokes UnicodeBlocks CJK штрыхі
-CJK symbols and punctuation UnicodeBlocks Сімвалы і пунктуацыя CJK
-CJK unified ideographs UnicodeBlocks CJK іерогліфы
-CJK unified ideographs extension A UnicodeBlocks Іерогліфы CJK дапаўненне A
-CJK unified ideographs extension B UnicodeBlocks Іерогліфы CJK дапаўненне B
-Carian UnicodeBlocks Карыянскі
-Cham UnicodeBlocks Чам
-CharacterMap System name Табліца сімвалаў
-Cherokee UnicodeBlocks Чырокі
-Clear CharacterWindow Ачысціць
-Code CharacterWindow Код
-Combining diacritical marks UnicodeBlocks Камбінаванне дыякрытыных метак
-Combining diacritical marks for symbols UnicodeBlocks Камбінаванне дыякрытыных метак для сімвалаў
-Combining diacritical marks supplement UnicodeBlocks Камбінаванне дыякрытыных метак дапаўненне
-Combining half marks UnicodeBlocks Камбінаванне паўметак
-Control pictures UnicodeBlocks Выявы ўпраўлення
-Coptic UnicodeBlocks Коптскі
-Copy as escaped byte string CharacterView Капіяваць кадаваным радком
-Copy character CharacterView Капіяваць сімвал
-Counting rod numerals UnicodeBlocks Лічбы злічальных палачак
-Cuneiform UnicodeBlocks Клінапіс
-Cuneiform numbers and punctuation UnicodeBlocks Клінапісныя лічбы і пунктуацыя
-Currency symbols UnicodeBlocks Сімвалы валют
-Cypriot syllabary UnicodeBlocks Кіпрскія склады
-Cyrillic UnicodeBlocks Кірыліца
-Cyrillic extended A UnicodeBlocks Кірыліца пашыраная A
-Cyrillic extended B UnicodeBlocks Кірыліца пашыраная B
-Cyrillic supplement UnicodeBlocks Кірыліца дапаўненне
-Deseret UnicodeBlocks Дэзэрэт
-Devanagari UnicodeBlocks Дэванагары
-Dingbats UnicodeBlocks Dingbats
-Domino tiles UnicodeBlocks Пліткі даміно
-Enclosed CJK letters and months UnicodeBlocks Закрытыя літары і месяцы CJK
+1 belarusian x-vnd.Haiku-CharacterMap 1545664922
Enclosed alphanumerics UnicodeBlocks Закрытыя літары і лічбы
-Ethiopic UnicodeBlocks Эфіопскі
-Ethiopic extended UnicodeBlocks Эфіопскі пашыраны
-Ethiopic supplement UnicodeBlocks Эфіопскі дапаўненні
-File CharacterWindow Файл
-Filter: CharacterWindow Фільтр:
-Font CharacterWindow Шрыфт
-Font size: CharacterWindow Памер шрыфту
-General punctuation UnicodeBlocks Знакі прыпынку
-Geometric shapes UnicodeBlocks Геаметрычныя фігуры
-Georgian UnicodeBlocks Грузінскі
-Georgian supplement UnicodeBlocks Грузінскі дапаўненні
-Glagotic UnicodeBlocks Глаголіца
-Gothic UnicodeBlocks Гатычны
-Greek and Coptic UnicodeBlocks Грэчаскі і Каптычны
-Greek extended UnicodeBlocks Грэчаскі пашыраны
-Gujarati UnicodeBlocks Гуйяраці
-Gurmukhi UnicodeBlocks Гурмухі
-Halfwidth and fullwidth forms UnicodeBlocks Паўшырынёвыя і поўнашырынёвыя формы
-Hangul Jamo UnicodeBlocks Hangul Jamo
-Hangul compatibility Jamo UnicodeBlocks Hangul сумяшчальнасць Jamo
-Hangul syllables UnicodeBlocks Склады Хангул
-Hanunoo UnicodeBlocks Хануну
-Hebrew UnicodeBlocks Іўрыт
-Hiragana UnicodeBlocks Хірагана
-IPA extensions UnicodeBlocks пашырэнні IPA
-Ideographic description characters UnicodeBlocks Сімвалы іерагліфічных апісанняў
-Kanbun UnicodeBlocks Канбун
-Kangxi radicals UnicodeBlocks Радыкалы Kangxi
-Kannada UnicodeBlocks Каннада
-Katakana UnicodeBlocks Катакана
-Katakana phonetic extensions UnicodeBlocks Фанетычныя пашырэнні Катакана
-Kayah Li UnicodeBlocks Кайя Лі
-Kharoshthi UnicodeBlocks Kharoshthi
-Khmer UnicodeBlocks Кхмер
-Khmer symbols UnicodeBlocks Сімвалы Кхмер
-Lao UnicodeBlocks Лао
-Latin extended A UnicodeBlocks Лацінка пашыраная A
-Latin extended B UnicodeBlocks Лацінка пашыраная B
-Latin extended C UnicodeBlocks Лацінка пашыраная C
-Latin extended D UnicodeBlocks Лацінка пашыраная D
-Latin extended additional UnicodeBlocks Лацінка пашыраная дадтковая
-Latin-1 supplement UnicodeBlocks Лацінка-1 дадатак
-Lepcha UnicodeBlocks Лепчанскі
-Letterlike symbols UnicodeBlocks Літарападобныя сімвалы
-Limbu UnicodeBlocks Лімбу
-Linear B ideograms UnicodeBlocks Лінейныя B іерогліфы
-Linear B syllabary UnicodeBlocks Лінейныя склады B
-Lycian UnicodeBlocks Лікійскі
-Lydian UnicodeBlocks Лідыйскі
-Mahjong tiles UnicodeBlocks Пліткі Маджонг
-Malayalam UnicodeBlocks Малаяламскі
-Mathematical alphanumeric symbols UnicodeBlocks Матэматычныя сімвалы
-Mathematical operators UnicodeBlocks Матэматычныя аператары
-Miscellaneous mathematical symbols A UnicodeBlocks Розныя матэматычныя сімвалы A
-Miscellaneous mathematical symbols B UnicodeBlocks Розныя матэматычныя сімвалы B
-Miscellaneous symbols UnicodeBlocks Розныя сімвалы
-Miscellaneous symbols and arrows UnicodeBlocks Розныя сімвалы і стрэлкі
-Miscellaneous technical UnicodeBlocks Розныя тэхнічныя
-Modifier tone letters UnicodeBlocks Мадыфікатар танальнасці літар
-Mongolian UnicodeBlocks Мангольскі
-Muscial symbols UnicodeBlocks Музыкальныя сімвалы
-Myanmar UnicodeBlocks Маянмар
-N'Ko UnicodeBlocks N'Ko
-New Tai Lue UnicodeBlocks Новы Tai Lue
-Number forms UnicodeBlocks Формы лічбаў
-Ogham UnicodeBlocks Огам
-Ol Chiki UnicodeBlocks Оль Чыкі
-Old Persian UnicodeBlocks Стары персідскі
-Old italic UnicodeBlocks Этрусский алфавит
-Optical character recognition UnicodeBlocks Аптычнае распазнанне сімвалаў
-Oriya UnicodeBlocks Oriya
-Osmanya UnicodeBlocks Османскі
-Phags-pa UnicodeBlocks Phags-pa
-Phaistos disc UnicodeBlocks Фесцкі дыск
-Phoenician UnicodeBlocks Фінікійскі
-Phonetic extensions UnicodeBlocks Фанетычныя пашырэнні
-Phonetic extensions supplement UnicodeBlocks Фанетычныя пашырэнні дапаўненні
-Private use area UnicodeBlocks Вобласць прыватнага карыстання
-Quit CharacterWindow Выйсці
-Rejang UnicodeBlocks Рэйанг
-Runic UnicodeBlocks Руны
-Saurashtra UnicodeBlocks Саураштра
-Shavian UnicodeBlocks Шавійскі
-Show private blocks CharacterWindow Паказваць прыватныя блокі
-Sinhala UnicodeBlocks Сінгальскі
-Small form variants UnicodeBlocks Варыянты малых форм
-Spacing modifier letters UnicodeBlocks Літары змены інтэрвалаў
-Specials UnicodeBlocks Спецыяльныя
-Sundanese UnicodeBlocks Суданскі
-Superscripts and subscripts UnicodeBlocks Суперскрыпты і субскрыпты
-Supplement punctuation UnicodeBlocks Пунктуацыя дапаўненне
-Supplemental arrows A UnicodeBlocks Дадатковыя стрэлкі А
-Supplemental arrows B UnicodeBlocks Дадатковыя стрэлкі B
-Supplemental mathematical operators UnicodeBlocks Дадатковыя матэматычныя аператары
-Supplementary private use area A UnicodeBlocks Дадатковая вобласць прыватнага карыстання А
-Supplementary private use area B UnicodeBlocks Дадатковая вобласць прыватнага карыстання B
-Syloti Nagri UnicodeBlocks Syloti Nagri
-Syriac UnicodeBlocks Сірыйскія
-Tagalog UnicodeBlocks Тагалог
-Tagbanwa UnicodeBlocks Тагбанва
-Tags UnicodeBlocks Тэгі
-Tai Le UnicodeBlocks Тай Ле
-Tai Xuan Jing symbols UnicodeBlocks Сімвалы Tai Xuan Jing
-Tamil UnicodeBlocks Тамільскі
-Telugu UnicodeBlocks Тэлугу
-Thaana UnicodeBlocks Тана
-Thai UnicodeBlocks Тайскі
-Tibetan UnicodeBlocks Tibetan
-Tifinagh UnicodeBlocks Тыфінаг
-Ugaritic UnicodeBlocks Угарытскі
-Unified Canadian Aboriginal syllabics UnicodeBlocks Закрытыя склады канадскіх абарыгенаў
-Vai UnicodeBlocks Vai
-Variation selectors UnicodeBlocks Азначальнікі варыяцый
-Variation selectors supplement UnicodeBlocks Дапаўненні выдзялення варыяцый
-Vertical forms UnicodeBlocks Вертыкальныя формы
+Basic Latin UnicodeBlocks Простая лацінка
View CharacterWindow Від
+Latin-1 supplement UnicodeBlocks Лацінка-1 дадатак
+Hebrew UnicodeBlocks Іўрыт
+Georgian supplement UnicodeBlocks Грузінскі дапаўненні
+CJK unified ideographs UnicodeBlocks CJK іерогліфы
+Modifier tone letters UnicodeBlocks Мадыфікатар танальнасці літар
+Khmer UnicodeBlocks Кхмер
+Supplementary private use area A UnicodeBlocks Дадатковая вобласць прыватнага карыстання А
+Hanunoo UnicodeBlocks Хануну
+Latin extended additional UnicodeBlocks Лацінка пашыраная дадтковая
+Arabic presentation forms A UnicodeBlocks Арабскія формы прадстаўлення А
+Greek extended UnicodeBlocks Грэчаскі пашыраны
+Linear B ideograms UnicodeBlocks Лінейныя B іерогліфы
+Devanagari UnicodeBlocks Дэванагары
+Armenian UnicodeBlocks Армянскі
+Glagotic UnicodeBlocks Глаголіца
+Mathematical operators UnicodeBlocks Матэматычныя аператары
+General punctuation UnicodeBlocks Знакі прыпынку
+Miscellaneous technical UnicodeBlocks Розныя тэхнічныя
+Vertical forms UnicodeBlocks Вертыкальныя формы
+Ol Chiki UnicodeBlocks Оль Чыкі
+Arabic UnicodeBlocks Арабскі
+Ethiopic extended UnicodeBlocks Эфіопскі пашыраны
+Arrows UnicodeBlocks Стрэлкі
+Font CharacterWindow Шрыфт
+Variation selectors supplement UnicodeBlocks Дапаўненні выдзялення варыяцый
+Gujarati UnicodeBlocks Гуйяраці
+Cuneiform UnicodeBlocks Клінапіс
+CJK radicals supplement UnicodeBlocks Дапаўненнк радыкалаў CJK
+Balinese UnicodeBlocks Балінэзскі
+Cham UnicodeBlocks Чам
+Specials UnicodeBlocks Спецыяльныя
+CJK compatibility ideographs UnicodeBlocks CJK сумяшчальныя іерогліфы
+Phonetic extensions UnicodeBlocks Фанетычныя пашырэнні
+Khmer symbols UnicodeBlocks Сімвалы Кхмер
+Tagbanwa UnicodeBlocks Тагбанва
+Kanbun UnicodeBlocks Канбун
+Syriac UnicodeBlocks Сірыйскія
+CJK compatibility ideographs Supplement UnicodeBlocks CJK сумяшчальныя іерогліфы Дапаўненне
+Hangul syllables UnicodeBlocks Склады Хангул
+Coptic UnicodeBlocks Коптскі
+Tai Le UnicodeBlocks Тай Ле
+Mahjong tiles UnicodeBlocks Пліткі Маджонг
+Spacing modifier letters UnicodeBlocks Літары змены інтэрвалаў
+Aegean numbers UnicodeBlocks Эгейскія лічбы
+CJK strokes UnicodeBlocks CJK штрыхі
+Old italic UnicodeBlocks Этрусский алфавит
+Supplemental arrows B UnicodeBlocks Дадатковыя стрэлкі B
+Cyrillic extended A UnicodeBlocks Кірыліца пашыраная A
+Kharoshthi UnicodeBlocks Kharoshthi
+Combining half marks UnicodeBlocks Камбінаванне паўметак
+Cyrillic UnicodeBlocks Кірыліца
+Katakana UnicodeBlocks Катакана
+Block elements UnicodeBlocks Блокавыя Элементы
+Clear CharacterWindow Ачысціць
+Sundanese UnicodeBlocks Суданскі
+Miscellaneous mathematical symbols A UnicodeBlocks Розныя матэматычныя сімвалы A
+Cyrillic supplement UnicodeBlocks Кірыліца дапаўненне
+Small form variants UnicodeBlocks Варыянты малых форм
+IPA extensions UnicodeBlocks пашырэнні IPA
+Thaana UnicodeBlocks Тана
+Ogham UnicodeBlocks Огам
+Combining diacritical marks for symbols UnicodeBlocks Камбінаванне дыякрытыных метак для сімвалаў
+Syloti Nagri UnicodeBlocks Syloti Nagri
+Arabic supplement UnicodeBlocks Арабскія дапаўненні
+Latin extended C UnicodeBlocks Лацінка пашыраная C
+Ancient smbols UnicodeBlocks Старадаўнія сімвалы
+Bopomofo extended UnicodeBlocks Бопомофо пашыраны
+Lycian UnicodeBlocks Лікійскі
+Font size: CharacterWindow Памер шрыфту
+Osmanya UnicodeBlocks Османскі
+Ethiopic UnicodeBlocks Эфіопскі
+Bengali UnicodeBlocks Бенгальскі
+Supplementary private use area B UnicodeBlocks Дадатковая вобласць прыватнага карыстання B
+CJK unified ideographs extension A UnicodeBlocks Іерогліфы CJK дапаўненне A
+Filter: CharacterWindow Фільтр:
+Hangul compatibility Jamo UnicodeBlocks Hangul сумяшчальнасць Jamo
+Ideographic description characters UnicodeBlocks Сімвалы іерагліфічных апісанняў
+Arabic presentation forms B UnicodeBlocks Арабскія формы прадстаўлення B
+CJK compatibility forms UnicodeBlocks Формы сумяшчальнасці CJK
+Hiragana UnicodeBlocks Хірагана
+Tagalog UnicodeBlocks Тагалог
+Control pictures UnicodeBlocks Выявы ўпраўлення
+Variation selectors UnicodeBlocks Азначальнікі варыяцый
+Linear B syllabary UnicodeBlocks Лінейныя склады B
+Buginese UnicodeBlocks Бугінэзскі
+Bopomofo UnicodeBlocks Бопомофо
+Code CharacterWindow Код
+Lepcha UnicodeBlocks Лепчанскі
+Sinhala UnicodeBlocks Сінгальскі
+Ancient Greek musical notation UnicodeBlocks Старажытнагрэчаскія музыкальныя сімвалы
+Geometric shapes UnicodeBlocks Геаметрычныя фігуры
+Letterlike symbols UnicodeBlocks Літарападобныя сімвалы
+Hangul Jamo UnicodeBlocks Hangul Jamo
+Tamil UnicodeBlocks Тамільскі
+Currency symbols UnicodeBlocks Сімвалы валют
+Combining diacritical marks UnicodeBlocks Камбінаванне дыякрытыных метак
+Supplement punctuation UnicodeBlocks Пунктуацыя дапаўненне
+Unified Canadian Aboriginal syllabics UnicodeBlocks Закрытыя склады канадскіх абарыгенаў
+Ugaritic UnicodeBlocks Угарытскі
+CJK symbols and punctuation UnicodeBlocks Сімвалы і пунктуацыя CJK
+File CharacterWindow Файл
+Number forms UnicodeBlocks Формы лічбаў
+Cherokee UnicodeBlocks Чырокі
+Tags UnicodeBlocks Тэгі
+Cypriot syllabary UnicodeBlocks Кіпрскія склады
+Counting rod numerals UnicodeBlocks Лічбы злічальных палачак
+Latin extended A UnicodeBlocks Лацінка пашыраная A
+Miscellaneous symbols UnicodeBlocks Розныя сімвалы
+Saurashtra UnicodeBlocks Саураштра
+Optical character recognition UnicodeBlocks Аптычнае распазнанне сімвалаў
+Old Persian UnicodeBlocks Стары персідскі
+Combining diacritical marks supplement UnicodeBlocks Камбінаванне дыякрытыных метак дапаўненне
+Myanmar UnicodeBlocks Маянмар
+Latin extended D UnicodeBlocks Лацінка пашыраная D
+Byzantine musical symbols UnicodeBlocks Візантыйскія музычныя сімвалы
+Oriya UnicodeBlocks Oriya
+Tibetan UnicodeBlocks Tibetan
+Ancient Greek numbers UnicodeBlocks Старадаўнія грэчаскія лічбы
+Vai UnicodeBlocks Vai
Yi Radicals UnicodeBlocks Радыкалы Yi
+Cyrillic extended B UnicodeBlocks Кірыліца пашыраная B
+Quit CharacterWindow Выйсці
+Braille patterns UnicodeBlocks Шрыфт Брайля
+New Tai Lue UnicodeBlocks Новы Tai Lue
+Runic UnicodeBlocks Руны
+Miscellaneous mathematical symbols B UnicodeBlocks Розныя матэматычныя сімвалы B
+Cuneiform numbers and punctuation UnicodeBlocks Клінапісныя лічбы і пунктуацыя
+Private use area UnicodeBlocks Вобласць прыватнага карыстання
+CJK unified ideographs extension B UnicodeBlocks Іерогліфы CJK дапаўненне B
+Phags-pa UnicodeBlocks Phags-pa
+Kangxi radicals UnicodeBlocks Радыкалы Kangxi
+Dingbats UnicodeBlocks Dingbats
+Tai Xuan Jing symbols UnicodeBlocks Сімвалы Tai Xuan Jing
Yi syllables UnicodeBlocks Склады Yi
+Buhid UnicodeBlocks Бухід
+Telugu UnicodeBlocks Тэлугу
+Superscripts and subscripts UnicodeBlocks Суперскрыпты і субскрыпты
+Thai UnicodeBlocks Тайскі
+Deseret UnicodeBlocks Дэзэрэт
+Tifinagh UnicodeBlocks Тыфінаг
+Gurmukhi UnicodeBlocks Гурмухі
+CharacterMap System name Табліца сімвалаў
+Lao UnicodeBlocks Лао
+Gothic UnicodeBlocks Гатычны
+Limbu UnicodeBlocks Лімбу
+Rejang UnicodeBlocks Рэйанг
+Show private blocks CharacterWindow Паказваць прыватныя блокі
+Phoenician UnicodeBlocks Фінікійскі
+Mongolian UnicodeBlocks Мангольскі
+Supplemental arrows A UnicodeBlocks Дадатковыя стрэлкі А
+Miscellaneous symbols and arrows UnicodeBlocks Розныя сімвалы і стрэлкі
Yijing hexagram symbols UnicodeBlocks Гексаграмавыя сімвалы Yijing
+Supplemental mathematical operators UnicodeBlocks Дадатковыя матэматычныя аператары
+Enclosed CJK letters and months UnicodeBlocks Закрытыя літары і месяцы CJK
+Kayah Li UnicodeBlocks Кайя Лі
+Alphabetic presentation forms UnicodeBlocks Формы алфавітнага прадстаўлення
+Halfwidth and fullwidth forms UnicodeBlocks Паўшырынёвыя і поўнашырынёвыя формы
+Lydian UnicodeBlocks Лідыйскі
+Ethiopic supplement UnicodeBlocks Эфіопскі дапаўненні
+Latin extended B UnicodeBlocks Лацінка пашыраная B
+Box drawing UnicodeBlocks Рысаванне рамак
+Mathematical alphanumeric symbols UnicodeBlocks Матэматычныя сімвалы
+Copy character CharacterView Капіяваць сімвал
+Greek and Coptic UnicodeBlocks Грэчаскі і Каптычны
+Carian UnicodeBlocks Карыянскі
+Georgian UnicodeBlocks Грузінскі
+Phaistos disc UnicodeBlocks Фесцкі дыск
+Shavian UnicodeBlocks Шавійскі
+CJK compatibility UnicodeBlocks Сумяшчальнасць CJK
+Malayalam UnicodeBlocks Малаяламскі
+N'Ko UnicodeBlocks N'Ko
+Kannada UnicodeBlocks Каннада
+Copy as escaped byte string CharacterView Капіяваць кадаваным радком
+Phonetic extensions supplement UnicodeBlocks Фанетычныя пашырэнні дапаўненні
+Domino tiles UnicodeBlocks Пліткі даміно
+Katakana phonetic extensions UnicodeBlocks Фанетычныя пашырэнні Катакана
diff --git a/data/catalogs/apps/charactermap/de.catkeys b/data/catalogs/apps/charactermap/de.catkeys
index 072b916e33..dc70dd5a2f 100644
--- a/data/catalogs/apps/charactermap/de.catkeys
+++ b/data/catalogs/apps/charactermap/de.catkeys
@@ -1,181 +1,181 @@
-1 german x-vnd.Haiku-CharacterMap 4082916013
-Aegean numbers UnicodeBlocks Ägäische Zahlen
-Alphabetic presentation forms UnicodeBlocks Alphabetische Präsentationsformen
-Ancient Greek musical notation UnicodeBlocks Antike griechische musikalische Notation
-Ancient Greek numbers UnicodeBlocks Antike griechische Zahlen
-Ancient smbols UnicodeBlocks Antike Symbole
-Arabic UnicodeBlocks Arabisch
-Arabic presentation forms A UnicodeBlocks Arabische Präsentationsformen A
-Arabic presentation forms B UnicodeBlocks Arabische Präsentationsformen B
-Arabic supplement UnicodeBlocks Arabisch (Ergänzung)
-Armenian UnicodeBlocks Armenisch
-Arrows UnicodeBlocks Pfeile
-Balinese UnicodeBlocks Balinesisch
-Basic Latin UnicodeBlocks Lateinisch
-Bengali UnicodeBlocks Bengalisch
-Block elements UnicodeBlocks Blockelemente
-Bopomofo UnicodeBlocks Bopomofo
-Bopomofo extended UnicodeBlocks Bopomofo (Erweiterung)
-Box drawing UnicodeBlocks Rahmungssymbole
-Braille patterns UnicodeBlocks Braille
-Buginese UnicodeBlocks Buginesisch
-Buhid UnicodeBlocks Buhid
-Byzantine musical symbols UnicodeBlocks Byzantinische musikalische Symbole
-CJK compatibility UnicodeBlocks CJK: Kompatibilität
-CJK compatibility forms UnicodeBlocks CJK: Kompatibilitätsformen
-CJK compatibility ideographs UnicodeBlocks CJK: Kompatibilitätsideogramme
-CJK compatibility ideographs Supplement UnicodeBlocks CJK: Kompatibilitätsideogramme (Ergänzung)
-CJK radicals supplement UnicodeBlocks CJK: Wortstämme (Ergänzung)
-CJK strokes UnicodeBlocks CJK-Striche
-CJK symbols and punctuation UnicodeBlocks CJK: Symbole und Zeichensetzung
-CJK unified ideographs UnicodeBlocks CJK: Einheitliche Ideogramme
-CJK unified ideographs extension A UnicodeBlocks CJK: Vereinheitlichte Ideogramme (Erweiterung A)
-CJK unified ideographs extension B UnicodeBlocks CJK: Einheitliche Ideogramme (Erweiterung B)
-Carian UnicodeBlocks Karisch
-Cham UnicodeBlocks Cham
-CharacterMap System name Zeichentabelle
-Cherokee UnicodeBlocks Cherokee
-Clear CharacterWindow Löschen
-Code CharacterWindow Code
-Combining diacritical marks UnicodeBlocks Kombinierende diakritische Zeichen
-Combining diacritical marks for symbols UnicodeBlocks Kombinierende diakritische Zeichen für Symbole
-Combining diacritical marks supplement UnicodeBlocks Kombinierende diakritische Zeichen (Ergänzung)
-Combining half marks UnicodeBlocks Kombinierende halbe diakritische Zeichen
-Control pictures UnicodeBlocks Steuerzeichensymbole
-Coptic UnicodeBlocks Koptisch
-Copy as escaped byte string CharacterView Zeichen als Byte-Code kopieren
-Copy character CharacterView Zeichen kopieren
-Counting rod numerals UnicodeBlocks Rechenstab-Numerale
-Cuneiform UnicodeBlocks Keilschrift
-Cuneiform numbers and punctuation UnicodeBlocks Keilförmige Nummern und Zeichensetzung
-Currency symbols UnicodeBlocks Währungssymbole
-Cypriot syllabary UnicodeBlocks Zyprische Silben
-Cyrillic UnicodeBlocks Kyrillisch
-Cyrillic extended A UnicodeBlocks Kyrillisch (Erweiterung A)
-Cyrillic extended B UnicodeBlocks Kyrillisch (Erweiterung B)
-Cyrillic supplement UnicodeBlocks Kyrillisch (Ergänzung)
-Deseret UnicodeBlocks Deseret
-Devanagari UnicodeBlocks Devanagari
-Dingbats UnicodeBlocks Dingbats
-Domino tiles UnicodeBlocks Dominosteine
-Enclosed CJK letters and months UnicodeBlocks CJK: Eingeschlossene Buchstaben und Monate
+1 german x-vnd.Haiku-CharacterMap 2745781253
Enclosed alphanumerics UnicodeBlocks Eingeschlossene alphanumerische Zeichen
-Ethiopic UnicodeBlocks Äthiopisch
-Ethiopic extended UnicodeBlocks Äthiopisch (Erweiterung)
-Ethiopic supplement UnicodeBlocks Äthiopisch (Ergänzung)
-File CharacterWindow Datei
-Filter: CharacterWindow Filter:
-Font CharacterWindow Schriftart
-Font size: CharacterWindow Schriftgröße:
-General punctuation UnicodeBlocks Allgemeine Zeichensetzung
-Geometric shapes UnicodeBlocks Geometrische Formen
-Georgian UnicodeBlocks Georgisch
-Georgian supplement UnicodeBlocks Georgisch (Ergänzung)
-Glagotic UnicodeBlocks Glagolitisch
-Gothic UnicodeBlocks Gotisch
-Greek and Coptic UnicodeBlocks Griechisch und Koptisch
-Greek extended UnicodeBlocks Griechisch (Erweiterung)
-Gujarati UnicodeBlocks Gujarati
-Gurmukhi UnicodeBlocks Gurmukhi
-Halfwidth and fullwidth forms UnicodeBlocks Halb- und Vollbreite-Formen
-Hangul Jamo UnicodeBlocks Hangul Jamo
-Hangul compatibility Jamo UnicodeBlocks Hangul Kompatiblität Jamo
-Hangul syllables UnicodeBlocks Hangul-Silben
-Hanunoo UnicodeBlocks Hanunoo
-Hebrew UnicodeBlocks Hebräisch
-Hiragana UnicodeBlocks Hiragana
-IPA extensions UnicodeBlocks IPA (Erweiterungen)
-Ideographic description characters UnicodeBlocks Zeichen für ideographische Beschreibung
-Kanbun UnicodeBlocks Kanbun
-Kangxi radicals UnicodeBlocks Kangxi-Radikale
-Kannada UnicodeBlocks Kanaresisch
-Katakana UnicodeBlocks Katakana
-Katakana phonetic extensions UnicodeBlocks Katakana: phonetische Erweiterungen
-Kayah Li UnicodeBlocks Kayah Li
-Kharoshthi UnicodeBlocks Kharoshthi
-Khmer UnicodeBlocks Khmer
-Khmer symbols UnicodeBlocks Khmer-Symbole
-Lao UnicodeBlocks Lao
-Latin extended A UnicodeBlocks Lateinisch (Erweiterung A)
-Latin extended B UnicodeBlocks Lateinisch (Erweiterung B)
-Latin extended C UnicodeBlocks Lateinisch (Erweiterung C)
-Latin extended D UnicodeBlocks Lateinisch (Erweiterung D)
-Latin extended additional UnicodeBlocks Lateinisch (zusätzliche Erweiterung)
-Latin-1 supplement UnicodeBlocks Lateinisch (Ergänzung)
-Lepcha UnicodeBlocks Lepcha
-Letterlike symbols UnicodeBlocks Buchstabenähnliche Symbole
-Limbu UnicodeBlocks Limbu
-Linear B ideograms UnicodeBlocks Linearschrift B: Ideogramme
-Linear B syllabary UnicodeBlocks Linearschrift B: Silben
-Lycian UnicodeBlocks Lykisch
-Lydian UnicodeBlocks Lydisch
-Mahjong tiles UnicodeBlocks Mahjongsteine
-Malayalam UnicodeBlocks Malayalam
-Mathematical alphanumeric symbols UnicodeBlocks Mathematische alphanumerische Symbole
-Mathematical operators UnicodeBlocks Mathematische Operatoren
-Miscellaneous mathematical symbols A UnicodeBlocks Diverse mathematische Symbole A
-Miscellaneous mathematical symbols B UnicodeBlocks Diverse mathematische Symbole B
-Miscellaneous symbols UnicodeBlocks Diverse Symbole
-Miscellaneous symbols and arrows UnicodeBlocks Diverse Symbole und Pfeile
-Miscellaneous technical UnicodeBlocks Diverse technische Zeichen
-Modifier tone letters UnicodeBlocks Modifizierungszeichen für Betonung
-Mongolian UnicodeBlocks Mongolisch
-Muscial symbols UnicodeBlocks Musikalische Symbole
-Myanmar UnicodeBlocks Burmesisch
-N'Ko UnicodeBlocks N'Ko
-New Tai Lue UnicodeBlocks Neu-Tai-Lue
-Number forms UnicodeBlocks Zahlenformen
-Ogham UnicodeBlocks Ogham
-Ol Chiki UnicodeBlocks Ol Chiki
-Old Persian UnicodeBlocks Alt-Persisch
-Old italic UnicodeBlocks Etruskisch
-Optical character recognition UnicodeBlocks Optische Zeichenerkennung
-Oriya UnicodeBlocks Oriya
-Osmanya UnicodeBlocks Osmanya
-Phags-pa UnicodeBlocks Phags-pa
-Phaistos disc UnicodeBlocks Diskos von Phaistos
-Phoenician UnicodeBlocks Phönizisch
-Phonetic extensions UnicodeBlocks Phonetische Erweiterungen
-Phonetic extensions supplement UnicodeBlocks Phonetische Erweiterungen (Ergänzung)
-Private use area UnicodeBlocks Privater Bereich
-Quit CharacterWindow Beenden
-Rejang UnicodeBlocks Rejang
-Runic UnicodeBlocks Runisch
-Saurashtra UnicodeBlocks Saurashtra
-Shavian UnicodeBlocks Shaw
-Show private blocks CharacterWindow Private Blöcke zeigen
-Sinhala UnicodeBlocks Sinhala
-Small form variants UnicodeBlocks Varianten kleiner Formen
-Spacing modifier letters UnicodeBlocks IPA (Modifizierungszeichen)
-Specials UnicodeBlocks Spezielles
-Sundanese UnicodeBlocks Sudanesisch
-Superscripts and subscripts UnicodeBlocks Hoch- und Tiefstellungen
-Supplement punctuation UnicodeBlocks Ergänzung Zeichensetzung
-Supplemental arrows A UnicodeBlocks Ergänzende Pfeile A
-Supplemental arrows B UnicodeBlocks Ergänzende Pfeile B
-Supplemental mathematical operators UnicodeBlocks Ergänzende mathematische Operatoren
-Supplementary private use area A UnicodeBlocks Ergänzender privater Bereich A
-Supplementary private use area B UnicodeBlocks Ergänzender privater Bereich B
-Syloti Nagri UnicodeBlocks Syloti Nagri
-Syriac UnicodeBlocks Syrisch
-Tagalog UnicodeBlocks Tagalog
-Tagbanwa UnicodeBlocks Tagbanuwa
-Tags UnicodeBlocks Formatierungszeichen
-Tai Le UnicodeBlocks Tai Le
-Tai Xuan Jing symbols UnicodeBlocks Tai-XUan-Jing-Symbole
-Tamil UnicodeBlocks Tamil
-Telugu UnicodeBlocks Telugu
-Thaana UnicodeBlocks Thaana
-Thai UnicodeBlocks Thai
-Tibetan UnicodeBlocks Tibetisch
-Tifinagh UnicodeBlocks Tifinagh
-Ugaritic UnicodeBlocks Ugaritisch
-Unified Canadian Aboriginal syllabics UnicodeBlocks Vereinheitlichte Silbenzeichen kanadischer Ureinwohner
-Vai UnicodeBlocks Vai
-Variation selectors UnicodeBlocks Variationsauswahl
-Variation selectors supplement UnicodeBlocks Abweichende Selektoren (Ergänzung)
-Vertical forms UnicodeBlocks Vertikale Formen
+Basic Latin UnicodeBlocks Lateinisch
View CharacterWindow Ansicht
+Latin-1 supplement UnicodeBlocks Lateinisch (Ergänzung)
+Hebrew UnicodeBlocks Hebräisch
+Georgian supplement UnicodeBlocks Georgisch (Ergänzung)
+CJK unified ideographs UnicodeBlocks CJK: Einheitliche Ideogramme
+Modifier tone letters UnicodeBlocks Modifizierungszeichen für Betonung
+Khmer UnicodeBlocks Khmer
+Supplementary private use area A UnicodeBlocks Ergänzender privater Bereich A
+Hanunoo UnicodeBlocks Hanunoo
+Latin extended additional UnicodeBlocks Lateinisch (zusätzliche Erweiterung)
+Arabic presentation forms A UnicodeBlocks Arabische Präsentationsformen A
+Greek extended UnicodeBlocks Griechisch (Erweiterung)
+Linear B ideograms UnicodeBlocks Linearschrift B: Ideogramme
+Devanagari UnicodeBlocks Devanagari
+Armenian UnicodeBlocks Armenisch
+Glagotic UnicodeBlocks Glagolitisch
+Mathematical operators UnicodeBlocks Mathematische Operatoren
+General punctuation UnicodeBlocks Allgemeine Zeichensetzung
+Miscellaneous technical UnicodeBlocks Diverse technische Zeichen
+Vertical forms UnicodeBlocks Vertikale Formen
+Ol Chiki UnicodeBlocks Ol Chiki
+Arabic UnicodeBlocks Arabisch
+Ethiopic extended UnicodeBlocks Äthiopisch (Erweiterung)
+Arrows UnicodeBlocks Pfeile
+Font CharacterWindow Schriftart
+Variation selectors supplement UnicodeBlocks Abweichende Selektoren (Ergänzung)
+Gujarati UnicodeBlocks Gujarati
+Cuneiform UnicodeBlocks Keilschrift
+CJK radicals supplement UnicodeBlocks CJK: Wortstämme (Ergänzung)
+Balinese UnicodeBlocks Balinesisch
+Cham UnicodeBlocks Cham
+Specials UnicodeBlocks Spezielles
+CJK compatibility ideographs UnicodeBlocks CJK: Kompatibilitätsideogramme
+Phonetic extensions UnicodeBlocks Phonetische Erweiterungen
+Khmer symbols UnicodeBlocks Khmer-Symbole
+Tagbanwa UnicodeBlocks Tagbanuwa
+Kanbun UnicodeBlocks Kanbun
+Syriac UnicodeBlocks Syrisch
+CJK compatibility ideographs Supplement UnicodeBlocks CJK: Kompatibilitätsideogramme (Ergänzung)
+Musical symbols UnicodeBlocks Musik-Symbole
+Hangul syllables UnicodeBlocks Hangul-Silben
+Coptic UnicodeBlocks Koptisch
+Tai Le UnicodeBlocks Tai Le
+Mahjong tiles UnicodeBlocks Mahjongsteine
+Spacing modifier letters UnicodeBlocks IPA (Modifizierungszeichen)
+Aegean numbers UnicodeBlocks Ägäische Zahlen
+CJK strokes UnicodeBlocks CJK-Striche
+Old italic UnicodeBlocks Etruskisch
+Supplemental arrows B UnicodeBlocks Ergänzende Pfeile B
+Cyrillic extended A UnicodeBlocks Kyrillisch (Erweiterung A)
+Kharoshthi UnicodeBlocks Kharoshthi
+Combining half marks UnicodeBlocks Kombinierende halbe diakritische Zeichen
+Cyrillic UnicodeBlocks Kyrillisch
+Katakana UnicodeBlocks Katakana
+Block elements UnicodeBlocks Blockelemente
+Clear CharacterWindow Löschen
+Sundanese UnicodeBlocks Sudanesisch
+Miscellaneous mathematical symbols A UnicodeBlocks Diverse mathematische Symbole A
+Cyrillic supplement UnicodeBlocks Kyrillisch (Ergänzung)
+Small form variants UnicodeBlocks Varianten kleiner Formen
+IPA extensions UnicodeBlocks IPA (Erweiterungen)
+Thaana UnicodeBlocks Thaana
+Ogham UnicodeBlocks Ogham
+Combining diacritical marks for symbols UnicodeBlocks Kombinierende diakritische Zeichen für Symbole
+Syloti Nagri UnicodeBlocks Syloti Nagri
+Arabic supplement UnicodeBlocks Arabisch (Ergänzung)
+Latin extended C UnicodeBlocks Lateinisch (Erweiterung C)
+Ancient smbols UnicodeBlocks Antike Symbole
+Bopomofo extended UnicodeBlocks Bopomofo (Erweiterung)
+Lycian UnicodeBlocks Lykisch
+Font size: CharacterWindow Schriftgröße:
+Osmanya UnicodeBlocks Osmanya
+Ethiopic UnicodeBlocks Äthiopisch
+Bengali UnicodeBlocks Bengalisch
+Supplementary private use area B UnicodeBlocks Ergänzender privater Bereich B
+CJK unified ideographs extension A UnicodeBlocks CJK: Vereinheitlichte Ideogramme (Erweiterung A)
+Filter: CharacterWindow Filter:
+Hangul compatibility Jamo UnicodeBlocks Hangul Kompatiblität Jamo
+Ideographic description characters UnicodeBlocks Zeichen für ideographische Beschreibung
+Arabic presentation forms B UnicodeBlocks Arabische Präsentationsformen B
+CJK compatibility forms UnicodeBlocks CJK: Kompatibilitätsformen
+Hiragana UnicodeBlocks Hiragana
+Tagalog UnicodeBlocks Tagalog
+Control pictures UnicodeBlocks Steuerzeichensymbole
+Variation selectors UnicodeBlocks Variationsauswahl
+Linear B syllabary UnicodeBlocks Linearschrift B: Silben
+Buginese UnicodeBlocks Buginesisch
+Bopomofo UnicodeBlocks Bopomofo
+Code CharacterWindow Code
+Lepcha UnicodeBlocks Lepcha
+Sinhala UnicodeBlocks Sinhala
+Ancient Greek musical notation UnicodeBlocks Antike griechische musikalische Notation
+Geometric shapes UnicodeBlocks Geometrische Formen
+Letterlike symbols UnicodeBlocks Buchstabenähnliche Symbole
+Hangul Jamo UnicodeBlocks Hangul Jamo
+Tamil UnicodeBlocks Tamil
+Currency symbols UnicodeBlocks Währungssymbole
+Combining diacritical marks UnicodeBlocks Kombinierende diakritische Zeichen
+Supplement punctuation UnicodeBlocks Ergänzung Zeichensetzung
+Unified Canadian Aboriginal syllabics UnicodeBlocks Vereinheitlichte Silbenzeichen kanadischer Ureinwohner
+Ugaritic UnicodeBlocks Ugaritisch
+CJK symbols and punctuation UnicodeBlocks CJK: Symbole und Zeichensetzung
+File CharacterWindow Datei
+Number forms UnicodeBlocks Zahlenformen
+Cherokee UnicodeBlocks Cherokee
+Tags UnicodeBlocks Formatierungszeichen
+Cypriot syllabary UnicodeBlocks Zyprische Silben
+Counting rod numerals UnicodeBlocks Rechenstab-Numerale
+Latin extended A UnicodeBlocks Lateinisch (Erweiterung A)
+Miscellaneous symbols UnicodeBlocks Diverse Symbole
+Saurashtra UnicodeBlocks Saurashtra
+Optical character recognition UnicodeBlocks Optische Zeichenerkennung
+Old Persian UnicodeBlocks Alt-Persisch
+Combining diacritical marks supplement UnicodeBlocks Kombinierende diakritische Zeichen (Ergänzung)
+Myanmar UnicodeBlocks Burmesisch
+Latin extended D UnicodeBlocks Lateinisch (Erweiterung D)
+Byzantine musical symbols UnicodeBlocks Byzantinische musikalische Symbole
+Oriya UnicodeBlocks Oriya
+Tibetan UnicodeBlocks Tibetisch
+Ancient Greek numbers UnicodeBlocks Antike griechische Zahlen
+Vai UnicodeBlocks Vai
Yi Radicals UnicodeBlocks Yi-Radikale
+Cyrillic extended B UnicodeBlocks Kyrillisch (Erweiterung B)
+Quit CharacterWindow Beenden
+Braille patterns UnicodeBlocks Braille
+New Tai Lue UnicodeBlocks Neu-Tai-Lue
+Runic UnicodeBlocks Runisch
+Miscellaneous mathematical symbols B UnicodeBlocks Diverse mathematische Symbole B
+Cuneiform numbers and punctuation UnicodeBlocks Keilförmige Nummern und Zeichensetzung
+Private use area UnicodeBlocks Privater Bereich
+CJK unified ideographs extension B UnicodeBlocks CJK: Einheitliche Ideogramme (Erweiterung B)
+Phags-pa UnicodeBlocks Phags-pa
+Kangxi radicals UnicodeBlocks Kangxi-Radikale
+Dingbats UnicodeBlocks Dingbats
+Tai Xuan Jing symbols UnicodeBlocks Tai-XUan-Jing-Symbole
Yi syllables UnicodeBlocks Yi-Silben
+Buhid UnicodeBlocks Buhid
+Telugu UnicodeBlocks Telugu
+Superscripts and subscripts UnicodeBlocks Hoch- und Tiefstellungen
+Thai UnicodeBlocks Thai
+Deseret UnicodeBlocks Deseret
+Tifinagh UnicodeBlocks Tifinagh
+Gurmukhi UnicodeBlocks Gurmukhi
+CharacterMap System name Zeichentabelle
+Lao UnicodeBlocks Lao
+Gothic UnicodeBlocks Gotisch
+Limbu UnicodeBlocks Limbu
+Rejang UnicodeBlocks Rejang
+Show private blocks CharacterWindow Private Blöcke zeigen
+Phoenician UnicodeBlocks Phönizisch
+Mongolian UnicodeBlocks Mongolisch
+Supplemental arrows A UnicodeBlocks Ergänzende Pfeile A
+Miscellaneous symbols and arrows UnicodeBlocks Diverse Symbole und Pfeile
Yijing hexagram symbols UnicodeBlocks Yijing: Hexagramm-Symbole
+Supplemental mathematical operators UnicodeBlocks Ergänzende mathematische Operatoren
+Enclosed CJK letters and months UnicodeBlocks CJK: Eingeschlossene Buchstaben und Monate
+Kayah Li UnicodeBlocks Kayah Li
+Alphabetic presentation forms UnicodeBlocks Alphabetische Präsentationsformen
+Halfwidth and fullwidth forms UnicodeBlocks Halb- und Vollbreite-Formen
+Lydian UnicodeBlocks Lydisch
+Ethiopic supplement UnicodeBlocks Äthiopisch (Ergänzung)
+Latin extended B UnicodeBlocks Lateinisch (Erweiterung B)
+Box drawing UnicodeBlocks Rahmungssymbole
+Mathematical alphanumeric symbols UnicodeBlocks Mathematische alphanumerische Symbole
+Copy character CharacterView Zeichen kopieren
+Greek and Coptic UnicodeBlocks Griechisch und Koptisch
+Carian UnicodeBlocks Karisch
+Georgian UnicodeBlocks Georgisch
+Phaistos disc UnicodeBlocks Diskos von Phaistos
+Shavian UnicodeBlocks Shaw
+CJK compatibility UnicodeBlocks CJK: Kompatibilität
+Malayalam UnicodeBlocks Malayalam
+N'Ko UnicodeBlocks N'Ko
+Kannada UnicodeBlocks Kanaresisch
+Copy as escaped byte string CharacterView Zeichen als Byte-Code kopieren
+Phonetic extensions supplement UnicodeBlocks Phonetische Erweiterungen (Ergänzung)
+Domino tiles UnicodeBlocks Dominosteine
+Katakana phonetic extensions UnicodeBlocks Katakana: phonetische Erweiterungen
diff --git a/data/catalogs/apps/charactermap/fi.catkeys b/data/catalogs/apps/charactermap/fi.catkeys
index 3af4dcba36..5095aa5f36 100644
--- a/data/catalogs/apps/charactermap/fi.catkeys
+++ b/data/catalogs/apps/charactermap/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Haiku-CharacterMap 4082916013
+1 finnish x-vnd.Haiku-CharacterMap 2745781253
Aegean numbers UnicodeBlocks Aegean-numerot
Alphabetic presentation forms UnicodeBlocks Aakkosellinen esitysmuoto
Ancient Greek musical notation UnicodeBlocks Antiikin kreikan nuottikirjoitus
@@ -33,7 +33,7 @@ CJK unified ideographs extension A UnicodeBlocks CJK-yhtenäinen ideogrammilaaj
CJK unified ideographs extension B UnicodeBlocks CJK-yhdistetty ideograafinen laajennus B
Carian UnicodeBlocks Carian
Cham UnicodeBlocks Cham
-CharacterMap System name Merkkikartta
+CharacterMap System name Merkkitaulukot
Cherokee UnicodeBlocks Cherokee
Clear CharacterWindow Nollaa
Code CharacterWindow Koodi
@@ -120,7 +120,7 @@ Miscellaneous symbols and arrows UnicodeBlocks Sekalaiset symbolit ja nuolet
Miscellaneous technical UnicodeBlocks Sekalaiset tekniset
Modifier tone letters UnicodeBlocks Määretoonikirjaimet
Mongolian UnicodeBlocks Mongolian kieli
-Muscial symbols UnicodeBlocks Musikaaliset symbolit
+Musical symbols UnicodeBlocks Musiikkisymbolit
Myanmar UnicodeBlocks Burman kieli
N'Ko UnicodeBlocks N'Ko-kieli
New Tai Lue UnicodeBlocks Uusi Tai Lue
diff --git a/data/catalogs/apps/charactermap/fr.catkeys b/data/catalogs/apps/charactermap/fr.catkeys
index 74ac34c095..3c95d06751 100644
--- a/data/catalogs/apps/charactermap/fr.catkeys
+++ b/data/catalogs/apps/charactermap/fr.catkeys
@@ -1,8 +1,9 @@
-1 french x-vnd.Haiku-CharacterMap 1451954922
+1 french x-vnd.Haiku-CharacterMap 1545664922
Aegean numbers UnicodeBlocks Nombres égéens
Alphabetic presentation forms UnicodeBlocks Formes de présentation alphabétiques
Ancient Greek musical notation UnicodeBlocks Musique grecque ancienne
Ancient Greek numbers UnicodeBlocks Nombres grecs anciens
+Ancient smbols UnicodeBlocks Symboles anciens
Arabic UnicodeBlocks Arabe
Arabic presentation forms A UnicodeBlocks Formes A de présentation arabes
Arabic presentation forms B UnicodeBlocks Formes B de présentation arabes
@@ -42,6 +43,8 @@ Combining diacritical marks supplement UnicodeBlocks Supplément aux marques di
Combining half marks UnicodeBlocks Demi-signes combinatoires
Control pictures UnicodeBlocks Pictogrammes de commande
Coptic UnicodeBlocks Copte
+Copy as escaped byte string CharacterView Copier une chaîne avec échappement
+Copy character CharacterView Copier un caractère
Counting rod numerals UnicodeBlocks Chiffres-bâtonnets chinois
Cuneiform UnicodeBlocks Cunéiforme
Cuneiform numbers and punctuation UnicodeBlocks Nombres et ponctuation cunéiformes
@@ -117,7 +120,6 @@ Miscellaneous symbols and arrows UnicodeBlocks Divers symboles et flèches
Miscellaneous technical UnicodeBlocks Signes techniques divers
Modifier tone letters UnicodeBlocks Lettres modificatives de ton
Mongolian UnicodeBlocks Mongol
-Muscial symbols UnicodeBlocks Symboles musciaux
Myanmar UnicodeBlocks Myanmar (Birman)
N'Ko UnicodeBlocks N'Ko
New Tai Lue UnicodeBlocks Nouveau taï lü
diff --git a/data/catalogs/apps/charactermap/hr.catkeys b/data/catalogs/apps/charactermap/hr.catkeys
new file mode 100644
index 0000000000..15a9a0547c
--- /dev/null
+++ b/data/catalogs/apps/charactermap/hr.catkeys
@@ -0,0 +1,62 @@
+1 croatian x-vnd.Haiku-CharacterMap 2544432910
+Ancient Greek musical notation UnicodeBlocks Drevna grčka glazbena notacija
+Ancient Greek numbers UnicodeBlocks Starogrčki brojevi
+Ancient smbols UnicodeBlocks Drevni simboli
+Arabic UnicodeBlocks Arapski
+Armenian UnicodeBlocks Armenski
+Arrows UnicodeBlocks Strelice
+Bengali UnicodeBlocks Bengalski
+Braille patterns UnicodeBlocks Brajlovi uzorci
+CharacterMap System name Karta znakova
+Code CharacterWindow Kod
+Combining diacritical marks UnicodeBlocks Kobinirani dijakritički znakovi
+Coptic UnicodeBlocks Koptski
+Currency symbols UnicodeBlocks Simboli valute
+Cyrillic UnicodeBlocks Ćirilićno
+Devanagari UnicodeBlocks Devangari
+Domino tiles UnicodeBlocks Domino pločice
+Ethiopic UnicodeBlocks Etiopski
+Ethiopic extended UnicodeBlocks Etiopski prošireni
+File CharacterWindow Datoteka
+Filter: CharacterWindow Filter:
+Font CharacterWindow Font
+Font size: CharacterWindow Veličina fonta:
+Geometric shapes UnicodeBlocks Geometrijski oblici
+Gothic UnicodeBlocks Gotički
+Greek and Coptic UnicodeBlocks Grčki i koptski
+Greek extended UnicodeBlocks Grčki prošireni
+Gujarati UnicodeBlocks Gujarati
+Hebrew UnicodeBlocks Hebrejski
+Hiragana UnicodeBlocks Hiragana
+IPA extensions UnicodeBlocks IPA proširenja
+Ideographic description characters UnicodeBlocks Ideografski opisni znakovi
+Katakana UnicodeBlocks Katakana
+Khmer UnicodeBlocks Kmerski
+Khmer symbols UnicodeBlocks Kmerski simboli
+Mahjong tiles UnicodeBlocks Mahjong pločice
+Mathematical operators UnicodeBlocks Matematički operatori
+Miscellaneous mathematical symbols A UnicodeBlocks Ostali matematički simboli A
+Miscellaneous mathematical symbols B UnicodeBlocks Ostali matematički simboli B
+Miscellaneous symbols UnicodeBlocks Ostali simboli
+Miscellaneous symbols and arrows UnicodeBlocks Ostali simboli i strelice
+Mongolian UnicodeBlocks Mongolski
+Muscial symbols UnicodeBlocks Glazbeni simboli
+Myanmar UnicodeBlocks Mijanmarski
+New Tai Lue UnicodeBlocks Novi Tai Lue
+Number forms UnicodeBlocks Forme brojeva
+Ogham UnicodeBlocks Ogham
+Old Persian UnicodeBlocks Staroperzijski
+Old italic UnicodeBlocks Staroitalski
+Phoenician UnicodeBlocks Fenički
+Phonetic extensions UnicodeBlocks Fonetička proširenja
+Quit CharacterWindow Isključi
+Runic UnicodeBlocks Runski
+Tagalog UnicodeBlocks Tagalog
+Tagbanwa UnicodeBlocks Tagbanwa
+Tai Le UnicodeBlocks Tai Le
+Tai Xuan Jing symbols UnicodeBlocks Tai Xuan Jing simboli
+Tamil UnicodeBlocks Tamilski
+Thaana UnicodeBlocks Thaana
+Tibetan UnicodeBlocks Tibetanski
+Vertical forms UnicodeBlocks Okomite forme
+View CharacterWindow Pogled
diff --git a/data/catalogs/apps/charactermap/lt.catkeys b/data/catalogs/apps/charactermap/lt.catkeys
new file mode 100644
index 0000000000..d14d3b226a
--- /dev/null
+++ b/data/catalogs/apps/charactermap/lt.catkeys
@@ -0,0 +1,181 @@
+1 lithuanian x-vnd.Haiku-CharacterMap 2745781253
+Enclosed alphanumerics UnicodeBlocks Įrėminti teksto ženklai
+Basic Latin UnicodeBlocks Baziniai lotynų
+View CharacterWindow Rodymas
+Latin-1 supplement UnicodeBlocks Lotynų-1 papildymas
+Hebrew UnicodeBlocks Hebrajų
+Georgian supplement UnicodeBlocks Gruzinų papildomi
+CJK unified ideographs UnicodeBlocks CJK unifikuotos ideogramos
+Modifier tone letters UnicodeBlocks Tono keitimo raidės
+Khmer UnicodeBlocks Khmerų
+Supplementary private use area A UnicodeBlocks Papildoma privačioji sritis A
+Hanunoo UnicodeBlocks Hanunoo
+Latin extended additional UnicodeBlocks Lotynų papildomas plėtinys
+Arabic presentation forms A UnicodeBlocks Arabų atvaizdavimo formos A
+Greek extended UnicodeBlocks Graikų papildomi
+Linear B ideograms UnicodeBlocks Linijinės B ideogramos
+Devanagari UnicodeBlocks Devanagarių
+Armenian UnicodeBlocks Armėnų
+Glagotic UnicodeBlocks Glagolica
+Mathematical operators UnicodeBlocks Matematiniai operatoriai
+General punctuation UnicodeBlocks Bendrieji skyrybos ženklai
+Miscellaneous technical UnicodeBlocks Įvairūs techniniai ženklai
+Vertical forms UnicodeBlocks Vertikalios formos
+Ol Chiki UnicodeBlocks Ol-čiki
+Arabic UnicodeBlocks Arabų
+Ethiopic extended UnicodeBlocks Etiopų sudėtingesni
+Arrows UnicodeBlocks Rodyklės
+Font CharacterWindow Šriftas
+Variation selectors supplement UnicodeBlocks Papildomas variacijų pasirinkimas
+Gujarati UnicodeBlocks Gudžaratų
+Cuneiform UnicodeBlocks Dantiraštis
+CJK radicals supplement UnicodeBlocks CJK rapildomi ideogramų elementai
+Balinese UnicodeBlocks Baliečių
+Cham UnicodeBlocks Čamų
+Specials UnicodeBlocks Specialieji
+CJK compatibility ideographs UnicodeBlocks CJK suderinamumo ideogramos
+Phonetic extensions UnicodeBlocks Fonetiniai plėtiniai
+Khmer symbols UnicodeBlocks Khmerų simboliai
+Tagbanwa UnicodeBlocks Tagbanva
+Kanbun UnicodeBlocks Kanbun
+Syriac UnicodeBlocks Sirų
+CJK compatibility ideographs Supplement UnicodeBlocks CJK suderinamumo papildomos ideogramos
+Musical symbols UnicodeBlocks Muzikiniai simboliai
+Hangul syllables UnicodeBlocks Hangulo skiemenys
+Coptic UnicodeBlocks Koptų
+Tai Le UnicodeBlocks Tai Le
+Mahjong tiles UnicodeBlocks Mažongo kaladėlės
+Spacing modifier letters UnicodeBlocks Plotį turintys modifikaciniai ženklai
+Aegean numbers UnicodeBlocks Egėjo skaičiai
+CJK strokes UnicodeBlocks CJK brūkšniai
+Old italic UnicodeBlocks Etruskų
+Supplemental arrows B UnicodeBlocks Papildomos rodyklės B
+Cyrillic extended A UnicodeBlocks Kirilicos papildomi A
+Kharoshthi UnicodeBlocks Kharošthi
+Combining half marks UnicodeBlocks Kombinaciniai pusiniai ženklai
+Cyrillic UnicodeBlocks Kirilica
+Katakana UnicodeBlocks Katakana
+Block elements UnicodeBlocks Blokiniai elementai
+Clear CharacterWindow Išvalyti
+Sundanese UnicodeBlocks Sundų
+Miscellaneous mathematical symbols A UnicodeBlocks Įvairūs matematiniai simboliai A
+Cyrillic supplement UnicodeBlocks Kirilicos papildomi
+Small form variants UnicodeBlocks Sumažinti skyrybos ženklai
+IPA extensions UnicodeBlocks IPA plėtiniai
+Thaana UnicodeBlocks Tana
+Ogham UnicodeBlocks Ogamas
+Combining diacritical marks for symbols UnicodeBlocks Kombinaciniai diakritiniai ženklai simboliams
+Syloti Nagri UnicodeBlocks Silhato nagari
+Arabic supplement UnicodeBlocks Arabų papildomi
+Latin extended C UnicodeBlocks Lotynų papildomi C
+Ancient smbols UnicodeBlocks Senoviniai ženklai
+Bopomofo extended UnicodeBlocks Bopomofo papildomi
+Lycian UnicodeBlocks Likų
+Font size: CharacterWindow Šrifto dydis:
+Osmanya UnicodeBlocks Osmanų
+Ethiopic UnicodeBlocks Etiopų
+Bengali UnicodeBlocks Bengalų
+Supplementary private use area B UnicodeBlocks Papildoma privačioji sritis B
+CJK unified ideographs extension A UnicodeBlocks CJK unifikuotų ideogramų plėtinys A
+Filter: CharacterWindow Filtras:
+Hangul compatibility Jamo UnicodeBlocks Hangulo suderinamumo rašmenys
+Ideographic description characters UnicodeBlocks Ideograminių aprašų ženklai
+Arabic presentation forms B UnicodeBlocks Arabų atvaizdavimo formos B
+CJK compatibility forms UnicodeBlocks CJK suderinamumo formos
+Hiragana UnicodeBlocks Hiragana
+Tagalog UnicodeBlocks Tagalų
+Control pictures UnicodeBlocks Valdymo ženklų atvaizdavimo simboliai
+Variation selectors UnicodeBlocks Variacijų parinkimo ženklai
+Linear B syllabary UnicodeBlocks Linijiniai B skiemenys
+Buginese UnicodeBlocks Lontara
+Bopomofo UnicodeBlocks Bopomofo
+Code CharacterWindow Kodas
+Lepcha UnicodeBlocks Lepča
+Sinhala UnicodeBlocks Sinhalų
+Ancient Greek musical notation UnicodeBlocks Senovės graikų muzikos notacija
+Geometric shapes UnicodeBlocks Geometrinės figūros
+Letterlike symbols UnicodeBlocks Į raides panašūs ženklai
+Hangul Jamo UnicodeBlocks Hangulo rašmenys
+Tamil UnicodeBlocks Tamilų
+Currency symbols UnicodeBlocks Valiutų ženklai
+Combining diacritical marks UnicodeBlocks Kombinaciniai diakritiniai ženklai
+Supplement punctuation UnicodeBlocks Papildomi skyrybos ženklai
+Unified Canadian Aboriginal syllabics UnicodeBlocks Unifikuoti Kanados aborigenų skiemenys
+Ugaritic UnicodeBlocks Ugaritų
+CJK symbols and punctuation UnicodeBlocks CJK simboliai ir skyryba
+File CharacterWindow Failas
+Number forms UnicodeBlocks Skaičių formos
+Cherokee UnicodeBlocks Čerokių
+Tags UnicodeBlocks Gairės
+Cypriot syllabary UnicodeBlocks Kipro skiemenys
+Counting rod numerals UnicodeBlocks Skaičiavimo lazdelių skaimenys
+Latin extended A UnicodeBlocks Lotynų papildomi A
+Miscellaneous symbols UnicodeBlocks Įvairūs simboliai
+Saurashtra UnicodeBlocks Sauraštra
+Optical character recognition UnicodeBlocks Optinis ženklų atpažinimas
+Old Persian UnicodeBlocks Senovės persų dantiraštis
+Combining diacritical marks supplement UnicodeBlocks Papildomi kombinaciniai diakritiniai ženklai
+Myanmar UnicodeBlocks Birmiečių
+Latin extended D UnicodeBlocks Lotynų papildomi D
+Byzantine musical symbols UnicodeBlocks Bizantiški muzikiniai simboliai
+Oriya UnicodeBlocks Orijų
+Tibetan UnicodeBlocks Tibetiečių
+Ancient Greek numbers UnicodeBlocks Senovės graikų skaičiai
+Vai UnicodeBlocks Vai
+Yi Radicals UnicodeBlocks Ji ideogramų elementai
+Cyrillic extended B UnicodeBlocks Kirilicos papildomi B
+Quit CharacterWindow Baigti darbą
+Braille patterns UnicodeBlocks Brailio raštas
+New Tai Lue UnicodeBlocks Naujasis Tai Liu
+Runic UnicodeBlocks Runos
+Miscellaneous mathematical symbols B UnicodeBlocks Įvairūs matematiniai simboliai B
+Cuneiform numbers and punctuation UnicodeBlocks Dantiraščio skaičiai ir skyryba
+Private use area UnicodeBlocks Privačioji sritis
+CJK unified ideographs extension B UnicodeBlocks CJK unifikuotų ideogramų plėtinys B
+Phags-pa UnicodeBlocks Fags-pa
+Kangxi radicals UnicodeBlocks Kangzi raktai
+Dingbats UnicodeBlocks Puošybiniai ženkleliai
+Tai Xuan Jing symbols UnicodeBlocks Tai Xuan Jing simboliai
+Yi syllables UnicodeBlocks Ji skiemenys
+Buhid UnicodeBlocks Buhidas
+Telugu UnicodeBlocks Telugų
+Superscripts and subscripts UnicodeBlocks Viršutiniai ir apatiniai indeksai
+Thai UnicodeBlocks Tajų
+Deseret UnicodeBlocks Deseretas
+Tifinagh UnicodeBlocks Tifinagas
+Gurmukhi UnicodeBlocks Gurmukhi
+CharacterMap System name Simbolių lentelė
+Lao UnicodeBlocks Laosiečių
+Gothic UnicodeBlocks Gotų
+Limbu UnicodeBlocks Limbu
+Rejang UnicodeBlocks Redžangas
+Show private blocks CharacterWindow Rodyti privačiuosius blokus
+Phoenician UnicodeBlocks Finikiečių
+Mongolian UnicodeBlocks Mongolų
+Supplemental arrows A UnicodeBlocks Papildomos rodyklės A
+Miscellaneous symbols and arrows UnicodeBlocks Įvairūs simboliai ir rodyklės
+Yijing hexagram symbols UnicodeBlocks Idzingo heksagramų simboliai
+Supplemental mathematical operators UnicodeBlocks Papildomi matematiniai operatoriai
+Enclosed CJK letters and months UnicodeBlocks Įrėmintos CJK raidės ir mėnesiai
+Kayah Li UnicodeBlocks Kajah li
+Alphabetic presentation forms UnicodeBlocks Abėcėlinės atvaizdavimo formos
+Halfwidth and fullwidth forms UnicodeBlocks Pusinio ir pilno pločio formos
+Lydian UnicodeBlocks Lydų
+Ethiopic supplement UnicodeBlocks Etiopų papildomi
+Latin extended B UnicodeBlocks Lotynų papildomi B
+Box drawing UnicodeBlocks Lentelių braižymo ženklai
+Mathematical alphanumeric symbols UnicodeBlocks Matematiniai raidiniai ir skaitiniai simboliai
+Copy character CharacterView Kopijuoti ženklą
+Greek and Coptic UnicodeBlocks Graikų ir koptų
+Carian UnicodeBlocks Karų
+Georgian UnicodeBlocks Gruzinų
+Phaistos disc UnicodeBlocks Festo diskas
+Shavian UnicodeBlocks Šavių
+CJK compatibility UnicodeBlocks CJK suderinamumo
+Malayalam UnicodeBlocks Malajalų
+N'Ko UnicodeBlocks N'Ko
+Kannada UnicodeBlocks Kanadų
+Copy as escaped byte string CharacterView Kopijuoti kaip baitų kaitos seką
+Phonetic extensions supplement UnicodeBlocks Fonetinių plėtinių priedas
+Domino tiles UnicodeBlocks Domino kaladėlės
+Katakana phonetic extensions UnicodeBlocks Katakanos fonetiniai plėtiniai
diff --git a/data/catalogs/apps/charactermap/nl.catkeys b/data/catalogs/apps/charactermap/nl.catkeys
index 053115e30e..84b1fe1c99 100644
--- a/data/catalogs/apps/charactermap/nl.catkeys
+++ b/data/catalogs/apps/charactermap/nl.catkeys
@@ -1,174 +1,181 @@
-1 dutch x-vnd.Haiku-CharacterMap 2557312451
-Aegean numbers UnicodeBlocks Egeïsche cijfers
-Alphabetic presentation forms UnicodeBlocks Alfabetische presentatievormen
-Ancient Greek musical notation UnicodeBlocks Oud-Griekse muzieknotatie
-Ancient Greek numbers UnicodeBlocks Oud-Griekse cijfers
-Ancient smbols UnicodeBlocks Oude symbolen
-Arabic UnicodeBlocks Arabisch
-Arabic presentation forms A UnicodeBlocks Arabisch presentatievorm A
-Arabic presentation forms B UnicodeBlocks Arabische weergavevormen B
-Arabic supplement UnicodeBlocks Arabisch (toevoegsel)
-Armenian UnicodeBlocks Armeens
-Arrows UnicodeBlocks Pijlen
-Balinese UnicodeBlocks Balinees
-Basic Latin UnicodeBlocks Basis-Latijns
-Bengali UnicodeBlocks Bengaals
-Block elements UnicodeBlocks Blok-elementen
-Bopomofo UnicodeBlocks Bopomofo
-Bopomofo extended UnicodeBlocks Bopomofo (uitgebreid)
-Box drawing UnicodeBlocks Kadertekens
-Braille patterns UnicodeBlocks Braille-patronen
-Buginese UnicodeBlocks Buginees
-Buhid UnicodeBlocks Buhid
-Byzantine musical symbols UnicodeBlocks Byzantijnse muzieksymbolen
-CJK compatibility UnicodeBlocks CJK-uitwisselbaarheid
-CJK compatibility forms UnicodeBlocks Uitwisselbare vormen in CJK
-CJK compatibility ideographs UnicodeBlocks Uitwisselbare CJK-ideogrammen
-CJK compatibility ideographs Supplement UnicodeBlocks Uitwisselbare CJK-ideogrammen (toevoegsel)
-CJK radicals supplement UnicodeBlocks CJK radicalen (toevoegsel)
-CJK strokes UnicodeBlocks CJK-karakterlijnen
-CJK symbols and punctuation UnicodeBlocks Symbolen en interpunctie in CJK
-CJK unified ideographs UnicodeBlocks CJK-ideogrammen (verenigd)
-CJK unified ideographs extension A UnicodeBlocks CJK-uitbreiding voor verenigde ideogrammen A
-CJK unified ideographs extension B UnicodeBlocks CJK-uitbreiding voor verenigde ideogrammen B
-Carian UnicodeBlocks Carian
-Cham UnicodeBlocks Cham
-Cherokee UnicodeBlocks Cherokee
-Clear CharacterWindow Wissen
-Combining diacritical marks UnicodeBlocks Combinerende diakretische tekens
-Combining diacritical marks for symbols UnicodeBlocks Combinerende diakritische tekens voor symbolen
-Combining diacritical marks supplement UnicodeBlocks Combinerende diakretische tekens (toevoegsel)
-Combining half marks UnicodeBlocks Combinerende halve tekens
-Control pictures UnicodeBlocks Controle-afbeeldingen
-Coptic UnicodeBlocks Koptisch
-Counting rod numerals UnicodeBlocks Telstokcijfers
-Cuneiform UnicodeBlocks Spijkerschrift
-Cuneiform numbers and punctuation UnicodeBlocks Spijkerschrift (cijfers en interpunctie)
-Currency symbols UnicodeBlocks Geldsoortsymbolen
-Cypriot syllabary UnicodeBlocks Cyprisch (syllabisch)
-Cyrillic UnicodeBlocks Cyrilisch
-Cyrillic extended A UnicodeBlocks Cyrillisch (uitgebreid) A
-Cyrillic extended B UnicodeBlocks Cyrillisch (uitgebreid) B
-Cyrillic supplement UnicodeBlocks Cyrillisch (toevoegsel)
-Deseret UnicodeBlocks Deseret
-Devanagari UnicodeBlocks Devanagari
-Dingbats UnicodeBlocks Dingbats
-Domino tiles UnicodeBlocks Dominostenen
-Enclosed CJK letters and months UnicodeBlocks Omsloten letters en maanden in CJK
+1 dutch; flemish x-vnd.Haiku-CharacterMap 2745781253
Enclosed alphanumerics UnicodeBlocks Alfanumeriek omcirkeld
-Ethiopic UnicodeBlocks Ethiopisch
-Ethiopic extended UnicodeBlocks Ethiopisch (uitgebreid)
-Ethiopic supplement UnicodeBlocks Ethiopisch (toevoegsel)
-Filter: CharacterWindow Filter:
-Font size: CharacterWindow Lettertekengrootte:
-General punctuation UnicodeBlocks Algemene leestekens
-Geometric shapes UnicodeBlocks Geometrische vormen
-Georgian UnicodeBlocks Georgisch
-Georgian supplement UnicodeBlocks Georgisch (toevoeging)
-Glagotic UnicodeBlocks Glagotisch
-Gothic UnicodeBlocks Gotisch
-Greek and Coptic UnicodeBlocks Grieks en Koptisch
-Greek extended UnicodeBlocks Grieks (uitgebreid)
-Gujarati UnicodeBlocks Gujarati
-Gurmukhi UnicodeBlocks Gurmukhi
-Halfwidth and fullwidth forms UnicodeBlocks Halfbrede en volledig brede vormen
-Hangul Jamo UnicodeBlocks Hangul Jamo
-Hangul compatibility Jamo UnicodeBlocks Uitwisselbare Hangul Jamo
-Hangul syllables UnicodeBlocks Hangul-lettergrepen
-Hanunoo UnicodeBlocks Hanunóo
-Hebrew UnicodeBlocks Hebreeuws
-Hiragana UnicodeBlocks Hiragana
-IPA extensions UnicodeBlocks IPA (uitbreidingen)
-Ideographic description characters UnicodeBlocks Karakters voor ideografische beschrijving
-Kanbun UnicodeBlocks Kanbun
-Kangxi radicals UnicodeBlocks Kangxi-basiskarakters
-Kannada UnicodeBlocks Kannada
-Katakana UnicodeBlocks Katakana
-Katakana phonetic extensions UnicodeBlocks Fonetische uitbreidingen in Katakana
-Kayah Li UnicodeBlocks Kayah Li
-Kharoshthi UnicodeBlocks Kharoshthi
-Khmer UnicodeBlocks Khmer
-Khmer symbols UnicodeBlocks Khmersymbolen
-Lao UnicodeBlocks Laotiaans
-Latin extended A UnicodeBlocks Latijns (uitgebreid) A
-Latin extended B UnicodeBlocks Latijns (uitgebreid) B
-Latin extended C UnicodeBlocks Latijns (uitgebreid) C
-Latin extended D UnicodeBlocks Latijns (uitgebreid) D
-Latin extended additional UnicodeBlocks Latijns (uitgebreid additioneel)
+Basic Latin UnicodeBlocks Basis-Latijns
+View CharacterWindow Beeld
Latin-1 supplement UnicodeBlocks Latijns-1 (toevoeging)
-Lepcha UnicodeBlocks Lepcha
-Letterlike symbols UnicodeBlocks Letterachtige symbolen
-Limbu UnicodeBlocks Limbu
-Linear B ideograms UnicodeBlocks Lineair-B-ideogrammen
-Linear B syllabary UnicodeBlocks Lineair B (syllabisch)
-Lycian UnicodeBlocks Lycisch
-Lydian UnicodeBlocks Lydisch
-Mahjong tiles UnicodeBlocks Mahjongstenen
-Malayalam UnicodeBlocks Malayalam
-Mathematical alphanumeric symbols UnicodeBlocks Wiskundige alfanumerische symbolen
-Mathematical operators UnicodeBlocks Wiskundige functiesymbolen
-Miscellaneous mathematical symbols A UnicodeBlocks Gevarieerde wiskundige symbolen A
-Miscellaneous mathematical symbols B UnicodeBlocks Gevarieerde wiskundige symbolen B
-Miscellaneous symbols UnicodeBlocks Gevarieerde symbolen
-Miscellaneous symbols and arrows UnicodeBlocks gevarieerde symbolen en pijlen
-Miscellaneous technical UnicodeBlocks Technisch (gevarieerd)
+Hebrew UnicodeBlocks Hebreeuws
+Georgian supplement UnicodeBlocks Georgisch (toevoeging)
+CJK unified ideographs UnicodeBlocks CJK-ideogrammen (verenigd)
Modifier tone letters UnicodeBlocks Modifier-toonletters
-Mongolian UnicodeBlocks Mongools
-Muscial symbols UnicodeBlocks Muzieksymbolen
-Myanmar UnicodeBlocks Birmees
-N'Ko UnicodeBlocks N'Ko
-New Tai Lue UnicodeBlocks Nieuw Tai Lue
-Number forms UnicodeBlocks Cijfervormen
-Ogham UnicodeBlocks Ogham
-Ol Chiki UnicodeBlocks Ol Chiki
-Old Persian UnicodeBlocks Oud-Persisch
-Old italic UnicodeBlocks Oud-Italisch
-Optical character recognition UnicodeBlocks Optische tekenherkenning
-Oriya UnicodeBlocks Oriya
-Osmanya UnicodeBlocks Osmanya
-Phags-pa UnicodeBlocks Phagspa
-Phaistos disc UnicodeBlocks Schijf van Phaistos
-Phoenician UnicodeBlocks Fenicisch
-Phonetic extensions UnicodeBlocks Fonetische uitbreidingen
-Phonetic extensions supplement UnicodeBlocks Fonetische uitbreidingen (toevoegsel)
-Private use area UnicodeBlocks Ruimte voor persoonlijk gebruik
-Quit CharacterWindow Afsluiten
-Rejang UnicodeBlocks Redjang
-Runic UnicodeBlocks Runen
-Saurashtra UnicodeBlocks Saurashtra
-Shavian UnicodeBlocks Shavian
-Show private blocks CharacterWindow Toon persoonlijke gedeeltes
-Sinhala UnicodeBlocks Singalees
-Small form variants UnicodeBlocks Kleine vormvarianten
-Spacing modifier letters UnicodeBlocks Spatie-modifierletters
-Specials UnicodeBlocks Speciaal
-Sundanese UnicodeBlocks Sundanees
-Superscripts and subscripts UnicodeBlocks Bovenschriften en subschriften
-Supplement punctuation UnicodeBlocks Toegevoegde interpunctie
-Supplemental arrows A UnicodeBlocks Toegevoegde pijlen A
-Supplemental arrows B UnicodeBlocks Toegevoegde pijlen B
-Supplemental mathematical operators UnicodeBlocks Toegevoegde wiskundige operatoren
+Khmer UnicodeBlocks Khmer
Supplementary private use area A UnicodeBlocks Toegevoegde ruimte A voor persoonlijk gebruik
-Supplementary private use area B UnicodeBlocks Toegevoegde ruimte voor persoonlijk gebruik B
-Syloti Nagri UnicodeBlocks Syloti Nagri
-Syriac UnicodeBlocks Syrisch
-Tagalog UnicodeBlocks Tagalog
-Tagbanwa UnicodeBlocks Tagbanwa
-Tags UnicodeBlocks Tags
-Tai Le UnicodeBlocks Tai Le
-Tai Xuan Jing symbols UnicodeBlocks Symbolen in Tai Xuan Jing
-Tamil UnicodeBlocks Tamil
-Telugu UnicodeBlocks Telugu
-Thaana UnicodeBlocks Thaana
-Thai UnicodeBlocks Thai
-Tibetan UnicodeBlocks Tibetaans
-Tifinagh UnicodeBlocks Tifinagh
-Ugaritic UnicodeBlocks Ugaritisch
-Unified Canadian Aboriginal syllabics UnicodeBlocks Verenigde Canadese inheemse syllabics
-Vai UnicodeBlocks Vai
-Variation selectors UnicodeBlocks Variatietekens
-Variation selectors supplement UnicodeBlocks Variatieselector (toevoegsel)
+Hanunoo UnicodeBlocks Hanunóo
+Latin extended additional UnicodeBlocks Latijns (uitgebreid additioneel)
+Arabic presentation forms A UnicodeBlocks Arabisch presentatievorm A
+Greek extended UnicodeBlocks Grieks (uitgebreid)
+Linear B ideograms UnicodeBlocks Lineair-B-ideogrammen
+Devanagari UnicodeBlocks Devanagari
+Armenian UnicodeBlocks Armeens
+Glagotic UnicodeBlocks Glagotisch
+Mathematical operators UnicodeBlocks Wiskundige functiesymbolen
+General punctuation UnicodeBlocks Algemene leestekens
+Miscellaneous technical UnicodeBlocks Technisch (gevarieerd)
Vertical forms UnicodeBlocks Verticale vormen
+Ol Chiki UnicodeBlocks Ol Chiki
+Arabic UnicodeBlocks Arabisch
+Ethiopic extended UnicodeBlocks Ethiopisch (uitgebreid)
+Arrows UnicodeBlocks Pijlen
+Font CharacterWindow Lettertype
+Variation selectors supplement UnicodeBlocks Variatieselector (toevoegsel)
+Gujarati UnicodeBlocks Gujarati
+Cuneiform UnicodeBlocks Spijkerschrift
+CJK radicals supplement UnicodeBlocks CJK radicalen (toevoegsel)
+Balinese UnicodeBlocks Balinees
+Cham UnicodeBlocks Cham
+Specials UnicodeBlocks Speciaal
+CJK compatibility ideographs UnicodeBlocks Uitwisselbare CJK-ideogrammen
+Phonetic extensions UnicodeBlocks Fonetische uitbreidingen
+Khmer symbols UnicodeBlocks Khmersymbolen
+Tagbanwa UnicodeBlocks Tagbanwa
+Kanbun UnicodeBlocks Kanbun
+Syriac UnicodeBlocks Syrisch
+CJK compatibility ideographs Supplement UnicodeBlocks Uitwisselbare CJK-ideogrammen (toevoegsel)
+Musical symbols UnicodeBlocks Muzikale symbolen
+Hangul syllables UnicodeBlocks Hangul-lettergrepen
+Coptic UnicodeBlocks Koptisch
+Tai Le UnicodeBlocks Tai Le
+Mahjong tiles UnicodeBlocks Mahjongstenen
+Spacing modifier letters UnicodeBlocks Spatie-modifierletters
+Aegean numbers UnicodeBlocks Egeïsche cijfers
+CJK strokes UnicodeBlocks CJK-karakterlijnen
+Old italic UnicodeBlocks Oud-Italisch
+Supplemental arrows B UnicodeBlocks Toegevoegde pijlen B
+Cyrillic extended A UnicodeBlocks Cyrillisch (uitgebreid) A
+Kharoshthi UnicodeBlocks Kharoshthi
+Combining half marks UnicodeBlocks Combinerende halve tekens
+Cyrillic UnicodeBlocks Cyrilisch
+Katakana UnicodeBlocks Katakana
+Block elements UnicodeBlocks Blok-elementen
+Clear CharacterWindow Wissen
+Sundanese UnicodeBlocks Sundanees
+Miscellaneous mathematical symbols A UnicodeBlocks Gevarieerde wiskundige symbolen A
+Cyrillic supplement UnicodeBlocks Cyrillisch (toevoegsel)
+Small form variants UnicodeBlocks Kleine vormvarianten
+IPA extensions UnicodeBlocks IPA (uitbreidingen)
+Thaana UnicodeBlocks Thaana
+Ogham UnicodeBlocks Ogham
+Combining diacritical marks for symbols UnicodeBlocks Combinerende diakritische tekens voor symbolen
+Syloti Nagri UnicodeBlocks Syloti Nagri
+Arabic supplement UnicodeBlocks Arabisch (toevoegsel)
+Latin extended C UnicodeBlocks Latijns (uitgebreid) C
+Ancient smbols UnicodeBlocks Oude symbolen
+Bopomofo extended UnicodeBlocks Bopomofo (uitgebreid)
+Lycian UnicodeBlocks Lycisch
+Font size: CharacterWindow Lettertekengrootte:
+Osmanya UnicodeBlocks Osmanya
+Ethiopic UnicodeBlocks Ethiopisch
+Bengali UnicodeBlocks Bengaals
+Supplementary private use area B UnicodeBlocks Toegevoegde ruimte voor persoonlijk gebruik B
+CJK unified ideographs extension A UnicodeBlocks CJK-uitbreiding voor verenigde ideogrammen A
+Filter: CharacterWindow Filter:
+Hangul compatibility Jamo UnicodeBlocks Uitwisselbare Hangul Jamo
+Ideographic description characters UnicodeBlocks Karakters voor ideografische beschrijving
+Arabic presentation forms B UnicodeBlocks Arabische weergavevormen B
+CJK compatibility forms UnicodeBlocks Uitwisselbare vormen in CJK
+Hiragana UnicodeBlocks Hiragana
+Tagalog UnicodeBlocks Tagalog
+Control pictures UnicodeBlocks Controle-afbeeldingen
+Variation selectors UnicodeBlocks Variatietekens
+Linear B syllabary UnicodeBlocks Lineair B (syllabisch)
+Buginese UnicodeBlocks Buginees
+Bopomofo UnicodeBlocks Bopomofo
+Code CharacterWindow Code
+Lepcha UnicodeBlocks Lepcha
+Sinhala UnicodeBlocks Singalees
+Ancient Greek musical notation UnicodeBlocks Oud-Griekse muzieknotatie
+Geometric shapes UnicodeBlocks Geometrische vormen
+Letterlike symbols UnicodeBlocks Letterachtige symbolen
+Hangul Jamo UnicodeBlocks Hangul Jamo
+Tamil UnicodeBlocks Tamil
+Currency symbols UnicodeBlocks Geldsoortsymbolen
+Combining diacritical marks UnicodeBlocks Combinerende diakretische tekens
+Supplement punctuation UnicodeBlocks Toegevoegde interpunctie
+Unified Canadian Aboriginal syllabics UnicodeBlocks Verenigde Canadese inheemse syllabics
+Ugaritic UnicodeBlocks Ugaritisch
+CJK symbols and punctuation UnicodeBlocks Symbolen en interpunctie in CJK
+File CharacterWindow Bestand
+Number forms UnicodeBlocks Cijfervormen
+Cherokee UnicodeBlocks Cherokee
+Tags UnicodeBlocks Tags
+Cypriot syllabary UnicodeBlocks Cyprisch (syllabisch)
+Counting rod numerals UnicodeBlocks Telstokcijfers
+Latin extended A UnicodeBlocks Latijns (uitgebreid) A
+Miscellaneous symbols UnicodeBlocks Gevarieerde symbolen
+Saurashtra UnicodeBlocks Saurashtra
+Optical character recognition UnicodeBlocks Optische tekenherkenning
+Old Persian UnicodeBlocks Oud-Persisch
+Combining diacritical marks supplement UnicodeBlocks Combinerende diakretische tekens (toevoegsel)
+Myanmar UnicodeBlocks Birmees
+Latin extended D UnicodeBlocks Latijns (uitgebreid) D
+Byzantine musical symbols UnicodeBlocks Byzantijnse muzieksymbolen
+Oriya UnicodeBlocks Oriya
+Tibetan UnicodeBlocks Tibetaans
+Ancient Greek numbers UnicodeBlocks Oud-Griekse cijfers
+Vai UnicodeBlocks Vai
Yi Radicals UnicodeBlocks Yi-basiskarakters
+Cyrillic extended B UnicodeBlocks Cyrillisch (uitgebreid) B
+Quit CharacterWindow Afsluiten
+Braille patterns UnicodeBlocks Braille-patronen
+New Tai Lue UnicodeBlocks Nieuw Tai Lue
+Runic UnicodeBlocks Runen
+Miscellaneous mathematical symbols B UnicodeBlocks Gevarieerde wiskundige symbolen B
+Cuneiform numbers and punctuation UnicodeBlocks Spijkerschrift (cijfers en interpunctie)
+Private use area UnicodeBlocks Ruimte voor persoonlijk gebruik
+CJK unified ideographs extension B UnicodeBlocks CJK-uitbreiding voor verenigde ideogrammen B
+Phags-pa UnicodeBlocks Phagspa
+Kangxi radicals UnicodeBlocks Kangxi-basiskarakters
+Dingbats UnicodeBlocks Dingbats
+Tai Xuan Jing symbols UnicodeBlocks Symbolen in Tai Xuan Jing
Yi syllables UnicodeBlocks Yi-lettergrepen
+Buhid UnicodeBlocks Buhid
+Telugu UnicodeBlocks Telugu
+Superscripts and subscripts UnicodeBlocks Bovenschriften en subschriften
+Thai UnicodeBlocks Thai
+Deseret UnicodeBlocks Deseret
+Tifinagh UnicodeBlocks Tifinagh
+Gurmukhi UnicodeBlocks Gurmukhi
+CharacterMap System name CharacterMap
+Lao UnicodeBlocks Laotiaans
+Gothic UnicodeBlocks Gotisch
+Limbu UnicodeBlocks Limbu
+Rejang UnicodeBlocks Redjang
+Show private blocks CharacterWindow Toon persoonlijke gedeeltes
+Phoenician UnicodeBlocks Fenicisch
+Mongolian UnicodeBlocks Mongools
+Supplemental arrows A UnicodeBlocks Toegevoegde pijlen A
+Miscellaneous symbols and arrows UnicodeBlocks gevarieerde symbolen en pijlen
Yijing hexagram symbols UnicodeBlocks Yijing-hexagramsymbolen
+Supplemental mathematical operators UnicodeBlocks Toegevoegde wiskundige operatoren
+Enclosed CJK letters and months UnicodeBlocks Omsloten letters en maanden in CJK
+Kayah Li UnicodeBlocks Kayah Li
+Alphabetic presentation forms UnicodeBlocks Alfabetische presentatievormen
+Halfwidth and fullwidth forms UnicodeBlocks Halfbrede en volledig brede vormen
+Lydian UnicodeBlocks Lydisch
+Ethiopic supplement UnicodeBlocks Ethiopisch (toevoegsel)
+Latin extended B UnicodeBlocks Latijns (uitgebreid) B
+Box drawing UnicodeBlocks Kadertekens
+Mathematical alphanumeric symbols UnicodeBlocks Wiskundige alfanumerische symbolen
+Copy character CharacterView Karakter kopiëren
+Greek and Coptic UnicodeBlocks Grieks en Koptisch
+Carian UnicodeBlocks Carian
+Georgian UnicodeBlocks Georgisch
+Phaistos disc UnicodeBlocks Schijf van Phaistos
+Shavian UnicodeBlocks Shavian
+CJK compatibility UnicodeBlocks CJK-uitwisselbaarheid
+Malayalam UnicodeBlocks Malayalam
+N'Ko UnicodeBlocks N'Ko
+Kannada UnicodeBlocks Kannada
+Copy as escaped byte string CharacterView Kopiëren als escaped byte string
+Phonetic extensions supplement UnicodeBlocks Fonetische uitbreidingen (toevoegsel)
+Domino tiles UnicodeBlocks Dominostenen
+Katakana phonetic extensions UnicodeBlocks Fonetische uitbreidingen in Katakana
diff --git a/data/catalogs/apps/charactermap/ru.catkeys b/data/catalogs/apps/charactermap/ru.catkeys
index 562da46b6f..b391ab4531 100644
--- a/data/catalogs/apps/charactermap/ru.catkeys
+++ b/data/catalogs/apps/charactermap/ru.catkeys
@@ -1,27 +1,27 @@
1 russian x-vnd.Haiku-CharacterMap 2052089202
-Arabic UnicodeBlocks Арабский
-Armenian UnicodeBlocks Армянский
-CJK compatibility ideographs Supplement UnicodeBlocks Дополнение CJK совместимых иероглифов
-CJK strokes UnicodeBlocks Черты Иероглифов Восточной Азии
-CharacterMap System name Карта символов
-Clear CharacterWindow Очистить
-Code CharacterWindow Код
-Coptic UnicodeBlocks Коптский
-File CharacterWindow Файл
-Filter: CharacterWindow Фильтр:
-Font CharacterWindow Шрифт
-Font size: CharacterWindow Размер шрифта:
-General punctuation UnicodeBlocks Знаки пунктуации
-Georgian supplement UnicodeBlocks Грузинские дополнения
-Hanunoo UnicodeBlocks Хануноо
-Hebrew UnicodeBlocks Иврит
-Khmer UnicodeBlocks Кхмерский
-Mathematical operators UnicodeBlocks Математические операторы
-Miscellaneous technical UnicodeBlocks Прочие технические
-Number forms UnicodeBlocks Формы чисел
-Old italic UnicodeBlocks Этрусский алфавит
-Quit CharacterWindow Выход
-Show private blocks CharacterWindow Отображать частные блоки
-Tai Le UnicodeBlocks Тай Лы
-Vertical forms UnicodeBlocks Вертикальные формы
View CharacterWindow Вид
+Hebrew UnicodeBlocks Иврит
+Georgian supplement UnicodeBlocks Грузинские дополнения
+Khmer UnicodeBlocks Кхмерский
+Hanunoo UnicodeBlocks Хануноо
+Armenian UnicodeBlocks Армянский
+Mathematical operators UnicodeBlocks Математические операторы
+General punctuation UnicodeBlocks Знаки пунктуации
+Miscellaneous technical UnicodeBlocks Прочие технические
+Vertical forms UnicodeBlocks Вертикальные формы
+Arabic UnicodeBlocks Арабский
+Font CharacterWindow Шрифт
+CJK compatibility ideographs Supplement UnicodeBlocks Дополнение CJK совместимых иероглифов
+Coptic UnicodeBlocks Коптский
+Tai Le UnicodeBlocks Тай Лы
+CJK strokes UnicodeBlocks Черты Иероглифов Восточной Азии
+Old italic UnicodeBlocks Этрусский алфавит
+Clear CharacterWindow Очистить
+Font size: CharacterWindow Размер шрифта:
+Filter: CharacterWindow Фильтр:
+Code CharacterWindow Код
+File CharacterWindow Файл
+Number forms UnicodeBlocks Формы чисел
+Quit CharacterWindow Выход
+CharacterMap System name Карта символов
+Show private blocks CharacterWindow Отображать частные блоки
diff --git a/data/catalogs/apps/charactermap/sk.catkeys b/data/catalogs/apps/charactermap/sk.catkeys
index 835ce542b4..42a947ecd0 100644
--- a/data/catalogs/apps/charactermap/sk.catkeys
+++ b/data/catalogs/apps/charactermap/sk.catkeys
@@ -1,178 +1,181 @@
-1 slovak x-vnd.Haiku-CharacterMap 1331216786
-Aegean numbers UnicodeBlocks Egejské čísla
-Alphabetic presentation forms UnicodeBlocks Varianty abecedných znakov
-Ancient Greek musical notation UnicodeBlocks Starogrécky hudobný zápis
-Ancient Greek numbers UnicodeBlocks Starogrécke čísla
-Ancient smbols UnicodeBlocks Staroveké symboly
-Arabic UnicodeBlocks Arabčina
-Arabic presentation forms A UnicodeBlocks Varianty arabských znakov A
-Arabic presentation forms B UnicodeBlocks Varianty arabských znakov B
-Arabic supplement UnicodeBlocks Arabčina, dodatok
-Armenian UnicodeBlocks Arménčina
-Arrows UnicodeBlocks Šípky
-Balinese UnicodeBlocks Balinézske
-Basic Latin UnicodeBlocks Latinka - základné znaky
-Bengali UnicodeBlocks Bengálčina
-Block elements UnicodeBlocks Blokové prvky
-Bopomofo UnicodeBlocks Bopomofo
-Bopomofo extended UnicodeBlocks Bopomofo - ďalšie znaky
-Box drawing UnicodeBlocks Kreslenie rámčekov
-Braille patterns UnicodeBlocks Braillove vzory
-Buginese UnicodeBlocks Buginézština
-Buhid UnicodeBlocks Buhidčina
-Byzantine musical symbols UnicodeBlocks Byzantské hudobné symboly
-CJK compatibility UnicodeBlocks ČJK - kompatibilné formáty
-CJK compatibility forms UnicodeBlocks ČJK - kompatibilné varianty
-CJK compatibility ideographs UnicodeBlocks ČJK - kompatibilné idiogramy
-CJK compatibility ideographs Supplement UnicodeBlocks ČJK - kompatibilné idiogramy, doplnok
-CJK radicals supplement UnicodeBlocks ČJK – radikály, dodatok
-CJK strokes UnicodeBlocks Ťahy ČJK
-CJK symbols and punctuation UnicodeBlocks ČJK symboly a intepunkcia
-CJK unified ideographs UnicodeBlocks Zjednotené ideogramy pre ČJK
-CJK unified ideographs extension A UnicodeBlocks Zjednotené ideogramy pre ČJK, rozšírenie A
-CJK unified ideographs extension B UnicodeBlocks Zjednotené ideogramy pre ČJK, rozšírenie B
-Carian UnicodeBlocks Carian
-Cham UnicodeBlocks Cham
-CharacterMap System name Mapa znakov
-Cherokee UnicodeBlocks Cherokee
-Clear CharacterWindow Vyčistiť
-Code CharacterWindow Kód
-Combining diacritical marks UnicodeBlocks Kombinujúce diakritické značky
-Combining diacritical marks for symbols UnicodeBlocks Kombinujúce diakritické značky pre symboly
-Combining diacritical marks supplement UnicodeBlocks Kombinujúce diakritické značky - doplnok
-Combining half marks UnicodeBlocks Kombinujúce poloznačky
-Control pictures UnicodeBlocks Riadiace obrázky
-Coptic UnicodeBlocks Koptčina
-Counting rod numerals UnicodeBlocks Tyčové číslovky
-Cuneiform UnicodeBlocks Klinové písmo
-Cuneiform numbers and punctuation UnicodeBlocks Klinové písmo - čísla a diakritika
-Currency symbols UnicodeBlocks Symboly mien
-Cypriot syllabary UnicodeBlocks Cyperské slabičné písmo
-Cyrillic UnicodeBlocks Cyrilika
-Cyrillic extended A UnicodeBlocks Cyrillika, rozšírená A
-Cyrillic extended B UnicodeBlocks Cyrillika, rozšírená A
-Cyrillic supplement UnicodeBlocks Cyrilika, dodatok
-Deseret UnicodeBlocks Deseret
-Devanagari UnicodeBlocks Dévanágarí
-Dingbats UnicodeBlocks Symboly a znaky dingbats
-Domino tiles UnicodeBlocks Kocky domino
-Enclosed CJK letters and months UnicodeBlocks Uzavreté ČJK znaky a mesiace
+1 slovak x-vnd.Haiku-CharacterMap 2745781253
Enclosed alphanumerics UnicodeBlocks Uzavreté alfanumerické znaky
-Ethiopic UnicodeBlocks Etiópčina
-Ethiopic extended UnicodeBlocks Etiópčina – ďalšie znaky
-Ethiopic supplement UnicodeBlocks Etiópčina, dodatok
-File CharacterWindow Súbor
-Filter: CharacterWindow Filter:
-Font CharacterWindow Písmo
-Font size: CharacterWindow Veľksť písma:
-General punctuation UnicodeBlocks Všeobecná intepunkcia
-Geometric shapes UnicodeBlocks Geometrické tvary
-Georgian UnicodeBlocks Gruzínčina
-Georgian supplement UnicodeBlocks Gruzínčina, dodatok
-Gothic UnicodeBlocks Gotické
-Greek and Coptic UnicodeBlocks Gréčtina a koptčina Off
-Greek extended UnicodeBlocks Gréčtina - ďalšie znaky
-Gujarati UnicodeBlocks Gudžarátčina
-Gurmukhi UnicodeBlocks Gurumukhí
-Halfwidth and fullwidth forms UnicodeBlocks Znaky s polovičnou a plnou šírkou
-Hangul Jamo UnicodeBlocks Znaky jamo abecedy hangul
-Hangul compatibility Jamo UnicodeBlocks Kompatibilné znaky jamo abecedy hangul
-Hangul syllables UnicodeBlocks Hangul - slabiky
-Hanunoo UnicodeBlocks Hanunóo
-Hebrew UnicodeBlocks Hebrejčina
-Hiragana UnicodeBlocks Hiragana
-IPA extensions UnicodeBlocks Znaky fonetickej abecedy IPA
-Ideographic description characters UnicodeBlocks Ideografické popisné znaky
-Kanbun UnicodeBlocks Kanbun
-Kangxi radicals UnicodeBlocks Kandži – radikály
-Kannada UnicodeBlocks Kannadčina
-Katakana UnicodeBlocks Katakana
-Katakana phonetic extensions UnicodeBlocks Katakana - fonetické rozšírenia
-Kayah Li UnicodeBlocks Kayah Li
-Kharoshthi UnicodeBlocks Kharoshthi
-Khmer UnicodeBlocks Khmérčina
-Khmer symbols UnicodeBlocks Khmérske symboly
-Lao UnicodeBlocks Laoština
-Latin extended A UnicodeBlocks Rozšírená latinka A
-Latin extended B UnicodeBlocks Rozšírená latinka B
-Latin extended C UnicodeBlocks Rozšírená latinka C
-Latin extended D UnicodeBlocks Rozšírená latinka D
-Latin extended additional UnicodeBlocks Rozšírená latinka, dodatok
-Latin-1 supplement UnicodeBlocks Latinka-1, dodatok
-Lepcha UnicodeBlocks Lepcha
-Letterlike symbols UnicodeBlocks Symboly podpobné písmenám
-Limbu UnicodeBlocks Limbu
-Linear B ideograms UnicodeBlocks Lineárne písmo B - ideogramy
-Linear B syllabary UnicodeBlocks Lineárne písmo B - slabičné písmo
-Lycian UnicodeBlocks Lycian
-Lydian UnicodeBlocks Lydian
-Mahjong tiles UnicodeBlocks Dlaždice Mahjong
-Malayalam UnicodeBlocks Malajálamčina
-Mathematical alphanumeric symbols UnicodeBlocks Matematické alfanumerické symboly
-Mathematical operators UnicodeBlocks Matematické operátory
-Miscellaneous mathematical symbols A UnicodeBlocks Rozličné matematické symboly A
-Miscellaneous mathematical symbols B UnicodeBlocks Rozličné matematické symboly B
-Miscellaneous symbols UnicodeBlocks Rozličné symboly
-Miscellaneous symbols and arrows UnicodeBlocks Rôzne symboly a šípky
-Miscellaneous technical UnicodeBlocks Rozličné technické
-Modifier tone letters UnicodeBlocks Písmená modifikátorov tónu
-Mongolian UnicodeBlocks Mongolské
-Muscial symbols UnicodeBlocks Hudobné symboly
-Myanmar UnicodeBlocks Mjanmarčina
-N'Ko UnicodeBlocks N'Ko
-New Tai Lue UnicodeBlocks New Tai Lue
-Number forms UnicodeBlocks Číselné tvary
-Ogham UnicodeBlocks Ogam
-Ol Chiki UnicodeBlocks Ol Chiki
-Old Persian UnicodeBlocks Staroperzské
-Old italic UnicodeBlocks Starotalianske
-Optical character recognition UnicodeBlocks Optické rozpoznávanie znakov
-Oriya UnicodeBlocks Uríjčina
-Osmanya UnicodeBlocks Osmanya
-Phags-pa UnicodeBlocks Phags-pa
-Phaistos disc UnicodeBlocks Disk z Faistu
-Phoenician UnicodeBlocks Fenické
-Phonetic extensions UnicodeBlocks Fonetické rozšírenia
-Phonetic extensions supplement UnicodeBlocks Fonetické rozšírenia, doplnok
-Private use area UnicodeBlocks Oblasť na súkromné použitie
-Quit CharacterWindow Ukončiť
-Rejang UnicodeBlocks Rejang
-Runic UnicodeBlocks Runy
-Saurashtra UnicodeBlocks Saurashtra
-Shavian UnicodeBlocks Shavianské
-Show private blocks CharacterWindow Zobrziť privátne bloky
-Sinhala UnicodeBlocks Sinhalčina
-Small form variants UnicodeBlocks Malé varianty znakov
-Spacing modifier letters UnicodeBlocks Písmená na úpravu medzier
-Specials UnicodeBlocks Špeciálne znaky
-Sundanese UnicodeBlocks Sundčina
-Superscripts and subscripts UnicodeBlocks Horné a dolné indexy
-Supplement punctuation UnicodeBlocks Doplnková intepunkcia
-Supplemental arrows A UnicodeBlocks Šípky, doplnok A
-Supplemental arrows B UnicodeBlocks Šípky, doplnok B
-Supplemental mathematical operators UnicodeBlocks Doplnkové matematické operátory
-Supplementary private use area A UnicodeBlocks Doplnková oblasť A pre súkromné použitie
-Supplementary private use area B UnicodeBlocks Doplnková oblasť A pre súkromné použitie
-Syloti Nagri UnicodeBlocks Syloti Nagri
-Syriac UnicodeBlocks Sýrčina
-Tagalog UnicodeBlocks Tagalčina
-Tagbanwa UnicodeBlocks Tagbanwa
-Tags UnicodeBlocks Značky
-Tai Le UnicodeBlocks Tai Le
-Tai Xuan Jing symbols UnicodeBlocks Symboly Tai Xuan Jing
-Tamil UnicodeBlocks Tamilčina
-Telugu UnicodeBlocks Telugčina
-Thaana UnicodeBlocks Thaana
-Thai UnicodeBlocks Thajčina
-Tibetan UnicodeBlocks Tibetčina
-Tifinagh UnicodeBlocks Tifinagh
-Ugaritic UnicodeBlocks Ugaritské
-Unified Canadian Aboriginal syllabics UnicodeBlocks Zjednotené slabikotvorné hlásky kanadských pôvodných obyvateľov
-Vai UnicodeBlocks Vai
-Variation selectors UnicodeBlocks Selektory variácií
-Variation selectors supplement UnicodeBlocks Selektory variácií, dodatok
-Vertical forms UnicodeBlocks Zvislé tvary
+Basic Latin UnicodeBlocks Latinka - základné znaky
View CharacterWindow Zobraziť
+Latin-1 supplement UnicodeBlocks Latinka-1, dodatok
+Hebrew UnicodeBlocks Hebrejčina
+Georgian supplement UnicodeBlocks Gruzínčina, dodatok
+CJK unified ideographs UnicodeBlocks Zjednotené ideogramy pre ČJK
+Modifier tone letters UnicodeBlocks Písmená modifikátorov tónu
+Khmer UnicodeBlocks Khmérčina
+Supplementary private use area A UnicodeBlocks Doplnková oblasť A pre súkromné použitie
+Hanunoo UnicodeBlocks Hanunóo
+Latin extended additional UnicodeBlocks Rozšírená latinka, dodatok
+Arabic presentation forms A UnicodeBlocks Varianty arabských znakov A
+Greek extended UnicodeBlocks Gréčtina - ďalšie znaky
+Linear B ideograms UnicodeBlocks Lineárne písmo B - ideogramy
+Devanagari UnicodeBlocks Dévanágarí
+Armenian UnicodeBlocks Arménčina
+Glagotic UnicodeBlocks Hlaholika
+Mathematical operators UnicodeBlocks Matematické operátory
+General punctuation UnicodeBlocks Všeobecná intepunkcia
+Miscellaneous technical UnicodeBlocks Rozličné technické
+Vertical forms UnicodeBlocks Zvislé tvary
+Ol Chiki UnicodeBlocks Ol Chiki
+Arabic UnicodeBlocks Arabčina
+Ethiopic extended UnicodeBlocks Etiópčina – ďalšie znaky
+Arrows UnicodeBlocks Šípky
+Font CharacterWindow Písmo
+Variation selectors supplement UnicodeBlocks Selektory variácií, dodatok
+Gujarati UnicodeBlocks Gudžarátčina
+Cuneiform UnicodeBlocks Klinové písmo
+CJK radicals supplement UnicodeBlocks ČJK – radikály, dodatok
+Balinese UnicodeBlocks Balinézske
+Cham UnicodeBlocks Cham
+Specials UnicodeBlocks Špeciálne znaky
+CJK compatibility ideographs UnicodeBlocks ČJK - kompatibilné idiogramy
+Phonetic extensions UnicodeBlocks Fonetické rozšírenia
+Khmer symbols UnicodeBlocks Khmérske symboly
+Tagbanwa UnicodeBlocks Tagbanwa
+Kanbun UnicodeBlocks Kanbun
+Syriac UnicodeBlocks Sýrčina
+CJK compatibility ideographs Supplement UnicodeBlocks ČJK - kompatibilné idiogramy, doplnok
+Musical symbols UnicodeBlocks Hudobné symboly
+Hangul syllables UnicodeBlocks Hangul - slabiky
+Coptic UnicodeBlocks Koptčina
+Tai Le UnicodeBlocks Tai Le
+Mahjong tiles UnicodeBlocks Dlaždice Mahjong
+Spacing modifier letters UnicodeBlocks Písmená na úpravu medzier
+Aegean numbers UnicodeBlocks Egejské čísla
+CJK strokes UnicodeBlocks Ťahy ČJK
+Old italic UnicodeBlocks Starotalianske
+Supplemental arrows B UnicodeBlocks Šípky, doplnok B
+Cyrillic extended A UnicodeBlocks Cyrillika, rozšírená A
+Kharoshthi UnicodeBlocks Kharoshthi
+Combining half marks UnicodeBlocks Kombinujúce poloznačky
+Cyrillic UnicodeBlocks Cyrilika
+Katakana UnicodeBlocks Katakana
+Block elements UnicodeBlocks Blokové prvky
+Clear CharacterWindow Vyčistiť
+Sundanese UnicodeBlocks Sundčina
+Miscellaneous mathematical symbols A UnicodeBlocks Rozličné matematické symboly A
+Cyrillic supplement UnicodeBlocks Cyrilika, dodatok
+Small form variants UnicodeBlocks Malé varianty znakov
+IPA extensions UnicodeBlocks Znaky fonetickej abecedy IPA
+Thaana UnicodeBlocks Thaana
+Ogham UnicodeBlocks Ogam
+Combining diacritical marks for symbols UnicodeBlocks Kombinujúce diakritické značky pre symboly
+Syloti Nagri UnicodeBlocks Syloti Nagri
+Arabic supplement UnicodeBlocks Arabčina, dodatok
+Latin extended C UnicodeBlocks Rozšírená latinka C
+Ancient smbols UnicodeBlocks Staroveké symboly
+Bopomofo extended UnicodeBlocks Bopomofo - ďalšie znaky
+Lycian UnicodeBlocks Lycian
+Font size: CharacterWindow Veľkosť písma:
+Osmanya UnicodeBlocks Osmanya
+Ethiopic UnicodeBlocks Etiópčina
+Bengali UnicodeBlocks Bengálčina
+Supplementary private use area B UnicodeBlocks Doplnková oblasť A pre súkromné použitie
+CJK unified ideographs extension A UnicodeBlocks Zjednotené ideogramy pre ČJK, rozšírenie A
+Filter: CharacterWindow Filter:
+Hangul compatibility Jamo UnicodeBlocks Kompatibilné znaky jamo abecedy hangul
+Ideographic description characters UnicodeBlocks Ideografické popisné znaky
+Arabic presentation forms B UnicodeBlocks Varianty arabských znakov B
+CJK compatibility forms UnicodeBlocks ČJK - kompatibilné varianty
+Hiragana UnicodeBlocks Hiragana
+Tagalog UnicodeBlocks Tagalčina
+Control pictures UnicodeBlocks Riadiace obrázky
+Variation selectors UnicodeBlocks Selektory variácií
+Linear B syllabary UnicodeBlocks Lineárne písmo B - slabičné písmo
+Buginese UnicodeBlocks Buginézština
+Bopomofo UnicodeBlocks Bopomofo
+Code CharacterWindow Kód
+Lepcha UnicodeBlocks Lepcha
+Sinhala UnicodeBlocks Sinhalčina
+Ancient Greek musical notation UnicodeBlocks Starogrécky hudobný zápis
+Geometric shapes UnicodeBlocks Geometrické tvary
+Letterlike symbols UnicodeBlocks Symboly podpobné písmenám
+Hangul Jamo UnicodeBlocks Znaky jamo abecedy hangul
+Tamil UnicodeBlocks Tamilčina
+Currency symbols UnicodeBlocks Symboly mien
+Combining diacritical marks UnicodeBlocks Kombinujúce diakritické značky
+Supplement punctuation UnicodeBlocks Doplnková intepunkcia
+Unified Canadian Aboriginal syllabics UnicodeBlocks Zjednotené slabikotvorné hlásky kanadských pôvodných obyvateľov
+Ugaritic UnicodeBlocks Ugaritské
+CJK symbols and punctuation UnicodeBlocks ČJK symboly a intepunkcia
+File CharacterWindow Súbor
+Number forms UnicodeBlocks Číselné tvary
+Cherokee UnicodeBlocks Cherokee
+Tags UnicodeBlocks Značky
+Cypriot syllabary UnicodeBlocks Cyperské slabičné písmo
+Counting rod numerals UnicodeBlocks Tyčové číslovky
+Latin extended A UnicodeBlocks Rozšírená latinka A
+Miscellaneous symbols UnicodeBlocks Rozličné symboly
+Saurashtra UnicodeBlocks Saurashtra
+Optical character recognition UnicodeBlocks Optické rozpoznávanie znakov
+Old Persian UnicodeBlocks Staroperzské
+Combining diacritical marks supplement UnicodeBlocks Kombinujúce diakritické značky - doplnok
+Myanmar UnicodeBlocks Mjanmarčina
+Latin extended D UnicodeBlocks Rozšírená latinka D
+Byzantine musical symbols UnicodeBlocks Byzantské hudobné symboly
+Oriya UnicodeBlocks Uríjčina
+Tibetan UnicodeBlocks Tibetčina
+Ancient Greek numbers UnicodeBlocks Starogrécke čísla
+Vai UnicodeBlocks Vai
Yi Radicals UnicodeBlocks Yi - radikály
+Cyrillic extended B UnicodeBlocks Cyrillika, rozšírená A
+Quit CharacterWindow Ukončiť
+Braille patterns UnicodeBlocks Braillove vzory
+New Tai Lue UnicodeBlocks New Tai Lue
+Runic UnicodeBlocks Runy
+Miscellaneous mathematical symbols B UnicodeBlocks Rozličné matematické symboly B
+Cuneiform numbers and punctuation UnicodeBlocks Klinové písmo - čísla a diakritika
+Private use area UnicodeBlocks Oblasť na súkromné použitie
+CJK unified ideographs extension B UnicodeBlocks Zjednotené ideogramy pre ČJK, rozšírenie B
+Phags-pa UnicodeBlocks Phags-pa
+Kangxi radicals UnicodeBlocks Kandži – radikály
+Dingbats UnicodeBlocks Symboly a znaky dingbats
+Tai Xuan Jing symbols UnicodeBlocks Symboly Tai Xuan Jing
Yi syllables UnicodeBlocks Yi - slabiky
+Buhid UnicodeBlocks Buhidčina
+Telugu UnicodeBlocks Telugčina
+Superscripts and subscripts UnicodeBlocks Horné a dolné indexy
+Thai UnicodeBlocks Thajčina
+Deseret UnicodeBlocks Deseret
+Tifinagh UnicodeBlocks Tifinagh
+Gurmukhi UnicodeBlocks Gurumukhí
+CharacterMap System name Mapa znakov
+Lao UnicodeBlocks Laoština
+Gothic UnicodeBlocks Gotické
+Limbu UnicodeBlocks Limbu
+Rejang UnicodeBlocks Rejang
+Show private blocks CharacterWindow Zobraziť privátne bloky
+Phoenician UnicodeBlocks Fenické
+Mongolian UnicodeBlocks Mongolské
+Supplemental arrows A UnicodeBlocks Šípky, doplnok A
+Miscellaneous symbols and arrows UnicodeBlocks Rôzne symboly a šípky
Yijing hexagram symbols UnicodeBlocks Yijing – šesťcípe symboly
+Supplemental mathematical operators UnicodeBlocks Doplnkové matematické operátory
+Enclosed CJK letters and months UnicodeBlocks Uzavreté ČJK znaky a mesiace
+Kayah Li UnicodeBlocks Kayah Li
+Alphabetic presentation forms UnicodeBlocks Varianty abecedných znakov
+Halfwidth and fullwidth forms UnicodeBlocks Znaky s polovičnou a plnou šírkou
+Lydian UnicodeBlocks Lydian
+Ethiopic supplement UnicodeBlocks Etiópčina, dodatok
+Latin extended B UnicodeBlocks Rozšírená latinka B
+Box drawing UnicodeBlocks Kreslenie rámčekov
+Mathematical alphanumeric symbols UnicodeBlocks Matematické alfanumerické symboly
+Copy character CharacterView Kopírovať znak
+Greek and Coptic UnicodeBlocks Gréčtina a koptčina
+Carian UnicodeBlocks Carian
+Georgian UnicodeBlocks Gruzínčina
+Phaistos disc UnicodeBlocks Disk z Faistu
+Shavian UnicodeBlocks Shavianské
+CJK compatibility UnicodeBlocks ČJK - kompatibilné formáty
+Malayalam UnicodeBlocks Malajálamčina
+N'Ko UnicodeBlocks N'Ko
+Kannada UnicodeBlocks Kannadčina
+Copy as escaped byte string CharacterView Kopírovať ako reťazec bajtov s únikovými klauzulami
+Phonetic extensions supplement UnicodeBlocks Fonetické rozšírenia, doplnok
+Domino tiles UnicodeBlocks Kocky domino
+Katakana phonetic extensions UnicodeBlocks Katakana - fonetické rozšírenia
diff --git a/data/catalogs/apps/charactermap/sv.catkeys b/data/catalogs/apps/charactermap/sv.catkeys
index 744048c2e8..c815daffeb 100644
--- a/data/catalogs/apps/charactermap/sv.catkeys
+++ b/data/catalogs/apps/charactermap/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Haiku-CharacterMap 2426642683
+1 swedish x-vnd.Haiku-CharacterMap 4082916013
Aegean numbers UnicodeBlocks Egeiska siffror
Alphabetic presentation forms UnicodeBlocks Alfabetiska presentationsformer
Ancient Greek musical notation UnicodeBlocks Gammelgrekiska noter
@@ -43,6 +43,7 @@ Combining diacritical marks supplement UnicodeBlocks Kombinerade diakritiska te
Combining half marks UnicodeBlocks Kombinerade halvmarkörer
Control pictures UnicodeBlocks Kontrollbilder
Coptic UnicodeBlocks Koptisk
+Copy as escaped byte string CharacterView Kopiera som kodad byte-sträng
Copy character CharacterView Kopiera tecken
Counting rod numerals UnicodeBlocks Räknestavssiffror
Cuneiform UnicodeBlocks Kilskrift
diff --git a/data/catalogs/apps/clock/hr.catkeys b/data/catalogs/apps/clock/hr.catkeys
new file mode 100644
index 0000000000..1d3afa0e93
--- /dev/null
+++ b/data/catalogs/apps/clock/hr.catkeys
@@ -0,0 +1,2 @@
+1 croatian x-vnd.Haiku-Clock 1361795373
+Clock System name Sat
diff --git a/data/catalogs/apps/clock/lt.catkeys b/data/catalogs/apps/clock/lt.catkeys
new file mode 100644
index 0000000000..5d5db71606
--- /dev/null
+++ b/data/catalogs/apps/clock/lt.catkeys
@@ -0,0 +1,2 @@
+1 lithuanian x-vnd.Haiku-Clock 1361795373
+Clock System name Laikrodis
diff --git a/data/catalogs/apps/clock/nl.catkeys b/data/catalogs/apps/clock/nl.catkeys
new file mode 100644
index 0000000000..0e7f6276e7
--- /dev/null
+++ b/data/catalogs/apps/clock/nl.catkeys
@@ -0,0 +1,2 @@
+1 dutch; flemish x-vnd.Haiku-Clock 1361795373
+Clock System name Clock
diff --git a/data/catalogs/apps/codycam/be.catkeys b/data/catalogs/apps/codycam/be.catkeys
index df9c624962..c9d061bbaa 100644
--- a/data/catalogs/apps/codycam/be.catkeys
+++ b/data/catalogs/apps/codycam/be.catkeys
@@ -1,93 +1,93 @@
-1 belarusian x-vnd.Haiku.CodyCam 441085909
-Can't find an available connection to the video window CodyCam Немагчыма знайсці даступнае спалучэнне да акна відэа
-Cannot connect the video source to the video window CodyCam Немагчыма падключыць відэакрыніцу для відэаакна
-Cannot create a video window CodyCam Не ўдалося стварыць відэаакно
-Cannot find a video source. You need a webcam to use CodyCam. CodyCam Немагчыма запусціць крыніцу відэа. Вам патрэбна вэб-камера.
+1 belarusian x-vnd.Haiku-CodyCam 2416864674
+Capturing Image… VideoConsumer.cpp Захват выявы...
+Every 30 seconds CodyCam Кожныя 30 секунд
+File name: CodyCam Імя файла:
+Last Capture: VideoConsumer.cpp Апошні захват:
+Server login failed VideoConsumer.cpp Не ўдалося залагініцца
+Remote host has closed the connection.\n FtpClient Падалены хост закрыў спалучэнне.\n
+Login: CodyCam Лагін:
+Format: CodyCam Фармат:
+Every 2 hours CodyCam Кожныя 2 гадзіны
+Closing the window\n VideoConsumer.cpp Закрываю акно\n
+login ID expected CodyCam login ID чаканы
+Rate: CodyCam Тэмп:
+JPEG image CodyCam Выява JPEG
+Capture Rate Menu CodyCam Меню частаты захвату
+File %s # unterminated quote at end of file\n SettingsHandler Файл %s # невыдаленая кавычка ў канцы файла\n
+Password: CodyCam Пароль:
+Passive FTP CodyCam Пасіўны FTP
+destination directory expected CodyCam каталёг прызначэння чаканы
+password CodyCam пароль
+Directory: CodyCam Каталёг:
+Every minute CodyCam Кожную хвіліну
+read: %ld\n SftpClient чытаю: %ld\n
+Waiting… CodyCam Чакаем...
+Logging in… VideoConsumer.cpp Уваход...
+Server: CodyCam Сервер:
+server address expected CodyCam адрас сервера чаканы
+Error creating output file VideoConsumer.cpp Памылка пры стварэнні выходнага файлу
+unrecognized upload client specified CodyCam указаны кліент загрузкі не пазнаны
+File %s ; Line %ld # unterminated quote\n SettingsHandler Файл %s ; Страка %ld # невыдаленая кавычка\n
+Output CodyCam Выхад:
+Every 15 minutes CodyCam Кожныя 15 мінут
Cannot find an available video stream CodyCam Немагчыма знайсці даступны відэапаток
-Cannot find the media roster CodyCam Не ўдалося знайсці медыа ростэр
+Can't find an available connection to the video window CodyCam Немагчыма знайсці даступнае спалучэнне да акна відэа
+Transmitting… VideoConsumer.cpp Перадаецца...
Cannot get a time source CodyCam Немагчыма знайсці крыніцу часу
+Every 8 hours CodyCam Кожныя 8 гадзін
+Rename failed VideoConsumer.cpp Перайменаванне не ўдалося
+Cannot start time source! CodyCam Немагчыма запусціць крыніцу часу!
Cannot register the video window CodyCam Немагчыма зарэгістраваць акно відэа
-Cannot seek time source! CodyCam Немагчыма шукаць часавую крыніцу
+CodyCam System name Камера
+Every 24 hours CodyCam Кожныя 24 гадзіны
+unknown command SettingsHandler невядомая каманда
+Video settings CodyCam Наладкі відэа
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Немагчыма запусціць крыніцу відэа. Вам патрэбна вэб-камера.
+still image filename expected CodyCam імя файла статычнай выявы чаканае
+invalid upload client %ld\n VideoConsumer.cpp Неправільны кліент загрузкі %ld\n
+Every 15 seconds CodyCam Кожныя 15 секунд
+Error writing output file VideoConsumer.cpp Памылка пры запісу выходнага файла
+image file format expected CodyCam фармат файлу выявы чаканы
Cannot set the time source for the video source CodyCam Немагчыма ўстанавіць часавую крыніцу для відэакрыніцы
+Type: CodyCam Тып:
Cannot set the time source for the video window CodyCam Немагчыма ўстанавіць часавую крыніцу для відэаакна
+Stop video CodyCam Астанавіць відэа
+Locking the window\n VideoConsumer.cpp Прывязка акна\n
+File %s; Line %ld # %s SettingsHandler Файл %s ; Страка %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Немагчыма знайсці запрошаны каталёг на серверы
+Renaming… VideoConsumer.cpp Пераймяноўваем...
+Local CodyCam Лакальны
+Error setting type of output file VideoConsumer.cpp Памылка пры прызначэнні тыпу выходнага файлу
+upload client name expected CodyCam імя кліента загрузкі чаканае
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Падключаны...
+PASS (real password sent)\n FtpClient PASS <несапраўдны> (рэальны пароль адпраўлены)\n
+Every 5 minutes CodyCam Кожныя 5 хвілін
+read: %d\n SftpClient чытаю: %d\n
+OK CodyCam OK
+Capture controls CodyCam Кіраванне захватам
+Every hour CodyCam Кожную гадзіну
+Cannot connect the video source to the video window CodyCam Немагчыма падключыць відэакрыніцу для відэаакна
+capture rate expected CodyCam частата захвату чаканая
+Error getting initial latency for the capture node CodyCam Памылка пры вызначэнні затрымкі для вузлу захвату
+Send to… CodyCam Адпраўлена да...
+on or off expected Settings Do not translate 'on' and 'off' on або off чаканыя
+Quit CodyCam Выйсці
+cmd: '%s'\n FtpClient cmd: '%s'\n
+Never CodyCam Ніколі
+Cannot create a video window CodyCam Не ўдалося стварыць відэаакно
+Every 10 minutes CodyCam Кожныя 10 хвілін
Cannot start the video source CodyCam Не ўдалося запусціць відэакрыніцу
Cannot start the video window CodyCam Не ўдалося запусціць відэаакно
-Cannot start time source! CodyCam Немагчыма запусціць крыніцу часу!
-Capture Rate Menu CodyCam Меню частаты захвату
-Capture controls CodyCam Кіраванне захватам
-Capturing Image… VideoConsumer.cpp Захват выявы...
-Closing the window\n VideoConsumer.cpp Закрываю акно\n
-CodyCam System name Камера
-Connected… VideoConsumer.cpp Падключаны...
-Couldn't find requested directory on server VideoConsumer.cpp Немагчыма знайсці запрошаны каталёг на серверы
-Directory: CodyCam Каталёг:
-Error creating output file VideoConsumer.cpp Памылка пры стварэнні выходнага файлу
-Error getting initial latency for the capture node CodyCam Памылка пры вызначэнні затрымкі для вузлу захвату
-Error setting type of output file VideoConsumer.cpp Памылка пры прызначэнні тыпу выходнага файлу
-Error writing output file VideoConsumer.cpp Памылка пры запісу выходнага файла
-Every 10 minutes CodyCam Кожныя 10 хвілін
-Every 15 minutes CodyCam Кожныя 15 мінут
-Every 15 seconds CodyCam Кожныя 15 секунд
-Every 2 hours CodyCam Кожныя 2 гадзіны
-Every 24 hours CodyCam Кожныя 24 гадзіны
-Every 30 minutes CodyCam Кожныя 30 секунд
-Every 30 seconds CodyCam Кожныя 30 секунд
-Every 4 hours CodyCam Кожныя 4 гадзіны
-Every 5 minutes CodyCam Кожныя 5 хвілін
-Every 8 hours CodyCam Кожныя 8 гадзін
-Every hour CodyCam Кожную гадзіну
-Every minute CodyCam Кожную хвіліну
-FTP CodyCam FTP
-File CodyCam Файл
-File %s # unterminated quote at end of file\n SettingsHandler Файл %s # невыдаленая кавычка ў канцы файла\n
-File %s ; Line %ld # unterminated quote\n SettingsHandler Файл %s ; Страка %ld # невыдаленая кавычка\n
-File %s; Line %ld # %s SettingsHandler Файл %s ; Страка %ld # %s
-File name: CodyCam Імя файла:
-File transmission failed VideoConsumer.cpp Не ўдалося перадаць файл
-Format: CodyCam Фармат:
-Image Format Menu CodyCam Меню Фармата Выявы
-JPEG image CodyCam Выява JPEG
-Last Capture: VideoConsumer.cpp Апошні захват:
-Local CodyCam Лакальны
-Locking the window\n VideoConsumer.cpp Прывязка акна\n
-Logging in… VideoConsumer.cpp Уваход...
-Login: CodyCam Лагін:
-Never CodyCam Ніколі
-OK CodyCam OK
-Output CodyCam Выхад:
-PASS (real password sent)\n FtpClient PASS <несапраўдны> (рэальны пароль адпраўлены)\n
-Passive FTP CodyCam Пасіўны FTP
-Password: CodyCam Пароль:
-Quit CodyCam Выйсці
-Rate: CodyCam Тэмп:
-Remote host has closed the connection.\n FtpClient Падалены хост закрыў спалучэнне.\n
-Rename failed VideoConsumer.cpp Перайменаванне не ўдалося
-Renaming… VideoConsumer.cpp Пераймяноўваем...
-SFTP CodyCam SFTP
-Send to… CodyCam Адпраўлена да...
-Server login failed VideoConsumer.cpp Не ўдалося залагініцца
-Server: CodyCam Сервер:
-Start video CodyCam Запусціць відэа
-Stop video CodyCam Астанавіць відэа
-Transmitting… VideoConsumer.cpp Перадаецца...
-Type: CodyCam Тып:
-Video settings CodyCam Наладкі відэа
-Waiting… CodyCam Чакаем...
-capture rate expected CodyCam частата захвату чаканая
-cmd: '%s'\n FtpClient cmd: '%s'\n
-destination directory expected CodyCam каталёг прызначэння чаканы
-image file format expected CodyCam фармат файлу выявы чаканы
-invalid upload client %ld\n VideoConsumer.cpp Неправільны кліент загрузкі %ld\n
-login ID expected CodyCam login ID чаканы
-on or off expected Settings Do not translate 'on' and 'off' on або off чаканыя
-password CodyCam пароль
password expected CodyCam пароль чаканы
-read: %d\n SftpClient чытаю: %d\n
-read: %ld\n SftpClient чытаю: %ld\n
reply: %d, %d\n FtpClient адказ: %d, %d\n
+Cannot find the media roster CodyCam Не ўдалося знайсці медыа ростэр
+Every 4 hours CodyCam Кожныя 4 гадзіны
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Не ўдалося перадаць файл
+Cannot seek time source! CodyCam Немагчыма шукаць часавую крыніцу
+File CodyCam Файл
+Image Format Menu CodyCam Меню Фармата Выявы
+Every 30 minutes CodyCam Кожныя 30 секунд
reply: '%s'\n SftpClient адказ: '%s'\n
-server address expected CodyCam адрас сервера чаканы
-still image filename expected CodyCam імя файла статычнай выявы чаканае
-unknown command SettingsHandler невядомая каманда
-unrecognized upload client specified CodyCam указаны кліент загрузкі не пазнаны
-upload client name expected CodyCam імя кліента загрузкі чаканае
+Start video CodyCam Запусціць відэа
diff --git a/data/catalogs/apps/codycam/de.catkeys b/data/catalogs/apps/codycam/de.catkeys
index 5946d4171c..7d656d0ebb 100644
--- a/data/catalogs/apps/codycam/de.catkeys
+++ b/data/catalogs/apps/codycam/de.catkeys
@@ -1,93 +1,93 @@
-1 german x-vnd.Haiku.CodyCam 441085909
-Can't find an available connection to the video window CodyCam Es wurde keine verfügbare Verbindung zum Videofenster gefunden.
-Cannot connect the video source to the video window CodyCam Keine Verbindung zwischen Videoquelle und Videofenster möglich
-Cannot create a video window CodyCam Das Videofenster konnte nicht erstellt werden
-Cannot find a video source. You need a webcam to use CodyCam. CodyCam Es wurde keine Videoquelle gefunden. Um CodyCam zu nutzen, braucht man eine Webcam.
+1 german x-vnd.Haiku-CodyCam 2416864674
+Capturing Image… VideoConsumer.cpp Bild wird aufgenommen...
+Every 30 seconds CodyCam Alle 30 Sekunden
+File name: CodyCam Dateiname:
+Last Capture: VideoConsumer.cpp Letzte Aufnahme:
+Server login failed VideoConsumer.cpp Server-Login fehlgeschlagen
+Remote host has closed the connection.\n FtpClient Das Gegenüber hat die Vebindung beendet.\n
+Login: CodyCam Login:
+Format: CodyCam Format:
+Every 2 hours CodyCam Alle 2 Stunden
+Closing the window\n VideoConsumer.cpp Fenster wird geschlossen
+login ID expected CodyCam Login-ID erwartet
+Rate: CodyCam Intervall:
+JPEG image CodyCam JPEG-Bild
+Capture Rate Menu CodyCam Aufnahme-Intervall-Menü
+File %s # unterminated quote at end of file\n SettingsHandler In %s # befinden sich nicht geschlossene Anführungszeichen am Ende der Datei\n
+Password: CodyCam Passwort:
+Passive FTP CodyCam Passives FTP
+destination directory expected CodyCam Zielverzeichnis erwartet
+password CodyCam Passwort
+Directory: CodyCam Ordner:
+Every minute CodyCam Jede Minute
+read: %ld\n SftpClient gelesen: %ld\n
+Waiting… CodyCam Warten...
+Logging in… VideoConsumer.cpp Einloggen...
+Server: CodyCam Server:
+server address expected CodyCam Serveradresse erwartet
+Error creating output file VideoConsumer.cpp Fehler bei Erstellung der Ausgabedatei
+unrecognized upload client specified CodyCam angegebener Upload-Client nicht erkannt
+File %s ; Line %ld # unterminated quote\n SettingsHandler In Datei %s ; Zeile %ld # befinden sich nicht geschlossene Anführungszeichen\n
+Output CodyCam Ausgabe
+Every 15 minutes CodyCam Alle 15 Minuten
Cannot find an available video stream CodyCam Es wurde kein verfügbarer Videostream gefunden.
-Cannot find the media roster CodyCam Der Media-Roster konnte nicht gefunden werden
+Can't find an available connection to the video window CodyCam Es wurde keine verfügbare Verbindung zum Videofenster gefunden.
+Transmitting… VideoConsumer.cpp Übertragen...
Cannot get a time source CodyCam Es konnte keine Zeitquelle gefunden werden.
+Every 8 hours CodyCam Alle 8 Stunden
+Rename failed VideoConsumer.cpp Umbenennen fehlgeschlagen
+Cannot start time source! CodyCam Die Zeitquelle konnte nicht gestartet werden!
Cannot register the video window CodyCam Das Videofenster konnte nicht registriert werden
-Cannot seek time source! CodyCam Zeitquelle konnte nicht durchsucht werden!
+CodyCam System name Webcam
+Every 24 hours CodyCam Alle 24 Stunden
+unknown command SettingsHandler unbekannter Befehl
+Video settings CodyCam Video-Einstellungen
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Es wurde keine Videoquelle gefunden. Um CodyCam zu nutzen, braucht man eine Webcam.
+still image filename expected CodyCam Dateiname für Bilddatei erwartet
+invalid upload client %ld\n VideoConsumer.cpp ungültiger Upload-Client %ld\n
+Every 15 seconds CodyCam Alle 15 Sekunden
+Error writing output file VideoConsumer.cpp Fehler beim Schreiben der Ausgabedatei
+image file format expected CodyCam Bilddatei-Format erwartet
Cannot set the time source for the video source CodyCam Konnte keine Zeitquelle für die Videoquelle setzen.
+Type: CodyCam Typ:
Cannot set the time source for the video window CodyCam Konnte keine Zeitquelle für das Videofenster setzen.
+Stop video CodyCam Video anhalten
+Locking the window\n VideoConsumer.cpp Festsetzen des Fensters\n
+File %s; Line %ld # %s SettingsHandler Datei %s; Zeile %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Das angefragte Verzeichnis konnte auf dem Server nicht gefunden werden.
+Renaming… VideoConsumer.cpp Umbenennen...
+Local CodyCam Lokal
+Error setting type of output file VideoConsumer.cpp Fehler beim Setzen des Ausgabedateityps.
+upload client name expected CodyCam Name des Upload-Client erwartet
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Verbunden…
+PASS (real password sent)\n FtpClient PASS (echtes Passwort wurde gesendet)\n
+Every 5 minutes CodyCam Alle 5 Minuten
+read: %d\n SftpClient gelesen: %d\n
+OK CodyCam OK
+Capture controls CodyCam Aufnahme-Einstellungen
+Every hour CodyCam Jede Stunde
+Cannot connect the video source to the video window CodyCam Keine Verbindung zwischen Videoquelle und Videofenster möglich
+capture rate expected CodyCam Aufnahmeintervall erwartet
+Error getting initial latency for the capture node CodyCam Fehler bei der Ermittlung der Anfangsverzögerung für die Aufnahme-Node
+Send to… CodyCam Senden an…
+on or off expected Settings Do not translate 'on' and 'off' on oder off erwartet
+Quit CodyCam Beenden
+cmd: '%s'\n FtpClient Befehl: '%s'\n
+Never CodyCam Nie
+Cannot create a video window CodyCam Das Videofenster konnte nicht erstellt werden
+Every 10 minutes CodyCam Alle 10 Minuten
Cannot start the video source CodyCam Die Videoquelle konnte nicht gestartet werden
Cannot start the video window CodyCam Das Videofenster konnte nicht gestartet werden
-Cannot start time source! CodyCam Die Zeitquelle konnte nicht gestartet werden!
-Capture Rate Menu CodyCam Aufnahme-Intervall-Menü
-Capture controls CodyCam Aufnahme-Einstellungen
-Capturing Image… VideoConsumer.cpp Bild wird aufgenommen...
-Closing the window\n VideoConsumer.cpp Fenster wird geschlossen
-CodyCam System name Webcam
-Connected… VideoConsumer.cpp Verbunden…
-Couldn't find requested directory on server VideoConsumer.cpp Das angefragte Verzeichnis konnte auf dem Server nicht gefunden werden.
-Directory: CodyCam Ordner:
-Error creating output file VideoConsumer.cpp Fehler bei Erstellung der Ausgabedatei
-Error getting initial latency for the capture node CodyCam Fehler bei der Ermittlung der Anfangsverzögerung für die Aufnahme-Node
-Error setting type of output file VideoConsumer.cpp Fehler beim Setzen des Ausgabedateityps.
-Error writing output file VideoConsumer.cpp Fehler beim Schreiben der Ausgabedatei
-Every 10 minutes CodyCam Alle 10 Minuten
-Every 15 minutes CodyCam Alle 15 Minuten
-Every 15 seconds CodyCam Alle 15 Sekunden
-Every 2 hours CodyCam Alle 2 Stunden
-Every 24 hours CodyCam Alle 24 Stunden
-Every 30 minutes CodyCam Alle 30 Minuten
-Every 30 seconds CodyCam Alle 30 Sekunden
-Every 4 hours CodyCam Alle 4 Stunden
-Every 5 minutes CodyCam Alle 5 Minuten
-Every 8 hours CodyCam Alle 8 Stunden
-Every hour CodyCam Jede Stunde
-Every minute CodyCam Jede Minute
-FTP CodyCam FTP
-File CodyCam Datei
-File %s # unterminated quote at end of file\n SettingsHandler In %s # befinden sich nicht geschlossene Anführungszeichen am Ende der Datei\n
-File %s ; Line %ld # unterminated quote\n SettingsHandler In Datei %s ; Zeile %ld # befinden sich nicht geschlossene Anführungszeichen\n
-File %s; Line %ld # %s SettingsHandler Datei %s; Zeile %ld # %s
-File name: CodyCam Dateiname:
-File transmission failed VideoConsumer.cpp Dateiübertragung fehlgeschlagen
-Format: CodyCam Format:
-Image Format Menu CodyCam Bildformat-Menü
-JPEG image CodyCam JPEG-Bild
-Last Capture: VideoConsumer.cpp Letzte Aufnahme:
-Local CodyCam Lokal
-Locking the window\n VideoConsumer.cpp Festsetzen des Fensters\n
-Logging in… VideoConsumer.cpp Einloggen...
-Login: CodyCam Login:
-Never CodyCam Nie
-OK CodyCam OK
-Output CodyCam Ausgabe
-PASS (real password sent)\n FtpClient PASS (echtes Passwort wurde gesendet)\n
-Passive FTP CodyCam Passives FTP
-Password: CodyCam Passwort:
-Quit CodyCam Beenden
-Rate: CodyCam Intervall:
-Remote host has closed the connection.\n FtpClient Das Gegenüber hat die Vebindung beendet.\n
-Rename failed VideoConsumer.cpp Umbenennen fehlgeschlagen
-Renaming… VideoConsumer.cpp Umbenennen...
-SFTP CodyCam SFTP
-Send to… CodyCam Senden an…
-Server login failed VideoConsumer.cpp Server-Login fehlgeschlagen
-Server: CodyCam Server:
-Start video CodyCam Video starten
-Stop video CodyCam Video anhalten
-Transmitting… VideoConsumer.cpp Übertragen...
-Type: CodyCam Typ:
-Video settings CodyCam Video-Einstellungen
-Waiting… CodyCam Warten...
-capture rate expected CodyCam Aufnahmeintervall erwartet
-cmd: '%s'\n FtpClient Befehl: '%s'\n
-destination directory expected CodyCam Zielverzeichnis erwartet
-image file format expected CodyCam Bilddatei-Format erwartet
-invalid upload client %ld\n VideoConsumer.cpp ungültiger Upload-Client %ld\n
-login ID expected CodyCam Login-ID erwartet
-on or off expected Settings Do not translate 'on' and 'off' on oder off erwartet
-password CodyCam Passwort
password expected CodyCam Passwort erwartet
-read: %d\n SftpClient gelesen: %d\n
-read: %ld\n SftpClient gelesen: %ld\n
reply: %d, %d\n FtpClient Antwort: %d, %d\n
+Cannot find the media roster CodyCam Der Media-Roster konnte nicht gefunden werden
+Every 4 hours CodyCam Alle 4 Stunden
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Dateiübertragung fehlgeschlagen
+Cannot seek time source! CodyCam Zeitquelle konnte nicht durchsucht werden!
+File CodyCam Datei
+Image Format Menu CodyCam Bildformat-Menü
+Every 30 minutes CodyCam Alle 30 Minuten
reply: '%s'\n SftpClient Antwort; '%s'\n
-server address expected CodyCam Serveradresse erwartet
-still image filename expected CodyCam Dateiname für Bilddatei erwartet
-unknown command SettingsHandler unbekannter Befehl
-unrecognized upload client specified CodyCam angegebener Upload-Client nicht erkannt
-upload client name expected CodyCam Name des Upload-Client erwartet
+Start video CodyCam Video starten
diff --git a/data/catalogs/apps/codycam/hr.catkeys b/data/catalogs/apps/codycam/hr.catkeys
new file mode 100644
index 0000000000..4f46b0ec04
--- /dev/null
+++ b/data/catalogs/apps/codycam/hr.catkeys
@@ -0,0 +1,64 @@
+1 croatian x-vnd.Haiku.CodyCam 3121399776
+Can't find an available connection to the video window CodyCam Ne mogu naći dostupnu vezu prema video prozoru
+Cannot create a video window CodyCam Ne mogu napraviti video prozor
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Ne mogu naći video izvor.Treba vam web kamera da biste koristili CodyCam.
+Cannot start the video source CodyCam Ne mogu pokrenuti video izvor
+Cannot start the video window CodyCam Ne mogu pokrenuti video prozor
+Closing the window\n VideoConsumer.cpp Zatvaranje prozora\n
+CodyCam System name CodyCam
+Connected… VideoConsumer.cpp Spojen...
+Couldn't find requested directory on server VideoConsumer.cpp Nisam mogao nać traženi direktorij na poslužitelju
+Directory: CodyCam Direktorij:
+Error creating output file VideoConsumer.cpp Greška pri izradi izlazne datoteke
+Error writing output file VideoConsumer.cpp Greška pri pisanju izlazne datoteke
+Every 10 minutes CodyCam Svakih 10 minuta
+Every 15 minutes CodyCam Svakih 15 minuta
+Every 15 seconds CodyCam Svakih 15 sekundi
+Every 2 hours CodyCam Svaka 2 sata
+Every 24 hours CodyCam Svaka 24 sata
+Every 30 minutes CodyCam Svakih 30 minuta
+Every 30 seconds CodyCam Svakih 30 sekunda
+Every 4 hours CodyCam Svakih 4 sata
+Every 5 minutes CodyCam Svakih 5 minuta
+Every 8 hours CodyCam Svakih 8 sati
+Every hour CodyCam Svaki sat
+Every minute CodyCam Svake minute
+FTP CodyCam FTP
+File CodyCam Datoteka
+File %s; Line %ld # %s SettingsHandler Datoteka %s; Redak %ld # %s
+File name: CodyCam Ime datoteke:
+File transmission failed VideoConsumer.cpp Neuspjeli FTP prijenos
+Format: CodyCam Format:
+Image Format Menu CodyCam Izbornik formata slika
+JPEG image CodyCam JPEG slika
+Locking the window\n VideoConsumer.cpp Zaključavanje prozora\n
+Logging in… VideoConsumer.cpp Prijavljujem se...
+Login: CodyCam Prijava:
+Never CodyCam Nikada
+OK CodyCam U redu
+Output CodyCam Izlaz
+Passive FTP CodyCam Pasivni FTP
+Password: CodyCam Lozinka:
+Quit CodyCam Isključi
+Remote host has closed the connection.\n FtpClient Udaljeno računalo je prekinlo vezu.\n
+Rename failed VideoConsumer.cpp Neuspjelo preimenovanje
+Renaming… VideoConsumer.cpp Preimenovanje...
+SFTP CodyCam SFTP
+Send to… CodyCam Pošalji ka...
+Server login failed VideoConsumer.cpp Neuspjela prijava poslužitelja
+Server: CodyCam Poslužitelj
+Start video CodyCam Pokreni video
+Stop video CodyCam Zaustavi video
+Transmitting… VideoConsumer.cpp Prenosim...
+Type: CodyCam Tip:
+Video settings CodyCam Video postavke
+Waiting… CodyCam Čekam...
+cmd: '%s'\n FtpClient cmd: '%s'\n
+on or off expected Settings Do not translate 'on' and 'off' očekivano on ili off
+password CodyCam lozinka
+password expected CodyCam očekivana lozinka
+read: %d\n SftpClient čitaj: %d\n
+read: %ld\n SftpClient čitaj: %ld\n
+reply: %d, %d\n FtpClient odgovor: %d, %d\n
+reply: '%s'\n SftpClient odgovor: '%s'\n
+unknown command SettingsHandler nepoznata naredba
diff --git a/data/catalogs/apps/codycam/lt.catkeys b/data/catalogs/apps/codycam/lt.catkeys
new file mode 100644
index 0000000000..5f18fe670a
--- /dev/null
+++ b/data/catalogs/apps/codycam/lt.catkeys
@@ -0,0 +1,92 @@
+1 lithuanian x-vnd.Haiku-CodyCam 2923092031
+Capturing Image… VideoConsumer.cpp Fotografuojama…
+Every 30 seconds CodyCam 30 sekundžių
+File name: CodyCam Failo vardas:
+Last Capture: VideoConsumer.cpp Paskiausiai fotografuota:
+Server login failed VideoConsumer.cpp Prisijungti prie serverio nepavyko
+Remote host has closed the connection.\n FtpClient Nutolęs serveris užbaigė ryšį.\n
+Login: CodyCam Abonento vardas:
+Format: CodyCam Formatas:
+Every 2 hours CodyCam 2 valandos
+Closing the window\n VideoConsumer.cpp Užveriamas langas\n
+login ID expected CodyCam reikalingas abonento vardas
+Rate: CodyCam Intervalas:
+JPEG image CodyCam JPEG paveikslas
+Capture Rate Menu CodyCam Fotografavimo intervalo meniu
+File %s # unterminated quote at end of file\n SettingsHandler Failas %s # failo gale neterminuota kabutė\n
+Password: CodyCam Slaptažodis:
+Passive FTP CodyCam Pasyvioji FTP veiksena
+destination directory expected CodyCam reikalingas paskirties aplankas
+password CodyCam slaptažodis
+Directory: CodyCam Aplankas:
+Every minute CodyCam 1 minutė
+read: %ld\n SftpClient skaitoma: %ld\n
+Waiting… CodyCam Laukiama…
+Logging in… VideoConsumer.cpp Registruojamasi į seansą…
+Server: CodyCam Serveris:
+server address expected CodyCam reikalingas serverio adresas
+Error creating output file VideoConsumer.cpp Klaida kuriant išvesties failą
+unrecognized upload client specified CodyCam nurodytas nežinomas įkėlimo būdas
+File %s ; Line %ld # unterminated quote\n SettingsHandler Failas %s; eilutė %ld # neterminuota kabutė\n
+Output CodyCam Paskirtis
+Every 15 minutes CodyCam 15 minučių
+Cannot find an available video stream CodyCam Nepavyko rasti laisvo vaizdo srauto
+Can't find an available connection to the video window CodyCam Nepavyko rasti laisvos jungties prie vaizdo lango
+Transmitting… VideoConsumer.cpp Siunčiama…
+Cannot get a time source CodyCam Nepavyko gauti laikmačio
+Every 8 hours CodyCam 8 valandos
+Rename failed VideoConsumer.cpp Nepavyko pervardinti
+Cannot start time source! CodyCam Nepavyko paleisti laikmačio!
+Cannot register the video window CodyCam Nepavyko užregistruoti vaizdo lango
+CodyCam System name CodyCam
+Every 24 hours CodyCam 24 valandos
+unknown command SettingsHandler nežinoma komanda
+Video settings CodyCam Vaizdo parametrai
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Nepavyksta rasti vaizdo šaltinio. Norint naudotis „CodyCam“, Jums reikės internetinės kameros.
+still image filename expected CodyCam reikalingas paveikslo failo vardas
+invalid upload client %ld\n VideoConsumer.cpp negalimas įkėlimo būdas %ld\n
+Every 15 seconds CodyCam 15 sekundžių
+Error writing output file VideoConsumer.cpp Klaida rašant išvesties failą
+image file format expected CodyCam reikalingas paveikslo failo formatas
+Cannot set the time source for the video source CodyCam Nepavyko susieti laikmačio su vaizdo šaltiniu
+Type: CodyCam Tipas:
+Cannot set the time source for the video window CodyCam Nepavyko susieti laikmačio su vaizdo ekranu
+Stop video CodyCam Stabdyti vaizdą
+Locking the window\n VideoConsumer.cpp Langas užrakinamas\n
+File %s; Line %ld # %s SettingsHandler Failas %s; eilutė %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Nurodytas aplankas serveryje nerastas
+Renaming… VideoConsumer.cpp Pervardinama…
+Local CodyCam vietinis
+Error setting type of output file VideoConsumer.cpp Klaida nustatant išvesties failo tipą
+upload client name expected CodyCam reikalingas įkėlimo būdas
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Prisijungta…
+PASS (real password sent)\n FtpClient PASS (nusiųstas tikras slaptažodis)\n
+Every 5 minutes CodyCam 5 minutės
+read: %d\n SftpClient skaitoma: %d\n
+OK CodyCam Gerai
+Capture controls CodyCam Fotografavimo parinktys
+Every hour CodyCam 1 valanda
+Cannot connect the video source to the video window CodyCam Nepavyko prijungti vaizdo šaltinio prie vaizdo lango
+capture rate expected CodyCam reikalingas fotografavimo intervalas
+Error getting initial latency for the capture node CodyCam Klaida gaunant pradinę vaizdo šaltinio delsą
+Send to… CodyCam Siųsti į…
+on or off expected Settings Do not translate 'on' and 'off' reikšmė turi būti „on“ arba „off“
+Quit CodyCam Baigti darbą
+cmd: '%s'\n FtpClient komanda: „%s“\n
+Never CodyCam niekada
+Cannot create a video window CodyCam Nepavyko sukurti vaizdo lango
+Every 10 minutes CodyCam 10 minučių
+Cannot start the video source CodyCam Nepavyko paleisti vaizdo šaltinio
+Cannot start the video window CodyCam Nepavyko paleisti vaizdo lango
+password expected CodyCam reikalingas slaptažodis
+reply: %d, %d\n FtpClient atsakas: %d, %d\n
+Every 4 hours CodyCam 4 valandos
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Failų perdavimas nepavyko
+Cannot seek time source! CodyCam Laikmačio pervynioti negalima!
+File CodyCam Failas
+Image Format Menu CodyCam Paveikslo formato meniu
+Every 30 minutes CodyCam 30 minučių
+reply: '%s'\n SftpClient atsakas: „%s“\n
+Start video CodyCam Pradėti vaizdą
diff --git a/data/catalogs/apps/codycam/nl.catkeys b/data/catalogs/apps/codycam/nl.catkeys
index 03356ec0ac..378b1a1f95 100644
--- a/data/catalogs/apps/codycam/nl.catkeys
+++ b/data/catalogs/apps/codycam/nl.catkeys
@@ -1,92 +1,93 @@
-1 dutch x-vnd.Haiku.CodyCam 3353004969
-Can't find an available connection to the video window CodyCam Kan geen beschikbare verbinding naar het videovenster vinden
-Cannot connect the video source to the video window CodyCam Kan videobron niet met videovenster verbinden
-Cannot create a video window CodyCam Kan geen videovenster maken
-Cannot find a video source. You need a webcam to use CodyCam. CodyCam Kan geen videobron vinden. U hebt een webcam nodig om CodyCam te kunnen gebruiken.
+1 dutch; flemish x-vnd.Haiku-CodyCam 2416864674
+Capturing Image… VideoConsumer.cpp Beeld vastleggen...
+Every 30 seconds CodyCam Elke 30 seconden
+File name: CodyCam Bestandsnaam:
+Last Capture: VideoConsumer.cpp Laatst vastgelegd:
+Server login failed VideoConsumer.cpp Server-login is mislukt
+Remote host has closed the connection.\n FtpClient Host-op-afstand heeft de verbinding verbroken.\n
+Login: CodyCam Inloggen:
+Format: CodyCam Format:
+Every 2 hours CodyCam Elke 2 uur
+Closing the window\n VideoConsumer.cpp Het venster sluiten\n
+login ID expected CodyCam login ID verwacht
+Rate: CodyCam Snelheid:
+JPEG image CodyCam JPEG-afbeelding
+Capture Rate Menu CodyCam Menu beeldsnelheid
+File %s # unterminated quote at end of file\n SettingsHandler Bestand %s # niet-afgesloten aanhalingsteken aan het eind van bestand\n
+Password: CodyCam Wachtwoord:
+Passive FTP CodyCam Passieve FTP
+destination directory expected CodyCam doelmap verwacht
+password CodyCam wachtwoord
+Directory: CodyCam Map:
+Every minute CodyCam Elke minuut
+read: %ld\n SftpClient lees: %ld\n
+Waiting… CodyCam Bezig met wachten...
+Logging in… VideoConsumer.cpp Inloggen...
+Server: CodyCam Server:
+server address expected CodyCam serveradres verwacht
+Error creating output file VideoConsumer.cpp Fout bij het maken van het uitvoer-bestand
+unrecognized upload client specified CodyCam onbekende uploadclient gespecificeerd
+File %s ; Line %ld # unterminated quote\n SettingsHandler Bestand %s ; Regel %ld # niet-afgesloten aanhalingsteken\n
+Output CodyCam Uitvoer
+Every 15 minutes CodyCam Elke 15 minuten
Cannot find an available video stream CodyCam Kan geen beschikbare videostream vinden
-Cannot find the media roster CodyCam Kan medianaamlijst niet vinden
+Can't find an available connection to the video window CodyCam Kan geen beschikbare verbinding naar het videovenster vinden
+Transmitting… VideoConsumer.cpp Verzenden...
Cannot get a time source CodyCam Kan geen tijdsbron krijgen
+Every 8 hours CodyCam Elke 8 uur
+Rename failed VideoConsumer.cpp Hernoemen is mislukt
+Cannot start time source! CodyCam Kan tijdsbron niet starten!
Cannot register the video window CodyCam Kan het videovenster niet registreren
-Cannot seek time source! CodyCam Kan geen tijdsbron zoeken!
+CodyCam System name CodyCam
+Every 24 hours CodyCam Elke 24 uur
+unknown command SettingsHandler onbekende opdracht
+Video settings CodyCam Video-instellingen
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Kan geen videobron vinden. U hebt een webcam nodig om CodyCam te kunnen gebruiken.
+still image filename expected CodyCam bestandsnaam van afbeelding verwacht
+invalid upload client %ld\n VideoConsumer.cpp ongeldige uploadclient %ld\n
+Every 15 seconds CodyCam Elke 15 seconden
+Error writing output file VideoConsumer.cpp Fout bij het maken van het uitvoerbestand
+image file format expected CodyCam bestandsformaat van afbeelding verwacht
Cannot set the time source for the video source CodyCam Kan de tijdsbron voor de videobron niet instellen
+Type: CodyCam Type:
Cannot set the time source for the video window CodyCam Kan de tijdsbron voor het videovenster niet instellen
+Stop video CodyCam Stop video
+Locking the window\n VideoConsumer.cpp Venster afsluiten
+File %s; Line %ld # %s SettingsHandler Bestand %s; Regel %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Kan opgegeven map op server niet vinden
+Renaming… VideoConsumer.cpp Hernoemen...
+Local CodyCam Lokaal
+Error setting type of output file VideoConsumer.cpp Fout bij het instellen van het type uitvoerbestand
+upload client name expected CodyCam naam van uploadclient verwacht
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Verbonden...
+PASS (real password sent)\n FtpClient PASS (echt wachtwoord verstuurd)\n
+Every 5 minutes CodyCam Elke 5 minuten
+read: %d\n SftpClient lees: %d\n
+OK CodyCam Oké
+Capture controls CodyCam Besturing voor het vastleggen
+Every hour CodyCam Elk uur
+Cannot connect the video source to the video window CodyCam Kan videobron niet met videovenster verbinden
+capture rate expected CodyCam beeldsnelheid verwacht
+Error getting initial latency for the capture node CodyCam Fout bij het verkrijgen van de initiële latentie voor het vastlegpunt
+Send to… CodyCam Versturen naar...
+on or off expected Settings Do not translate 'on' and 'off' on of off verwacht
+Quit CodyCam Afsluiten
+cmd: '%s'\n FtpClient cmd: '%s'\n
+Never CodyCam Nooit
+Cannot create a video window CodyCam Kan geen videovenster maken
+Every 10 minutes CodyCam Elke 10 minuten
Cannot start the video source CodyCam Kan videobron niet starten
Cannot start the video window CodyCam Kan videovenster niet starten
-Cannot start time source! CodyCam Kan tijdsbron niet starten!
-Capture Rate Menu CodyCam Menu beeldsnelheid
-Capture controls CodyCam Besturing voor het vastleggen
-Capturing Image… VideoConsumer.cpp Beeld vastleggen...
-Closing the window\n VideoConsumer.cpp Het venster sluiten\n
-Connected… VideoConsumer.cpp Verbonden...
-Couldn't find requested directory on server VideoConsumer.cpp Kan opgegeven map op server niet vinden
-Directory: CodyCam Map:
-Error creating output file VideoConsumer.cpp Fout bij het maken van het uitvoer-bestand
-Error getting initial latency for the capture node CodyCam Fout bij het verkrijgen van de initiële latentie voor het vastlegpunt
-Error setting type of output file VideoConsumer.cpp Fout bij het instellen van het type uitvoerbestand
-Error writing output file VideoConsumer.cpp Fout bij het maken van het uitvoerbestand
-Every 10 minutes CodyCam Elke 10 minuten
-Every 15 minutes CodyCam Elke 15 minuten
-Every 15 seconds CodyCam Elke 15 seconden
-Every 2 hours CodyCam Elke 2 uur
-Every 24 hours CodyCam Elke 24 uur
-Every 30 minutes CodyCam Elke 30 minuten
-Every 30 seconds CodyCam Elke 30 seconden
-Every 4 hours CodyCam Elke 4 uur
-Every 5 minutes CodyCam Elke 5 minuten
-Every 8 hours CodyCam Elke 8 uur
-Every hour CodyCam Elk uur
-Every minute CodyCam Elke minuut
-FTP CodyCam FTP
-File CodyCam Bestand
-File %s # unterminated quote at end of file\n SettingsHandler Bestand %s # niet-afgesloten aanhalingsteken aan het eind van bestand\n
-File %s ; Line %ld # unterminated quote\n SettingsHandler Bestand %s ; Regel %ld # niet-afgesloten aanhalingsteken\n
-File %s; Line %ld # %s SettingsHandler Bestand %s; Regel %ld # %s
-File name: CodyCam Bestandsnaam:
-File transmission failed VideoConsumer.cpp Bestandsoverdracht is mislukt
-Format: CodyCam Format:
-Image Format Menu CodyCam Beeldformaat Menu
-JPEG image CodyCam JPEG-afbeelding
-Last Capture: VideoConsumer.cpp Laatst vastgelegd:
-Local CodyCam Lokaal
-Locking the window\n VideoConsumer.cpp Venster afsluiten
-Logging in… VideoConsumer.cpp Inloggen...
-Login: CodyCam Inloggen:
-Never CodyCam Nooit
-OK CodyCam Oké
-Output CodyCam Uitvoer
-PASS (real password sent)\n FtpClient PASS (echt wachtwoord verstuurd)\n
-Passive FTP CodyCam Passieve FTP
-Password: CodyCam Wachtwoord:
-Quit CodyCam Afsluiten
-Rate: CodyCam Snelheid:
-Remote host has closed the connection.\n FtpClient Host-op-afstand heeft de verbinding verbroken.\n
-Rename failed VideoConsumer.cpp Hernoemen is mislukt
-Renaming… VideoConsumer.cpp Hernoemen...
-SFTP CodyCam SFTP
-Send to… CodyCam Versturen naar...
-Server login failed VideoConsumer.cpp Server-login is mislukt
-Server: CodyCam Server:
-Start video CodyCam Start video
-Stop video CodyCam Stop video
-Transmitting… VideoConsumer.cpp Verzenden...
-Type: CodyCam Type:
-Video settings CodyCam Video-instellingen
-Waiting… CodyCam Bezig met wachten...
-capture rate expected CodyCam beeldsnelheid verwacht
-cmd: '%s'\n FtpClient cmd: '%s'\n
-destination directory expected CodyCam doelmap verwacht
-image file format expected CodyCam bestandsformaat van afbeelding verwacht
-invalid upload client %ld\n VideoConsumer.cpp ongeldige uploadclient %ld\n
-login ID expected CodyCam login ID verwacht
-on or off expected Settings Do not translate 'on' and 'off' on of off verwacht
-password CodyCam wachtwoord
password expected CodyCam wachtwoord verwacht
-read: %d\n SftpClient lees: %d\n
-read: %ld\n SftpClient lees: %ld\n
reply: %d, %d\n FtpClient antwoord: %d, %d\n
+Cannot find the media roster CodyCam Kan medianaamlijst niet vinden
+Every 4 hours CodyCam Elke 4 uur
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Bestandsoverdracht is mislukt
+Cannot seek time source! CodyCam Kan geen tijdsbron zoeken!
+File CodyCam Bestand
+Image Format Menu CodyCam Beeldformaat Menu
+Every 30 minutes CodyCam Elke 30 minuten
reply: '%s'\n SftpClient antwoord: '%s'\n
-server address expected CodyCam serveradres verwacht
-still image filename expected CodyCam bestandsnaam van afbeelding verwacht
-unknown command SettingsHandler onbekende opdracht
-unrecognized upload client specified CodyCam onbekende uploadclient gespecificeerd
-upload client name expected CodyCam naam van uploadclient verwacht
+Start video CodyCam Start video
diff --git a/data/catalogs/apps/codycam/ru.catkeys b/data/catalogs/apps/codycam/ru.catkeys
index cdbd9e7e05..0462754089 100644
--- a/data/catalogs/apps/codycam/ru.catkeys
+++ b/data/catalogs/apps/codycam/ru.catkeys
@@ -1,93 +1,93 @@
-1 russian x-vnd.Haiku.CodyCam 441085909
-Can't find an available connection to the video window CodyCam Не удалось обнаружить доступного соединения с видео окном
-Cannot connect the video source to the video window CodyCam Невозможно подключить видео источник к видео окну
-Cannot create a video window CodyCam Невозможно создать видео окно
-Cannot find a video source. You need a webcam to use CodyCam. CodyCam Не найден источник видеосигнала.\nПожалуйста, подключите вебкамеру.
+1 russian x-vnd.Haiku-CodyCam 2416864674
+Capturing Image… VideoConsumer.cpp Захват изображения…
+Every 30 seconds CodyCam Каждые 30 секунд
+File name: CodyCam Имя файла:
+Last Capture: VideoConsumer.cpp Последний захват изображения:
+Server login failed VideoConsumer.cpp Не удалось подключиться к серверу
+Remote host has closed the connection.\n FtpClient Сервер закрыл соединение.\n
+Login: CodyCam Логин:
+Format: CodyCam Формат:
+Every 2 hours CodyCam Каждые 2 часа
+Closing the window\n VideoConsumer.cpp Закрытие окна\n
+login ID expected CodyCam укажите логин
+Rate: CodyCam Период:
+JPEG image CodyCam JPEG изображение
+Capture Rate Menu CodyCam Меню периодичности захвата
+File %s # unterminated quote at end of file\n SettingsHandler Файл %s # unterminated quote at end of file\n
+Password: CodyCam Пароль:
+Passive FTP CodyCam Пасивный FTP
+destination directory expected CodyCam укажите папку назначения
+password CodyCam пароль
+Directory: CodyCam Каталог:
+Every minute CodyCam Каждую минуту
+read: %ld\n SftpClient чтение: %ld\n
+Waiting… CodyCam Ожидание…
+Logging in… VideoConsumer.cpp Авторизация…
+Server: CodyCam Сервер:
+server address expected CodyCam укажите адрес сервера
+Error creating output file VideoConsumer.cpp Ошибка при создании файла
+unrecognized upload client specified CodyCam Указанный клиент загрузки не распознан
+File %s ; Line %ld # unterminated quote\n SettingsHandler Файл %s ; Строка %ld # unterminated quote\n
+Output CodyCam Вывод
+Every 15 minutes CodyCam Каждые 15 минут
Cannot find an available video stream CodyCam Невозможно найти видео поток
-Cannot find the media roster CodyCam Невозможно найти медиа ростер
+Can't find an available connection to the video window CodyCam Не удалось обнаружить доступного соединения с видео окном
+Transmitting… VideoConsumer.cpp Передача…
Cannot get a time source CodyCam Невозможно получить продолжительность
+Every 8 hours CodyCam Каждые 8 часов
+Rename failed VideoConsumer.cpp Не удалось переименовать
+Cannot start time source! CodyCam Невозможно начать отсчет времени!
Cannot register the video window CodyCam Невозможно зарегистрировать видео окно
-Cannot seek time source! CodyCam Невозможно обратиться к счетчику времени!
+CodyCam System name Вебкамера
+Every 24 hours CodyCam Каждые 24 часа
+unknown command SettingsHandler неизвестная команда
+Video settings CodyCam Настройка видео
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Не найден источник видеосигнала.\nПожалуйста, подключите вебкамеру.
+still image filename expected CodyCam укажите название изображения
+invalid upload client %ld\n VideoConsumer.cpp неправильный клиент загрузки: %ld\n
+Every 15 seconds CodyCam Каждые 15 секунд
+Error writing output file VideoConsumer.cpp Ошибка при записи файла
+image file format expected CodyCam укажите формат изображения
Cannot set the time source for the video source CodyCam Невозможно установить счетчик времени для видео источника
+Type: CodyCam Тип:
Cannot set the time source for the video window CodyCam Невозможно установить счетчик времени для видео окна
+Stop video CodyCam Остановить видео
+Locking the window\n VideoConsumer.cpp Блокировка окна\n
+File %s; Line %ld # %s SettingsHandler Файл %s; Строка %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Невозможно найти запрашиваемый каталог на сервере
+Renaming… VideoConsumer.cpp Переименование…
+Local CodyCam Локальный
+Error setting type of output file VideoConsumer.cpp Ошибка при задании типа выходного файла
+upload client name expected CodyCam укажите имя клиент загрузки
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Подключен…
+PASS (real password sent)\n FtpClient ПАРОЛЬ <скрыт> (реальный пароль отослан)\n
+Every 5 minutes CodyCam Каждые 5 минут
+read: %d\n SftpClient чтение: %d\n
+OK CodyCam ОК
+Capture controls CodyCam Настройки захвата
+Every hour CodyCam Каждый час
+Cannot connect the video source to the video window CodyCam Невозможно подключить видео источник к видео окну
+capture rate expected CodyCam укажите периодичность захвата
+Error getting initial latency for the capture node CodyCam Ошибка при получении задержки для узла захвата
+Send to… CodyCam Послать…
+on or off expected Settings Do not translate 'on' and 'off' ожидается on или off
+Quit CodyCam Выход
+cmd: '%s'\n FtpClient команда: '%s'\n
+Never CodyCam Никогда
+Cannot create a video window CodyCam Невозможно создать видео окно
+Every 10 minutes CodyCam Каждые 10 минут
Cannot start the video source CodyCam Невозможно запустить видео источник
Cannot start the video window CodyCam Невозможно запустить видео окно
-Cannot start time source! CodyCam Невозможно начать отсчет времени!
-Capture Rate Menu CodyCam Меню периодичности захвата
-Capture controls CodyCam Настройки захвата
-Capturing Image… VideoConsumer.cpp Захват изображения…
-Closing the window\n VideoConsumer.cpp Закрытие окна\n
-CodyCam System name Вебкамера
-Connected… VideoConsumer.cpp Подключен…
-Couldn't find requested directory on server VideoConsumer.cpp Невозможно найти запрашиваемый каталог на сервере
-Directory: CodyCam Каталог:
-Error creating output file VideoConsumer.cpp Ошибка при создании файла
-Error getting initial latency for the capture node CodyCam Ошибка при получении задержки для узла захвата
-Error setting type of output file VideoConsumer.cpp Ошибка при задании типа выходного файла
-Error writing output file VideoConsumer.cpp Ошибка при записи файла
-Every 10 minutes CodyCam Каждые 10 минут
-Every 15 minutes CodyCam Каждые 15 минут
-Every 15 seconds CodyCam Каждые 15 секунд
-Every 2 hours CodyCam Каждые 2 часа
-Every 24 hours CodyCam Каждые 24 часа
-Every 30 minutes CodyCam Каждые 30 минут
-Every 30 seconds CodyCam Каждые 30 секунд
-Every 4 hours CodyCam Каждые 4 часа
-Every 5 minutes CodyCam Каждые 5 минут
-Every 8 hours CodyCam Каждые 8 часов
-Every hour CodyCam Каждый час
-Every minute CodyCam Каждую минуту
-FTP CodyCam FTP
-File CodyCam Файл
-File %s # unterminated quote at end of file\n SettingsHandler Файл %s # unterminated quote at end of file\n
-File %s ; Line %ld # unterminated quote\n SettingsHandler Файл %s ; Строка %ld # unterminated quote\n
-File %s; Line %ld # %s SettingsHandler Файл %s; Строка %ld # %s
-File name: CodyCam Имя файла:
-File transmission failed VideoConsumer.cpp Не удалось передать файл
-Format: CodyCam Формат:
-Image Format Menu CodyCam Меню формата изображения
-JPEG image CodyCam JPEG изображение
-Last Capture: VideoConsumer.cpp Последний захват изображения:
-Local CodyCam Локальный
-Locking the window\n VideoConsumer.cpp Блокировка окна\n
-Logging in… VideoConsumer.cpp Авторизация…
-Login: CodyCam Логин:
-Never CodyCam Никогда
-OK CodyCam ОК
-Output CodyCam Вывод
-PASS (real password sent)\n FtpClient ПАРОЛЬ <скрыт> (реальный пароль отослан)\n
-Passive FTP CodyCam Пасивный FTP
-Password: CodyCam Пароль:
-Quit CodyCam Выход
-Rate: CodyCam Период:
-Remote host has closed the connection.\n FtpClient Сервер закрыл соединение.\n
-Rename failed VideoConsumer.cpp Не удалось переименовать
-Renaming… VideoConsumer.cpp Переименование…
-SFTP CodyCam SFTP
-Send to… CodyCam Послать…
-Server login failed VideoConsumer.cpp Не удалось подключиться к серверу
-Server: CodyCam Сервер:
-Start video CodyCam Запустить видео
-Stop video CodyCam Остановить видео
-Transmitting… VideoConsumer.cpp Передача…
-Type: CodyCam Тип:
-Video settings CodyCam Настройка видео
-Waiting… CodyCam Ожидание…
-capture rate expected CodyCam укажите периодичность захвата
-cmd: '%s'\n FtpClient команда: '%s'\n
-destination directory expected CodyCam укажите папку назначения
-image file format expected CodyCam укажите формат изображения
-invalid upload client %ld\n VideoConsumer.cpp неправильный клиент загрузки: %ld\n
-login ID expected CodyCam укажите логин
-on or off expected Settings Do not translate 'on' and 'off' ожидается on или off
-password CodyCam пароль
password expected CodyCam укажите пароль
-read: %d\n SftpClient чтение: %d\n
-read: %ld\n SftpClient чтение: %ld\n
reply: %d, %d\n FtpClient ответ: %d, %d\n
+Cannot find the media roster CodyCam Невозможно найти медиа ростер
+Every 4 hours CodyCam Каждые 4 часа
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Не удалось передать файл
+Cannot seek time source! CodyCam Невозможно обратиться к счетчику времени!
+File CodyCam Файл
+Image Format Menu CodyCam Меню формата изображения
+Every 30 minutes CodyCam Каждые 30 минут
reply: '%s'\n SftpClient ответ: '%s'\n
-server address expected CodyCam укажите адрес сервера
-still image filename expected CodyCam укажите название изображения
-unknown command SettingsHandler неизвестная команда
-unrecognized upload client specified CodyCam Указанный клиент загрузки не распознан
-upload client name expected CodyCam укажите имя клиент загрузки
+Start video CodyCam Запустить видео
diff --git a/data/catalogs/apps/codycam/sk.catkeys b/data/catalogs/apps/codycam/sk.catkeys
index fcf2a92a2c..cb7c87575d 100644
--- a/data/catalogs/apps/codycam/sk.catkeys
+++ b/data/catalogs/apps/codycam/sk.catkeys
@@ -1,93 +1,93 @@
-1 slovak x-vnd.Haiku.CodyCam 441085909
-Can't find an available connection to the video window CodyCam Nebolo nájdené dostupné spojenie s oknom s videom
-Cannot connect the video source to the video window CodyCam Nebolo možné spojiť zdroj videa s oknom s videom
-Cannot create a video window CodyCam Nebolo možné vytvoriť okno s videom
-Cannot find a video source. You need a webcam to use CodyCam. CodyCam Nedá sa nájsť zdroj videa. Aby ste mohli používať CodyCam, potrebujete webkameru.
+1 slovak x-vnd.Haiku-CodyCam 2416864674
+Capturing Image… VideoConsumer.cpp Zachytáva sa obrázok…
+Every 30 seconds CodyCam Každých 30 sekúnd
+File name: CodyCam Názov súboru:
+Last Capture: VideoConsumer.cpp Posledné zachytenie:
+Server login failed VideoConsumer.cpp Prihlásenie k serveru zlyhalo
+Remote host has closed the connection.\n FtpClient Vzdialený hostiteľ zatvoril spojenie.\n
+Login: CodyCam Prihlasovacie meno:
+Format: CodyCam Formát:
+Every 2 hours CodyCam Každé 2 hodiny
+Closing the window\n VideoConsumer.cpp Zatvára sa okno\n
+login ID expected CodyCam očakávalo sa prihlasovacie meno
+Rate: CodyCam Rýchlosť:
+JPEG image CodyCam Obrázok JPEG
+Capture Rate Menu CodyCam Menu rýchlosti zachytávania
+File %s # unterminated quote at end of file\n SettingsHandler Súbor %s # neukončená úvodzovka na konci súboru\n
+Password: CodyCam Heslo:
+Passive FTP CodyCam Pasívne FTP
+destination directory expected CodyCam očakával sa cieľový adresár
+password CodyCam heslo
+Directory: CodyCam Adresár:
+Every minute CodyCam Každú minútu
+read: %ld\n SftpClient prečítané: %ld\n
+Waiting… CodyCam Čaká sa…
+Logging in… VideoConsumer.cpp Prihlasuje sa…
+Server: CodyCam Server:
+server address expected CodyCam očakávala sa adresa servera
+Error creating output file VideoConsumer.cpp Chyba pri vytváraní výstupného súboru
+unrecognized upload client specified CodyCam uvedený nerozpoznaný nahrávací klient
+File %s ; Line %ld # unterminated quote\n SettingsHandler Súbor %s; riadok %ld # neukončená úvodzovka\n
+Output CodyCam Výstup
+Every 15 minutes CodyCam Každých 15 minút
Cannot find an available video stream CodyCam Nenájdený dostupný video stream
-Cannot find the media roster CodyCam Nie je možné nájsť zoznam médií
+Can't find an available connection to the video window CodyCam Nebolo nájdené dostupné spojenie s oknom s videom
+Transmitting… VideoConsumer.cpp Prenáša sa…
Cannot get a time source CodyCam Nebolo možné získať zdroj času
+Every 8 hours CodyCam Každých 8 hodín
+Rename failed VideoConsumer.cpp Premenovanie zlyhalo
+Cannot start time source! CodyCam Nebolo možné spustiť zdroj času!
Cannot register the video window CodyCam Nebolo možné zaregistrovať okno s videom
-Cannot seek time source! CodyCam Nie je možné posunúť sa na zdroj času!
+CodyCam System name CodyCam
+Every 24 hours CodyCam Každých 24 hodín
+unknown command SettingsHandler neznámy príkaz
+Video settings CodyCam Nastavenia videa
+Cannot find a video source. You need a webcam to use CodyCam. CodyCam Nedá sa nájsť zdroj videa. Aby ste mohli používať CodyCam, potrebujete webkameru.
+still image filename expected CodyCam očakával sa názov obrázka
+invalid upload client %ld\n VideoConsumer.cpp neplatný klient nahrávania %ld\n
+Every 15 seconds CodyCam Každých 15 sekúnd
+Error writing output file VideoConsumer.cpp Chyba pri zápise výstupného súboru
+image file format expected CodyCam očakával sa formát obrázka
Cannot set the time source for the video source CodyCam Nie je možné nastaviť časový zdroj zdroja videa
+Type: CodyCam Typ:
Cannot set the time source for the video window CodyCam Nie je možné nastaviť časový zdroj okna videa
+Stop video CodyCam Zastaviť video
+Locking the window\n VideoConsumer.cpp Zamyká sa okno\n
+File %s; Line %ld # %s SettingsHandler Súbor %s; riadok %ld # %s
+Couldn't find requested directory on server VideoConsumer.cpp Nebol nájdený požadovaný adresár na serveri
+Renaming… VideoConsumer.cpp Premenováva sa…
+Local CodyCam Lokálne
+Error setting type of output file VideoConsumer.cpp Chyba pri nastavovaní typu výstupu
+upload client name expected CodyCam očakával sa názov nahrávacieho klienta
+SFTP CodyCam SFTP
+Connected… VideoConsumer.cpp Pripojené…
+PASS (real password sent)\n FtpClient PASS (skutočné odoslané heslo)\n
+Every 5 minutes CodyCam Každých 5 minút
+read: %d\n SftpClient prečítané: %d\n
+OK CodyCam OK
+Capture controls CodyCam Ovládacie prvky zachytávania
+Every hour CodyCam Každú hodinu
+Cannot connect the video source to the video window CodyCam Nebolo možné spojiť zdroj videa s oknom s videom
+capture rate expected CodyCam očakávaná rýchlosť zachytávania
+Error getting initial latency for the capture node CodyCam Chyba pri zisťovaní úvodnej latencie uzla zachytávania
+Send to… CodyCam Poslať kam…
+on or off expected Settings Do not translate 'on' and 'off' očakávalo sa „on“ alebo „off“
+Quit CodyCam Ukončiť
+cmd: '%s'\n FtpClient príkaz: „%s“\n
+Never CodyCam Nikdy
+Cannot create a video window CodyCam Nebolo možné vytvoriť okno s videom
+Every 10 minutes CodyCam Každých 10 minút
Cannot start the video source CodyCam Nebolo možné spustiť zdroj videa
Cannot start the video window CodyCam Nebolo možné spustiť okno s videom
-Cannot start time source! CodyCam Nebolo možné spustiť zdroj času!
-Capture Rate Menu CodyCam Menu rýchlosti zachytávania:
-Capture controls CodyCam Ovládacie prvky zachytávania
-Capturing Image… VideoConsumer.cpp Zachytáva sa obrázok...
-Closing the window\n VideoConsumer.cpp Zatvára sa okno\n
-CodyCam System name CodyCam
-Connected… VideoConsumer.cpp Pripojené...
-Couldn't find requested directory on server VideoConsumer.cpp Nebol nájdený požadovaný adresár na serveri
-Directory: CodyCam Adresár:
-Error creating output file VideoConsumer.cpp Chyba pri vytváraní výstupného súboru
-Error getting initial latency for the capture node CodyCam Chyba pri zisťovaní úvodnej latencie uzla zachytávania
-Error setting type of output file VideoConsumer.cpp Chyba pri nastavovaní typu výstupu
-Error writing output file VideoConsumer.cpp Chyba pri zápise výstupného súboru
-Every 10 minutes CodyCam Každých 10 minút
-Every 15 minutes CodyCam Každých 15 minút
-Every 15 seconds CodyCam Každých 15 sekúnd
-Every 2 hours CodyCam Každé 2 hodiny
-Every 24 hours CodyCam Každých 24 hodín
-Every 30 minutes CodyCam Každých 30 minút
-Every 30 seconds CodyCam Každých 30 sekúnd
-Every 4 hours CodyCam Každé 4 hodiny
-Every 5 minutes CodyCam Každých 5 minút
-Every 8 hours CodyCam Každých 8 hodín
-Every hour CodyCam Každú hodinu
-Every minute CodyCam Každú minútu
-FTP CodyCam FTP
-File CodyCam Súbor
-File %s # unterminated quote at end of file\n SettingsHandler Súbor %s # neukončená úvodzovka na konci súboru\n
-File %s ; Line %ld # unterminated quote\n SettingsHandler Súbor %s; riadok %ld # neukončená úvodzovka\n
-File %s; Line %ld # %s SettingsHandler Súbor %s; riadok %ld # %s
-File name: CodyCam Názov súboru:
-File transmission failed VideoConsumer.cpp Prenos súboru zlyhal
-Format: CodyCam Formát:
-Image Format Menu CodyCam Menu formát obrázka
-JPEG image CodyCam obrázok JPEG
-Last Capture: VideoConsumer.cpp Posledné zachytenie:
-Local CodyCam Lokálne
-Locking the window\n VideoConsumer.cpp Zamyká sa okno\n
-Logging in… VideoConsumer.cpp Prihlasuje sa...
-Login: CodyCam Prihlasovacie meno:
-Never CodyCam Nikdy
-OK CodyCam OK
-Output CodyCam Výstup
-PASS (real password sent)\n FtpClient PASS (skutočné odoslané heslo)\n
-Passive FTP CodyCam Pasívne FTP
-Password: CodyCam Heslo:
-Quit CodyCam Ukončiť
-Rate: CodyCam Rýchlosť:
-Remote host has closed the connection.\n FtpClient Vzdialený hostiteľ zatvoril spojenie.\n
-Rename failed VideoConsumer.cpp Premenovanie zlyhalo
-Renaming… VideoConsumer.cpp Premenováva sa...
-SFTP CodyCam SFTP
-Send to… CodyCam Poslať kam...
-Server login failed VideoConsumer.cpp Prihlásenie k serveru zlyhalo
-Server: CodyCam Server:
-Start video CodyCam Spustiť video
-Stop video CodyCam Zastaviť video
-Transmitting… VideoConsumer.cpp Prenáša sa...
-Type: CodyCam Typ:
-Video settings CodyCam Nastavenia videa
-Waiting… CodyCam Čaká sa...
-capture rate expected CodyCam očakávaná rýchlosť zachytávania
-cmd: '%s'\n FtpClient príkaz: „%s“\n
-destination directory expected CodyCam očakával sa cieľový adresár
-image file format expected CodyCam očakával sa formát obrázka
-invalid upload client %ld\n VideoConsumer.cpp neplatný klient nahrávania %ld\n
-login ID expected CodyCam očakávalo sa prihlasovacie meno
-on or off expected Settings Do not translate 'on' and 'off' očakávalo sa „on“ alebo „off“
-password CodyCam heslo
password expected CodyCam očakávalo sa heslo
-read: %d\n SftpClient prečítané: %d\n
-read: %ld\n SftpClient prečítané: %ld\n
reply: %d, %d\n FtpClient odpoveď: %d, %d\n
+Cannot find the media roster CodyCam Nie je možné nájsť zoznam médií
+Every 4 hours CodyCam Každé 4 hodiny
+FTP CodyCam FTP
+File transmission failed VideoConsumer.cpp Prenos súboru zlyhal
+Cannot seek time source! CodyCam Nie je možné posunúť sa na zdroj času!
+File CodyCam Súbor
+Image Format Menu CodyCam Menu formát obrázka
+Every 30 minutes CodyCam Každých 30 minút
reply: '%s'\n SftpClient odpoveď: „%s“\n
-server address expected CodyCam očakávala sa adresa servera
-still image filename expected CodyCam očakával sa názov obrázka
-unknown command SettingsHandler neznámy príkaz
-unrecognized upload client specified CodyCam uvedený nerozpoznaný nahrávací klient
-upload client name expected CodyCam očakával sa názov nahrávacieho klienta
+Start video CodyCam Spustiť video
diff --git a/data/catalogs/apps/deskbar/be.catkeys b/data/catalogs/apps/deskbar/be.catkeys
index b1f13ddbb0..2484114069 100644
--- a/data/catalogs/apps/deskbar/be.catkeys
+++ b/data/catalogs/apps/deskbar/be.catkeys
@@ -1,45 +1,32 @@
-1 belarusian x-vnd.Be-TSKB 4265681964
- BeMenu
-About this system BeMenu Пра гэтую Сістэму
-Always on top PreferencesWindow Заўсёды наверсе
-Applications B_USER_DESKBAR_DIRECTORY/Applications Праграмы
-Applications PreferencesWindow Праграмы
-Auto-hide PreferencesWindow Схаваць аўтаматычна
-Auto-raise PreferencesWindow Узнікаць аўтаматычна
-Change time… TimeView Змяніць час...
-Clock PreferencesWindow Гадзіннік
-Close all WindowMenu Закрыць усё
-Demos B_USER_DESKBAR_DIRECTORY/Demos Прыклады
-Deskbar System name Deskbar
-Deskbar preferences PreferencesWindow Наладкі Deskbar
-Deskbar preferences… BeMenu Наладкі Deskbar...
-Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Праграмкі Дэсктопу
+1 belarusian x-vnd.Be-TSKB 1662766351
Edit menu… PreferencesWindow Змяніць меню...
-Expand new applications PreferencesWindow Разгарнуць новыя праграмы
-Find… BeMenu Знайсці...
-Hide all WindowMenu Схаваць усё
-Hide time TimeView Час на схаванне
-Menu PreferencesWindow Меню
-Mount BeMenu Змантаваць
-No windows WindowMenu Без вокнаў
-Power off BeMenu Выключыць
-Preferences B_USER_DESKBAR_DIRECTORY/Preferences Наладкі
-Quit application WindowMenu Выйсці з праграмы
-Recent applications BeMenu Нядаўнія праграмы
-Recent applications: PreferencesWindow Нядаўнія праграмы
-Recent documents BeMenu Нядаўнія дакументы
+Applications PreferencesWindow Праграмы
Recent documents: PreferencesWindow Нядаўнія дакументы:
-Recent folders BeMenu Нядаўнія каталёгі
-Recent folders: PreferencesWindow Нядаўнія каталёгі:
-Restart Tracker BeMenu Перазапусціць Трэкер
-Restart system BeMenu Перазагрузіць сістэму
-Show Time Tray Паказаць Час
-Show all WindowMenu Паказаць усё
-Show application expander PreferencesWindow Паказваць кнопку спісу праграм
-Show calendar… TimeView Паказаць календар...
-Show replicants BeMenu Паказаць рэпліканты
-Show seconds PreferencesWindow Паказваць секунды
-Shutdown… BeMenu Выключыць...
Sort running applications PreferencesWindow Сартыравать запушчаныя праграмы
-Tracker always first PreferencesWindow Трэкер заўсёды першы
+Change time… TimeView Змяніць час...
+Applications B_USER_DESKBAR_DIRECTORY/Applications Праграмы
Window PreferencesWindow Акно
+Menu PreferencesWindow Меню
+Show seconds PreferencesWindow Паказваць секунды
+Auto-hide PreferencesWindow Схаваць аўтаматычна
+Always on top PreferencesWindow Заўсёды наверсе
+Show all WindowMenu Паказаць усё
+No windows WindowMenu Без вокнаў
+Deskbar System name Deskbar
+Auto-raise PreferencesWindow Узнікаць аўтаматычна
+Hide time TimeView Час на схаванне
+Recent folders: PreferencesWindow Нядаўнія каталёгі:
+Show application expander PreferencesWindow Паказваць кнопку спісу праграм
+Close all WindowMenu Закрыць усё
+Deskbar preferences PreferencesWindow Наладкі Deskbar
+Recent applications: PreferencesWindow Нядаўнія праграмы
+Tracker always first PreferencesWindow Трэкер заўсёды першы
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Наладкі
+Show calendar… TimeView Паказаць календар...
+Show Time Tray Паказаць Час
+Expand new applications PreferencesWindow Разгарнуць новыя праграмы
+Clock PreferencesWindow Гадзіннік
+Demos B_USER_DESKBAR_DIRECTORY/Demos Прыклады
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Праграмкі Дэсктопу
+Hide all WindowMenu Схаваць усё
+Quit application WindowMenu Выйсці з праграмы
diff --git a/data/catalogs/apps/deskbar/de.catkeys b/data/catalogs/apps/deskbar/de.catkeys
index 53890eb021..2e0c544ac4 100644
--- a/data/catalogs/apps/deskbar/de.catkeys
+++ b/data/catalogs/apps/deskbar/de.catkeys
@@ -1,45 +1,47 @@
-1 german x-vnd.Be-TSKB 4265681964
- BeMenu
-About this system BeMenu Über dieses System
-Always on top PreferencesWindow Immer im Vordergrund
-Applications B_USER_DESKBAR_DIRECTORY/Applications Anwendungen
-Applications PreferencesWindow Anwendungen
-Auto-hide PreferencesWindow Automatisch ausblenden
-Auto-raise PreferencesWindow Automatisch nach vorn holen
-Change time… TimeView Uhrzeit ändern…
-Clock PreferencesWindow Uhr
-Close all WindowMenu Alle schließen
-Demos B_USER_DESKBAR_DIRECTORY/Demos Demos
-Deskbar System name Deskbar
-Deskbar preferences PreferencesWindow Deskbar-Einstellungen
-Deskbar preferences… BeMenu Deskbar-Einstellungen…
-Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Desktop-Apps
+1 german x-vnd.Be-TSKB 107564593
+Power off DeskbarMenu Ausschalten
Edit menu… PreferencesWindow Menü bearbeiten…
-Expand new applications PreferencesWindow Neue Anwendungen aufklappen
-Find… BeMenu Suchen…
-Hide all WindowMenu Alle ausblenden
-Hide time TimeView Uhrzeit ausblenden
-Menu PreferencesWindow Menü
-Mount BeMenu Einhängen
-No windows WindowMenu Keine Fenster
-Power off BeMenu Ausschalten
-Preferences B_USER_DESKBAR_DIRECTORY/Preferences Einstellungen
-Quit application WindowMenu Anwendung beenden
-Recent applications BeMenu Letzte Anwendungen
-Recent applications: PreferencesWindow Letzte Anwendungen:
-Recent documents BeMenu Letzte Dokumente
+Suspend DeskbarMenu Ruhezustand
+Applications PreferencesWindow Anwendungen
+About Haiku DeskbarMenu Über Haiku
Recent documents: PreferencesWindow Letzte Dokumente:
-Recent folders BeMenu Letzte Ordner
-Recent folders: PreferencesWindow Letzte Ordner:
-Restart Tracker BeMenu Tracker neu starten
-Restart system BeMenu Neustarten
-Show Time Tray Uhrzeit einblenden
-Show all WindowMenu Alle einblenden
-Show application expander PreferencesWindow Expander anzeigen
-Show calendar… TimeView Kalender anzeigen…
-Show replicants BeMenu Replikanten einblenden
-Show seconds PreferencesWindow Sekunden anzeigen
-Shutdown… BeMenu Herunterfahren...
+Recent applications DeskbarMenu Letzte Anwendungen
Sort running applications PreferencesWindow Laufende Anwendungen sortieren
-Tracker always first PreferencesWindow Tracker immer zuerst
+Change time… TimeView Uhrzeit ändern…
+Applications B_USER_DESKBAR_DIRECTORY/Applications Anwendungen
+Find… DeskbarMenu Suchen…
Window PreferencesWindow Fenster
+Menu PreferencesWindow Menü
+Recent documents DeskbarMenu Letzte Dokumente
+Show seconds PreferencesWindow Sekunden anzeigen
+Auto-hide PreferencesWindow Automatisch ausblenden
+Always on top PreferencesWindow Immer im Vordergrund
+ DeskbarMenu
+Show all WindowMenu Alle einblenden
+No windows WindowMenu Keine Fenster
+Deskbar System name Deskbar
+Restart system DeskbarMenu Neustarten
+Auto-raise PreferencesWindow Automatisch nach vorn holen
+Hide time TimeView Uhrzeit ausblenden
+Recent folders: PreferencesWindow Letzte Ordner:
+Show application expander PreferencesWindow Expander anzeigen
+Restart Tracker DeskbarMenu Tracker neu starten
+Close all WindowMenu Alle schließen
+Deskbar preferences PreferencesWindow Deskbar-Einstellungen
+Mount DeskbarMenu Einhängen
+Recent applications: PreferencesWindow Letzte Anwendungen:
+Shutdown… DeskbarMenu Herunterfahren…
+Tracker always first PreferencesWindow Tracker immer zuerst
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Einstellungen
+Recent folders DeskbarMenu Letzte Ordner
+About this system DeskbarMenu Über dieses System
+Show calendar… TimeView Kalender anzeigen…
+Deskbar preferences… DeskbarMenu Deskbar-Einstellungen…
+Show Time Tray Uhrzeit einblenden
+Expand new applications PreferencesWindow Neue Anwendungen aufklappen
+Show replicants DeskbarMenu Replikanten einblenden
+Clock PreferencesWindow Uhr
+Demos B_USER_DESKBAR_DIRECTORY/Demos Demos
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Desktop-Apps
+Hide all WindowMenu Alle ausblenden
+Quit application WindowMenu Anwendung beenden
diff --git a/data/catalogs/apps/deskbar/fi.catkeys b/data/catalogs/apps/deskbar/fi.catkeys
index cb5ed134c1..9d90f478f1 100644
--- a/data/catalogs/apps/deskbar/fi.catkeys
+++ b/data/catalogs/apps/deskbar/fi.catkeys
@@ -1,6 +1,7 @@
-1 finnish x-vnd.Be-TSKB 4265681964
- BeMenu
-About this system BeMenu Tästä järjestelmästä
+1 finnish x-vnd.Be-TSKB 107564593
+ DeskbarMenu
+About Haiku DeskbarMenu Haikusta...
+About this system DeskbarMenu Tästä järjestelmästä
Always on top PreferencesWindow Aina päällimmäisenä
Applications B_USER_DESKBAR_DIRECTORY/Applications Sovellukset
Applications PreferencesWindow Sovellukset
@@ -12,34 +13,35 @@ Close all WindowMenu Sulje kaikki
Demos B_USER_DESKBAR_DIRECTORY/Demos Esittelyohjelmat
Deskbar System name Työpöytäpalkki
Deskbar preferences PreferencesWindow Työpöytäpalkin asetukset
-Deskbar preferences… BeMenu Työpöytäpalkin asetukset...
+Deskbar preferences… DeskbarMenu Työpöytäpalkkiasetukset...
Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Työpöytäappletit
Edit menu… PreferencesWindow Muokkaa valikkoa...
Expand new applications PreferencesWindow Laajenna uudet sovellukset
-Find… BeMenu Etsi...
+Find… DeskbarMenu Etsi...
Hide all WindowMenu Piilota kaikki
Hide time TimeView Piilota aika
Menu PreferencesWindow Valikko
-Mount BeMenu Liitä
+Mount DeskbarMenu Liitä
No windows WindowMenu Ei ikkunoita
-Power off BeMenu Katkaise virta
+Power off DeskbarMenu Sammuta virta
Preferences B_USER_DESKBAR_DIRECTORY/Preferences Asetusohjelmat
Quit application WindowMenu Poistu sovelluksesta
-Recent applications BeMenu Äskettäiset sovellukset
+Recent applications DeskbarMenu Äskettäiset sovellukset
Recent applications: PreferencesWindow Äskettäiset sovellukset:
-Recent documents BeMenu Äskettäiset asiakirjat
+Recent documents DeskbarMenu Äskettäiset asiakirjat
Recent documents: PreferencesWindow Äskettäiset asiakirjat:
-Recent folders BeMenu Äskettäiset kansiot
+Recent folders DeskbarMenu Äskettäiset kansiot
Recent folders: PreferencesWindow Äskettäiset kansiot:
-Restart Tracker BeMenu Käynnistä seuraaja uudelleen
-Restart system BeMenu Käynnistä järjestelmä uudelleen
+Restart Tracker DeskbarMenu Käynnistä Seuraaja uudelleen
+Restart system DeskbarMenu Käynnistä järjestelmä uudelleen
Show Time Tray Näytä aika
Show all WindowMenu Näytä kaikki
Show application expander PreferencesWindow Näytä sovelluslaajentaja
Show calendar… TimeView Näytä kalenteri...
-Show replicants BeMenu Näytä replikantit
+Show replicants DeskbarMenu Näytä replikantit
Show seconds PreferencesWindow Näytä sekunnit
-Shutdown… BeMenu Sulje järjestelmä...
+Shutdown… DeskbarMenu Sammuttaminen...
Sort running applications PreferencesWindow Lajittele suoritettavat sovellukset
+Suspend DeskbarMenu Keskeytystila
Tracker always first PreferencesWindow Seuraaja aina ensimmäisenä
Window PreferencesWindow Ikkuna
diff --git a/data/catalogs/apps/deskbar/fr.catkeys b/data/catalogs/apps/deskbar/fr.catkeys
index 4867d932e6..fd20bc3a67 100644
--- a/data/catalogs/apps/deskbar/fr.catkeys
+++ b/data/catalogs/apps/deskbar/fr.catkeys
@@ -1,8 +1,8 @@
-1 french x-vnd.Be-TSKB 2472557472
- BeMenu
+1 french x-vnd.Be-TSKB 1662766351
Always on top PreferencesWindow Toujours au dessus
Applications B_USER_DESKBAR_DIRECTORY/Applications Applications
Applications PreferencesWindow Applications
+Auto-hide PreferencesWindow Masquer automatiquement
Auto-raise PreferencesWindow Rehausser automatiquement
Change time… TimeView Régler l'horloge…
Clock PreferencesWindow Horloge
@@ -10,34 +10,23 @@ Close all WindowMenu Tout fermer
Demos B_USER_DESKBAR_DIRECTORY/Demos Démos
Deskbar System name Deskbar
Deskbar preferences PreferencesWindow Réglages de la Deskbar
-Deskbar preferences… BeMenu Réglages de la Deskbar…
Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Gadgets
Edit menu… PreferencesWindow Éditer le menu…
Expand new applications PreferencesWindow Développer les nouvelles applications
-Find… BeMenu Rechercher…
Hide all WindowMenu Tout cacher
Hide time TimeView Cacher l'heure
Menu PreferencesWindow Menu
-Mount BeMenu Monter
No windows WindowMenu Pas de fenêtres
-Power off BeMenu Éteindre
Preferences B_USER_DESKBAR_DIRECTORY/Preferences Préférences
Quit application WindowMenu Quitter l'application
-Recent applications BeMenu Applications récentes
Recent applications: PreferencesWindow Applications récentes :
-Recent documents BeMenu Documents récents
Recent documents: PreferencesWindow Documents récents :
-Recent folders BeMenu Dossiers récents
Recent folders: PreferencesWindow Dossiers récents :
-Restart Tracker BeMenu Redémarrer le Tracker
-Restart system BeMenu Redémarrer le système
Show Time Tray Montrer l'heure
Show all WindowMenu Montrer tout
Show application expander PreferencesWindow Montrer le dérouleur d'application
Show calendar… TimeView Montrer le calendrier…
-Show replicants BeMenu Montrer les réplicants
Show seconds PreferencesWindow Montrer les secondes
-Shutdown… BeMenu Arrêter…
Sort running applications PreferencesWindow Trier les applications lancées
Tracker always first PreferencesWindow Lister le Tracker en premier
Window PreferencesWindow Fenêtre
diff --git a/data/catalogs/apps/deskbar/hr.catkeys b/data/catalogs/apps/deskbar/hr.catkeys
new file mode 100644
index 0000000000..6cf3b4770f
--- /dev/null
+++ b/data/catalogs/apps/deskbar/hr.catkeys
@@ -0,0 +1,41 @@
+1 croatian x-vnd.Be-TSKB 3912946945
+ BeMenu
+About Haiku BeMenu O Haiku
+About this system BeMenu O ovom sustavu
+Always on top PreferencesWindow Uvijek na vrhu
+Applications B_USER_DESKBAR_DIRECTORY/Applications Programi
+Applications PreferencesWindow Programi
+Auto-hide PreferencesWindow Samoskrivanje
+Auto-raise PreferencesWindow Samopodizanje
+Change time… TimeView Promijeni vrijeme...
+Clock PreferencesWindow Sat
+Close all WindowMenu Zatvori sve
+Deskbar System name Deskbar
+Deskbar preferences PreferencesWindow Deskbar osobitosti
+Edit menu… PreferencesWindow Uredi izbornik...
+Expand new applications PreferencesWindow Proširi nove programe
+Find… BeMenu Nađi...
+Hide all WindowMenu Sakrij sve
+Hide time TimeView Sakrij vrijeme
+Menu PreferencesWindow Izbornik
+Mount BeMenu Montiraj
+No windows WindowMenu Bez prozora
+Power off BeMenu Iskjluči
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Osobitosti
+Quit application WindowMenu Zatvori program
+Recent applications BeMenu Nedavni programi
+Recent applications: PreferencesWindow Nedavni programi:
+Recent documents BeMenu Nedavni dokumenti
+Recent documents: PreferencesWindow Nedavni dokumenti:
+Recent folders BeMenu Nedavne mape
+Recent folders: PreferencesWindow Nedavne mape:
+Restart system BeMenu Ponovno pokreni sustav
+Show Time Tray Pokaži vrijeme
+Show all WindowMenu Pokaži sve
+Show application expander PreferencesWindow Pokaži proširivač programa
+Show calendar… TimeView Pokaži kalendar...
+Show seconds PreferencesWindow Pokaži sekunde
+Shutdown… BeMenu Isključi...
+Sort running applications PreferencesWindow Sortitiraj pokrenute programe
+Suspend BeMenu Suspendiraj
+Window PreferencesWindow Prozor
diff --git a/data/catalogs/apps/deskbar/lt.catkeys b/data/catalogs/apps/deskbar/lt.catkeys
index dbabb40c64..fb9fe2f11a 100644
--- a/data/catalogs/apps/deskbar/lt.catkeys
+++ b/data/catalogs/apps/deskbar/lt.catkeys
@@ -1,38 +1,46 @@
-1 lithuanian x-vnd.Be-TSKB 3232664655
- BeMenu
-Always on top PreferencesWindow Visuomet viršuje
-Applications PreferencesWindow Programos
-Auto-raise PreferencesWindow Automatiškai iškilti
-Change time… TimeView Keisti laiką…
-Clock PreferencesWindow Laikrodis
-Close all WindowMenu Užverti visus
-Deskbar preferences PreferencesWindow Užduočių juostos parinktys
-Deskbar preferences… BeMenu Užduočių juostos parinktys…
+1 lithuanian x-vnd.Be-TSKB 2311697004
+Power off DeskbarMenu Išjungti
Edit menu… PreferencesWindow Taisyti meniu…
-Expand new applications PreferencesWindow Išskleisti paleidžiamas programas
-Find… BeMenu Ieškoti…
-Hide all WindowMenu Slėpti visus
-Hide time TimeView Nerodyti laikrodžio
-Menu PreferencesWindow Meniu
-Mount BeMenu Prijungti diską
-No windows WindowMenu Langų nėra
-Power off BeMenu Išjungti
-Quit application WindowMenu Užbaigti programos darbą
-Recent applications BeMenu Paskiausiai leistos programos
-Recent applications: PreferencesWindow Paskiausios programos:
-Recent documents BeMenu Paskiausiai atverti dokumentai
+Suspend DeskbarMenu Pristabdyti
+Applications PreferencesWindow Programos
+About Haiku DeskbarMenu Apie „Haiku“
Recent documents: PreferencesWindow Paskiausi dokumentai:
-Recent folders BeMenu Paskiausiai lankyti aplankai
-Recent folders: PreferencesWindow Paskiausi aplankai:
-Restart Tracker BeMenu Perleisti „Tracker“
-Restart system BeMenu Perleisti
-Show Time Tray Rodyti laikrodį
-Show all WindowMenu Rodyti visus
-Show application expander PreferencesWindow Rodyti programų skleistuką
-Show calendar… TimeView Rodyti kalendorių…
-Show replicants BeMenu Rodyti integravimo rankenėles
-Show seconds PreferencesWindow Rodyti sekundes
-Shutdown… BeMenu Kompiuterio išjungimas…
+Recent applications DeskbarMenu Paskiausiai leistos programos
Sort running applications PreferencesWindow Rikiuoti paleistas programas
-Tracker always first PreferencesWindow „Tracker“ rikiuoti pradžioje
+Change time… TimeView Keisti laiką…
+Applications B_USER_DESKBAR_DIRECTORY/Applications Programos
+Find… DeskbarMenu Ieškoti…
Window PreferencesWindow Langas
+Menu PreferencesWindow Meniu
+Recent documents DeskbarMenu Paskiausiai atverti dokumentai
+Show seconds PreferencesWindow Rodyti sekundes
+Auto-hide PreferencesWindow Automatiškai slėpti
+Always on top PreferencesWindow Visuomet viršuje
+Show all WindowMenu Rodyti visus
+No windows WindowMenu Langų nėra
+Deskbar System name Užduočių juosta
+Restart system DeskbarMenu Paleisti iš naujo
+Auto-raise PreferencesWindow Automatiškai iškilti
+Hide time TimeView Nerodyti laikrodžio
+Recent folders: PreferencesWindow Paskiausi aplankai:
+Show application expander PreferencesWindow Rodyti programų skleistuką
+Restart Tracker DeskbarMenu Perleisti Pėdsekį
+Close all WindowMenu Užverti visus
+Deskbar preferences PreferencesWindow Užduočių juostos nuostatos
+Mount DeskbarMenu Prijungti diską
+Recent applications: PreferencesWindow Paskiausios programos:
+Shutdown… DeskbarMenu Kompiuterio išjungimas…
+Tracker always first PreferencesWindow Pėdsekį rikiuoti pradžioje
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Nuostatos
+Recent folders DeskbarMenu Paskiausiai lankyti aplankai
+About this system DeskbarMenu Apie šią sistemą
+Show calendar… TimeView Rodyti kalendorių…
+Deskbar preferences… DeskbarMenu Užduočių juostos nuostatos…
+Show Time Tray Rodyti laikrodį
+Expand new applications PreferencesWindow Išskleisti paleidžiamas programas
+Show replicants DeskbarMenu Rodyti replikavimo rankenėles
+Clock PreferencesWindow Laikrodis
+Demos B_USER_DESKBAR_DIRECTORY/Demos Pavyzdžiai
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Pagalbinės programėlės
+Hide all WindowMenu Slėpti visus
+Quit application WindowMenu Užbaigti programos darbą
diff --git a/data/catalogs/apps/deskbar/nl.catkeys b/data/catalogs/apps/deskbar/nl.catkeys
index 86388e6d9e..b1d0164abd 100644
--- a/data/catalogs/apps/deskbar/nl.catkeys
+++ b/data/catalogs/apps/deskbar/nl.catkeys
@@ -1,38 +1,47 @@
-1 dutch x-vnd.Be-TSKB 3232664655
- BeMenu
-Always on top PreferencesWindow Altijd bovenop
+1 dutch; flemish x-vnd.Be-TSKB 107564593
+Power off DeskbarMenu Uitzetten
+Edit menu… PreferencesWindow Bewerk menu...
+Suspend DeskbarMenu Onderbreken
Applications PreferencesWindow Toepassingen
-Auto-raise PreferencesWindow Automatisch naar boven
+About Haiku DeskbarMenu Over Haiku
+Recent documents: PreferencesWindow Recente documenten:
+Recent applications DeskbarMenu Recente toepassingen
+Sort running applications PreferencesWindow Sorteer lopende toepassingen
Change time… TimeView Tijd aanpassen...
-Clock PreferencesWindow Klok
+Applications B_USER_DESKBAR_DIRECTORY/Applications Toepassingen
+Find… DeskbarMenu Vind...
+Window PreferencesWindow Venster
+Menu PreferencesWindow Menu
+Recent documents DeskbarMenu Recente documenten
+Show seconds PreferencesWindow Toon seconden
+Auto-hide PreferencesWindow Automatisch verbergen
+Always on top PreferencesWindow Altijd bovenop
+ DeskbarMenu
+Show all WindowMenu Toon alles
+No windows WindowMenu Geen vensters
+Deskbar System name Deskbar
+Restart system DeskbarMenu Systeem herstarten
+Auto-raise PreferencesWindow Automatisch naar boven
+Hide time TimeView Tijd verbergen
+Recent folders: PreferencesWindow Recente mappen:
+Show application expander PreferencesWindow Toon toepassing-expander
+Restart Tracker DeskbarMenu Tracker herstarten
Close all WindowMenu Alles sluiten
Deskbar preferences PreferencesWindow Deskbar-voorkeuren
-Deskbar preferences… BeMenu Deskbar-voorkeuren...
-Edit menu… PreferencesWindow Bewerk menu...
-Expand new applications PreferencesWindow Toon nieuwe toepassingen
-Find… BeMenu Vind...
-Hide all WindowMenu Alles verbergen
-Hide time TimeView Tijd verbergen
-Menu PreferencesWindow Menu
-Mount BeMenu Betrek
-No windows WindowMenu Geen vensters
-Power off BeMenu Uitzetten
-Quit application WindowMenu Programma afsluiten
-Recent applications BeMenu Recente toepassingen
+Mount DeskbarMenu Betrek
Recent applications: PreferencesWindow Recente toepassingen:
-Recent documents BeMenu Recente documenten
-Recent documents: PreferencesWindow Recente documenten:
-Recent folders BeMenu Recente mappen
-Recent folders: PreferencesWindow Recente mappen:
-Restart Tracker BeMenu Tracker herstarten
-Restart system BeMenu Systeem herstarten
-Show Time Tray Toon tijd
-Show all WindowMenu Toon alles
-Show application expander PreferencesWindow Toon toepassing-expander
-Show calendar… TimeView Toon kalender
-Show replicants BeMenu Toon replicants
-Show seconds PreferencesWindow Toon seconden
-Shutdown… BeMenu Afsluiten...
-Sort running applications PreferencesWindow Sorteer lopende toepassingen
+Shutdown… DeskbarMenu Afsluiten...
Tracker always first PreferencesWindow Tracker altijd eerst
-Window PreferencesWindow Venster
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Voorkeuren
+Recent folders DeskbarMenu Recente mappen
+About this system DeskbarMenu Over dit systeem
+Show calendar… TimeView Toon kalender
+Deskbar preferences… DeskbarMenu Deskbar-voorkeuren...
+Show Time Tray Toon tijd
+Expand new applications PreferencesWindow Toon nieuwe toepassingen
+Show replicants DeskbarMenu Toon replicants
+Clock PreferencesWindow Klok
+Demos B_USER_DESKBAR_DIRECTORY/Demos Demo's
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Bureaubladapplets
+Hide all WindowMenu Alles verbergen
+Quit application WindowMenu Programma afsluiten
diff --git a/data/catalogs/apps/deskbar/ru.catkeys b/data/catalogs/apps/deskbar/ru.catkeys
index f11293a481..91e14ff3fc 100644
--- a/data/catalogs/apps/deskbar/ru.catkeys
+++ b/data/catalogs/apps/deskbar/ru.catkeys
@@ -1,45 +1,32 @@
-1 russian x-vnd.Be-TSKB 4265681964
- BeMenu <Папка Be пуста>
-About this system BeMenu Об этой системе
-Always on top PreferencesWindow Всегда сверху
-Applications B_USER_DESKBAR_DIRECTORY/Applications Приложения
-Applications PreferencesWindow Приложения
-Auto-hide PreferencesWindow Скрывать автоматически
-Auto-raise PreferencesWindow Всплывать при наведении
-Change time… TimeView Настроить часы…
-Clock PreferencesWindow Часы
-Close all WindowMenu Закрыть все
-Demos B_USER_DESKBAR_DIRECTORY/Demos Демо
-Deskbar System name Deskbar
-Deskbar preferences PreferencesWindow Настройки Deskbar
-Deskbar preferences… BeMenu Настроить Deskbar…
-Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Апплеты
+1 russian x-vnd.Be-TSKB 1662766351
Edit menu… PreferencesWindow Изменить меню…
-Expand new applications PreferencesWindow Раскрывать список окон при запуске
-Find… BeMenu Найти…
-Hide all WindowMenu Скрыть все
-Hide time TimeView Скрыть часы
-Menu PreferencesWindow Меню
-Mount BeMenu Подключить
-No windows WindowMenu Нет окон
-Power off BeMenu Выключить компьютер
-Preferences B_USER_DESKBAR_DIRECTORY/Preferences Настройки
-Quit application WindowMenu Закрыть приложение
-Recent applications BeMenu Недавние приложения
-Recent applications: PreferencesWindow Недавние приложения:
-Recent documents BeMenu Недавние документы
+Applications PreferencesWindow Приложения
Recent documents: PreferencesWindow Недавние документы:
-Recent folders BeMenu Недавние папки
-Recent folders: PreferencesWindow Недавние папки:
-Restart Tracker BeMenu Перезапустить Tracker
-Restart system BeMenu Перезагрузить компьютер
-Show Time Tray Отображать время
-Show all WindowMenu Показать все
-Show application expander PreferencesWindow Отображать список окон приложений
-Show calendar… TimeView Показать календарь…
-Show replicants BeMenu Отображать репликанты
-Show seconds PreferencesWindow Отображать секунды
-Shutdown… BeMenu Завершение работы…
Sort running applications PreferencesWindow Сортировать запущенные приложения
-Tracker always first PreferencesWindow Tracker всегда первый
+Change time… TimeView Настроить часы…
+Applications B_USER_DESKBAR_DIRECTORY/Applications Приложения
Window PreferencesWindow Окно
+Menu PreferencesWindow Меню
+Show seconds PreferencesWindow Отображать секунды
+Auto-hide PreferencesWindow Скрывать автоматически
+Always on top PreferencesWindow Всегда сверху
+Show all WindowMenu Показать все
+No windows WindowMenu Нет окон
+Deskbar System name Deskbar
+Auto-raise PreferencesWindow Всплывать при наведении
+Hide time TimeView Скрыть часы
+Recent folders: PreferencesWindow Недавние папки:
+Show application expander PreferencesWindow Отображать список окон приложений
+Close all WindowMenu Закрыть все
+Deskbar preferences PreferencesWindow Настройки Deskbar
+Recent applications: PreferencesWindow Недавние приложения:
+Tracker always first PreferencesWindow Tracker всегда первый
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Настройки
+Show calendar… TimeView Показать календарь…
+Show Time Tray Отображать время
+Expand new applications PreferencesWindow Раскрывать список окон при запуске
+Clock PreferencesWindow Часы
+Demos B_USER_DESKBAR_DIRECTORY/Demos Демо
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Апплеты
+Hide all WindowMenu Скрыть все
+Quit application WindowMenu Закрыть приложение
diff --git a/data/catalogs/apps/deskbar/sk.catkeys b/data/catalogs/apps/deskbar/sk.catkeys
index 39f9aa12ee..b64a3b6890 100644
--- a/data/catalogs/apps/deskbar/sk.catkeys
+++ b/data/catalogs/apps/deskbar/sk.catkeys
@@ -1,45 +1,47 @@
-1 slovak x-vnd.Be-TSKB 4265681964
- BeMenu
-About this system BeMenu O tomto systéme
-Always on top PreferencesWindow Vždy na vrchu
-Applications B_USER_DESKBAR_DIRECTORY/Applications Aplikácie
+1 slovak x-vnd.Be-TSKB 107564593
+Power off DeskbarMenu Vypnúť
+Edit menu… PreferencesWindow Upraviť menu…
+Suspend DeskbarMenu Režim spánku
Applications PreferencesWindow Aplikácie
-Auto-hide PreferencesWindow Automaticky skrývať
-Auto-raise PreferencesWindow Automaticky aktivovať
-Change time… TimeView Zmeniť čas...
-Clock PreferencesWindow Hodiny
-Close all WindowMenu Zatvoriť všetky
-Demos B_USER_DESKBAR_DIRECTORY/Demos Demá
-Deskbar System name Panel
-Deskbar preferences PreferencesWindow Nastavenia Panelu
-Deskbar preferences… BeMenu Nastavenia Panelu...
-Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Aplety plochy
-Edit menu… PreferencesWindow Upraviť menu...
-Expand new applications PreferencesWindow Výsuvný zoznam nových aplikácií
-Find… BeMenu Nájsť...
-Hide all WindowMenu Skryť všetky
-Hide time TimeView Skryť čas
-Menu PreferencesWindow Menu
-Mount BeMenu Pripojiť
-No windows WindowMenu Žiadne okná
-Power off BeMenu Vypnúť
-Preferences B_USER_DESKBAR_DIRECTORY/Preferences Nastavenia
-Quit application WindowMenu Ukončiť aplikáciu
-Recent applications BeMenu Nedávne aplikácie
-Recent applications: PreferencesWindow Nedávne aplikácie:
-Recent documents BeMenu Nedávne dokumenty
+About Haiku DeskbarMenu O Haiku
Recent documents: PreferencesWindow Nedávne dokumenty:
-Recent folders BeMenu Nedávne priečinky
-Recent folders: PreferencesWindow Nedávne priečinky:
-Restart Tracker BeMenu Reštartovať Tracker
-Restart system BeMenu Reštartovať systém
-Show Time Tray Zobraziť čas
-Show all WindowMenu Zobraziť všetky
-Show application expander PreferencesWindow Zobraziť výsuvný zoznam aplikácií
-Show calendar… TimeView Zobraziť kalendár...
-Show replicants BeMenu Zobraziť replikantov
-Show seconds PreferencesWindow Zobraziť sekundy
-Shutdown… BeMenu Vypnúť...
+Recent applications DeskbarMenu Nedávne aplikácie
Sort running applications PreferencesWindow Zoradiť bežiace aplikácie
-Tracker always first PreferencesWindow Tracker vždy prvý
+Change time… TimeView Zmeniť čas…
+Applications B_USER_DESKBAR_DIRECTORY/Applications Aplikácie
+Find… DeskbarMenu Nájsť…
Window PreferencesWindow Okno
+Menu PreferencesWindow Menu
+Recent documents DeskbarMenu Nedávne dokumenty
+Show seconds PreferencesWindow Zobraziť sekundy
+Auto-hide PreferencesWindow Automaticky skrývať
+Always on top PreferencesWindow Vždy na vrchu
+ DeskbarMenu
+Show all WindowMenu Zobraziť všetky
+No windows WindowMenu Žiadne okná
+Deskbar System name Panel
+Restart system DeskbarMenu Reštartovať systém
+Auto-raise PreferencesWindow Automaticky aktivovať
+Hide time TimeView Skryť čas
+Recent folders: PreferencesWindow Nedávne priečinky:
+Show application expander PreferencesWindow Zobraziť výsuvný zoznam aplikácií
+Restart Tracker DeskbarMenu Reštartovať Tracker
+Close all WindowMenu Zatvoriť všetky
+Deskbar preferences PreferencesWindow Nastavenia Panelu
+Mount DeskbarMenu Pripojiť
+Recent applications: PreferencesWindow Nedávne aplikácie:
+Shutdown… DeskbarMenu Vypnúť…
+Tracker always first PreferencesWindow Tracker vždy prvý
+Preferences B_USER_DESKBAR_DIRECTORY/Preferences Nastavenia
+Recent folders DeskbarMenu Nedávne priečinky
+About this system DeskbarMenu O tomto systéme
+Show calendar… TimeView Zobraziť kalendár…
+Deskbar preferences… DeskbarMenu Nastavenia Panelu…
+Show Time Tray Zobraziť čas
+Expand new applications PreferencesWindow Výsuvný zoznam nových aplikácií
+Show replicants DeskbarMenu Zobraziť replikantov
+Clock PreferencesWindow Hodiny
+Demos B_USER_DESKBAR_DIRECTORY/Demos Demá
+Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Aplety plochy
+Hide all WindowMenu Skryť všetky
+Quit application WindowMenu Ukončiť aplikáciu
diff --git a/data/catalogs/apps/deskbar/sv.catkeys b/data/catalogs/apps/deskbar/sv.catkeys
index b025fd4301..c81cdb0b82 100644
--- a/data/catalogs/apps/deskbar/sv.catkeys
+++ b/data/catalogs/apps/deskbar/sv.catkeys
@@ -1,5 +1,6 @@
-1 swedish x-vnd.Be-TSKB 4265681964
+1 swedish x-vnd.Be-TSKB 1669813373
BeMenu
+About Haiku BeMenu Om Haiku
About this system BeMenu Om Haiku
Always on top PreferencesWindow Alltid överst
Applications B_USER_DESKBAR_DIRECTORY/Applications Program
@@ -12,7 +13,7 @@ Close all WindowMenu Stäng alla
Demos B_USER_DESKBAR_DIRECTORY/Demos Exempelprogram
Deskbar System name Deskbar
Deskbar preferences PreferencesWindow Deskbar inställningar
-Deskbar preferences… BeMenu Deskbar inställningar...
+Deskbar preferences… BeMenu Inställningar...
Desktop applets B_USER_DESKBAR_DIRECTORY/Desktop applets Skrivbordsprogram
Edit menu… PreferencesWindow Redigera meny...
Expand new applications PreferencesWindow Expandera nya program
@@ -41,5 +42,6 @@ Show replicants BeMenu Visa replikanthandtag
Show seconds PreferencesWindow Visa sekunder
Shutdown… BeMenu Avsluta Haiku...
Sort running applications PreferencesWindow Sortera aktiva program
+Suspend BeMenu Viloläge
Tracker always first PreferencesWindow Visa Tracker först
Window PreferencesWindow Fönster
diff --git a/data/catalogs/apps/deskcalc/be.catkeys b/data/catalogs/apps/deskcalc/be.catkeys
index 4d5f2ee100..aa43b851bf 100644
--- a/data/catalogs/apps/deskcalc/be.catkeys
+++ b/data/catalogs/apps/deskcalc/be.catkeys
@@ -1,5 +1,7 @@
-1 belarusian x-vnd.Haiku-DeskCalc 2547506672
-Audio Feedback CalcView Аўдыё Водгук
+1 belarusian x-vnd.Haiku-DeskCalc 1916192649
+Compact CalcView Кампактны
+Scientific CalcView Навуковы
DeskCalc System name Калькулятар
+Basic CalcView Просты
Enable Num Lock on startup CalcView Уключаць Num Lock пры запуску
-Show keypad CalcView Паказваць клавіятуру
+Audio Feedback CalcView Аўдыё Водгук
diff --git a/data/catalogs/apps/deskcalc/de.catkeys b/data/catalogs/apps/deskcalc/de.catkeys
index 0356e950f5..3dab75f814 100644
--- a/data/catalogs/apps/deskcalc/de.catkeys
+++ b/data/catalogs/apps/deskcalc/de.catkeys
@@ -1,5 +1,7 @@
-1 german x-vnd.Haiku-DeskCalc 2547506672
-Audio Feedback CalcView Audiorückmeldung
+1 german x-vnd.Haiku-DeskCalc 1916192649
+Compact CalcView Kompakt
+Scientific CalcView Wissenschaftlich
DeskCalc System name Rechner
+Basic CalcView Einfach
Enable Num Lock on startup CalcView Num-Lock beim Start aktivieren
-Show keypad CalcView Tastenfeld anzeigen
+Audio Feedback CalcView Audiorückmeldung
diff --git a/data/catalogs/apps/deskcalc/fi.catkeys b/data/catalogs/apps/deskcalc/fi.catkeys
index 04dc512ee2..154cab3dbc 100644
--- a/data/catalogs/apps/deskcalc/fi.catkeys
+++ b/data/catalogs/apps/deskcalc/fi.catkeys
@@ -1,5 +1,7 @@
-1 finnish x-vnd.Haiku-DeskCalc 2547506672
+1 finnish x-vnd.Haiku-DeskCalc 1916192649
Audio Feedback CalcView Äänipalaute
+Basic CalcView Peruslaskin
+Compact CalcView Taskulaskin
DeskCalc System name Työpöytälaskin
Enable Num Lock on startup CalcView Ota käyttöön ”Num Lock”-asetukset käynnistettäessä
-Show keypad CalcView Näytä näppäimistö
+Scientific CalcView Tieteislaskin
diff --git a/data/catalogs/apps/deskcalc/fr.catkeys b/data/catalogs/apps/deskcalc/fr.catkeys
index b0ee00e024..9a7747d585 100644
--- a/data/catalogs/apps/deskcalc/fr.catkeys
+++ b/data/catalogs/apps/deskcalc/fr.catkeys
@@ -1,5 +1,7 @@
-1 french x-vnd.Haiku-DeskCalc 2547506672
+1 french x-vnd.Haiku-DeskCalc 1916192649
Audio Feedback CalcView Échos sonores
+Basic CalcView Basique
+Compact CalcView Compact
DeskCalc System name Calculatrice
Enable Num Lock on startup CalcView Verrouiller le pavé numérique au démarrage
-Show keypad CalcView Afficher le pavé numérique
+Scientific CalcView Scientifique
diff --git a/data/catalogs/apps/deskcalc/hr.catkeys b/data/catalogs/apps/deskcalc/hr.catkeys
new file mode 100644
index 0000000000..69a3035bae
--- /dev/null
+++ b/data/catalogs/apps/deskcalc/hr.catkeys
@@ -0,0 +1,5 @@
+1 croatian x-vnd.Haiku-DeskCalc 531567394
+Basic CalcView Osnovno
+Compact CalcView Kompaktno
+Enable Num Lock on startup CalcView Omogući Num Lock pri pokretanju
+Scientific CalcView Znanstveno
diff --git a/data/catalogs/apps/deskcalc/lt.catkeys b/data/catalogs/apps/deskcalc/lt.catkeys
new file mode 100644
index 0000000000..e90afd0112
--- /dev/null
+++ b/data/catalogs/apps/deskcalc/lt.catkeys
@@ -0,0 +1,7 @@
+1 lithuanian x-vnd.Haiku-DeskCalc 1916192649
+Compact CalcView Kompaktiškas
+Scientific CalcView Mokslinis
+DeskCalc System name Skaičiuotuvas
+Basic CalcView Paprastas
+Enable Num Lock on startup CalcView Aktyvinti skaitmenis paleidimo metu
+Audio Feedback CalcView Įjungti garsus
diff --git a/data/catalogs/apps/deskcalc/nl.catkeys b/data/catalogs/apps/deskcalc/nl.catkeys
index db09bbec15..cef1b1b042 100644
--- a/data/catalogs/apps/deskcalc/nl.catkeys
+++ b/data/catalogs/apps/deskcalc/nl.catkeys
@@ -1,4 +1,7 @@
-1 dutch x-vnd.Haiku-DeskCalc 1432606073
-Audio Feedback CalcView Geluidsfeedback
+1 dutch; flemish x-vnd.Haiku-DeskCalc 1916192649
+Compact CalcView Compact
+Scientific CalcView Wetenschappelijk
+DeskCalc System name DeskCalc
+Basic CalcView Eenvoudig
Enable Num Lock on startup CalcView Opstarten met Num Lock aan
-Show keypad CalcView Toetsenweergave
+Audio Feedback CalcView Geluidsfeedback
diff --git a/data/catalogs/apps/deskcalc/ru.catkeys b/data/catalogs/apps/deskcalc/ru.catkeys
index 2ca3ce67de..387d82dddd 100644
--- a/data/catalogs/apps/deskcalc/ru.catkeys
+++ b/data/catalogs/apps/deskcalc/ru.catkeys
@@ -1,5 +1,4 @@
-1 russian x-vnd.Haiku-DeskCalc 2547506672
-Audio Feedback CalcView Звуковая реакция
+1 russian x-vnd.Haiku-DeskCalc 2021462472
DeskCalc System name Калькулятор
Enable Num Lock on startup CalcView Включать Num Lock при запуске
-Show keypad CalcView Показать клавиатуру
+Audio Feedback CalcView Звуковая реакция
diff --git a/data/catalogs/apps/deskcalc/sk.catkeys b/data/catalogs/apps/deskcalc/sk.catkeys
index 773848d1f4..47adfde1e7 100644
--- a/data/catalogs/apps/deskcalc/sk.catkeys
+++ b/data/catalogs/apps/deskcalc/sk.catkeys
@@ -1,5 +1,7 @@
-1 slovak x-vnd.Haiku-DeskCalc 2547506672
-Audio Feedback CalcView Zvuková spätná väzba
+1 slovak x-vnd.Haiku-DeskCalc 1916192649
+Compact CalcView Kompaktná
+Scientific CalcView Vedecká
DeskCalc System name DeskCalc
+Basic CalcView Základná
Enable Num Lock on startup CalcView Zapnúť NumLock pri štarte
-Show keypad CalcView Zobraziť numerickú klávesnicu
+Audio Feedback CalcView Zvuková spätná väzba
diff --git a/data/catalogs/apps/deskcalc/uk.catkeys b/data/catalogs/apps/deskcalc/uk.catkeys
index 4290a6f682..bc66eeb35f 100644
--- a/data/catalogs/apps/deskcalc/uk.catkeys
+++ b/data/catalogs/apps/deskcalc/uk.catkeys
@@ -1,5 +1,4 @@
-1 ukrainian x-vnd.Haiku-DeskCalc 2547506672
+1 ukrainian x-vnd.Haiku-DeskCalc 2021462472
Audio Feedback CalcView Озвучка віддачі
DeskCalc System name Калькулятор
Enable Num Lock on startup CalcView Включати Num Lock при запуску
-Show keypad CalcView Показати клавіатуру
diff --git a/data/catalogs/apps/devices/be.catkeys b/data/catalogs/apps/devices/be.catkeys
index cb5d648968..9197011c5a 100644
--- a/data/catalogs/apps/devices/be.catkeys
+++ b/data/catalogs/apps/devices/be.catkeys
@@ -1,73 +1,95 @@
-1 belarusian x-vnd.Haiku-Devices 1943893993
-ACPI Information DeviceACPI Інфармацыя ACPI
-ACPI Processor Namespace '%2' DeviceACPI Абшар '%2' працэсара ACPI
-ACPI System Bus DeviceACPI Сістэмная шына ACPI
-ACPI System Indicator DeviceACPI Сістэмны індыкатар ACPI
-ACPI Thermal Zone DeviceACPI Тэрмальная зона ACPI
-ACPI bus Device Шына ACPI
-ACPI bus DevicesView Шына ACPI
+1 belarusian x-vnd.Haiku-Devices 865240481
+Manufacturer DeviceSCSI Вытворца
+Order by: DevicesView Парадкаваць па:
ACPI controller Device Кантролер ACPI
-ACPI node '%1' DeviceACPI Вузел ACPI '%1'
-Basic information DevicesView Асноўная інфармацыя
-Bridge Device Мост
-Bus DevicesView Шына
-Bus Information Device Інфармацыя шыны
-Category DevicesView Катэгорыя
-Class Info:\t\t\t\t: %classInfo% DeviceACPI Інфа класа:\t\t\t\t: %classInfo%
-Class info DevicePCI Інфа класа
-Communication controller Device Кантролер камунікацый
+Memory controller Device Кантролер памяці
+Driver used DevicePCI Ужыты драйвер
+CD-ROM DeviceSCSI CD-ROM
+ISA bus Device Шына ISA
+ACPI bus Device Шына ACPI
+ISA bus DevicesView Шына ISA
+Docking station Device Док-станцыя
Computer Device Кампутар
-Computer DevicesView Кампутар
-Connection DevicesView Спалучэнне
+Unknown device Device Невядомая прылада
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Інфа класа:\t\t\t\t: %classInfo%
+Processor DeviceSCSI Працэсар
+RBC DeviceSCSI RBC
Detailed DevicesView Падрабязна
-Device Device Прылада
-Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Імя прылады\t\t\t\t: %Name%\nВытворца\t\t\t: %Manufacturer%\nБягучы драйвер\t\t\t\t: %DriverUsed%\nПуці прылады\t: %DevicePaths%
-Device name Device Імя прылады
-Device name DeviceACPI Імя прылады
-Device name DevicePCI Імя прылады
-Device name: Device Імя прылады:
+Category DevicesView Катэгорыя
+Quit DevicesView Выйсці
Device paths Device Пуці прыладаў
+Scanner DeviceSCSI Сканэр
+Printer DeviceSCSI Друкарка
+Processor Device Працэсар
+Optical Drive DeviceSCSI Аптычны дыск
+ACPI Processor Namespace '%2' DeviceACPI Абшар '%2' працэсара ACPI
+Bridge DeviceSCSI Мост
+unknown Device невядома
+ACPI Information DeviceACPI Інфармацыя ACPI
+Generic system peripheral Device Агульная перыферыя
+Not implemented DevicePCI Не рэалізавана
+Disk Drive DeviceSCSI Прывад дыскау
+Not implemented DeviceACPI Не рэалізавана
+Device name DevicePCI Імя прылады
+Display controller Device Кантролер экрану
+Mass storage controller Device Кантролер прылад захавання даных
+Input device controller Device Кантролер прылад уводу
+Network controller Device Сеткавы кантролер
+Device class DeviceSCSI Клас прылады
+Device name DeviceACPI Імя прылады
+Driver used Device Ужыты драйвер
+Other DeviceSCSI Іншы(я)
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Імя прылады\t\t\t\t: %Name%\nВытворца\t\t\t: %Manufacturer%\nБягучы драйвер\t\t\t\t: %DriverUsed%\nПуці прылады\t: %DevicePaths%
+ACPI Thermal Zone DeviceACPI Тэрмальная зона ACPI
+Communications DeviceSCSI Камунікацыі
+Bus DevicesView Шына
+Communication controller Device Кантролер камунікацый
+Manufacturer DeviceACPI Вытворца
+PCI bus Device Шына PCI
+ACPI System Indicator DeviceACPI Сістэмны індыкатар ACPI
+None Device Адсутнічае
+PCI bus DevicesView Шына PCI
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Инфа класа:\t\t\t\t: %classInfo%
+Basic information DevicesView Асноўная інфармацыя
+PCI Information DevicePCI Інфармацыя PCI
+Manufacturer: Device Вытворца:
+ACPI bus DevicesView Шына ACPI
+Changer DeviceSCSI Чэйнджэр
+ACPI System Bus DeviceACPI Сістэмная шына ACPI
+Devices System name Прылады
+Worm DeviceSCSI Ворм
+Multimedia controller Device Кантролер мультымедыя
+Unknown DevicePCI Невядомы
+Device name: Device Імя прылады:
+Computer DevicesView Кампутар
+Value PropertyList Велічыня
+Report compatibility DevicesView Паведаміць аб сумяшчальнасці
+Device Device Прылада
+Signal processing controller Device Кантролер апрацоўкі сігналаў
+Serial bus controller Device Кантролер серыйнай шыны
+Wireless controller Device Бесшнуравы кантролер
+ACPI node '%1' DeviceACPI Вузел ACPI '%1'
+Device name Device Імя прылады
+Manufacturer Device Вытворца
+Name PropertyList Імя
+Manufacturer DevicePCI Вытворца
+Intelligent controller Device Інтэлектуальны кантролер
+Satellite communications controller Device Кантролер спадарожнікавай сувязі
+SCSI Information DeviceSCSI Инфа SCSI
+Enclosure DeviceSCSI Уключэнне
+Array DeviceSCSI Массыў
+Bridge Device Мост
+Refresh devices DevicesView Абнавіць прылады
+Unknown device DevicesView Невядомая прылада
+Graphics Peripheral DeviceSCSI Графічная перыферыя
+Tape Drive DeviceSCSI Прывад ленты
+Bus Information Device Інфармацыя шыны
+Connection DevicesView Спалучэнне
+Generate system information DevicesView Сабраць інфармацыю аб сістэме
+Encryption controller Device Кантролер шыфравання
+Unclassified device Device Невызначаная прылада
+Device name DeviceSCSI Імя прылады
+Card Reader DeviceSCSI Чытальнік картак
+Class info DevicePCI Інфа класа
Device paths DevicePCI Пуці прыладаў
Devices DevicesView Прылады
-Devices System name Прылады
-Display controller Device Кантролер экрану
-Docking station Device Док-станцыя
-Driver used Device Ужыты драйвер
-Driver used DevicePCI Ужыты драйвер
-Encryption controller Device Кантролер шыфравання
-Generate system information DevicesView Сабраць інфармацыю аб сістэме
-Generic system peripheral Device Агульная перыферыя
-ISA bus Device Шына ISA
-ISA bus DevicesView Шына ISA
-Input device controller Device Кантролер прылад уводу
-Intelligent controller Device Інтэлектуальны кантролер
-Manufacturer Device Вытворца
-Manufacturer DeviceACPI Вытворца
-Manufacturer DevicePCI Вытворца
-Manufacturer: Device Вытворца:
-Mass storage controller Device Кантролер прылад захавання даных
-Memory controller Device Кантролер памяці
-Multimedia controller Device Кантролер мультымедыя
-Name PropertyList Імя
-Network controller Device Сеткавы кантролер
-None Device Адсутнічае
-Not implemented DeviceACPI Не рэалізавана
-Not implemented DevicePCI Не рэалізавана
-Order by: DevicesView Парадкаваць па:
-PCI Information DevicePCI Інфармацыя PCI
-PCI bus Device Шына PCI
-PCI bus DevicesView Шына PCI
-Processor Device Працэсар
-Quit DevicesView Выйсці
-Refresh devices DevicesView Абнавіць прылады
-Report compatibility DevicesView Паведаміць аб сумяшчальнасці
-Satellite communications controller Device Кантролер спадарожнікавай сувязі
-Serial bus controller Device Кантролер серыйнай шыны
-Signal processing controller Device Кантролер апрацоўкі сігналаў
-Unclassified device Device Невызначаная прылада
-Unknown DevicePCI Невядомы
-Unknown device Device Невядомая прылада
-Unknown device DevicesView Невядомая прылада
-Value PropertyList Велічыня
-Wireless controller Device Бесшнуравы кантролер
-unknown Device невядома
diff --git a/data/catalogs/apps/devices/de.catkeys b/data/catalogs/apps/devices/de.catkeys
index ca333cf50c..d32e6ad644 100644
--- a/data/catalogs/apps/devices/de.catkeys
+++ b/data/catalogs/apps/devices/de.catkeys
@@ -1,73 +1,95 @@
-1 german x-vnd.Haiku-Devices 1943893993
-ACPI Information DeviceACPI ACPI-Information
-ACPI Processor Namespace '%2' DeviceACPI ACPI Prozessor Namespace '%2'
-ACPI System Bus DeviceACPI ACPI Systembus
-ACPI System Indicator DeviceACPI ACPI System-Indikator
-ACPI Thermal Zone DeviceACPI ACPI Temperaturzone
-ACPI bus Device ACPI-Bus
-ACPI bus DevicesView ACPI-Bus
+1 german x-vnd.Haiku-Devices 865240481
+Manufacturer DeviceSCSI Hersteller
+Order by: DevicesView Sortieren nach:
ACPI controller Device ACPI-Controller
-ACPI node '%1' DeviceACPI ACPI Node '%1'
-Basic information DevicesView Basisinformation
-Bridge Device Schnittstellen
-Bus DevicesView Bus
-Bus Information Device Bus-Information
-Category DevicesView Kategorie
-Class Info:\t\t\t\t: %classInfo% DeviceACPI Klassen-Info:\t\t\t\t: %classInfo%
-Class info DevicePCI Klassen-Info
-Communication controller Device Kommunikationscontroller
+Memory controller Device Speichercontroller
+Driver used DevicePCI Benutzter Treiber
+CD-ROM DeviceSCSI CD-ROM
+ISA bus Device ISA-Bus
+ACPI bus Device ACPI-Bus
+ISA bus DevicesView ISA-Bus
+Docking station Device Andockstation
Computer Device Computer
-Computer DevicesView Rechner
-Connection DevicesView Verbindung
+Unknown device Device Unbekanntes Gerät
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Klassen-Info:\t\t\t\t: %classInfo%
+Processor DeviceSCSI Prozessor
+RBC DeviceSCSI RBC
Detailed DevicesView Details
-Device Device Gerät
-Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Gerätename\t\t\t\t: %Name%\nHersteller\t\t\t: %Manufacturer%\nBenutzter Treiber\t\t\t\t: %DriverUsed%\nPfade für Treiber\t: %DevicePaths%
-Device name Device Gerätename
-Device name DeviceACPI Gerätename
-Device name DevicePCI Gerätename
-Device name: Device Gerätename:
+Category DevicesView Kategorie
+Quit DevicesView Beenden
Device paths Device Gerätepfade
+Scanner DeviceSCSI Scanner
+Printer DeviceSCSI Drucker
+Processor Device Prozessor
+Optical Drive DeviceSCSI Optisches Laufwerk
+ACPI Processor Namespace '%2' DeviceACPI ACPI Prozessor Namespace '%2'
+Bridge DeviceSCSI Schnittstellen
+unknown Device unbekannt
+ACPI Information DeviceACPI ACPI-Information
+Generic system peripheral Device Peripheriegeräte
+Not implemented DevicePCI Nicht implementiert
+Disk Drive DeviceSCSI Laufwerk
+Not implemented DeviceACPI Nicht implementiert
+Device name DevicePCI Gerätename
+Display controller Device Anzeige-Controller
+Mass storage controller Device Massenspeicher-Controller
+Input device controller Device Eingabegeräte-Kontroller
+Network controller Device Netzwerk-Controller
+Device class DeviceSCSI Geräteklasse
+Device name DeviceACPI Gerätename
+Driver used Device Treiber benutzt
+Other DeviceSCSI Andere
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Gerätename\t\t\t\t: %Name%\nHersteller\t\t\t: %Manufacturer%\nBenutzter Treiber\t\t\t\t: %DriverUsed%\nPfade für Treiber\t: %DevicePaths%
+ACPI Thermal Zone DeviceACPI ACPI Temperaturzone
+Communications DeviceSCSI Kommunikation
+Bus DevicesView Bus
+Communication controller Device Kommunikationscontroller
+Manufacturer DeviceACPI Hersteller
+PCI bus Device PCI-Bus
+ACPI System Indicator DeviceACPI ACPI System-Indikator
+None Device Kein
+PCI bus DevicesView PCI-Bus
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Klassen-Info:\t\t\t\t: %classinfo%
+Basic information DevicesView Basisinformation
+PCI Information DevicePCI PCI-Information
+Manufacturer: Device Hersteller:
+ACPI bus DevicesView ACPI-Bus
+Changer DeviceSCSI Wechsler
+ACPI System Bus DeviceACPI ACPI Systembus
+Devices System name Geräte
+Worm DeviceSCSI WORM
+Multimedia controller Device Multimedia-Controller
+Unknown DevicePCI Unbekannt
+Device name: Device Gerätename:
+Computer DevicesView Rechner
+Value PropertyList Wert
+Report compatibility DevicesView Kompatibilität anzeigen
+Device Device Gerät
+Signal processing controller Device Signalverarbeitungscontroller
+Serial bus controller Device Serieller Bus-Controller
+Wireless controller Device Funknetzwerk-Controller
+ACPI node '%1' DeviceACPI ACPI Node '%1'
+Device name Device Gerätename
+Manufacturer Device Hersteller
+Name PropertyList Name
+Manufacturer DevicePCI Hersteller
+Intelligent controller Device Intelligenter Controller
+Satellite communications controller Device Satellitenkommunikations-Controller
+SCSI Information DeviceSCSI SCSI-Information
+Enclosure DeviceSCSI Gehäuse
+Array DeviceSCSI Anordnung
+Bridge Device Schnittstellen
+Refresh devices DevicesView Geräte aktualisieren
+Unknown device DevicesView Unbekanntes Gerät
+Graphics Peripheral DeviceSCSI Grafik-Peripheriegerät
+Tape Drive DeviceSCSI Bandlaufwerk
+Bus Information Device Bus-Information
+Connection DevicesView Verbindung
+Generate system information DevicesView Systeminformationen erstellen
+Encryption controller Device Verschlüsselungscontroller
+Unclassified device Device Sonstige Geräte
+Device name DeviceSCSI Gerätename
+Card Reader DeviceSCSI Kartenleser
+Class info DevicePCI Klassen-Info
Device paths DevicePCI Gerätepfad
Devices DevicesView Geräte
-Devices System name Geräte
-Display controller Device Anzeige-Controller
-Docking station Device Andockstation
-Driver used Device Treiber benutzt
-Driver used DevicePCI Benutzter Treiber
-Encryption controller Device Verschlüsselungscontroller
-Generate system information DevicesView Systeminformationen erstellen
-Generic system peripheral Device Peripheriegeräte
-ISA bus Device ISA-Bus
-ISA bus DevicesView ISA-Bus
-Input device controller Device Eingabegeräte-Kontroller
-Intelligent controller Device Intelligenter Controller
-Manufacturer Device Hersteller
-Manufacturer DeviceACPI Hersteller
-Manufacturer DevicePCI Hersteller
-Manufacturer: Device Hersteller:
-Mass storage controller Device Massenspeicher-Controller
-Memory controller Device Speichercontroller
-Multimedia controller Device Multimedia-Controller
-Name PropertyList Name
-Network controller Device Netzwerk-Controller
-None Device Kein
-Not implemented DeviceACPI Nicht implementiert
-Not implemented DevicePCI Nicht implementiert
-Order by: DevicesView Sortieren nach:
-PCI Information DevicePCI PCI-Information
-PCI bus Device PCI-Bus
-PCI bus DevicesView PCI-Bus
-Processor Device Prozessor
-Quit DevicesView Beenden
-Refresh devices DevicesView Geräte aktualisieren
-Report compatibility DevicesView Kompatibilität anzeigen
-Satellite communications controller Device Satellitenkommunikations-Controller
-Serial bus controller Device Serieller Bus-Controller
-Signal processing controller Device Signalverarbeitungscontroller
-Unclassified device Device Sonstige Geräte
-Unknown DevicePCI Unbekannt
-Unknown device Device Unbekanntes Gerät
-Unknown device DevicesView Unbekanntes Gerät
-Value PropertyList Wert
-Wireless controller Device Funknetzwerk-Controller
-unknown Device unbekannt
diff --git a/data/catalogs/apps/devices/hr.catkeys b/data/catalogs/apps/devices/hr.catkeys
new file mode 100644
index 0000000000..b3d020c99c
--- /dev/null
+++ b/data/catalogs/apps/devices/hr.catkeys
@@ -0,0 +1,52 @@
+1 croatian x-vnd.Haiku-Devices 1632551742
+ACPI Information DeviceACPI ACPI informacija
+ACPI bus Device ACPI bus
+CD-ROM DeviceSCSI CD-ROM
+Card Reader DeviceSCSI Čitač kartica
+Category DevicesView Kategorija
+Communications DeviceSCSI Komunikacije
+Computer Device Računalo
+Computer DevicesView Računalo
+Connection DevicesView Veza
+Detailed DevicesView Detaljno
+Device Device Uređaj
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Ime uređaja\t\t\t\t: %Ime%\nProizvođač\t\t\t: %Proizvođač%\nKorišteni upravljački program\t\t\t\t: %Korišteni upravljački program%\nPutanje uređaja\t: %Putanje uređaja%
+Device name Device Ime uređaja
+Device name DeviceACPI Ime uređaja
+Device name DevicePCI Ime uređaja
+Device name DeviceSCSI Ime uređaja
+Device name: Device Ime uređaja:
+Device paths Device Putanje uređaja
+Device paths DevicePCI Putanje uređaja
+Devices DevicesView Uređaji
+Devices System name Uređaji
+Disk Drive DeviceSCSI Pogon diska
+Driver used Device Korišteni upravljački program
+Driver used DevicePCI Korišteni upravljački program
+Generate system information DevicesView Generirajte informaciju o sustavu
+ISA bus Device ISA bus
+ISA bus DevicesView ISA bus
+Manufacturer Device Proizvođač
+Manufacturer DevicePCI Proizvođač
+Manufacturer DeviceSCSI Proizvođač
+Manufacturer: Device Proizvođač:
+Name PropertyList Ime
+None Device Nijedan
+Not implemented DeviceACPI Nije primjenjen
+Not implemented DevicePCI Nije primjenjen
+Optical Drive DeviceSCSI Optički pogon
+Order by: DevicesView Poredaj po:
+Other DeviceSCSI Ostalo
+PCI Information DevicePCI PCI informacija
+PCI bus DevicesView PCI bus
+Printer DeviceSCSI Pisač
+Processor Device Procesor
+Processor DeviceSCSI Procesor
+RBC DeviceSCSI RBC
+Refresh devices DevicesView Osvježi uređaje
+Report compatibility DevicesView Prijavi kompatibilnost
+Unknown DevicePCI Nepoznato
+Unknown device Device Nepoznati uređaj
+Unknown device DevicesView Nepoznati uređaj
+Value PropertyList Vrijednost
+unknown Device nepoznato
diff --git a/data/catalogs/apps/devices/lt.catkeys b/data/catalogs/apps/devices/lt.catkeys
new file mode 100644
index 0000000000..be27f77b14
--- /dev/null
+++ b/data/catalogs/apps/devices/lt.catkeys
@@ -0,0 +1,95 @@
+1 lithuanian x-vnd.Haiku-Devices 865240481
+Manufacturer DeviceSCSI Gamintojas
+Order by: DevicesView Rūšiuoti pagal:
+ACPI controller Device ACPI valdiklis
+Memory controller Device Atminties valdiklis
+Driver used DevicePCI Naudojama tvarkyklė
+CD-ROM DeviceSCSI CD kaupiklis
+ISA bus Device ISA magistralė
+ACPI bus Device ACPI magistralė
+ISA bus DevicesView ISA magistralė
+Docking station Device Jungčių replikatorius
+Computer Device Kompiuteris
+Unknown device Device Nežinomas įrenginys
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Informacija apie klasę:\t\t\t\t: %classInfo%
+Processor DeviceSCSI Procesorius
+RBC DeviceSCSI RBC
+Detailed DevicesView Išsamiai
+Category DevicesView kategoriją
+Quit DevicesView Baigti darbą
+Device paths Device Įrenginio kelias
+Scanner DeviceSCSI Skeneris
+Printer DeviceSCSI Spausdintuvas
+Processor Device Procesorius
+Optical Drive DeviceSCSI Optinis kaupiklis
+ACPI Processor Namespace '%2' DeviceACPI ACPI procesoriaus vardų sritis „%2“
+Bridge DeviceSCSI Tiltas
+unknown Device nežinoma
+ACPI Information DeviceACPI ACPI informacija
+Generic system peripheral Device Bendro pobūdžio periferiniai įrenginiai
+Not implemented DevicePCI funkcija nerealizuota
+Disk Drive DeviceSCSI Standusis diskas
+Not implemented DeviceACPI funkcija nerealizuota
+Device name DevicePCI Įrenginio pavadinimas
+Display controller Device Ekranų valdiklis
+Mass storage controller Device Kaupiklių valdiklis
+Input device controller Device Įvesties įrenginių valdiklis
+Network controller Device Tinklo valdiklis
+Device class DeviceSCSI Įrenginio klasė
+Device name DeviceACPI Įrenginio pavadinimas
+Driver used Device Naudojama tvarkyklė
+Other DeviceSCSI Kita
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Įrenginio pavadinimas\t\t\t\t: %Name%\nGamintojas\t\t\t: %Manufacturer%\nNaudojama tvarkyklė\t\t\t\t: %DriverUsed%\nĮrenginio kelias\t: %DevicePaths%
+ACPI Thermal Zone DeviceACPI ACPI temperatūros zona
+Communications DeviceSCSI Ryšio įrenginiai
+Bus DevicesView Magistralė
+Communication controller Device Ryšio įrenginių valdiklis
+Manufacturer DeviceACPI Gamintojas
+PCI bus Device PCI magistralė
+ACPI System Indicator DeviceACPI ACPI sistemos indikatorius
+None Device Nėra
+PCI bus DevicesView PCI magistralė
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Informacija apie klasę:\t\t\t\t: %classInfo%
+Basic information DevicesView Pagrindinė informacija
+PCI Information DevicePCI PCI informacija
+Manufacturer: Device Gamintojas:
+ACPI bus DevicesView ACPI magistralė
+Changer DeviceSCSI Keitiklis
+ACPI System Bus DeviceACPI ACPI sistemos magistralė
+Devices System name Įrenginiai
+Worm DeviceSCSI WORM
+Multimedia controller Device Įvairialypės terpės valdiklis
+Unknown DevicePCI nežinoma
+Device name: Device Įrenginio pavadinimas:
+Computer DevicesView Kompiuteris
+Value PropertyList Reikšmė
+Report compatibility DevicesView Pranešti apie suderinamumą
+Device Device Įrenginys
+Signal processing controller Device Signalų apdorojimo valdiklis
+Serial bus controller Device Nuosekliosios magistralės valdiklis
+Wireless controller Device Bevielio tinklo valdiklis
+ACPI node '%1' DeviceACPI ACPI mazgas „%1“
+Device name Device Įrenginio pavadinimas
+Manufacturer Device Gamintojas
+Name PropertyList Pavadinimas
+Manufacturer DevicePCI Gamintojas
+Intelligent controller Device Išmanusis valdiklis
+Satellite communications controller Device Palydovinio ryšio valdiklis
+SCSI Information DeviceSCSI SCSI informacija
+Enclosure DeviceSCSI Kasetė
+Array DeviceSCSI Masyvas
+Bridge Device Tiltas
+Refresh devices DevicesView Atnaujinti įrenginių sąrašą
+Unknown device DevicesView Nežinomas įrenginys
+Graphics Peripheral DeviceSCSI Periferinis grafikos įrenginys
+Tape Drive DeviceSCSI Juostų kaupiklis
+Bus Information Device Magistralės informacija
+Connection DevicesView ryšį
+Generate system information DevicesView Generuoti informaciją apie sistemą
+Encryption controller Device Šifravimo valdiklis
+Unclassified device Device Neklasifikuotas įrenginys
+Device name DeviceSCSI Įrenginio pavadinimas
+Card Reader DeviceSCSI Kortelių skaitytuvas
+Class info DevicePCI Informacija apie klasę
+Device paths DevicePCI Įrenginio kelias
+Devices DevicesView Įrenginiai
diff --git a/data/catalogs/apps/devices/nl.catkeys b/data/catalogs/apps/devices/nl.catkeys
index 9af22791c3..450be24f95 100644
--- a/data/catalogs/apps/devices/nl.catkeys
+++ b/data/catalogs/apps/devices/nl.catkeys
@@ -1,40 +1,95 @@
-1 dutch x-vnd.Haiku-Devices 2172461257
-ACPI Information DeviceACPI ACPI-informatie
-ACPI controller Device ACPI-controller
-Basic information DevicesView Basisinformatie
-Bridge Device Bridge
-Bus DevicesView Bus
-Category DevicesView Categorie
-Communication controller Device Communicatie-controller
-Computer Device Computer
-Connection DevicesView Verbinding
-Detailed DevicesView Gedetailleerd
-Device name Device Apparaatnaam
-Device name: Device Apparaatnaam:
-Device paths Device Apparaatpaden
-Devices DevicesView Devices
-Display controller Device Displaycontroller
-Docking station Device Dockingstation
-Driver used Device Gebruikte driver
-Encryption controller Device Encryptie-controller
-Generate system information DevicesView Genereer systeeminformatie
-Generic system peripheral Device Generiek systeem-randapparaat
-Input device controller Device Inputapparaat-controller
-Intelligent controller Device Intelligente controller
-Manufacturer Device Fabrikant
-Manufacturer: Device Fabrikant
-Mass storage controller Device Massa-opslagcontroller
-Memory controller Device Geheugencontroller
-Multimedia controller Device Multimedia-controller
-Network controller Device Netwerkcontroller
+1 dutch; flemish x-vnd.Haiku-Devices 865240481
+Manufacturer DeviceSCSI Fabrikant
Order by: DevicesView Rangschik op:
-PCI Information DevicePCI PCI-informatie
-Processor Device Processor
+ACPI controller Device ACPI-controller
+Memory controller Device Geheugencontroller
+Driver used DevicePCI Gebruikte driver
+CD-ROM DeviceSCSI CD-ROM
+ISA bus Device ISA-bus
+ACPI bus Device ACPI bus
+ISA bus DevicesView ISA-bus
+Docking station Device Dockingstation
+Computer Device Computer
+Unknown device Device Onbekend apparaat
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Klasse Info: \t\t \t \t : %classInfo%
+Processor DeviceSCSI Processor
+RBC DeviceSCSI RBC
+Detailed DevicesView Gedetailleerd
+Category DevicesView Categorie
Quit DevicesView Afsluiten
-Refresh devices DevicesView Apparaten her-initialiseren
+Device paths Device Apparaatpaden
+Scanner DeviceSCSI Scanner
+Printer DeviceSCSI Printer
+Processor Device Processor
+Optical Drive DeviceSCSI Optische schijf
+ACPI Processor Namespace '%2' DeviceACPI ACPI Processor Naamruimte '%2'
+Bridge DeviceSCSI Bridge
+unknown Device onbekend
+ACPI Information DeviceACPI ACPI-informatie
+Generic system peripheral Device Generiek systeem-randapparaat
+Not implemented DevicePCI Niet geïmplementeerd
+Disk Drive DeviceSCSI Schijf
+Not implemented DeviceACPI Niet geïmplementeerd
+Device name DevicePCI Apparaatnaam
+Display controller Device Displaycontroller
+Mass storage controller Device Massa-opslagcontroller
+Input device controller Device Inputapparaat-controller
+Network controller Device Netwerkcontroller
+Device class DeviceSCSI Apparaatklasse
+Device name DeviceACPI Apparaatnaam
+Driver used Device Gebruikte driver
+Other DeviceSCSI Andere
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Apparaatnaam\t \t \t \t : %Name%\nFabrikant\t \t \t: %Manufacturer%\nStuurprogramma gebruikt\t \t \t \t : %DriverUsed%\nApparaat-paden\t : %DevicePaths%
+ACPI Thermal Zone DeviceACPI ACPI Thermische zone
+Communications DeviceSCSI Communicaties
+Bus DevicesView Bus
+Communication controller Device Communicatie-controller
+Manufacturer DeviceACPI Fabrikant
+PCI bus Device PCI-bus
+ACPI System Indicator DeviceACPI ACPI-systeemindicator
+None Device Geen
+PCI bus DevicesView PCI-bus
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Klassengegevens:\t \t \t \t : %classInfo%
+Basic information DevicesView Basisinformatie
+PCI Information DevicePCI PCI-informatie
+Manufacturer: Device Fabrikant
+ACPI bus DevicesView ACPI-bus
+Changer DeviceSCSI Wisselaar
+ACPI System Bus DeviceACPI ACPI-systeembus
+Devices System name Devices
+Worm DeviceSCSI Worm
+Multimedia controller Device Multimedia-controller
+Unknown DevicePCI Onbekend
+Device name: Device Apparaatnaam:
+Computer DevicesView Computer
+Value PropertyList Waarde
Report compatibility DevicesView Rapporteer compatibiliteit
-Satellite communications controller Device Satellietcommunicatie-controller
-Serial bus controller Device Seriële-bus-controller
+Device Device Apparaat
Signal processing controller Device Signaalverwerkings-controller
-Unclassified device Device Ongeclassificeerd apparaat
+Serial bus controller Device Seriële-bus-controller
Wireless controller Device Draadloze controller
+ACPI node '%1' DeviceACPI ACPI-node '%1'
+Device name Device Apparaatnaam
+Manufacturer Device Fabrikant
+Name PropertyList Naam
+Manufacturer DevicePCI Fabrikant
+Intelligent controller Device Intelligente controller
+Satellite communications controller Device Satellietcommunicatie-controller
+SCSI Information DeviceSCSI SCSI-informatie
+Enclosure DeviceSCSI Behuizing
+Array DeviceSCSI Array
+Bridge Device Bridge
+Refresh devices DevicesView Apparaten her-initialiseren
+Unknown device DevicesView Onbekend apparaat
+Graphics Peripheral DeviceSCSI Graphics randapparaat
+Tape Drive DeviceSCSI Tape-station
+Bus Information Device Businformatie
+Connection DevicesView Verbinding
+Generate system information DevicesView Genereer systeeminformatie
+Encryption controller Device Encryptie-controller
+Unclassified device Device Ongeclassificeerd apparaat
+Device name DeviceSCSI Apparaatnaam
+Card Reader DeviceSCSI Kaartlezer
+Class info DevicePCI Klasse info
+Device paths DevicePCI Apparaatpaden
+Devices DevicesView Devices
diff --git a/data/catalogs/apps/devices/ru.catkeys b/data/catalogs/apps/devices/ru.catkeys
index 0a4c23de8e..63ea431e36 100644
--- a/data/catalogs/apps/devices/ru.catkeys
+++ b/data/catalogs/apps/devices/ru.catkeys
@@ -1,73 +1,91 @@
-1 russian x-vnd.Haiku-Devices 1943893993
-ACPI Information DeviceACPI Информация ACPI
-ACPI Processor Namespace '%2' DeviceACPI Пространство имен процессора ACPI '%2'
-ACPI System Bus DeviceACPI Системная шина ACPI
-ACPI System Indicator DeviceACPI Системный индикатор ACPI
-ACPI Thermal Zone DeviceACPI Термодатчик ACPI
-ACPI bus Device Шина ACPI
-ACPI bus DevicesView Шина ACPI
+1 russian x-vnd.Haiku-Devices 2473502333
+Manufacturer DeviceSCSI Производитель
+Order by: DevicesView Сортировать по:
ACPI controller Device Контроллер ACPI
-ACPI node '%1' DeviceACPI ACPI нода '%1'
-Basic information DevicesView Основная информация
-Bridge Device Мост
-Bus DevicesView Шина
-Bus Information Device Информация о шине
-Category DevicesView категориям
-Class Info:\t\t\t\t: %classInfo% DeviceACPI Информация о классе:\t\t\t\t: %classInfo%
-Class info DevicePCI Информация о классе
-Communication controller Device Контроллер связи
+Memory controller Device Контроллер памяти
+Driver used DevicePCI Используемый драйвер
+CD-ROM DeviceSCSI Компакт диск
+ISA bus Device Шина ISA
+ACPI bus Device Шина ACPI
+ISA bus DevicesView Шина ISA
+Docking station Device Кредл
Computer Device Компьютер
-Computer DevicesView Компьютер
-Connection DevicesView подключению
+Unknown device Device Неизвестное устройство
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Информация о классе:\t\t\t\t: %classInfo%
+Processor DeviceSCSI Процессор
Detailed DevicesView Подробности
-Device Device Устройство
-Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Имя устройства\t\t\t\t: %Name%\nПроизводитель\t\t\t: %Manufacturer%\nИспользуемый драйвер\t\t\t\t: %DriverUsed%\nПути устройства\t: %DevicePaths%
-Device name Device Название устройства
-Device name DeviceACPI Название устройства
-Device name DevicePCI Название устройства
-Device name: Device Название устройства:
+Category DevicesView категориям
+Quit DevicesView Выход
Device paths Device Путь к устройству
+Scanner DeviceSCSI Сканер
+Printer DeviceSCSI Принтер
+Processor Device Процессор
+Optical Drive DeviceSCSI Оптический привод
+ACPI Processor Namespace '%2' DeviceACPI Пространство имен процессора ACPI '%2'
+Bridge DeviceSCSI Мост
+unknown Device Неизвестен
+ACPI Information DeviceACPI Информация ACPI
+Generic system peripheral Device Общая системная периферия
+Not implemented DevicePCI Не реализовано
+Disk Drive DeviceSCSI Дисковод
+Not implemented DeviceACPI Не реализовано
+Device name DevicePCI Название устройства
+Display controller Device Контроллер дисплея
+Mass storage controller Device Контроллер накопителей
+Input device controller Device Контроллер устройств ввода
+Network controller Device Сетевой контроллер
+Device class DeviceSCSI Класс устройства
+Device name DeviceACPI Название устройства
+Driver used Device Используемый драйвер
+Other DeviceSCSI Другие
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Имя устройства\t\t\t\t: %Name%\nПроизводитель\t\t\t: %Manufacturer%\nИспользуемый драйвер\t\t\t\t: %DriverUsed%\nПути устройства\t: %DevicePaths%
+ACPI Thermal Zone DeviceACPI Термодатчик ACPI
+Communications DeviceSCSI Устройства связи
+Bus DevicesView Шина
+Communication controller Device Контроллер связи
+Manufacturer DeviceACPI Производитель
+PCI bus Device Шина PCI
+ACPI System Indicator DeviceACPI Системный индикатор ACPI
+None Device Отсутствует
+PCI bus DevicesView Шина PCI
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Информация о классе:\t\t\t\t: %classInfo%
+Basic information DevicesView Основная информация
+PCI Information DevicePCI PCI информация
+Manufacturer: Device Производитель:
+ACPI bus DevicesView Шина ACPI
+ACPI System Bus DeviceACPI Системная шина ACPI
+Devices System name Устройства
+Multimedia controller Device Мультимедийный контроллер
+Unknown DevicePCI Неизвестное
+Device name: Device Название устройства:
+Computer DevicesView Компьютер
+Value PropertyList Значение
+Report compatibility DevicesView Отчет о совместимости
+Device Device Устройство
+Signal processing controller Device Контроллер обработки сигналов
+Serial bus controller Device Контроллер последовательной шины
+Wireless controller Device Беспроводной контроллер
+ACPI node '%1' DeviceACPI ACPI нода '%1'
+Device name Device Название устройства
+Manufacturer Device Производитель
+Name PropertyList Имя
+Manufacturer DevicePCI Производитель
+Intelligent controller Device Интеллектуальный контроллер
+Satellite communications controller Device Контроллер спутниковой связи
+SCSI Information DeviceSCSI SCSI информация
+Array DeviceSCSI Массив
+Bridge Device Мост
+Refresh devices DevicesView Обновить список устройств
+Unknown device DevicesView Неизвестное устройство
+Graphics Peripheral DeviceSCSI Переферийная графика
+Tape Drive DeviceSCSI Накопитель на ленте
+Bus Information Device Информация о шине
+Connection DevicesView подключению
+Generate system information DevicesView Сгенерировать информацию о системе
+Encryption controller Device Контроллер шифрования
+Unclassified device Device Неклассифицированные устройства
+Device name DeviceSCSI Имя устройства
+Card Reader DeviceSCSI Кардридер
+Class info DevicePCI Информация о классе
Device paths DevicePCI Пути устройства
Devices DevicesView Устройства
-Devices System name Устройства
-Display controller Device Контроллер дисплея
-Docking station Device Кредл
-Driver used Device Используемый драйвер
-Driver used DevicePCI Используемый драйвер
-Encryption controller Device Контроллер шифрования
-Generate system information DevicesView Сгенерировать системную информацию
-Generic system peripheral Device Общая системная периферия
-ISA bus Device Шина ISA
-ISA bus DevicesView Шина ISA
-Input device controller Device Контроллер устройств ввода
-Intelligent controller Device Интеллектуальный контроллер
-Manufacturer Device Производитель
-Manufacturer DeviceACPI Производитель
-Manufacturer DevicePCI Производитель
-Manufacturer: Device Производитель:
-Mass storage controller Device Контроллер накопителей
-Memory controller Device Контроллер памяти
-Multimedia controller Device Мультимедийный контроллер
-Name PropertyList Имя
-Network controller Device Сетевой контроллер
-None Device Отсутствует
-Not implemented DeviceACPI Не реализовано
-Not implemented DevicePCI Не реализовано
-Order by: DevicesView Сортировать по:
-PCI Information DevicePCI PCI информация
-PCI bus Device Шина PCI
-PCI bus DevicesView Шина PCI
-Processor Device Процессор
-Quit DevicesView Выход
-Refresh devices DevicesView Обновить список устройств
-Report compatibility DevicesView Отчет о совместимости
-Satellite communications controller Device Контроллер спутниковой связи
-Serial bus controller Device Контроллер последовательной шины
-Signal processing controller Device Контроллер обработки сигналов
-Unclassified device Device Неклассифицированные устройства
-Unknown DevicePCI Неизвестное
-Unknown device Device Неизвестное устройство
-Unknown device DevicesView Неизвестное устройство
-Value PropertyList Значение
-Wireless controller Device Беспроводной контроллер
-unknown Device Неизвестен
diff --git a/data/catalogs/apps/devices/sk.catkeys b/data/catalogs/apps/devices/sk.catkeys
index 5d11365bc9..54e08fd134 100644
--- a/data/catalogs/apps/devices/sk.catkeys
+++ b/data/catalogs/apps/devices/sk.catkeys
@@ -1,73 +1,95 @@
-1 slovak x-vnd.Haiku-Devices 1943893993
-ACPI Information DeviceACPI Informácie o ACPI
-ACPI Processor Namespace '%2' DeviceACPI Menný priestor procesora ACPI „%2“
-ACPI System Bus DeviceACPI Zbernica systému ACPI
-ACPI System Indicator DeviceACPI Indikátor systému ACPI
-ACPI Thermal Zone DeviceACPI Tepelná oblasť ACPI
+1 slovak x-vnd.Haiku-Devices 865240481
+Manufacturer DeviceSCSI Výrobca
+Order by: DevicesView Zoradiť podľa:
+ACPI controller Device Radič ACPI
+Memory controller Device Radič pamäte
+Driver used DevicePCI Použitý ovládač
+CD-ROM DeviceSCSI CD-ROM
+ISA bus Device Zbernica ISA
ACPI bus Device Zbernica ACPI
-ACPI bus DevicesView Zbernica ACPI
-ACPI controller Device Radič ACPI:
-ACPI node '%1' DeviceACPI Uzol ACPI „%1“
-Basic information DevicesView Základné informácie
-Bridge Device Most
-Bus DevicesView Zbernica
-Bus Information Device Informácie o zbernici
-Category DevicesView Kategória
-Class Info:\t\t\t\t: %classInfo% DeviceACPI Info o triede:\t\t\t\t: %classInfo%
-Class info DevicePCI Info o triede
-Communication controller Device Radič komunikácie
+ISA bus DevicesView Zbernica ISA
+Docking station Device Dokovacia stanica
Computer Device Počítač
-Computer DevicesView Počítač
-Connection DevicesView Pripojenie
+Unknown device Device Neznáme zariadenie
+Class Info:\t\t\t\t: %classInfo% DeviceACPI Info o triede:\t\t\t\t: %classInfo%
+Processor DeviceSCSI Procesor
+RBC DeviceSCSI RBC
Detailed DevicesView Podrobnosti
-Device Device Zariadenie
-Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Názov zariadenia\t\t\t\t: %Name%\nVýrobca\t\t\t: %Manufacturer%\nPoužitý ovládač\t\t\t\t: %DriverUsed%\nCesty k zariadeniam\t: %DevicePaths%
-Device name Device Názov zariadenia
-Device name DeviceACPI Názov zariadenia
-Device name DevicePCI Názov zariadenia
-Device name: Device Názov zariadenia:
+Category DevicesView Kategória
+Quit DevicesView Ukončiť
Device paths Device Cesty k zariadeniam
+Scanner DeviceSCSI Skener
+Printer DeviceSCSI Tlačiareň
+Processor Device Procesor
+Optical Drive DeviceSCSI Optická jednotka
+ACPI Processor Namespace '%2' DeviceACPI Menný priestor procesora ACPI „%2“
+Bridge DeviceSCSI Most
+unknown Device neznáme
+ACPI Information DeviceACPI Informácie o ACPI
+Generic system peripheral Device Všeobecné periférie systému
+Not implemented DevicePCI Neimplementované
+Disk Drive DeviceSCSI Disková jednotka
+Not implemented DeviceACPI Neimplementované
+Device name DevicePCI Názov zariadenia
+Display controller Device Radič zobrazovania
+Mass storage controller Device Radič hromadného úložiska
+Input device controller Device Radič vstupných zariadení
+Network controller Device Radič siete
+Device class DeviceSCSI Trieda zariadenia
+Device name DeviceACPI Názov zariadenia
+Driver used Device Použitý ovládač
+Other DeviceSCSI Iné
+Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Názov zariadenia\t\t\t\t: %Name%\nVýrobca\t\t\t: %Manufacturer%\nPoužitý ovládač\t\t\t\t: %DriverUsed%\nCesty k zariadeniam\t: %DevicePaths%
+ACPI Thermal Zone DeviceACPI Tepelná oblasť ACPI
+Communications DeviceSCSI Komunikácia
+Bus DevicesView Zbernica
+Communication controller Device Radič komunikácie
+Manufacturer DeviceACPI Výrobca
+PCI bus Device Zbernica PCI
+ACPI System Indicator DeviceACPI Indikátor systému ACPI
+None Device Žiadne
+PCI bus DevicesView Zbernica PCI
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Info o triede:\t \t \t \t : %classInfo%
+Basic information DevicesView Základné informácie
+PCI Information DevicePCI Informácie PCI
+Manufacturer: Device Výrobca:
+ACPI bus DevicesView Zbernica ACPI
+Changer DeviceSCSI Menič
+ACPI System Bus DeviceACPI Zbernica systému ACPI
+Devices System name Zariadenia
+Worm DeviceSCSI Červ
+Multimedia controller Device Radič multimédií
+Unknown DevicePCI Neznáme
+Device name: Device Názov zariadenia:
+Computer DevicesView Počítač
+Value PropertyList Hodnota
+Report compatibility DevicesView Nahlásiť kompatibilitu
+Device Device Zariadenie
+Signal processing controller Device Radič spracovania signálov
+Serial bus controller Device Radič sériovej zbernice
+Wireless controller Device Radič bezdrôtových sietí
+ACPI node '%1' DeviceACPI Uzol ACPI „%1“
+Device name Device Názov zariadenia
+Manufacturer Device Výrobca
+Name PropertyList Názov
+Manufacturer DevicePCI Výrobca
+Intelligent controller Device Inteligentný radič
+Satellite communications controller Device Radič satelitnej komunikácie
+SCSI Information DeviceSCSI Informácie o SCSI
+Enclosure DeviceSCSI Skrinka
+Array DeviceSCSI Pole
+Bridge Device Most
+Refresh devices DevicesView Obnoviť zariadenia
+Unknown device DevicesView Neznáme zariadenie
+Graphics Peripheral DeviceSCSI Grafické periférie
+Tape Drive DeviceSCSI Pásková jednotka
+Bus Information Device Informácie o zbernici
+Connection DevicesView Pripojenie
+Generate system information DevicesView Vytvoriť informácie o systéme
+Encryption controller Device Radič šifrovania
+Unclassified device Device Nezaradené zariadenie
+Device name DeviceSCSI Názov zariadenia
+Card Reader DeviceSCSI Čítačka kariet
+Class info DevicePCI Info o triede
Device paths DevicePCI Cesty k zariadeniam
Devices DevicesView Zariadenia
-Devices System name Zariadenia
-Display controller Device Radič zobrazovania
-Docking station Device Dokovacia stanica
-Driver used Device Použitý ovládač
-Driver used DevicePCI Použitý ovládač
-Encryption controller Device Radič šifrovania
-Generate system information DevicesView Vytvoriť informácie o systéme
-Generic system peripheral Device Všeobecné periférie systému
-ISA bus Device Zbernica ISA
-ISA bus DevicesView Zbernica ISA
-Input device controller Device Radič vstupných zariadení
-Intelligent controller Device Inteligentný radič
-Manufacturer Device Výrobca
-Manufacturer DeviceACPI Výrobca
-Manufacturer DevicePCI Výrobca
-Manufacturer: Device Výrobca:
-Mass storage controller Device Radič hromadného úložiska
-Memory controller Device Radič pamäte:
-Multimedia controller Device Radič multimédií
-Name PropertyList Názov
-Network controller Device Radič siete
-None Device Žiadne
-Not implemented DeviceACPI Neimplementované
-Not implemented DevicePCI Neimplementované
-Order by: DevicesView Zoradiť podľa:
-PCI Information DevicePCI Informácie PCI
-PCI bus Device Zbernica PCI
-PCI bus DevicesView Zbernica PCI
-Processor Device Procesor
-Quit DevicesView Ukončiť
-Refresh devices DevicesView Obnoviť zariadenia
-Report compatibility DevicesView Nahlásiť kompatibilitu
-Satellite communications controller Device Radič satelitnej komunikácie
-Serial bus controller Device Radič sériovej zbernice
-Signal processing controller Device Radič spracovania signálov
-Unclassified device Device Nezaradené zariadenie
-Unknown DevicePCI Neznáme
-Unknown device Device Neznáme zariadenie
-Unknown device DevicesView Neznáme zariadenie
-Value PropertyList Hodnota
-Wireless controller Device Radič bezdrôtových sietí
-unknown Device neznáme
diff --git a/data/catalogs/apps/devices/sv.catkeys b/data/catalogs/apps/devices/sv.catkeys
index a4b82d780a..a0640245f9 100644
--- a/data/catalogs/apps/devices/sv.catkeys
+++ b/data/catalogs/apps/devices/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Haiku-Devices 2539610927
+1 swedish x-vnd.Haiku-Devices 865240481
ACPI Information DeviceACPI ACPI-information
ACPI Processor Namespace '%2' DeviceACPI ACPI Processor-namnrymd '%2'
ACPI System Bus DeviceACPI ACPI systembuss
@@ -8,6 +8,7 @@ ACPI bus Device ACPI-buss
ACPI bus DevicesView ACPI-buss
ACPI controller Device ACPI-kontroller
ACPI node '%1' DeviceACPI ACPI nod '%1'
+Array DeviceSCSI Matris
Basic information DevicesView Grundläggande information
Bridge Device Brygga
Bridge DeviceSCSI Brygga
@@ -16,10 +17,12 @@ Bus Information Device Bussinformation
CD-ROM DeviceSCSI CD-ROM
Card Reader DeviceSCSI Kortläsare
Category DevicesView Kategori
+Changer DeviceSCSI Växlare
Class Info:\t\t\t\t: %classInfo% DeviceACPI Klassinformation:\t\t\t\t: %classInfo%
Class Info:\t\t\t\t: %classInfo% DeviceSCSI Klassinformation:\t\t\t\t: %classInfo%
Class info DevicePCI Klassinformation
Communication controller Device Kommunikationskontroller
+Communications DeviceSCSI Kommunikations
Computer Device Dator
Computer DevicesView Dator
Connection DevicesView Anslutning
@@ -41,6 +44,7 @@ Display controller Device Skärmkontroller
Docking station Device Dockningsstation
Driver used Device Drivrutin använd
Driver used DevicePCI Använd drivrutin
+Enclosure DeviceSCSI Hölje
Encryption controller Device Krypteringskontroller
Generate system information DevicesView Generera systeminformation
Generic system peripheral Device Allmänt systemtillbehör
@@ -87,4 +91,5 @@ Unknown device Device Okänd enhet
Unknown device DevicesView Okänd enhet
Value PropertyList Värde
Wireless controller Device Trådlös kontroller
+Worm DeviceSCSI Mask
unknown Device okänd
diff --git a/data/catalogs/apps/devices/uk.catkeys b/data/catalogs/apps/devices/uk.catkeys
index 04290a07d2..3c5fe326ee 100644
--- a/data/catalogs/apps/devices/uk.catkeys
+++ b/data/catalogs/apps/devices/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.Haiku-Devices 1943893993
+1 ukrainian x-vnd.Haiku-Devices 865240481
ACPI Information DeviceACPI Інформація про ACPI
ACPI Processor Namespace '%2' DeviceACPI Місце імені процесора ACPI '%2'
ACPI System Bus DeviceACPI Шина системи ACPI
@@ -8,35 +8,47 @@ ACPI bus Device Шина ACPI
ACPI bus DevicesView ШинаACPI
ACPI controller Device ACPI контролер
ACPI node '%1' DeviceACPI Вузол ACPI '%1'
+Array DeviceSCSI Масив
Basic information DevicesView Основна інформація
Bridge Device Міст
+Bridge DeviceSCSI Міст
Bus DevicesView Шина
Bus Information Device Інфо про шину
+CD-ROM DeviceSCSI CD-ROM
+Card Reader DeviceSCSI Кардрідер
Category DevicesView Категорії
+Changer DeviceSCSI Ченджер
Class Info:\t\t\t\t: %classInfo% DeviceACPI Інфо про клас:\t\t\t\t: %classInfo%
+Class Info:\t\t\t\t: %classInfo% DeviceSCSI Дані класу:\t\t\t\t: %classInfo%
Class info DevicePCI Інфо про клас
Communication controller Device Контролер зв’язку
+Communications DeviceSCSI Комунікації
Computer Device Комп’ютер
Computer DevicesView Компютер
Connection DevicesView Підключенню
Detailed DevicesView Докладно
Device Device Пристрій
Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Ім'я пристрою\t\t\t\t: %Name%\nВиробник\t\t\t: %Manufacturer%\nВикор. драйвер \t\t\t\t: %DriverUsed%\nШляхи пристрою\t: %DevicePaths%
+Device class DeviceSCSI Клас приладу
Device name Device Назва пристрою
Device name DeviceACPI Ім'я пристрою
Device name DevicePCI Ім'я пристрою
+Device name DeviceSCSI Ім'я пристрою
Device name: Device Назва пристрою:
Device paths Device Шляхи пристрою
Device paths DevicePCI Шляхи пристрою
Devices DevicesView Пристрої
Devices System name Пристрої
+Disk Drive DeviceSCSI Дисковий привід
Display controller Device Контролер дисплея
Docking station Device Док-станція
Driver used Device Використовує драйвер
Driver used DevicePCI Використовує драйвер
+Enclosure DeviceSCSI Вкладення
Encryption controller Device Контроллер шифрування
Generate system information DevicesView Створення системної інформації
Generic system peripheral Device Периферійні пристрої
+Graphics Peripheral DeviceSCSI Графічна периферія
ISA bus Device ISA bus
ISA bus DevicesView Шина ISA
Input device controller Device Контролер ввідних пристроїв
@@ -44,6 +56,7 @@ Intelligent controller Device Інтелектуальний контролер
Manufacturer Device Виробник
Manufacturer DeviceACPI Виробник
Manufacturer DevicePCI Виробник
+Manufacturer DeviceSCSI Виробник
Manufacturer: Device Виробник:
Mass storage controller Device Контролер накопичувачів
Memory controller Device Контролер пам’яті
@@ -53,21 +66,30 @@ Network controller Device Мережевий контролер
None Device Жоден
Not implemented DeviceACPI Не підтримується
Not implemented DevicePCI Не підтримується
+Optical Drive DeviceSCSI Оптичний привід
Order by: DevicesView Сортувати по:
+Other DeviceSCSI Інше
PCI Information DevicePCI Інформація про PCI
PCI bus Device ШинаPCI
PCI bus DevicesView Шина PCI
+Printer DeviceSCSI Printer
Processor Device Процесор
+Processor DeviceSCSI Процесор
Quit DevicesView Вийти
+RBC DeviceSCSI RBC
Refresh devices DevicesView Оновлення пристроїв
Report compatibility DevicesView Повідомити про сумісність
+SCSI Information DeviceSCSI Дані SCSI
Satellite communications controller Device Контроллер супутникового зв’язку
+Scanner DeviceSCSI Сканер
Serial bus controller Device Контроллер послідовної шини
Signal processing controller Device Контроллер обробки сигналів
+Tape Drive DeviceSCSI Стрічковий привід
Unclassified device Device Некласифіковані пристрої
Unknown DevicePCI Невідомий
Unknown device Device Невідомий пристрій
Unknown device DevicesView Невідомий пристрій
Value PropertyList Значення
Wireless controller Device Бездротовий контролер
+Worm DeviceSCSI Worm
unknown Device невідомий
diff --git a/data/catalogs/apps/diskprobe/be.catkeys b/data/catalogs/apps/diskprobe/be.catkeys
index d2f2dce6ca..c7d107cec3 100644
--- a/data/catalogs/apps/diskprobe/be.catkeys
+++ b/data/catalogs/apps/diskprobe/be.catkeys
@@ -1,133 +1,133 @@
-1 belarusian x-vnd.Haiku-DiskProbe 3441574721
-%ld (native) ProbeView %ld (родны)
-(native) ProbeView (родны)
-15 bit TypeEditors 15 біт
-16 bit TypeEditors 16-бітны
-16 bit signed value: TypeEditors 16-бітнае занчэнне:
-16 bit unsigned value: TypeEditors 16-бітные значэнне без знаку
-32 bit TypeEditors 32 біт
-32 bit signed value: TypeEditors 32-бітнае падпісанае значэнне:
-32 bit size or status: TypeEditors 32-бітны памер або стан:
-32 bit unsigned pointer: TypeEditors 32-бітны указальнік без знаку:
-32 bit unsigned size: TypeEditors 32-бітны памер без знаку:
-32 bit unsigned value: TypeEditors 32-бітнае значэнне без знаку:
-64 bit signed offset: TypeEditors 64-бітны адступ:
-64 bit signed value: TypeEditors 64-бітнае значэнне:
-64 bit unsigned value: TypeEditors 64-бітнае значэнне без знаку
-8 bit palette TypeEditors 8-бітная палітра
-8 bit signed value: TypeEditors 8-бітнае знакавае занчэнне
-8 bit unsigned value: TypeEditors 8-бітнае занчэнне без знаку
-Add ProbeView Дадаць
-Attribute AttributeWindow Атрыбут
-Attribute ProbeView Атрыбут
-Attribute offset: ProbeView Адступ атрыбуту:
-Attribute type: ProbeView Тып атрыбуту:
-Attribute: ProbeView Атрыбут:
-Attributes ProbeView Атрыбуты
-Back ProbeView Назад
-Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' База адліку
-Block ProbeView Блок
-Block %Ld (0x%Lx) ProbeView Блок %Ld (0x%Lx)
-Block 0x%Lx ProbeView Блок 0x%Lx
-Block: ProbeView Блок:
-BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' ПамерБлоку
-Bookmarks ProbeView Закладкі
-Boolean TypeEditors This is the type of editor Булевы
-Boolean editor TypeEditors Булевы рэдактар
-Boolean value: TypeEditors Лагічнае значэнне:
-Cancel AttributeWindow Адмена
-Cancel OpenWindow Адмена
-Cancel ProbeView Адмена
-Case sensitive FindWindow З улікам рэгістра
-Close AttributeWindow Закрыць
-Close FileWindow Закрыць
-Close ProbeView Закрыць
-Contents: TypeEditors Змест:
-Copy ProbeView Капіяваць
-Could not find search string. ProbeView Не атрымалася знайсці страку пошуку.
-Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Не ўдалося адкрыць \"%s\":\n%s
-Could not open file \"%s\": %s\n DiskProbe Не ўдалося адкрыць файл \"%s\": %s\n
-Could not read image TypeEditors Image means here a picture file, not a disk image. Не ўдалося прачытаць выяву
-Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Дзесяткавы
-Device ProbeView Прылада
-Device offset: ProbeView Адступ прылады:
-Device: ProbeView Прылада:
-DiskProbe System name DiskProbe
-DiskProbe request AttributeWindow Запыт DiskProbe
-DiskProbe request DiskProbe Запыт DiskProbe
-DiskProbe request ProbeView Запыт DiskProbe
-Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Сапраўды жадаеце выдаліць атрыбут \"%s\" з файла\"%s\"?\n\nВы не зможаце адмяніць гэтае дзеянне.
-Don't save ProbeView Не захоўваць
-Double precision floating-point value: TypeEditors Значэнне з плаваючай запятой двайной дакладнасці:
-Edit ProbeView Рэдагаваць
-Examine device: OpenWindow Даследаваць прыладу:
-File FileWindow Файл
-File ProbeView Файл
+1 belarusian x-vnd.Haiku-DiskProbe 2306672993
File offset: ProbeView Адступ:
-File: ProbeView Файл:
-Find FindWindow Знайсці
+%ld (native) ProbeView %ld (родны)
+64 bit unsigned value: TypeEditors 64-бітнае значэнне без знаку
Find again ProbeView Знайсці зноў
-Find… ProbeView Знайсці…
-Fit ProbeView Size of fonts, fits to available room Умясціць
-Flattened bitmap TypeEditors Сплюснутая карта бітаў
-Floating-point value: TypeEditors Значэнне з плаваючай запятой:
-Font size ProbeView Памер шрыфту
-Grayscale TypeEditors Адценні шэрага
-Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hex
-Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шаснаццатковы
-Icon TypeEditors Іконка
-Icon view TypeEditors Від Іконак
-Image TypeEditors This is the type of view Выява
-Image view TypeEditors Image means here a picture file, not a disk image. Від выявы
-MIME type editor TypeEditors Рэдактар MIME тыпаў
-MIME type: TypeEditors MIME тып:
-Message TypeEditors This is the type of view Паведамленне
-Message View TypeEditors Від Паведамлення
-Mode: FindWindow Рэжым:
-Native: %Ld (0x%0*Lx) ProbeView Родны: %Ld (0x%0*Lx)
-Native: 0x%0*Lx ProbeView Родны: 0x%0*Lx
-New… FileWindow Новы…
-Next ProbeView Далейшы
-No type editor available AttributeWindow Рэдактар тыпаў недаступны
-Number TypeEditors This is the type of editor Нумаровы
-Number editor TypeEditors Рэдактар нумараў
-Number: TypeEditors Нумар:
-OK DiskProbe Так
-OK ProbeView Так
-Offset: ProbeView Адступ:
-Open device FileWindow Адкрыць прыладу
-Open file… FileWindow Адкрыць файл…
-PNG format TypeEditors Фармат PNG
-Page setup… ProbeView Наладкі старонкі…
-Paste ProbeView Уставіць
-Previous ProbeView Папярэдні
-Print… ProbeView Надрукаваць…
-Probe device OpenWindow Зандыраваць прыладу
-Probe file… OpenWindow Зандыраваць файл…
-Quit FileWindow Выйсці
-Raw editor AttributeWindow RAW рэдактар
-Redo ProbeView Яшчэ раз
-Remove AttributeWindow Выдаліць
-Remove from file AttributeWindow Выдаліць з файла
-Save ProbeView Захаваць
-Save changes before closing? ProbeView Захаваць змены перад закрыццём?
-Select all ProbeView Выбраць усё
-Selection ProbeView Выдзяленне
-Stop ProbeView Стоп
-String editor TypeEditors Строкавы рэдактар
-Swapped: %Ld (0x%0*Lx) ProbeView Перастаўлены: %Ld (0x%0*Lx)
-Swapped: 0x%0*Lx ProbeView Перастаўлены: 0x%0*Lx
Text FindWindow Тэкст
-Text TypeEditors This is the type of editor Тэкставы
-Type editor AttributeWindow Рэдактар тыпаў
-Type editor ProbeView Рэдактар тыпаў
-Type editor not supported ProbeView Рэдактар тыпаў не падтрымліваецца
-Undo ProbeView Адмяніць
-Unknown format TypeEditors Невядомы фармат
-Unknown type TypeEditors Невядомы тып
-View ProbeView This is the last menubar item 'File Edit Block View' Від
-Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Не ўдалося запісаць у файл:\n%s\n\nУсе змены будуць згублены, калі вы выйдзеце.
-none ProbeView No attributes няма
-of ProbeView з
-of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. з 0x0
+Find… ProbeView Знайсці…
+Case sensitive FindWindow З улікам рэгістра
+Cancel OpenWindow Адмена
+Close AttributeWindow Закрыць
+File ProbeView Файл
+Attribute ProbeView Атрыбут
+Floating-point value: TypeEditors Значэнне з плаваючай запятой:
+16 bit TypeEditors 16-бітны
+Attributes ProbeView Атрыбуты
+Device offset: ProbeView Адступ прылады:
+Selection ProbeView Выдзяленне
+DiskProbe System name DiskProbe
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. што: '%.4s'\n\n
+File FileWindow Файл
+OK DiskProbe Так
+Boolean TypeEditors This is the type of editor Булевы
+Paste ProbeView Уставіць
+PNG format TypeEditors Фармат PNG
+Font size ProbeView Памер шрыфту
+Attribute type: ProbeView Тып атрыбуту:
+Attribute AttributeWindow Атрыбут
+8 bit signed value: TypeEditors 8-бітнае знакавае занчэнне
+Number: TypeEditors Нумар:
+Save ProbeView Захаваць
+Stop ProbeView Стоп
+Number editor TypeEditors Рэдактар нумараў
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hex
+No type editor available AttributeWindow Рэдактар тыпаў недаступны
+Double precision floating-point value: TypeEditors Значэнне з плаваючай запятой двайной дакладнасці:
+Device: ProbeView Прылада:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Сапраўды жадаеце выдаліць атрыбут \"%s\" з файла\"%s\"?\n\nВы не зможаце адмяніць гэтае дзеянне.
+Text TypeEditors This is the type of editor Тэкставы
+8 bit unsigned value: TypeEditors 8-бітнае занчэнне без знаку
+Block ProbeView Блок
+Back ProbeView Назад
+Device ProbeView Прылада
+Unknown type TypeEditors Невядомы тып
+Block 0x%Lx ProbeView Блок 0x%Lx
+Quit FileWindow Выйсці
+Undo ProbeView Адмяніць
+Close ProbeView Закрыць
+Number TypeEditors This is the type of editor Нумаровы
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Дзесяткавы
+16 bit signed value: TypeEditors 16-бітнае занчэнне:
+String editor TypeEditors Строкавы рэдактар
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. з 0x0
+64 bit signed offset: TypeEditors 64-бітны адступ:
+Boolean editor TypeEditors Булевы рэдактар
+Copy ProbeView Капіяваць
+none ProbeView No attributes няма
+Boolean value: TypeEditors Лагічнае значэнне:
+32 bit size or status: TypeEditors 32-бітны памер або стан:
+8 bit palette TypeEditors 8-бітная палітра
+Fit ProbeView Size of fonts, fits to available room Умясціць
+Probe device OpenWindow Зандыраваць прыладу
+ (native) ProbeView (зыходны)
+Unknown format TypeEditors Невядомы фармат
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шаснаццатковы
+MIME type: TypeEditors MIME тып:
+Page setup… ProbeView Наладкі старонкі…
+New… FileWindow Новы…
+DiskProbe request AttributeWindow Запыт DiskProbe
+Could not read image TypeEditors Image means here a picture file, not a disk image. Не ўдалося прачытаць выяву
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' ПамерБлоку
+Save changes before closing? ProbeView Захаваць змены перад закрыццём?
+Type editor AttributeWindow Рэдактар тыпаў
+Native: 0x%0*Lx ProbeView Родны: 0x%0*Lx
+Raw editor AttributeWindow RAW рэдактар
+Message View TypeEditors Від Паведамлення
+DiskProbe request ProbeView Запыт DiskProbe
+32 bit unsigned size: TypeEditors 32-бітны памер без знаку:
+Flattened bitmap TypeEditors Сплюснутая карта бітаў
+Open file… FileWindow Адкрыць файл…
+Next ProbeView Далейшы
+Close FileWindow Закрыць
+Attribute: ProbeView Атрыбут:
+Remove from file AttributeWindow Выдаліць з файла
+Don't save ProbeView Не захоўваць
+Previous ProbeView Папярэдні
+64 bit signed value: TypeEditors 64-бітнае значэнне:
+Icon TypeEditors Іконка
+Block: ProbeView Блок:
+Examine device: OpenWindow Даследаваць прыладу:
+Offset: ProbeView Адступ:
+OK ProbeView Так
+Add ProbeView Дадаць
+Edit ProbeView Рэдагаваць
+Native: %Ld (0x%0*Lx) ProbeView Родны: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors 32-бітнае значэнне без знаку:
+Message TypeEditors This is the type of view Паведамленне
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Не ўдалося адкрыць \"%s\":\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' База адліку
+Image view TypeEditors Image means here a picture file, not a disk image. Від выявы
+Cancel AttributeWindow Адмена
+Type editor not supported ProbeView Рэдактар тыпаў не падтрымліваецца
+MIME type editor TypeEditors Рэдактар MIME тыпаў
+Swapped: %Ld (0x%0*Lx) ProbeView Перастаўлены: %Ld (0x%0*Lx)
+Find FindWindow Знайсці
+Remove AttributeWindow Выдаліць
+Print… ProbeView Надрукаваць…
+Block %Ld (0x%Lx) ProbeView Блок %Ld (0x%Lx)
+Image TypeEditors This is the type of view Выява
+Could not open file \"%s\": %s\n DiskProbe Не ўдалося адкрыць файл \"%s\": %s\n
+Select all ProbeView Выбраць усё
+Probe file… OpenWindow Зандыраваць файл…
+Icon view TypeEditors Від Іконак
+Bookmarks ProbeView Закладкі
+Mode: FindWindow Рэжым:
+15 bit TypeEditors 15 біт
+Open device FileWindow Адкрыць прыладу
+Could not find search string. ProbeView Не атрымалася знайсці страку пошуку.
+16 bit unsigned value: TypeEditors 16-бітные значэнне без знаку
+Attribute offset: ProbeView Адступ атрыбуту:
+View ProbeView This is the last menubar item 'File Edit Block View' Від
+Redo ProbeView Яшчэ раз
+File: ProbeView Файл:
+32 bit unsigned pointer: TypeEditors 32-бітны указальнік без знаку:
+of ProbeView з
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Не ўдалося запісаць у файл:\n%s\n\nУсе змены будуць згублены, калі вы выйдзеце.
+32 bit TypeEditors 32 біт
+Cancel ProbeView Адмена
+Swapped: 0x%0*Lx ProbeView Перастаўлены: 0x%0*Lx
+Grayscale TypeEditors Адценні шэрага
+32 bit signed value: TypeEditors 32-бітнае падпісанае значэнне:
+DiskProbe request DiskProbe Запыт DiskProbe
+Type editor ProbeView Рэдактар тыпаў
+Contents: TypeEditors Змест:
diff --git a/data/catalogs/apps/diskprobe/de.catkeys b/data/catalogs/apps/diskprobe/de.catkeys
index 12e9dcc6a1..f6739011cd 100644
--- a/data/catalogs/apps/diskprobe/de.catkeys
+++ b/data/catalogs/apps/diskprobe/de.catkeys
@@ -1,133 +1,133 @@
-1 german x-vnd.Haiku-DiskProbe 3441574721
-%ld (native) ProbeView %ld (nativ)
-(native) ProbeView (nativ)
-15 bit TypeEditors 15 Bit
-16 bit TypeEditors 16 Bit
-16 bit signed value: TypeEditors 16-Bit-Wert mit Vorzeichen:
-16 bit unsigned value: TypeEditors Vorzeichenloser 16-Bit-Wert:
-32 bit TypeEditors 32 Bit
-32 bit signed value: TypeEditors 32-Bit-Wert mit Vorzeichen:
-32 bit size or status: TypeEditors 32-Bit-Größe oder Status:
-32 bit unsigned pointer: TypeEditors Vorzeichenloser 32-Bit-Zeiger:
-32 bit unsigned size: TypeEditors Vorzeichenlose 32-Bit-Größe:
-32 bit unsigned value: TypeEditors Vorzeichenloser 32-Bit-Wert:
-64 bit signed offset: TypeEditors 64-Bit-Offset mit Vorzeichen:
-64 bit signed value: TypeEditors 64-Bit-Wert mit Vorzeichen:
-64 bit unsigned value: TypeEditors Vorzeichenloser 64-Bit-Wert:
-8 bit palette TypeEditors 8-Bit-Palette
-8 bit signed value: TypeEditors 8-Bit-Wert mit Vorzeichen:
-8 bit unsigned value: TypeEditors Vorzeichenloser 8-Bit-Wert:
-Add ProbeView Hinzu
-Attribute AttributeWindow Attribut
-Attribute ProbeView Attribut
-Attribute offset: ProbeView Attribut-Offset:
-Attribute type: ProbeView Attributtyp:
-Attribute: ProbeView Attribut:
-Attributes ProbeView Attribute
-Back ProbeView Zurück
-Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Basis
-Block ProbeView Block
-Block %Ld (0x%Lx) ProbeView Block %Ld (0x%Lx)
-Block 0x%Lx ProbeView Block 0x%Lx
-Block: ProbeView Block:
-BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Blockgröße
-Bookmarks ProbeView Lesezeichen
-Boolean TypeEditors This is the type of editor Boolesch
-Boolean editor TypeEditors Boolescher Editor
-Boolean value: TypeEditors Boolescher Wert:
-Cancel AttributeWindow Abbrechen
-Cancel OpenWindow Abbrechen
-Cancel ProbeView Abbrechen
-Case sensitive FindWindow Groß-/Kleinschreibung unterscheiden
-Close AttributeWindow Schließen
-Close FileWindow Schließen
-Close ProbeView Schließen
-Contents: TypeEditors Inhalt:
-Copy ProbeView Kopieren
-Could not find search string. ProbeView Der Suchbegriff konnte nicht gefunden werden.
-Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. \"%s\" konnte nicht geöffnet werden:\n%s
-Could not open file \"%s\": %s\n DiskProbe Die Datei \"%s\" konnte nicht geöffnet werden: %s\n
-Could not read image TypeEditors Image means here a picture file, not a disk image. Bild konnte nicht eingelesen werden
-Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Dezimal
-Device ProbeView Gerät
-Device offset: ProbeView Gerät-Offset:
-Device: ProbeView Gerät:
-DiskProbe System name Hex-Editor
-DiskProbe request AttributeWindow DiskProbe-Anfrage
-DiskProbe request DiskProbe Hex-Editor-Anfrage
-DiskProbe request ProbeView DiskProbe-Anfrage
-Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Soll das Attribut \"%s\" wirklich von der Datei \"%s\" entfernt werden?\n\nDiese Aktion kann nicht rückgängig gemacht werden.
-Don't save ProbeView Verwerfen
-Double precision floating-point value: TypeEditors Doppelt-präziser Gleitkomma-Wert:
-Edit ProbeView Bearbeiten
-Examine device: OpenWindow Gerät untersuchen:
-File FileWindow Datei
-File ProbeView Datei
+1 german x-vnd.Haiku-DiskProbe 2306672993
File offset: ProbeView Datei-Offset:
-File: ProbeView Datei:
-Find FindWindow Suchen
+%ld (native) ProbeView %ld (nativ)
+64 bit unsigned value: TypeEditors Vorzeichenloser 64-Bit-Wert:
Find again ProbeView Weitersuchen
-Find… ProbeView Suchen…
-Fit ProbeView Size of fonts, fits to available room Passend
-Flattened bitmap TypeEditors Flat-Bitmap
-Floating-point value: TypeEditors Gleitkommawert:
-Font size ProbeView Schriftgröße
-Grayscale TypeEditors Graustufen
-Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadezimal
-Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadezimal
-Icon TypeEditors Symbol
-Icon view TypeEditors Symbolansicht
-Image TypeEditors This is the type of view Bild
-Image view TypeEditors Image means here a picture file, not a disk image. Bild-Ansicht
-MIME type editor TypeEditors MIME-Typ-Editor
-MIME type: TypeEditors MIME-Typ:
-Message TypeEditors This is the type of view Message
-Message View TypeEditors Message-Ansicht
-Mode: FindWindow Modus:
-Native: %Ld (0x%0*Lx) ProbeView Nativ: %Ld (0x%0*Lx)
-Native: 0x%0*Lx ProbeView Nativ: 0x%0*Lx
-New… FileWindow Neu…
-Next ProbeView Nächster
-No type editor available AttributeWindow Kein Editor für diesen Typ vorhanden
-Number TypeEditors This is the type of editor Zahl
-Number editor TypeEditors Zahleneditor
-Number: TypeEditors Zahl:
-OK DiskProbe OK
-OK ProbeView OK
-Offset: ProbeView Offset:
-Open device FileWindow Gerät öffnen
-Open file… FileWindow Datei öffnen…
-PNG format TypeEditors PNG-Format
-Page setup… ProbeView Seite einrichten…
-Paste ProbeView Einfügen
-Previous ProbeView Vorheriger
-Print… ProbeView Drucken…
-Probe device OpenWindow Gerät untersuchen
-Probe file… OpenWindow Datei untersuchen…
-Quit FileWindow Beenden
-Raw editor AttributeWindow Raw-Editor
-Redo ProbeView Wiederholen
-Remove AttributeWindow Entfernen
-Remove from file AttributeWindow Von Datei entfernen
-Save ProbeView Speichern
-Save changes before closing? ProbeView Änderungen vor dem Beenden speichern?
-Select all ProbeView Alles auswählen
-Selection ProbeView Auswahl
-Stop ProbeView Stopp
-String editor TypeEditors Zeichen-Editor
-Swapped: %Ld (0x%0*Lx) ProbeView Getauscht: %Ld (0x%0*Lx)
-Swapped: 0x%0*Lx ProbeView Getauscht: 0x%0*Lx
Text FindWindow Text
-Text TypeEditors This is the type of editor Text
-Type editor AttributeWindow Typ-Editor
-Type editor ProbeView Typ-Editor
-Type editor not supported ProbeView Typ-Editor wird nicht unterstützt
-Undo ProbeView Rückgängig
-Unknown format TypeEditors Unbekanntes Format
-Unknown type TypeEditors Unbekannter Typ
-View ProbeView This is the last menubar item 'File Edit Block View' Ansicht
-Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Die Datei konnte nicht geschrieben werden:\n%s\n\nAlle Änderungen werden beim Beenden verloren gehen.
-none ProbeView No attributes keine
-of ProbeView von
-of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. von 0x0
+Find… ProbeView Suchen…
+Case sensitive FindWindow Groß-/Kleinschreibung unterscheiden
+Cancel OpenWindow Abbrechen
+Close AttributeWindow Schließen
+File ProbeView Datei
+Attribute ProbeView Attribut
+Floating-point value: TypeEditors Gleitkommawert:
+16 bit TypeEditors 16 Bit
+Attributes ProbeView Attribute
+Device offset: ProbeView Gerät-Offset:
+Selection ProbeView Auswahl
+DiskProbe System name Hex-Editor
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. what: '%.4s'\n\n
+File FileWindow Datei
+OK DiskProbe OK
+Boolean TypeEditors This is the type of editor Boolesch
+Paste ProbeView Einfügen
+PNG format TypeEditors PNG-Format
+Font size ProbeView Schriftgröße
+Attribute type: ProbeView Attributtyp:
+Attribute AttributeWindow Attribut
+8 bit signed value: TypeEditors 8-Bit-Wert mit Vorzeichen:
+Number: TypeEditors Zahl:
+Save ProbeView Speichern
+Stop ProbeView Stopp
+Number editor TypeEditors Zahleneditor
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadezimal
+No type editor available AttributeWindow Kein Editor für diesen Typ vorhanden
+Double precision floating-point value: TypeEditors Doppelt-präziser Gleitkomma-Wert:
+Device: ProbeView Gerät:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Soll das Attribut \"%s\" wirklich von der Datei \"%s\" entfernt werden?\n\nDiese Aktion kann nicht rückgängig gemacht werden.
+Text TypeEditors This is the type of editor Text
+8 bit unsigned value: TypeEditors Vorzeichenloser 8-Bit-Wert:
+Block ProbeView Block
+Back ProbeView Zurück
+Device ProbeView Gerät
+Unknown type TypeEditors Unbekannter Typ
+Block 0x%Lx ProbeView Block 0x%Lx
+Quit FileWindow Beenden
+Undo ProbeView Rückgängig
+Close ProbeView Schließen
+Number TypeEditors This is the type of editor Zahl
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Dezimal
+16 bit signed value: TypeEditors 16-Bit-Wert mit Vorzeichen:
+String editor TypeEditors Zeichen-Editor
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. von 0x0
+64 bit signed offset: TypeEditors 64-Bit-Offset mit Vorzeichen:
+Boolean editor TypeEditors Boolescher Editor
+Copy ProbeView Kopieren
+none ProbeView No attributes keine
+Boolean value: TypeEditors Boolescher Wert:
+32 bit size or status: TypeEditors 32-Bit-Größe oder Status:
+8 bit palette TypeEditors 8-Bit-Palette
+Fit ProbeView Size of fonts, fits to available room Passend
+Probe device OpenWindow Gerät untersuchen
+ (native) ProbeView (nativ)
+Unknown format TypeEditors Unbekanntes Format
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadezimal
+MIME type: TypeEditors MIME-Typ:
+Page setup… ProbeView Seite einrichten…
+New… FileWindow Neu…
+DiskProbe request AttributeWindow DiskProbe-Anfrage
+Could not read image TypeEditors Image means here a picture file, not a disk image. Bild konnte nicht eingelesen werden
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Blockgröße
+Save changes before closing? ProbeView Änderungen vor dem Beenden speichern?
+Type editor AttributeWindow Typ-Editor
+Native: 0x%0*Lx ProbeView Nativ: 0x%0*Lx
+Raw editor AttributeWindow Raw-Editor
+Message View TypeEditors Message-Ansicht
+DiskProbe request ProbeView DiskProbe-Anfrage
+32 bit unsigned size: TypeEditors Vorzeichenlose 32-Bit-Größe:
+Flattened bitmap TypeEditors Flat-Bitmap
+Open file… FileWindow Datei öffnen…
+Next ProbeView Nächster
+Close FileWindow Schließen
+Attribute: ProbeView Attribut:
+Remove from file AttributeWindow Von Datei entfernen
+Don't save ProbeView Verwerfen
+Previous ProbeView Vorheriger
+64 bit signed value: TypeEditors 64-Bit-Wert mit Vorzeichen:
+Icon TypeEditors Symbol
+Block: ProbeView Block:
+Examine device: OpenWindow Gerät untersuchen:
+Offset: ProbeView Offset:
+OK ProbeView OK
+Add ProbeView Hinzu
+Edit ProbeView Bearbeiten
+Native: %Ld (0x%0*Lx) ProbeView Nativ: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors Vorzeichenloser 32-Bit-Wert:
+Message TypeEditors This is the type of view Message
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. \"%s\" konnte nicht geöffnet werden:\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Basis
+Image view TypeEditors Image means here a picture file, not a disk image. Bild-Ansicht
+Cancel AttributeWindow Abbrechen
+Type editor not supported ProbeView Typ-Editor wird nicht unterstützt
+MIME type editor TypeEditors MIME-Typ-Editor
+Swapped: %Ld (0x%0*Lx) ProbeView Getauscht: %Ld (0x%0*Lx)
+Find FindWindow Suchen
+Remove AttributeWindow Entfernen
+Print… ProbeView Drucken…
+Block %Ld (0x%Lx) ProbeView Block %Ld (0x%Lx)
+Image TypeEditors This is the type of view Bild
+Could not open file \"%s\": %s\n DiskProbe Die Datei \"%s\" konnte nicht geöffnet werden: %s\n
+Select all ProbeView Alles auswählen
+Probe file… OpenWindow Datei untersuchen…
+Icon view TypeEditors Symbolansicht
+Bookmarks ProbeView Lesezeichen
+Mode: FindWindow Modus:
+15 bit TypeEditors 15 Bit
+Open device FileWindow Gerät öffnen
+Could not find search string. ProbeView Der Suchbegriff konnte nicht gefunden werden.
+16 bit unsigned value: TypeEditors Vorzeichenloser 16-Bit-Wert:
+Attribute offset: ProbeView Attribut-Offset:
+View ProbeView This is the last menubar item 'File Edit Block View' Ansicht
+Redo ProbeView Wiederholen
+File: ProbeView Datei:
+32 bit unsigned pointer: TypeEditors Vorzeichenloser 32-Bit-Zeiger:
+of ProbeView von
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Die Datei konnte nicht geschrieben werden:\n%s\n\nAlle Änderungen werden beim Beenden verloren gehen.
+32 bit TypeEditors 32 Bit
+Cancel ProbeView Abbrechen
+Swapped: 0x%0*Lx ProbeView Getauscht: 0x%0*Lx
+Grayscale TypeEditors Graustufen
+32 bit signed value: TypeEditors 32-Bit-Wert mit Vorzeichen:
+DiskProbe request DiskProbe Hex-Editor-Anfrage
+Type editor ProbeView Typ-Editor
+Contents: TypeEditors Inhalt:
diff --git a/data/catalogs/apps/diskprobe/hr.catkeys b/data/catalogs/apps/diskprobe/hr.catkeys
new file mode 100644
index 0000000000..0a42bcfef5
--- /dev/null
+++ b/data/catalogs/apps/diskprobe/hr.catkeys
@@ -0,0 +1,64 @@
+1 croatian x-vnd.Haiku-DiskProbe 3035937767
+15 bit TypeEditors 15 bit
+16 bit TypeEditors 16 bit
+32 bit TypeEditors 32 bit
+Add ProbeView Dodaj
+Attribute ProbeView Atribut
+Attribute: ProbeView Atribut:
+Attributes ProbeView Atributi
+Back ProbeView Natrag
+Bookmarks ProbeView Zabilješke
+Cancel AttributeWindow Otkaži
+Cancel OpenWindow Otkaži
+Cancel ProbeView Otkaži
+Close AttributeWindow Zatvori
+Close FileWindow Zatvori
+Close ProbeView Zatvori
+Contents: TypeEditors Sadržaj:
+Copy ProbeView Kopiraj
+Could not read image TypeEditors Image means here a picture file, not a disk image. Ne mogu čitati sliku
+Device ProbeView Uređaj
+Device: ProbeView Uređaj:
+Don't save ProbeView Nemoj spremiti
+Examine device: OpenWindow Pregledaj uređaj:
+File FileWindow Datoteka
+File ProbeView Datoteka
+File: ProbeView Datoteka:
+Find FindWindow Nađi
+Find again ProbeView Nađi ponovno
+Find… ProbeView Nađi...
+Font size ProbeView Veličina fonta
+Grayscale TypeEditors Sivo
+Icon TypeEditors Ikona
+Icon view TypeEditors Pogled ikona
+Image TypeEditors This is the type of view Slika
+Message TypeEditors This is the type of view Poruka
+Mode: FindWindow Način rada:
+New… FileWindow Nova...
+Next ProbeView Slijedeće
+Number TypeEditors This is the type of editor Broj
+Number editor TypeEditors Uređivač-broja
+Number: TypeEditors Broj:
+OK DiskProbe U redu
+OK ProbeView U redu
+Open device FileWindow Otvori uređaj
+Open file… FileWindow Otvori datoteku...
+PNG format TypeEditors PNG format
+Page setup… ProbeView Postavljanje stranice...
+Paste ProbeView Zalijepi
+Previous ProbeView Prethodno
+Print… ProbeView Ispisuj...
+Quit FileWindow Isključi
+Remove AttributeWindow Ukloni
+Remove from file AttributeWindow Ukloni iz datoteke
+Save ProbeView Spremi
+Save changes before closing? ProbeView Spremiti izmjene prije zatvaranja?
+Selection ProbeView Odabir
+Stop ProbeView Stani
+Text FindWindow Tekst
+Text TypeEditors This is the type of editor Tekst
+Unknown format TypeEditors Nepoznati format
+Unknown type TypeEditors Nepoznati tip
+View ProbeView This is the last menubar item 'File Edit Block View' Pogled
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Pisanje u datoteku nije uspjelo:\n%s\n\nSve promjene će biti izgubljene kada isključite.
+none ProbeView No attributes nijedan
diff --git a/data/catalogs/apps/diskprobe/lt.catkeys b/data/catalogs/apps/diskprobe/lt.catkeys
new file mode 100644
index 0000000000..f6bdba5c15
--- /dev/null
+++ b/data/catalogs/apps/diskprobe/lt.catkeys
@@ -0,0 +1,133 @@
+1 lithuanian x-vnd.Haiku-DiskProbe 2306672993
+File offset: ProbeView Poslinkis faile:
+%ld (native) ProbeView %ld (prigimtinis)
+64 bit unsigned value: TypeEditors 64 bitų reikšmė be ženklo:
+Find again ProbeView Ieškoti kito
+Text FindWindow Tekstas
+Find… ProbeView Ieškoti…
+Case sensitive FindWindow Paisyti raidžių registro
+Cancel OpenWindow Atsisakyti
+Close AttributeWindow Užverti
+File ProbeView Failas
+Attribute ProbeView Požymis
+Floating-point value: TypeEditors Slankiojo kablelio reikšmė:
+16 bit TypeEditors 16 bitų
+Attributes ProbeView Požymiai
+Device offset: ProbeView Poslinkis įrenginyje:
+Selection ProbeView Atranka
+DiskProbe System name Disko tyriklis
+what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. kas: '%.4s'\n\n
+File FileWindow Failas
+OK DiskProbe Gerai
+Boolean TypeEditors This is the type of editor Loginis
+Paste ProbeView Įdėti
+PNG format TypeEditors PNG formatas
+Font size ProbeView Šrifto dydis
+Attribute type: ProbeView Požymio tipas:
+Attribute AttributeWindow Požymis
+8 bit signed value: TypeEditors 8 bitų skaičius su ženklu:
+Number: TypeEditors Skaičius:
+Save ProbeView Įrašyti
+Stop ProbeView Stabdyti
+Number editor TypeEditors Skaičiaus taisymas
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šešioliktainė
+No type editor available AttributeWindow Nėra šio tipo požymių redaktoriaus
+Double precision floating-point value: TypeEditors Dvigubo tikslumo slankaus kablelio reikšmė:
+Device: ProbeView Įrenginys:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Ar tikrai norite pašalinti požymį „%s“ iš failo „%s“?\n\nŠis veiksmas negrįžtamas.
+Text TypeEditors This is the type of editor Tekstas
+8 bit unsigned value: TypeEditors 8 bitų reikšmė be ženklo:
+Block ProbeView Blokas
+Back ProbeView Grįžti atgal
+Device ProbeView Įrenginys
+Unknown type TypeEditors Nežinomas tipas
+Block 0x%Lx ProbeView Blokas 0x%Lx
+Quit FileWindow Baigti darbą
+Undo ProbeView Atšaukti
+Close ProbeView Užverti
+Number TypeEditors This is the type of editor Skaičius
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Dešimtainė
+16 bit signed value: TypeEditors 16 bitų reikšmė su ženklu:
+String editor TypeEditors Eilučių redaktorius
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. iš 0x0
+64 bit signed offset: TypeEditors 64 bitų poslinkis su ženklu:
+Boolean editor TypeEditors Loginis redaktorius
+Copy ProbeView Kopijuoti
+none ProbeView No attributes nėra
+Boolean value: TypeEditors Loginė reikšmė:
+32 bit size or status: TypeEditors 32 bitų dydis arba būsena:
+8 bit palette TypeEditors 8 bitų paletė
+Fit ProbeView Size of fonts, fits to available room Optimalus
+Probe device OpenWindow Tirti įrenginį
+ (native) ProbeView (prigimtinis)
+Unknown format TypeEditors Formatas nežinomas
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šešioliktainė
+MIME type: TypeEditors MIME tipas:
+Page setup… ProbeView Puslapio nuostatos…
+New… FileWindow Naujas langas…
+DiskProbe request AttributeWindow Disko tyriklio užklausa
+Could not read image TypeEditors Image means here a picture file, not a disk image. Nepavyko perskaityti paveikslo
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Bloko dydis
+Save changes before closing? ProbeView Ar įrašyti pakeitimus prieš užveriant?
+Type editor AttributeWindow Požymio redaktorius
+Native: 0x%0*Lx ProbeView Prigimtinė reikšmė: 0x%0*Lx
+Raw editor AttributeWindow Neapdorotų duomenų redaktorius
+Message View TypeEditors Pranešimo rodymas
+DiskProbe request ProbeView Disko tyriklio užklausa
+32 bit unsigned size: TypeEditors 32 bitų dydis be ženklo:
+Flattened bitmap TypeEditors Suplotas paveikslėlis
+Open file… FileWindow Atverti failą…
+Next ProbeView Kitas
+Close FileWindow Užverti
+Attribute: ProbeView Požymis:
+Remove from file AttributeWindow Pašalinti iš failo
+Don't save ProbeView Neįrašyti
+Previous ProbeView Ankstesnis
+64 bit signed value: TypeEditors 64 bitų reikšmė su ženklu:
+Icon TypeEditors Piktograma
+Block: ProbeView Blokas:
+Examine device: OpenWindow Tirti įrenginį:
+Offset: ProbeView Poslinkis:
+OK ProbeView Gerai
+Add ProbeView Pridėti
+Edit ProbeView Taisa
+Native: %Ld (0x%0*Lx) ProbeView Prigimtinė reikšmė: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors 32 bitų reikšmė be ženklo:
+Message TypeEditors This is the type of view Pranešimas
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Atverti „%s“ nepavyko:\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Skaičiavimo sistema
+Image view TypeEditors Image means here a picture file, not a disk image. Paveikslo peržiūra
+Cancel AttributeWindow Atsisakyti
+Type editor not supported ProbeView Šio tipo požymių redaktorius nepalaikomas
+MIME type editor TypeEditors MIME tipo redaktorius
+Swapped: %Ld (0x%0*Lx) ProbeView Sukeitus baitų eiliškumą: %Ld (0x%0*Lx)
+Find FindWindow Ieškoti
+Remove AttributeWindow Pašalinti
+Print… ProbeView Spausdinti…
+Block %Ld (0x%Lx) ProbeView %Ld blokas (0x%Lx)
+Image TypeEditors This is the type of view Paveikslas
+Could not open file \"%s\": %s\n DiskProbe Failo „%s“ atverti nepavyko: %s\n
+Select all ProbeView Pažymėti viską
+Probe file… OpenWindow Tirti failą…
+Icon view TypeEditors Piktogramos peržiūra
+Bookmarks ProbeView Žymelės
+Mode: FindWindow Veiksena:
+15 bit TypeEditors 15 bitų
+Open device FileWindow Atverti įrenginį
+Could not find search string. ProbeView Ieškotos sekos rasti nepavyko.
+16 bit unsigned value: TypeEditors 16 bitų reikšmė be ženklo:
+Attribute offset: ProbeView Poslinkis požymyje:
+View ProbeView This is the last menubar item 'File Edit Block View' Rodymas
+Redo ProbeView Grąžinti
+File: ProbeView Failas:
+32 bit unsigned pointer: TypeEditors 32 bitų rodyklė be ženklo:
+of ProbeView iš
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Failo įrašyti nepavyko:\n%s\n\nBaigus programos darbą, visi pakeitimai bus prarasti.
+32 bit TypeEditors 32 bitų
+Cancel ProbeView Atsisakyti
+Swapped: 0x%0*Lx ProbeView Sukeitus baitų eiliškumą: 0x%0*Lx
+Grayscale TypeEditors Pilkumo tonai
+32 bit signed value: TypeEditors 32 bitų reikšmė su ženklu:
+DiskProbe request DiskProbe Disko tyriklio užklausa
+Type editor ProbeView Požymio redaktorius
+Contents: TypeEditors Turinys:
diff --git a/data/catalogs/apps/diskprobe/nl.catkeys b/data/catalogs/apps/diskprobe/nl.catkeys
index a36f83d3f5..164a013d65 100644
--- a/data/catalogs/apps/diskprobe/nl.catkeys
+++ b/data/catalogs/apps/diskprobe/nl.catkeys
@@ -1,128 +1,133 @@
-1 dutch x-vnd.Haiku-DiskProbe 3357434700
-%ld (native) ProbeView %ld (native)
-(native) ProbeView (native)
-15 bit TypeEditors 15-bit
-16 bit TypeEditors 16-bit
-16 bit signed value: TypeEditors 16-bit-signed-waarde:
-16 bit unsigned value: TypeEditors 16-bit-unsigned-waarde:
-32 bit TypeEditors 32-bit
-32 bit signed value: TypeEditors 32-bit-signed-waarde
-32 bit size or status: TypeEditors 32-bit-grootte of -status:
-32 bit unsigned pointer: TypeEditors 32-bit-unsigned-pointer:
-32 bit unsigned size: TypeEditors 32-bit-unsigned-grootte
-32 bit unsigned value: TypeEditors 32-bit-unsigned-waarde
-64 bit signed offset: TypeEditors 64-bit-signed-offset:
-64 bit signed value: TypeEditors 64-bit-signed-waarde:
-64 bit unsigned value: TypeEditors 64-bit-unsigned-waarde:
-8 bit palette TypeEditors 8-bit-palet
-8 bit signed value: TypeEditors 8-bit-signed-waarde:
-8 bit unsigned value: TypeEditors 8-bit-unsigned-waarde:
-Add ProbeView Toevoegen
-Attribute AttributeWindow Eigenschap
-Attribute ProbeView Eigenschap
-Attribute offset: ProbeView Eigenschap-offset:
-Attribute type: ProbeView Eigenschap-type:
-Attribute: ProbeView Eigenschap:
-Attributes ProbeView Eigenschappen
-Back ProbeView Terug
-Block ProbeView Blokkeren
-Block %Ld (0x%Lx) ProbeView Blokkeer %Ld (0x%Lx)
-Block 0x%Lx ProbeView Block 0x%Lx
-Block: ProbeView Blokkeer:
-Bookmarks ProbeView Bladwijzers
-Boolean TypeEditors This is the type of editor Boolean
-Boolean editor TypeEditors Boolean-editor
-Boolean value: TypeEditors Boolean-waarde:
-Cancel AttributeWindow Annuleren
-Cancel OpenWindow Annuleren
-Cancel ProbeView Annuleren
-Case sensitive FindWindow Hoofdlettergevoelig
-Close AttributeWindow Sluiten
-Close FileWindow Sluiten
-Close ProbeView Sluiten
-Contents: TypeEditors Inhoud:
-Copy ProbeView Kopiëren
-Could not find search string. ProbeView Kon zoekopdracht niet vinden
-Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Kon \"%s\" niet openen:\n%s
-Could not open file \"%s\": %s\n DiskProbe Kon bestand \"%s\" niet openen: %s\n
-Could not read image TypeEditors Image means here a picture file, not a disk image. Kon afbeelding niet lezen
-Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Decimaal
-Device ProbeView Apparaat
-Device offset: ProbeView Apparaat-offset:
-Device: ProbeView Apparaat:
-DiskProbe request AttributeWindow DiskProbe-aanvraag
-DiskProbe request DiskProbe DiskProbe-aanvraag
-DiskProbe request ProbeView DiskProbe-aanvraag
-Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Weet u zeker dat u de eigenschap \"%s\" van het bestand \"%s\" wilt verwijderen?\n\nU kunt dit niet ongedaan maken.
-Don't save ProbeView Niet opslaan
-Double precision floating-point value: TypeEditors Dubbele precisie zwevendekomma-getal
-Edit ProbeView Bewerken
-Examine device: OpenWindow Onderzoek apparaat:
-File FileWindow Bestand
-File ProbeView Bestand
+1 dutch; flemish x-vnd.Haiku-DiskProbe 2306672993
File offset: ProbeView Bestand-offset:
-File: ProbeView Bestand:
-Find FindWindow Zoeken
+%ld (native) ProbeView %ld (native)
+64 bit unsigned value: TypeEditors 64-bit-unsigned-waarde:
Find again ProbeView Nogmaals zoeken
-Find… ProbeView Zoek...
-Fit ProbeView Size of fonts, fits to available room Aanpassen
-Flattened bitmap TypeEditors Afgeplatte bitmap
-Floating-point value: TypeEditors Zwevendekomma-waarde
-Font size ProbeView Tekengrootte
-Grayscale TypeEditors Grijstinten
-Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hex
-Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadecimaal
-Icon TypeEditors Icoon
-Icon view TypeEditors Icoonweergave
-Image TypeEditors This is the type of view Afbeelding
-Image view TypeEditors Image means here a picture file, not a disk image. Afbeelding-beeld
-MIME type editor TypeEditors MIME-typebewerker
-MIME type: TypeEditors MIME type:
-Message TypeEditors This is the type of view Bericht
-Message View TypeEditors Berichten-beeld
-Mode: FindWindow Modus:
-Native: %Ld (0x%0*Lx) ProbeView Native: %Ld (0x%0*Lx)
-Native: 0x%0*Lx ProbeView Native: 0x%0*Lx
-New… FileWindow Nieuw...
-Next ProbeView Volgende
-No type editor available AttributeWindow Geen type-editor beschikbaar
-Number TypeEditors This is the type of editor Getal
-Number editor TypeEditors Getal-editor
-Number: TypeEditors Getal:
-OK DiskProbe Oké
-OK ProbeView OK
-Offset: ProbeView Offset:
-Open device FileWindow Apparaat openen
-Open file… FileWindow Bestand openen...
-PNG format TypeEditors PNG-formaat
-Page setup… ProbeView Pagina-instellingen...
-Paste ProbeView Plakken
-Previous ProbeView Vorige
-Print… ProbeView Afdrukken...
-Probe device OpenWindow Apparaat afzoeken
-Probe file… OpenWindow Onderzoek bestand...
-Quit FileWindow Afsluiten
-Raw editor AttributeWindow Onbewerkt-editor
-Redo ProbeView Opnieuw uitvoeren
-Remove AttributeWindow Verwijderen
-Remove from file AttributeWindow Uit bestand verwijderen
-Save ProbeView Opslaan
-Save changes before closing? ProbeView Wijzigingen opslaan voordat u afsluit?
-Select all ProbeView Alles selecteren
-Selection ProbeView Selectie
-Stop ProbeView Stop
-String editor TypeEditors Woord-editor
-Swapped: %Ld (0x%0*Lx) ProbeView Verwisseld: %Ld (0x%0*Lx)
-Swapped: 0x%0*Lx ProbeView Verwisseld: 0x%0*Lx
Text FindWindow Tekst
-Text TypeEditors This is the type of editor Tekst
-Type editor AttributeWindow Type-editor
-Type editor ProbeView Type-editor
-Type editor not supported ProbeView Typebewerker niet ondersteund
-Undo ProbeView Ongedaan maken
-Unknown format TypeEditors Onbekend formaat
-Unknown type TypeEditors Onbekend type
-Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Schrijven naar bestand mislukt:\n%s\n\nAlle veranderingen gaan verloren als u afsluit.
-none ProbeView No attributes geen
-of ProbeView van
+Find… ProbeView Zoek...
+Case sensitive FindWindow Hoofdlettergevoelig
+Cancel OpenWindow Annuleren
+Close AttributeWindow Sluiten
+File ProbeView Bestand
+Attribute ProbeView Eigenschap
+Floating-point value: TypeEditors Zwevendekomma-waarde
+16 bit TypeEditors 16-bit
+Attributes ProbeView Eigenschappen
+Device offset: ProbeView Apparaat-offset:
+Selection ProbeView Selectie
+DiskProbe System name DiskProbe
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. wat voor: '%.4s'\n\n
+File FileWindow Bestand
+OK DiskProbe Oké
+Boolean TypeEditors This is the type of editor Boolean
+Paste ProbeView Plakken
+PNG format TypeEditors PNG-formaat
+Font size ProbeView Tekengrootte
+Attribute type: ProbeView Eigenschap-type:
+Attribute AttributeWindow Eigenschap
+8 bit signed value: TypeEditors 8-bit-signed-waarde:
+Number: TypeEditors Getal:
+Save ProbeView Opslaan
+Stop ProbeView Stop
+Number editor TypeEditors Getal-editor
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hex
+No type editor available AttributeWindow Geen type-editor beschikbaar
+Double precision floating-point value: TypeEditors Dubbele precisie zwevendekomma-getal
+Device: ProbeView Apparaat:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Weet u zeker dat u de eigenschap \"%s\" van het bestand \"%s\" wilt verwijderen?\n\nU kunt dit niet ongedaan maken.
+Text TypeEditors This is the type of editor Tekst
+8 bit unsigned value: TypeEditors 8-bit-unsigned-waarde:
+Block ProbeView Blokkeren
+Back ProbeView Terug
+Device ProbeView Apparaat
+Unknown type TypeEditors Onbekend type
+Block 0x%Lx ProbeView Block 0x%Lx
+Quit FileWindow Afsluiten
+Undo ProbeView Ongedaan maken
+Close ProbeView Sluiten
+Number TypeEditors This is the type of editor Getal
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Decimaal
+16 bit signed value: TypeEditors 16-bit-signed-waarde:
+String editor TypeEditors Woord-editor
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. van 0x0
+64 bit signed offset: TypeEditors 64-bit-signed-offset:
+Boolean editor TypeEditors Boolean-editor
+Copy ProbeView Kopiëren
+none ProbeView No attributes geen
+Boolean value: TypeEditors Boolean-waarde:
+32 bit size or status: TypeEditors 32-bit-grootte of -status:
+8 bit palette TypeEditors 8-bit-palet
+Fit ProbeView Size of fonts, fits to available room Aanpassen
+Probe device OpenWindow Apparaat afzoeken
+ (native) ProbeView (native)
+Unknown format TypeEditors Onbekend formaat
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Hexadecimaal
+MIME type: TypeEditors MIME type:
+Page setup… ProbeView Pagina-instellingen...
+New… FileWindow Nieuw...
+DiskProbe request AttributeWindow DiskProbe-aanvraag
+Could not read image TypeEditors Image means here a picture file, not a disk image. Kon afbeelding niet lezen
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Blokgrootte
+Save changes before closing? ProbeView Wijzigingen opslaan voordat u afsluit?
+Type editor AttributeWindow Type-editor
+Native: 0x%0*Lx ProbeView Native: 0x%0*Lx
+Raw editor AttributeWindow Onbewerkt-editor
+Message View TypeEditors Berichten-beeld
+DiskProbe request ProbeView DiskProbe-aanvraag
+32 bit unsigned size: TypeEditors 32-bit-unsigned-grootte
+Flattened bitmap TypeEditors Afgeplatte bitmap
+Open file… FileWindow Bestand openen...
+Next ProbeView Volgende
+Close FileWindow Sluiten
+Attribute: ProbeView Eigenschap:
+Remove from file AttributeWindow Uit bestand verwijderen
+Don't save ProbeView Niet opslaan
+Previous ProbeView Vorige
+64 bit signed value: TypeEditors 64-bit-signed-waarde:
+Icon TypeEditors Icoon
+Block: ProbeView Blokkeer:
+Examine device: OpenWindow Onderzoek apparaat:
+Offset: ProbeView Offset:
+OK ProbeView OK
+Add ProbeView Toevoegen
+Edit ProbeView Bewerken
+Native: %Ld (0x%0*Lx) ProbeView Native: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors 32-bit-unsigned-waarde
+Message TypeEditors This is the type of view Bericht
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Kon \"%s\" niet openen:\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Basis
+Image view TypeEditors Image means here a picture file, not a disk image. Afbeelding-beeld
+Cancel AttributeWindow Annuleren
+Type editor not supported ProbeView Typebewerker niet ondersteund
+MIME type editor TypeEditors MIME-typebewerker
+Swapped: %Ld (0x%0*Lx) ProbeView Verwisseld: %Ld (0x%0*Lx)
+Find FindWindow Zoeken
+Remove AttributeWindow Verwijderen
+Print… ProbeView Afdrukken...
+Block %Ld (0x%Lx) ProbeView Blokkeer %Ld (0x%Lx)
+Image TypeEditors This is the type of view Afbeelding
+Could not open file \"%s\": %s\n DiskProbe Kon bestand \"%s\" niet openen: %s\n
+Select all ProbeView Alles selecteren
+Probe file… OpenWindow Onderzoek bestand...
+Icon view TypeEditors Icoonweergave
+Bookmarks ProbeView Bladwijzers
+Mode: FindWindow Modus:
+15 bit TypeEditors 15-bit
+Open device FileWindow Apparaat openen
+Could not find search string. ProbeView Kon zoekopdracht niet vinden
+16 bit unsigned value: TypeEditors 16-bit-unsigned-waarde:
+Attribute offset: ProbeView Eigenschap-offset:
+View ProbeView This is the last menubar item 'File Edit Block View' Beeld
+Redo ProbeView Opnieuw uitvoeren
+File: ProbeView Bestand:
+32 bit unsigned pointer: TypeEditors 32-bit-unsigned-pointer:
+of ProbeView van
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Schrijven naar bestand mislukt:\n%s\n\nAlle veranderingen gaan verloren als u afsluit.
+32 bit TypeEditors 32-bit
+Cancel ProbeView Annuleren
+Swapped: 0x%0*Lx ProbeView Verwisseld: 0x%0*Lx
+Grayscale TypeEditors Grijstinten
+32 bit signed value: TypeEditors 32-bit-signed-waarde
+DiskProbe request DiskProbe DiskProbe-aanvraag
+Type editor ProbeView Type-editor
+Contents: TypeEditors Inhoud:
diff --git a/data/catalogs/apps/diskprobe/ru.catkeys b/data/catalogs/apps/diskprobe/ru.catkeys
index fcbf4c06ac..287bb88b24 100644
--- a/data/catalogs/apps/diskprobe/ru.catkeys
+++ b/data/catalogs/apps/diskprobe/ru.catkeys
@@ -1,133 +1,132 @@
-1 russian x-vnd.Haiku-DiskProbe 3441574721
-%ld (native) ProbeView %ld (родной)
-(native) ProbeView (нативный)
-15 bit TypeEditors 15 бит
-16 bit TypeEditors 16 бит
-16 bit signed value: TypeEditors 16-ти битное знаковое значение:
-16 bit unsigned value: TypeEditors 16-ти битное беззнаковое значение:
-32 bit TypeEditors 32 бита
-32 bit signed value: TypeEditors 32-х битное знаковое значение:
-32 bit size or status: TypeEditors 32-х битный размер или статус:
-32 bit unsigned pointer: TypeEditors 32-х битный беззнаковый указатель:
-32 bit unsigned size: TypeEditors 32-х битное беззнаковый размер:
-32 bit unsigned value: TypeEditors 32-х битное беззнаковое значение:
-64 bit signed offset: TypeEditors 64-х битный знаковый сдвиг:
-64 bit signed value: TypeEditors 64-х битное знаковое значение:
-64 bit unsigned value: TypeEditors 64-х битное беззнаковое значение:
-8 bit palette TypeEditors 8 битная палитра
-8 bit signed value: TypeEditors 8-ми битное знаковое значение:
-8 bit unsigned value: TypeEditors 8-ми битное беззнаковое значение:
-Add ProbeView Добавить
-Attribute AttributeWindow Атрибут
-Attribute ProbeView Атрибут
-Attribute offset: ProbeView Смещение атрибута:
-Attribute type: ProbeView Тип атрибута:
-Attribute: ProbeView Атрибут:
-Attributes ProbeView Атрибуты
-Back ProbeView Назад
-Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Система счисления
-Block ProbeView Блок
-Block %Ld (0x%Lx) ProbeView Блок %Ld (0x%Lx)
-Block 0x%Lx ProbeView Блок 0x%Lx
-Block: ProbeView Блок:
-BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Размер блока
-Bookmarks ProbeView Закладки
-Boolean TypeEditors This is the type of editor Boolean
-Boolean editor TypeEditors Булев редактор
-Boolean value: TypeEditors Булевое значение:
-Cancel AttributeWindow Отмена
-Cancel OpenWindow Отмена
-Cancel ProbeView Отмена
-Case sensitive FindWindow Учитывать регистр
-Close AttributeWindow Закрыть
-Close FileWindow Закрыть
-Close ProbeView Закрыть
-Contents: TypeEditors Содержимое:
-Copy ProbeView Копировать
-Could not find search string. ProbeView Невозможно найти искомую строку.
-Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Невозможно открыть \"%s\":\n%s
-Could not open file \"%s\": %s\n DiskProbe Невозможно открыть файл \"%s\": %s\n
-Could not read image TypeEditors Image means here a picture file, not a disk image. Невозможно прочитать образ
-Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Десятичная
-Device ProbeView Устройство
-Device offset: ProbeView Смещение устройства:
-Device: ProbeView Устройство:
-DiskProbe System name Редактор диска
-DiskProbe request AttributeWindow Запрос DiskProbe
-DiskProbe request DiskProbe Запрос DiskProbe
-DiskProbe request ProbeView Запрос DiskProbe
-Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Вы действительно хотите удалить атрибут \"%s\" из файла \"%s\"?\n\nЭту операцию будет невозможно отменить.
-Don't save ProbeView Не сохранять
-Double precision floating-point value: TypeEditors Значение плавающей запятой двойной точности:
-Edit ProbeView Изменить
-Examine device: OpenWindow Исследовать устройство:
-File FileWindow Файл
-File ProbeView Файл
+1 russian x-vnd.Haiku-DiskProbe 2706202187
File offset: ProbeView Смещение файла:
-File: ProbeView Файл:
-Find FindWindow Найти
+%ld (native) ProbeView %ld (родной)
+64 bit unsigned value: TypeEditors 64-х битное беззнаковое значение:
Find again ProbeView Найти далее
-Find… ProbeView Найти…
-Fit ProbeView Size of fonts, fits to available room Подгонять
-Flattened bitmap TypeEditors Плоский образ
-Floating-point value: TypeEditors Значение с плавающей точкой:
-Font size ProbeView Размер шрифта
-Grayscale TypeEditors Оттенки серого
-Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричная
-Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричный
-Icon TypeEditors Значок
-Icon view TypeEditors Значок
-Image TypeEditors This is the type of view Изображение
-Image view TypeEditors Image means here a picture file, not a disk image. Просмотр изображения
-MIME type editor TypeEditors Редактор MIME типа
-MIME type: TypeEditors MIME тип:
-Message TypeEditors This is the type of view Сообщение
-Message View TypeEditors Вид сообщения
-Mode: FindWindow Режим:
-Native: %Ld (0x%0*Lx) ProbeView Родной: %Ld (0x%0*Lx)
-Native: 0x%0*Lx ProbeView Нативное: 0x%0*Lx
-New… FileWindow Новый…
-Next ProbeView Вперед
-No type editor available AttributeWindow Нет доступного редактора для данного типа
-Number TypeEditors This is the type of editor Число
-Number editor TypeEditors Редактор чисел
-Number: TypeEditors Число:
-OK DiskProbe ОК
-OK ProbeView ОК
-Offset: ProbeView Смещение:
-Open device FileWindow Открыть устройство
-Open file… FileWindow Открыть файл…
-PNG format TypeEditors PNG формат
-Page setup… ProbeView Настройка печати…
-Paste ProbeView Вставить
-Previous ProbeView Предыдущий
-Print… ProbeView Печать…
-Probe device OpenWindow Исследовать устройство
-Probe file… OpenWindow Исследовать файл…
-Quit FileWindow Выход
-Raw editor AttributeWindow Raw редактор
-Redo ProbeView Повторить
-Remove AttributeWindow Удалить
-Remove from file AttributeWindow Удалить из файла
-Save ProbeView Сохранить
-Save changes before closing? ProbeView Сохранить изменения перед закрытием?
-Select all ProbeView Выделить всё
-Selection ProbeView Выделение
-Stop ProbeView Стоп
-String editor TypeEditors Редактор строк
-Swapped: %Ld (0x%0*Lx) ProbeView Перевернутый: %Ld (0x%0*Lx)
-Swapped: 0x%0*Lx ProbeView Перевернутое: 0x%0*Lx
Text FindWindow Текст
-Text TypeEditors This is the type of editor Текст
-Type editor AttributeWindow Редактор типа
-Type editor ProbeView Редактор типа
-Type editor not supported ProbeView Редактор типа не поддерживается
-Undo ProbeView Вернуть
-Unknown format TypeEditors Неизвестный формат
-Unknown type TypeEditors Неизвестный тип
-View ProbeView This is the last menubar item 'File Edit Block View' Вид
-Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Не удалось записать в файл:\n%s\n\nВсе изменения будут потеряны при выходе.
-none ProbeView No attributes нет
-of ProbeView из
-of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. из 0x0
+Find… ProbeView Найти…
+Case sensitive FindWindow Учитывать регистр
+Cancel OpenWindow Отмена
+Close AttributeWindow Закрыть
+File ProbeView Файл
+Attribute ProbeView Атрибут
+Floating-point value: TypeEditors Значение с плавающей точкой:
+16 bit TypeEditors 16 бит
+Attributes ProbeView Атрибуты
+Device offset: ProbeView Смещение устройства:
+Selection ProbeView Выделение
+DiskProbe System name Редактор диска
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. what: '%.4s'\n\n
+File FileWindow Файл
+OK DiskProbe ОК
+Boolean TypeEditors This is the type of editor Boolean
+Paste ProbeView Вставить
+PNG format TypeEditors PNG формат
+Font size ProbeView Размер шрифта
+Attribute type: ProbeView Тип атрибута:
+Attribute AttributeWindow Атрибут
+8 bit signed value: TypeEditors 8-ми битное знаковое значение:
+Number: TypeEditors Число:
+Save ProbeView Сохранить
+Stop ProbeView Стоп
+Number editor TypeEditors Редактор чисел
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричная
+No type editor available AttributeWindow Нет доступного редактора для данного типа
+Double precision floating-point value: TypeEditors Значение плавающей запятой двойной точности:
+Device: ProbeView Устройство:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Вы действительно хотите удалить атрибут \"%s\" из файла \"%s\"?\n\nЭту операцию будет невозможно отменить.
+Text TypeEditors This is the type of editor Текст
+8 bit unsigned value: TypeEditors 8-ми битное беззнаковое значение:
+Block ProbeView Блок
+Back ProbeView Назад
+Device ProbeView Устройство
+Unknown type TypeEditors Неизвестный тип
+Block 0x%Lx ProbeView Блок 0x%Lx
+Quit FileWindow Выход
+Undo ProbeView Вернуть
+Close ProbeView Закрыть
+Number TypeEditors This is the type of editor Число
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Десятичная
+16 bit signed value: TypeEditors 16-ти битное знаковое значение:
+String editor TypeEditors Редактор строк
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. из 0x0
+64 bit signed offset: TypeEditors 64-х битный знаковый сдвиг:
+Boolean editor TypeEditors Булев редактор
+Copy ProbeView Копировать
+none ProbeView No attributes нет
+Boolean value: TypeEditors Булевое значение:
+32 bit size or status: TypeEditors 32-х битный размер или статус:
+8 bit palette TypeEditors 8 битная палитра
+Fit ProbeView Size of fonts, fits to available room Подгонять
+Probe device OpenWindow Исследовать устройство
+Unknown format TypeEditors Неизвестный формат
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Шестнадцатеричный
+MIME type: TypeEditors MIME тип:
+Page setup… ProbeView Настройка печати…
+New… FileWindow Новый…
+DiskProbe request AttributeWindow Запрос DiskProbe
+Could not read image TypeEditors Image means here a picture file, not a disk image. Невозможно прочитать образ
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Размер блока
+Save changes before closing? ProbeView Сохранить изменения перед закрытием?
+Type editor AttributeWindow Редактор типа
+Native: 0x%0*Lx ProbeView Нативное: 0x%0*Lx
+Raw editor AttributeWindow Raw редактор
+Message View TypeEditors Вид сообщения
+DiskProbe request ProbeView Запрос DiskProbe
+32 bit unsigned size: TypeEditors 32-х битное беззнаковый размер:
+Flattened bitmap TypeEditors Плоский образ
+Open file… FileWindow Открыть файл…
+Next ProbeView Вперед
+Close FileWindow Закрыть
+Attribute: ProbeView Атрибут:
+Remove from file AttributeWindow Удалить из файла
+Don't save ProbeView Не сохранять
+Previous ProbeView Предыдущий
+64 bit signed value: TypeEditors 64-х битное знаковое значение:
+Icon TypeEditors Значок
+Block: ProbeView Блок:
+Examine device: OpenWindow Исследовать устройство:
+Offset: ProbeView Смещение:
+OK ProbeView ОК
+Add ProbeView Добавить
+Edit ProbeView Изменить
+Native: %Ld (0x%0*Lx) ProbeView Родной: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors 32-х битное беззнаковое значение:
+Message TypeEditors This is the type of view Сообщение
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Невозможно открыть \"%s\":\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Система счисления
+Image view TypeEditors Image means here a picture file, not a disk image. Просмотр изображения
+Cancel AttributeWindow Отмена
+Type editor not supported ProbeView Редактор типа не поддерживается
+MIME type editor TypeEditors Редактор MIME типа
+Swapped: %Ld (0x%0*Lx) ProbeView Перевернутый: %Ld (0x%0*Lx)
+Find FindWindow Найти
+Remove AttributeWindow Удалить
+Print… ProbeView Печать…
+Block %Ld (0x%Lx) ProbeView Блок %Ld (0x%Lx)
+Image TypeEditors This is the type of view Изображение
+Could not open file \"%s\": %s\n DiskProbe Невозможно открыть файл \"%s\": %s\n
+Select all ProbeView Выделить всё
+Probe file… OpenWindow Исследовать файл…
+Icon view TypeEditors Значок
+Bookmarks ProbeView Закладки
+Mode: FindWindow Режим:
+15 bit TypeEditors 15 бит
+Open device FileWindow Открыть устройство
+Could not find search string. ProbeView Невозможно найти искомую строку.
+16 bit unsigned value: TypeEditors 16-ти битное беззнаковое значение:
+Attribute offset: ProbeView Смещение атрибута:
+View ProbeView This is the last menubar item 'File Edit Block View' Вид
+Redo ProbeView Повторить
+File: ProbeView Файл:
+32 bit unsigned pointer: TypeEditors 32-х битный беззнаковый указатель:
+of ProbeView из
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Не удалось записать в файл:\n%s\n\nВсе изменения будут потеряны при выходе.
+32 bit TypeEditors 32 бита
+Cancel ProbeView Отмена
+Swapped: 0x%0*Lx ProbeView Перевернутое: 0x%0*Lx
+Grayscale TypeEditors Оттенки серого
+32 bit signed value: TypeEditors 32-х битное знаковое значение:
+DiskProbe request DiskProbe Запрос DiskProbe
+Type editor ProbeView Редактор типа
+Contents: TypeEditors Содержимое:
diff --git a/data/catalogs/apps/diskprobe/sk.catkeys b/data/catalogs/apps/diskprobe/sk.catkeys
index ee7ed12389..8f414bff2f 100644
--- a/data/catalogs/apps/diskprobe/sk.catkeys
+++ b/data/catalogs/apps/diskprobe/sk.catkeys
@@ -1,133 +1,133 @@
-1 slovak x-vnd.Haiku-DiskProbe 3441574721
+1 slovak x-vnd.Haiku-DiskProbe 2306672993
+File offset: ProbeView Ofset súboru:
%ld (native) ProbeView %ld (natívne)
-(native) ProbeView (natívne)
-15 bit TypeEditors 15-bitový
-16 bit TypeEditors 16-bitová
-16 bit signed value: TypeEditors 16-bitová hodnota so znamienkom:
-16 bit unsigned value: TypeEditors 16-bitová hodnota bez znamienka:
-32 bit TypeEditors 32-bitový
-32 bit signed value: TypeEditors 32-bitová hodnota so znamienkom:
-32 bit size or status: TypeEditors 32-bitová veľkosť alebo stav:
-32 bit unsigned pointer: TypeEditors 32-bitový ukazovateľ bez znamienka:
-32 bit unsigned size: TypeEditors 32-bitová veľkosť bez znamienka:
-32 bit unsigned value: TypeEditors 32-bitová hodnota bez znamienka:
-64 bit signed offset: TypeEditors 64-bitová hodnota so znamienkom:
-64 bit signed value: TypeEditors 64-bitová hodnota so znamienkom::
64 bit unsigned value: TypeEditors 64-bitová hodnota bez znamienka:
-8 bit palette TypeEditors 8-bitivá paleta
-8 bit signed value: TypeEditors 8-bitová hodnota bez znamienka:
-8 bit unsigned value: TypeEditors 8-bitová hodnota bez znamienka
-Add ProbeView Pridať
-Attribute AttributeWindow Atribút
-Attribute ProbeView Atribút
-Attribute offset: ProbeView Ofset atribútu:
-Attribute type: ProbeView Typ atribútu:
-Attribute: ProbeView Atribút:
-Attributes ProbeView Atribúty
-Back ProbeView Späť
-Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Sústava
-Block ProbeView Blok
-Block %Ld (0x%Lx) ProbeView Blok %Ld (0x%Lx)
-Block 0x%Lx ProbeView Blok 0x%Lx
-Block: ProbeView Blok:
-BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' VeľkosťBloku
-Bookmarks ProbeView Záložky
-Boolean TypeEditors This is the type of editor Pravdivostná hodnota
-Boolean editor TypeEditors Editor pravdivostných hodnôt
-Boolean value: TypeEditors Pravdivostná hodnota:
-Cancel AttributeWindow Zrušiť
-Cancel OpenWindow Zrušiť
-Cancel ProbeView Zrušiť
-Case sensitive FindWindow Rozlišovať veľkosť písmen
-Close AttributeWindow Zatvoriť
-Close FileWindow Zatvoriť
-Close ProbeView Zatvoriť
-Contents: TypeEditors Obsah:
-Copy ProbeView Kopírovať
-Could not find search string. ProbeView Nepodarilo sa nájsť vyhľadávací reťazec
-Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Nepodarilo sa otvoriť „%s“:\n%s
-Could not open file \"%s\": %s\n DiskProbe Nepodarilo sa otvoriť súbor „%s“: %s\n
-Could not read image TypeEditors Image means here a picture file, not a disk image. Nepodarilo sa načítať obrázok
-Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Desiatkové číslo
-Device ProbeView Zariadenie
-Device offset: ProbeView Ofset zariadenie:
-Device: ProbeView Zariadenie:
-DiskProbe System name Disková sonda
-DiskProbe request AttributeWindow Požiadavka Diskovej sondy
-DiskProbe request DiskProbe Požiadavka Diskovej sondy
-DiskProbe request ProbeView Požiadavka Diskovej sondy
-Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Skutočne chcete odstrániť atribút „%s“ zo súboru „%s“?\n\nTúto operáciu nemožno vrátiť.
-Don't save ProbeView Neukladať
-Double precision floating-point value: TypeEditors Hodnota s pohyblivou desatinnou čiarkou s dvojitou presnosťou:
-Edit ProbeView Upraviť
-Examine device: OpenWindow Preskúmať zariadenie:
-File FileWindow Súbor
-File ProbeView Súbor
-File offset: ProbeView Ofset súboru:
-File: ProbeView Súbor:
-Find FindWindow Nájsť
Find again ProbeView Nájsť znova
-Find… ProbeView Nájsť...
-Fit ProbeView Size of fonts, fits to available room Prispôsobiť veľkosť
-Flattened bitmap TypeEditors Sploštená bitová mapa
-Floating-point value: TypeEditors Hodnota s pohyblivou desatinnou čiarkou:
-Font size ProbeView Veľkosť písma
-Grayscale TypeEditors Odtiene šedej
-Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šestnástkové číslo
-Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šestnástková
-Icon TypeEditors Ikona
-Icon view TypeEditors Zobrazenie ikon
-Image TypeEditors This is the type of view Obrázok
-Image view TypeEditors Image means here a picture file, not a disk image. Zobrazenie obrázka
-MIME type editor TypeEditors Editor typov MIME
-MIME type: TypeEditors Typ MIME:
-Message TypeEditors This is the type of view Správa
-Message View TypeEditors Zobrazenie správy
-Mode: FindWindow Režim:
-Native: %Ld (0x%0*Lx) ProbeView Natívne: %Ld (0x%0*Lx)
-Native: 0x%0*Lx ProbeView Natívne: 0x%0*Lx
-New… FileWindow Nový...
-Next ProbeView Ďalší
-No type editor available AttributeWindow Editor typov nie je dostupný
-Number TypeEditors This is the type of editor Číslo
-Number editor TypeEditors Editor čísiel
-Number: TypeEditors Číslo:
-OK DiskProbe OK
-OK ProbeView OK
-Offset: ProbeView Ofset:
-Open device FileWindow Otvoriť zariadenie
-Open file… FileWindow Otvoriť súbor...
-PNG format TypeEditors Formát PNG
-Page setup… ProbeView Nastavenie stránky...
-Paste ProbeView Vložiť
-Previous ProbeView Späť
-Print… ProbeView Tlačiť...
-Probe device OpenWindow Sondovať zariadenie
-Probe file… OpenWindow Sondovať súbor...
-Quit FileWindow Ukončiť
-Raw editor AttributeWindow Editor nespracovaných hodnôt
-Redo ProbeView Opakovať
-Remove AttributeWindow Odstrániť
-Remove from file AttributeWindow Odstrániť zo súboru
-Save ProbeView Uložiť
-Save changes before closing? ProbeView Uložiť zmeny pred ukončením?
-Select all ProbeView Vybrať všetky
-Selection ProbeView Výber
-Stop ProbeView Zastaviť
-String editor TypeEditors Editor reťazcov
-Swapped: %Ld (0x%0*Lx) ProbeView Vymenené: %Ld (0x%0*Lx)
-Swapped: 0x%0*Lx ProbeView Vymenené: 0x%0*Lx
Text FindWindow Text
-Text TypeEditors This is the type of editor Text
-Type editor AttributeWindow Editor typov
-Type editor ProbeView Editor typov
-Type editor not supported ProbeView Editor typov nie je podporovaný
-Undo ProbeView Vrátiť
-Unknown format TypeEditors Neznámy formát
-Unknown type TypeEditors Neznámy typ
-View ProbeView This is the last menubar item 'File Edit Block View' Zobraziť
-Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Zápis do súboru zlyhal:\n%s\n\nVšetky zmeny sa po ukončení stratia.
-none ProbeView No attributes žiadne
-of ProbeView z
-of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. z 0x0
+Find… ProbeView Nájsť…
+Case sensitive FindWindow Rozlišovať veľkosť písmen
+Cancel OpenWindow Zrušiť
+Close AttributeWindow Zatvoriť
+File ProbeView Súbor
+Attribute ProbeView Atribút
+Floating-point value: TypeEditors Hodnota s pohyblivou desatinnou čiarkou:
+16 bit TypeEditors 16-bitová
+Attributes ProbeView Atribúty
+Device offset: ProbeView Ofset zariadenia:
+Selection ProbeView Výber
+DiskProbe System name Disková sonda
what: '%.4s'\n\n TypeEditors 'What' is a message specifier that defines the type of the message. čo: „%.4s“\n\n
+File FileWindow Súbor
+OK DiskProbe OK
+Boolean TypeEditors This is the type of editor Pravdivostná hodnota
+Paste ProbeView Vložiť
+PNG format TypeEditors Formát PNG
+Font size ProbeView Veľkosť písma
+Attribute type: ProbeView Typ atribútu:
+Attribute AttributeWindow Atribút
+8 bit signed value: TypeEditors 8-bitová hodnota bez znamienka:
+Number: TypeEditors Číslo:
+Save ProbeView Uložiť
+Stop ProbeView Zastaviť
+Number editor TypeEditors Editor čísiel
+Hex ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šestnástkové číslo
+No type editor available AttributeWindow Editor typov nie je dostupný
+Double precision floating-point value: TypeEditors Hodnota s pohyblivou desatinnou čiarkou s dvojitou presnosťou:
+Device: ProbeView Zariadenie:
+Do you really want to remove the attribute \"%s\" from the file \"%s\"?\n\nYou cannot undo this action. AttributeWindow Skutočne chcete odstrániť atribút „%s“ zo súboru „%s“?\n\nTúto operáciu nemožno vrátiť.
+Text TypeEditors This is the type of editor Text
+8 bit unsigned value: TypeEditors 8-bitová hodnota bez znamienka:
+Block ProbeView Blok
+Back ProbeView Späť
+Device ProbeView Zariadenie
+Unknown type TypeEditors Neznámy typ
+Block 0x%Lx ProbeView Blok 0x%Lx
+Quit FileWindow Ukončiť
+Undo ProbeView Vrátiť
+Close ProbeView Zatvoriť
+Number TypeEditors This is the type of editor Číslo
+Decimal ProbeView A menu item, as short as possible, noun is recommended if it is shorter than adjective. Desiatkové číslo
+16 bit signed value: TypeEditors 16-bitová hodnota so znamienkom:
+String editor TypeEditors Editor reťazcov
+of 0x0 ProbeView This is a part of 'Block 0xXXXX of 0x0026' message. In languages without 'of' structure it can be replaced simply with '/'. z 0x0
+64 bit signed offset: TypeEditors 64-bitová hodnota so znamienkom:
+Boolean editor TypeEditors Editor pravdivostných hodnôt
+Copy ProbeView Kopírovať
+none ProbeView No attributes žiadne
+Boolean value: TypeEditors Pravdivostná hodnota:
+32 bit size or status: TypeEditors 32-bitová veľkosť alebo stav:
+8 bit palette TypeEditors 8-bitivá paleta
+Fit ProbeView Size of fonts, fits to available room Prispôsobiť veľkosť
+Probe device OpenWindow Sondovať zariadenie
+ (native) ProbeView (natívne)
+Unknown format TypeEditors Neznámy formát
+Hexadecimal FindWindow A menu item, as short as possible, noun is recommended if it is shorter than adjective. Šestnástková
+MIME type: TypeEditors Typ MIME:
+Page setup… ProbeView Nastavenie stránky…
+New… FileWindow Nový…
+DiskProbe request AttributeWindow Požiadavka Diskovej sondy
+Could not read image TypeEditors Image means here a picture file, not a disk image. Nepodarilo sa načítať obrázok
+BlockSize ProbeView A menu item, a shortened form from 'block size'. This is in the same menu windowthan 'Base' and 'Font size' Veľkosť bloku
+Save changes before closing? ProbeView Uložiť zmeny pred ukončením?
+Type editor AttributeWindow Editor typov
+Native: 0x%0*Lx ProbeView Natívne: 0x%0*Lx
+Raw editor AttributeWindow Editor nespracovaných hodnôt
+Message View TypeEditors Zobrazenie správy
+DiskProbe request ProbeView Požiadavka Diskovej sondy
+32 bit unsigned size: TypeEditors 32-bitová veľkosť bez znamienka:
+Flattened bitmap TypeEditors Sploštená bitová mapa
+Open file… FileWindow Otvoriť súbor…
+Next ProbeView Ďalší
+Close FileWindow Zatvoriť
+Attribute: ProbeView Atribút:
+Remove from file AttributeWindow Odstrániť zo súboru
+Don't save ProbeView Neukladať
+Previous ProbeView Späť
+64 bit signed value: TypeEditors 64-bitová hodnota so znamienkom:
+Icon TypeEditors Ikona
+Block: ProbeView Blok:
+Examine device: OpenWindow Preskúmať zariadenie:
+Offset: ProbeView Ofset:
+OK ProbeView OK
+Add ProbeView Pridať
+Edit ProbeView Upraviť
+Native: %Ld (0x%0*Lx) ProbeView Natívne: %Ld (0x%0*Lx)
+32 bit unsigned value: TypeEditors 32-bitová hodnota bez znamienka:
+Message TypeEditors This is the type of view Správa
+Could not open \"%s\":\n%s DiskProbe Opening of entry reference buffer for a DiskProbe request Alert message. The name of entry reference and error message is shown. Nepodarilo sa otvoriť „%s“:\n%s
+Base ProbeView A menu item, the number that is basis for a system of calculation. The base 10 system is a decimal system. This is in the same menu window than 'Font size' and 'BlockSize' Sústava
+Image view TypeEditors Image means here a picture file, not a disk image. Zobrazenie obrázka
+Cancel AttributeWindow Zrušiť
+Type editor not supported ProbeView Editor typov nie je podporovaný
+MIME type editor TypeEditors Editor typov MIME
+Swapped: %Ld (0x%0*Lx) ProbeView Vymenené: %Ld (0x%0*Lx)
+Find FindWindow Nájsť
+Remove AttributeWindow Odstrániť
+Print… ProbeView Tlačiť…
+Block %Ld (0x%Lx) ProbeView Blok %Ld (0x%Lx)
+Image TypeEditors This is the type of view Obrázok
+Could not open file \"%s\": %s\n DiskProbe Nepodarilo sa otvoriť súbor „%s“: %s\n
+Select all ProbeView Vybrať všetky
+Probe file… OpenWindow Sondovať súbor…
+Icon view TypeEditors Zobrazenie ikon
+Bookmarks ProbeView Záložky
+Mode: FindWindow Režim:
+15 bit TypeEditors 15-bitový
+Open device FileWindow Otvoriť zariadenie
+Could not find search string. ProbeView Nepodarilo sa nájsť vyhľadávací reťazec.
+16 bit unsigned value: TypeEditors 16-bitová hodnota bez znamienka:
+Attribute offset: ProbeView Ofset atribútu:
+View ProbeView This is the last menubar item 'File Edit Block View' Zobraziť
+Redo ProbeView Opakovať
+File: ProbeView Súbor:
+32 bit unsigned pointer: TypeEditors 32-bitový ukazovateľ bez znamienka:
+of ProbeView z
+Writing to the file failed:\n%s\n\nAll changes will be lost when you quit. ProbeView Zápis do súboru zlyhal:\n%s\n\nVšetky zmeny sa po ukončení stratia.
+32 bit TypeEditors 32-bitový
+Cancel ProbeView Zrušiť
+Swapped: 0x%0*Lx ProbeView Vymenené: 0x%0*Lx
+Grayscale TypeEditors Odtiene šedej
+32 bit signed value: TypeEditors 32-bitová hodnota so znamienkom:
+DiskProbe request DiskProbe Požiadavka Diskovej sondy
+Type editor ProbeView Editor typov
+Contents: TypeEditors Obsah:
diff --git a/data/catalogs/apps/diskusage/be.catkeys b/data/catalogs/apps/diskusage/be.catkeys
index 7759b13be9..1fed7ea657 100644
--- a/data/catalogs/apps/diskusage/be.catkeys
+++ b/data/catalogs/apps/diskusage/be.catkeys
@@ -1,24 +1,24 @@
-1 belarusian x-vnd.Haiku-DiskUsage 2324691237
-%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
-%d file Status View %d файл
-%d files Status View %d файлаў
-9999.99 GB Status View 9999.99 ГБ
-Created Info Window Створаны
-DiskUsage System name Статыстыка дыскаў
-Free on %refName% Scanner Вольна на %refName%
-Get Info Pie View Узяць інфу
+1 belarusian x-vnd.Haiku-DiskUsage 3399777733
+Scanning %refName% Scanner Сканаванне %refName%
+Size Info Window Памер
+Rescan Pie View Перасканаваць
+Rescan Volume View Перасканаваць
+Outdated view Pie View Від састарэў
Kind Info Window Тып
+file unavailable Pie View файл недаступны
+no supporting apps Pie View няма падтрымліваючых праграм
+%d file Status View %d файл
+Path Info Window Пуць
+Scan Status View Скан
+9999.99 GB Status View 9999.99 ГБ
+file unavailable Status View файл недаступны
+Get Info Pie View Узяць інфу
+DiskUsage System name Статыстыка дыскаў
+ in %d files Info Window ў %d файлах
+%d files Status View %d файлаў
+Created Info Window Створаны
Modified Info Window Мадыфікаваны
Open Pie View Адкрыць
Open With Pie View Адкрыць з дапамогай
-Outdated view Pie View Від састарэў
-Path Info Window Пуць
-Rescan Pie View Перасканаваць
-Rescan Volume View Перасканаваць
-Scan Status View Скан
-Scanning %refName% Scanner Сканаванне %refName%
-Size Info Window Памер
-file unavailable Pie View файл недаступны
-file unavailable Status View файл недаступны
-in %d files Info Window ў %d файлаў
-no supporting apps Pie View няма падтрымліваючых праграм
+%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
+Free on %refName% Scanner Вольна на %refName%
diff --git a/data/catalogs/apps/diskusage/de.catkeys b/data/catalogs/apps/diskusage/de.catkeys
index 603fa00fdf..e2ba1615bc 100644
--- a/data/catalogs/apps/diskusage/de.catkeys
+++ b/data/catalogs/apps/diskusage/de.catkeys
@@ -1,24 +1,24 @@
-1 german x-vnd.Haiku-DiskUsage 2324691237
-%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
-%d file Status View %d Datei
-%d files Status View %d Dateien
-9999.99 GB Status View 9999,99 GiB
-Created Info Window Erstellt
-DiskUsage System name Datenträgerbelegung
-Free on %refName% Scanner Frei auf %refName%
-Get Info Pie View Datei-Info
+1 german x-vnd.Haiku-DiskUsage 3399777733
+Scanning %refName% Scanner Analysiere %refName%
+Size Info Window Größe
+Rescan Pie View Erneut analysieren
+Rescan Volume View Erneut analysieren
+Outdated view Pie View Veralteter View
Kind Info Window Art
+file unavailable Pie View Datei nicht verfügbar
+no supporting apps Pie View keine geeigneten Anwendungen
+%d file Status View %d Datei
+Path Info Window Pfad
+Scan Status View Analyse
+9999.99 GB Status View 9999,99 GiB
+file unavailable Status View Datei nicht verfügbar
+Get Info Pie View Datei-Info
+DiskUsage System name Datenträgerbelegung
+ in %d files Info Window in %d Dateien
+%d files Status View %d Dateien
+Created Info Window Erstellt
Modified Info Window Geändert
Open Pie View Öffnen
Open With Pie View Öffnen mit
-Outdated view Pie View Veralteter View
-Path Info Window Pfad
-Rescan Pie View Erneut analysieren
-Rescan Volume View Erneut analysieren
-Scan Status View Analyse
-Scanning %refName% Scanner Analysiere %refName%
-Size Info Window Größe
-file unavailable Pie View Datei nicht verfügbar
-file unavailable Status View Datei nicht verfügbar
-in %d files Info Window in %d Dateien
-no supporting apps Pie View keine geeigneten Anwendungen
+%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
+Free on %refName% Scanner Frei auf %refName%
diff --git a/data/catalogs/apps/diskusage/hr.catkeys b/data/catalogs/apps/diskusage/hr.catkeys
new file mode 100644
index 0000000000..c3c43238c6
--- /dev/null
+++ b/data/catalogs/apps/diskusage/hr.catkeys
@@ -0,0 +1,16 @@
+1 croatian x-vnd.Haiku-DiskUsage 1160396271
+%d file Status View %d datoteka
+%d files Status View %d datoteke
+9999.99 GB Status View 9999.99 GB
+Created Info Window Napravljeno
+DiskUsage System name Uporaba diska
+Get Info Pie View Informacije
+Modified Info Window Izmjenjeno
+Open Pie View Otvori
+Open With Pie View Otvori pomoću
+Outdated view Pie View Zastarjeli pregled
+Path Info Window Putanja
+Size Info Window Veličina
+file unavailable Pie View datoteka nedostupna
+file unavailable Status View datoteka nedostupna
+in %d files Info Window u %d datotekama
diff --git a/data/catalogs/apps/diskusage/lt.catkeys b/data/catalogs/apps/diskusage/lt.catkeys
new file mode 100644
index 0000000000..0d5583b6f3
--- /dev/null
+++ b/data/catalogs/apps/diskusage/lt.catkeys
@@ -0,0 +1,24 @@
+1 lithuanian x-vnd.Haiku-DiskUsage 3399777733
+Scanning %refName% Scanner Žvalgomas skirsnis „%refName%“
+Size Info Window Dydis
+Rescan Pie View Peržvalgyti
+Rescan Volume View Peržvalgyti
+Outdated view Pie View Grafikas pasenęs
+Kind Info Window Tipas
+file unavailable Pie View failas nepasiekiamas
+no supporting apps Pie View palaikančių programų nėra
+%d file Status View %d failas
+Path Info Window Kelias
+Scan Status View Žvalgyti
+9999.99 GB Status View 9999,99 GB
+file unavailable Status View failas nepasiekiamas
+Get Info Pie View Savybės
+DiskUsage System name Disko naudojimas
+ in %d files Info Window %d failuose (-ų)
+%d files Status View %d failai (-ų)
+Created Info Window Sukurtas
+Modified Info Window Modifikuotas
+Open Pie View Atverti
+Open With Pie View Atverti naudojant
+%a, %d %b %Y, %r Info Window %a, %Y %b %d, %T
+Free on %refName% Scanner Laisva vieta skirsnyje „%refName%“
diff --git a/data/catalogs/apps/diskusage/nl.catkeys b/data/catalogs/apps/diskusage/nl.catkeys
new file mode 100644
index 0000000000..c2a8c481b7
--- /dev/null
+++ b/data/catalogs/apps/diskusage/nl.catkeys
@@ -0,0 +1,24 @@
+1 dutch; flemish x-vnd.Haiku-DiskUsage 3399777733
+Scanning %refName% Scanner %refName% scannen
+Size Info Window Grootte
+Rescan Pie View Opnieuw scannen
+Rescan Volume View Opnieuw scannen
+Outdated view Pie View Verouderde weergave
+Kind Info Window Soort
+file unavailable Pie View bestand niet beschikbaar
+no supporting apps Pie View geen ondersteunende programma's
+%d file Status View %d bestand
+Path Info Window Pad
+Scan Status View Scannen
+9999.99 GB Status View 9999.99 GB
+file unavailable Status View bestand niet beschikbaar
+Get Info Pie View Informatie krijgen
+DiskUsage System name DiskUsage
+ in %d files Info Window in %d bestanden
+%d files Status View %d bestanden
+Created Info Window Gemaakt
+Modified Info Window Aangepast
+Open Pie View Openen
+Open With Pie View Openen Met
+%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
+Free on %refName% Scanner Vrij op %refName%
diff --git a/data/catalogs/apps/diskusage/ru.catkeys b/data/catalogs/apps/diskusage/ru.catkeys
index 84d9f4175f..d05128ac54 100644
--- a/data/catalogs/apps/diskusage/ru.catkeys
+++ b/data/catalogs/apps/diskusage/ru.catkeys
@@ -1,24 +1,23 @@
-1 russian x-vnd.Haiku-DiskUsage 2324691237
-%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
-%d file Status View %d файл
-%d files Status View %d файлов
-9999.99 GB Status View 9999.99 Гбайт
-Created Info Window Создан
-DiskUsage System name Использование диска
-Free on %refName% Scanner Свободно на разделе %refName%
-Get Info Pie View Информация
+1 russian x-vnd.Haiku-DiskUsage 3634416251
+Scanning %refName% Scanner Сканируется раздел %refName%
+Size Info Window Размер
+Rescan Pie View Пересканировать
+Rescan Volume View Пересканировать
+Outdated view Pie View График устарел
Kind Info Window Тип
+file unavailable Pie View файл недоступен
+no supporting apps Pie View нет поддерживающих программ
+%d file Status View %d файл
+Path Info Window Путь
+Scan Status View Сканировать
+9999.99 GB Status View 9999.99 Гбайт
+file unavailable Status View файл недоступен
+Get Info Pie View Информация
+DiskUsage System name Использование диска
+%d files Status View %d файлов
+Created Info Window Создан
Modified Info Window Изменен
Open Pie View Открыть
Open With Pie View Открыть в
-Outdated view Pie View График устарел
-Path Info Window Путь
-Rescan Pie View Пересканировать
-Rescan Volume View Пересканировать
-Scan Status View Сканировать
-Scanning %refName% Scanner Сканируется раздел %refName%
-Size Info Window Размер
-file unavailable Pie View файл недоступен
-file unavailable Status View файл недоступен
-in %d files Info Window в %d файлах
-no supporting apps Pie View нет поддерживающих программ
+%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
+Free on %refName% Scanner Свободно на разделе %refName%
diff --git a/data/catalogs/apps/diskusage/sk.catkeys b/data/catalogs/apps/diskusage/sk.catkeys
index d5260836e9..722ae8587c 100644
--- a/data/catalogs/apps/diskusage/sk.catkeys
+++ b/data/catalogs/apps/diskusage/sk.catkeys
@@ -1,24 +1,24 @@
-1 slovak x-vnd.Haiku-DiskUsage 2324691237
-%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
-%d file Status View %d súbor
-%d files Status View %d súborov
-9999.99 GB Status View 9999.99 GB
-Created Info Window Vytvorené
-DiskUsage System name Využitie disku
-Free on %refName% Scanner Voľné na %refName%
-Get Info Pie View Získať informácie
+1 slovak x-vnd.Haiku-DiskUsage 3399777733
+Scanning %refName% Scanner Prehľadáva sa %refName%
+Size Info Window Veľkosť
+Rescan Pie View Znovu preskúmať
+Rescan Volume View Znovu preskúmať
+Outdated view Pie View Neaktuálne zobrazenie
Kind Info Window Druh
+file unavailable Pie View súbor nedostupný
+no supporting apps Pie View žiadne podporujúce aplikácie
+%d file Status View %d súbor
+Path Info Window Cesta
+Scan Status View Preskúmať
+9999.99 GB Status View 9999.99 GB
+file unavailable Status View súbor nedostupný
+Get Info Pie View Získať informácie
+DiskUsage System name Využitie disku
+ in %d files Info Window v %d súboroch
+%d files Status View %d súborov
+Created Info Window Vytvorené
Modified Info Window Zmenené
Open Pie View Otvoriť
Open With Pie View Otvoriť pomocou
-Outdated view Pie View Neaktuálne zobrazenie
-Path Info Window Cesta
-Rescan Pie View Preskúmať znova
-Rescan Volume View Preskúmať znova
-Scan Status View Preskúmať
-Scanning %refName% Scanner Prehľadáva sa %refName%
-Size Info Window Veľkosť
-file unavailable Pie View súbor nedostupný
-file unavailable Status View súbor nedostupný
-in %d files Info Window v %d súboroch
-no supporting apps Pie View žiadne podporujúce aplikácie
+%a, %d %b %Y, %r Info Window %a, %d %b %Y, %r
+Free on %refName% Scanner Voľné na %refName%
diff --git a/data/catalogs/apps/drivesetup/be.catkeys b/data/catalogs/apps/drivesetup/be.catkeys
index e03e07c11f..0d8b8faa3f 100644
--- a/data/catalogs/apps/drivesetup/be.catkeys
+++ b/data/catalogs/apps/drivesetup/be.catkeys
@@ -1,77 +1,77 @@
1 belarusian x-vnd.Haiku-DriveSetup 1209826930
-%ld MiB Support %ld MiB
- DiskView <пуста>
- PartitionList <пуста>
-Active PartitionList Актыўны
-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 initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Сапраўды ініцыялізаваць падзел \"%s\"? У вас спытаюць яшчэ, перад тым як запісаць змены на дыск.
-Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Сапраўды ініцыялізаваць падзел? У вас спытаюць яшчэ, перад тым як запісаць змены на дыск.
-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Усе данные на абраным падзеле будуць беззваротна згублены!
-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Усе данные на абраным падзеле будуць беззваротна згублены!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the 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 disk 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Усе данные на абраным падзеле будуць беззваротна згублены!
-Cancel CreateParamsPanel Адмяніць
-Cancel InitParamsPanel Адмяніць
-Cancel MainWindow Адмяніць
-Cannot delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
-Continue MainWindow Працягнуць
-Could not aquire partitioning information. MainWindow Не ўдалося атрымаць інфармацыю аб падзелах.
-Could not delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
-Could not mount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
-Could not unmount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
-Create CreateParamsPanel Стварыць
-Create… MainWindow Стварыць...
-Creation of the partition has failed. MainWindow Не удалося стварыць падзел.
+DriveSetup System name Рэдыктар дыскаў
Delete MainWindow Выдаліць
-Delete partition MainWindow Выдаліць падзел
-Device DiskView Прылада
+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 Перасканіраваць
+OK MainWindow ОК
+Could not aquire partitioning information. MainWindow Не ўдалося атрымаць інфармацыю аб падзелах.
+There's no space on the partition where a child partition could be created. MainWindow Няма мечца на падзеле для стварэння даччынага падзела.
+%ld MiB Support %ld MiB
+ PartitionList <пуста>
+Unable to find the selected partition by ID. MainWindow Не ўдалося знайсці абраны падзел па ID.
+Select a partition from the list below. DiskView Абярыце падзел са спісу нішэй.
+No disk devices have been recognized. DiskView Не знойдзена ніякіх дыскавых прыладаў.
+The selected disk is read-only. MainWindow Абраны дыск толькі для чытання.
+Partition name: CreateParamsPanel Імя падзелу:
+Initialize InitParamsPanel Ініцыялізаваць
+Could not mount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
+The partition %s is already unmounted. MainWindow Падзел %s ужо змантаваны.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Не ўдалося ініцыялізіраваць падзел. Змены не былі запісаны на дыск.
+Failed to delete the partition. No changes have been written to disk. MainWindow Не ўдалося выдаліць падзел. Змены не былі запісаны на дыск.
+Partition type: CreateParamsPanel Тып падзелу:
+Could not delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
+Initialize MainWindow Ініцыялізіраваць
+Error: MainWindow in any error alert Памылка:
+Partition %ld DiskView Падзел %ld
+The partition %s has been successfully initialized.\n MainWindow Падзел %s паспяхова ініцыялізаваны.\n
+ DiskView <пуста>
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Не ўдалося ініцыялізіраваць падзел %s. (На дыск нічога не запісана.)
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
+Mounted at PartitionList Змантавана ў
+Failed to initialize the partition %s!\n MainWindow Не ўдалося ініцыялізіраваць падзел %s!\n
+There was an error acquiring the partition row. MainWindow Адбылася памылка пры атрыманні раду падзелаў.
+You need to select a partition entry from the list. MainWindow Вам патрэбна абраць падзел са спісу.
+Format (not implemented) MainWindow Фарматавать (неажыццявіма)
+The currently selected partition does not have a parent partition. MainWindow Абраны падзел не мае бацькоўскага падзелу.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце запісаць змены на дыск?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
+Offset: %ld MB Support Адступ: %ld MB
+Write changes MainWindow Запісаць змены
+There was an error preparing the disk for modifications. MainWindow Адбылася памылка пры падрыхтоўцы дыску да мадыфікацый.
+The partition %s is already mounted. MainWindow Падзел %s ужо змантаваны.
+Are you sure you want to 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Усе данные на абраным падзеле будуць беззваротна згублены!
+Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Сапрўды жадаеце выдаліць абраны падзел?\n\nУсе данные на абраным падзеле будуць беззваротна згублены!
+Create… MainWindow Стварыць...
+Disk system \"%s\"\" not found! MainWindow Дыскавая сістэма \"%s\"\" не знойдзена!
+Could not unmount partition %s. MainWindow Не ўдалося змантаваць падзел %s.
+Mount MainWindow Змантаваць
+Create CreateParamsPanel Стварыць
Device PartitionList Прылада
Disk MainWindow Дыск
-Disk system \"%s\"\" not found! MainWindow Дыскавая сістэма \"%s\"\" не знойдзена!
-DriveSetup System name Рэдыктар дыскаў
-Eject MainWindow Выцягнуць
-End: %ld MB Support Канец %ld MB
-Error: MainWindow in any error alert Памылка:
-Failed to delete the partition. No changes have been written to disk. MainWindow Не ўдалося выдаліць падзел. Змены не былі запісаны на дыск.
-Failed to initialize the partition %s!\n MainWindow Не ўдалося ініцыялізіраваць падзел %s!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Не ўдалося ініцыялізіраваць падзел. Змены не былі запісаны на дыск.
-File system PartitionList Файлавая сістэма
-Format (not implemented) MainWindow Фарматавать (неажыццявіма)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Не ўдалося ініцыялізіраваць падзел %s. (На дыск нічога не запісана.)
-Initialize InitParamsPanel Ініцыялізаваць
-Initialize MainWindow Ініцыялізіраваць
-Mount MainWindow Змантаваць
-Mount all MainWindow Зманатаваць усё
-Mounted at PartitionList Змантавана ў
-No disk devices have been recognized. DiskView Не знойдзена ніякіх дыскавых прыладаў.
-OK MainWindow ОК
-Offset: %ld MB Support Адступ: %ld MB
-Parameters PartitionList Параметры
-Partition MainWindow Падзел
-Partition %ld DiskView Падзел %ld
-Partition name: CreateParamsPanel Імя падзелу:
-Partition size CreateParamsPanel Памер падзелу
-Partition type: CreateParamsPanel Тып падзелу:
-Rescan MainWindow Перасканіраваць
-Select a partition from the list below. DiskView Абярыце падзел са спісу нішэй.
-Size PartitionList Памер
-Surface test (not implemented) MainWindow Тэст паверхні (не ажыццявіма)
-The currently selected partition does not have a parent partition. MainWindow Абраны падзел не мае бацькоўскага падзелу.
-The currently selected partition is not empty. MainWindow Абраны зараз падзел не пусты.
-The partition %s has been successfully initialized.\n MainWindow Падзел %s паспяхова ініцыялізаваны.\n
-The partition %s is already mounted. MainWindow Падзел %s ужо змантаваны.
-The partition %s is already unmounted. MainWindow Падзел %s ужо змантаваны.
-The partition %s is currently mounted. MainWindow Падзел %s зараз змантаваны.
-The selected disk is read-only. MainWindow Абраны дыск толькі для чытання.
-The selected partition does not contain a partitioning system. MainWindow Абраны падзел не мае сістымы дзялення.
-There was an error acquiring the partition row. MainWindow Адбылася памылка пры атрыманні раду падзелаў.
-There was an error preparing the disk for modifications. MainWindow Адбылася памылка пры падрыхтоўцы дыску да мадыфікацый.
-There's no space on the partition where a child partition could be created. MainWindow Няма мечца на падзеле для стварэння даччынага падзела.
-Unable to find the selected partition by ID. MainWindow Не ўдалося знайсці абраны падзел па ID.
-Unmount MainWindow Размантаваць
-Validation of the given creation parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
-Validation of the given initialization parameters failed. MainWindow Не удалася праверка дадзеных параметраў ініцыялізацыі падзелу.
+Device DiskView Прылада
+Active PartitionList Актыўны
Volume name PartitionList Імя тому
-Write changes MainWindow Запісаць змены
-You need to select a partition entry from the list. MainWindow Вам патрэбна абраць падзел са спісу.
+Continue MainWindow Працягнуць
+Cannot delete the selected partition. MainWindow Немагчыма выдаліць абраны падзел.
+Mount all MainWindow Зманатаваць усё
+Cancel MainWindow Адмяніць
+Delete partition MainWindow Выдаліць падзел
+End: %ld MB Support Канец %ld MB
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Сапраўды ініцыялізаваць падзел \"%s\"? У вас спытаюць яшчэ, перад тым як запісаць змены на дыск.
+Eject MainWindow Выцягнуць
+Partition MainWindow Падзел
+File system PartitionList Файлавая сістэма
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Сапраўды ініцыялізаваць падзел? У вас спытаюць яшчэ, перад тым як запісаць змены на дыск.
+Validation of the given creation parameters failed. MainWindow Не удалася праверка дадзеных параметраў стварэння падзелу.
+Size PartitionList Памер
+Validation of the given initialization parameters failed. MainWindow Не удалася праверка дадзеных параметраў ініцыялізацыі падзелу.
+The selected partition does not contain a partitioning system. MainWindow Абраны падзел не мае сістымы дзялення.
+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Усе данные на абраным падзеле будуць беззваротна згублены!
+The partition %s is currently mounted. MainWindow Падзел %s зараз змантаваны.
+Partition size CreateParamsPanel Памер падзелу
+Surface test (not implemented) MainWindow Тэст паверхні (не ажыццявіма)
+Cancel InitParamsPanel Адмяніць
+Cancel CreateParamsPanel Адмяніць
+Parameters PartitionList Параметры
+Creation of the partition has failed. MainWindow Не удалося стварыць падзел.
+The currently selected partition is not empty. MainWindow Абраны зараз падзел не пусты.
+Unmount MainWindow Размантаваць
diff --git a/data/catalogs/apps/drivesetup/de.catkeys b/data/catalogs/apps/drivesetup/de.catkeys
index 8f2ec5b304..5a8f932fc9 100644
--- a/data/catalogs/apps/drivesetup/de.catkeys
+++ b/data/catalogs/apps/drivesetup/de.catkeys
@@ -1,77 +1,77 @@
1 german x-vnd.Haiku-DriveSetup 1209826930
-%ld MiB Support %ld MiB
- DiskView
- PartitionList
-Active PartitionList Aktiv
-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 Sollen die gewählte Partition wirklich gelöscht werden?\n\nAlle dort vorhandenen Daten gehen dabei unwiderruflich verloren!
-Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Soll die Partition \"%s\" wirklich initialisiert werden?\nDie Änderungen werden erst auf den Datenträger geschrieben, wenn sie nochmals bestätigt werden.
-Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Soll die Partition wirklich initialisiert werden?\nDie Änderungen werden erst auf den Datenträger geschrieben, wenn sie nochmals bestätigt werden.
-Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf dem Medium \"%s\" gehen dabei unwiderruflich verloren!
-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 Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf der Partition \"%s\" gehen dabei unwiderruflich verloren!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf der Partition gehen dabei unwiderruflich verloren!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf dem gewählten Datenträger gehen dabei unwiderruflich verloren!
-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 Soll die Änderungen jetzt auf den Datenträger geschrieben werden?\n\nAlle Daten auf der gewählten Partition gehen dabei unwiderruflich verloren!
-Cancel CreateParamsPanel Abbrechen
-Cancel InitParamsPanel Abbrechen
-Cancel MainWindow Abbrechen
-Cannot delete the selected partition. MainWindow Gewählte Partition konnte nicht gelöscht werden.
-Continue MainWindow Weiter
-Could not aquire partitioning information. MainWindow Partitionierungsinformationen konnten nicht ermittelt werden.
-Could not delete the selected partition. MainWindow Die gewählte Partition konnte nicht gelöscht werden.
-Could not mount partition %s. MainWindow Die Partition \"%s\" konnte nicht eingehangen werden.
-Could not unmount partition %s. MainWindow Partition \"%s\" konnte nicht ausgehangen werden.
-Create CreateParamsPanel Anlegen
-Create… MainWindow Anlegen…
-Creation of the partition has failed. MainWindow Anlegen der Parition schlug fehl.
+DriveSetup System name Datenträgerverwaltung
Delete MainWindow Löschen
-Delete partition MainWindow Partition löschen
-Device DiskView Gerät
+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 Soll die Änderungen jetzt auf den Datenträger geschrieben werden?\n\nAlle Daten auf der gewählten Partition gehen dabei unwiderruflich verloren!
+Rescan MainWindow Aktualisieren
+OK MainWindow OK
+Could not aquire partitioning information. MainWindow Partitionierungsinformationen konnten nicht ermittelt werden.
+There's no space on the partition where a child partition could be created. MainWindow Es gibt keinen Platz auf der Partition, in der eine Tochterpartition angelegt werden könnte.
+%ld MiB Support %ld MiB
+ PartitionList
+Unable to find the selected partition by ID. MainWindow Die ausgewählte Partition konnte anhand ihrer ID nicht gefunden werden.
+Select a partition from the list below. DiskView Bitte eine Partition aus der unten stehenden Liste wählen.
+No disk devices have been recognized. DiskView Es wurden keine Datenträger erkannt.
+The selected disk is read-only. MainWindow Vom ausgewählten Datenträger ist schreibgeschützt.
+Partition name: CreateParamsPanel Partitionsname:
+Initialize InitParamsPanel Initialisieren
+Could not mount partition %s. MainWindow Die Partition \"%s\" konnte nicht eingehangen werden.
+The partition %s is already unmounted. MainWindow Die Partition \"%s\" ist bereits ausgehangen.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Die Initialisierung der Partition ist fehlgeschlagen. Der Datenträger blieb unverändert.
+Failed to delete the partition. No changes have been written to disk. MainWindow Das Löschen der Partition ist fehlgeschlagen. Der Datenträger blieb unverändert.
+Partition type: CreateParamsPanel Partitionstyp:
+Could not delete the selected partition. MainWindow Die gewählte Partition konnte nicht gelöscht werden.
+Initialize MainWindow Initialisieren
+Error: MainWindow in any error alert Fehler:
+Partition %ld DiskView Partition %ld
+The partition %s has been successfully initialized.\n MainWindow Die Partition %s wurde erfolgreich initialisiert.\n
+ DiskView
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Initialisierung der Partition \"%s\" fehlgeschlagen. Der Datenträger blieb unverändert.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf der Partition gehen dabei unwiderruflich verloren!
+Mounted at PartitionList Eingehangen als
+Failed to initialize the partition %s!\n MainWindow Initialisierung der Partition \"%s\" fehlgeschlagen!\n
+There was an error acquiring the partition row. MainWindow Es ist ein interner Fehler aufgetreten.
+You need to select a partition entry from the list. MainWindow Bitte einen Partitionseintrag aus der Liste wählen.
+Format (not implemented) MainWindow Formatieren (nicht implementiert)
+The currently selected partition does not have a parent partition. MainWindow Die ausgewählte Partition hat keine übergeordnete Partition.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf dem gewählten Datenträger gehen dabei unwiderruflich verloren!
+Offset: %ld MB Support Versatz: %ld MiB
+Write changes MainWindow Änderungen schreiben
+There was an error preparing the disk for modifications. MainWindow Beim Vorbereiten der Änderungen trat ein interner Fehler auf.
+The partition %s is already mounted. MainWindow Die Partition \"%s\" ist bereits eingehangen.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf dem Medium \"%s\" gehen dabei unwiderruflich verloren!
+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 Sollen die gewählte Partition wirklich gelöscht werden?\n\nAlle dort vorhandenen Daten gehen dabei unwiderruflich verloren!
+Create… MainWindow Anlegen…
+Disk system \"%s\"\" not found! MainWindow Medienschema \"%s\"\" nicht gefunden!
+Could not unmount partition %s. MainWindow Partition \"%s\" konnte nicht ausgehangen werden.
+Mount MainWindow Einhängen
+Create CreateParamsPanel Anlegen
Device PartitionList Gerät
Disk MainWindow Datenträger
-Disk system \"%s\"\" not found! MainWindow Medienschema \"%s\"\" nicht gefunden!
-DriveSetup System name Datenträgerverwaltung
-Eject MainWindow Auswerfen
-End: %ld MB Support Ende: %ld MiB
-Error: MainWindow in any error alert Fehler:
-Failed to delete the partition. No changes have been written to disk. MainWindow Das Löschen der Partition ist fehlgeschlagen. Der Datenträger blieb unverändert.
-Failed to initialize the partition %s!\n MainWindow Initialisierung der Partition \"%s\" fehlgeschlagen!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Die Initialisierung der Partition ist fehlgeschlagen. Der Datenträger blieb unverändert.
-File system PartitionList Dateisystem
-Format (not implemented) MainWindow Formatieren (nicht implementiert)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Initialisierung der Partition \"%s\" fehlgeschlagen. Der Datenträger blieb unverändert.
-Initialize InitParamsPanel Initialisieren
-Initialize MainWindow Initialisieren
-Mount MainWindow Einhängen
-Mount all MainWindow Alle einhängen
-Mounted at PartitionList Eingehangen als
-No disk devices have been recognized. DiskView Es wurden keine Datenträger erkannt.
-OK MainWindow OK
-Offset: %ld MB Support Versatz: %ld MiB
-Parameters PartitionList Parameter
-Partition MainWindow Partition
-Partition %ld DiskView Partition %ld
-Partition name: CreateParamsPanel Partitionsname:
-Partition size CreateParamsPanel Partitionsgröße:
-Partition type: CreateParamsPanel Partitionstyp:
-Rescan MainWindow Aktualisieren
-Select a partition from the list below. DiskView Bitte eine Partition aus der unten stehenden Liste wählen.
-Size PartitionList Größe
-Surface test (not implemented) MainWindow Oberflächentest (nicht implementiert)
-The currently selected partition does not have a parent partition. MainWindow Die ausgewählte Partition hat keine übergeordnete Partition.
-The currently selected partition is not empty. MainWindow Die gewählte Partition ist nicht leer.
-The partition %s has been successfully initialized.\n MainWindow Die Partition %s wurde erfolgreich initialisiert.\n
-The partition %s is already mounted. MainWindow Die Partition \"%s\" ist bereits eingehangen.
-The partition %s is already unmounted. MainWindow Die Partition \"%s\" ist bereits ausgehangen.
-The partition %s is currently mounted. MainWindow Die Partition \"%s\" ist momentan eingehangen.
-The selected disk is read-only. MainWindow Vom ausgewählten Datenträger ist schreibgeschützt.
-The selected partition does not contain a partitioning system. MainWindow Die ausgewählte Partition enthält kein Partitionierungssystem.
-There was an error acquiring the partition row. MainWindow Es ist ein interner Fehler aufgetreten.
-There was an error preparing the disk for modifications. MainWindow Beim Vorbereiten der Änderungen trat ein interner Fehler auf.
-There's no space on the partition where a child partition could be created. MainWindow Es gibt keinen Platz auf der Partition, in der eine Tochterpartition angelegt werden könnte.
-Unable to find the selected partition by ID. MainWindow Die ausgewählte Partition konnte anhand ihrer ID nicht gefunden werden.
-Unmount MainWindow Aushängen
-Validation of the given creation parameters failed. MainWindow Die Überprüfung der zum Anlegen angegebenen Parameter ist fehlgeschlagen.
-Validation of the given initialization parameters failed. MainWindow Die Überprüfung der zum Initialisieren angegebenen Parameter ist fehlgeschlagen.
+Device DiskView Gerät
+Active PartitionList Aktiv
Volume name PartitionList Datenträgername
-Write changes MainWindow Änderungen schreiben
-You need to select a partition entry from the list. MainWindow Bitte einen Partitionseintrag aus der Liste wählen.
+Continue MainWindow Weiter
+Cannot delete the selected partition. MainWindow Gewählte Partition konnte nicht gelöscht werden.
+Mount all MainWindow Alle einhängen
+Cancel MainWindow Abbrechen
+Delete partition MainWindow Partition löschen
+End: %ld MB Support Ende: %ld MiB
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Soll die Partition \"%s\" wirklich initialisiert werden?\nDie Änderungen werden erst auf den Datenträger geschrieben, wenn sie nochmals bestätigt werden.
+Eject MainWindow Auswerfen
+Partition MainWindow Partition
+File system PartitionList Dateisystem
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Soll die Partition wirklich initialisiert werden?\nDie Änderungen werden erst auf den Datenträger geschrieben, wenn sie nochmals bestätigt werden.
+Validation of the given creation parameters failed. MainWindow Die Überprüfung der zum Anlegen angegebenen Parameter ist fehlgeschlagen.
+Size PartitionList Größe
+Validation of the given initialization parameters failed. MainWindow Die Überprüfung der zum Initialisieren angegebenen Parameter ist fehlgeschlagen.
+The selected partition does not contain a partitioning system. MainWindow Die ausgewählte Partition enthält kein Partitionierungssystem.
+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 Sollen die Änderungen wirklich auf den Datenträger geschrieben werden?\n\nAlle Daten auf der Partition \"%s\" gehen dabei unwiderruflich verloren!
+The partition %s is currently mounted. MainWindow Die Partition \"%s\" ist momentan eingehangen.
+Partition size CreateParamsPanel Partitionsgröße:
+Surface test (not implemented) MainWindow Oberflächentest (nicht implementiert)
+Cancel InitParamsPanel Abbrechen
+Cancel CreateParamsPanel Abbrechen
+Parameters PartitionList Parameter
+Creation of the partition has failed. MainWindow Anlegen der Parition schlug fehl.
+The currently selected partition is not empty. MainWindow Die gewählte Partition ist nicht leer.
+Unmount MainWindow Aushängen
diff --git a/data/catalogs/apps/drivesetup/hr.catkeys b/data/catalogs/apps/drivesetup/hr.catkeys
new file mode 100644
index 0000000000..0f65f561ab
--- /dev/null
+++ b/data/catalogs/apps/drivesetup/hr.catkeys
@@ -0,0 +1,63 @@
+1 croatian x-vnd.Haiku-DriveSetup 3242584583
+%ld MiB Support %ld MiB
+ DiskView
+ PartitionList
+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 Jeste li sigurni da želite obrisati odabranu particiju?\n\nSvi podaci na particiji biti će nepovratno izgubljeni ako to učinite!
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Jeste li sigurni da želite inicijalizirati particiju \"%s\"? Biti ćete ponovno upitani prije nego što promjene budu zapisane na disk.
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Jeste li sigurni da želite inicijalizirati particiju? Biti ćete ponovno upitani prije nego što promjene budu zapisane na disk.
+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 Jeste li sigurni da želite sada zapisati promjene na disk?\n\nSvi podaci na disku %s biti će nepovratno izgubljeni ako to učinite!
+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 Jeste li sigurni da želite sada zapisati promjene na disk?\n\nSvi podaci na particiji %s biti će nepovratno izgubljeni ako to učinite!
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow jeste li sigurni da želite sada zapisati promjene na disk?\n\nSvi podaci biti će nepovratno izgubljeni ako to učinite!
+Cancel CreateParamsPanel Otkaži
+Cancel InitParamsPanel Otkaži
+Cancel MainWindow Otkaži
+Cannot delete the selected partition. MainWindow ne mogu obrisati odabranu particiju.
+Continue MainWindow Nastavi
+Could not aquire partitioning information. MainWindow Nisam mogao dobiti informacije o particioniranju.
+Could not delete the selected partition. MainWindow Nisam mogao obrisati odabranu particiju.
+Could not mount partition %s. MainWindow ne mogu montirati particiju %s.
+Could not unmount partition %s. MainWindow Ne mogu odmontirati particiju %s.
+Create CreateParamsPanel Napravi
+Create… MainWindow Napravi...
+Creation of the partition has failed. MainWindow Stvaranje particije nije uspjelo.
+Delete MainWindow Izbriši
+Delete partition MainWindow Izbriši particiju
+Device DiskView Uređaj
+Device PartitionList Uređaj
+Disk MainWindow Disk
+Disk system \"%s\"\" not found! MainWindow Sustav diska \"%s\"\" nije nađen!
+Eject MainWindow Izbaci
+End: %ld MB Support Kraj: %ld MB
+Error: MainWindow in any error alert Greška:
+Failed to delete the partition. No changes have been written to disk. MainWindow Neuspjelo brisanje particije.Promjene neće biti zapisane na disk.
+Failed to initialize the partition %s!\n MainWindow Neuspjela inicijalizacija particije %s!\n
+Failed to initialize the partition. No changes have been written to disk. MainWindow Neuspjelo inicijaliziranje.Promjene neće biti zapisane na disk.
+File system PartitionList Datotečni sustav
+Format (not implemented) MainWindow Format (nije primjenjeno)
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Neuspjela inicijalizacija particije %s.(Ništa nije zapisano na disk.)
+Initialize InitParamsPanel Inicijaliziraj
+Initialize MainWindow Inicijaliziraj
+Mount MainWindow Montiraj
+Mount all MainWindow Montiraj sve
+Mounted at PartitionList Montirano na
+OK MainWindow U redu
+Parameters PartitionList Parametri
+Partition MainWindow Particija
+Partition %ld DiskView Particija %ld
+Partition name: CreateParamsPanel Ime particije:
+Partition size CreateParamsPanel Veličina particije
+Partition type: CreateParamsPanel Vrsta particije:
+Select a partition from the list below. DiskView Odaberite particiju sa donje liste.
+Size PartitionList Veličina
+The currently selected partition is not empty. MainWindow Trenutno odabrana particija nije prazna.
+The partition %s has been successfully initialized.\n MainWindow Particija %s je uspješno inicijalizirana.\n
+The partition %s is already mounted. MainWindow Particija %s je već montirana.
+The partition %s is already unmounted. MainWindow Particija %s je već odmontirana.
+The partition %s is currently mounted. MainWindow Particija %s je trenutno montirana.
+The selected disk is read-only. MainWindow Odabrani disk je samo za čitanje.
+There was an error preparing the disk for modifications. MainWindow Došlo je do greške pri pripremanju diska za promjene.
+Unable to find the selected partition by ID. MainWindow Nije moguće naći odabranu particiju pomoću ID-a.
+Unmount MainWindow Odmontiraj
+Volume name PartitionList Ime particije
+Write changes MainWindow Zapiši promjene
+You need to select a partition entry from the list. MainWindow Morate odabrati unos particije sa liste.
diff --git a/data/catalogs/apps/drivesetup/lt.catkeys b/data/catalogs/apps/drivesetup/lt.catkeys
index e873f71928..b552aacd9d 100644
--- a/data/catalogs/apps/drivesetup/lt.catkeys
+++ b/data/catalogs/apps/drivesetup/lt.catkeys
@@ -1,72 +1,77 @@
-1 lithuanian x-vnd.Haiku-DriveSetup 201850780
-%ld MiB Support %ld MiB
- DiskView
- PartitionList
-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 Tikrai norite pašalinti pasirinktą skirsnį?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skirsnyje, bus negrįžtamai prarasti!
-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 Tikrai norite pakeitimus įrašyti tiesiai į laikmeną?\n\nJei tęsite toliau – visi duomenys, esantys skirsnyje %s, bus negrįžtamai prarasti!
-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 Tikrai dabar norite pakeitimus įrašyti tiesiai į laikmeną?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skirsnyje, bus negrįžtamai prarasti!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Tikrai dabar norite pakeitimus įrašyti tiesiai į laikmeną?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skirsnyje, bus negrįžtamai prarasti!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Tikrai dabar norite pakeitimus įrašyti tiesiai į laikmeną?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skirsnyje, bus negrįžtamai prarasti!
-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 Tikrai dabar norite pakeitimus įrašyti tiesiai į laikmeną?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skirsnyje, bus negrįžtamai prarasti!
-Cancel CreateParamsPanel Atsisakyti
-Cancel InitParamsPanel Atsisakyti
-Cancel MainWindow Atsisakyti
-Cannot delete the selected partition. MainWindow Pasirinktas skirsnis yra nepašalinamas.
-Continue MainWindow Tęsti
-Could not aquire partitioning information. MainWindow Duomenų apie skirsnius nerasta.
-Could not delete the selected partition. MainWindow Pasirinkto skirsnio pašalinti negalima.
-Could not mount partition %s. MainWindow Neprijungiamas skirsnis %s.
-Could not unmount partition %s. MainWindow Skirsnis %s neatjungiamas.
-Create CreateParamsPanel Kurti
-Create… MainWindow Kurti…
-Creation of the partition has failed. MainWindow Nepavyko sukurti skirsnio.
+1 lithuanian x-vnd.Haiku-DriveSetup 1209826930
+DriveSetup System name Diskų ženklintuvas
Delete MainWindow Šalinti
-Delete partition MainWindow Šalinti skirsnį
-Device DiskView Įrenginys
-Device PartitionList Įrenginys
-Disk MainWindow Laikmena
-Disk system \"%s\"\" not found! MainWindow Laikmenų „%s““ nerasta!
-Eject MainWindow Išimti
-End: %ld MB Support Baiga: %ld MiB
-Error: MainWindow in any error alert Klaida:
-Failed to delete the partition. No changes have been written to disk. MainWindow Pašalinti skirsnio nepavyko. Pakeitimų į laikmeną įrašyta nebuvo.
-Failed to initialize the partition %s!\n MainWindow Nepavyko įžymėti skirsnio %s!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Įžymėti skirsnio nepavyko. Pakeitimų į laikmeną įrašyta nebuvo.
-File system PartitionList Bylų sistema
-Format (not implemented) MainWindow Formatuoti (dar nepadaryta)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Įžymėti skirsnio %s nepavyko. (Pakeitįmų į laikmeną įrašyta nebuvo.)
-Initialize InitParamsPanel Įžymėti
-Initialize MainWindow Įžymėti
-Mount MainWindow Prijungti
-Mount all MainWindow Prijungti viską
-Mounted at PartitionList Prijungtas kaip
-No disk devices have been recognized. DiskView Neatpažinta jokių laikmeninių įrenginių.
-OK MainWindow Gerai
-Offset: %ld MB Support Poslinkis: %ld MiB
-Partition MainWindow Skirsnis
-Partition %ld DiskView Skirsnis %ld
-Partition name: CreateParamsPanel Skirsnio pavadinimas:
-Partition size CreateParamsPanel Skirsnio dydis
-Partition type: CreateParamsPanel Skirsnio tipas:
+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 Ar tikrai norite pakeitimus dabar įrašyti į diską?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame skaidinyje, bus negrįžtamai prarasti!
Rescan MainWindow Peržvalgyti
-Select a partition from the list below. DiskView Pasirinkite skirsnį iš sąrašo žemiau
-Size PartitionList Dydis
-Surface test (not implemented) MainWindow Paviršiaus patikra (dar nepadaryta)
-The currently selected partition does not have a parent partition. MainWindow Pasirinkas skirsnis nėra kokio skirsnio poskirsnis.
-The currently selected partition is not empty. MainWindow Pasirinktas skirnis nėra tuščias.
-The partition %s has been successfully initialized.\n MainWindow Skirsnis %s sėkmingai įžymėtas.\n
-The partition %s is already mounted. MainWindow Skirsnis %s jau prijungtas.
-The partition %s is already unmounted. MainWindow Skirsnis %s jau atjungtas.
-The partition %s is currently mounted. MainWindow Skirsnis %s jau yra prijungtas.
-The selected disk is read-only. MainWindow Pasirinkta laikmena yra tik skaitymui.
-The selected partition does not contain a partitioning system. MainWindow Pasirinktas skirsnis nėra niekaip skirstytas.
-There was an error acquiring the partition row. MainWindow Klaida išgaunant skirsnių sąrašą.
-There was an error preparing the disk for modifications. MainWindow Klaida įrašant pakeitimus į laikmeną.
-There's no space on the partition where a child partition could be created. MainWindow Nepakanka poskirsniui vietos skirsnyje.
-Unable to find the selected partition by ID. MainWindow Pasirinkto skirsnio pagal ID nerasta.
-Unmount MainWindow Atjungti
-Validation of the given creation parameters failed. MainWindow Nevykusios kūrimo apibrėžtys.
-Validation of the given initialization parameters failed. MainWindow Nevykusios įžymėjimo apibrėžtys.
-Volume name PartitionList Skirsnio pavadinimas
+OK MainWindow Gerai
+Could not aquire partitioning information. MainWindow Duomenų apie skaidinius nerasta.
+There's no space on the partition where a child partition could be created. MainWindow Skaidinyje nepakanka vietos loginiam diskui sukurti.
+%ld MiB Support %ld MiB
+ PartitionList
+Unable to find the selected partition by ID. MainWindow Pasirinkto skaidinio pagal ID rasti nepavyko.
+Select a partition from the list below. DiskView Pasirinkite skaidinį iš žemiau esančio sąrašo.
+No disk devices have been recognized. DiskView Neatpažintas nė vienas disko įtaisas.
+The selected disk is read-only. MainWindow Pasirinktas diskas pasiekiamas tik skaitymui.
+Partition name: CreateParamsPanel Skaidinio pavadinimas:
+Initialize InitParamsPanel Ženklinti
+Could not mount partition %s. MainWindow Skaidinio „%s“ prijungti nepavyko.
+The partition %s is already unmounted. MainWindow Skaidinys „%s“ jau atjungtas.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Skaidinio suženklinti nepavyko. Pakeitimai į diską neįrašyti.
+Failed to delete the partition. No changes have been written to disk. MainWindow Skaidinio pašalinti nepavyko. Pakeitimai į diską neįrašyti.
+Partition type: CreateParamsPanel Skaidinio tipas:
+Could not delete the selected partition. MainWindow Pasirinkto skaidinio pašalinti nepavyko.
+Initialize MainWindow Ženklinti
+Error: MainWindow in any error alert Klaida:
+Partition %ld DiskView Skaidinys %ld
+The partition %s has been successfully initialized.\n MainWindow Skaidinys „%s“ sėkmingai suženklintas.\n
+ DiskView
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Skaidinio „%s“ suženklinti nepavyko. Pakeitimai į diską neįrašyti.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Ar tikrai norite pakeitimus dabar įrašyti į diską?\n\nJei tęsite toliau – visi duomenys, esantys skaidinyje, bus negrįžtamai prarasti!
+Mounted at PartitionList Prijungtas kaip
+Failed to initialize the partition %s!\n MainWindow Nepavyko suženklinti skaidinio „%s“!\n
+There was an error acquiring the partition row. MainWindow Klaida gaunant skaidinių sąrašą.
+You need to select a partition entry from the list. MainWindow Būtina iš sąrašo pasirinkti skaidinį.
+Format (not implemented) MainWindow Ženklinti (dar nerealizuota)
+The currently selected partition does not have a parent partition. MainWindow Pasirinkas skaidinys nėra loginis diskas kitame skaidinyje.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Ar tikrai norite pakeitimus dabar įrašyti į diską?\n\nJei tęsite toliau – visi duomenys, esantys pasirinktame diske, bus negrįžtamai prarasti!
+Offset: %ld MB Support Poslinkis: %ld MB
Write changes MainWindow Įrašyti pakeitimus
-You need to select a partition entry from the list. MainWindow Būtina pasirinkti skirsnį iš sąrašo.
+There was an error preparing the disk for modifications. MainWindow Parengiant diską pakeitimams, įvyko klaida.
+The partition %s is already mounted. MainWindow Skaidinys „%s“ jau yra prijungtas.
+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 Ar tikrai norite pakeitimus dabar įrašyti į diską?\n\nJei tęsite toliau – visi duomenys, esantys diske „%s“, bus negrįžtamai prarasti!
+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 Ar tikrai norite pašalinti pasirinktą skaidinį?\n\nJei tęsite toliau – visi duomenys, esantys skaidinyje, bus negrįžtamai prarasti!
+Create… MainWindow Kurti…
+Disk system \"%s\"\" not found! MainWindow Diskų sistema „%s“ nerasta!
+Could not unmount partition %s. MainWindow Skaidinio „%s“ atjungti nepavyko.
+Mount MainWindow Prijungti
+Create CreateParamsPanel Kurti
+Device PartitionList Įrenginys
+Disk MainWindow Diskas
+Device DiskView Įrenginys
+Active PartitionList Aktyvus
+Volume name PartitionList Tomo pavadinimas
+Continue MainWindow Tęsti
+Cannot delete the selected partition. MainWindow Pasirinkto skaidinio pašalinti nepavyko.
+Mount all MainWindow Prijungti visus
+Cancel MainWindow Atsisakyti
+Delete partition MainWindow Šalinti skaidinį
+End: %ld MB Support Pabaiga: %ld MiB
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Ar tikrai norite suženklinti skaidinį „%s“? Prieš įrašant pakeitimus į diską, Jūsų bus paklausta dar kartą.
+Eject MainWindow Išimti
+Partition MainWindow Skaidinys
+File system PartitionList Failų sistema
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Ar tikrai norite suženklinti skaidinį? Prieš įrašant pakeitimus į diską, Jūsų bus paklausta dar kartą.
+Validation of the given creation parameters failed. MainWindow Nurodyti netinkami kūrimo parametrai.
+Size PartitionList Dydis
+Validation of the given initialization parameters failed. MainWindow Nurodyti netinkami ženklinimo parametrai.
+The selected partition does not contain a partitioning system. MainWindow Pasirinktame skaidinyje nėra skaidinių lentelė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 Ar tikrai norite pakeitimus dabar įrašyti į diską?\n\nJei tęsite toliau – visi duomenys, esantys skaidinyje „%s“, bus negrįžtamai prarasti!
+The partition %s is currently mounted. MainWindow Skaidinys „%s“ jau yra prijungtas.
+Partition size CreateParamsPanel Skaidinio dydis
+Surface test (not implemented) MainWindow Patikrinti paviršių (dar nerealizuota)
+Cancel InitParamsPanel Atsisakyti
+Cancel CreateParamsPanel Atsisakyti
+Parameters PartitionList Parametrai
+Creation of the partition has failed. MainWindow Nepavyko sukurti skaidinio.
+The currently selected partition is not empty. MainWindow Pasirinktas skaidinys yra ne tuščias.
+Unmount MainWindow Atjungti
diff --git a/data/catalogs/apps/drivesetup/nl.catkeys b/data/catalogs/apps/drivesetup/nl.catkeys
index 99a38ae9df..6fccd65f1f 100644
--- a/data/catalogs/apps/drivesetup/nl.catkeys
+++ b/data/catalogs/apps/drivesetup/nl.catkeys
@@ -1,76 +1,77 @@
-1 dutch x-vnd.Haiku-DriveSetup 568426562
-%ld MiB Support %ld MiB
- DiskView
- PartitionList
-Active PartitionList Actief
-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 Bent u zeker dat u de geselecteerde partitie wilt verwijderen?\n\nU zult alle gegevens op de partitie onherroepelijk kwijt zijn als u dit doet!
-Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Weet u zeker dat u de partitie \"%s\" wilt initialiseren? Het zal nog een keer gevraagd worden voordat veranderingen naar de schijf worden geschreven.
-Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Weet u zeker dat u de partitie wilt initialiseren? Het zal nog een keer gevraagd worden voordat veranderingen naar de schijf worden geschreven.
-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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\n&U zult alle gegevens op de %s schijf onherroepelijk kwijt zijn als u dit doet!
-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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de %s partitie onherroepelijk kwijt zijn als u dit doet!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de partitie onherroepelijk kwijt zijn als u dit doet!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de geselecteerde schijf onherroepelijk kwijt zijn als u dit doet!
-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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de geselecteerde partitie onherroepelijk kwijt zijn als u dit doet!
-Cancel CreateParamsPanel Annuleren
-Cancel InitParamsPanel Annuleren
-Cancel MainWindow Annuleren
-Cannot delete the selected partition. MainWindow Kan de geselecteerde partitie niet verwijderen.
-Continue MainWindow Doorgaan
-Could not aquire partitioning information. MainWindow Kon geen partitie-informatie verkrijgen.
-Could not delete the selected partition. MainWindow Kon de geselecteerde partitie niet verwijderen.
-Could not mount partition %s. MainWindow Kon partitie %s niet betrekken.
-Could not unmount partition %s. MainWindow Kon partitie %s niet onttrekken.
-Create CreateParamsPanel Maken
-Create… MainWindow Maken…
-Creation of the partition has failed. MainWindow Creatie van de partitie is mislukt.
+1 dutch; flemish x-vnd.Haiku-DriveSetup 1209826930
+DriveSetup System name DriveSetup
Delete MainWindow Verwijderen
-Delete partition MainWindow Partitie verwijderen
-Device DiskView Apparaat
+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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de geselecteerde partitie onherroepelijk kwijt zijn als u dit doet!
+Rescan MainWindow Opnieuw afzoeken
+OK MainWindow Oké
+Could not aquire partitioning information. MainWindow Kon geen partitie-informatie verkrijgen.
+There's no space on the partition where a child partition could be created. MainWindow De partitie heeft geen ruimte waarin een onderliggende partitie kan worden gemaakt.
+%ld MiB Support %ld MiB
+ PartitionList
+Unable to find the selected partition by ID. MainWindow Kan de geselecteerde partitie niet vinden op basis van ID.
+Select a partition from the list below. DiskView Selecteer een partitie uit onderstaande lijst.
+No disk devices have been recognized. DiskView Er werden geen schijfapparaten herkend.
+The selected disk is read-only. MainWindow De geselecteerde schijf is alleen-lezen.
+Partition name: CreateParamsPanel Partitienaam:
+Initialize InitParamsPanel Initialiseer
+Could not mount partition %s. MainWindow Kon partitie %s niet betrekken.
+The partition %s is already unmounted. MainWindow De partitie %s is al onttrokken.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Kon de partitie niet initialiseren. Er werden geen veranderingen naar de schijf geschreven.
+Failed to delete the partition. No changes have been written to disk. MainWindow Kon de partitie niet verwijderen. Er werden geen veranderingen naar de schijf geschreven.
+Partition type: CreateParamsPanel Partitiesoort:
+Could not delete the selected partition. MainWindow Kon de geselecteerde partitie niet verwijderen.
+Initialize MainWindow Initialiseren
+Error: MainWindow in any error alert Fout:
+Partition %ld DiskView Partitie %ld
+The partition %s has been successfully initialized.\n MainWindow De partitie %s werd met succes geïnitialiseerd.\n
+ DiskView
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Initialisatie van de partitie %s is mislukt. (Er werd niets naar de schijf geschreven.)
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de partitie onherroepelijk kwijt zijn als u dit doet!
+Mounted at PartitionList Betrokken bij
+Failed to initialize the partition %s!\n MainWindow Initialisatie van partitie %s is mislukt!\n
+There was an error acquiring the partition row. MainWindow Er is een fout ontstaan bij het verkrijgen van de partitieregel.
+You need to select a partition entry from the list. MainWindow U dient een partitie uit de lijst te selecteren.
+Format (not implemented) MainWindow Formatteren (niet geïmplementeerd)
+The currently selected partition does not have a parent partition. MainWindow De nu geselecteerde partitie heeft geen bovenliggende partitie.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de geselecteerde schijf onherroepelijk kwijt zijn als u dit doet!
+Offset: %ld MB Support Offset: %ld MB
+Write changes MainWindow Veranderingen schrijven
+There was an error preparing the disk for modifications. MainWindow Fout tijdens het voorbereiden van de schijf voor aanpassingen.
+The partition %s is already mounted. MainWindow De partitie %s is al betrokken.
+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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\n&U zult alle gegevens op de %s schijf onherroepelijk kwijt zijn als u dit doet!
+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 Bent u zeker dat u de geselecteerde partitie wilt verwijderen?\n\nU zult alle gegevens op de partitie onherroepelijk kwijt zijn als u dit doet!
+Create… MainWindow Maken…
+Disk system \"%s\"\" not found! MainWindow Schijf \"%s\"\" systeem niet gevonden!
+Could not unmount partition %s. MainWindow Kon partitie %s niet onttrekken.
+Mount MainWindow Betrekken
+Create CreateParamsPanel Maken
Device PartitionList Apparaat
Disk MainWindow Schijf
-Disk system \"%s\"\" not found! MainWindow Schijf \"%s\"\" systeem niet gevonden!
-Eject MainWindow Uitwerpen
-End: %ld MB Support Einde: %ld MB
-Error: MainWindow in any error alert Fout:
-Failed to delete the partition. No changes have been written to disk. MainWindow Kon de partitie niet verwijderen. Er werden geen veranderingen naar de schijf geschreven.
-Failed to initialize the partition %s!\n MainWindow Initialisatie van partitie %s is mislukt!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Kon de partitie niet initialiseren. Er werden geen veranderingen naar de schijf geschreven.
-File system PartitionList Bestandssysteem
-Format (not implemented) MainWindow Formatteren (niet geïmplementeerd)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Initialisatie van de partitie %s is mislukt. (Er werd niets naar de schijf geschreven.)
-Initialize InitParamsPanel Initialiseer
-Initialize MainWindow Initialiseren
-Mount MainWindow Betrekken
-Mount all MainWindow Alles betrekken
-Mounted at PartitionList Betrokken bij
-No disk devices have been recognized. DiskView Er werden geen schijfapparaten herkend.
-OK MainWindow Oké
-Offset: %ld MB Support Offset: %ld MB
-Parameters PartitionList Parameters
-Partition MainWindow Partitie
-Partition %ld DiskView Partitie %ld
-Partition name: CreateParamsPanel Partitienaam:
-Partition size CreateParamsPanel Partitiegrootte
-Partition type: CreateParamsPanel Partitiesoort:
-Rescan MainWindow Opnieuw afzoeken
-Select a partition from the list below. DiskView Selecteer een partitie uit onderstaande lijst.
-Size PartitionList Grootte
-Surface test (not implemented) MainWindow Oppervlaktetest (niet geïmplementeerd)
-The currently selected partition does not have a parent partition. MainWindow De nu geselecteerde partitie heeft geen bovenliggende partitie.
-The currently selected partition is not empty. MainWindow De nu geselecteerde partitie is niet leeg.
-The partition %s has been successfully initialized.\n MainWindow De partitie %s werd met succes geïnitialiseerd.\n
-The partition %s is already mounted. MainWindow De partitie %s is al betrokken.
-The partition %s is already unmounted. MainWindow De partitie %s is al onttrokken.
-The partition %s is currently mounted. MainWindow De partitie %s is op dit moment gekoppeld.
-The selected disk is read-only. MainWindow De geselecteerde schijf is alleen-lezen.
-The selected partition does not contain a partitioning system. MainWindow De geselecteerde partitie bevat geen partitioneringssysteem.
-There was an error acquiring the partition row. MainWindow Er is een fout ontstaan bij het verkrijgen van de partitieregel.
-There was an error preparing the disk for modifications. MainWindow Fout tijdens het voorbereiden van de schijf voor aanpassingen.
-There's no space on the partition where a child partition could be created. MainWindow De partitie heeft geen ruimte waarin een onderliggende partitie kan worden gemaakt.
-Unable to find the selected partition by ID. MainWindow Kan de geselecteerde partitie niet vinden op basis van ID.
-Unmount MainWindow Onttrekken
-Validation of the given creation parameters failed. MainWindow Natrekken van de gegeven creatieparameters is mislukt.
-Validation of the given initialization parameters failed. MainWindow Natrekken van de opgegeven initialisatieparameters is mislukt.
+Device DiskView Apparaat
+Active PartitionList Actief
Volume name PartitionList Naam gegevensdrager
-Write changes MainWindow Veranderingen schrijven
-You need to select a partition entry from the list. MainWindow U dient een partitie uit de lijst te selecteren.
+Continue MainWindow Doorgaan
+Cannot delete the selected partition. MainWindow Kan de geselecteerde partitie niet verwijderen.
+Mount all MainWindow Alles betrekken
+Cancel MainWindow Annuleren
+Delete partition MainWindow Partitie verwijderen
+End: %ld MB Support Einde: %ld MB
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Weet u zeker dat u de partitie \"%s\" wilt initialiseren? Het zal nog een keer gevraagd worden voordat veranderingen naar de schijf worden geschreven.
+Eject MainWindow Uitwerpen
+Partition MainWindow Partitie
+File system PartitionList Bestandssysteem
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Weet u zeker dat u de partitie wilt initialiseren? Het zal nog een keer gevraagd worden voordat veranderingen naar de schijf worden geschreven.
+Validation of the given creation parameters failed. MainWindow Natrekken van de gegeven creatieparameters is mislukt.
+Size PartitionList Grootte
+Validation of the given initialization parameters failed. MainWindow Natrekken van de opgegeven initialisatieparameters is mislukt.
+The selected partition does not contain a partitioning system. MainWindow De geselecteerde partitie bevat geen partitioneringssysteem.
+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 Bent u zeker dat u de veranderingen nu wilt terugschrijven naar de schijf?\n\nU zult alle gegevens op de %s partitie onherroepelijk kwijt zijn als u dit doet!
+The partition %s is currently mounted. MainWindow De partitie %s is op dit moment gekoppeld.
+Partition size CreateParamsPanel Partitiegrootte
+Surface test (not implemented) MainWindow Oppervlaktetest (niet geïmplementeerd)
+Cancel InitParamsPanel Annuleren
+Cancel CreateParamsPanel Annuleren
+Parameters PartitionList Parameters
+Creation of the partition has failed. MainWindow Creatie van de partitie is mislukt.
+The currently selected partition is not empty. MainWindow De nu geselecteerde partitie is niet leeg.
+Unmount MainWindow Onttrekken
diff --git a/data/catalogs/apps/drivesetup/ru.catkeys b/data/catalogs/apps/drivesetup/ru.catkeys
index 18656c273f..0ac318a5ab 100644
--- a/data/catalogs/apps/drivesetup/ru.catkeys
+++ b/data/catalogs/apps/drivesetup/ru.catkeys
@@ -1,77 +1,77 @@
1 russian x-vnd.Haiku-DriveSetup 1209826930
-%ld MiB Support %ld Мбайт
- DiskView <пусто>
- PartitionList <пусто>
-Active PartitionList Загрузочный
-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 initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Вы уверены, что хотите инициализировать раздел \"%s\"?\nПовторый запрос будет выдан непосредственно перед записью изменений на диск.
-Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Вы уверены, что хотите инициализировать раздел?\nПовторый запрос будет выдан непосредственно перед записью изменений на диск.
-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 partition %s 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 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 disk 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Если вы продолжите, то все данные на выбранном разделе будут безвозвратно потеряны!
-Cancel CreateParamsPanel Отмена
-Cancel InitParamsPanel Отмена
-Cancel MainWindow Отмена
-Cannot delete the selected partition. MainWindow Невозможно удалить выбранный раздел.
-Continue MainWindow Продолжить
-Could not aquire partitioning information. MainWindow Невозможно получить информацию о разделах.
-Could not delete the selected partition. MainWindow Невозможно удалить выбранный раздел.
-Could not mount partition %s. MainWindow Невозможно подключить раздел %s.
-Could not unmount partition %s. MainWindow Невозможно отключить раздел %s.
-Create CreateParamsPanel Создать
-Create… MainWindow Создать…
-Creation of the partition has failed. MainWindow Не удалось создать раздел.
+DriveSetup System name Разметка диска
Delete MainWindow Удалить
-Delete partition MainWindow Удалить раздел
-Device DiskView Устройство
+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 Пересканировать
+OK MainWindow ОК
+Could not aquire partitioning information. MainWindow Невозможно получить информацию о разделах.
+There's no space on the partition where a child partition could be created. MainWindow Недостаточно места на разделе, где можно было бы создать подраздел.
+%ld MiB Support %ld Мбайт
+ PartitionList <пусто>
+Unable to find the selected partition by ID. MainWindow Невозможно найти выбранный раздел по ID.
+Select a partition from the list below. DiskView Выберите раздел из списка ниже
+No disk devices have been recognized. DiskView Ни одно из дисковых устройств не распознано.
+The selected disk is read-only. MainWindow Выбранный диск доступен только для чтения.
+Partition name: CreateParamsPanel Имя раздела:
+Initialize InitParamsPanel Инициализировать
+Could not mount partition %s. MainWindow Невозможно подключить раздел %s.
+The partition %s is already unmounted. MainWindow Раздел %s уже отключен.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Инициализация раздела не удалась. Изменения не были записаны на диск.
+Failed to delete the partition. No changes have been written to disk. MainWindow Не удалось удалить раздел. Изменения не были записаны на диск.
+Partition type: CreateParamsPanel Тип раздела:
+Could not delete the selected partition. MainWindow Невозможно удалить выбранный раздел.
+Initialize MainWindow Инициализировать
+Error: MainWindow in any error alert Ошибка:
+Partition %ld DiskView Раздел %ld
+The partition %s has been successfully initialized.\n MainWindow Раздел %s был успешно инициализирован.\n
+ DiskView <пусто>
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Не удалось инициализировать раздел %s. (Изменения не были записаны на диск.)
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Вы уверены, что хотите записать изменения на диск прямо сейчас?\n\nЕсли вы продолжите, то все данные на выбранном разделе будут безвозвратно потеряны!
+Mounted at PartitionList Подключен в
+Failed to initialize the partition %s!\n MainWindow Не удалось инициализировать раздел %s!\n
+There was an error acquiring the partition row. MainWindow Произошла ошибка при получении списка разделов.
+You need to select a partition entry from the list. MainWindow Вам нужно выбрать раздел из списка.
+Format (not implemented) MainWindow Форматировать (еще не реализовано)
+The currently selected partition does not have a parent partition. MainWindow Выбранный раздел не имеет родительского раздела.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Вы уверены, что хотите записать изменения на диск прямо сейчас?\n\nВсе данные на выбранном диске будут безвозвратно потеряны, если вы продолжите!
+Offset: %ld MB Support Смещение: %ld Мбайт
+Write changes MainWindow Записать изменения
+There was an error preparing the disk for modifications. MainWindow Произошла ошибка при сохранении изменений на диск.
+The partition %s is already mounted. MainWindow Раздел %s уже отключен.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the disk %s will be irretrievably lost if you do so! MainWindow Вы уверены, что хотите записать изменения на диск прямо сейчас?\n\nВсе данные на диске %s будут безвозвратно потеряны, если вы продолжите!
+Are you sure you want to delete the selected partition?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Вы уверены, что хотите удалить выбранный раздел?\n\nВсе данные на этом разделе будут безвозвратно потеряны, если вы продолжите!
+Create… MainWindow Создать…
+Disk system \"%s\"\" not found! MainWindow Дисковая система \"%s\"\" не обнаружена!
+Could not unmount partition %s. MainWindow Невозможно отключить раздел %s.
+Mount MainWindow Подключить
+Create CreateParamsPanel Создать
Device PartitionList Устройство
Disk MainWindow Диск
-Disk system \"%s\"\" not found! MainWindow Дисковая система \"%s\"\" не обнаружена!
-DriveSetup System name Разметка диска
-Eject MainWindow Извлечь
-End: %ld MB Support Конец: %ld Мбайт
-Error: MainWindow in any error alert Ошибка:
-Failed to delete the partition. No changes have been written to disk. MainWindow Не удалось удалить раздел. Изменения не были записаны на диск.
-Failed to initialize the partition %s!\n MainWindow Не удалось инициализировать раздел %s!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Инициализация раздела не удалась. Изменения не были записаны на диск.
-File system PartitionList Файловая система
-Format (not implemented) MainWindow Форматировать (еще не реализовано)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Не удалось инициализировать раздел %s. (Изменения не были записаны на диск.)
-Initialize InitParamsPanel Инициализировать
-Initialize MainWindow Инициализировать
-Mount MainWindow Подключить
-Mount all MainWindow Подключить все
-Mounted at PartitionList Подключен в
-No disk devices have been recognized. DiskView Ни одно из дисковых устройств не распознано.
-OK MainWindow ОК
-Offset: %ld MB Support Смещение: %ld Мбайт
-Parameters PartitionList Параметры
-Partition MainWindow Раздел
-Partition %ld DiskView Раздел %ld
-Partition name: CreateParamsPanel Имя раздела:
-Partition size CreateParamsPanel Размер раздела
-Partition type: CreateParamsPanel Тип раздела:
-Rescan MainWindow Пересканировать
-Select a partition from the list below. DiskView Выберите раздел из списка ниже
-Size PartitionList Размер
-Surface test (not implemented) MainWindow Тест поверхности (еще не реализовано)
-The currently selected partition does not have a parent partition. MainWindow Выбранный раздел не имеет родительского раздела.
-The currently selected partition is not empty. MainWindow Текущий выбранный раздел не является пустым.
-The partition %s has been successfully initialized.\n MainWindow Раздел %s был успешно инициализирован.\n
-The partition %s is already mounted. MainWindow Раздел %s уже отключен.
-The partition %s is already unmounted. MainWindow Раздел %s уже отключен.
-The partition %s is currently mounted. MainWindow Раздел %s в данный момент подключен.
-The selected disk is read-only. MainWindow Выбранный диск доступен только для чтения.
-The selected partition does not contain a partitioning system. MainWindow Выбранный раздел не содержит таблицу разделов.
-There was an error acquiring the partition row. MainWindow Произошла ошибка при получении списка разделов.
-There was an error preparing the disk for modifications. MainWindow Произошла ошибка при сохранении изменений на диск.
-There's no space on the partition where a child partition could be created. MainWindow Недостаточно места на разделе, где можно было бы создать подраздел.
-Unable to find the selected partition by ID. MainWindow Невозможно найти выбранный раздел по ID.
-Unmount MainWindow Отключить
-Validation of the given creation parameters failed. MainWindow Не удалось применить введённые при создании параметры.
-Validation of the given initialization parameters failed. MainWindow Не удалось применить параметры, введенные при инициализации.
+Device DiskView Устройство
+Active PartitionList Загрузочный
Volume name PartitionList Имя раздела
-Write changes MainWindow Записать изменения
-You need to select a partition entry from the list. MainWindow Вам нужно выбрать раздел из списка.
+Continue MainWindow Продолжить
+Cannot delete the selected partition. MainWindow Невозможно удалить выбранный раздел.
+Mount all MainWindow Подключить все
+Cancel MainWindow Отмена
+Delete partition MainWindow Удалить раздел
+End: %ld MB Support Конец: %ld Мбайт
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Вы уверены, что хотите инициализировать раздел \"%s\"?\nПовторый запрос будет выдан непосредственно перед записью изменений на диск.
+Eject MainWindow Извлечь
+Partition MainWindow Раздел
+File system PartitionList Файловая система
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Вы уверены, что хотите инициализировать раздел?\nПовторый запрос будет выдан непосредственно перед записью изменений на диск.
+Validation of the given creation parameters failed. MainWindow Не удалось применить введённые при создании параметры.
+Size PartitionList Размер
+Validation of the given initialization parameters failed. MainWindow Не удалось применить параметры, введенные при инициализации.
+The selected partition does not contain a partitioning system. MainWindow Выбранный раздел не содержит таблицу разделов.
+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Если вы продолжите, то все данные на выбранном разделе будут безвозвратно потеряны!
+The partition %s is currently mounted. MainWindow Раздел %s в данный момент подключен.
+Partition size CreateParamsPanel Размер раздела
+Surface test (not implemented) MainWindow Тест поверхности (еще не реализовано)
+Cancel InitParamsPanel Отмена
+Cancel CreateParamsPanel Отмена
+Parameters PartitionList Параметры
+Creation of the partition has failed. MainWindow Не удалось создать раздел.
+The currently selected partition is not empty. MainWindow Текущий выбранный раздел не является пустым.
+Unmount MainWindow Отключить
diff --git a/data/catalogs/apps/drivesetup/sk.catkeys b/data/catalogs/apps/drivesetup/sk.catkeys
index b090256a62..90ad4af38f 100644
--- a/data/catalogs/apps/drivesetup/sk.catkeys
+++ b/data/catalogs/apps/drivesetup/sk.catkeys
@@ -1,77 +1,77 @@
1 slovak x-vnd.Haiku-DriveSetup 1209826930
-%ld MiB Support %ld MiB
- DiskView
- PartitionList
-Active PartitionList Aktívna
-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 Ste si istý, že chcete zmazať vybranú diskovú oblasť?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
-Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Ste si istý, že chcete inicializovať diskovú oblasť „%s“? Znova sa vás spýtame pre zapísaním zmien na disk.
-Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Ste si istý, že chcete inicializovať diskovú oblasť? Znova sa vás spýtame pre zapísaním zmien na disk.
-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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na disku %s budú nenávratne stratené!
-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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na diskovej oblasti %s budú nenávratne stratené!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
-Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranom disku budú nenávratne stratené!
-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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
-Cancel CreateParamsPanel Zrušiť
-Cancel InitParamsPanel Zrušiť
-Cancel MainWindow Zrušiť
-Cannot delete the selected partition. MainWindow Nie je možné zmazať vybranú diskovú oblasť.
-Continue MainWindow Pokračovať
-Could not aquire partitioning information. MainWindow Nepodarilo sa získať informácie o diskových oblastiach.
-Could not delete the selected partition. MainWindow Nepodarilo sa zmazať vybranú oblasť.
-Could not mount partition %s. MainWindow Nepodarilo sa pripojiť oblasť %s.
-Could not unmount partition %s. MainWindow Nepodarilo sa odpojiť oblasť %s.
-Create CreateParamsPanel Vytvoriť
-Create… MainWindow Vytvoriť...
-Creation of the partition has failed. MainWindow Vytvorenie diskovej oblasti zlyhalo.
+DriveSetup System name Nastavenie diskových oblastí
Delete MainWindow Zmazať
-Delete partition MainWindow Zmazať oblasť
-Device DiskView Zariadenie
+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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
+Rescan MainWindow Znovu preskúmať
+OK MainWindow OK
+Could not aquire partitioning information. MainWindow Nepodarilo sa získať informácie o diskových oblastiach.
+There's no space on the partition where a child partition could be created. MainWindow Na oblasti nie je miesto, kde by bolo možné vytvoriť podriadenú oblasť.
+%ld MiB Support %ld MiB
+ PartitionList
+Unable to find the selected partition by ID. MainWindow Nebolo možné nájsť vybranú oblasť podľa ID.
+Select a partition from the list below. DiskView Vyberte oblasť zo zoznamu dolu.
+No disk devices have been recognized. DiskView Neboli rozpoznané žiadne diskové zariadenia.
+The selected disk is read-only. MainWindow Vybraný disk je len na čítanie.
+Partition name: CreateParamsPanel Názov oblasti:
+Initialize InitParamsPanel Inicializovať
+Could not mount partition %s. MainWindow Nepodarilo sa pripojiť oblasť %s.
+The partition %s is already unmounted. MainWindow Oblasť %s je už odpojená.
+Failed to initialize the partition. No changes have been written to disk. MainWindow Nepodarilo sa inicializovať oblasť. Žiadne zmeny neboli zapísané na disk.
+Failed to delete the partition. No changes have been written to disk. MainWindow Nepodarilo sa zmazať oblasť. Žiadne zmeny neboli zapísané na disk.
+Partition type: CreateParamsPanel Typ oblasti:
+Could not delete the selected partition. MainWindow Nepodarilo sa zmazať vybranú oblasť.
+Initialize MainWindow Inicializovať
+Error: MainWindow in any error alert Chyba:
+Partition %ld DiskView Oblasť %ld
+The partition %s has been successfully initialized.\n MainWindow Oblasť %s bola úspešne inicializovaná.\n
+ DiskView
+Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Nepodarilo sa inicializovať oblasť %s. (Žiadne zmeny neboli zapísané na disk.)
+Are you sure you want to write the changes back to disk now?\n\nAll data on the partition will be irretrievably lost if you do so! MainWindow Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
+Mounted at PartitionList Pripojené na
+Failed to initialize the partition %s!\n MainWindow Nepodarilo sa inicializovať oblasť %s!\n
+There was an error acquiring the partition row. MainWindow Vyskytla sa chyba pri získavaní radu oblasti.
+You need to select a partition entry from the list. MainWindow Musíte vybrať záznam oblasti zo zoznamu.
+Format (not implemented) MainWindow Formát (neimplementované)
+The currently selected partition does not have a parent partition. MainWindow Momentálne vybraná oblasť nemá nadradenú oblasť.
+Are you sure you want to write the changes back to disk now?\n\nAll data on the selected disk will be irretrievably lost if you do so! MainWindow Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na vybranom disku budú nenávratne stratené!
+Offset: %ld MB Support Ofset: %ld MB
+Write changes MainWindow Zapísať zmeny
+There was an error preparing the disk for modifications. MainWindow Vyskytla sa chyba pri pripravovaní disku na zmeny.
+The partition %s is already mounted. MainWindow Oblasť %s je už pripojená.
+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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na disku %s budú nenávratne stratené!
+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 Ste si istý, že chcete zmazať vybranú diskovú oblasť?\n\nAk tak urobíte, všetky údaje na vybranej diskovej oblasti budú nenávratne stratené!
+Create… MainWindow Vytvoriť…
+Disk system \"%s\"\" not found! MainWindow Diskový systém „%s“ nenájdený!
+Could not unmount partition %s. MainWindow Nepodarilo sa odpojiť oblasť %s.
+Mount MainWindow Pripojiť
+Create CreateParamsPanel Vytvoriť
Device PartitionList Zariadenie
Disk MainWindow Disk
-Disk system \"%s\"\" not found! MainWindow Diskový systém „%s“ nenájdený!
-DriveSetup System name Nastavenie diskových oblastí
-Eject MainWindow Vysunúť
-End: %ld MB Support Koniec: %ld MB
-Error: MainWindow in any error alert Chyba:
-Failed to delete the partition. No changes have been written to disk. MainWindow Nepodarilo sa zmazať oblasť. Žiadne zmeny neboli zapísané na disk.
-Failed to initialize the partition %s!\n MainWindow Nepodarilo sa inicializovať oblasť %s!\n
-Failed to initialize the partition. No changes have been written to disk. MainWindow Nepodarilo sa inicializovať oblasť. Žiadne zmeny neboli zapísané na disk.
-File system PartitionList Súborový systém
-Format (not implemented) MainWindow Formát (neimplementované)
-Initialization of the partition %s failed. (Nothing has been written to disk.) MainWindow Nepodarilo sa inicializovať oblasť %s. Žiadne zmeny neboli zapísané na disk.
-Initialize InitParamsPanel Inicializovať
-Initialize MainWindow Inicializovať
-Mount MainWindow Pripojiť
-Mount all MainWindow Pripojiť všetky
-Mounted at PartitionList Pripojené na
-No disk devices have been recognized. DiskView Neboli rozpoznané žiadne diskové zariadenia.
-OK MainWindow OK
-Offset: %ld MB Support Ofset: %ld MB
-Parameters PartitionList Parametre
-Partition MainWindow Oblasť
-Partition %ld DiskView Oblasť %ld
-Partition name: CreateParamsPanel Názov oblasti:
-Partition size CreateParamsPanel Veľkosť oblasti
-Partition type: CreateParamsPanel Typ oblasti
-Rescan MainWindow Znova preskúmať
-Select a partition from the list below. DiskView Vyberte oblasť zo zoznamu dolu.
-Size PartitionList Veľkosť
-Surface test (not implemented) MainWindow Test povrchu disku (neimplementované)
-The currently selected partition does not have a parent partition. MainWindow Momentálne vybraná oblasť nemá nadradenú oblasť
-The currently selected partition is not empty. MainWindow Momentálne vybraná disková oblasť nie je prázdna.
-The partition %s has been successfully initialized.\n MainWindow Oblasť %s bola úspešne inicializovaná.\n
-The partition %s is already mounted. MainWindow Oblasť %s je už pripojená.
-The partition %s is already unmounted. MainWindow Oblasť %s je už odpojená.
-The partition %s is currently mounted. MainWindow Oblasť %s je momentálne pripojená.
-The selected disk is read-only. MainWindow Vybraný disk je len na čítanie.
-The selected partition does not contain a partitioning system. MainWindow Zdá sa, že vybraná disková oblasť neobsahuje systém oblastí.
-There was an error acquiring the partition row. MainWindow Vyskytla sa chyba pri získavaní radu oblasti.
-There was an error preparing the disk for modifications. MainWindow Vyskytla sa chyba pri pripravovaní disku na zmeny.
-There's no space on the partition where a child partition could be created. MainWindow Na oblasti nie je miesto, kde by bolo možné vytvoriť podriadenú oblasť.
-Unable to find the selected partition by ID. MainWindow Nebolo možné nájsť vybranú oblasť podľa ID.
-Unmount MainWindow Odpojiť
-Validation of the given creation parameters failed. MainWindow Overenie zadaných parametrov vytvorenia zlyhalo.
-Validation of the given initialization parameters failed. MainWindow Overenie zadaných parametrov inicializácie zlyhalo.
+Device DiskView Zariadenie
+Active PartitionList Aktívna
Volume name PartitionList Názov zväzku
-Write changes MainWindow Zapísať zmeny
-You need to select a partition entry from the list. MainWindow Musíte vybrať záznam oblasti zo zoznamu.
+Continue MainWindow Pokračovať
+Cannot delete the selected partition. MainWindow Nie je možné zmazať vybranú diskovú oblasť.
+Mount all MainWindow Pripojiť všetky
+Cancel MainWindow Zrušiť
+Delete partition MainWindow Zmazať oblasť
+End: %ld MB Support Koniec: %ld MB
+Are you sure you want to initialize the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Ste si istý, že chcete inicializovať diskovú oblasť „%s“? Znova sa vás spýtame pred zapísaním zmien na disk.
+Eject MainWindow Vysunúť
+Partition MainWindow Oblasť
+File system PartitionList Súborový systém
+Are you sure you want to initialize the partition? You will be asked again before changes are written to the disk. MainWindow Ste si istý, že chcete inicializovať diskovú oblasť? Znova sa vás spýtame pred zapísaním zmien na disk.
+Validation of the given creation parameters failed. MainWindow Overenie zadaných parametrov vytvorenia zlyhalo.
+Size PartitionList Veľkosť
+Validation of the given initialization parameters failed. MainWindow Overenie zadaných parametrov inicializácie zlyhalo.
+The selected partition does not contain a partitioning system. MainWindow Zdá sa, že vybraná disková oblasť neobsahuje systém oblastí.
+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 Ste si istý, že chcete tieto zmeny teraz zapísať na disk?\n\nAk tak urobíte, všetky údaje na diskovej oblasti %s budú nenávratne stratené!
+The partition %s is currently mounted. MainWindow Oblasť %s je momentálne pripojená.
+Partition size CreateParamsPanel Veľkosť oblasti
+Surface test (not implemented) MainWindow Test povrchu disku (neimplementované)
+Cancel InitParamsPanel Zrušiť
+Cancel CreateParamsPanel Zrušiť
+Parameters PartitionList Parametre
+Creation of the partition has failed. MainWindow Vytvorenie diskovej oblasti zlyhalo.
+The currently selected partition is not empty. MainWindow Momentálne vybraná disková oblasť nie je prázdna.
+Unmount MainWindow Odpojiť
diff --git a/data/catalogs/apps/expander/be.catkeys b/data/catalogs/apps/expander/be.catkeys
index 99fd737c6d..ab7f79b394 100644
--- a/data/catalogs/apps/expander/be.catkeys
+++ b/data/catalogs/apps/expander/be.catkeys
@@ -1,49 +1,49 @@
-1 belarusian x-vnd.Haiku-Expander 187676748
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Спыніць распакоўку гэтага \nархіва? Ужо распакаваныя файлы могуць быць няпоўнымі.
-Automatically expand files ExpanderPreferences Распакоўваць файлы аўтаматычна
-Automatically show contents listing ExpanderPreferences Аўтаматычна паказваць змесціва
-Cancel ExpanderPreferences Адмена
-Cancel ExpanderWindow Скасаваць
-Close ExpanderMenu Закрыць
-Close window when done expanding ExpanderPreferences Закрыць вакно пасля распакоўкі
-Continue ExpanderWindow Працягваць
-Creating listing for '%s' ExpanderWindow Стварэнне спіса для '%s'
-Destination ExpanderWindow Прызначэнне
-Destination folder: ExpanderPreferences Папка прызначэння:
-Error when expanding archive ExpanderWindow Памылка падчас распакоўкі архіву
+1 belarusian x-vnd.Haiku-Expander 2537908460
Expand ExpanderMenu Распакаваць
-Expand ExpanderWindow Распакаваць
-Expander System name Распакоўшчык
-Expander settings ExpanderPreferences Наладкі Распакоўшчыка
-Expander: Choose destination DirectoryFilePanel Распакоўшчык: Абраць прызначэнне
+Close window when done expanding ExpanderPreferences Закрыць вакно пасля распакоўкі
+Set destination… ExpanderMenu Задаць прызначэнне…
+Use: ExpanderPreferences Выкарыстаць:
+File expanded ExpanderWindow Файл распакаваны
+The destination is read only. ExpanderWindow Запіс ў тэчку прызначэння не дазволены.
Expander: Open ExpanderWindow Распакоўшчык: Адкрыць
+ is not supported ExpanderWindow не падтрымлiваецца
+Expander settings ExpanderPreferences Наладкі Распакоўшчыка
+Select current DirectoryFilePanel Пазначыць бягучы
+Source ExpanderWindow Крыніца
+Error when expanding archive ExpanderWindow Памылка падчас распакоўкі архіву
+Hide contents ExpanderWindow Схаваць змест
+Cancel ExpanderWindow Скасаваць
+Automatically expand files ExpanderPreferences Распакоўваць файлы аўтаматычна
+Creating listing for '%s' ExpanderWindow Стварэнне спіса для '%s'
+Continue ExpanderWindow Працягваць
+The destination folder does not exist. ExpanderWindow Тэчка прызначэння не існуе.
+Cancel ExpanderPreferences Адмена
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Спыніць распакоўку гэтага \nархіва? Ужо распакаваныя файлы могуць быць няпоўнымі.
+Select DirectoryFilePanel Пазначыць
+Destination folder: ExpanderPreferences Папка прызначэння:
+Same directory as source (archive) file ExpanderPreferences Папка ў якой знаходзіцца зыходны архіў
Expanding '%s' ExpanderWindow Распакоўка '%s'
Expansion: ExpanderPreferences Распакоўка:
-File ExpanderMenu Файл
-File expanded ExpanderWindow Файл распакаваны
-Hide contents ExpanderWindow Схаваць змест
-Leave destination folder path empty ExpanderPreferences Пакінуць пуць да пакі прызначэння пустым
-OK ExpanderPreferences ОК
-Open destination folder after extraction ExpanderPreferences Паказаць паку прызначэння пасля распакоўкі
-Other: ExpanderPreferences Другі:
-Same directory as source (archive) file ExpanderPreferences Папка ў якой знаходзіцца зыходны архіў
-Select DirectoryFilePanel Пазначыць
-Select ExpanderPreferences Пазначыць
-Select '%s' DirectoryFilePanel Пазначыць '%s'
-Select current DirectoryFilePanel Пазначыць бягучы
-Set destination… ExpanderMenu Задаць прызначэнне…
-Set source… ExpanderMenu Задаць крыніцу…
Settings ExpanderMenu Налады
Settings… ExpanderMenu Налады…
-Show contents ExpanderMenu Паказаць змест
+Expander: Choose destination DirectoryFilePanel Распакоўшчык: Абраць прызначэнне
+Select ExpanderPreferences Пазначыць
Show contents ExpanderWindow Паказаць змест
-Source ExpanderWindow Крыніца
-Stop ExpanderMenu Спыніць
-Stop ExpanderWindow Спыніць
-The destination folder does not exist. ExpanderWindow Тэчка прызначэння не існуе.
-The destination is not a folder. ExpanderWindow Прызначэнне не з´яўляецца каталёгам.
-The destination is read only. ExpanderWindow Запіс ў тэчку прызначэння не дазволены.
-The file doesn't exist ExpanderWindow Гэты файл не існуе
+Automatically show contents listing ExpanderPreferences Аўтаматычна паказваць змесціва
+OK ExpanderPreferences ОК
+Leave destination folder path empty ExpanderPreferences Пакінуць пуць да пакі прызначэння пустым
The folder was either moved, renamed or not\nsupported. ExpanderWindow Гэты каталёг быў перамешчаны, перайменаваны, або не\n падтрымліваецца.
-Use: ExpanderPreferences Выкарыстаць:
-is not supported ExpanderWindow не падтрымліваецца
+The file doesn't exist ExpanderWindow Гэты файл не існуе
+Stop ExpanderMenu Спыніць
+File ExpanderMenu Файл
+Other: ExpanderPreferences Другі:
+Expander System name Распакоўшчык
+Expand ExpanderWindow Распакаваць
+Close ExpanderMenu Закрыць
+The destination is not a folder. ExpanderWindow Прызначэнне не з´яўляецца каталёгам.
+Open destination folder after extraction ExpanderPreferences Паказаць паку прызначэння пасля распакоўкі
+Set source… ExpanderMenu Задаць крыніцу…
+Select '%s' DirectoryFilePanel Пазначыць '%s'
+Show contents ExpanderMenu Паказаць змест
+Stop ExpanderWindow Спыніць
+Destination ExpanderWindow Прызначэнне
diff --git a/data/catalogs/apps/expander/de.catkeys b/data/catalogs/apps/expander/de.catkeys
index 7c85f3fb24..f628090d89 100644
--- a/data/catalogs/apps/expander/de.catkeys
+++ b/data/catalogs/apps/expander/de.catkeys
@@ -1,49 +1,49 @@
-1 german x-vnd.Haiku-Expander 187676748
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Soll das Entpacken wirklich abgebrochen werden? Die entpackten Dateien sind eventuell nicht vollständig.
-Automatically expand files ExpanderPreferences Archiv automatisch entpacken
-Automatically show contents listing ExpanderPreferences Dateiliste automatisch anzeigen
-Cancel ExpanderPreferences Abbrechen
-Cancel ExpanderWindow Abbrechen
-Close ExpanderMenu Schließen
-Close window when done expanding ExpanderPreferences Fenster nach dem Entpacken schließen
-Continue ExpanderWindow Fortsetzen
-Creating listing for '%s' ExpanderWindow Dateiliste für '%s' wird erstellt
-Destination ExpanderWindow Ziel
-Destination folder: ExpanderPreferences Zielordner:
-Error when expanding archive ExpanderWindow Fehler beim Entpacken
+1 german x-vnd.Haiku-Expander 2537908460
Expand ExpanderMenu Entpacken
-Expand ExpanderWindow Entpacken
-Expander System name Entpacker
-Expander settings ExpanderPreferences Entpacker-Einstellungen
-Expander: Choose destination DirectoryFilePanel Entpacker: Zielordner wählen
+Close window when done expanding ExpanderPreferences Fenster nach dem Entpacken schließen
+Set destination… ExpanderMenu Ziel wählen…
+Use: ExpanderPreferences Benutzerdefiniert:
+File expanded ExpanderWindow Archiv wurde entpackt
+The destination is read only. ExpanderWindow Das Ziel ist schreibgeschützt.
Expander: Open ExpanderWindow Entpacker: Öffnen
+ is not supported ExpanderWindow wird nicht unterstützt
+Expander settings ExpanderPreferences Entpacker-Einstellungen
+Select current DirectoryFilePanel Aktuellen wählen
+Source ExpanderWindow Quelle
+Error when expanding archive ExpanderWindow Fehler beim Entpacken
+Hide contents ExpanderWindow Inhalt verbergen
+Cancel ExpanderWindow Abbrechen
+Automatically expand files ExpanderPreferences Archiv automatisch entpacken
+Creating listing for '%s' ExpanderWindow Dateiliste für '%s' wird erstellt
+Continue ExpanderWindow Fortsetzen
+The destination folder does not exist. ExpanderWindow Der Zielordner existiert nicht.
+Cancel ExpanderPreferences Abbrechen
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Soll das Entpacken wirklich abgebrochen werden? Die entpackten Dateien sind eventuell nicht vollständig.
+Select DirectoryFilePanel Auswählen
+Destination folder: ExpanderPreferences Zielordner:
+Same directory as source (archive) file ExpanderPreferences Gleicher Ordner wie Quelldatei
Expanding '%s' ExpanderWindow '%s' wird entpackt
Expansion: ExpanderPreferences Entpacken:
-File ExpanderMenu Datei
-File expanded ExpanderWindow Archiv wurde entpackt
-Hide contents ExpanderWindow Inhalt verbergen
-Leave destination folder path empty ExpanderPreferences Keinen Zielordner vorgeben
-OK ExpanderPreferences OK
-Open destination folder after extraction ExpanderPreferences Zielordner nach dem Entpacken öffnen
-Other: ExpanderPreferences Allgemeines:
-Same directory as source (archive) file ExpanderPreferences Gleicher Ordner wie Quelldatei
-Select DirectoryFilePanel Auswählen
-Select ExpanderPreferences Auwählen
-Select '%s' DirectoryFilePanel '%s' wählen
-Select current DirectoryFilePanel Aktuellen wählen
-Set destination… ExpanderMenu Ziel wählen…
-Set source… ExpanderMenu Quelle wählen…
Settings ExpanderMenu Einstellungen
Settings… ExpanderMenu Einstellungen…
-Show contents ExpanderMenu Inhalt zeigen
+Expander: Choose destination DirectoryFilePanel Entpacker: Zielordner wählen
+Select ExpanderPreferences Auwählen
Show contents ExpanderWindow Inhalt zeigen
-Source ExpanderWindow Quelle
-Stop ExpanderMenu Stopp
-Stop ExpanderWindow Stopp
-The destination folder does not exist. ExpanderWindow Der Zielordner existiert nicht.
-The destination is not a folder. ExpanderWindow Das Ziel ist kein Ordner.
-The destination is read only. ExpanderWindow Das Ziel ist schreibgeschützt.
-The file doesn't exist ExpanderWindow Die Datei existiert nicht
+Automatically show contents listing ExpanderPreferences Dateiliste automatisch anzeigen
+OK ExpanderPreferences OK
+Leave destination folder path empty ExpanderPreferences Keinen Zielordner vorgeben
The folder was either moved, renamed or not\nsupported. ExpanderWindow Der Ordner wurde entweder verschoben, umbenannt oder wird nicht unterstützt.
-Use: ExpanderPreferences Benutzerdefiniert:
-is not supported ExpanderWindow wird nicht unterstützt
+The file doesn't exist ExpanderWindow Die Datei existiert nicht
+Stop ExpanderMenu Stopp
+File ExpanderMenu Datei
+Other: ExpanderPreferences Allgemeines:
+Expander System name Entpacker
+Expand ExpanderWindow Entpacken
+Close ExpanderMenu Schließen
+The destination is not a folder. ExpanderWindow Das Ziel ist kein Ordner.
+Open destination folder after extraction ExpanderPreferences Zielordner nach dem Entpacken öffnen
+Set source… ExpanderMenu Quelle wählen…
+Select '%s' DirectoryFilePanel '%s' wählen
+Show contents ExpanderMenu Inhalt zeigen
+Stop ExpanderWindow Stopp
+Destination ExpanderWindow Ziel
diff --git a/data/catalogs/apps/expander/hr.catkeys b/data/catalogs/apps/expander/hr.catkeys
new file mode 100644
index 0000000000..cd1a411387
--- /dev/null
+++ b/data/catalogs/apps/expander/hr.catkeys
@@ -0,0 +1,47 @@
+1 croatian x-vnd.Haiku-Expander 3325257262
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Jeste li sigurni da želite zaustaviti proširivanje ove\narhive?Proširene stavke možda neće biti kompletne.
+Automatically expand files ExpanderPreferences Automatski proširi datoteke
+Automatically show contents listing ExpanderPreferences Automatski pokaži izlistavanje sadržaja
+Cancel ExpanderPreferences Otkaži
+Cancel ExpanderWindow Otkaži
+Close ExpanderMenu Zatvori
+Close window when done expanding ExpanderPreferences Zatvori prozor kada je proširivanje završeno
+Continue ExpanderWindow Nastavi
+Destination ExpanderWindow Odredište
+Destination folder: ExpanderPreferences Odredišna mapa
+Error when expanding archive ExpanderWindow Greška pri proširivanju arhive
+Expand ExpanderMenu Proširi
+Expand ExpanderWindow Proširi
+Expander System name Proširivač
+Expander settings ExpanderPreferences Postavke proširivača
+Expander: Choose destination DirectoryFilePanel Proširivač:Izaberite odredište
+Expander: Open ExpanderWindow Proširivač:Otvori
+Expanding '%s' ExpanderWindow Proširujem '%s'
+Expansion: ExpanderPreferences Proširenje
+File ExpanderMenu Datoteka
+File expanded ExpanderWindow Datoteka je proširena
+Hide contents ExpanderWindow Sakrij sadržaj
+Leave destination folder path empty ExpanderPreferences Ostavi putnju odredišne mape praznom
+OK ExpanderPreferences U redu
+Open destination folder after extraction ExpanderPreferences Otvori odredišnu mapu nakon raspakiranja
+Other: ExpanderPreferences Ostalo:
+Same directory as source (archive) file ExpanderPreferences Isti direktorij kao i izvorna (arhiva) datoteka
+Select DirectoryFilePanel Odaberi
+Select ExpanderPreferences Odaberi
+Select '%s' DirectoryFilePanel Odaberi '%s'
+Select current DirectoryFilePanel Odaberi trenutno
+Set destination… ExpanderMenu Postavi odredište...
+Set source… ExpanderMenu Postavi izvor...
+Settings ExpanderMenu Postavke
+Settings… ExpanderMenu Postavke...
+Show contents ExpanderMenu Pokaži sadržaj
+Show contents ExpanderWindow Pokaži sadržaj
+Source ExpanderWindow Izvor
+Stop ExpanderMenu Zaustavi
+Stop ExpanderWindow Zaustavi
+The destination is not a folder. ExpanderWindow Odredište nije mapa.
+The destination is read only. ExpanderWindow Odredište je samo za čitanje
+The file doesn't exist ExpanderWindow Datoteka ne postoji
+The folder was either moved, renamed or not\nsupported. ExpanderWindow Mapa je ili premještena,preimenovana ili nije\npodržana.
+Use: ExpanderPreferences Korisiti:
+is not supported ExpanderWindow nije podržano
diff --git a/data/catalogs/apps/expander/lt.catkeys b/data/catalogs/apps/expander/lt.catkeys
index 9c7762152a..043400ba15 100644
--- a/data/catalogs/apps/expander/lt.catkeys
+++ b/data/catalogs/apps/expander/lt.catkeys
@@ -1,31 +1,49 @@
-1 lithuanian x-vnd.Haiku-Expander 3653851738
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Tikrai norite stabdyti skleidimą šio\narchyvo? Kai kurios bylos gali būti ne iki galo išskleistos.
-Cancel ExpanderWindow Atsisakyti
-Close ExpanderMenu Uždaryti
-Continue ExpanderWindow Tęsti
-Destination ExpanderWindow Paskirtis
-Error when expanding archive ExpanderWindow Klaida išskleidžiant bylą
+1 lithuanian x-vnd.Haiku-Expander 2537908460
Expand ExpanderMenu Išskleisti
-Expand ExpanderWindow Išskleisti
-Expander: Choose destination DirectoryFilePanel Skleideris: šaltinio vietos parinkimas
-Expander: Open ExpanderWindow Skleideris: Atidaryti
-File ExpanderMenu Byla
-File expanded ExpanderWindow Byla išskleista
-Hide contents ExpanderWindow Slėpti turinį
-Select DirectoryFilePanel Parinkti
-Select '%s' DirectoryFilePanel Rinktis „%s“
+Close window when done expanding ExpanderPreferences Viską išskleidus, užverti langą
+Set destination… ExpanderMenu Paskirties vieta…
+Use: ExpanderPreferences Naudoti:
+File expanded ExpanderWindow Failas išskleistas
+The destination is read only. ExpanderWindow Paskirties vieta skirta tik skaitymui.
+Expander: Open ExpanderWindow Skleidiklis: parinkite archyvą išskleidimui
+ is not supported ExpanderWindow nepalaikomas
+Expander settings ExpanderPreferences Skleidiklio nuostatos
Select current DirectoryFilePanel Parinkti esamą
-Set destination… ExpanderMenu Paskirti vietą…
-Set source… ExpanderMenu Parinkti šaltinį…
-Settings ExpanderMenu Nustatymai
-Settings… ExpanderMenu Nustatymai…
-Show contents ExpanderMenu Rodyti turinį
-Show contents ExpanderWindow Rodyti turinį
Source ExpanderWindow Šaltinis
-Stop ExpanderMenu Stop
-Stop ExpanderWindow Stop
-The destination folder does not exist. ExpanderWindow Paskirties aplanko nėra.
-The destination is not a folder. ExpanderWindow Paskirties vieta nėra aplankas.
-The destination is read only. ExpanderWindow Paskirties vieta tik skaitymui.
-The file doesn't exist ExpanderWindow Tokios bylos nėra
-The folder was either moved, renamed or not\nsupported. ExpanderWindow Aplankas buvo perkeltas, pervadintas arba\nnepalaikomas.
+Error when expanding archive ExpanderWindow Klaida išskleidžiant archyvą
+Hide contents ExpanderWindow Nerodyti turinio
+Cancel ExpanderWindow Atsisakyti
+Automatically expand files ExpanderPreferences Automatiškai išskleisti failus
+Creating listing for '%s' ExpanderWindow Generuojamas „%s“ turinio sąrašas
+Continue ExpanderWindow Tęsti
+The destination folder does not exist. ExpanderWindow Paskirties aplankas neegzistuoja.
+Cancel ExpanderPreferences Atsisakyti
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Ar tikrai norite nutraukti šio archyvo išskleidimą? Gali būti, kad išskleisti dar ne visi elementai.
+Select DirectoryFilePanel Parinkti
+Destination folder: ExpanderPreferences Numatytasis paskirties aplankas:
+Same directory as source (archive) file ExpanderPreferences Aplankas, kuriame yra išskleidžiamas archyvas
+Expanding '%s' ExpanderWindow Išskleidžiamas archyvas „%s“
+Expansion: ExpanderPreferences Išskleidimas:
+Settings ExpanderMenu Nuostatos
+Settings… ExpanderMenu Nuostatos…
+Expander: Choose destination DirectoryFilePanel Skleidiklis: parinkite paskirties vietą
+Select ExpanderPreferences Rinktis
+Show contents ExpanderWindow Rodyti turinį
+Automatically show contents listing ExpanderPreferences Automatiškai rodyti turinį
+OK ExpanderPreferences Gerai
+Leave destination folder path empty ExpanderPreferences Paskirties aplanko lauką palikti tuščią
+The folder was either moved, renamed or not\nsupported. ExpanderWindow Aplankas buvo perkeltas, pervardintas arba yra nepalaikomas.
+The file doesn't exist ExpanderWindow Failas neegzistuoja
+Stop ExpanderMenu Nutraukti
+File ExpanderMenu Failas
+Other: ExpanderPreferences Kita:
+Expander System name Skleidiklis
+Expand ExpanderWindow Išskleisti
+Close ExpanderMenu Užverti
+The destination is not a folder. ExpanderWindow Nurodyta paskirties vieta nėra aplankas.
+Open destination folder after extraction ExpanderPreferences Viską išskleidus, atverti paskirties aplanką
+Set source… ExpanderMenu Parinkti šaltinį…
+Select '%s' DirectoryFilePanel Rinktis „%s“
+Show contents ExpanderMenu Rodyti turinį
+Stop ExpanderWindow Nutraukti
+Destination ExpanderWindow Paskirtis
diff --git a/data/catalogs/apps/expander/nl.catkeys b/data/catalogs/apps/expander/nl.catkeys
index 07add55b6f..dc6beefbe9 100644
--- a/data/catalogs/apps/expander/nl.catkeys
+++ b/data/catalogs/apps/expander/nl.catkeys
@@ -1,32 +1,49 @@
-1 dutch x-vnd.Haiku-Expander 1989232919
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Bent u zeker dat u het uitpakken van het archief wilt stoppen? De uitgepakte items zijn mogelijk niet compleet.
-Cancel ExpanderWindow Annuleren
-Close ExpanderMenu Sluiten
-Continue ExpanderWindow Doorgaan
-Destination ExpanderWindow Doel
-Error when expanding archive ExpanderWindow Fout tijdens uitpakken archief
+1 dutch; flemish x-vnd.Haiku-Expander 2537908460
Expand ExpanderMenu Uitpakken
-Expand ExpanderWindow Uitpakken
-Expander: Choose destination DirectoryFilePanel Expander: Kies doel
-Expander: Open ExpanderWindow Expander: Openen
-File ExpanderMenu Bestand
-File expanded ExpanderWindow Bestand uitgepakt
-Hide contents ExpanderWindow Inhoud verbergen
-Select DirectoryFilePanel Selecteren
-Select '%s' DirectoryFilePanel Selecteer '%s'
-Select current DirectoryFilePanel Huidige selecteren
+Close window when done expanding ExpanderPreferences Sluit dit venster wanneer het uitpakken klaar is
Set destination… ExpanderMenu Bepaal doel…
-Set source… ExpanderMenu Bron bepalen…
+Use: ExpanderPreferences Gebruik:
+File expanded ExpanderWindow Bestand uitgepakt
+The destination is read only. ExpanderWindow Het doel is alleen-lezen.
+Expander: Open ExpanderWindow Expander: Openen
+ is not supported ExpanderWindow is niet ondersteund
+Expander settings ExpanderPreferences Expander-instellingen
+Select current DirectoryFilePanel Huidige selecteren
+Source ExpanderWindow Bron
+Error when expanding archive ExpanderWindow Fout tijdens uitpakken archief
+Hide contents ExpanderWindow Inhoud verbergen
+Cancel ExpanderWindow Annuleren
+Automatically expand files ExpanderPreferences Bestanden automatisch uitpakken
+Creating listing for '%s' ExpanderWindow Creëren van een overzicht voor '%s'
+Continue ExpanderWindow Doorgaan
+The destination folder does not exist. ExpanderWindow De doelmap bestaat niet.
+Cancel ExpanderPreferences Annuleren
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Bent u zeker dat u het uitpakken van het archief wilt stoppen? De uitgepakte items zijn mogelijk niet compleet.
+Select DirectoryFilePanel Selecteren
+Destination folder: ExpanderPreferences Doelmap:
+Same directory as source (archive) file ExpanderPreferences Dezelfde map als het bronbestand (archief)
+Expanding '%s' ExpanderWindow Bezig met het uitpakken van '%s'
+Expansion: ExpanderPreferences Uitpakken:
Settings ExpanderMenu Instellingen
Settings… ExpanderMenu Instellingen…
-Show contents ExpanderMenu Toon inhoud
+Expander: Choose destination DirectoryFilePanel Expander: Kies doel
+Select ExpanderPreferences Selecteren
Show contents ExpanderWindow Toon inhoud
-Source ExpanderWindow Bron
-Stop ExpanderMenu Stoppen
-Stop ExpanderWindow Stop
-The destination folder does not exist. ExpanderWindow De doelmap bestaat niet.
-The destination is not a folder. ExpanderWindow Het doel is geen map.
-The destination is read only. ExpanderWindow Het doel is alleen-lezen.
-The file doesn't exist ExpanderWindow Het bestand bestaat niet
+Automatically show contents listing ExpanderPreferences Automatisch een lijst met inhoud weergeven
+OK ExpanderPreferences Ok
+Leave destination folder path empty ExpanderPreferences Laat doelmap pad leeg
The folder was either moved, renamed or not\nsupported. ExpanderWindow De map werd verplaatst, hernoemd of niet\nondersteund.
-is not supported ExpanderWindow wordt niet ondersteund
+The file doesn't exist ExpanderWindow Het bestand bestaat niet
+Stop ExpanderMenu Stoppen
+File ExpanderMenu Bestand
+Other: ExpanderPreferences Andere:
+Expander System name Expander
+Expand ExpanderWindow Uitpakken
+Close ExpanderMenu Sluiten
+The destination is not a folder. ExpanderWindow Het doel is geen map.
+Open destination folder after extraction ExpanderPreferences Open doelmap na het uitpakken
+Set source… ExpanderMenu Bron bepalen…
+Select '%s' DirectoryFilePanel Selecteer '%s'
+Show contents ExpanderMenu Toon inhoud
+Stop ExpanderWindow Stop
+Destination ExpanderWindow Doel
diff --git a/data/catalogs/apps/expander/ru.catkeys b/data/catalogs/apps/expander/ru.catkeys
index ca6765d1c5..2877985377 100644
--- a/data/catalogs/apps/expander/ru.catkeys
+++ b/data/catalogs/apps/expander/ru.catkeys
@@ -1,49 +1,48 @@
-1 russian x-vnd.Haiku-Expander 187676748
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Вы уверены, что хотите остановить распаковку этого\nархива? Некоторые файлы могли быть извлечены не полностью.
-Automatically expand files ExpanderPreferences Автоматически распаковывать файлы
-Automatically show contents listing ExpanderPreferences Автоматически отображать содержимое архива
-Cancel ExpanderPreferences Отмена
-Cancel ExpanderWindow Отмена
-Close ExpanderMenu Закрыть
-Close window when done expanding ExpanderPreferences Закрывать окно после распаковки
-Continue ExpanderWindow Продолжить
-Creating listing for '%s' ExpanderWindow Создается список файлов для '%s'
-Destination ExpanderWindow Назначение
-Destination folder: ExpanderPreferences Путь для извлечения
-Error when expanding archive ExpanderWindow Ошибка при распаковке файла
+1 russian x-vnd.Haiku-Expander 1852295567
Expand ExpanderMenu Распаковать
-Expand ExpanderWindow Извлечь
-Expander System name Распаковщик
-Expander settings ExpanderPreferences Настройки извлечения
-Expander: Choose destination DirectoryFilePanel Expander: Выбор папки для извлечения
+Close window when done expanding ExpanderPreferences Закрывать окно после распаковки
+Set destination… ExpanderMenu Путь для извлечения…
+Use: ExpanderPreferences Использовать:
+File expanded ExpanderWindow Файл распакован
+The destination is read only. ExpanderWindow Путь назначения доступен только для чтения.
Expander: Open ExpanderWindow Распаковщик: Открыть
+Expander settings ExpanderPreferences Настройки извлечения
+Select current DirectoryFilePanel Выбрать текущий
+Source ExpanderWindow Источник
+Error when expanding archive ExpanderWindow Ошибка при распаковке файла
+Hide contents ExpanderWindow Скрыть содержимое
+Cancel ExpanderWindow Отмена
+Automatically expand files ExpanderPreferences Автоматически распаковывать файлы
+Creating listing for '%s' ExpanderWindow Создается список файлов для '%s'
+Continue ExpanderWindow Продолжить
+The destination folder does not exist. ExpanderWindow Папка назначения не существует.
+Cancel ExpanderPreferences Отмена
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Вы уверены, что хотите остановить распаковку этого\nархива? Некоторые файлы могли быть извлечены не полностью.
+Select DirectoryFilePanel Выбрать
+Destination folder: ExpanderPreferences Путь для извлечения
+Same directory as source (archive) file ExpanderPreferences Использовать ту же папку где находится архив
Expanding '%s' ExpanderWindow Распаковывается '%s'
Expansion: ExpanderPreferences Извлечение:
-File ExpanderMenu Файл
-File expanded ExpanderWindow Файл распакован
-Hide contents ExpanderWindow Скрыть содержимое
-Leave destination folder path empty ExpanderPreferences Оставить путь распаковки пустым
-OK ExpanderPreferences ОК
-Open destination folder after extraction ExpanderPreferences Открыть папку с извлеченными файлами после распаковки
-Other: ExpanderPreferences Другое:
-Same directory as source (archive) file ExpanderPreferences Использовать ту же папку где находится архив
-Select DirectoryFilePanel Выбрать
-Select ExpanderPreferences Выбрать
-Select '%s' DirectoryFilePanel Выбрать '%s'
-Select current DirectoryFilePanel Выбрать текущий
-Set destination… ExpanderMenu Путь для извлечения…
-Set source… ExpanderMenu Выбрать источник…
Settings ExpanderMenu Настройки
Settings… ExpanderMenu Настройки…
-Show contents ExpanderMenu Показать содержимое
+Expander: Choose destination DirectoryFilePanel Expander: Выбор папки для извлечения
+Select ExpanderPreferences Выбрать
Show contents ExpanderWindow Показать содержимое
-Source ExpanderWindow Источник
-Stop ExpanderMenu Остановить
-Stop ExpanderWindow Остановить
-The destination folder does not exist. ExpanderWindow Папка назначения не существует.
-The destination is not a folder. ExpanderWindow Указанный объект не является папкой.
-The destination is read only. ExpanderWindow Путь назначения доступен только для чтения.
-The file doesn't exist ExpanderWindow Файл не существует
+Automatically show contents listing ExpanderPreferences Автоматически отображать содержимое архива
+OK ExpanderPreferences ОК
+Leave destination folder path empty ExpanderPreferences Оставить путь распаковки пустым
The folder was either moved, renamed or not\nsupported. ExpanderWindow Папка была перемещена, переименована либо не\nподдерживается.
-Use: ExpanderPreferences Использовать:
-is not supported ExpanderWindow не поддерживается
+The file doesn't exist ExpanderWindow Файл не существует
+Stop ExpanderMenu Остановить
+File ExpanderMenu Файл
+Other: ExpanderPreferences Другое:
+Expander System name Распаковщик
+Expand ExpanderWindow Извлечь
+Close ExpanderMenu Закрыть
+The destination is not a folder. ExpanderWindow Указанный объект не является папкой.
+Open destination folder after extraction ExpanderPreferences Открыть папку с извлеченными файлами после распаковки
+Set source… ExpanderMenu Выбрать источник…
+Select '%s' DirectoryFilePanel Выбрать '%s'
+Show contents ExpanderMenu Показать содержимое
+Stop ExpanderWindow Остановить
+Destination ExpanderWindow Назначение
diff --git a/data/catalogs/apps/expander/sk.catkeys b/data/catalogs/apps/expander/sk.catkeys
index 6125f76a20..a1e1fbebd1 100644
--- a/data/catalogs/apps/expander/sk.catkeys
+++ b/data/catalogs/apps/expander/sk.catkeys
@@ -1,49 +1,49 @@
-1 slovak x-vnd.Haiku-Expander 187676748
-Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Ste si istý, že chcete zastaviť rozbaľovanie tohto archívu?\nRozbalené položky nemusia byť úplné.
-Automatically expand files ExpanderPreferences Automaticky rozbaľovať súbory
-Automatically show contents listing ExpanderPreferences Automaticky zobrazovať obsah
-Cancel ExpanderPreferences Zrušiť
-Cancel ExpanderWindow Zrušiť
-Close ExpanderMenu Zatvoriť
-Close window when done expanding ExpanderPreferences Zatvoriť okno po dokončení rozbaľovania
-Continue ExpanderWindow Pokračovať
-Creating listing for '%s' ExpanderWindow Vytvára sa zoznam pre „%s“
-Destination ExpanderWindow Cieľ
-Destination folder: ExpanderPreferences Cieľový priečinok:
-Error when expanding archive ExpanderWindow Chyba počas expandovania archívu
+1 slovak x-vnd.Haiku-Expander 2537908460
Expand ExpanderMenu Rozbaliť
-Expand ExpanderWindow Rozbaliť
-Expander System name Rozbaľovač
-Expander settings ExpanderPreferences Nastavenia rozbaľovača
-Expander: Choose destination DirectoryFilePanel Rozbaľovač: Vyberte cieľ
+Close window when done expanding ExpanderPreferences Zatvoriť okno po dokončení rozbaľovania
+Set destination… ExpanderMenu Nastaviť cieľ…
+Use: ExpanderPreferences Použiť:
+File expanded ExpanderWindow Súbor rozbalený
+The destination is read only. ExpanderWindow Cieľ je len na čítanie.
Expander: Open ExpanderWindow Rozbaľovač: Otvoriť
+ is not supported ExpanderWindow nie je podporované
+Expander settings ExpanderPreferences Nastavenia rozbaľovača
+Select current DirectoryFilePanel Vybrať aktuálne
+Source ExpanderWindow Zdroj
+Error when expanding archive ExpanderWindow Chyba počas expandovania archívu
+Hide contents ExpanderWindow Skryť obsah
+Cancel ExpanderWindow Zrušiť
+Automatically expand files ExpanderPreferences Automaticky rozbaľovať súbory
+Creating listing for '%s' ExpanderWindow Vytvára sa zoznam pre „%s“
+Continue ExpanderWindow Pokračovať
+The destination folder does not exist. ExpanderWindow Cieľový priečinok neexistuje.
+Cancel ExpanderPreferences Zrušiť
+Are you sure you want to stop expanding this\narchive? The expanded items may not be complete. ExpanderWindow Ste si istý, že chcete zastaviť rozbaľovanie tohto archívu?\nRozbalené položky nemusia byť úplné.
+Select DirectoryFilePanel Vybrať
+Destination folder: ExpanderPreferences Cieľový priečinok:
+Same directory as source (archive) file ExpanderPreferences Rovnaký ako zdrojový (archívny) súbor
Expanding '%s' ExpanderWindow Rozbaľuje sa „%s“
Expansion: ExpanderPreferences Rozbalenie:
-File ExpanderMenu Súbor
-File expanded ExpanderWindow Súbor rozbalený
-Hide contents ExpanderWindow Skryť obsah
-Leave destination folder path empty ExpanderPreferences Ponechať cestu k cieľovému priečinku prázdnu
-OK ExpanderPreferences OK
-Open destination folder after extraction ExpanderPreferences Otvoriť cieľový priečinok po rozbalení
-Other: ExpanderPreferences Iné:
-Same directory as source (archive) file ExpanderPreferences Rovnaký ako zdrojový (archívny) súbor
-Select DirectoryFilePanel Vybrať
-Select ExpanderPreferences Vybrať
-Select '%s' DirectoryFilePanel Vybrať „%s“
-Select current DirectoryFilePanel Vybrať aktuálne
-Set destination… ExpanderMenu Nastaviť cieľ...
-Set source… ExpanderMenu Nastaviť zdroj...
Settings ExpanderMenu Nastavenia
-Settings… ExpanderMenu Nastavenia...
-Show contents ExpanderMenu Zobraziť obsah
+Settings… ExpanderMenu Nastavenia…
+Expander: Choose destination DirectoryFilePanel Rozbaľovač: Vyberte cieľ
+Select ExpanderPreferences Vybrať
Show contents ExpanderWindow Zobraziť obsah
-Source ExpanderWindow Zdroj
-Stop ExpanderMenu Zastaviť
-Stop ExpanderWindow Zastaviť
-The destination folder does not exist. ExpanderWindow Cieľový priečinok neexistuje.
-The destination is not a folder. ExpanderWindow Cieľ nie je priečinok
-The destination is read only. ExpanderWindow Cieľ je len na čítanie.
-The file doesn't exist ExpanderWindow Súbor neexistuje
+Automatically show contents listing ExpanderPreferences Automaticky zobrazovať obsah
+OK ExpanderPreferences OK
+Leave destination folder path empty ExpanderPreferences Ponechať cestu k cieľovému priečinku prázdnu
The folder was either moved, renamed or not\nsupported. ExpanderWindow Priečinok bol presunutý, premenovaný\nalebo nie je podporovaný.
-Use: ExpanderPreferences Použiť:
-is not supported ExpanderWindow nie je podporovaný
+The file doesn't exist ExpanderWindow Súbor neexistuje
+Stop ExpanderMenu Zastaviť
+File ExpanderMenu Súbor
+Other: ExpanderPreferences Iné:
+Expander System name Rozbaľovač
+Expand ExpanderWindow Rozbaliť
+Close ExpanderMenu Zatvoriť
+The destination is not a folder. ExpanderWindow Cieľ nie je priečinok.
+Open destination folder after extraction ExpanderPreferences Otvoriť cieľový priečinok po rozbalení
+Set source… ExpanderMenu Nastaviť zdroj…
+Select '%s' DirectoryFilePanel Vybrať „%s“
+Show contents ExpanderMenu Zobraziť obsah
+Stop ExpanderWindow Zastaviť
+Destination ExpanderWindow Cieľ
diff --git a/data/catalogs/apps/fontdemo/be.catkeys b/data/catalogs/apps/fontdemo/be.catkeys
new file mode 100644
index 0000000000..bdbc7cddd0
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/be.catkeys
@@ -0,0 +1,22 @@
+1 belarusian x-vnd.Haiku-FontDemo 1769653414
+Outline: ControlView Абрыс:
+Size: 50 ControlView Памер: 50
+Stop cycling ControlView спынiць цыкл
+Shear: 90 ControlView Зрух: 90
+Spacing: 0 ControlView Адбіўка:
+Haiku, Inc. FontDemoView Haiku, Inc.
+Rotation: %d ControlView Паварот: %d
+Shear: %d ControlView Зрух: %d
+Spacing: %d ControlView Адбіўка:
+Cycle fonts ControlView Паўтор шрыфтоў
+Font: ControlView Шрыфт:
+Rotation: 0 ControlView Паварот:0
+Drawing mode: ControlView Рэжым малявання:
+FontDemo FontDemo FontDemo
+Haiku, Inc. ControlView Haiku, Inc.
+Controls FontDemo Кiраванне
+Outline: %d ControlView Абрыс: %d
+Text: ControlView Тэкст:
+Antialiased text ControlView Згладжаны тэкст
+Bounding boxes ControlView Абмежавальныя рамкі
+Size: %d ControlView Памер: %d
diff --git a/data/catalogs/apps/fontdemo/de.catkeys b/data/catalogs/apps/fontdemo/de.catkeys
new file mode 100644
index 0000000000..6f6921e7e9
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/de.catkeys
@@ -0,0 +1,22 @@
+1 german x-vnd.Haiku-FontDemo 1769653414
+Outline: ControlView Kontur:
+Size: 50 ControlView Größe: 50
+Stop cycling ControlView Schriftwechsel anhalten
+Shear: 90 ControlView Neigung: 90
+Spacing: 0 ControlView Abstand: 0
+Haiku, Inc. FontDemoView Haiku, Inc.
+Rotation: %d ControlView Drehung: %d
+Shear: %d ControlView Neigung: %d
+Spacing: %d ControlView Abstand: %d
+Cycle fonts ControlView Schriften wechseln
+Font: ControlView Schrift:
+Rotation: 0 ControlView Drehung: 0
+Drawing mode: ControlView Zeichenmodus:
+FontDemo FontDemo Schrift-Demo
+Haiku, Inc. ControlView Haiku, Inc.
+Controls FontDemo Bedienelemente
+Outline: %d ControlView Kontur: %d
+Text: ControlView Text:
+Antialiased text ControlView Text-Antialiasing
+Bounding boxes ControlView Rahmen
+Size: %d ControlView Größe: %d
diff --git a/data/catalogs/apps/fontdemo/fi.catkeys b/data/catalogs/apps/fontdemo/fi.catkeys
new file mode 100644
index 0000000000..666b04bf9d
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/fi.catkeys
@@ -0,0 +1,22 @@
+1 finnish x-vnd.Haiku-FontDemo 1769653414
+Antialiased text ControlView Peitenimetön teksti
+Bounding boxes ControlView Reunustavat laatikot
+Controls FontDemo Ohjaimet
+Cycle fonts ControlView Kierroskirjasimet
+Drawing mode: ControlView Piirrostila:
+Font: ControlView Kirjasin:
+FontDemo FontDemo Kirjasindemo
+Haiku, Inc. ControlView Haiku, Inc.
+Haiku, Inc. FontDemoView Haiku, Inc.
+Outline: ControlView Ääriviiva:
+Outline: %d ControlView Ääriviiva: %d
+Rotation: %d ControlView Kierto: %d
+Rotation: 0 ControlView Kierto: 0
+Shear: %d ControlView Leikkaus: %d
+Shear: 90 ControlView Leikkaus: 90
+Size: %d ControlView Koko: %d
+Size: 50 ControlView Koko: 50
+Spacing: %d ControlView Riviväli: %d
+Spacing: 0 ControlView Riviväli: 0
+Stop cycling ControlView Lopeta kierros
+Text: ControlView Teksti:
diff --git a/data/catalogs/apps/fontdemo/lt.catkeys b/data/catalogs/apps/fontdemo/lt.catkeys
new file mode 100644
index 0000000000..91e5005ac6
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/lt.catkeys
@@ -0,0 +1,22 @@
+1 lithuanian x-vnd.Haiku-FontDemo 1769653414
+Outline: ControlView Apvadas:
+Size: 50 ControlView Dydis: 50
+Stop cycling ControlView Nebekeisti šriftų
+Shear: 90 ControlView Pasvirimas: 90
+Spacing: 0 ControlView Protarpiai: 0
+Haiku, Inc. FontDemoView Haiku, Inc.
+Rotation: %d ControlView Pasukimas: %d
+Shear: %d ControlView Pasvirimas: %d
+Spacing: %d ControlView Protarpiai: %d
+Cycle fonts ControlView Cikliškai keisti šriftus
+Font: ControlView Šriftas:
+Rotation: 0 ControlView Pasukimas: 0
+Drawing mode: ControlView Piešimo būdas:
+FontDemo FontDemo Šriftų demonstracija
+Haiku, Inc. ControlView Haiku, Inc.
+Controls FontDemo Valdikliai
+Outline: %d ControlView Apvadas: %d
+Text: ControlView Tekstas:
+Antialiased text ControlView Glodinti tekstą
+Bounding boxes ControlView Rodyti simbolių ribas
+Size: %d ControlView Dydis: %d
diff --git a/data/catalogs/apps/fontdemo/nl.catkeys b/data/catalogs/apps/fontdemo/nl.catkeys
new file mode 100644
index 0000000000..df20a70814
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/nl.catkeys
@@ -0,0 +1,22 @@
+1 dutch; flemish x-vnd.Haiku-FontDemo 1769653414
+Outline: ControlView Omlijning:
+Size: 50 ControlView Grootte: 50
+Stop cycling ControlView Stop met fietsen
+Shear: 90 ControlView Schuintrekken: 90
+Spacing: 0 ControlView Afstand: 0
+Haiku, Inc. FontDemoView Haiku, Inc.
+Rotation: %d ControlView Rotatie: %d
+Shear: %d ControlView Schuintrekken: %d
+Spacing: %d ControlView Afstand: %d
+Cycle fonts ControlView Lettertypen doorlopen
+Font: ControlView Lettertype:
+Rotation: 0 ControlView Rotatie: 0
+Drawing mode: ControlView Tekenmodus:
+FontDemo FontDemo FontDemo
+Haiku, Inc. ControlView Haiku, Inc.
+Controls FontDemo Besturing
+Outline: %d ControlView Omlijning: %d
+Text: ControlView Tekst:
+Antialiased text ControlView Tekst met antialiassing
+Bounding boxes ControlView Omsluitende kaders
+Size: %d ControlView Grootte: %d
diff --git a/data/catalogs/apps/fontdemo/sk.catkeys b/data/catalogs/apps/fontdemo/sk.catkeys
new file mode 100644
index 0000000000..042107d75b
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/sk.catkeys
@@ -0,0 +1,22 @@
+1 slovak x-vnd.Haiku-FontDemo 1769653414
+Outline: ControlView Obrys:
+Size: 50 ControlView Veľkosť: 50
+Stop cycling ControlView Zastaviť opakovanie
+Shear: 90 ControlView Skosenie: 90
+Spacing: 0 ControlView Rozostupy: 0
+Haiku, Inc. FontDemoView Haiku, Inc.
+Rotation: %d ControlView Otočenie: %d
+Shear: %d ControlView Skosenie: %d
+Spacing: %d ControlView Rozostupy: %d
+Cycle fonts ControlView Písma dokola
+Font: ControlView Písmo:
+Rotation: 0 ControlView Otočenie: 0
+Drawing mode: ControlView Režim kreslenia:
+FontDemo FontDemo Demo Písiem
+Haiku, Inc. ControlView Haiku, Inc.
+Controls FontDemo Ovládacie prvky
+Outline: %d ControlView Obrys: %d
+Text: ControlView Text:
+Antialiased text ControlView Antialiasovaný text
+Bounding boxes ControlView Okraje ohraničenia
+Size: %d ControlView Veľkosť: %d
diff --git a/data/catalogs/apps/fontdemo/sv.catkeys b/data/catalogs/apps/fontdemo/sv.catkeys
new file mode 100644
index 0000000000..c9863f8c2a
--- /dev/null
+++ b/data/catalogs/apps/fontdemo/sv.catkeys
@@ -0,0 +1,19 @@
+1 swedish x-vnd.Haiku-FontDemo 3491224702
+Antialiased text ControlView Kantutjämnad text
+Controls FontDemo Kontroller
+Cycle fonts ControlView Rotera typsnitt
+Drawing mode: ControlView Ritläge:
+Font: ControlView Typsnitt:
+FontDemo FontDemo TypsnittDemo
+Haiku, Inc. ControlView Haiku, Inc.
+Haiku, Inc. FontDemoView Haiku, Inc.
+Outline: ControlView Kontur:
+Outline: %d ControlView Kontur: %d
+Rotation: %d ControlView Rotation: %d
+Rotation: 0 ControlView Rotation: 0
+Size: %d ControlView Storlek: %d
+Size: 50 ControlView Storlek: 50
+Spacing: %d ControlView Avstånd: %d
+Spacing: 0 ControlView Avstånd: 0
+Stop cycling ControlView Sluta rotera
+Text: ControlView Text:
diff --git a/data/catalogs/apps/glteapot/be.catkeys b/data/catalogs/apps/glteapot/be.catkeys
index b0a2bf6584..7947745a67 100644
--- a/data/catalogs/apps/glteapot/be.catkeys
+++ b/data/catalogs/apps/glteapot/be.catkeys
@@ -1,24 +1,24 @@
1 belarusian x-vnd.Haiku-GLTeapot 2890609668
-Add a teapot TeapotWindow Дадаць чайнік
-Backface culling TeapotWindow Адкідаць заднія
-Blue TeapotWindow Блакітны
-FPS display TeapotWindow Паказваць ФПС
-File TeapotWindow Файл
-Filled polygons TeapotWindow Запоўненыя палігоны
-Fog TeapotWindow Туман
-GLTeapot System name GL Чайнік
-Gouraud shading TeapotWindow Адценне Gouraud
-Green TeapotWindow Зялёны
-Lighting TeapotWindow Падсветка
-Lights TeapotWindow Ліхтары
-Lower left TeapotWindow Знізу злева
-Off TeapotWindow Выключыць
-Options TeapotWindow Наладкі
-Perspective TeapotWindow Перспектыва
-Quit TeapotWindow Выйсці
-Red TeapotWindow Чырвоны
-Right TeapotWindow Зправа
Upper center TeapotWindow Зверху
+Lighting TeapotWindow Падсветка
+Off TeapotWindow Выключыць
+Lower left TeapotWindow Знізу злева
White TeapotWindow Белы
Yellow TeapotWindow Жоўты
+Blue TeapotWindow Блакітны
+Gouraud shading TeapotWindow Адценне Gouraud
+Quit TeapotWindow Выйсці
+Filled polygons TeapotWindow Запоўненыя палігоны
+Fog TeapotWindow Туман
+Backface culling TeapotWindow Адкідаць заднія
Z-buffered TeapotWindow Z-буферызаваны
+File TeapotWindow Файл
+Options TeapotWindow Наладкі
+Perspective TeapotWindow Перспектыва
+GLTeapot System name GL Чайнік
+Green TeapotWindow Зялёны
+Right TeapotWindow Зправа
+FPS display TeapotWindow Паказваць ФПС
+Add a teapot TeapotWindow Дадаць чайнік
+Red TeapotWindow Чырвоны
+Lights TeapotWindow Ліхтары
diff --git a/data/catalogs/apps/glteapot/de.catkeys b/data/catalogs/apps/glteapot/de.catkeys
index 7086e6057f..74341dc872 100644
--- a/data/catalogs/apps/glteapot/de.catkeys
+++ b/data/catalogs/apps/glteapot/de.catkeys
@@ -1,24 +1,24 @@
1 german x-vnd.Haiku-GLTeapot 2890609668
-Add a teapot TeapotWindow Eine Teekanne hinzufügen
-Backface culling TeapotWindow Backface Culling
-Blue TeapotWindow Blau
-FPS display TeapotWindow FPS-Anzeige
-File TeapotWindow Datei
-Filled polygons TeapotWindow Gefüllte Polygone
-Fog TeapotWindow Nebel
-GLTeapot System name GL-Teekanne
-Gouraud shading TeapotWindow Gouraud Shading
-Green TeapotWindow Grün
-Lighting TeapotWindow Beleuchtung
-Lights TeapotWindow Lichtquellen
-Lower left TeapotWindow Links unten
-Off TeapotWindow Aus
-Options TeapotWindow Optionen
-Perspective TeapotWindow Perspektive
-Quit TeapotWindow Beenden
-Red TeapotWindow Rot
-Right TeapotWindow Rechts
Upper center TeapotWindow Mitte oben
+Lighting TeapotWindow Beleuchtung
+Off TeapotWindow Aus
+Lower left TeapotWindow Links unten
White TeapotWindow Weiß
Yellow TeapotWindow Gelb
+Blue TeapotWindow Blau
+Gouraud shading TeapotWindow Gouraud Shading
+Quit TeapotWindow Beenden
+Filled polygons TeapotWindow Gefüllte Polygone
+Fog TeapotWindow Nebel
+Backface culling TeapotWindow Backface Culling
Z-buffered TeapotWindow Z-Buffering
+File TeapotWindow Datei
+Options TeapotWindow Optionen
+Perspective TeapotWindow Perspektive
+GLTeapot System name GL-Teekanne
+Green TeapotWindow Grün
+Right TeapotWindow Rechts
+FPS display TeapotWindow FPS-Anzeige
+Add a teapot TeapotWindow Eine Teekanne hinzufügen
+Red TeapotWindow Rot
+Lights TeapotWindow Lichtquellen
diff --git a/data/catalogs/apps/glteapot/lt.catkeys b/data/catalogs/apps/glteapot/lt.catkeys
new file mode 100644
index 0000000000..8b237ca34e
--- /dev/null
+++ b/data/catalogs/apps/glteapot/lt.catkeys
@@ -0,0 +1,24 @@
+1 lithuanian x-vnd.Haiku-GLTeapot 2890609668
+Upper center TeapotWindow Viršuje centre
+Lighting TeapotWindow Apšvietimas
+Off TeapotWindow Išjungta
+Lower left TeapotWindow Apačioje kairėje
+White TeapotWindow Balta
+Yellow TeapotWindow Geltona
+Blue TeapotWindow Mėlyna
+Gouraud shading TeapotWindow Guro šešėliavimas
+Quit TeapotWindow Baigti darbą
+Filled polygons TeapotWindow Užpildyti daugiakampiai
+Fog TeapotWindow Rūkas
+Backface culling TeapotWindow Nugarėlių atranka
+Z-buffered TeapotWindow Z–buferiavimas
+File TeapotWindow Failas
+Options TeapotWindow Parinktys
+Perspective TeapotWindow Perspektyva
+GLTeapot System name Arbatinukas
+Green TeapotWindow Žalia
+Right TeapotWindow Dešinėje
+FPS display TeapotWindow Kadrų dažnio indikacija
+Add a teapot TeapotWindow Pridėti arbatinuką
+Red TeapotWindow Raudona
+Lights TeapotWindow Šviesos
diff --git a/data/catalogs/apps/glteapot/nl.catkeys b/data/catalogs/apps/glteapot/nl.catkeys
new file mode 100644
index 0000000000..47b5da99ac
--- /dev/null
+++ b/data/catalogs/apps/glteapot/nl.catkeys
@@ -0,0 +1,24 @@
+1 dutch; flemish x-vnd.Haiku-GLTeapot 2890609668
+Upper center TeapotWindow Middenboven
+Lighting TeapotWindow Verlichting
+Off TeapotWindow Uit
+Lower left TeapotWindow Linksonder
+White TeapotWindow Wit
+Yellow TeapotWindow Geel
+Blue TeapotWindow Blauw
+Gouraud shading TeapotWindow Gouraud-arcering
+Quit TeapotWindow Stoppen
+Filled polygons TeapotWindow Gevulde polygonen
+Fog TeapotWindow Mist
+Backface culling TeapotWindow Backface culling
+Z-buffered TeapotWindow Z-gebufferd
+File TeapotWindow Bestand
+Options TeapotWindow Opties
+Perspective TeapotWindow Perspectief
+GLTeapot System name GLTeapot
+Green TeapotWindow Groen
+Right TeapotWindow Rechts
+FPS display TeapotWindow Vertoning FPS
+Add a teapot TeapotWindow Voeg een theepot toe
+Red TeapotWindow Rood
+Lights TeapotWindow Lichten
diff --git a/data/catalogs/apps/glteapot/ru.catkeys b/data/catalogs/apps/glteapot/ru.catkeys
index f707470f15..9b85b0c8e2 100644
--- a/data/catalogs/apps/glteapot/ru.catkeys
+++ b/data/catalogs/apps/glteapot/ru.catkeys
@@ -1,23 +1,23 @@
1 russian x-vnd.Haiku-GLTeapot 4001979038
-Add a teapot TeapotWindow Добавить чайник
-Blue TeapotWindow Голубой
-FPS display TeapotWindow Показывать частоту кадров
-File TeapotWindow Файл
-Filled polygons TeapotWindow Заполненные многоугольники
-Fog TeapotWindow Туман
-GLTeapot System name Чайник
-Gouraud shading TeapotWindow Метод тонирования Гуро
-Green TeapotWindow Зеленый
-Lighting TeapotWindow Освещение
-Lights TeapotWindow Свет
-Lower left TeapotWindow Нижний левый угол
-Off TeapotWindow Выключить
-Options TeapotWindow Опции
-Perspective TeapotWindow Перспектива
-Quit TeapotWindow Выход
-Red TeapotWindow Красный
-Right TeapotWindow Справа
Upper center TeapotWindow Сверху на центр
+Lighting TeapotWindow Освещение
+Off TeapotWindow Выключить
+Lower left TeapotWindow Нижний левый угол
White TeapotWindow Белый
Yellow TeapotWindow Желтый
+Blue TeapotWindow Голубой
+Gouraud shading TeapotWindow Метод тонирования Гуро
+Quit TeapotWindow Выход
+Filled polygons TeapotWindow Заполненные многоугольники
+Fog TeapotWindow Туман
Z-buffered TeapotWindow Z-буферизация
+File TeapotWindow Файл
+Options TeapotWindow Опции
+Perspective TeapotWindow Перспектива
+GLTeapot System name Чайник
+Green TeapotWindow Зеленый
+Right TeapotWindow Справа
+FPS display TeapotWindow Показывать частоту кадров
+Add a teapot TeapotWindow Добавить чайник
+Red TeapotWindow Красный
+Lights TeapotWindow Свет
diff --git a/data/catalogs/apps/glteapot/sk.catkeys b/data/catalogs/apps/glteapot/sk.catkeys
index 3381613221..1fce41e998 100644
--- a/data/catalogs/apps/glteapot/sk.catkeys
+++ b/data/catalogs/apps/glteapot/sk.catkeys
@@ -1,25 +1,24 @@
-1 slovak x-vnd.Haiku-GLTeapot 2093126480
-Add a teapot TeapotWindow Pridať konvicu
-Backface culling TeapotWindow Orezávanie zadnej strany
-Blue TeapotWindow Modrá
-FPS display TeapotWindow Zobrazenie snímok za sekundu
-File TeapotWindow Súbor
-Filled polygons TeapotWindow Vyplnené polygóny
-Fog TeapotWindow Dym
-GLTeapot System name GLKonvica
-Gouraud shading TeapotWindow Goraudovo tieňovanie
-Green TeapotWindow Zelená
-Lighting TeapotWindow Osvetlenie
-Lights TeapotWindow Svetlá
-Lower left TeapotWindow Vľavo dolu
-Off TeapotWindow Vypnuté
-Options TeapotWindow Možnosti
-Options TeapotWindow Možnosti
-Perspective TeapotWindow Perspektíva
-Quit TeapotWindow Ukončiť
-Red TeapotWindow Červená
-Right TeapotWindow Vpravo
+1 slovak x-vnd.Haiku-GLTeapot 2890609668
Upper center TeapotWindow Hore v strede
+Lighting TeapotWindow Osvetlenie
+Off TeapotWindow Vypnuté
+Lower left TeapotWindow Vľavo dolu
White TeapotWindow Biela
Yellow TeapotWindow Žltá
+Blue TeapotWindow Modrá
+Gouraud shading TeapotWindow Goraudovo tieňovanie
+Quit TeapotWindow Ukončiť
+Filled polygons TeapotWindow Vyplnené polygóny
+Fog TeapotWindow Dym
+Backface culling TeapotWindow Orezávanie zadnej strany
Z-buffered TeapotWindow Z-buffering
+File TeapotWindow Súbor
+Options TeapotWindow Možnosti
+Perspective TeapotWindow Perspektíva
+GLTeapot System name GLKonvica
+Green TeapotWindow Zelená
+Right TeapotWindow Vpravo
+FPS display TeapotWindow Zobrazenie snímok za sekundu
+Add a teapot TeapotWindow Pridať konvicu
+Red TeapotWindow Červená
+Lights TeapotWindow Svetlá
diff --git a/data/catalogs/apps/icon-o-matic/be.catkeys b/data/catalogs/apps/icon-o-matic/be.catkeys
index 39c005e394..429070c554 100644
--- a/data/catalogs/apps/icon-o-matic/be.catkeys
+++ b/data/catalogs/apps/icon-o-matic/be.catkeys
@@ -1,200 +1,200 @@
1 belarusian x-vnd.haiku-icon_o_matic 2326864078
- Icon-O-Matic-PathCmd <змяніць пуць>
- Icon-O-Matic-Menu-Edit <няма чаго перарабляць>
- Icon-O-Matic-Menu-Edit <няма чаго адмяняць>
- Icon-O-Matic-StyleTypes <недаступны>
- Icon-O-Matic-PropertyNames <невядомая уласцівасць>
-Add Icon-O-Matic-PathsList Дадаць
-Add Icon-O-Matic-StylesList Дадаць
-Add Icon-O-Matic-TransformersList Дадаць
-Add Control Point Icon-O-Matic-AddPointCmd Дадаць кантрольную кропку
-Add Path Icon-O-Matic-AddPathsCmd Дадаць Шлях
-Add Paths Icon-O-Matic-AddPathsCmd Дадаць Шляхі
-Add Shape Icon-O-Matic-AddShapesCmd Дадаць Фігуру
-Add Shapes Icon-O-Matic-AddShapesCmd Дадаць Фігуры
+Select All Icon-O-Matic-PathManipulator Выбраць Усё
Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль
-Add Styles Icon-O-Matic-AddStylesCmd Дадаць Стылі
-Add Transformer Icon-O-Matic-AddTransformersCmd Дадаць Трансформер
-Add Transformers Icon-O-Matic-AddTransformersCmd Дадаць Трансформераў
-Add circle Icon-O-Matic-PathsList Дадаць круг
-Add empty Icon-O-Matic-ShapesList Дадаць пусты
-Add rect Icon-O-Matic-PathsList Дадаць прастакутнік
-Add shape with path Icon-O-Matic-Menu-Shape Дадаць фігуру з шляхам
-Add shape with path & style Icon-O-Matic-Menu-Shape Дадаць фігуру са шляхам і стылям
-Add shape with style Icon-O-Matic-Menu-Shape Дадаць фігуру са стылям
-Add with path Icon-O-Matic-ShapesList Дадаць са шляхом
-Add with path & style Icon-O-Matic-ShapesList Дадаць са шляхом і стылем
-Add with style Icon-O-Matic-ShapesList Дадаць са стылем
-All Icon-O-Matic-Properties Усё
-Append… Icon-O-Matic-Menu-File Дадаць...
-Assign Path Icon-O-Matic-AddPathsCmd Прывязаць Шлях
-Assign Paths Icon-O-Matic-AddPathsCmd Прывязаць Шляхі
-Assign Style Icon-O-Matic-AssignStyleCmd Прывязаць Стыль
-BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрыбут BEOS:ICON
-Bleep! Exporter - Continue in error dialog Ведаем!
-Bummer Cancel button - error alert Якая дасада!
-Cancel Icon-O-Matic-ColorPicker Адмена
-Cancel Icon-O-Matic-Menu-Settings Скасаваць
-Cancel Icon-O-Matic-SVGExport Адмена
-Caps Icon-O-Matic-PropertyNames Шапкі
-Change Color Icon-O-Matic-SetColorCmd Змяніць колер
-Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях
-Clean up Icon-O-Matic-PathsList Прыбраць
-Click on a shape above Empty transformers list - 1st line Клікніце па фігуры вышэй
-Click on an object in Empty property list - 1st line Клікніце па аб'екце у
-Close Icon-O-Matic-Menu-File Закрыць
-Closed Icon-O-Matic-PropertyNames Закрыты
-Color Icon-O-Matic-PropertyNames Колер
-Color Icon-O-Matic-StyleTypes Колер
-Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x)
Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x)
-Conic Icon-O-Matic-StyleTypes Канічны
-Contour Transformation Контур
-Copy Icon-O-Matic-Properties Капіяваць
-Detect Orient. Icon-O-Matic-PropertyNames Выявіць Арыент.
-Diamond Icon-O-Matic-StyleTypes Ромб
-Discard Icon-O-Matic-Menu-Settings Адкінуць
-Duplicate Icon-O-Matic-PathsList Дуплікаваць
-Duplicate Icon-O-Matic-ShapesList Дуплікаваць
-Duplicate Icon-O-Matic-StylesList Дуплікаваць
-Edit Icon-O-Matic-Menus Правіць
-Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент
-Error: Icon-O-Matic-Exporter Памылка:
-Error: Icon-O-Matic-Main Памылка:
-Export Icon-O-Matic-Menu-File Экспарт
-Export Icon Dialog title Экспартаваць Іконку
-Export as… Icon-O-Matic-Menu-File Экспартаваць як...
-Failed to open the file '%s' as an SVG document.\n\nError: %s Icon-O-Matic-SVGImport Не ўдалося адкрыць '%s' як дакумент SVG.\n\nПамылка: %s
-File Icon-O-Matic-Menus Файл
-Flip Icon-O-Matic-PathManipulator Адлюстраваць
-Flip Control Point Icon-O-Matic-FlipPointsCmd Адлюстраваць Кантрольную Кропку
-Flip Control Points Icon-O-Matic-FlipPointsCmd Адлюстраваць кантрольныя кропкі
-Format Icon-O-Matic-SavePanel Фармат
-Freeze Shape Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуру
-Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуры
-Freeze transformation Icon-O-Matic-ShapesList Замарозіць трансфармацыю
-Gradient Icon-O-Matic-StyleTypes Градыентны
-Gradient type Icon-O-Matic-StyleTypes Тып градыенту
-HVIF Source Code Icon-O-Matic-SavePanel Зыходны код HVIF
-Height Icon-O-Matic-PropertyNames Вышыня
-Icon-O-Matic System name Рэдактар значкаў
-Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic, магчыма, не дастаў усю інфармацыю з SVG файла падчас яго загрузкі. Пры перазапісу зыходнага файла гэтая інфармацыя будзе згублена.
-Insert Control Point Icon-O-Matic-InsertPointCmd Уставіць Кантрольную Кропку
-Invert selection Icon-O-Matic-Properties Інвертаваць выдзяленне
-Joins Icon-O-Matic-PropertyNames Злучэнні
-Linear Icon-O-Matic-StyleTypes Лінейны
-META:ICON Attribute Icon-O-Matic-SavePanel Атрыбут META:ICON
-Max LOD Icon-O-Matic-PropertyNames Макс. LOD
-Min LOD Icon-O-Matic-PropertyNames Мін. LOD
-Miter Limit Icon-O-Matic-PropertyNames Мяжа Мітры
-Modify Control Point Icon-O-Matic-ChangePointCmd Змяніць кантрольную кропку
-Move Icon-O-Matic-TransformationBoxStates Перамясціць
-Move Path Icon-O-Matic-MovePathsCmd Перамясціць Шлях
-Move Paths Icon-O-Matic-MovePathsCmd Перамясціць Шляхі
-Move Pivot Icon-O-Matic-TransformationBoxStates Перамясціць Стрыжань
+Add Icon-O-Matic-StylesList Дадаць
Move Shape Icon-O-Matic-MoveShapesCommand Перамясціць Фігуру
-Move Shapes Icon-O-Matic-MoveShapesCommand Перамясціць Фігуры
-Move Style Icon-O-Matic-MoveStylesCmd Перамясціць
-Move Styles Icon-O-Matic-MoveStylesCmd Перамясціць Стылі
-Move Transformer Icon-O-Matic-MoveTransformersCmd Перамясціць Трансформер
-Move Transformers Icon-O-Matic-MoveTransformersCmd Перамясціць Трансформеры
-Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў
-Multi Set Multi Set (property name) Прызначыць некалькі
-Multi paste Icon-O-Matic-Properties Уставіць некалькі
-Name Icon-O-Matic-PropertyNames Імя
-New Icon-O-Matic-Menu-File Новы
-No Icon-O-Matic-StyledTextImport Не
-None Icon-O-Matic-Properties Няма
-Nudge Control Point Icon-O-Matic-NudgePointsCommand Ссунуць Кантрольную Кропку
-Nudge Control Points Icon-O-Matic-NudgePointsCommand Ссунуць кантрольныя кропкі
-OK Icon-O-Matic-ColorPicker ОК
-OK Icon-O-Matic-SVGImport ОК
-Off Icon-O-Matic-Menu-Settings Адкл.
-Opacity Icon-O-Matic-PropertyNames Непразрыстасць
Opening the document failed! Icon-O-Matic-Main Не ўдалося адкрыць дакумент!
+Reset transformation Icon-O-Matic-ShapesList Скінуць трансфармацыю
+Move Paths Icon-O-Matic-MovePathsCmd Перамясціць Шляхі
+None Icon-O-Matic-Properties Няма
+New Icon-O-Matic-Menu-File Новы
+Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic, магчыма, не дастаў усю інфармацыю з SVG файла падчас яго загрузкі. Пры перазапісу зыходнага файла гэтая інфармацыя будзе згублена.
+Paste Properties Icon-O-Matic-Properties Уставіць Уласцівасці
+Stroke Transformation Строчка
+Save Icon Dialog title Захаваць Іконку
+Closed Icon-O-Matic-PropertyNames Закрыты
+Remove Path Icon-O-Matic-RemovePathsCmd Выдаліць Шлях
+Add shape with path Icon-O-Matic-Menu-Shape Дадаць фігуру з шляхам
+Select Icon-O-Matic-Properties Выбраць
+Height Icon-O-Matic-PropertyNames Вышыня
+Remove Transformers Icon-O-Matic-RemoveTransformersCmd Выдаліць Трансформеры
+Width Icon-O-Matic-PropertyNames Шырыня
+Transformation Icon-O-Matic-TransformationBoxStates Трансфармацыя
+Duplicate Icon-O-Matic-ShapesList Дуплікаваць
+ Icon-O-Matic-PropertyNames <невядомая уласцівасць>
+Linear Icon-O-Matic-StyleTypes Лінейны
+Assign Path Icon-O-Matic-AddPathsCmd Прывязаць Шлях
+Move Icon-O-Matic-TransformationBoxStates Перамясціць
+Flip Control Points Icon-O-Matic-FlipPointsCmd Адлюстраваць кантрольныя кропкі
+warning Icon-O-Matic-SVGExport папярэджанне
+Copy Icon-O-Matic-Properties Капіяваць
+Miter Limit Icon-O-Matic-PropertyNames Мяжа Мітры
+OK Icon-O-Matic-ColorPicker ОК
+Remove Control Point Icon-O-Matic-RemovePointsCmd Выдаліць кантрольную кропку
+Bleep! Exporter - Continue in error dialog Ведаем!
+Add circle Icon-O-Matic-PathsList Дадаць круг
+Shorten Icon-O-Matic-PropertyNames Скараціць
+bad news Title of error alert дрэнныя навіны
+Remove Paths Icon-O-Matic-RemovePathsCmd Выдаліць Шляхі
+Scale Y Icon-O-Matic-PropertyNames Шкала Y
+Add Control Point Icon-O-Matic-AddPointCmd Дадаць кантрольную кропку
+Untitled Icon-O-Matic-Main Неназваны
+Multi Set Multi Set (property name) Прызначыць некалькі
+any of the other lists to Empty property list - 2nd line любым з іншых спісаў каб
+Save as… Icon-O-Matic-Menu-File Захаваць як...
+Change Color Icon-O-Matic-SetColorCmd Змяніць колер
+Style Icon-O-Matic-Menus Стыль
+ Icon-O-Matic-PathCmd <змяніць пуць>
Opening the icon failed! Icon-O-Matic-Main Нельга адкрыць іконку!
+Error: Icon-O-Matic-Main Памылка:
+Rotate indices backwards Icon-O-Matic-PathsList Павярнуць індэксы назад
+Name Icon-O-Matic-PropertyNames Імя
+bad news Icon-O-Matic-Exporter дрэнныя навіны
+ Icon-O-Matic-Menu-Edit <няма чаго адмяняць>
+Off Icon-O-Matic-Menu-Settings Адкл.
+Freeze Shape Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуру
+PNG Set Icon-O-Matic-SavePanel Набор PNG
+Joins Icon-O-Matic-PropertyNames Злучэнні
+Remove Style Icon-O-Matic-RemoveStylesCmd Выдаліць Стыль
+Scale X Icon-O-Matic-PropertyNames Шкала X
+Set Set (property name) Прызначыць
+Cancel Icon-O-Matic-SVGExport Адмена
+Add shape with style Icon-O-Matic-Menu-Shape Дадаць фігуру са стылям
+Remove Shape Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуру
+Reverse Icon-O-Matic-PathsList Зваротна
+HVIF Source Code Icon-O-Matic-SavePanel Зыходны код HVIF
+Reset Transformations Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыі
+All Icon-O-Matic-Properties Усё
+Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў
+Undo Icon-O-Matic-Main Вярнуць
+Click on a shape above Empty transformers list - 1st line Клікніце па фігуры вышэй
+Add Shape Icon-O-Matic-AddShapesCmd Дадаць Фігуру
+Contour Transformation Контур
+ Icon-O-Matic-Menu-Edit <няма чаго перарабляць>
+Perspective Transformation Перспэктыва
+Move Transformer Icon-O-Matic-MoveTransformersCmd Перамясціць Трансформер
+Opacity Icon-O-Matic-PropertyNames Непразрыстасць
+Add with path Icon-O-Matic-ShapesList Дадаць са шляхом
+Gradient type Icon-O-Matic-StyleTypes Тып градыенту
+Icon-O-Matic System name Рэдактар значкаў
+Cancel Icon-O-Matic-Menu-Settings Скасаваць
+Modify Control Point Icon-O-Matic-ChangePointCmd Змяніць кантрольную кропку
+Saving your document failed! Icon-O-Matic-Exporter Не ўдалося захаваць ваш дакумент!
+edit it's properties here. Empty property list - 3rd line правіць яго ўласцівасці.
+Split Icon-O-Matic-PathManipulator Раздзяліць
+Nudge Control Points Icon-O-Matic-NudgePointsCommand Ссунуць кантрольныя кропкі
+Remove Icon-O-Matic-StylesList Выдаліць
+Add with path & style Icon-O-Matic-ShapesList Дадаць са шляхом і стылем
+META:ICON Attribute Icon-O-Matic-SavePanel Атрыбут META:ICON
+Translation Y Icon-O-Matic-PropertyNames Канвертацыя Y
+Rotate Icon-O-Matic-TransformationBoxStates Павярнуць
+Remove Transformer Icon-O-Matic-RemoveTransformersCmd Выдаліць Трансформер
+Rotate Path Indices Icon-O-Matic-RotatePathIndiciesCmd Павярнуць Індэксы Шляху
+Add Transformer Icon-O-Matic-AddTransformersCmd Дадаць Трансформер
+Remove Icon-O-Matic-PathsList Выдаліць
+Nudge Control Point Icon-O-Matic-NudgePointsCommand Ссунуць Кантрольную Кропку
+Pick a color Icon-O-Matic-ColorPicker Падабраць колер
+Quit Icon-O-Matic-Menu-File Выйсці
+Export Icon-O-Matic-Menu-File Экспарт
+No Icon-O-Matic-StyledTextImport Не
+Save changes to current icon? Icon-O-Matic-Menu-Settings Захаваць змены ў цякучы значак?
+Rotate indices forwards Icon-O-Matic-PathsList Павярнуць індэксы наперад
+Unassign Path Icon-O-Matic-UnassignPathCmd Адвязаць шлях
+load error Icon-O-Matic-SVGImport памылка загрузкі
+Move Shapes Icon-O-Matic-MoveShapesCommand Перамясціць Фігуры
+Remove Styles Icon-O-Matic-RemoveStylesCmd Выдаліць Стылі
+The text you are trying to import is quite long,are you sure? Icon-O-Matic-StyledTextImport Тэкст, які вы імпартуеце, занадта доўгі. Вы ўпэўнены?
+Add Icon-O-Matic-TransformersList Дадаць
+Export Icon Dialog title Экспартаваць Іконку
+Color Icon-O-Matic-StyleTypes Колер
+Settings… Icon-O-Matic-SavePanel Наладкі...
+Remove Icon-O-Matic-PathManipulator Выдаліць
+Radial Icon-O-Matic-StyleTypes Радыяльны
+Perspective Icon-O-Matic-TransformersList Перспектыва
+Add shape with path & style Icon-O-Matic-Menu-Shape Дадаць фігуру са шляхам і стылям
+Gradient Icon-O-Matic-StyleTypes Градыентны
+Min LOD Icon-O-Matic-PropertyNames Мін. LOD
+BEOS:ICON Attribute Icon-O-Matic-SavePanel Атрыбут BEOS:ICON
+Invert selection Icon-O-Matic-Properties Інвертаваць выдзяленне
+Export as… Icon-O-Matic-Menu-File Экспартаваць як...
+Transformation Transformation Трансфармацыя
+Click on an object in Empty property list - 1st line Клікніце па аб'екце у
+Move Transformers Icon-O-Matic-MoveTransformersCmd Перамясціць Трансформеры
+Move Styles Icon-O-Matic-MoveStylesCmd Перамясціць Стылі
+Reset transformation Icon-O-Matic-StylesList Скінуць трансфармацыю
+Max LOD Icon-O-Matic-PropertyNames Макс. LOD
+Transformer Icon-O-Matic-Menus Трансформер
+Flip Icon-O-Matic-PathManipulator Адлюстраваць
+Conic Icon-O-Matic-StyleTypes Канічны
+Split Control Points Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольныя Кропкі
+Save Icon-O-Matic-Menu-Settings Захаваць
+Add empty Icon-O-Matic-ShapesList Дадаць пусты
+Close Icon-O-Matic-Menu-File Закрыць
+Cancel Icon-O-Matic-ColorPicker Адмена
+Paste Icon-O-Matic-Properties Уставіць
+Shape Icon-O-Matic-Menus Фігура
+Translation X Icon-O-Matic-PropertyNames Канвертацыя X
+Properties Icon-O-Matic-Menus Уласцівасці
+Move Pivot Icon-O-Matic-TransformationBoxStates Перамясціць Стрыжань
+Path Icon-O-Matic-Menus Шлях
+Freeze transformation Icon-O-Matic-ShapesList Замарозіць трансфармацыю
+File Icon-O-Matic-Menus Файл
+Error: Icon-O-Matic-Exporter Памылка:
+Add Transformers Icon-O-Matic-AddTransformersCmd Дадаць Трансформераў
+Diamond Icon-O-Matic-StyleTypes Ромб
+Path Icon-O-Matic-PropertyNames Шлях
+Failed to open the file '%s' as an SVG document.\n\nError: %s Icon-O-Matic-SVGImport Не ўдалося адкрыць '%s' як дакумент SVG.\n\nПамылка: %s
+Discard Icon-O-Matic-Menu-Settings Адкінуць
+Swatches Icon-O-Matic-Menus Узоры
+ Icon-O-Matic-StyleTypes <недаступны>
+Rotation Icon-O-Matic-PropertyNames Паварот
+Add with style Icon-O-Matic-ShapesList Дадаць са стылем
+Add Icon-O-Matic-PathsList Дадаць
+Add Shapes Icon-O-Matic-AddShapesCmd Дадаць Фігуры
+Move Style Icon-O-Matic-MoveStylesCmd Перамясціць
+Bummer Cancel button - error alert Якая дасада!
+Snap to grid Icon-O-Matic-Menu-Settings Прыляпіць да сеткі
+Remove Icon-O-Matic-ShapesList Выдаліць
+Yes Icon-O-Matic-StyledTextImport Так
+Transformation Icon-O-Matic-TransformersList Трасфармацыя
+Add Styles Icon-O-Matic-AddStylesCmd Дадаць Стылі
+Remove Control Points Icon-O-Matic-RemovePointsCmd Выдаліць Кантрольныя Кропкі
+Format Icon-O-Matic-SavePanel Фармат
+Add rect Icon-O-Matic-PathsList Дадаць прастакутнік
+Edit Icon-O-Matic-Menus Правіць
+Duplicate Icon-O-Matic-StylesList Дуплікаваць
+Caps Icon-O-Matic-PropertyNames Шапкі
+Transform Icon-O-Matic-PathManipulator Трансфармаваць
+Add Paths Icon-O-Matic-AddPathsCmd Дадаць Шляхі
+Style type Icon-O-Matic-StyleTypes Тып стылю
+too big Icon-O-Matic-StyledTextImport занадта вялікі
+Assign Style Icon-O-Matic-AssignStyleCmd Прывязаць Стыль
+Add Path Icon-O-Matic-AddPathsCmd Дадаць Шлях
+Color Icon-O-Matic-PropertyNames Колер
+Insert Control Point Icon-O-Matic-InsertPointCmd Уставіць Кантрольную Кропку
+Flip Control Point Icon-O-Matic-FlipPointsCmd Адлюстраваць Кантрольную Кропку
+Redo Icon-O-Matic-Main Перарабіць
+Assign Paths Icon-O-Matic-AddPathsCmd Прывязаць Шляхі
+OK Icon-O-Matic-SVGImport ОК
+Multi paste Icon-O-Matic-Properties Уставіць некалькі
+to attach transformers. Empty transformers list - 2nd line каб прывязаць трансформераў.
+Reset Transformation Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыю
+Reverse Path Icon-O-Matic-ReversePathCmd Звараціць Шлях
+Scale Icon-O-Matic-TransformationBoxStates Масштаб
+Duplicate Icon-O-Matic-PathsList Дуплікаваць
+Save Icon-O-Matic-Menu-File Захаваць
+Append… Icon-O-Matic-Menu-File Дадаць...
+Move Path Icon-O-Matic-MovePathsCmd Перамясціць Шлях
+Overwrite Icon-O-Matic-SVGExport Перазапісаць
+Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Замарозіць Фігуры
+Split Control Point Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольную Кропку
Open… Icon-O-Matic-Menu-File Адкрыць...
Options Icon-O-Matic-Menus Опцыі
-Overwrite Icon-O-Matic-SVGExport Перазапісаць
-PNG Set Icon-O-Matic-SavePanel Набор PNG
-Paste Icon-O-Matic-Properties Уставіць
-Paste Properties Icon-O-Matic-Properties Уставіць Уласцівасці
-Path Icon-O-Matic-Menus Шлях
-Path Icon-O-Matic-PropertyNames Шлях
-Perspective Icon-O-Matic-TransformersList Перспектыва
-Perspective Transformation Перспэктыва
-Pick a color Icon-O-Matic-ColorPicker Падабраць колер
-Properties Icon-O-Matic-Menus Уласцівасці
-Quit Icon-O-Matic-Menu-File Выйсці
-Radial Icon-O-Matic-StyleTypes Радыяльны
-Redo Icon-O-Matic-Main Перарабіць
-Remove Icon-O-Matic-PathManipulator Выдаліць
-Remove Icon-O-Matic-PathsList Выдаліць
-Remove Icon-O-Matic-ShapesList Выдаліць
-Remove Icon-O-Matic-StylesList Выдаліць
-Remove Control Point Icon-O-Matic-RemovePointsCmd Выдаліць кантрольную кропку
-Remove Control Points Icon-O-Matic-RemovePointsCmd Выдаліць Кантрольныя Кропкі
-Remove Path Icon-O-Matic-RemovePathsCmd Выдаліць Шлях
-Remove Paths Icon-O-Matic-RemovePathsCmd Выдаліць Шляхі
-Remove Shape Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуру
-Remove Shapes Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуры
-Remove Style Icon-O-Matic-RemoveStylesCmd Выдаліць Стыль
-Remove Styles Icon-O-Matic-RemoveStylesCmd Выдаліць Стылі
-Remove Transformer Icon-O-Matic-RemoveTransformersCmd Выдаліць Трансформер
-Remove Transformers Icon-O-Matic-RemoveTransformersCmd Выдаліць Трансформеры
-Reset Transformation Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыю
-Reset Transformations Icon-O-Matic-ResetTransformationCmd Скінуць Трансфармацыі
-Reset transformation Icon-O-Matic-ShapesList Скінуць трансфармацыю
-Reset transformation Icon-O-Matic-StylesList Скінуць трансфармацыю
-Reverse Icon-O-Matic-PathsList Зваротна
-Reverse Path Icon-O-Matic-ReversePathCmd Звараціць Шлях
-Rotate Icon-O-Matic-TransformationBoxStates Павярнуць
-Rotate Path Indices Icon-O-Matic-RotatePathIndiciesCmd Павярнуць Індэксы Шляху
-Rotate indices backwards Icon-O-Matic-PathsList Павярнуць індэксы назад
-Rotate indices forwards Icon-O-Matic-PathsList Павярнуць індэксы наперад
-Rotation Icon-O-Matic-PropertyNames Паварот
+Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x)
+Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент
+Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях
Rounding Icon-O-Matic-PropertyNames Акругленне
-Save Icon-O-Matic-Menu-File Захаваць
-Save Icon-O-Matic-Menu-Settings Захаваць
-Save Icon Dialog title Захаваць Іконку
-Save as… Icon-O-Matic-Menu-File Захаваць як...
-Save changes to current icon? Icon-O-Matic-Menu-Settings Захаваць змены ў цякучы значак?
-Saving your document failed! Icon-O-Matic-Exporter Не ўдалося захаваць ваш дакумент!
-Scale Icon-O-Matic-TransformationBoxStates Масштаб
-Scale X Icon-O-Matic-PropertyNames Шкала X
-Scale Y Icon-O-Matic-PropertyNames Шкала Y
-Select Icon-O-Matic-Properties Выбраць
-Select All Icon-O-Matic-PathManipulator Выбраць Усё
-Set Set (property name) Прызначыць
-Settings… Icon-O-Matic-SavePanel Наладкі...
-Shape Icon-O-Matic-Menus Фігура
-Shorten Icon-O-Matic-PropertyNames Скараціць
-Snap to grid Icon-O-Matic-Menu-Settings Прыляпіць да сеткі
-Split Icon-O-Matic-PathManipulator Раздзяліць
-Split Control Point Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольную Кропку
-Split Control Points Icon-O-Matic-SplitPointsCmd Раздзяліць Кантрольныя Кропкі
-Stroke Transformation Строчка
-Style Icon-O-Matic-Menus Стыль
-Style type Icon-O-Matic-StyleTypes Тып стылю
-Swatches Icon-O-Matic-Menus Узоры
-The text you are trying to import is quite long,are you sure? Icon-O-Matic-StyledTextImport Тэкст, які вы імпартуеце, занадта доўгі. Вы ўпэўнены?
-Transform Icon-O-Matic-PathManipulator Трансфармаваць
-Transformation Icon-O-Matic-TransformationBoxStates Трансфармацыя
-Transformation Icon-O-Matic-TransformersList Трасфармацыя
-Transformation Transformation Трансфармацыя
-Transformer Icon-O-Matic-Menus Трансформер
-Translation X Icon-O-Matic-PropertyNames Канвертацыя X
-Translation Y Icon-O-Matic-PropertyNames Канвертацыя Y
-Unassign Path Icon-O-Matic-UnassignPathCmd Адвязаць шлях
-Undo Icon-O-Matic-Main Вярнуць
-Untitled Icon-O-Matic-Main Неназваны
-Width Icon-O-Matic-PropertyNames Шырыня
-Yes Icon-O-Matic-StyledTextImport Так
-any of the other lists to Empty property list - 2nd line любым з іншых спісаў каб
-bad news Icon-O-Matic-Exporter дрэнныя навіны
-bad news Title of error alert дрэнныя навіны
-edit it's properties here. Empty property list - 3rd line правіць яго ўласцівасці.
-load error Icon-O-Matic-SVGImport памылка загрузкі
-to attach transformers. Empty transformers list - 2nd line каб прывязаць трансформераў.
-too big Icon-O-Matic-StyledTextImport занадта вялікі
-warning Icon-O-Matic-SVGExport папярэджанне
+Remove Shapes Icon-O-Matic-RemoveShapesCmd Выдаліць Фігуры
+Clean up Icon-O-Matic-PathsList Прыбраць
+Detect Orient. Icon-O-Matic-PropertyNames Выявіць Арыент.
diff --git a/data/catalogs/apps/icon-o-matic/de.catkeys b/data/catalogs/apps/icon-o-matic/de.catkeys
index 0bdf60b625..8d70d1ca94 100644
--- a/data/catalogs/apps/icon-o-matic/de.catkeys
+++ b/data/catalogs/apps/icon-o-matic/de.catkeys
@@ -1,200 +1,200 @@
1 german x-vnd.haiku-icon_o_matic 2326864078
- Icon-O-Matic-PathCmd
- Icon-O-Matic-Menu-Edit
- Icon-O-Matic-Menu-Edit
- Icon-O-Matic-StyleTypes
- Icon-O-Matic-PropertyNames
-Add Icon-O-Matic-PathsList Hinzufügen
-Add Icon-O-Matic-StylesList Hinzufügen
-Add Icon-O-Matic-TransformersList Hinzufügen
-Add Control Point Icon-O-Matic-AddPointCmd Kontrollpunkt hinzufügen
-Add Path Icon-O-Matic-AddPathsCmd Pfad hinzufügen
-Add Paths Icon-O-Matic-AddPathsCmd Pfade hinzufügen
-Add Shape Icon-O-Matic-AddShapesCmd Form hinzufügen
-Add Shapes Icon-O-Matic-AddShapesCmd Formen hinzufügen
+Select All Icon-O-Matic-PathManipulator Alles auswählen
Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen
-Add Styles Icon-O-Matic-AddStylesCmd Stile hinzufügen
-Add Transformer Icon-O-Matic-AddTransformersCmd Transformator hinzufügen
-Add Transformers Icon-O-Matic-AddTransformersCmd Transformatoren hinzufügen
-Add circle Icon-O-Matic-PathsList Kreis hinzufügen
-Add empty Icon-O-Matic-ShapesList Hinzufügen
-Add rect Icon-O-Matic-PathsList Rechteck hinzufügen
-Add shape with path Icon-O-Matic-Menu-Shape Form mit Pfad hinzufügen
-Add shape with path & style Icon-O-Matic-Menu-Shape Form mit Pfad & Stil hinzufügen
-Add shape with style Icon-O-Matic-Menu-Shape Form mit Stil hinzufügen
-Add with path Icon-O-Matic-ShapesList Mit Pfad hinzufügen
-Add with path & style Icon-O-Matic-ShapesList Mit Pfad & Stil hinzufügen
-Add with style Icon-O-Matic-ShapesList Mit Stil hinzufügen
-All Icon-O-Matic-Properties Alle
-Append… Icon-O-Matic-Menu-File Anhängen...
-Assign Path Icon-O-Matic-AddPathsCmd Pfad zuweisen
-Assign Paths Icon-O-Matic-AddPathsCmd Pfade zuordnen
-Assign Style Icon-O-Matic-AssignStyleCmd Stil zuordnen
-BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON Attribut
-Bleep! Exporter - Continue in error dialog Piep!
-Bummer Cancel button - error alert Herrje!
-Cancel Icon-O-Matic-ColorPicker Abbrechen
-Cancel Icon-O-Matic-Menu-Settings Abbrechen
-Cancel Icon-O-Matic-SVGExport Abbrechen
-Caps Icon-O-Matic-PropertyNames Enden
-Change Color Icon-O-Matic-SetColorCmd Farbe ändern
-Clean Up Path Icon-O-Matic-CleanUpPathCmd Pfad aufräumen
-Clean up Icon-O-Matic-PathsList Aufräumen
-Click on a shape above Empty transformers list - 1st line Erst eine Form oben auswählen,
-Click on an object in Empty property list - 1st line Auf ein Objekt klicken in
-Close Icon-O-Matic-Menu-File Schließen
-Closed Icon-O-Matic-PropertyNames Geschlossen
-Color Icon-O-Matic-PropertyNames Farbe
-Color Icon-O-Matic-StyleTypes Farbe
-Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farbe (#%02x%02x%02x)
Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x)
-Conic Icon-O-Matic-StyleTypes Konisch
-Contour Transformation Kontur
-Copy Icon-O-Matic-Properties Kopieren
-Detect Orient. Icon-O-Matic-PropertyNames Ausrichtung erk.
-Diamond Icon-O-Matic-StyleTypes Raute
-Discard Icon-O-Matic-Menu-Settings Verwerfen
-Duplicate Icon-O-Matic-PathsList Duplizieren
-Duplicate Icon-O-Matic-ShapesList Duplizieren
-Duplicate Icon-O-Matic-StylesList Duplizieren
-Edit Icon-O-Matic-Menus Bearbeiten
-Edit Gradient Icon-O-Matic-SetGradientCmd Farbverlauf bearbeiten
-Error: Icon-O-Matic-Exporter Fehler:
-Error: Icon-O-Matic-Main Fehler:
-Export Icon-O-Matic-Menu-File Exportieren
-Export Icon Dialog title Icon exportieren
-Export as… Icon-O-Matic-Menu-File Exportieren als...
-Failed to open the file '%s' as an SVG document.\n\nError: %s Icon-O-Matic-SVGImport Öffen der Datei '%s' als SVG Dokument fehlgeschlagen.\n\nFehler: %s
-File Icon-O-Matic-Menus Datei
-Flip Icon-O-Matic-PathManipulator Spiegeln
-Flip Control Point Icon-O-Matic-FlipPointsCmd Kontrollpunkt spiegeln
-Flip Control Points Icon-O-Matic-FlipPointsCmd Kontrollpunkte spiegeln
-Format Icon-O-Matic-SavePanel Format
-Freeze Shape Icon-O-Matic-FreezeTransformationCmd Form einfrieren
-Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Formen einfrieren
-Freeze transformation Icon-O-Matic-ShapesList Transformation einfrieren
-Gradient Icon-O-Matic-StyleTypes Farbverlauf
-Gradient type Icon-O-Matic-StyleTypes Verlaufstyp:
-HVIF Source Code Icon-O-Matic-SavePanel HVIF-Quellcode
-Height Icon-O-Matic-PropertyNames Höhe
-Icon-O-Matic System name Icon-O-Matic
-Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic konnte vielleicht nicht alle Daten aus dem SVG interpretieren, als es geladen wurde. Wird die Originaldatei überschrieben, werden diese Informationen verloren gehen.
-Insert Control Point Icon-O-Matic-InsertPointCmd Kontrollpunkt einfügen
-Invert selection Icon-O-Matic-Properties Auswahl umkehren
-Joins Icon-O-Matic-PropertyNames Verbindungen
-Linear Icon-O-Matic-StyleTypes Linear
-META:ICON Attribute Icon-O-Matic-SavePanel META:ICON Attribut
-Max LOD Icon-O-Matic-PropertyNames Max. LOD
-Min LOD Icon-O-Matic-PropertyNames Min. LOD
-Miter Limit Icon-O-Matic-PropertyNames Gehrungslimit
-Modify Control Point Icon-O-Matic-ChangePointCmd Kontrollpunkt verändern
-Move Icon-O-Matic-TransformationBoxStates Bewegen
-Move Path Icon-O-Matic-MovePathsCmd Pfad umsortieren
-Move Paths Icon-O-Matic-MovePathsCmd Pfade umsortieren
-Move Pivot Icon-O-Matic-TransformationBoxStates Drehpunkt verschieben
+Add Icon-O-Matic-StylesList Hinzufügen
Move Shape Icon-O-Matic-MoveShapesCommand Form umsortieren
-Move Shapes Icon-O-Matic-MoveShapesCommand Formen umsortieren
-Move Style Icon-O-Matic-MoveStylesCmd Stil umsortieren
-Move Styles Icon-O-Matic-MoveStylesCmd Stile umsortieren
-Move Transformer Icon-O-Matic-MoveTransformersCmd Transformator umsortieren
-Move Transformers Icon-O-Matic-MoveTransformersCmd Transformatoren umsortieren
-Multi Paste Properties Icon-O-Matic-Properties Mehrere Eigenschaften einfügen
-Multi Set Multi Set (property name) Mehrfach-Setzen
-Multi paste Icon-O-Matic-Properties Mehrfach-Einfügen
-Name Icon-O-Matic-PropertyNames Name
-New Icon-O-Matic-Menu-File Neu
-No Icon-O-Matic-StyledTextImport Nein
-None Icon-O-Matic-Properties Keine
-Nudge Control Point Icon-O-Matic-NudgePointsCommand Kontrollpunkt anstoßen
-Nudge Control Points Icon-O-Matic-NudgePointsCommand Kontrollpunkte anstoßen
-OK Icon-O-Matic-ColorPicker OK
-OK Icon-O-Matic-SVGImport OK
-Off Icon-O-Matic-Menu-Settings Aus
-Opacity Icon-O-Matic-PropertyNames Deckkraft
Opening the document failed! Icon-O-Matic-Main Öffnen des Dokuments fehlgeschlagen!
+Reset transformation Icon-O-Matic-ShapesList Transformation zurücksetzen
+Move Paths Icon-O-Matic-MovePathsCmd Pfade umsortieren
+None Icon-O-Matic-Properties Keine
+New Icon-O-Matic-Menu-File Neu
+Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Icon-O-Matic konnte vielleicht nicht alle Daten aus dem SVG interpretieren, als es geladen wurde. Wird die Originaldatei überschrieben, werden diese Informationen verloren gehen.
+Paste Properties Icon-O-Matic-Properties Eigenschaften einfügen
+Stroke Transformation Umrandung
+Save Icon Dialog title Icon speichern
+Closed Icon-O-Matic-PropertyNames Geschlossen
+Remove Path Icon-O-Matic-RemovePathsCmd Pfad entfernen
+Add shape with path Icon-O-Matic-Menu-Shape Form mit Pfad hinzufügen
+Select Icon-O-Matic-Properties Auswählen
+Height Icon-O-Matic-PropertyNames Höhe
+Remove Transformers Icon-O-Matic-RemoveTransformersCmd Transformer entfernen
+Width Icon-O-Matic-PropertyNames Strichstärke
+Transformation Icon-O-Matic-TransformationBoxStates Transformation
+Duplicate Icon-O-Matic-ShapesList Duplizieren
+ Icon-O-Matic-PropertyNames
+Linear Icon-O-Matic-StyleTypes Linear
+Assign Path Icon-O-Matic-AddPathsCmd Pfad zuweisen
+Move Icon-O-Matic-TransformationBoxStates Bewegen
+Flip Control Points Icon-O-Matic-FlipPointsCmd Kontrollpunkte spiegeln
+warning Icon-O-Matic-SVGExport Warnung
+Copy Icon-O-Matic-Properties Kopieren
+Miter Limit Icon-O-Matic-PropertyNames Gehrungslimit
+OK Icon-O-Matic-ColorPicker OK
+Remove Control Point Icon-O-Matic-RemovePointsCmd Kontrollpunkt entfernen
+Bleep! Exporter - Continue in error dialog Piep!
+Add circle Icon-O-Matic-PathsList Kreis hinzufügen
+Shorten Icon-O-Matic-PropertyNames Kürzen
+bad news Title of error alert Schlechte Nachrichten
+Remove Paths Icon-O-Matic-RemovePathsCmd Pfade entfernen
+Scale Y Icon-O-Matic-PropertyNames Skalieren in Y-Richtung
+Add Control Point Icon-O-Matic-AddPointCmd Kontrollpunkt hinzufügen
+Untitled Icon-O-Matic-Main Unbenannt
+Multi Set Multi Set (property name) Mehrfach-Setzen
+any of the other lists to Empty property list - 2nd line einer der anderen Listen, um
+Save as… Icon-O-Matic-Menu-File Speichern als...
+Change Color Icon-O-Matic-SetColorCmd Farbe ändern
+Style Icon-O-Matic-Menus Stil
+ Icon-O-Matic-PathCmd
Opening the icon failed! Icon-O-Matic-Main Öffnen des Icons fehlgeschlagen!
+Error: Icon-O-Matic-Main Fehler:
+Rotate indices backwards Icon-O-Matic-PathsList Indizes rückwärts rotieren
+Name Icon-O-Matic-PropertyNames Name
+bad news Icon-O-Matic-Exporter Schlechte Nachrichten
+ Icon-O-Matic-Menu-Edit
+Off Icon-O-Matic-Menu-Settings Aus
+Freeze Shape Icon-O-Matic-FreezeTransformationCmd Form einfrieren
+PNG Set Icon-O-Matic-SavePanel PNG Satz
+Joins Icon-O-Matic-PropertyNames Verbindungen
+Remove Style Icon-O-Matic-RemoveStylesCmd Stil entfernen
+Scale X Icon-O-Matic-PropertyNames Skalieren in X-Richtung
+Set Set (property name) Setzen
+Cancel Icon-O-Matic-SVGExport Abbrechen
+Add shape with style Icon-O-Matic-Menu-Shape Form mit Stil hinzufügen
+Remove Shape Icon-O-Matic-RemoveShapesCmd Form entfernen
+Reverse Icon-O-Matic-PathsList Umkehren
+HVIF Source Code Icon-O-Matic-SavePanel HVIF-Quellcode
+Reset Transformations Icon-O-Matic-ResetTransformationCmd Transformationen zurücksetzen
+All Icon-O-Matic-Properties Alle
+Multi Paste Properties Icon-O-Matic-Properties Mehrere Eigenschaften einfügen
+Undo Icon-O-Matic-Main Rückgängig:
+Click on a shape above Empty transformers list - 1st line Erst eine Form oben auswählen,
+Add Shape Icon-O-Matic-AddShapesCmd Form hinzufügen
+Contour Transformation Kontur
+ Icon-O-Matic-Menu-Edit
+Perspective Transformation Perspektive
+Move Transformer Icon-O-Matic-MoveTransformersCmd Transformator umsortieren
+Opacity Icon-O-Matic-PropertyNames Deckkraft
+Add with path Icon-O-Matic-ShapesList Mit Pfad hinzufügen
+Gradient type Icon-O-Matic-StyleTypes Verlaufstyp:
+Icon-O-Matic System name Icon-O-Matic
+Cancel Icon-O-Matic-Menu-Settings Abbrechen
+Modify Control Point Icon-O-Matic-ChangePointCmd Kontrollpunkt verändern
+Saving your document failed! Icon-O-Matic-Exporter Speichern des Dokuments fehlgeschlagen!
+edit it's properties here. Empty property list - 3rd line Eigenschaften hier zu ändern.
+Split Icon-O-Matic-PathManipulator Trennen
+Nudge Control Points Icon-O-Matic-NudgePointsCommand Kontrollpunkte anstoßen
+Remove Icon-O-Matic-StylesList Entfernen
+Add with path & style Icon-O-Matic-ShapesList Mit Pfad & Stil hinzufügen
+META:ICON Attribute Icon-O-Matic-SavePanel META:ICON Attribut
+Translation Y Icon-O-Matic-PropertyNames Verschiebung Y
+Rotate Icon-O-Matic-TransformationBoxStates Rotieren
+Remove Transformer Icon-O-Matic-RemoveTransformersCmd Transformator entfernen
+Rotate Path Indices Icon-O-Matic-RotatePathIndiciesCmd Pfadindizes rotieren
+Add Transformer Icon-O-Matic-AddTransformersCmd Transformator hinzufügen
+Remove Icon-O-Matic-PathsList Entfernen
+Nudge Control Point Icon-O-Matic-NudgePointsCommand Kontrollpunkt anstoßen
+Pick a color Icon-O-Matic-ColorPicker Farbe aussuchen
+Quit Icon-O-Matic-Menu-File Beenden
+Export Icon-O-Matic-Menu-File Exportieren
+No Icon-O-Matic-StyledTextImport Nein
+Save changes to current icon? Icon-O-Matic-Menu-Settings Änderungen am aktuellen Icon speichern?
+Rotate indices forwards Icon-O-Matic-PathsList Indizes vorwärts rotieren
+Unassign Path Icon-O-Matic-UnassignPathCmd Pfad lösen
+load error Icon-O-Matic-SVGImport Ladefehler
+Move Shapes Icon-O-Matic-MoveShapesCommand Formen umsortieren
+Remove Styles Icon-O-Matic-RemoveStylesCmd Stile entfernen
+The text you are trying to import is quite long,are you sure? Icon-O-Matic-StyledTextImport Der zu importierende Text ist ziemlich lang. Trotzdem importieren?
+Add Icon-O-Matic-TransformersList Hinzufügen
+Export Icon Dialog title Icon exportieren
+Color Icon-O-Matic-StyleTypes Farbe
+Settings… Icon-O-Matic-SavePanel Einstellungen...
+Remove Icon-O-Matic-PathManipulator Entfernen
+Radial Icon-O-Matic-StyleTypes Radial
+Perspective Icon-O-Matic-TransformersList Perspektive
+Add shape with path & style Icon-O-Matic-Menu-Shape Form mit Pfad & Stil hinzufügen
+Gradient Icon-O-Matic-StyleTypes Farbverlauf
+Min LOD Icon-O-Matic-PropertyNames Min. LOD
+BEOS:ICON Attribute Icon-O-Matic-SavePanel BEOS:ICON Attribut
+Invert selection Icon-O-Matic-Properties Auswahl umkehren
+Export as… Icon-O-Matic-Menu-File Exportieren als...
+Transformation Transformation Transformation
+Click on an object in Empty property list - 1st line Auf ein Objekt klicken in
+Move Transformers Icon-O-Matic-MoveTransformersCmd Transformatoren umsortieren
+Move Styles Icon-O-Matic-MoveStylesCmd Stile umsortieren
+Reset transformation Icon-O-Matic-StylesList Transformation zurücksetzen
+Max LOD Icon-O-Matic-PropertyNames Max. LOD
+Transformer Icon-O-Matic-Menus Transformator
+Flip Icon-O-Matic-PathManipulator Spiegeln
+Conic Icon-O-Matic-StyleTypes Konisch
+Split Control Points Icon-O-Matic-SplitPointsCmd Kontrollpunkte trennen
+Save Icon-O-Matic-Menu-Settings Speichern
+Add empty Icon-O-Matic-ShapesList Hinzufügen
+Close Icon-O-Matic-Menu-File Schließen
+Cancel Icon-O-Matic-ColorPicker Abbrechen
+Paste Icon-O-Matic-Properties Einfügen
+Shape Icon-O-Matic-Menus Form
+Translation X Icon-O-Matic-PropertyNames Verschiebung X
+Properties Icon-O-Matic-Menus Eigenschaften
+Move Pivot Icon-O-Matic-TransformationBoxStates Drehpunkt verschieben
+Path Icon-O-Matic-Menus Pfad
+Freeze transformation Icon-O-Matic-ShapesList Transformation einfrieren
+File Icon-O-Matic-Menus Datei
+Error: Icon-O-Matic-Exporter Fehler:
+Add Transformers Icon-O-Matic-AddTransformersCmd Transformatoren hinzufügen
+Diamond Icon-O-Matic-StyleTypes Raute
+Path Icon-O-Matic-PropertyNames Pfad
+Failed to open the file '%s' as an SVG document.\n\nError: %s Icon-O-Matic-SVGImport Öffen der Datei '%s' als SVG Dokument fehlgeschlagen.\n\nFehler: %s
+Discard Icon-O-Matic-Menu-Settings Verwerfen
+Swatches Icon-O-Matic-Menus Farbfelder
+ Icon-O-Matic-StyleTypes
+Rotation Icon-O-Matic-PropertyNames Rotation
+Add with style Icon-O-Matic-ShapesList Mit Stil hinzufügen
+Add Icon-O-Matic-PathsList Hinzufügen
+Add Shapes Icon-O-Matic-AddShapesCmd Formen hinzufügen
+Move Style Icon-O-Matic-MoveStylesCmd Stil umsortieren
+Bummer Cancel button - error alert Herrje!
+Snap to grid Icon-O-Matic-Menu-Settings Am Gitter einrasten
+Remove Icon-O-Matic-ShapesList Entfernen
+Yes Icon-O-Matic-StyledTextImport Ja
+Transformation Icon-O-Matic-TransformersList Transformation
+Add Styles Icon-O-Matic-AddStylesCmd Stile hinzufügen
+Remove Control Points Icon-O-Matic-RemovePointsCmd Kontrollpunkte entfernen
+Format Icon-O-Matic-SavePanel Format
+Add rect Icon-O-Matic-PathsList Rechteck hinzufügen
+Edit Icon-O-Matic-Menus Bearbeiten
+Duplicate Icon-O-Matic-StylesList Duplizieren
+Caps Icon-O-Matic-PropertyNames Enden
+Transform Icon-O-Matic-PathManipulator Transformieren
+Add Paths Icon-O-Matic-AddPathsCmd Pfade hinzufügen
+Style type Icon-O-Matic-StyleTypes Stiltyp:
+too big Icon-O-Matic-StyledTextImport zu groß
+Assign Style Icon-O-Matic-AssignStyleCmd Stil zuordnen
+Add Path Icon-O-Matic-AddPathsCmd Pfad hinzufügen
+Color Icon-O-Matic-PropertyNames Farbe
+Insert Control Point Icon-O-Matic-InsertPointCmd Kontrollpunkt einfügen
+Flip Control Point Icon-O-Matic-FlipPointsCmd Kontrollpunkt spiegeln
+Redo Icon-O-Matic-Main Wiederholen:
+Assign Paths Icon-O-Matic-AddPathsCmd Pfade zuordnen
+OK Icon-O-Matic-SVGImport OK
+Multi paste Icon-O-Matic-Properties Mehrfach-Einfügen
+to attach transformers. Empty transformers list - 2nd line um Transformatoren zuzuweisen.
+Reset Transformation Icon-O-Matic-ResetTransformationCmd Transformation zurücksetzen
+Reverse Path Icon-O-Matic-ReversePathCmd Pfad umkehren
+Scale Icon-O-Matic-TransformationBoxStates Skalieren
+Duplicate Icon-O-Matic-PathsList Duplizieren
+Save Icon-O-Matic-Menu-File Speichern
+Append… Icon-O-Matic-Menu-File Anhängen...
+Move Path Icon-O-Matic-MovePathsCmd Pfad umsortieren
+Overwrite Icon-O-Matic-SVGExport Überschreiben
+Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Formen einfrieren
+Split Control Point Icon-O-Matic-SplitPointsCmd Kontrollpunkt trennen
Open… Icon-O-Matic-Menu-File Öffnen...
Options Icon-O-Matic-Menus Optionen
-Overwrite Icon-O-Matic-SVGExport Überschreiben
-PNG Set Icon-O-Matic-SavePanel PNG Satz
-Paste Icon-O-Matic-Properties Einfügen
-Paste Properties Icon-O-Matic-Properties Eigenschaften einfügen
-Path Icon-O-Matic-Menus Pfad
-Path Icon-O-Matic-PropertyNames Pfad
-Perspective Icon-O-Matic-TransformersList Perspektive
-Perspective Transformation Perspektive
-Pick a color Icon-O-Matic-ColorPicker Farbe aussuchen
-Properties Icon-O-Matic-Menus Eigenschaften
-Quit Icon-O-Matic-Menu-File Beenden
-Radial Icon-O-Matic-StyleTypes Radial
-Redo Icon-O-Matic-Main Wiederholen:
-Remove Icon-O-Matic-PathManipulator Entfernen
-Remove Icon-O-Matic-PathsList Entfernen
-Remove Icon-O-Matic-ShapesList Entfernen
-Remove Icon-O-Matic-StylesList Entfernen
-Remove Control Point Icon-O-Matic-RemovePointsCmd Kontrollpunkt entfernen
-Remove Control Points Icon-O-Matic-RemovePointsCmd Kontrollpunkte entfernen
-Remove Path Icon-O-Matic-RemovePathsCmd Pfad entfernen
-Remove Paths Icon-O-Matic-RemovePathsCmd Pfade entfernen
-Remove Shape Icon-O-Matic-RemoveShapesCmd Form entfernen
-Remove Shapes Icon-O-Matic-RemoveShapesCmd Formen entfernen
-Remove Style Icon-O-Matic-RemoveStylesCmd Stil entfernen
-Remove Styles Icon-O-Matic-RemoveStylesCmd Stile entfernen
-Remove Transformer Icon-O-Matic-RemoveTransformersCmd Transformator entfernen
-Remove Transformers Icon-O-Matic-RemoveTransformersCmd Transformer entfernen
-Reset Transformation Icon-O-Matic-ResetTransformationCmd Transformation zurücksetzen
-Reset Transformations Icon-O-Matic-ResetTransformationCmd Transformationen zurücksetzen
-Reset transformation Icon-O-Matic-ShapesList Transformation zurücksetzen
-Reset transformation Icon-O-Matic-StylesList Transformation zurücksetzen
-Reverse Icon-O-Matic-PathsList Umkehren
-Reverse Path Icon-O-Matic-ReversePathCmd Pfad umkehren
-Rotate Icon-O-Matic-TransformationBoxStates Rotieren
-Rotate Path Indices Icon-O-Matic-RotatePathIndiciesCmd Pfadindizes rotieren
-Rotate indices backwards Icon-O-Matic-PathsList Indizes rückwärts rotieren
-Rotate indices forwards Icon-O-Matic-PathsList Indizes vorwärts rotieren
-Rotation Icon-O-Matic-PropertyNames Rotation
+Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farbe (#%02x%02x%02x)
+Edit Gradient Icon-O-Matic-SetGradientCmd Farbverlauf bearbeiten
+Clean Up Path Icon-O-Matic-CleanUpPathCmd Pfad aufräumen
Rounding Icon-O-Matic-PropertyNames Rundung
-Save Icon-O-Matic-Menu-File Speichern
-Save Icon-O-Matic-Menu-Settings Speichern
-Save Icon Dialog title Icon speichern
-Save as… Icon-O-Matic-Menu-File Speichern als...
-Save changes to current icon? Icon-O-Matic-Menu-Settings Änderungen am aktuellen Icon speichern?
-Saving your document failed! Icon-O-Matic-Exporter Speichern des Dokuments fehlgeschlagen!
-Scale Icon-O-Matic-TransformationBoxStates Skalieren
-Scale X Icon-O-Matic-PropertyNames Skalieren in X-Richtung
-Scale Y Icon-O-Matic-PropertyNames Skalieren in Y-Richtung
-Select Icon-O-Matic-Properties Auswählen
-Select All Icon-O-Matic-PathManipulator Alles auswählen
-Set Set (property name) Setzen
-Settings… Icon-O-Matic-SavePanel Einstellungen...
-Shape Icon-O-Matic-Menus Form
-Shorten Icon-O-Matic-PropertyNames Kürzen
-Snap to grid Icon-O-Matic-Menu-Settings Am Gitter einrasten
-Split Icon-O-Matic-PathManipulator Trennen
-Split Control Point Icon-O-Matic-SplitPointsCmd Kontrollpunkt trennen
-Split Control Points Icon-O-Matic-SplitPointsCmd Kontrollpunkte trennen
-Stroke Transformation Umrandung
-Style Icon-O-Matic-Menus Stil
-Style type Icon-O-Matic-StyleTypes Stiltyp:
-Swatches Icon-O-Matic-Menus Farbfelder
-The text you are trying to import is quite long,are you sure? Icon-O-Matic-StyledTextImport Der zu importierende Text ist ziemlich lang. Trotzdem importieren?
-Transform Icon-O-Matic-PathManipulator Transformieren
-Transformation Icon-O-Matic-TransformationBoxStates Transformation
-Transformation Icon-O-Matic-TransformersList Transformation
-Transformation Transformation Transformation
-Transformer Icon-O-Matic-Menus Transformator
-Translation X Icon-O-Matic-PropertyNames Verschiebung X
-Translation Y Icon-O-Matic-PropertyNames Verschiebung Y
-Unassign Path Icon-O-Matic-UnassignPathCmd Pfad lösen
-Undo Icon-O-Matic-Main Rückgängig:
-Untitled Icon-O-Matic-Main Unbenannt
-Width Icon-O-Matic-PropertyNames Strichstärke
-Yes Icon-O-Matic-StyledTextImport Ja
-any of the other lists to Empty property list - 2nd line einer der anderen Listen, um
-bad news Icon-O-Matic-Exporter Schlechte Nachrichten
-bad news Title of error alert Schlechte Nachrichten
-edit it's properties here. Empty property list - 3rd line Eigenschaften hier zu ändern.
-load error Icon-O-Matic-SVGImport Ladefehler
-to attach transformers. Empty transformers list - 2nd line um Transformatoren zuzuweisen.
-too big Icon-O-Matic-StyledTextImport zu groß
-warning Icon-O-Matic-SVGExport Warnung
+Remove Shapes Icon-O-Matic-RemoveShapesCmd Formen entfernen
+Clean up Icon-O-Matic-PathsList Aufräumen
+Detect Orient. Icon-O-Matic-PropertyNames Ausrichtung erk.
diff --git a/data/catalogs/apps/icon-o-matic/hr.catkeys b/data/catalogs/apps/icon-o-matic/hr.catkeys
new file mode 100644
index 0000000000..6fcf4d902a
--- /dev/null
+++ b/data/catalogs/apps/icon-o-matic/hr.catkeys
@@ -0,0 +1,99 @@
+1 croatian x-vnd.haiku-icon_o_matic 3380935061
+ Icon-O-Matic-PathCmd
+ Icon-O-Matic-StyleTypes
+ Icon-O-Matic-PropertyNames
+Add Icon-O-Matic-PathsList Dodaj
+Add Icon-O-Matic-StylesList Dodaj
+Add Icon-O-Matic-TransformersList Dodaj
+Add Control Point Icon-O-Matic-AddPointCmd Dodaj kontrolnu točku
+Add Path Icon-O-Matic-AddPathsCmd Dodaj putanju
+Add Paths Icon-O-Matic-AddPathsCmd Dodaj putanje
+Add Style Icon-O-Matic-AddStylesCmd Dodaj stil
+Add Styles Icon-O-Matic-AddStylesCmd Dodaj stilove
+Add circle Icon-O-Matic-PathsList Dodaj krug
+Add empty Icon-O-Matic-ShapesList Dodaj prazno
+Add with path Icon-O-Matic-ShapesList Dodaj sa putanjom
+Add with path & style Icon-O-Matic-ShapesList Dodaj sa putanjom i stilom
+Add with style Icon-O-Matic-ShapesList Dodaj sa stilom
+All Icon-O-Matic-Properties Sve
+Assign Path Icon-O-Matic-AddPathsCmd Dodjeli putanju
+Assign Paths Icon-O-Matic-AddPathsCmd Dodjeli putanje
+Assign Style Icon-O-Matic-AssignStyleCmd Dodjeli stil
+Cancel Icon-O-Matic-ColorPicker Odustani
+Cancel Icon-O-Matic-SVGExport Odustani
+Change Color Icon-O-Matic-SetColorCmd Promjeeni boju
+Closed Icon-O-Matic-PropertyNames Zatvoreno
+Color Icon-O-Matic-PropertyNames Boja
+Color Icon-O-Matic-StyleTypes Boja
+Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Boja (#%02x%02x%02x)
+Color (#%02x%02x%02x) Style name after dropping a color Boja (#%02x%02x%02x)
+Copy Icon-O-Matic-Properties Kopiraj
+Duplicate Icon-O-Matic-PathsList Udvostruči
+Duplicate Icon-O-Matic-ShapesList Udvostruči
+Duplicate Icon-O-Matic-StylesList Udvostruči
+Edit Icon-O-Matic-Menus Uredi
+Error: Icon-O-Matic-Exporter Greška:
+Error: Icon-O-Matic-Main Greška:
+Export Icon-O-Matic-Menu-File Izvoz
+Export Icon Dialog title Izvezi ikonu
+Export as… Icon-O-Matic-Menu-File Izvezi kao...
+Failed to open the file '%s' as an SVG document.\n\nError: %s Icon-O-Matic-SVGImport Neuspjelo otvaranje datoteke '%s' kao SVG dokumenta.\n\nError: %s
+File Icon-O-Matic-Menus Datoteka
+Format Icon-O-Matic-SavePanel Format
+HVIF Source Code Icon-O-Matic-SavePanel HVIF izvorni kod
+Height Icon-O-Matic-PropertyNames Visina
+Insert Control Point Icon-O-Matic-InsertPointCmd Unesi kontrolnu točku
+Invert selection Icon-O-Matic-Properties Obrnuti odabir
+Modify Control Point Icon-O-Matic-ChangePointCmd Izmjeni kontrolnu točku
+Move Icon-O-Matic-TransformationBoxStates Premjesti
+Move Paths Icon-O-Matic-MovePathsCmd Premjesti putanje
+Move Style Icon-O-Matic-MoveStylesCmd Premjesti stil
+Move Styles Icon-O-Matic-MoveStylesCmd Ukloni stilove
+Name Icon-O-Matic-PropertyNames Ime
+New Icon-O-Matic-Menu-File Novi
+No Icon-O-Matic-StyledTextImport Ne
+None Icon-O-Matic-Properties Nijedan
+OK Icon-O-Matic-ColorPicker U redu
+OK Icon-O-Matic-SVGImport U redu
+Opacity Icon-O-Matic-PropertyNames Neprozirnost
+Opening the document failed! Icon-O-Matic-Main Neuspjelo otvaranje dokumenta!
+Opening the icon failed! Icon-O-Matic-Main Neuspjelo otvaranje ikone!
+Open… Icon-O-Matic-Menu-File Otvori...
+Options Icon-O-Matic-Menus Opcije
+Paste Icon-O-Matic-Properties Zalijepi
+Path Icon-O-Matic-Menus Putanja
+Path Icon-O-Matic-PropertyNames Putanja
+Pick a color Icon-O-Matic-ColorPicker Odaberi boju
+Properties Icon-O-Matic-Menus Osobitosti
+Quit Icon-O-Matic-Menu-File Isključi
+Remove Icon-O-Matic-PathManipulator Ukloni
+Remove Icon-O-Matic-PathsList Ukloni
+Remove Icon-O-Matic-ShapesList Ukloni
+Remove Icon-O-Matic-StylesList Ukloni
+Remove Control Point Icon-O-Matic-RemovePointsCmd Ukloni kontrolnu točku
+Remove Control Points Icon-O-Matic-RemovePointsCmd Ukloni kontrolne točke
+Remove Path Icon-O-Matic-RemovePathsCmd Ukloni putanju
+Remove Paths Icon-O-Matic-RemovePathsCmd Ukloni putanje
+Remove Style Icon-O-Matic-RemoveStylesCmd Ukloni stil
+Remove Styles Icon-O-Matic-RemoveStylesCmd Ukloni stilove
+Reverse Icon-O-Matic-PathsList Obrnuto
+Rotate Icon-O-Matic-TransformationBoxStates Rotiraj
+Rotation Icon-O-Matic-PropertyNames Rotacija
+Save Icon-O-Matic-Menu-File Spremi
+Save Icon Dialog title Spremi ikonu
+Save as… Icon-O-Matic-Menu-File Spremi kao...
+Saving your document failed! Icon-O-Matic-Exporter Neuspjelo spremanje vašeg dokumenta!
+Select Icon-O-Matic-Properties Odaberi
+Select All Icon-O-Matic-PathManipulator Odaberi sve
+Settings… Icon-O-Matic-SavePanel Postavke...
+Style Icon-O-Matic-Menus Stil
+Style type Icon-O-Matic-StyleTypes Tip stila
+The text you are trying to import is quite long,are you sure? Icon-O-Matic-StyledTextImport Tekst koji pokušavate uvesti je dugačak,jeste li sigurni?
+Width Icon-O-Matic-PropertyNames Širina
+Yes Icon-O-Matic-StyledTextImport Da
+bad news Icon-O-Matic-Exporter loše vijesti
+bad news Title of error alert loše vijesti
+edit it's properties here. Empty property list - 3rd line uredi njegova svojstva ovdje
+load error Icon-O-Matic-SVGImport greška učitavanja
+too big Icon-O-Matic-StyledTextImport prevelik
+warning Icon-O-Matic-SVGExport upozorenje
diff --git a/data/catalogs/apps/icon-o-matic/lt.catkeys b/data/catalogs/apps/icon-o-matic/lt.catkeys
new file mode 100644
index 0000000000..3974aaf697
--- /dev/null
+++ b/data/catalogs/apps/icon-o-matic/lt.catkeys
@@ -0,0 +1,196 @@
+1 lithuanian x-vnd.haiku-icon_o_matic 2510150229
+Select All Icon-O-Matic-PathManipulator Pažymėti viską
+Add Style Icon-O-Matic-AddStylesCmd Pridėti stilių
+Color (#%02x%02x%02x) Style name after dropping a color Spalva (#%02x%02x%02x)
+Add Icon-O-Matic-StylesList Pridėti
+Move Shape Icon-O-Matic-MoveShapesCommand Perkelti figūrą
+Opening the document failed! Icon-O-Matic-Main Nepavyko atverti dokumento!
+Reset transformation Icon-O-Matic-ShapesList Atšaukti transformaciją
+Move Paths Icon-O-Matic-MovePathsCmd Perkelti kreives
+None Icon-O-Matic-Properties Nieko
+New Icon-O-Matic-Menu-File Naujas
+Icon-O-Matic might not have interpreted all data from the SVG when it was loaded. By overwriting the original file, this information would now be lost. Icon-O-Matic-SVGExport Gali būti, jog, atverdama šį SVG failą, programa nesuinterpretavo visų jo duomenų. Jeigu perrašysite failą, jūs prarasite tuos duomenis.
+Paste Properties Icon-O-Matic-Properties Įdėti savybes
+Stroke Transformation Linija
+Save Icon Dialog title Įrašyti piktogramą
+Closed Icon-O-Matic-PropertyNames Uždaras
+Remove Path Icon-O-Matic-RemovePathsCmd Pašalinti kreivę
+Add shape with path Icon-O-Matic-Menu-Shape Pridėti figūrą su kreive
+Select Icon-O-Matic-Properties Pažymėti
+Height Icon-O-Matic-PropertyNames Aukštis
+Remove Transformers Icon-O-Matic-RemoveTransformersCmd Pašalinti transformatorius
+Width Icon-O-Matic-PropertyNames Plotis
+Transformation Icon-O-Matic-TransformationBoxStates Transformacija
+Duplicate Icon-O-Matic-ShapesList Dubliuoti
+ Icon-O-Matic-PropertyNames
+Linear Icon-O-Matic-StyleTypes Tiesinis
+Assign Path Icon-O-Matic-AddPathsCmd Priskirti kreivę
+Move Icon-O-Matic-TransformationBoxStates Perkelti
+Flip Control Points Icon-O-Matic-FlipPointsCmd Apversti valdymo taškus
+warning Icon-O-Matic-SVGExport įspėjimas
+Copy Icon-O-Matic-Properties Kopijuoti
+Miter Limit Icon-O-Matic-PropertyNames Aštrumas
+OK Icon-O-Matic-ColorPicker Gerai
+Remove Control Point Icon-O-Matic-RemovePointsCmd Pašalinti valdymo tašką
+Bleep! Exporter - Continue in error dialog Po velnių!
+Add circle Icon-O-Matic-PathsList Pridėti apskritimą
+Shorten Icon-O-Matic-PropertyNames Trumpinti
+bad news Title of error alert prastos naujienos
+Remove Paths Icon-O-Matic-RemovePathsCmd Pašalinti kreives
+Scale Y Icon-O-Matic-PropertyNames Ištempti Y ašyje
+Add Control Point Icon-O-Matic-AddPointCmd Pridėti valdymo tašką
+Untitled Icon-O-Matic-Main Be pavadinimo
+any of the other lists to Empty property list - 2nd line bet kuriame kitame sąraše
+Save as… Icon-O-Matic-Menu-File Įrašyti kaip…
+Change Color Icon-O-Matic-SetColorCmd Pakeisti spalvą
+Style Icon-O-Matic-Menus Stilius
+ Icon-O-Matic-PathCmd
+Opening the icon failed! Icon-O-Matic-Main Piktogramos atverti nepavyko!
+Error: Icon-O-Matic-Main Klaida:
+Rotate indices backwards Icon-O-Matic-PathsList Perkelti galus atgal
+Name Icon-O-Matic-PropertyNames Pavadinimas
+bad news Icon-O-Matic-Exporter prastos naujienos
+ Icon-O-Matic-Menu-Edit
+Off Icon-O-Matic-Menu-Settings Tinklelio nerodyti
+Freeze Shape Icon-O-Matic-FreezeTransformationCmd Fiksuoti figūrą
+PNG Set Icon-O-Matic-SavePanel PNG rinkinys
+Joins Icon-O-Matic-PropertyNames Sujungimai
+Remove Style Icon-O-Matic-RemoveStylesCmd Pašalinti stilių
+Scale X Icon-O-Matic-PropertyNames Ištempti X ašyje
+Cancel Icon-O-Matic-SVGExport Atsisakyti
+Add shape with style Icon-O-Matic-Menu-Shape Pridėti figūrą su stiliumi
+Remove Shape Icon-O-Matic-RemoveShapesCmd Pašalinti figūrą
+Reverse Icon-O-Matic-PathsList Pakeisti kreivės kryptį
+HVIF Source Code Icon-O-Matic-SavePanel HVIF pirminis tekstas
+Reset Transformations Icon-O-Matic-ResetTransformationCmd Atšaukti transformacijas
+All Icon-O-Matic-Properties Viską
+Undo Icon-O-Matic-Main Atšaukti:
+Click on a shape above Empty transformers list - 1st line Spustelėkite figūrą aukščiau
+Add Shape Icon-O-Matic-AddShapesCmd Pridėti figūrą
+Contour Transformation Kontūras
+