From c936a02360c7a18c49d2da5e8b8e38b6b666ead6 Mon Sep 17 00:00:00 2001
From: Michael Lotz
Date: Wed, 15 Aug 2012 23:17:47 +0200
Subject: [PATCH 01/30] Move MSI initialization before IO-APIC to fix missing
init.
Initializing the IO-APIC will initialize the PCI module, which does
read the MSI config of the devices only when MSIs are available.
Since we initialized them only after that, that condition wasn't met.
Later, due to the uninitialized arch info, MSIs were still marked as
available (0xcc = 204 MSIs). Due to the also uninitialized configured
count, they were always deemed busy however, in effect just breaking
MSI support whereever IO-APICs were available.
---
src/system/kernel/arch/x86/arch_int.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/system/kernel/arch/x86/arch_int.cpp b/src/system/kernel/arch/x86/arch_int.cpp
index 123f575bb3..c83b6ae702 100644
--- a/src/system/kernel/arch/x86/arch_int.cpp
+++ b/src/system/kernel/arch/x86/arch_int.cpp
@@ -893,8 +893,8 @@ arch_int_init_post_vm(struct kernel_args *args)
status_t
arch_int_init_io(kernel_args* args)
{
- ioapic_init(args);
msi_init();
+ ioapic_init(args);
return B_OK;
}
From a4bca8119323c016607b25c3d1dcec2f0d4b0010 Mon Sep 17 00:00:00 2001
From: Michael Lotz
Date: Wed, 15 Aug 2012 21:30:08 +0200
Subject: [PATCH 02/30] Add MSI support to OHCI.
It looks like VirtualBox assumes MSIs when emulating a 64bit system so
this gets OHCI working there. Shouldn't harm if it's used anywhere else
either.
---
src/add-ons/kernel/busses/usb/ohci.cpp | 40 ++++++++++++++++++++++++--
src/add-ons/kernel/busses/usb/ohci.h | 3 ++
2 files changed, 41 insertions(+), 2 deletions(-)
diff --git a/src/add-ons/kernel/busses/usb/ohci.cpp b/src/add-ons/kernel/busses/usb/ohci.cpp
index c9f2c1acc3..df38174c20 100644
--- a/src/add-ons/kernel/busses/usb/ohci.cpp
+++ b/src/add-ons/kernel/busses/usb/ohci.cpp
@@ -10,6 +10,7 @@
#include
#include
+#include
#include
#include
#include
@@ -19,6 +20,7 @@
#define USB_MODULE_NAME "ohci"
pci_module_info *OHCI::sPCIModule = NULL;
+pci_x86_module_info *OHCI::sPCIx86Module = NULL;
static int32
@@ -309,10 +311,24 @@ OHCI::OHCI(pci_info *info, Stack *stack)
B_URGENT_DISPLAY_PRIORITY, (void *)this);
resume_thread(fFinishThread);
+ // Find the right interrupt vector, using MSIs if available.
+ uint8 interruptVector = fPCIInfo->u.h0.interrupt_line;
+ if (sPCIx86Module != NULL && sPCIx86Module->get_msi_count(fPCIInfo->bus,
+ fPCIInfo->device, fPCIInfo->function) >= 1) {
+ uint8 msiVector = 0;
+ if (sPCIx86Module->configure_msi(fPCIInfo->bus, fPCIInfo->device,
+ fPCIInfo->function, 1, &msiVector) == B_OK
+ && sPCIx86Module->enable_msi(fPCIInfo->bus, fPCIInfo->device,
+ fPCIInfo->function) == B_OK) {
+ TRACE_ALWAYS("using message signaled interrupts\n");
+ interruptVector = msiVector;
+ }
+ }
+
// Install the interrupt handler
TRACE("installing interrupt handler\n");
- install_io_interrupt_handler(fPCIInfo->u.h0.interrupt_line,
- _InterruptHandler, (void *)this, 0);
+ install_io_interrupt_handler(interruptVector, _InterruptHandler,
+ (void *)this, 0);
// Enable interesting interrupts now that the handler is in place
_WriteReg(OHCI_INTERRUPT_ENABLE, OHCI_NORMAL_INTERRUPTS
@@ -538,6 +554,14 @@ OHCI::AddTo(Stack *stack)
return B_NO_MEMORY;
}
+ // Try to get the PCI x86 module as well so we can enable possible MSIs.
+ if (sPCIx86Module == NULL && get_module(B_PCI_X86_MODULE_NAME,
+ (module_info **)&sPCIx86Module) != B_OK) {
+ // If it isn't there, that's not critical though.
+ TRACE_MODULE_ERROR("failed to get pci x86 module\n");
+ sPCIx86Module = NULL;
+ }
+
for (uint32 i = 0 ; sPCIModule->get_nth_pci_info(i, item) >= B_OK; i++) {
if (item->class_base == PCI_serial_bus && item->class_sub == PCI_usb
&& item->class_api == PCI_usb_ohci) {
@@ -555,6 +579,12 @@ OHCI::AddTo(Stack *stack)
delete item;
sPCIModule = NULL;
put_module(B_PCI_MODULE_NAME);
+
+ if (sPCIx86Module != NULL) {
+ sPCIx86Module = NULL;
+ put_module(B_PCI_X86_MODULE_NAME);
+ }
+
return B_NO_MEMORY;
}
@@ -578,6 +608,12 @@ OHCI::AddTo(Stack *stack)
delete item;
sPCIModule = NULL;
put_module(B_PCI_MODULE_NAME);
+
+ if (sPCIx86Module != NULL) {
+ sPCIx86Module = NULL;
+ put_module(B_PCI_X86_MODULE_NAME);
+ }
+
return ENODEV;
}
diff --git a/src/add-ons/kernel/busses/usb/ohci.h b/src/add-ons/kernel/busses/usb/ohci.h
index adf1031817..fbe24c0f44 100644
--- a/src/add-ons/kernel/busses/usb/ohci.h
+++ b/src/add-ons/kernel/busses/usb/ohci.h
@@ -16,6 +16,7 @@
struct pci_info;
struct pci_module_info;
+struct pci_x86_module_info;
class OHCIRootHub;
typedef struct transfer_data {
@@ -140,6 +141,8 @@ inline uint32 _ReadReg(uint32 reg);
ohci_general_td *topDescriptor);
static pci_module_info * sPCIModule;
+static pci_x86_module_info * sPCIx86Module;
+
pci_info * fPCIInfo;
Stack * fStack;
From 59347b7f1bad11b684ce8c6ed594781f5d2eb4e2 Mon Sep 17 00:00:00 2001
From: Ryan Leavengood
Date: Tue, 14 Aug 2012 01:03:35 -0400
Subject: [PATCH 03/30] Reverse the meaning of BWindow fShowLevel to match
BView.
This also matches the client_window_info.show_hide_level field used in Deskbar
and other applications.
While doing this, keep fShowLevel fully in sync between BWindow and app_server,
use one message type for both hiding and showing, and make the decision to show
and hide the window in the app_server.
Lastly make minimize behave as described in the Be Book: hidden windows cannot
be minimized, and minimized windows which get hidden become unminimized.
---
headers/os/interface/Window.h | 1 +
headers/private/app/ServerProtocol.h | 4 +-
src/kits/interface/Window.cpp | 50 +++++++++++------------
src/servers/app/ProfileMessageSupport.cpp | 4 +-
src/servers/app/ServerWindow.cpp | 38 ++++++-----------
src/servers/app/Window.cpp | 5 ++-
6 files changed, 44 insertions(+), 58 deletions(-)
diff --git a/headers/os/interface/Window.h b/headers/os/interface/Window.h
index 03a63e1828..f1c406f07d 100644
--- a/headers/os/interface/Window.h
+++ b/headers/os/interface/Window.h
@@ -352,6 +352,7 @@ private:
void _GetDecoratorSize(float* _borderWidth,
float* _tabHeight) const;
+ void _SendShowOrHideMessage();
private:
char* fTitle;
diff --git a/headers/private/app/ServerProtocol.h b/headers/private/app/ServerProtocol.h
index 99537198d7..ca6c19a31e 100644
--- a/headers/private/app/ServerProtocol.h
+++ b/headers/private/app/ServerProtocol.h
@@ -87,8 +87,8 @@ enum {
AS_GET_CURSOR_BITMAP,
// Window definitions
- AS_SHOW_WINDOW,
- AS_HIDE_WINDOW,
+ AS_SHOW_OR_HIDE_WINDOW,
+ AS_INTERNAL_HIDE_WINDOW,
AS_MINIMIZE_WINDOW,
AS_QUIT_WINDOW,
AS_SEND_BEHIND,
diff --git a/src/kits/interface/Window.cpp b/src/kits/interface/Window.cpp
index 6f86831d95..64ee73a113 100644
--- a/src/kits/interface/Window.cpp
+++ b/src/kits/interface/Window.cpp
@@ -589,7 +589,8 @@ BWindow::ChildAt(int32 index) const
void
BWindow::Minimize(bool minimize)
{
- if (IsModal() || IsFloating() || fMinimized == minimize || !Lock())
+ if (IsModal() || IsFloating() || IsHidden() || fMinimized == minimize
+ || !Lock())
return;
fMinimized = minimize;
@@ -769,10 +770,7 @@ BWindow::MessageReceived(BMessage* msg)
// connect all views to the server again
fTopView->_CreateSelf();
- if (fShowLevel >= 1) {
- fLink->StartMessage(AS_SHOW_WINDOW);
- fLink->Flush();
- }
+ _SendShowOrHideMessage();
}
return BLooper::MessageReceived(msg);
@@ -2094,10 +2092,6 @@ BWindow::IsMinimized() const
if (!locker.IsLocked())
return false;
- // Hiding takes precendence over minimization!!!
- if (IsHidden())
- return false;
-
return fMinimized;
}
@@ -2607,13 +2601,9 @@ BWindow::Show()
{
bool runCalled = true;
if (Lock()) {
- fShowLevel++;
+ fShowLevel--;
- if (fShowLevel == 1) {
- fLink->StartMessage(AS_SHOW_WINDOW);
- fLink->Attach(fShowLevel);
- fLink->Flush();
- }
+ _SendShowOrHideMessage();
runCalled = fRunCalled;
@@ -2638,25 +2628,24 @@ BWindow::Show()
void
BWindow::Hide()
{
- if (!Lock())
- return;
+ if (Lock()) {
+ // If we are minimized and are about to be hidden, unminimize
+ if (IsMinimized() && fShowLevel == 0)
+ Minimize(false);
- fShowLevel--;
+ fShowLevel++;
- if (fShowLevel == 0) {
- fLink->StartMessage(AS_HIDE_WINDOW);
- fLink->Attach(fShowLevel);
- fLink->Flush();
+ _SendShowOrHideMessage();
+
+ Unlock();
}
-
- Unlock();
}
bool
BWindow::IsHidden() const
{
- return fShowLevel <= 0;
+ return fShowLevel > 0;
}
@@ -2793,7 +2782,7 @@ BWindow::_InitData(BRect frame, const char* title, window_look look,
fInTransaction = bitmapToken >= 0;
fUpdateRequested = false;
fActive = false;
- fShowLevel = 0;
+ fShowLevel = 1;
fTopView = NULL;
fFocus = NULL;
@@ -4061,6 +4050,15 @@ BWindow::_GetDecoratorSize(float* _borderWidth, float* _tabHeight) const
}
+void
+BWindow::_SendShowOrHideMessage()
+{
+ fLink->StartMessage(AS_SHOW_OR_HIDE_WINDOW);
+ fLink->Attach(fShowLevel);
+ fLink->Flush();
+}
+
+
// #pragma mark - C++ binary compatibility kludge
diff --git a/src/servers/app/ProfileMessageSupport.cpp b/src/servers/app/ProfileMessageSupport.cpp
index 5472f040e5..519ebbf942 100644
--- a/src/servers/app/ProfileMessageSupport.cpp
+++ b/src/servers/app/ProfileMessageSupport.cpp
@@ -66,8 +66,8 @@ string_for_message_code(uint32 code, BString& string)
CODE(AS_GET_CURSOR_BITMAP);
// Window definitions
- CODE(AS_SHOW_WINDOW);
- CODE(AS_HIDE_WINDOW);
+ CODE(AS_SHOW_OR_HIDE_WINDOW);
+ CODE(AS_INTERNAL_HIDE_WINDOW);
CODE(AS_MINIMIZE_WINDOW);
CODE(AS_QUIT_WINDOW);
CODE(AS_SEND_BEHIND);
diff --git a/src/servers/app/ServerWindow.cpp b/src/servers/app/ServerWindow.cpp
index dd93b57c4b..04c5a46c50 100644
--- a/src/servers/app/ServerWindow.cpp
+++ b/src/servers/app/ServerWindow.cpp
@@ -315,7 +315,7 @@ ServerWindow::_PrepareQuit()
_Hide();
fDesktop->UnlockSingleWindow();
} else if (fThread >= B_OK)
- PostMessage(AS_HIDE_WINDOW);
+ PostMessage(AS_INTERNAL_HIDE_WINDOW);
}
@@ -481,9 +481,7 @@ ServerWindow::GetInfo(window_info& info)
info.window_right = (int)floor(fWindow->Frame().right);
info.window_bottom = (int)floor(fWindow->Frame().bottom);
- // This is essentially opposite of the ShowLevel, meaning a window is
- // hidden if it is 1 or more, and shown if it is 0 or less.
- info.show_hide_level = fWindow->ShowLevel() <= 0 ? 1 : 0;
+ info.show_hide_level = fWindow->ShowLevel();
info.is_mini = fWindow->IsMinimized();
}
@@ -596,44 +594,32 @@ void
ServerWindow::_DispatchMessage(int32 code, BPrivate::LinkReceiver& link)
{
switch (code) {
- case AS_SHOW_WINDOW:
+ case AS_SHOW_OR_HIDE_WINDOW:
{
- DTRACE(("ServerWindow %s: Message AS_SHOW_WINDOW\n", Title()));
- _Show();
-
int32 showLevel;
if (link.Read(&showLevel) == B_OK) {
+ DTRACE(("ServerWindow %s: Message AS_SHOW_OR_HIDE_WINDOW, "
+ "show level: %d\n", Title(), showLevel));
+
fWindow->SetShowLevel(showLevel);
+ if (showLevel <= 0)
+ _Show();
+ else
+ _Hide();
}
break;
-
}
- case AS_HIDE_WINDOW:
- {
- DTRACE(("ServerWindow %s: Message AS_HIDE_WINDOW\n", Title()));
+ // Only for internal use within this class
+ case AS_INTERNAL_HIDE_WINDOW:
_Hide();
-
- int32 showLevel;
- if (link.Read(&showLevel) == B_OK) {
- fWindow->SetShowLevel(showLevel);
- }
break;
- }
case AS_MINIMIZE_WINDOW:
{
bool minimize;
-
if (link.Read(&minimize) == B_OK) {
DTRACE(("ServerWindow %s: Message AS_MINIMIZE_WINDOW, "
"minimize: %d\n", Title(), minimize));
- if (fWindow->ShowLevel() <= 0) {
- // Window is currently hidden - ignore the minimize
- // request, but keep the state in sync.
- fWindow->SetMinimized(minimize);
- break;
- }
-
fDesktop->UnlockSingleWindow();
fDesktop->MinimizeWindow(fWindow, minimize);
fDesktop->LockSingleWindow();
diff --git a/src/servers/app/Window.cpp b/src/servers/app/Window.cpp
index 3cbb520e8b..117e67a564 100644
--- a/src/servers/app/Window.cpp
+++ b/src/servers/app/Window.cpp
@@ -102,9 +102,10 @@ Window::Window(const BRect& frame, const char *name,
fInUpdate(false),
fUpdatesEnabled(true),
- // windows start hidden
+ // Windows start hidden
fHidden(true),
- fShowLevel(0),
+ // Hidden is 1 or more
+ fShowLevel(1),
fMinimized(false),
fIsFocus(false),
From 0f6d975d36156db2292c9ff8ac6d4dce9e50b27a Mon Sep 17 00:00:00 2001
From: Niels Sascha Reedijk
Date: Thu, 16 Aug 2012 06:23:22 +0200
Subject: [PATCH 04/30] Update translations from Pootle
---
data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys | 2 +-
data/catalogs/apps/readonlybootprompt/ru.catkeys | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
index 2d087fecb6..974d67ba41 100644
--- a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
@@ -23,5 +23,5 @@ Master output AudioMixer Главный выход
Setup AudioMixer Настройка
Use non linear gain sliders (like BeOS R5) AudioMixer Использовать нелинейные ползунки управления звуком
Gain AudioMixer Усиление
-Allow output channel remapping AudioMixer Разрешить переназначение входного канала
+Allow output channel remapping AudioMixer Разрешить переназначение выходного канала
Physical input channels AudioMixer Физические входные каналы
diff --git a/data/catalogs/apps/readonlybootprompt/ru.catkeys b/data/catalogs/apps/readonlybootprompt/ru.catkeys
index 9da7bcd507..09fff61206 100644
--- a/data/catalogs/apps/readonlybootprompt/ru.catkeys
+++ b/data/catalogs/apps/readonlybootprompt/ru.catkeys
@@ -1,6 +1,6 @@
1 russian x-vnd.Haiku-ReadOnlyBootPrompt 2544294242
Custom BootPromptWindow Пользовательская
-Thank you for trying out Haiku! We hope you'll like it!\n\nYou can select your preferred language and keyboard layout from the list on the left which will then be used instantly. You can easily change both settings from the Desktop later on on the fly.\n\nDo you wish to run the Installer or continue booting to the Desktop?\n BootPromptWindow For other languages, a note could be added: \"Note: Localization of Haiku applications and other components is an on-going effort. You will frequently encounter untranslated strings, but if you like, you can join in the work at .\" Большое спасибо за то, что пробуете Haiku.\nМы очень надеемся, что она вам понравится!\n\nИз списка слева вы можете выбрать предпочитаемый язык и клавиатурную раскладку, которые активируются немедленно. Вы легко сможете изменить эти настройки после запуска рабочего стола без перезагрузки.\n\nВы хотите запустить Установщик или продолжить загрузку рабочего стола?\n
+Thank you for trying out Haiku! We hope you'll like it!\n\nYou can select your preferred language and keyboard layout from the list on the left which will then be used instantly. You can easily change both settings from the Desktop later on on the fly.\n\nDo you wish to run the Installer or continue booting to the Desktop?\n BootPromptWindow For other languages, a note could be added: \"Note: Localization of Haiku applications and other components is an on-going effort. You will frequently encounter untranslated strings, but if you like, you can join in the work at .\" Большое спасибо за то, что решили попробовать Haiku.\nМы очень надеемся, что она вам понравится!\n\nИз списка слева вы можете выбрать предпочитаемый язык и клавиатурную раскладку, которые активируются немедленно. Вы легко сможете изменить эти настройки после запуска рабочего стола без перезагрузки.\n\nВы хотите запустить Установщик или продолжить загрузку рабочего стола?\n
Desktop (Live-CD) BootPromptWindow Рабочий стол (Live-CD)
Language BootPromptWindow Язык
Welcome to Haiku! BootPromptWindow Добро пожаловать в Haiku!
From 468f826656ee77d64ab966e6077db259ee0db619 Mon Sep 17 00:00:00 2001
From: Humdinger
Date: Thu, 16 Aug 2012 20:13:40 +0200
Subject: [PATCH 05/30] Some more string translations.
A few more translator changes I missed with last commit.
Added a few more strings for translation, pointed out by diver.
Thanks!
---
src/add-ons/translators/gif/GIFView.cpp | 2 +-
src/add-ons/translators/raw/ConfigView.cpp | 2 +-
src/add-ons/translators/webp/ConfigView.cpp | 3 ++-
src/apps/mail/Prefs.cpp | 2 +-
src/preferences/network/EthernetSettingsView.cpp | 2 +-
5 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/add-ons/translators/gif/GIFView.cpp b/src/add-ons/translators/gif/GIFView.cpp
index 266a72b460..e54c3bdcef 100644
--- a/src/add-ons/translators/gif/GIFView.cpp
+++ b/src/add-ons/translators/gif/GIFView.cpp
@@ -42,7 +42,7 @@ GIFView::GIFView(const char *name)
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
- BStringView *title = new BStringView("Title", translatorName);
+ BStringView *title = new BStringView("Title", B_TRANSLATE("GIF image translator"));
title->SetFont(be_bold_font);
char version_string[100];
diff --git a/src/add-ons/translators/raw/ConfigView.cpp b/src/add-ons/translators/raw/ConfigView.cpp
index bbb9c0bc15..060886604b 100644
--- a/src/add-ons/translators/raw/ConfigView.cpp
+++ b/src/add-ons/translators/raw/ConfigView.cpp
@@ -27,7 +27,7 @@ ConfigView::ConfigView(uint32 flags)
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
- BStringView *fTitle = new BStringView("title", B_TRANSLATE("RAW Images"));
+ BStringView *fTitle = new BStringView("title", B_TRANSLATE("RAW image translator"));
fTitle->SetFont(be_bold_font);
char version[256];
diff --git a/src/add-ons/translators/webp/ConfigView.cpp b/src/add-ons/translators/webp/ConfigView.cpp
index 5bb7c34ef3..ac6ab0f8a8 100644
--- a/src/add-ons/translators/webp/ConfigView.cpp
+++ b/src/add-ons/translators/webp/ConfigView.cpp
@@ -58,7 +58,8 @@ ConfigView::ConfigView(TranslatorSettings* settings, uint32 flags)
{
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
- BStringView* title = new BStringView("title", B_TRANSLATE("WebP Images"));
+ BStringView* title = new BStringView("title",
+ B_TRANSLATE("WebP image translator"));
title->SetFont(be_bold_font);
char versionString[256];
diff --git a/src/apps/mail/Prefs.cpp b/src/apps/mail/Prefs.cpp
index 2edb2081b9..8611f1f917 100644
--- a/src/apps/mail/Prefs.cpp
+++ b/src/apps/mail/Prefs.cpp
@@ -629,7 +629,7 @@ TPrefsWindow::_BuildAccountMenu(int32 account)
//menu->SetRadioMode(true);
BMailAccounts accounts;
if (accounts.CountAccounts() == 0) {
- menu->AddItem(item = new BMenuItem("", NULL));
+ menu->AddItem(item = new BMenuItem(B_TRANSLATE(""), NULL));
item->SetEnabled(false);
return menu;
}
diff --git a/src/preferences/network/EthernetSettingsView.cpp b/src/preferences/network/EthernetSettingsView.cpp
index f098797b0b..5ab586f903 100644
--- a/src/preferences/network/EthernetSettingsView.cpp
+++ b/src/preferences/network/EthernetSettingsView.cpp
@@ -114,7 +114,7 @@ EthernetSettingsView::EthernetSettingsView()
rootLayout->SetSpacing(inset);
layout->SetSpacing(inset, inset);
- BPopUpMenu* deviceMenu = new BPopUpMenu("");
+ BPopUpMenu* deviceMenu = new BPopUpMenu((B_TRANSLATE(""));
for (int32 i = 0; i < fInterfaces.CountItems(); i++) {
BString& name = *fInterfaces.ItemAt(i);
BString label = name;
From 2bcc7f40c3c5bb7128139bd73c2efe3ce1a177dc Mon Sep 17 00:00:00 2001
From: Oliver Tappe
Date: Thu, 16 Aug 2012 21:04:57 +0200
Subject: [PATCH 06/30] Simplify use of translated strings in BAboutWindow.
* avoid duplicate initialization of variables by joining the
expressions.
---
src/kits/shared/AboutWindow.cpp | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/kits/shared/AboutWindow.cpp b/src/kits/shared/AboutWindow.cpp
index 07930ecc3d..e8fbe72bf0 100644
--- a/src/kits/shared/AboutWindow.cpp
+++ b/src/kits/shared/AboutWindow.cpp
@@ -29,11 +29,11 @@ BAboutWindow::BAboutWindow(const char *appName, int32 firstCopyrightYear,
{
fAppName = new BString(appName);
- const char* copyright = B_TRANSLATE_MARK("Copyright " B_UTF8_COPYRIGHT
- " %years% Haiku, Inc.");
- const char* writtenBy = B_TRANSLATE_MARK("Written by:");
- copyright = gSystemCatalog.GetString(copyright, "AboutWindow");
- writtenBy = gSystemCatalog.GetString(writtenBy, "AboutWindow");
+ const char* copyright = gSystemCatalog.GetString(
+ B_TRANSLATE_MARK("Copyright " B_UTF8_COPYRIGHT " %years% Haiku, Inc."),
+ "AboutWindow");
+ const char* writtenBy = gSystemCatalog.GetString(
+ B_TRANSLATE_MARK("Written by:"), "AboutWindow");
// Get current year
time_t tp;
@@ -75,10 +75,10 @@ BAboutWindow::~BAboutWindow()
void
BAboutWindow::Show()
{
- const char* aboutTitle = B_TRANSLATE_MARK("About" B_UTF8_ELLIPSIS);
- const char* closeLabel = B_TRANSLATE_MARK("Close");
- aboutTitle = gSystemCatalog.GetString(aboutTitle, "AboutWindow");
- closeLabel = gSystemCatalog.GetString(closeLabel, "AboutWindow");
+ const char* aboutTitle = gSystemCatalog.GetString(
+ B_TRANSLATE_MARK("About" B_UTF8_ELLIPSIS), "AboutWindow");
+ const char* closeLabel = gSystemCatalog.GetString(
+ B_TRANSLATE_MARK("Close"), "AboutWindow");
BAlert *alert = new BAlert(aboutTitle, fText->String(), closeLabel);
BTextView *view = alert->TextView();
From e19d7089a71bf8a977e7751cdfc2340af22ff2a3 Mon Sep 17 00:00:00 2001
From: Oliver Tappe
Date: Thu, 16 Aug 2012 21:10:53 +0200
Subject: [PATCH 07/30] Fix #8841 (broken localization support for 3rd-party
apps).
* made private Catalog.h header public by moving it to
os/locale/tools/CollectingCatalog.h
* reintroduce B_COLLECTING_CATKEYS define (which is expected to be set
during a collectcatkeys session) in order to decide whether or not
to automatically include the CollecingCatalog.h header from Catalog.h
* adjust jam rule for collecting catalog keys accordingly
---
build/jam/LocaleRules | 9 +++------
headers/os/locale/Catalog.h | 11 ++++++++++-
.../Catalog.h => os/locale/tools/CollectingCatalog.h} | 9 ++-------
3 files changed, 15 insertions(+), 14 deletions(-)
rename headers/{private/locale/collecting/Catalog.h => os/locale/tools/CollectingCatalog.h} (95%)
diff --git a/build/jam/LocaleRules b/build/jam/LocaleRules
index 55b661f348..7fcfd693d5 100644
--- a/build/jam/LocaleRules
+++ b/build/jam/LocaleRules
@@ -17,11 +17,7 @@ rule ExtractCatalogEntries target : sources : signature : regexp
defines = $(DEFINES) ;
headers = $(HAIKU_CONFIG_HEADERS) $(SEARCH_SOURCE) $(SUBDIRHDRS)
$(HDRS) ;
-
- # insert specific header folder containing the Catalog.h that should be
- # used when collecting the catalog keys:
- sysHeaders = [ FDirName $(HAIKU_TOP) headers private locale collecting ]
- $(SUBDIRSYSHDRS) $(SYSHDRS) ;
+ sysHeaders = $(SUBDIRSYSHDRS) $(SYSHDRS) ;
if $(PLATFORM) = host {
sysHeaders += $(HOST_HDRS) ;
@@ -71,7 +67,8 @@ rule ExtractCatalogEntries target : sources : signature : regexp
actions ExtractCatalogEntries1
{
$(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR)
- cat "$(2[2-])" | $(CC) -E $(CCDEFS) $(HDRS) - > "$(1)".pre
+ cat "$(2[2-])" \
+ | $(CC) -E $(CCDEFS) -DB_COLLECTING_CATKEYS $(HDRS) - > "$(1)".pre
$(2[1]) $(HAIKU_CATALOG_REGEXP) -s $(HAIKU_CATALOG_SIGNATURE) \
-w -o "$(1)" "$(1)".pre
}
diff --git a/headers/os/locale/Catalog.h b/headers/os/locale/Catalog.h
index 17f6653b90..2d0664fefe 100644
--- a/headers/os/locale/Catalog.h
+++ b/headers/os/locale/Catalog.h
@@ -86,6 +86,13 @@ private:
// Tip: Use a descriptive name of the class implemented in that
// source-file.
+#ifdef B_COLLECTING_CATKEYS
+
+// pull in all the macros used when collecting catalog keys.
+#include
+
+#else
+
// Translation macros which may be used to shorten translation requests:
#undef B_TRANSLATE
#define B_TRANSLATE(string) \
@@ -172,7 +179,7 @@ private:
#undef B_TRANSLATE_MARK_SYSTEM_NAME_VOID
#define B_TRANSLATE_MARK_SYSTEM_NAME_VOID(string)
-// Translation macros which do not let collectcatkeys try to collect the key
+// Translation macros which cause collectcatkeys to ignore this key
// (useful in combination with the marking macros above):
#undef B_TRANSLATE_NOCOLLECT
#define B_TRANSLATE_NOCOLLECT(string) \
@@ -194,6 +201,8 @@ private:
#define B_TRANSLATE_NOCOLLECT_SYSTEM_NAME(string) \
B_TRANSLATE_SYSTEM_NAME(string)
+#endif /* B_COLLECTING_CATKEYS */
+
#endif /* B_AVOID_TRANSLATION_MACROS */
diff --git a/headers/private/locale/collecting/Catalog.h b/headers/os/locale/tools/CollectingCatalog.h
similarity index 95%
rename from headers/private/locale/collecting/Catalog.h
rename to headers/os/locale/tools/CollectingCatalog.h
index 53db39c086..49e32bc210 100644
--- a/headers/private/locale/collecting/Catalog.h
+++ b/headers/os/locale/tools/CollectingCatalog.h
@@ -2,16 +2,11 @@
* Copyright 2012, Haiku, Inc.
* Distributed under the terms of the MIT License.
*/
-#ifndef _COLLECTING_CATALOG_H_
-#define _COLLECTING_CATALOG_H_
-
-
-#include_next
+#ifndef _TOOLS_COLLECTING_CATALOG_H_
+#define _TOOLS_COLLECTING_CATALOG_H_
// Translation macros used when executing collectcatkeys
-#undef B_TRANSLATION_CONTEXT
-
#undef B_TRANSLATE
#define B_TRANSLATE(string) \
B_CATKEY((string), B_TRANSLATION_CONTEXT)
From 6e8999717f05b2b88ecd11087fec0b0f0bef86a8 Mon Sep 17 00:00:00 2001
From: Oliver Tappe
Date: Thu, 16 Aug 2012 21:18:58 +0200
Subject: [PATCH 08/30] Cleanup: avoid warning about returning a value in void
context.
---
headers/private/shared/HashMap.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/headers/private/shared/HashMap.h b/headers/private/shared/HashMap.h
index 03c5387850..4acc38b6ff 100644
--- a/headers/private/shared/HashMap.h
+++ b/headers/private/shared/HashMap.h
@@ -236,7 +236,7 @@ public:
void Clear()
{
MapLocker locker(this);
- return fMap.Clear();
+ fMap.Clear();
}
Value Get(const Key& key) const
From 8ffa652cac230b7bf7c6d4554ffdd37ccbe70a3b Mon Sep 17 00:00:00 2001
From: Oliver Tappe
Date: Thu, 16 Aug 2012 21:23:42 +0200
Subject: [PATCH 09/30] Fix build.
---
src/preferences/network/EthernetSettingsView.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/preferences/network/EthernetSettingsView.cpp b/src/preferences/network/EthernetSettingsView.cpp
index 5ab586f903..c1b173e920 100644
--- a/src/preferences/network/EthernetSettingsView.cpp
+++ b/src/preferences/network/EthernetSettingsView.cpp
@@ -114,7 +114,7 @@ EthernetSettingsView::EthernetSettingsView()
rootLayout->SetSpacing(inset);
layout->SetSpacing(inset, inset);
- BPopUpMenu* deviceMenu = new BPopUpMenu((B_TRANSLATE(""));
+ BPopUpMenu* deviceMenu = new BPopUpMenu(B_TRANSLATE(""));
for (int32 i = 0; i < fInterfaces.CountItems(); i++) {
BString& name = *fInterfaces.ItemAt(i);
BString label = name;
From 4f81ff45fe160f3726d4338095c229f3405413d3 Mon Sep 17 00:00:00 2001
From: Niels Sascha Reedijk
Date: Fri, 17 Aug 2012 06:46:28 +0200
Subject: [PATCH 10/30] Update translations from Pootle
---
data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys | 2 +-
data/catalogs/apps/glteapot/be.catkeys | 3 +--
data/catalogs/apps/glteapot/de.catkeys | 3 +--
data/catalogs/apps/glteapot/el.catkeys | 3 +--
data/catalogs/apps/glteapot/fi.catkeys | 3 +--
data/catalogs/apps/glteapot/fr.catkeys | 3 +--
data/catalogs/apps/glteapot/hi.catkeys | 3 +--
data/catalogs/apps/glteapot/ja.catkeys | 3 +--
data/catalogs/apps/glteapot/lt.catkeys | 3 +--
data/catalogs/apps/glteapot/nl.catkeys | 3 +--
data/catalogs/apps/glteapot/pl.catkeys | 3 +--
data/catalogs/apps/glteapot/ro.catkeys | 3 +--
data/catalogs/apps/glteapot/ru.catkeys | 3 +--
data/catalogs/apps/glteapot/sk.catkeys | 3 +--
data/catalogs/apps/glteapot/sv.catkeys | 3 +--
data/catalogs/apps/glteapot/uk.catkeys | 3 +--
data/catalogs/apps/glteapot/zh-Hans.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/be.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/de.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/el.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/fi.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/fr.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/ja.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/lt.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/nb.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/nl.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/pl.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/ro.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/ru.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/sk.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/sv.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/uk.catkeys | 3 +--
data/catalogs/apps/icon-o-matic/zh-Hans.catkeys | 3 +--
data/catalogs/apps/mail/be.catkeys | 3 +--
data/catalogs/apps/mail/de.catkeys | 3 +--
data/catalogs/apps/mail/fi.catkeys | 3 +--
data/catalogs/apps/mail/fr.catkeys | 3 +--
data/catalogs/apps/mail/ja.catkeys | 3 +--
data/catalogs/apps/mail/lt.catkeys | 3 +--
data/catalogs/apps/mail/nl.catkeys | 3 +--
data/catalogs/apps/mail/pl.catkeys | 3 +--
data/catalogs/apps/mail/ro.catkeys | 3 +--
data/catalogs/apps/mail/ru.catkeys | 3 +--
data/catalogs/apps/mail/sk.catkeys | 3 +--
data/catalogs/apps/mail/sv.catkeys | 3 +--
data/catalogs/apps/mail/uk.catkeys | 3 +--
data/catalogs/apps/mail/zh-Hans.catkeys | 3 +--
data/catalogs/kits/tracker/be.catkeys | 3 +--
data/catalogs/kits/tracker/de.catkeys | 3 +--
data/catalogs/kits/tracker/el.catkeys | 3 +--
data/catalogs/kits/tracker/fi.catkeys | 3 +--
data/catalogs/kits/tracker/fr.catkeys | 3 +--
data/catalogs/kits/tracker/hi.catkeys | 3 +--
data/catalogs/kits/tracker/ja.catkeys | 3 +--
data/catalogs/kits/tracker/lt.catkeys | 3 +--
data/catalogs/kits/tracker/nb.catkeys | 3 +--
data/catalogs/kits/tracker/nl.catkeys | 3 +--
data/catalogs/kits/tracker/pl.catkeys | 3 +--
data/catalogs/kits/tracker/ro.catkeys | 3 +--
data/catalogs/kits/tracker/ru.catkeys | 3 +--
data/catalogs/kits/tracker/sk.catkeys | 3 +--
data/catalogs/kits/tracker/sv.catkeys | 3 +--
data/catalogs/kits/tracker/uk.catkeys | 3 +--
data/catalogs/kits/tracker/zh-Hans.catkeys | 3 +--
data/catalogs/servers/mail/be.catkeys | 3 +--
data/catalogs/servers/mail/de.catkeys | 3 +--
data/catalogs/servers/mail/el.catkeys | 3 +--
data/catalogs/servers/mail/fi.catkeys | 3 +--
data/catalogs/servers/mail/fr.catkeys | 3 +--
data/catalogs/servers/mail/hi.catkeys | 3 +--
data/catalogs/servers/mail/ja.catkeys | 3 +--
data/catalogs/servers/mail/lt.catkeys | 3 +--
data/catalogs/servers/mail/nl.catkeys | 3 +--
data/catalogs/servers/mail/pl.catkeys | 3 +--
data/catalogs/servers/mail/ro.catkeys | 3 +--
data/catalogs/servers/mail/sk.catkeys | 3 +--
data/catalogs/servers/mail/sv.catkeys | 3 +--
data/catalogs/servers/mail/uk.catkeys | 3 +--
78 files changed, 78 insertions(+), 155 deletions(-)
diff --git a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
index 974d67ba41..214de561c6 100644
--- a/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
+++ b/data/catalogs/add-ons/media/media-add-ons/mixer/ru.catkeys
@@ -24,4 +24,4 @@ Setup AudioMixer Настройка
Use non linear gain sliders (like BeOS R5) AudioMixer Использовать нелинейные ползунки управления звуком
Gain AudioMixer Усиление
Allow output channel remapping AudioMixer Разрешить переназначение выходного канала
-Physical input channels AudioMixer Физические входные каналы
+Physical input channels AudioMixer Физические каналы входа
diff --git a/data/catalogs/apps/glteapot/be.catkeys b/data/catalogs/apps/glteapot/be.catkeys
index 7947745a67..58912bdd76 100644
--- a/data/catalogs/apps/glteapot/be.catkeys
+++ b/data/catalogs/apps/glteapot/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Haiku-GLTeapot 2890609668
+1 belarusian x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Зверху
Lighting TeapotWindow Падсветка
Off TeapotWindow Выключыць
@@ -13,7 +13,6 @@ Fog TeapotWindow Туман
Backface culling TeapotWindow Адкідаць заднія
Z-buffered TeapotWindow Z-буферызаваны
File TeapotWindow Файл
-Options TeapotWindow Наладкі
Perspective TeapotWindow Перспектыва
GLTeapot System name GL Чайнік
Green TeapotWindow Зялёны
diff --git a/data/catalogs/apps/glteapot/de.catkeys b/data/catalogs/apps/glteapot/de.catkeys
index 74341dc872..ae009f2501 100644
--- a/data/catalogs/apps/glteapot/de.catkeys
+++ b/data/catalogs/apps/glteapot/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Haiku-GLTeapot 2890609668
+1 german x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Mitte oben
Lighting TeapotWindow Beleuchtung
Off TeapotWindow Aus
@@ -13,7 +13,6 @@ 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
diff --git a/data/catalogs/apps/glteapot/el.catkeys b/data/catalogs/apps/glteapot/el.catkeys
index 2802105e8f..af27850dd5 100644
--- a/data/catalogs/apps/glteapot/el.catkeys
+++ b/data/catalogs/apps/glteapot/el.catkeys
@@ -1,4 +1,4 @@
-1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 2890609668
+1 greek, modern (1453-) x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Πάνω κέντρο
Lighting TeapotWindow Φωτισμός
Off TeapotWindow Κλειστό
@@ -13,7 +13,6 @@ Fog TeapotWindow Ομίχλη
Backface culling TeapotWindow Κλείσιμο οπίσθιας όψης
Z-buffered TeapotWindow Z-buffered
File TeapotWindow Αρχείο
-Options TeapotWindow Επιλογές
Perspective TeapotWindow Προοπτική
GLTeapot System name GL-Τσαγιέρα
Green TeapotWindow Πράσινο
diff --git a/data/catalogs/apps/glteapot/fi.catkeys b/data/catalogs/apps/glteapot/fi.catkeys
index 73be5ceadc..7ed06497d2 100644
--- a/data/catalogs/apps/glteapot/fi.catkeys
+++ b/data/catalogs/apps/glteapot/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Haiku-GLTeapot 2890609668
+1 finnish x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Ylempi keskikohta
Lighting TeapotWindow Valaistus
Off TeapotWindow Valot pois
@@ -13,7 +13,6 @@ Fog TeapotWindow Sumu
Backface culling TeapotWindow Taustakulman häivytys
Z-buffered TeapotWindow Z-puskuroitu
File TeapotWindow Tiedosto
-Options TeapotWindow Valitsimet
Perspective TeapotWindow Perspektiivi
GLTeapot System name GL-teekannu
Green TeapotWindow Vihreä
diff --git a/data/catalogs/apps/glteapot/fr.catkeys b/data/catalogs/apps/glteapot/fr.catkeys
index cd64cf4ad7..c83442f439 100644
--- a/data/catalogs/apps/glteapot/fr.catkeys
+++ b/data/catalogs/apps/glteapot/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-GLTeapot 2890609668
+1 french x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow En haut au centre
Lighting TeapotWindow Éclairage
Off TeapotWindow Arrêt
@@ -13,7 +13,6 @@ Fog TeapotWindow Brouillard
Backface culling TeapotWindow Abattage des faces arrières
Z-buffered TeapotWindow Tampon de profondeur
File TeapotWindow Fichier
-Options TeapotWindow Options
Perspective TeapotWindow Perspective
GLTeapot System name GLTeapot
Green TeapotWindow Vert
diff --git a/data/catalogs/apps/glteapot/hi.catkeys b/data/catalogs/apps/glteapot/hi.catkeys
index 92c543b7e7..13f72f6e8e 100644
--- a/data/catalogs/apps/glteapot/hi.catkeys
+++ b/data/catalogs/apps/glteapot/hi.catkeys
@@ -1,4 +1,4 @@
-1 hindi x-vnd.Haiku-GLTeapot 2890609668
+1 hindi x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow ऊपरी बीच
Lighting TeapotWindow प्रकाश
Off TeapotWindow बंद
@@ -13,7 +13,6 @@ Fog TeapotWindow कोहरा
Backface culling TeapotWindow बेकफेस कल्लिंग
Z-buffered TeapotWindow ज़ड-बफर
File TeapotWindow फ़ाइल
-Options TeapotWindow विकल्पों
Perspective TeapotWindow परिप्रेक्ष्य
GLTeapot System name जीअल टीपोट
Green TeapotWindow हरा
diff --git a/data/catalogs/apps/glteapot/ja.catkeys b/data/catalogs/apps/glteapot/ja.catkeys
index d977a4eadf..d0ec4c04a0 100644
--- a/data/catalogs/apps/glteapot/ja.catkeys
+++ b/data/catalogs/apps/glteapot/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Haiku-GLTeapot 2890609668
+1 japanese x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow 上中央
Lighting TeapotWindow Lighting
Off TeapotWindow オフ
@@ -13,7 +13,6 @@ Fog TeapotWindow フォグ
Backface culling TeapotWindow バックフェースカリング
Z-buffered TeapotWindow Z バッファーを使用
File TeapotWindow ファイル
-Options TeapotWindow オプション
Perspective TeapotWindow パースペクティブ
GLTeapot System name GLTeapot
Green TeapotWindow 緑
diff --git a/data/catalogs/apps/glteapot/lt.catkeys b/data/catalogs/apps/glteapot/lt.catkeys
index 8b237ca34e..3e635cc942 100644
--- a/data/catalogs/apps/glteapot/lt.catkeys
+++ b/data/catalogs/apps/glteapot/lt.catkeys
@@ -1,4 +1,4 @@
-1 lithuanian x-vnd.Haiku-GLTeapot 2890609668
+1 lithuanian x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Viršuje centre
Lighting TeapotWindow Apšvietimas
Off TeapotWindow Išjungta
@@ -13,7 +13,6 @@ 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
diff --git a/data/catalogs/apps/glteapot/nl.catkeys b/data/catalogs/apps/glteapot/nl.catkeys
index 47b5da99ac..41ab1c969b 100644
--- a/data/catalogs/apps/glteapot/nl.catkeys
+++ b/data/catalogs/apps/glteapot/nl.catkeys
@@ -1,4 +1,4 @@
-1 dutch; flemish x-vnd.Haiku-GLTeapot 2890609668
+1 dutch; flemish x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Middenboven
Lighting TeapotWindow Verlichting
Off TeapotWindow Uit
@@ -13,7 +13,6 @@ 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
diff --git a/data/catalogs/apps/glteapot/pl.catkeys b/data/catalogs/apps/glteapot/pl.catkeys
index 9b2f316b8c..d6c14cafbe 100644
--- a/data/catalogs/apps/glteapot/pl.catkeys
+++ b/data/catalogs/apps/glteapot/pl.catkeys
@@ -1,4 +1,4 @@
-1 polish x-vnd.Haiku-GLTeapot 2890609668
+1 polish x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Górne
Lighting TeapotWindow Oświetlenie
Off TeapotWindow Wyłącz
@@ -13,7 +13,6 @@ Fog TeapotWindow Mgła
Backface culling TeapotWindow Usuwanie niewidocznych powierzchni
Z-buffered TeapotWindow Buforowane Z
File TeapotWindow Plik
-Options TeapotWindow Opcje
Perspective TeapotWindow Perspektywa
GLTeapot System name GLTeapot
Green TeapotWindow Zielony
diff --git a/data/catalogs/apps/glteapot/ro.catkeys b/data/catalogs/apps/glteapot/ro.catkeys
index 1c3c39d392..85413a1f0b 100644
--- a/data/catalogs/apps/glteapot/ro.catkeys
+++ b/data/catalogs/apps/glteapot/ro.catkeys
@@ -1,4 +1,4 @@
-1 romanian x-vnd.Haiku-GLTeapot 2878465056
+1 romanian x-vnd.Haiku-GLTeapot 3675948244
Upper center TeapotWindow Centru sus
Lighting TeapotWindow Iluminare
Off TeapotWindow Oprit
@@ -11,7 +11,6 @@ Quit TeapotWindow Părăsește
Filled polygons TeapotWindow Poligoane completate
Fog TeapotWindow Ceață
File TeapotWindow Fișier
-Options TeapotWindow Opțiuni
Perspective TeapotWindow Perspectivă
GLTeapot System name CeainicGL
Green TeapotWindow Verde
diff --git a/data/catalogs/apps/glteapot/ru.catkeys b/data/catalogs/apps/glteapot/ru.catkeys
index 9b85b0c8e2..b57ea21d91 100644
--- a/data/catalogs/apps/glteapot/ru.catkeys
+++ b/data/catalogs/apps/glteapot/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Haiku-GLTeapot 4001979038
+1 russian x-vnd.Haiku-GLTeapot 504494930
Upper center TeapotWindow Сверху на центр
Lighting TeapotWindow Освещение
Off TeapotWindow Выключить
@@ -12,7 +12,6 @@ Filled polygons TeapotWindow Заполненные многоугольник
Fog TeapotWindow Туман
Z-buffered TeapotWindow Z-буферизация
File TeapotWindow Файл
-Options TeapotWindow Опции
Perspective TeapotWindow Перспектива
GLTeapot System name Чайник
Green TeapotWindow Зеленый
diff --git a/data/catalogs/apps/glteapot/sk.catkeys b/data/catalogs/apps/glteapot/sk.catkeys
index 1fce41e998..c42d4b0d73 100644
--- a/data/catalogs/apps/glteapot/sk.catkeys
+++ b/data/catalogs/apps/glteapot/sk.catkeys
@@ -1,4 +1,4 @@
-1 slovak x-vnd.Haiku-GLTeapot 2890609668
+1 slovak x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Hore v strede
Lighting TeapotWindow Osvetlenie
Off TeapotWindow Vypnuté
@@ -13,7 +13,6 @@ 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á
diff --git a/data/catalogs/apps/glteapot/sv.catkeys b/data/catalogs/apps/glteapot/sv.catkeys
index 43297ce8f6..e6081ab03b 100644
--- a/data/catalogs/apps/glteapot/sv.catkeys
+++ b/data/catalogs/apps/glteapot/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Haiku-GLTeapot 2890609668
+1 swedish x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Övre mitten
Lighting TeapotWindow Ljussättning
Off TeapotWindow Av
@@ -13,7 +13,6 @@ Fog TeapotWindow Dimma
Backface culling TeapotWindow Filtrera bort bakåtvända polygoner
Z-buffered TeapotWindow Z-buffrad
File TeapotWindow Arkiv
-Options TeapotWindow Alternativ
Perspective TeapotWindow Perspektiv
GLTeapot System name GLTekanna
Green TeapotWindow Grön
diff --git a/data/catalogs/apps/glteapot/uk.catkeys b/data/catalogs/apps/glteapot/uk.catkeys
index 11ea36b1be..199d46a955 100644
--- a/data/catalogs/apps/glteapot/uk.catkeys
+++ b/data/catalogs/apps/glteapot/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.Haiku-GLTeapot 2890609668
+1 ukrainian x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow Вище центру
Lighting TeapotWindow Свічення
Off TeapotWindow Вимкнути
@@ -13,7 +13,6 @@ Fog TeapotWindow Туман
Backface culling TeapotWindow Backface culling
Z-buffered TeapotWindow Z-буферизація
File TeapotWindow Файл
-Options TeapotWindow Опції
Perspective TeapotWindow Перспектива
GLTeapot System name Чайник GL
Green TeapotWindow Зелений
diff --git a/data/catalogs/apps/glteapot/zh-Hans.catkeys b/data/catalogs/apps/glteapot/zh-Hans.catkeys
index 01fd536b01..a584c08127 100644
--- a/data/catalogs/apps/glteapot/zh-Hans.catkeys
+++ b/data/catalogs/apps/glteapot/zh-Hans.catkeys
@@ -1,4 +1,4 @@
-1 english x-vnd.Haiku-GLTeapot 2890609668
+1 english x-vnd.Haiku-GLTeapot 3688092856
Upper center TeapotWindow 上部中心
Lighting TeapotWindow 灯光
Off TeapotWindow 关闭
@@ -13,7 +13,6 @@ Fog TeapotWindow 模糊
Backface culling TeapotWindow 隐面消除
Z-buffered TeapotWindow Z-缓冲
File TeapotWindow 文件
-Options TeapotWindow 选项
Perspective TeapotWindow 透视
GLTeapot System name GL 茶壶
Green TeapotWindow 绿色
diff --git a/data/catalogs/apps/icon-o-matic/be.catkeys b/data/catalogs/apps/icon-o-matic/be.catkeys
index 08002c4ed5..1e8cdbf56b 100644
--- a/data/catalogs/apps/icon-o-matic/be.catkeys
+++ b/data/catalogs/apps/icon-o-matic/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.haiku-icon_o_matic 4233739176
+1 belarusian x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Выбраць Усё
Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль
Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x)
@@ -192,7 +192,6 @@ 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 Опцыі
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колер (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Правіць Градыент
Clean Up Path Icon-O-Matic-CleanUpPathCmd Ачысціць Шлях
diff --git a/data/catalogs/apps/icon-o-matic/de.catkeys b/data/catalogs/apps/icon-o-matic/de.catkeys
index 86422954e6..b0d115c8c2 100644
--- a/data/catalogs/apps/icon-o-matic/de.catkeys
+++ b/data/catalogs/apps/icon-o-matic/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.haiku-icon_o_matic 4233739176
+1 german x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Alles auswählen
Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen
Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x)
@@ -192,7 +192,6 @@ 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
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
diff --git a/data/catalogs/apps/icon-o-matic/el.catkeys b/data/catalogs/apps/icon-o-matic/el.catkeys
index 28cae72282..d7286aadfb 100644
--- a/data/catalogs/apps/icon-o-matic/el.catkeys
+++ b/data/catalogs/apps/icon-o-matic/el.catkeys
@@ -1,4 +1,4 @@
-1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 3736361491
+1 greek, modern (1453-) x-vnd.haiku-icon_o_matic 2591538723
Select All Icon-O-Matic-PathManipulator Επιλογή όλων
Add Style Icon-O-Matic-AddStylesCmd Προσθήκη Στυλ
Color (#%02x%02x%02x) Style name after dropping a color Χρώμα (#%02x%02x%02x)
@@ -191,7 +191,6 @@ 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 Επιλογές
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Χρώμα (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Επεξεργασία Gradient
Clean Up Path Icon-O-Matic-CleanUpPathCmd Καθαρισμός Μονοπατιού
diff --git a/data/catalogs/apps/icon-o-matic/fi.catkeys b/data/catalogs/apps/icon-o-matic/fi.catkeys
index 97f9008902..a7e36800a1 100644
--- a/data/catalogs/apps/icon-o-matic/fi.catkeys
+++ b/data/catalogs/apps/icon-o-matic/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.haiku-icon_o_matic 4233739176
+1 finnish x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Valitse kaikki
Add Style Icon-O-Matic-AddStylesCmd Lisää tyyli
Color (#%02x%02x%02x) Style name after dropping a color Väri (#%02x%02x%02x)
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Korvaa
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Jähmetä hahmot
Split Control Point Icon-O-Matic-SplitPointsCmd Halkaise ohjauspiste
Open… Icon-O-Matic-Menu-File Avaa...
-Options Icon-O-Matic-Menus Valitsimet
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Väri (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Muokkaa kaltevuutta
Clean Up Path Icon-O-Matic-CleanUpPathCmd Nollaa polku
diff --git a/data/catalogs/apps/icon-o-matic/fr.catkeys b/data/catalogs/apps/icon-o-matic/fr.catkeys
index 5376580672..0b1be64d56 100644
--- a/data/catalogs/apps/icon-o-matic/fr.catkeys
+++ b/data/catalogs/apps/icon-o-matic/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.haiku-icon_o_matic 3302636941
+1 french x-vnd.haiku-icon_o_matic 2157814173
Select All Icon-O-Matic-PathManipulator Sélectionner tout
Add Style Icon-O-Matic-AddStylesCmd Ajouter un style
Color (#%02x%02x%02x) Style name after dropping a color Couleur (#%02x%02x%02x)
@@ -124,7 +124,6 @@ Overwrite Icon-O-Matic-SVGExport Écraser
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Figer les formes
Split Control Point Icon-O-Matic-SplitPointsCmd Diviser le point de contrôle
Open… Icon-O-Matic-Menu-File Ouvrir…
-Options Icon-O-Matic-Menus Options
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Couleur (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Éditer le dégadé
Remove Shapes Icon-O-Matic-RemoveShapesCmd Enlever les formes
diff --git a/data/catalogs/apps/icon-o-matic/ja.catkeys b/data/catalogs/apps/icon-o-matic/ja.catkeys
index b864003b0a..2e44b78400 100644
--- a/data/catalogs/apps/icon-o-matic/ja.catkeys
+++ b/data/catalogs/apps/icon-o-matic/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.haiku-icon_o_matic 3736361491
+1 japanese x-vnd.haiku-icon_o_matic 2591538723
Select All Icon-O-Matic-PathManipulator すべて選択
Add Style Icon-O-Matic-AddStylesCmd スタイルを追加
Color (#%02x%02x%02x) Style name after dropping a color カラー (#%02x%02x%02x)
@@ -191,7 +191,6 @@ 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 オプション
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport カラー (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd グラデーションの編集
Clean Up Path Icon-O-Matic-CleanUpPathCmd パスをクリーンアップ
diff --git a/data/catalogs/apps/icon-o-matic/lt.catkeys b/data/catalogs/apps/icon-o-matic/lt.catkeys
index 840bce9a64..31a018a76b 100644
--- a/data/catalogs/apps/icon-o-matic/lt.catkeys
+++ b/data/catalogs/apps/icon-o-matic/lt.catkeys
@@ -1,4 +1,4 @@
-1 lithuanian x-vnd.haiku-icon_o_matic 2985145160
+1 lithuanian x-vnd.haiku-icon_o_matic 1840322392
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)
@@ -189,7 +189,6 @@ Overwrite Icon-O-Matic-SVGExport Perrašyti
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Fiksuoti figūras
Split Control Point Icon-O-Matic-SplitPointsCmd Perkelti valdymo tašką
Open… Icon-O-Matic-Menu-File Atverti…
-Options Icon-O-Matic-Menus Parinktys
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Spalva (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Keisti gradientą
Clean Up Path Icon-O-Matic-CleanUpPathCmd Išvalyti kreivę
diff --git a/data/catalogs/apps/icon-o-matic/nb.catkeys b/data/catalogs/apps/icon-o-matic/nb.catkeys
index 74348386d8..a2dc1f9d9c 100644
--- a/data/catalogs/apps/icon-o-matic/nb.catkeys
+++ b/data/catalogs/apps/icon-o-matic/nb.catkeys
@@ -1,4 +1,4 @@
-1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 2755867189
+1 bokmål, norwegian; norwegian bokmål x-vnd.haiku-icon_o_matic 1611044421
Select All Icon-O-Matic-PathManipulator Velg alle
Add Style Icon-O-Matic-AddStylesCmd Legg til stil
Color (#%02x%02x%02x) Style name after dropping a color Farge (#%02x%02x%02x)
@@ -162,7 +162,6 @@ Move Path Icon-O-Matic-MovePathsCmd Flytt sti
Overwrite Icon-O-Matic-SVGExport Overskriv
Split Control Point Icon-O-Matic-SplitPointsCmd Splitt kontrollpunkt
Open… Icon-O-Matic-Menu-File Åpne...
-Options Icon-O-Matic-Menus Valg
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farge (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Endre gradient
Rounding Icon-O-Matic-PropertyNames Runding
diff --git a/data/catalogs/apps/icon-o-matic/nl.catkeys b/data/catalogs/apps/icon-o-matic/nl.catkeys
index ff1c85b74d..882da63bf0 100644
--- a/data/catalogs/apps/icon-o-matic/nl.catkeys
+++ b/data/catalogs/apps/icon-o-matic/nl.catkeys
@@ -1,4 +1,4 @@
-1 dutch; flemish x-vnd.haiku-icon_o_matic 3736361491
+1 dutch; flemish x-vnd.haiku-icon_o_matic 2591538723
Select All Icon-O-Matic-PathManipulator Alles selecteren
Add Style Icon-O-Matic-AddStylesCmd Stijl toevoegen
Color (#%02x%02x%02x) Style name after dropping a color Kleur (#02x%02x%02x)
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Overschrijven
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Vormen bevriezen
Split Control Point Icon-O-Matic-SplitPointsCmd Controlepunt splitsen
Open… Icon-O-Matic-Menu-File Openen...
-Options Icon-O-Matic-Menus Opties
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kleur (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Gradiënt aanpassen
Clean Up Path Icon-O-Matic-CleanUpPathCmd Pad opruimen
diff --git a/data/catalogs/apps/icon-o-matic/pl.catkeys b/data/catalogs/apps/icon-o-matic/pl.catkeys
index 0b9f08fe4f..b9f649f026 100644
--- a/data/catalogs/apps/icon-o-matic/pl.catkeys
+++ b/data/catalogs/apps/icon-o-matic/pl.catkeys
@@ -1,4 +1,4 @@
-1 polish x-vnd.haiku-icon_o_matic 3736361491
+1 polish x-vnd.haiku-icon_o_matic 2591538723
Select All Icon-O-Matic-PathManipulator Zaznacz wszystko
Add Style Icon-O-Matic-AddStylesCmd Dodanie stylu
Color (#%02x%02x%02x) Style name after dropping a color Kolor (#%02x%02x%02x)
@@ -191,7 +191,6 @@ Overwrite Icon-O-Matic-SVGExport Nadpisz
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zamrożenie kształtów
Split Control Point Icon-O-Matic-SplitPointsCmd Podzielenie punktów kontrolnych
Open… Icon-O-Matic-Menu-File Otwórz…
-Options Icon-O-Matic-Menus Opcje
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Kolor (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Edycję gradientu
Clean Up Path Icon-O-Matic-CleanUpPathCmd Czyszczenie ścieżki
diff --git a/data/catalogs/apps/icon-o-matic/ro.catkeys b/data/catalogs/apps/icon-o-matic/ro.catkeys
index cc94d2a320..4b98533224 100644
--- a/data/catalogs/apps/icon-o-matic/ro.catkeys
+++ b/data/catalogs/apps/icon-o-matic/ro.catkeys
@@ -1,4 +1,4 @@
-1 romanian x-vnd.haiku-icon_o_matic 2326864078
+1 romanian x-vnd.haiku-icon_o_matic 1182041310
Select All Icon-O-Matic-PathManipulator Selectează tot
Add Style Icon-O-Matic-AddStylesCmd Adaugă stil
Color (#%02x%02x%02x) Style name after dropping a color Culoare (#%02x%02x%02x)
@@ -190,7 +190,6 @@ Overwrite Icon-O-Matic-SVGExport Suprascrie
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Îngheață forme
Split Control Point Icon-O-Matic-SplitPointsCmd Separă punct de control
Open… Icon-O-Matic-Menu-File Deschide...
-Options Icon-O-Matic-Menus Opțiuni
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Culoare (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Editează degrade
Clean Up Path Icon-O-Matic-CleanUpPathCmd Curăță cale
diff --git a/data/catalogs/apps/icon-o-matic/ru.catkeys b/data/catalogs/apps/icon-o-matic/ru.catkeys
index feb4d516b6..c78bdd0026 100644
--- a/data/catalogs/apps/icon-o-matic/ru.catkeys
+++ b/data/catalogs/apps/icon-o-matic/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.haiku-icon_o_matic 4233739176
+1 russian x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Выделить всё
Add Style Icon-O-Matic-AddStylesCmd Добавить стиль
Color (#%02x%02x%02x) Style name after dropping a color Цвет (#%02x%02x%02x)
@@ -192,7 +192,6 @@ 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 Опции
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Цвет (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Изменить градиент
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистить контур
diff --git a/data/catalogs/apps/icon-o-matic/sk.catkeys b/data/catalogs/apps/icon-o-matic/sk.catkeys
index e38db46494..e307ae4746 100644
--- a/data/catalogs/apps/icon-o-matic/sk.catkeys
+++ b/data/catalogs/apps/icon-o-matic/sk.catkeys
@@ -1,4 +1,4 @@
-1 slovak x-vnd.haiku-icon_o_matic 4233739176
+1 slovak x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Vybrať všetky
Add Style Icon-O-Matic-AddStylesCmd Pridať štýl
Color (#%02x%02x%02x) Style name after dropping a color Farba (#%02x%02x%02x)
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Prepísať
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Zmraziť tvary
Split Control Point Icon-O-Matic-SplitPointsCmd Rozdeliť riadiaci bod
Open… Icon-O-Matic-Menu-File Otvoriť…
-Options Icon-O-Matic-Menus Možnosti
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Farba (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Upraviť farebný prechod
Clean Up Path Icon-O-Matic-CleanUpPathCmd Vyčistiť cestu
diff --git a/data/catalogs/apps/icon-o-matic/sv.catkeys b/data/catalogs/apps/icon-o-matic/sv.catkeys
index a92603ae35..7825e1ff8d 100644
--- a/data/catalogs/apps/icon-o-matic/sv.catkeys
+++ b/data/catalogs/apps/icon-o-matic/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.haiku-icon_o_matic 4233739176
+1 swedish x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator Markera allt
Add Style Icon-O-Matic-AddStylesCmd Lägg till stil
Color (#%02x%02x%02x) Style name after dropping a color Färg (#%02x%02x%02x)
@@ -192,7 +192,6 @@ Overwrite Icon-O-Matic-SVGExport Skriv över
Freeze Shapes Icon-O-Matic-FreezeTransformationCmd Frys figurer
Split Control Point Icon-O-Matic-SplitPointsCmd Klyv kontrollpunkt
Open… Icon-O-Matic-Menu-File Öppna...
-Options Icon-O-Matic-Menus Alternativ
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Färg (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Redigera övergång
Clean Up Path Icon-O-Matic-CleanUpPathCmd Rensa upp bana
diff --git a/data/catalogs/apps/icon-o-matic/uk.catkeys b/data/catalogs/apps/icon-o-matic/uk.catkeys
index d1f6b9b777..d76465dbda 100644
--- a/data/catalogs/apps/icon-o-matic/uk.catkeys
+++ b/data/catalogs/apps/icon-o-matic/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.haiku-icon_o_matic 3736361491
+1 ukrainian x-vnd.haiku-icon_o_matic 2591538723
Select All Icon-O-Matic-PathManipulator Вибрати все
Add Style Icon-O-Matic-AddStylesCmd Додати cтиль
Color (#%02x%02x%02x) Style name after dropping a color Колір (#%02x%02x%02x)
@@ -191,7 +191,6 @@ 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 Налаштування
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport Колір (#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd Редагувати градієнт
Clean Up Path Icon-O-Matic-CleanUpPathCmd Очистити шлях
diff --git a/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys b/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys
index dceb68b003..b8277b083d 100644
--- a/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys
+++ b/data/catalogs/apps/icon-o-matic/zh-Hans.catkeys
@@ -1,4 +1,4 @@
-1 english x-vnd.haiku-icon_o_matic 4233739176
+1 english x-vnd.haiku-icon_o_matic 3088916408
Select All Icon-O-Matic-PathManipulator 全选
Add Style Icon-O-Matic-AddStylesCmd 添加样式
Color (#%02x%02x%02x) Style name after dropping a color 颜色(#%02x%02x%02x)
@@ -192,7 +192,6 @@ 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 选项
Color (#%02x%02x%02x) Icon-O-Matic-StyledTextImport 颜色(#%02x%02x%02x)
Edit Gradient Icon-O-Matic-SetGradientCmd 编辑渐变
Clean Up Path Icon-O-Matic-CleanUpPathCmd 清理路径
diff --git a/data/catalogs/apps/mail/be.catkeys b/data/catalogs/apps/mail/be.catkeys
index 808c051706..26c9f4c85d 100644
--- a/data/catalogs/apps/mail/be.catkeys
+++ b/data/catalogs/apps/mail/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Be-MAIL 2834665561
+1 belarusian x-vnd.Be-MAIL 849531913
View Mail Агляд
%d - Date Mail %d - Дата
Attach attributes: Mail Атрыбуты ўкладання:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Захаваць змены подпісу
Cc: Mail Cc:
Off Mail Адключыць
Find Mail Шукаць
-Preferences… Mail Наладкі…
Undo Mail Вярнуць
Date: Mail Дата:
An error occurred trying to open this signature. Mail Памылка. Немагчыма адкрыць гэты подпіс.
diff --git a/data/catalogs/apps/mail/de.catkeys b/data/catalogs/apps/mail/de.catkeys
index d8fbc87509..85efba209c 100644
--- a/data/catalogs/apps/mail/de.catkeys
+++ b/data/catalogs/apps/mail/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Be-MAIL 2834665561
+1 german x-vnd.Be-MAIL 849531913
View Mail Ansicht
%d - Date Mail %d - Datum
Attach attributes: Mail Attribute von Anhängen:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Änderungen an der Signatur speichern?
Cc: Mail Kopie:
Off Mail Aus
Find Mail Suchen
-Preferences… Mail Einstellungen…
Undo Mail Rückgängig
Date: Mail Datum:
An error occurred trying to open this signature. Mail Beim Öffnen dieser Signatur ist ein Fehler aufgetreten.
diff --git a/data/catalogs/apps/mail/fi.catkeys b/data/catalogs/apps/mail/fi.catkeys
index 6b2bb2ac91..728d0da52f 100644
--- a/data/catalogs/apps/mail/fi.catkeys
+++ b/data/catalogs/apps/mail/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Be-MAIL 2834665561
+1 finnish x-vnd.Be-MAIL 849531913
View Mail Näkymä
%d - Date Mail %d - Päivämäärä
Attach attributes: Mail Liittämisattribuutit:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Tallennetaanko muutokset tähän allekirjo
Cc: Mail Kopio:
Off Mail Pois päältä
Find Mail Etsi
-Preferences… Mail Asetukset…
Undo Mail Peru
Date: Mail Päivämäärä:
An error occurred trying to open this signature. Mail Tapahtui virhe yritettäessä avata tätä allekirjiotusta.
diff --git a/data/catalogs/apps/mail/fr.catkeys b/data/catalogs/apps/mail/fr.catkeys
index e76e7a52dd..688c05ee63 100644
--- a/data/catalogs/apps/mail/fr.catkeys
+++ b/data/catalogs/apps/mail/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Be-MAIL 1925197549
+1 french x-vnd.Be-MAIL 4235031197
View Mail Vue
%d - Date Mail %d - Date
Attach attributes: Mail Attributs du fichier joint :
@@ -37,7 +37,6 @@ Save changes to this signature? Mail Enregistrer les modifications apportées
Cc: Mail Cc :
Off Mail Arrêt
Find Mail Rechercher
-Preferences… Mail Préférences…
Undo Mail Annuler
Date: Mail Date :
An error occurred trying to open this signature. Mail Une erreur est survenue en essayant d'ouvrir la signature.
diff --git a/data/catalogs/apps/mail/ja.catkeys b/data/catalogs/apps/mail/ja.catkeys
index 5e76c37e7f..31bf56e02e 100644
--- a/data/catalogs/apps/mail/ja.catkeys
+++ b/data/catalogs/apps/mail/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Be-MAIL 2834665561
+1 japanese x-vnd.Be-MAIL 849531913
View Mail 表示
%d - Date Mail %d - 日付
Attach attributes: Mail 属性の添付:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail 署名の変更を確定し保存します
Cc: Mail Cc:
Off Mail オフ
Find Mail 検索
-Preferences… Mail メールの設定…
Undo Mail 元に戻す
Date: Mail 日付:
An error occurred trying to open this signature. Mail この署名を開くときにエラーが発生しました。
diff --git a/data/catalogs/apps/mail/lt.catkeys b/data/catalogs/apps/mail/lt.catkeys
index 4b54577e60..0a711f1ff4 100644
--- a/data/catalogs/apps/mail/lt.catkeys
+++ b/data/catalogs/apps/mail/lt.catkeys
@@ -1,4 +1,4 @@
-1 lithuanian x-vnd.Be-MAIL 1831526878
+1 lithuanian x-vnd.Be-MAIL 4141360526
View Mail Rodymas
%d - Date Mail %d – data
Attach attributes: Mail Pridedamų failų požymių įtraukimas:
@@ -37,7 +37,6 @@ Save changes to this signature? Mail Ar įrašyti šio prierašo pakeitimus?
Cc: Mail Kopija:
Off Mail Išjungti
Find Mail Ieškoti
-Preferences… Mail Nuostatos…
Undo Mail Atšaukti
Date: Mail Data:
An error occurred trying to open this signature. Mail Bandant atverti šį prierašą, įvyko klaida.
diff --git a/data/catalogs/apps/mail/nl.catkeys b/data/catalogs/apps/mail/nl.catkeys
index 6665f861bf..c64e70823f 100644
--- a/data/catalogs/apps/mail/nl.catkeys
+++ b/data/catalogs/apps/mail/nl.catkeys
@@ -1,4 +1,4 @@
-1 dutch; flemish x-vnd.Be-MAIL 2834665561
+1 dutch; flemish x-vnd.Be-MAIL 849531913
View Mail Bekijken
%d - Date Mail %d - Datum
Attach attributes: Mail Attributen bijvoegen:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Veranderingen aan dit onderschrift opslaan
Cc: Mail Cc:
Off Mail Uit
Find Mail Zoeken
-Preferences… Mail Voorkeuren...
Undo Mail Ongedaan maken
Date: Mail Datum:
An error occurred trying to open this signature. Mail Er is een fout ontstaan bij het openen van dit onderschift.
diff --git a/data/catalogs/apps/mail/pl.catkeys b/data/catalogs/apps/mail/pl.catkeys
index 970f29786b..a5f07e32c1 100644
--- a/data/catalogs/apps/mail/pl.catkeys
+++ b/data/catalogs/apps/mail/pl.catkeys
@@ -1,4 +1,4 @@
-1 polish x-vnd.Be-MAIL 2834665561
+1 polish x-vnd.Be-MAIL 849531913
View Mail Widok
%d - Date Mail %d - Data
Attach attributes: Mail Dołączaj atrybuty:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Czy zapisać zmiany tej sygnaturki?
Cc: Mail Cc:
Off Mail Wyłącz
Find Mail Znajdź
-Preferences… Mail Ustawienia…
Undo Mail Cofnij
Date: Mail Data:
An error occurred trying to open this signature. Mail Wystąpił błąd podczas próby otwarcia tej sygnaturki.
diff --git a/data/catalogs/apps/mail/ro.catkeys b/data/catalogs/apps/mail/ro.catkeys
index 147d5ab862..8d2614bdc5 100644
--- a/data/catalogs/apps/mail/ro.catkeys
+++ b/data/catalogs/apps/mail/ro.catkeys
@@ -1,4 +1,4 @@
-1 romanian x-vnd.Be-MAIL 1770407339
+1 romanian x-vnd.Be-MAIL 4080240987
View Mail Vizualizare
%d - Date Mail %d - Dată
Attach attributes: Mail Atașează atribute:
@@ -36,7 +36,6 @@ Save changes to this signature? Mail Se salvează modificările la această sem
Cc: Mail Cc:
Off Mail Oprit
Find Mail Găsește
-Preferences… Mail Preferințe...
Undo Mail Refă
Date: Mail Dată:
An error occurred trying to open this signature. Mail A apărut o eroare când s-a încercat deschiderea acestei semnături.
diff --git a/data/catalogs/apps/mail/ru.catkeys b/data/catalogs/apps/mail/ru.catkeys
index 0dbce3f763..061afe85ef 100644
--- a/data/catalogs/apps/mail/ru.catkeys
+++ b/data/catalogs/apps/mail/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Be-MAIL 2834665561
+1 russian x-vnd.Be-MAIL 849531913
View Mail Вид
%d - Date Mail %d - Дата
Attach attributes: Mail Прикрепление атрибутов:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Сохранить изменения в
Cc: Mail Копия:
Off Mail Выключить
Find Mail Найти
-Preferences… Mail Настройки…
Undo Mail Отменить
Date: Mail Дата:
An error occurred trying to open this signature. Mail Возникла ошибка при попытке открытия этой подписи.
diff --git a/data/catalogs/apps/mail/sk.catkeys b/data/catalogs/apps/mail/sk.catkeys
index 4005250df6..420b55dd20 100644
--- a/data/catalogs/apps/mail/sk.catkeys
+++ b/data/catalogs/apps/mail/sk.catkeys
@@ -1,4 +1,4 @@
-1 slovak x-vnd.Be-MAIL 2834665561
+1 slovak x-vnd.Be-MAIL 849531913
View Mail Zobraziť
%d - Date Mail %d - Dátum
Attach attributes: Mail Pripojiť atribúty:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Uložiť zmeny tohto podpisu?
Cc: Mail Kópia:
Off Mail Vypnúť
Find Mail Nájsť
-Preferences… Mail Predvoľby…
Undo Mail Vrátiť
Date: Mail Dátum:
An error occurred trying to open this signature. Mail Vyskytla sa chyba pri pokuse otvoriť podpis.
diff --git a/data/catalogs/apps/mail/sv.catkeys b/data/catalogs/apps/mail/sv.catkeys
index 175c57ac59..4dd208c84a 100644
--- a/data/catalogs/apps/mail/sv.catkeys
+++ b/data/catalogs/apps/mail/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Be-MAIL 1584464035
+1 swedish x-vnd.Be-MAIL 3894297683
View Mail Visa
%d - Date Mail %d - Datum
Attach attributes: Mail Bifoga attribut:
@@ -30,7 +30,6 @@ There is no installed handler for URL links. Mail Det finns ingen behandlare in
Signature Mail Signatur
Find again Mail Sök igen
Signature: Mail Signatur:
-Preferences… Mail Inställningar...
Undo Mail Ångra
Date: Mail Datum:
Paste Mail Klistra in
diff --git a/data/catalogs/apps/mail/uk.catkeys b/data/catalogs/apps/mail/uk.catkeys
index d30ee280fc..3acd051bcc 100644
--- a/data/catalogs/apps/mail/uk.catkeys
+++ b/data/catalogs/apps/mail/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.Be-MAIL 485048633
+1 ukrainian x-vnd.Be-MAIL 2794882281
View Mail Вигляд
%d - Date Mail %d - Дата
Attach attributes: Mail Додати атрибути:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail Зберегти зміни в цьому
Cc: Mail Cc:
Off Mail Вимкнути
Find Mail Знайти
-Preferences… Mail Настройки…
Undo Mail Відмінити
Date: Mail Дата:
An error occurred trying to open this signature. Mail Помилка при спробі відкрити цей підпис.
diff --git a/data/catalogs/apps/mail/zh-Hans.catkeys b/data/catalogs/apps/mail/zh-Hans.catkeys
index 37f59abeed..646c13a121 100644
--- a/data/catalogs/apps/mail/zh-Hans.catkeys
+++ b/data/catalogs/apps/mail/zh-Hans.catkeys
@@ -1,4 +1,4 @@
-1 english x-vnd.Be-MAIL 2834665561
+1 english x-vnd.Be-MAIL 849531913
View Mail 查看
%d - Date Mail %d - 日期
Attach attributes: Mail 附加属性:
@@ -38,7 +38,6 @@ Save changes to this signature? Mail 保存此样式?
Cc: Mail 副本:
Off Mail 关闭
Find Mail 搜索
-Preferences… Mail 首选项…
Undo Mail 撤销
Date: Mail 日期:
An error occurred trying to open this signature. Mail 试图打开标识出错。
diff --git a/data/catalogs/kits/tracker/be.catkeys b/data/catalogs/kits/tracker/be.catkeys
index 5a69f37dc0..f9d3d30996 100644
--- a/data/catalogs/kits/tracker/be.catkeys
+++ b/data/catalogs/kits/tracker/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Haiku-libtracker 1301055003
+1 belarusian x-vnd.Haiku-libtracker 351214779
common B_COMMON_DIRECTORY агульны
OK WidgetAttributeText ОК
Icon view VolumeWindow Від іконак
@@ -378,7 +378,6 @@ Modified FindPanel Зменены
Error moving \"%name\" to Trash. (%error) FSUtils Памылка пры адпраўцы \"%name\" да Сметніцы. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Вы не можаце замяніць каталог адным з яго падкаталогаў.
FavoritesMenu <Няма нядаўніх элементаў>
-Preferences… ContainerWindow Наладкі...
Move PoseView Перамясціць
Open and make preferred OpenWithWindow Адкрыць і зрабіць пажаданай
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы ўпэўненыя, что жадаеце беззваротна выдаліць выбраны(я) элемент(ы)?
diff --git a/data/catalogs/kits/tracker/de.catkeys b/data/catalogs/kits/tracker/de.catkeys
index cd99a1e0de..1c02189e03 100644
--- a/data/catalogs/kits/tracker/de.catkeys
+++ b/data/catalogs/kits/tracker/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Haiku-libtracker 1301055003
+1 german x-vnd.Haiku-libtracker 351214779
common B_COMMON_DIRECTORY Allgemein
OK WidgetAttributeText OK
Icon view VolumeWindow Icon-Ansicht
@@ -378,7 +378,6 @@ Modified FindPanel Geändert
Error moving \"%name\" to Trash. (%error) FSUtils Fehler beim Verschieben von \"%name\" in den Papierkorb. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Ordner können nicht mit einem seiner Unterordner ersetzt werden.
FavoritesMenu
-Preferences… ContainerWindow Einstellungen…
Move PoseView Verschieben
Open and make preferred OpenWithWindow Öffnen und zur Bevorzugten machen
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Sollen die ausgewählten Objekte wirklich gelöscht werden? Diese Aktion kann nicht rückgängig gemacht werden.
diff --git a/data/catalogs/kits/tracker/el.catkeys b/data/catalogs/kits/tracker/el.catkeys
index 2814be303f..3dce1bfa11 100644
--- a/data/catalogs/kits/tracker/el.catkeys
+++ b/data/catalogs/kits/tracker/el.catkeys
@@ -1,4 +1,4 @@
-1 greek, modern (1453-) x-vnd.Haiku-libtracker 250739144
+1 greek, modern (1453-) x-vnd.Haiku-libtracker 3595866216
common B_COMMON_DIRECTORY κοινό
OK WidgetAttributeText Εντάξει
Icon view VolumeWindow Προβολή εικονιδίου
@@ -357,7 +357,6 @@ Modified FindPanel Τροποποιήθηκε
Error moving \"%name\" to Trash. (%error) FSUtils Σφάλμα κατά τη μετακίνηση του \"%name\" στα Απορρίματα.(%error)
You can't replace a folder with one of its sub-folders. FSUtils Δεν μπορείτε να αντικαταστήσετε ένα φάκελο με ένα από τους υποφακέλους του.
FavoritesMenu <Κανένα πρόσφατο στοιχείο>
-Preferences… ContainerWindow Προτιμήσεις...
Move PoseView Μετακίνηση
Open and make preferred OpenWithWindow 'Ανοιγμα και ορισμός προεπιλεγμένου
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Είστε σίγουρος οτι θέλετε να διαγράψετε τα επιλεγμένα αρχεία; Αυτή η λειτουργία δε μπορεί να αναστραφεί.
diff --git a/data/catalogs/kits/tracker/fi.catkeys b/data/catalogs/kits/tracker/fi.catkeys
index 0355bcedc7..2965c25ae6 100644
--- a/data/catalogs/kits/tracker/fi.catkeys
+++ b/data/catalogs/kits/tracker/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Haiku-libtracker 1301055003
+1 finnish x-vnd.Haiku-libtracker 351214779
common B_COMMON_DIRECTORY yhteinen
OK WidgetAttributeText Valmis
Icon view VolumeWindow Kuvakenäkymä
@@ -378,7 +378,6 @@ Modified FindPanel Muokattu
Error moving \"%name\" to Trash. (%error) FSUtils Virhe siirrettäessä kohdetta ”%name” roskakoriin. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Et voi korvata kansiota yhdellä sen alikansioista.
FavoritesMenu
-Preferences… ContainerWindow Asetukset...
Move PoseView Siirrä
Open and make preferred OpenWithWindow Avaa ja tee ensisijaiseksi
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Oletko varma, että haluat poistaa valitut kohteet? Tätä toimintoa ei voi palauttaa.
diff --git a/data/catalogs/kits/tracker/fr.catkeys b/data/catalogs/kits/tracker/fr.catkeys
index 45a8c9fb4d..8d913d29ed 100644
--- a/data/catalogs/kits/tracker/fr.catkeys
+++ b/data/catalogs/kits/tracker/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-libtracker 1301055003
+1 french x-vnd.Haiku-libtracker 351214779
common B_COMMON_DIRECTORY commun
OK WidgetAttributeText OK
Icon view VolumeWindow Vue en icônes
@@ -378,7 +378,6 @@ Modified FindPanel Modifié
Error moving \"%name\" to Trash. (%error) FSUtils Erreur en envoyant « %name » à la Corbeille. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Vous ne pouvez pas remplacer un dossier par l'un de ses sous-dossiers.
FavoritesMenu
-Preferences… ContainerWindow Préférences…
Move PoseView Déplacer
Open and make preferred OpenWithWindow Ouvrir et en faire la préférence
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Êtes vous sûr de vouloir supprimer l(es) élément(s) sélectionné(s) ? Cette opération est irrémédiable.
diff --git a/data/catalogs/kits/tracker/hi.catkeys b/data/catalogs/kits/tracker/hi.catkeys
index d988106840..4d2d230103 100644
--- a/data/catalogs/kits/tracker/hi.catkeys
+++ b/data/catalogs/kits/tracker/hi.catkeys
@@ -1,4 +1,4 @@
-1 hindi x-vnd.Haiku-libtracker 2988504432
+1 hindi x-vnd.Haiku-libtracker 2038664208
common B_COMMON_DIRECTORY सामान्य
OK WidgetAttributeText ठीक है
Icon view VolumeWindow चिह्न दृश्य
@@ -360,7 +360,6 @@ Modified FindPanel संशोधित किया गया
Error moving \"%name\" to Trash. (%error) FSUtils जाने में त्रुटि \"%name\" रद्दी में. (%error)
You can't replace a folder with one of its sub-folders. FSUtils आप इस फ़ोल्डर की जगह इस के उप फ़ोल्डर नहीं डाल सकते.
FavoritesMenu <कोई हाल के आइटम नहीं>
-Preferences… ContainerWindow वरीयताएँ...
Move PoseView जाए
Open and make preferred OpenWithWindow खोलें और फिर पसंद करें
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils आप सुनिश्चित हैं कि आप चयनित मद (s) को मिटाना चाहते हैं? इस आपरेशन को लौटाया नहीं जा सकता
diff --git a/data/catalogs/kits/tracker/ja.catkeys b/data/catalogs/kits/tracker/ja.catkeys
index 0009beeeda..11f9b32079 100644
--- a/data/catalogs/kits/tracker/ja.catkeys
+++ b/data/catalogs/kits/tracker/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Haiku-libtracker 1680698556
+1 japanese x-vnd.Haiku-libtracker 730858332
OK WidgetAttributeText OK
Icon view VolumeWindow アイコン表示
Add-ons FilePanelPriv アドオン
@@ -373,7 +373,6 @@ Modified FindPanel 更新日時
Error moving \"%name\" to Trash. (%error) FSUtils \"%name\" をごみ箱に捨てようとしたら、エラーが発生しました。(%error)
You can't replace a folder with one of its sub-folders. FSUtils サブフォルダーを同名のフォルダーと置き換えられません。
FavoritesMenu <最近使った項目はありません>
-Preferences… ContainerWindow 設定…
Move PoseView 移動
Open and make preferred OpenWithWindow 関連づけて開く
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 選択した項目を削除してもよろしいですか?削除した項目は復元できませんので、ご注意ください。
diff --git a/data/catalogs/kits/tracker/lt.catkeys b/data/catalogs/kits/tracker/lt.catkeys
index 9451bae812..ca856c8c26 100644
--- a/data/catalogs/kits/tracker/lt.catkeys
+++ b/data/catalogs/kits/tracker/lt.catkeys
@@ -1,4 +1,4 @@
-1 lithuanian x-vnd.Haiku-libtracker 1868621245
+1 lithuanian x-vnd.Haiku-libtracker 918781021
common B_COMMON_DIRECTORY Bendra
OK WidgetAttributeText Gerai
Icon view VolumeWindow Rodyti piktogramas
@@ -367,7 +367,6 @@ Modified FindPanel Modifikavimo data
Error moving \"%name\" to Trash. (%error) FSUtils Klaida perkeliant „%name“ į Šiukšlinę (%error)
You can't replace a folder with one of its sub-folders. FSUtils Aplanko pakeisti vienu jo poaplankių negalima.
FavoritesMenu
-Preferences… ContainerWindow Nuostatos…
Move PoseView Perkelti
Open and make preferred OpenWithWindow Atverti ir laikyti numatytąja
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ar tikrai norite pašalinti pažymėtus objektus? Neužmirškite, jog šis veiksmas negrįžtamas.
diff --git a/data/catalogs/kits/tracker/nb.catkeys b/data/catalogs/kits/tracker/nb.catkeys
index 6e99a2015b..fae93afeb1 100644
--- a/data/catalogs/kits/tracker/nb.catkeys
+++ b/data/catalogs/kits/tracker/nb.catkeys
@@ -1,4 +1,4 @@
-1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 1776686592
+1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-libtracker 826846368
common B_COMMON_DIRECTORY felles
OK WidgetAttributeText OK
Icon view VolumeWindow Ikonvisning
@@ -362,7 +362,6 @@ Modified FindPanel Endret
Error moving \"%name\" to Trash. (%error) FSUtils Feil ved flytting av \"%name\" til søppelkurv. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Du kan ikke erstatte en mappe med en av sine undermapper.
FavoritesMenu
-Preferences… ContainerWindow Innstillinger...
Move PoseView Flytt
Open and make preferred OpenWithWindow Åpne og gjør til standard
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Er du sikker på at du vil slette valgte element(er)? Du kan ikke angre på denne handlingen.
diff --git a/data/catalogs/kits/tracker/nl.catkeys b/data/catalogs/kits/tracker/nl.catkeys
index f23c9932b2..9b413830be 100644
--- a/data/catalogs/kits/tracker/nl.catkeys
+++ b/data/catalogs/kits/tracker/nl.catkeys
@@ -1,4 +1,4 @@
-1 dutch; flemish x-vnd.Haiku-libtracker 1294519032
+1 dutch; flemish x-vnd.Haiku-libtracker 344678808
common B_COMMON_DIRECTORY algemeen
OK WidgetAttributeText OK
Icon view VolumeWindow Icoonweergave
@@ -363,7 +363,6 @@ Modified FindPanel Gewijzigd
Error moving \"%name\" to Trash. (%error) FSUtils Fout bij het verplaatsen van \"%name\" naar de prullenbak. (%error)
You can't replace a folder with one of its sub-folders. FSUtils U kunt een map niet vervangen door een van zijn submappen.
FavoritesMenu
-Preferences… ContainerWindow Voorkeuren...
Move PoseView Verplaatsen
Open and make preferred OpenWithWindow Openen en bevoorkeuren
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Bent u zeker dat u het/de geselecteerde item(s) wilt verwijderen? Deze actie kan niet ongedaan gemaakt worden.
diff --git a/data/catalogs/kits/tracker/pl.catkeys b/data/catalogs/kits/tracker/pl.catkeys
index 44cced418b..3481e974cb 100644
--- a/data/catalogs/kits/tracker/pl.catkeys
+++ b/data/catalogs/kits/tracker/pl.catkeys
@@ -1,4 +1,4 @@
-1 polish x-vnd.Haiku-libtracker 1868621245
+1 polish x-vnd.Haiku-libtracker 918781021
common B_COMMON_DIRECTORY common
OK WidgetAttributeText OK
Icon view VolumeWindow Widok ikon
@@ -367,7 +367,6 @@ Modified FindPanel Zmodyfikowano
Error moving \"%name\" to Trash. (%error) FSUtils Błąd przy przenoszeniu \"%name\" do Kosza. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Nie możesz podmienić folderu jednym z jego podfolderów.
FavoritesMenu
-Preferences… ContainerWindow Ustawienia…
Move PoseView Przenieś
Open and make preferred OpenWithWindow Otwórz i zaznacz jako preferowane
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Jesteś pewien, że chcesz usunąć zaznaczone obiekty? Ta operacja nie może być cofnięta.
diff --git a/data/catalogs/kits/tracker/ro.catkeys b/data/catalogs/kits/tracker/ro.catkeys
index 4bb000af66..436628348b 100644
--- a/data/catalogs/kits/tracker/ro.catkeys
+++ b/data/catalogs/kits/tracker/ro.catkeys
@@ -1,4 +1,4 @@
-1 romanian x-vnd.Haiku-libtracker 65899779
+1 romanian x-vnd.Haiku-libtracker 3411026851
OK WidgetAttributeText OK
Icon view VolumeWindow Vizualizare pictogramă
Add-ons FilePanelPriv Module
@@ -298,7 +298,6 @@ Name QueryPoseView Nume
Delete FSUtils Șterge
Modified FindPanel Modificat
You can't replace a folder with one of its sub-folders. FSUtils Nu puteți înlocui un dosar cu unul din subdosarele acestuia.
-Preferences… ContainerWindow Preferințe...
Move PoseView Mută
Open and make preferred OpenWithWindow Deschide sau fixează ca preferat
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Sigur doriți să ștergeți elementul(ele) selectat(e)? Această operație nu poate fi inversată.
diff --git a/data/catalogs/kits/tracker/ru.catkeys b/data/catalogs/kits/tracker/ru.catkeys
index 8687c011ee..056f175420 100644
--- a/data/catalogs/kits/tracker/ru.catkeys
+++ b/data/catalogs/kits/tracker/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Haiku-libtracker 853863347
+1 russian x-vnd.Haiku-libtracker 4198990419
common B_COMMON_DIRECTORY Общие
OK WidgetAttributeText ОК
Icon view VolumeWindow Большие значки
@@ -374,7 +374,6 @@ Modified FindPanel Изменён
Error moving \"%name\" to Trash. (%error) FSUtils Ошибка при перемещении \"%name\" в корзину. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Невозможно заменить папку её же собственной подпапкой.
FavoritesMenu <Нет недавних объектов>
-Preferences… ContainerWindow Настройки…
Move PoseView Переместить
Open and make preferred OpenWithWindow Открыть и сделать предпочтительным
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Вы уверены, что хотите удалить выделенные объекты? Эту операцию будет невозможно отменить.
diff --git a/data/catalogs/kits/tracker/sk.catkeys b/data/catalogs/kits/tracker/sk.catkeys
index dfa5c9bd17..ba15d0f0a8 100644
--- a/data/catalogs/kits/tracker/sk.catkeys
+++ b/data/catalogs/kits/tracker/sk.catkeys
@@ -1,4 +1,4 @@
-1 slovak x-vnd.Haiku-libtracker 1574172506
+1 slovak x-vnd.Haiku-libtracker 624332282
common B_COMMON_DIRECTORY spoločné
OK WidgetAttributeText OK
Icon view VolumeWindow Zobrazenie ikon
@@ -377,7 +377,6 @@ Modified FindPanel Zmenené
Error moving \"%name\" to Trash. (%error) FSUtils Chyba pri presúvaní „%name“ do Koša. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Nemôžete nahradiť priečinok jedným z jeho podpriečinkov.
FavoritesMenu <Žiadne nedávne položky>
-Preferences… ContainerWindow Predvoľby…
Move PoseView Presunúť
Open and make preferred OpenWithWindow Otvoriť a nastaviť ako preferovanú
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ste si istí, že chcete zmazať vybrané položky? Túto operáciu nemožno vrátiť.
diff --git a/data/catalogs/kits/tracker/sv.catkeys b/data/catalogs/kits/tracker/sv.catkeys
index 98890cc347..41840e7b97 100644
--- a/data/catalogs/kits/tracker/sv.catkeys
+++ b/data/catalogs/kits/tracker/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Haiku-libtracker 2663284831
+1 swedish x-vnd.Haiku-libtracker 1713444607
common B_COMMON_DIRECTORY gemensam
OK WidgetAttributeText OK
Icon view VolumeWindow Ikonvy
@@ -372,7 +372,6 @@ Modified FindPanel Modifierad
Error moving \"%name\" to Trash. (%error) FSUtils Fel vid flytt av "%name" till Papperskorgen. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Du kan inte ersätta en katalog med en av dess underkataloger.
FavoritesMenu
-Preferences… ContainerWindow Inställningar…
Move PoseView Flytta
Open and make preferred OpenWithWindow Öppna och gör till förval
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Är du säker på att du vill radera de valda objekten? Denna operation kan inte ångras.
diff --git a/data/catalogs/kits/tracker/uk.catkeys b/data/catalogs/kits/tracker/uk.catkeys
index db39b00d00..c78b042977 100644
--- a/data/catalogs/kits/tracker/uk.catkeys
+++ b/data/catalogs/kits/tracker/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.Haiku-libtracker 335362992
+1 ukrainian x-vnd.Haiku-libtracker 3680490064
common B_COMMON_DIRECTORY common
OK WidgetAttributeText Гаразд
Icon view VolumeWindow У вигляді іконок
@@ -362,7 +362,6 @@ Modified FindPanel Змінений
Error moving \"%name\" to Trash. (%error) FSUtils Помилка переміщення \"%name\" до Кошика. (%error)
You can't replace a folder with one of its sub-folders. FSUtils Ви не можете замінити папку однією з вкладених папок.
FavoritesMenu <Немає недавніх елементів>
-Preferences… ContainerWindow Настройки…
Move PoseView Перемістити
Open and make preferred OpenWithWindow Відкрити і зробити бажаним
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils Ви впевнені що хочете видалити вибрані елементи? Ця операція необоротна
diff --git a/data/catalogs/kits/tracker/zh-Hans.catkeys b/data/catalogs/kits/tracker/zh-Hans.catkeys
index 778fbe9f5b..179a3c5c7f 100644
--- a/data/catalogs/kits/tracker/zh-Hans.catkeys
+++ b/data/catalogs/kits/tracker/zh-Hans.catkeys
@@ -1,4 +1,4 @@
-1 english x-vnd.Haiku-libtracker 4242202911
+1 english x-vnd.Haiku-libtracker 3292362687
common B_COMMON_DIRECTORY 常用
OK WidgetAttributeText 确定
Icon view VolumeWindow 图标视图
@@ -363,7 +363,6 @@ Modified FindPanel 修改
Error moving \"%name\" to Trash. (%error) FSUtils 移动 \"%name\" 到垃圾箱出错。(%error)
You can't replace a folder with one of its sub-folders. FSUtils 您无法替换目录为其子目录。
FavoritesMenu <无最近项目>
-Preferences… ContainerWindow 首选项...
Move PoseView 移动
Open and make preferred OpenWithWindow 打开并创建首选
Are you sure you want to delete the selected item(s)? This operation cannot be reverted. FSUtils 您确定要删除选中项目?该操作将无法恢复。
diff --git a/data/catalogs/servers/mail/be.catkeys b/data/catalogs/servers/mail/be.catkeys
index d3be2dee8c..239b9acafa 100644
--- a/data/catalogs/servers/mail/be.catkeys
+++ b/data/catalogs/servers/mail/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Be-POST 2300302075
+1 belarusian x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Атрымліваю пошту для %name
Check for mails only DeskbarView Толькі праверыць пошту
Send pending mails DeskbarView Даслаць паведамленні што чакаюць
@@ -9,7 +9,6 @@ Mail status MailDaemon Статус Пошты
Shutdown mail services DeskbarView Спыніць паштовыя службы
%num new message DeskbarView %num новае паведамленне
Sending mail for %name Notifier Дасылаю пошту для %name
-Preferences… DeskbarView Наладкі…
%num new messages. MailDaemon %num новых паведамленняў.
%num new message. MailDaemon %num новае паведамленне.
Create new message… DeskbarView Стварыць новае паведамленне…
diff --git a/data/catalogs/servers/mail/de.catkeys b/data/catalogs/servers/mail/de.catkeys
index d408bb8ef0..3976128705 100644
--- a/data/catalogs/servers/mail/de.catkeys
+++ b/data/catalogs/servers/mail/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Be-POST 2300302075
+1 german x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier E-Mails für %name abrufen
Check for mails only DeskbarView E-Mails nur abrufen für
Send pending mails DeskbarView E-Mails senden
@@ -9,7 +9,6 @@ Mail status MailDaemon E-Mail-Status
Shutdown mail services DeskbarView E-Mail-Dienst ausschalten
%num new message DeskbarView %num neue Nachricht
Sending mail for %name Notifier E-Mails von %name senden
-Preferences… DeskbarView Einstellungen…
%num new messages. MailDaemon %num neue Nachrichten.
%num new message. MailDaemon %num neue Nachricht.
Create new message… DeskbarView Nachricht verfassen…
diff --git a/data/catalogs/servers/mail/el.catkeys b/data/catalogs/servers/mail/el.catkeys
index c89b9bc030..efb5ebbb3e 100644
--- a/data/catalogs/servers/mail/el.catkeys
+++ b/data/catalogs/servers/mail/el.catkeys
@@ -1,4 +1,4 @@
-1 greek, modern (1453-) x-vnd.Be-POST 2300302075
+1 greek, modern (1453-) x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Κατέβασμα μηνυμάτων από %name
Check for mails only DeskbarView Ελεγχος για νέα μηνύματα μόνο
Send pending mails DeskbarView Αποστολή αλληλογραφίας στην ουρά
@@ -9,7 +9,6 @@ Mail status MailDaemon Κατάσταση αλληλογραφίας
Shutdown mail services DeskbarView Κλείσιμο υπηρεσιών αλληλογραφίας
%num new message DeskbarView %num νέο μήνυμα
Sending mail for %name Notifier Αποστολή μηνύματος από %name
-Preferences… DeskbarView Επιλογές...
%num new messages. MailDaemon %num καινούργια μηνύματα.
%num new message. MailDaemon %num καινούργια μηνύματα.
Create new message… DeskbarView Δημιουργία μηνύματος...
diff --git a/data/catalogs/servers/mail/fi.catkeys b/data/catalogs/servers/mail/fi.catkeys
index fce0108e63..470ed46510 100644
--- a/data/catalogs/servers/mail/fi.catkeys
+++ b/data/catalogs/servers/mail/fi.catkeys
@@ -1,4 +1,4 @@
-1 finnish x-vnd.Be-POST 2300302075
+1 finnish x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Noudetaan sähköpostia vastaanottajalle %name
Check for mails only DeskbarView Tarkista vain sähköpostit
Send pending mails DeskbarView Lähetä odottamassa olevat sähköpostit
@@ -9,7 +9,6 @@ Mail status MailDaemon Sähköpostitila
Shutdown mail services DeskbarView Sulje sähköpostipalvelut
%num new message DeskbarView %num uusi viesti
Sending mail for %name Notifier Lähetetään sähköpostia vastaanottajalle %name
-Preferences… DeskbarView Asetukset...
%num new messages. MailDaemon %num uutta viestiä.
%num new message. MailDaemon %num uusi viesti.
Create new message… DeskbarView Luo uusi viesti...
diff --git a/data/catalogs/servers/mail/fr.catkeys b/data/catalogs/servers/mail/fr.catkeys
index 12cd45ca76..92c2b7d964 100644
--- a/data/catalogs/servers/mail/fr.catkeys
+++ b/data/catalogs/servers/mail/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Be-POST 677638342
+1 french x-vnd.Be-POST 944207750
Fetching mail for %name Notifier Récupération des mails de %name
Check for mails only DeskbarView Vérifier seulement les courriels
Send pending mails DeskbarView Envoyer les courriels en attente
@@ -9,7 +9,6 @@ Mail status MailDaemon État du courrier
Shutdown mail services DeskbarView Arrêter les services de messagerie
%num new message DeskbarView %num nouveau message
Sending mail for %name Notifier Envoi des mails de %name
-Preferences… DeskbarView Préférences…
%num new messages. MailDaemon %num nouveaux messages.
%num new message. MailDaemon %num nouveau message.
Create new message… DeskbarView Créer un nouveau message…
diff --git a/data/catalogs/servers/mail/hi.catkeys b/data/catalogs/servers/mail/hi.catkeys
index 35fee32976..842a3c49ce 100644
--- a/data/catalogs/servers/mail/hi.catkeys
+++ b/data/catalogs/servers/mail/hi.catkeys
@@ -1,4 +1,4 @@
-1 hindi x-vnd.Be-POST 2300302075
+1 hindi x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier मेल खोज रहें है %name
Check for mails only DeskbarView केवल मेंल के लिए चेक करें
Send pending mails DeskbarView बची हुई मेल को भेजें
@@ -9,7 +9,6 @@ Mail status MailDaemon मेल की स्थति
Shutdown mail services DeskbarView मिल सर्विसेस बंद कर दीजिए
%num new message DeskbarView %num नया सन्देश
Sending mail for %name Notifier मेल भेज रहें है %name
-Preferences… DeskbarView वरीयताएँ...
%num new messages. MailDaemon %num नया सन्देश.
%num new message. MailDaemon %num नया सन्देश.
Create new message… DeskbarView नया सन्देश बनाने के लिए
diff --git a/data/catalogs/servers/mail/ja.catkeys b/data/catalogs/servers/mail/ja.catkeys
index 2c0f7740b0..adc5ccc063 100644
--- a/data/catalogs/servers/mail/ja.catkeys
+++ b/data/catalogs/servers/mail/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Be-POST 2300302075
+1 japanese x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier %name からのメールを受信中
Check for mails only DeskbarView メール受信のみ
Send pending mails DeskbarView 保留メールを送信
@@ -9,7 +9,6 @@ Mail status MailDaemon メールの状況
Shutdown mail services DeskbarView 終了
%num new message DeskbarView %num 通の新着メッセージがあります
Sending mail for %name Notifier %name へのメールを送信中
-Preferences… DeskbarView メールの設定
%num new messages. MailDaemon %num 通の新着メッセージがあります。
%num new message. MailDaemon %num 通の新着メッセージがあります。
Create new message… DeskbarView 新規メッセージ作成
diff --git a/data/catalogs/servers/mail/lt.catkeys b/data/catalogs/servers/mail/lt.catkeys
index 453adca4a4..a9935d1f5e 100644
--- a/data/catalogs/servers/mail/lt.catkeys
+++ b/data/catalogs/servers/mail/lt.catkeys
@@ -1,4 +1,4 @@
-1 lithuanian x-vnd.Be-POST 2300302075
+1 lithuanian x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Gaunami %name laiškai
Check for mails only DeskbarView Tik patikrinti laiškus
Send pending mails DeskbarView Išsiųsti eilėje esančius laiškus
@@ -9,7 +9,6 @@ Mail status MailDaemon Pašto būsena
Shutdown mail services DeskbarView Išjungti el. pašto tarnybą
%num new message DeskbarView Naujų laiškų: %num
Sending mail for %name Notifier Siunčiami %name laiškai
-Preferences… DeskbarView Nuostatos…
%num new messages. MailDaemon Naujų laiškų: %num.
%num new message. MailDaemon Naujų laiškų: %num.
Create new message… DeskbarView Rašyti laišką…
diff --git a/data/catalogs/servers/mail/nl.catkeys b/data/catalogs/servers/mail/nl.catkeys
index 11bebbba5c..135d3db8c6 100644
--- a/data/catalogs/servers/mail/nl.catkeys
+++ b/data/catalogs/servers/mail/nl.catkeys
@@ -1,4 +1,4 @@
-1 dutch; flemish x-vnd.Be-POST 2300302075
+1 dutch; flemish x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Mail ophalen voor %name
Check for mails only DeskbarView Alleen mails controleren
Send pending mails DeskbarView Mails in wachtrij verzenden
@@ -9,7 +9,6 @@ Mail status MailDaemon Mailstatus
Shutdown mail services DeskbarView Mailservices afsluiten
%num new message DeskbarView %num nieuwe berichten
Sending mail for %name Notifier Mail voor %name versturen
-Preferences… DeskbarView Voorkeuren...
%num new messages. MailDaemon %num nieuwe berichten.
%num new message. MailDaemon %num nieuw bericht.
Create new message… DeskbarView Een nieuw bericht opstellen...
diff --git a/data/catalogs/servers/mail/pl.catkeys b/data/catalogs/servers/mail/pl.catkeys
index e65bec89cd..dfde1f427f 100644
--- a/data/catalogs/servers/mail/pl.catkeys
+++ b/data/catalogs/servers/mail/pl.catkeys
@@ -1,4 +1,4 @@
-1 polish x-vnd.Be-POST 2300302075
+1 polish x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Pobieranie poczty dla %name
Check for mails only DeskbarView Sprawdź tylko pocztę
Send pending mails DeskbarView Wyślij oczekującą pocztę
@@ -9,7 +9,6 @@ Mail status MailDaemon Status poczty
Shutdown mail services DeskbarView Wyłącz usługi poczty
%num new message DeskbarView %num nowa wiadomość
Sending mail for %name Notifier Wysyłanie poczty dla %name
-Preferences… DeskbarView Preferencje…
%num new messages. MailDaemon %num nowych wiadomości.
%num new message. MailDaemon %num nowa wiadomość.
Create new message… DeskbarView Utwórz nową wiadomość…
diff --git a/data/catalogs/servers/mail/ro.catkeys b/data/catalogs/servers/mail/ro.catkeys
index b1f1da914a..26c83fd13e 100644
--- a/data/catalogs/servers/mail/ro.catkeys
+++ b/data/catalogs/servers/mail/ro.catkeys
@@ -1,4 +1,4 @@
-1 romanian x-vnd.Be-POST 2300302075
+1 romanian x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Se primește emailul pentru %name
Check for mails only DeskbarView Verifică doar pentru emailuri
Send pending mails DeskbarView Trimite emailurile în așteptare
@@ -9,7 +9,6 @@ Mail status MailDaemon Stare email
Shutdown mail services DeskbarView Oprește serviciile de email
%num new message DeskbarView %num de mesaje noi
Sending mail for %name Notifier Se trimite emailul pentru %name
-Preferences… DeskbarView Preferințe...
%num new messages. MailDaemon %num mesaje noi.
%num new message. MailDaemon %num mesaj nou.
Create new message… DeskbarView Creează mesaj nou...
diff --git a/data/catalogs/servers/mail/sk.catkeys b/data/catalogs/servers/mail/sk.catkeys
index 682f8b58fc..c21e517821 100644
--- a/data/catalogs/servers/mail/sk.catkeys
+++ b/data/catalogs/servers/mail/sk.catkeys
@@ -1,4 +1,4 @@
-1 slovak x-vnd.Be-POST 2300302075
+1 slovak x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Sťahuje sa pošta účtu %name
Check for mails only DeskbarView Iba skontrolovať poštu
Send pending mails DeskbarView Poslať čakajúcu poštu
@@ -9,7 +9,6 @@ Mail status MailDaemon Stav pošty
Shutdown mail services DeskbarView Vypnúť poštové služby
%num new message DeskbarView %num nová správa
Sending mail for %name Notifier Posiela sa pošta účtu %name
-Preferences… DeskbarView Nastavenia…
%num new messages. MailDaemon %num nových správ.
%num new message. MailDaemon %num nová správa.
Create new message… DeskbarView Vytvoriť novú správu…
diff --git a/data/catalogs/servers/mail/sv.catkeys b/data/catalogs/servers/mail/sv.catkeys
index e3d250508d..2453e58856 100644
--- a/data/catalogs/servers/mail/sv.catkeys
+++ b/data/catalogs/servers/mail/sv.catkeys
@@ -1,4 +1,4 @@
-1 swedish x-vnd.Be-POST 2300302075
+1 swedish x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Hämtar e-post för %name
Check for mails only DeskbarView Kontrollera bara e-post
Send pending mails DeskbarView Skicka väntande meddelanden
@@ -9,7 +9,6 @@ Mail status MailDaemon E-post status
Shutdown mail services DeskbarView Stäng av e-posttjänsterna
%num new message DeskbarView %num nytt meddelande
Sending mail for %name Notifier Skickar e-post för %name
-Preferences… DeskbarView Inställningar...
%num new messages. MailDaemon %num nya meddelanden.
%num new message. MailDaemon %num nytt meddelande.
Create new message… DeskbarView Skapa nytt meddelande...
diff --git a/data/catalogs/servers/mail/uk.catkeys b/data/catalogs/servers/mail/uk.catkeys
index 5e1378a668..ca86c2cdd3 100644
--- a/data/catalogs/servers/mail/uk.catkeys
+++ b/data/catalogs/servers/mail/uk.catkeys
@@ -1,4 +1,4 @@
-1 ukrainian x-vnd.Be-POST 2300302075
+1 ukrainian x-vnd.Be-POST 2566871483
Fetching mail for %name Notifier Отримання пошти для %name
Check for mails only DeskbarView Перевірити тільки пошту
Send pending mails DeskbarView Відправити чергову пошту
@@ -9,7 +9,6 @@ Mail status MailDaemon Стан пошти
Shutdown mail services DeskbarView Закрити поштові сервіси
%num new message DeskbarView %num нов. повід.
Sending mail for %name Notifier Відправка пошти для %name
-Preferences… DeskbarView Настройки…
%num new messages. MailDaemon %num нових повід.
%num new message. MailDaemon %num нове повідомлення.
Create new message… DeskbarView Створити нове повідомлення…
From cc2b203e16df473ddd1c9b7bcba048a0441fd99c Mon Sep 17 00:00:00 2001
From: Humdinger
Date: Fri, 17 Aug 2012 20:05:39 +0200
Subject: [PATCH 11/30] Reverting part of hrev44535.
Renaming "Preferences" to "Tracker preferences" has been
unexpectedly contentious. Reverted.
---
src/kits/tracker/ContainerWindow.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kits/tracker/ContainerWindow.cpp b/src/kits/tracker/ContainerWindow.cpp
index f9b4752eb6..fe161831e0 100644
--- a/src/kits/tracker/ContainerWindow.cpp
+++ b/src/kits/tracker/ContainerWindow.cpp
@@ -2085,7 +2085,7 @@ BContainerWindow::AddWindowMenu(BMenu* menu)
menu->AddSeparatorItem();
- item = new BMenuItem(B_TRANSLATE("Tracker preferences" B_UTF8_ELLIPSIS),
+ item = new BMenuItem(B_TRANSLATE("Preferences" B_UTF8_ELLIPSIS),
new BMessage(kShowSettingsWindow));
item->SetTarget(be_app);
menu->AddItem(item);
From 9ff0fe56153cd39f2053edbbad62a1d140426e2c Mon Sep 17 00:00:00 2001
From: Niels Sascha Reedijk
Date: Sat, 18 Aug 2012 06:29:55 +0200
Subject: [PATCH 12/30] Update translations from Pootle
---
.../add-ons/screen_savers/glife/ja.catkeys | 3 ++-
.../add-ons/translators/exr/be.catkeys | 4 +++-
.../add-ons/translators/exr/fr.catkeys | 4 +++-
.../add-ons/translators/hvif/be.catkeys | 4 +++-
.../add-ons/translators/hvif/fr.catkeys | 4 +++-
.../add-ons/translators/ico/be.catkeys | 4 +++-
.../add-ons/translators/ico/fr.catkeys | 4 +++-
.../add-ons/translators/pcx/be.catkeys | 4 +++-
.../add-ons/translators/pcx/fr.catkeys | 4 +++-
.../add-ons/translators/ppm/be.catkeys | 3 ++-
.../add-ons/translators/ppm/fr.catkeys | 3 ++-
.../add-ons/translators/raw/be.catkeys | 3 +--
.../add-ons/translators/raw/de.catkeys | 3 +--
.../add-ons/translators/raw/el.catkeys | 3 +--
.../add-ons/translators/raw/fi.catkeys | 3 +--
.../add-ons/translators/raw/fr.catkeys | 5 ++---
.../add-ons/translators/raw/hi.catkeys | 3 +--
.../add-ons/translators/raw/ja.catkeys | 3 +--
.../add-ons/translators/raw/lt.catkeys | 3 +--
.../add-ons/translators/raw/nb.catkeys | 3 +--
.../add-ons/translators/raw/nl.catkeys | 3 +--
.../add-ons/translators/raw/pl.catkeys | 3 +--
.../add-ons/translators/raw/ru.catkeys | 3 +--
.../add-ons/translators/raw/sk.catkeys | 3 +--
.../add-ons/translators/raw/sv.catkeys | 3 +--
.../add-ons/translators/raw/uk.catkeys | 3 +--
.../add-ons/translators/raw/zh-Hans.catkeys | 3 +--
.../add-ons/translators/rtf/be.catkeys | 4 +++-
.../add-ons/translators/rtf/fr.catkeys | 4 +++-
.../add-ons/translators/stxt/be.catkeys | 4 +++-
.../add-ons/translators/stxt/fr.catkeys | 4 +++-
.../add-ons/translators/webp/be.catkeys | 3 +--
.../add-ons/translators/webp/de.catkeys | 3 +--
.../add-ons/translators/webp/el.catkeys | 3 +--
.../add-ons/translators/webp/fi.catkeys | 3 +--
.../add-ons/translators/webp/fr.catkeys | 3 +--
.../add-ons/translators/webp/hi.catkeys | 3 +--
.../add-ons/translators/webp/ja.catkeys | 3 +--
.../add-ons/translators/webp/lt.catkeys | 3 +--
.../add-ons/translators/webp/nb.catkeys | 3 +--
.../add-ons/translators/webp/nl.catkeys | 3 +--
.../add-ons/translators/webp/pl.catkeys | 3 +--
.../add-ons/translators/webp/ro.catkeys | 3 +--
.../add-ons/translators/webp/ru.catkeys | 3 +--
.../add-ons/translators/webp/sk.catkeys | 3 +--
.../add-ons/translators/webp/sv.catkeys | 3 +--
.../add-ons/translators/webp/uk.catkeys | 3 +--
.../add-ons/translators/webp/zh-Hans.catkeys | 3 +--
data/catalogs/apps/codycam/fr.catkeys | 3 ++-
data/catalogs/apps/devices/fr.catkeys | 8 +++++++-
data/catalogs/apps/drivesetup/fr.catkeys | 18 ++++++++++++++----
data/catalogs/apps/fontdemo/fr.catkeys | 4 +++-
data/catalogs/apps/glteapot/be.catkeys | 3 ++-
data/catalogs/apps/glteapot/de.catkeys | 3 ++-
data/catalogs/apps/glteapot/fr.catkeys | 3 ++-
data/catalogs/apps/glteapot/ja.catkeys | 3 ++-
data/catalogs/apps/glteapot/ru.catkeys | 3 ++-
data/catalogs/apps/icon-o-matic/be.catkeys | 3 ++-
data/catalogs/apps/icon-o-matic/de.catkeys | 3 ++-
data/catalogs/apps/icon-o-matic/fr.catkeys | 17 ++++++++++++++++-
data/catalogs/apps/icon-o-matic/ru.catkeys | 3 ++-
data/catalogs/apps/login/fr.catkeys | 17 +++++++++++++++++
data/catalogs/apps/magnify/fr.catkeys | 3 ++-
data/catalogs/apps/mail/be.catkeys | 3 ++-
data/catalogs/apps/mail/de.catkeys | 3 ++-
data/catalogs/apps/mail/fr.catkeys | 8 +++++++-
data/catalogs/apps/mail/ja.catkeys | 3 ++-
data/catalogs/apps/mail/ru.catkeys | 3 ++-
data/catalogs/apps/mediaplayer/fr.catkeys | 3 ++-
data/catalogs/apps/webpositive/fr.catkeys | 11 ++++++++++-
data/catalogs/apps/workspaces/fr.catkeys | 5 ++++-
data/catalogs/kits/tracker/be.catkeys | 3 ++-
data/catalogs/kits/tracker/de.catkeys | 3 ++-
data/catalogs/kits/tracker/fr.catkeys | 3 ++-
data/catalogs/kits/tracker/ru.catkeys | 3 ++-
data/catalogs/preferences/mail/fr.catkeys | 3 ++-
data/catalogs/servers/mail/be.catkeys | 3 ++-
data/catalogs/servers/mail/de.catkeys | 3 ++-
data/catalogs/servers/mail/fr.catkeys | 5 ++++-
data/catalogs/servers/mail/ja.catkeys | 3 ++-
data/catalogs/servers/mail/ru.catkeys | 5 ++++-
81 files changed, 208 insertions(+), 117 deletions(-)
create mode 100644 data/catalogs/apps/login/fr.catkeys
diff --git a/data/catalogs/add-ons/screen_savers/glife/ja.catkeys b/data/catalogs/add-ons/screen_savers/glife/ja.catkeys
index aa16edd95f..bd7d5f7044 100644
--- a/data/catalogs/add-ons/screen_savers/glife/ja.catkeys
+++ b/data/catalogs/add-ons/screen_savers/glife/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Haiku-GLifeScreensaver 206066243
+1 japanese x-vnd.Haiku-GLifeScreensaver 1707534289
Grid Border: %li GLife ScreenSaver グリッドの輪郭: %li
Grid Width: GLife ScreenSaver グリッドの幅:
none GLife ScreenSaver 無し
@@ -10,5 +10,6 @@ Grid Width: %li GLife ScreenSaver グリッドの幅: %li
Grid Height: %li GLife ScreenSaver グリッドの高さ: %li
Grid Life Delay: GLife ScreenSaver グリッドの生存猶予:
OpenGL \"Game of Life\" GLife ScreenSaver OpenGL \"ライフゲーム\"
+Grid Life Delay: %s GLife ScreenSaver グリッドの生存猶予: %s
Grid Border: GLife ScreenSaver グリッドの境界:
by Aaron Hill GLife ScreenSaver Aaron Hill 作
diff --git a/data/catalogs/add-ons/translators/exr/be.catkeys b/data/catalogs/add-ons/translators/exr/be.catkeys
index 280bcc3ee9..12541168ca 100644
--- a/data/catalogs/add-ons/translators/exr/be.catkeys
+++ b/data/catalogs/add-ons/translators/exr/be.catkeys
@@ -1,7 +1,9 @@
-1 belarusian x-vnd.Haiku-EXRTranslator 2253035870
+1 belarusian x-vnd.Haiku-EXRTranslator 106859695
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 image EXRTranslator Выява EXR
+EXR image translator ConfigView Канвертар EXR выяваў
diff --git a/data/catalogs/add-ons/translators/exr/fr.catkeys b/data/catalogs/add-ons/translators/exr/fr.catkeys
index b96b46b675..5f62f75b1e 100644
--- a/data/catalogs/add-ons/translators/exr/fr.catkeys
+++ b/data/catalogs/add-ons/translators/exr/fr.catkeys
@@ -1,7 +1,9 @@
-1 french x-vnd.Haiku-EXRTranslator 2253035870
+1 french x-vnd.Haiku-EXRTranslator 106859695
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
EXR image translator EXRTranslator Traducteur d'images EXR
Based on OpenEXR (http://www.openexr.com) ConfigView Basé sur OpenEXR (http://www.openexr.com)
EXR Settings main Réglages EXR
+EXR images EXRTranslator Images EXR
a division of Lucasfilm Entertainment Company Ltd ConfigView une division de Lucasfilm Entertainment Company Ltd
EXR image EXRTranslator Image EXR
+EXR image translator ConfigView Traducteur d'images EXR
diff --git a/data/catalogs/add-ons/translators/hvif/be.catkeys b/data/catalogs/add-ons/translators/hvif/be.catkeys
index 7e7542ee62..71cb3856f7 100644
--- a/data/catalogs/add-ons/translators/hvif/be.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/be.catkeys
@@ -1,6 +1,8 @@
-1 belarusian x-vnd.Haiku-HVIFTranslator 2227623652
+1 belarusian x-vnd.Haiku-HVIFTranslator 249304797
+Haiku vector icon translator HVIFTranslator Канвертар вектарных значкаў Haiku
HVIF icons HVIFTranslator значкі HVIF
Render size: HVIFView Памер выніковай выявы:
HVIFTranslator Settings HVIFTranslator Наладкі канвертара HVIF
+Haiku vector icon 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/fr.catkeys b/data/catalogs/add-ons/translators/hvif/fr.catkeys
index 720538ab1f..91e3e37554 100644
--- a/data/catalogs/add-ons/translators/hvif/fr.catkeys
+++ b/data/catalogs/add-ons/translators/hvif/fr.catkeys
@@ -1,6 +1,8 @@
-1 french x-vnd.Haiku-HVIFTranslator 2227623652
+1 french x-vnd.Haiku-HVIFTranslator 249304797
+Haiku vector icon translator HVIFTranslator Traducteur d'icônes vectorielles Haiku
HVIF icons HVIFTranslator Icônes HVIF
Render size: HVIFView Taille de rendu :
HVIFTranslator Settings HVIFTranslator Réglages du traducteur d'icônes HVIF
+Haiku vector icon translator HVIFView Traducteur d'icônes vectorielles Haiku
HVIF Settings HVIFMain Réglages HVIF
Version %d.%d.%d, %s HVIFView Version %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 6bac8df8e6..d2411ed034 100644
--- a/data/catalogs/add-ons/translators/ico/be.catkeys
+++ b/data/catalogs/add-ons/translators/ico/be.catkeys
@@ -1,8 +1,9 @@
-1 belarusian x-vnd.Haiku-ICOTranslator 1637901496
+1 belarusian x-vnd.Haiku-ICOTranslator 3916328565
Cursor ICOTranslator Курсор
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Выява Windows %s %ld біт
Valid icon sizes are 16, 32, or 48 ConfigView Стандартныя памеры значкаў 16, 32 або 48
+Windows icons ICOTranslator Значкі Windows
Enforce valid icon sizes ConfigView Выкарыстоўваць стандартныя памеры
ICO Settings main Наладкі ICO
Windows icon translator ICOTranslator Канвертар значкаў Windows
@@ -10,3 +11,4 @@ pixels in either direction. ConfigView пікселяў у кожным нап
Write 32 bit images on true color input ConfigView Запісать выявы ў 32 біт поўны колер
Icon ICOTranslator Значак
ICOTranslator Settings ConfigView Наладкі канвертара ICO
+Windows icon translator ConfigView Канвертар значкаў Windows
diff --git a/data/catalogs/add-ons/translators/ico/fr.catkeys b/data/catalogs/add-ons/translators/ico/fr.catkeys
index c50bcca32d..221d6b74ee 100644
--- a/data/catalogs/add-ons/translators/ico/fr.catkeys
+++ b/data/catalogs/add-ons/translators/ico/fr.catkeys
@@ -1,8 +1,9 @@
-1 french x-vnd.Haiku-ICOTranslator 1637901496
+1 french x-vnd.Haiku-ICOTranslator 3916328565
Cursor ICOTranslator Curseur
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
Windows %s %ld bit image ICOTranslator Image Windows %s %ld bits
Valid icon sizes are 16, 32, or 48 ConfigView Les tailles d'icônes valides sont 16, 32 ou 48
+Windows icons ICOTranslator Icône Windows
Enforce valid icon sizes ConfigView Imposer des tailles valides aux icônes
ICO Settings main Réglages des icônes
Windows icon translator ICOTranslator Traducteur d'icônes Windows
@@ -10,3 +11,4 @@ pixels in either direction. ConfigView pixels dans n'importe quel sens.
Write 32 bit images on true color input ConfigView Écrire des images 32 bits pour les entrées en vraies couleurs
Icon ICOTranslator Icône
ICOTranslator Settings ConfigView Réglages du traducteur d'icônes
+Windows icon translator ConfigView Traducteur d'icônes Windows
diff --git a/data/catalogs/add-ons/translators/pcx/be.catkeys b/data/catalogs/add-ons/translators/pcx/be.catkeys
index 6158246ac9..5613584f9a 100644
--- a/data/catalogs/add-ons/translators/pcx/be.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/be.catkeys
@@ -1,6 +1,8 @@
-1 belarusian x-vnd.Haiku-PCXTranslator 2307793683
+1 belarusian x-vnd.Haiku-PCXTranslator 938242683
PCX Settings main Наладкі PCX
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
PCXTranslator Settings ConfigView Наладкі канвертару PCX
+PCX image translator PCXTranslator Канвертар выяваў PCX
PCX %lu bit image PCXTranslator %lu-бітная выява PCX
PCX images PCXTranslator Выявы PCX
+PCX image translator ConfigView Канвертар выяваў PCX
diff --git a/data/catalogs/add-ons/translators/pcx/fr.catkeys b/data/catalogs/add-ons/translators/pcx/fr.catkeys
index 1e44aa8de3..59d0e5a427 100644
--- a/data/catalogs/add-ons/translators/pcx/fr.catkeys
+++ b/data/catalogs/add-ons/translators/pcx/fr.catkeys
@@ -1,6 +1,8 @@
-1 french x-vnd.Haiku-PCXTranslator 2307793683
+1 french x-vnd.Haiku-PCXTranslator 938242683
PCX Settings main Réglages PCX
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
PCXTranslator Settings ConfigView Réglages du traducteur PCX
+PCX image translator PCXTranslator Traducteur d'images PCX
PCX %lu bit image PCXTranslator Image PCX %lu bits
PCX images PCXTranslator Images PCX
+PCX image translator ConfigView Traducteur d'images PCX
diff --git a/data/catalogs/add-ons/translators/ppm/be.catkeys b/data/catalogs/add-ons/translators/ppm/be.catkeys
index 6c9a9f86bd..3b0ff66d3c 100644
--- a/data/catalogs/add-ons/translators/ppm/be.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Haiku-PPMTranslator 2435270880
+1 belarusian x-vnd.Haiku-PPMTranslator 276252412
PPM Settings PPMMain Наладкі PPM
Based on PPMTranslator sample code PPMTranslator Грунтуецца на зыходным тэксце прыкладу "PPMTranslator"
OK PPMMain ОК
@@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RGBA 5:5:5:1 16 біт
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 біт
+PPM image translator PPMTranslator Канвертар выяваў PPM
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)
diff --git a/data/catalogs/add-ons/translators/ppm/fr.catkeys b/data/catalogs/add-ons/translators/ppm/fr.catkeys
index 9554feb0ca..7e18a6d061 100644
--- a/data/catalogs/add-ons/translators/ppm/fr.catkeys
+++ b/data/catalogs/add-ons/translators/ppm/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-PPMTranslator 2435270880
+1 french x-vnd.Haiku-PPMTranslator 276252412
PPM Settings PPMMain Réglages PPM
Based on PPMTranslator sample code PPMTranslator Basé sur le code d'exemple du traducteur PPM
OK PPMMain OK
@@ -9,6 +9,7 @@ RGBA 5:5:5:1 16 bits PPMTranslator RVBA 5:5:5:1 16 bits
Be Bitmap Format (PPMTranslator) PPMTranslator Format Bitmap Be (Traducteur PPM)
CMYA 8:8:8:8 32 bits PPMTranslator CMJA 8:8:8:8 32 bits
CMYK 8:8:8:8 32 bits PPMTranslator CMJN 8:8:8:8 32 bits
+PPM image translator PPMTranslator Traducteur d'images PPM
bits/space PPMTranslator bits/espace
RGB 8:8:8 32 bits big-endian PPMTranslator RVB 8:8:8 32 bits big-endian
RGB 5:6:5 16 bits big-endian PPMTranslator RVB 5:6:5 16 bits big-endian
diff --git a/data/catalogs/add-ons/translators/raw/be.catkeys b/data/catalogs/add-ons/translators/raw/be.catkeys
index 342037ad83..78922b35db 100644
--- a/data/catalogs/add-ons/translators/raw/be.catkeys
+++ b/data/catalogs/add-ons/translators/raw/be.catkeys
@@ -1,7 +1,6 @@
-1 belarusian x-vnd.Haiku-RAWTranslator 1938728039
+1 belarusian x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/de.catkeys b/data/catalogs/add-ons/translators/raw/de.catkeys
index e7f08c07e5..5d3963ba48 100644
--- a/data/catalogs/add-ons/translators/raw/de.catkeys
+++ b/data/catalogs/add-ons/translators/raw/de.catkeys
@@ -1,7 +1,6 @@
-1 german x-vnd.Haiku-RAWTranslator 1938728039
+1 german x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/el.catkeys b/data/catalogs/add-ons/translators/raw/el.catkeys
index 2541effcac..b5639e56a8 100644
--- a/data/catalogs/add-ons/translators/raw/el.catkeys
+++ b/data/catalogs/add-ons/translators/raw/el.catkeys
@@ -1,7 +1,6 @@
-1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 1938728039
+1 greek, modern (1453-) x-vnd.Haiku-RAWTranslator 2229230003
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 εικόνες
diff --git a/data/catalogs/add-ons/translators/raw/fi.catkeys b/data/catalogs/add-ons/translators/raw/fi.catkeys
index b82158142d..bffc0f0d0e 100644
--- a/data/catalogs/add-ons/translators/raw/fi.catkeys
+++ b/data/catalogs/add-ons/translators/raw/fi.catkeys
@@ -1,7 +1,6 @@
-1 finnish x-vnd.Haiku-RAWTranslator 1938728039
+1 finnish x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView RAW-muunninasetukset
Version %d.%d.%d, %s ConfigView Versio %d.%d.%d, %s
-RAW Images ConfigView RAW-kuvat
RAW image translator RAWTranslator RAW-kuvamuunnin
RAW Settings RAWTranslator main RAW-asetukset
RAW images RAWTranslator RAW-kuvat
diff --git a/data/catalogs/add-ons/translators/raw/fr.catkeys b/data/catalogs/add-ons/translators/raw/fr.catkeys
index d7cb5a2ba3..f39a351fc7 100644
--- a/data/catalogs/add-ons/translators/raw/fr.catkeys
+++ b/data/catalogs/add-ons/translators/raw/fr.catkeys
@@ -1,9 +1,8 @@
-1 french x-vnd.Haiku-RAWTranslator 1938728039
+1 french x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView Réglages du traducteur RAW
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
-RAW Images ConfigView Images RAW
RAW image translator RAWTranslator Traducteur d'images RAW
RAW Settings RAWTranslator main Réglages RAW
RAW images RAWTranslator Images RAW
-%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image %s RAW
+%s RAW image RAWTranslator Parameter (%s) is the name of the manufacturer (like 'Canon') Image brute %s
Based on Dave Coffin's dcraw 8.63 ConfigView Basé sur dcraw 8.63 de Dave Coffin
diff --git a/data/catalogs/add-ons/translators/raw/hi.catkeys b/data/catalogs/add-ons/translators/raw/hi.catkeys
index dc3f16d8cf..4e6818bf80 100644
--- a/data/catalogs/add-ons/translators/raw/hi.catkeys
+++ b/data/catalogs/add-ons/translators/raw/hi.catkeys
@@ -1,7 +1,6 @@
-1 hindi x-vnd.Haiku-RAWTranslator 1938728039
+1 hindi x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView RAWTranslator की सेत्तिंग्स
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 चित्र
diff --git a/data/catalogs/add-ons/translators/raw/ja.catkeys b/data/catalogs/add-ons/translators/raw/ja.catkeys
index f625655ace..6ec794939d 100644
--- a/data/catalogs/add-ons/translators/raw/ja.catkeys
+++ b/data/catalogs/add-ons/translators/raw/ja.catkeys
@@ -1,7 +1,6 @@
-1 japanese x-vnd.Haiku-RAWTranslator 1938728039
+1 japanese x-vnd.Haiku-RAWTranslator 2229230003
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 イメージ
diff --git a/data/catalogs/add-ons/translators/raw/lt.catkeys b/data/catalogs/add-ons/translators/raw/lt.catkeys
index cd3e927cc9..904c8fb50e 100644
--- a/data/catalogs/add-ons/translators/raw/lt.catkeys
+++ b/data/catalogs/add-ons/translators/raw/lt.catkeys
@@ -1,7 +1,6 @@
-1 lithuanian x-vnd.Haiku-RAWTranslator 1938728039
+1 lithuanian x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/nb.catkeys b/data/catalogs/add-ons/translators/raw/nb.catkeys
index 5e0d2c0f33..eb7ff993fe 100644
--- a/data/catalogs/add-ons/translators/raw/nb.catkeys
+++ b/data/catalogs/add-ons/translators/raw/nb.catkeys
@@ -1,7 +1,6 @@
-1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 1938728039
+1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView RAW-oversetterinnstillinger
Version %d.%d.%d, %s ConfigView Versjon %d.%d.%d, %s
-RAW Images ConfigView RAW-bilder
RAW image translator RAWTranslator RAW-bildeoversetter
RAW Settings RAWTranslator main RAW-innstillinger
RAW images RAWTranslator RAW-bilder
diff --git a/data/catalogs/add-ons/translators/raw/nl.catkeys b/data/catalogs/add-ons/translators/raw/nl.catkeys
index 61c84cebae..3f1800a647 100644
--- a/data/catalogs/add-ons/translators/raw/nl.catkeys
+++ b/data/catalogs/add-ons/translators/raw/nl.catkeys
@@ -1,7 +1,6 @@
-1 dutch; flemish x-vnd.Haiku-RAWTranslator 1938728039
+1 dutch; flemish x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/pl.catkeys b/data/catalogs/add-ons/translators/raw/pl.catkeys
index 9f56cea639..1f64820188 100644
--- a/data/catalogs/add-ons/translators/raw/pl.catkeys
+++ b/data/catalogs/add-ons/translators/raw/pl.catkeys
@@ -1,7 +1,6 @@
-1 polish x-vnd.Haiku-RAWTranslator 1938728039
+1 polish x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView Ustawienia translatora RAW
Version %d.%d.%d, %s ConfigView Wersja %d.%d.%d, %s
-RAW Images ConfigView Obrazy RAW
RAW image translator RAWTranslator Translator obrazów RAW
RAW Settings RAWTranslator main Ustawienia RAW
RAW images RAWTranslator Obrazy RAW
diff --git a/data/catalogs/add-ons/translators/raw/ru.catkeys b/data/catalogs/add-ons/translators/raw/ru.catkeys
index 8b69fe81f7..7d53f8d86e 100644
--- a/data/catalogs/add-ons/translators/raw/ru.catkeys
+++ b/data/catalogs/add-ons/translators/raw/ru.catkeys
@@ -1,7 +1,6 @@
-1 russian x-vnd.Haiku-RAWTranslator 1938728039
+1 russian x-vnd.Haiku-RAWTranslator 2229230003
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 изображения
diff --git a/data/catalogs/add-ons/translators/raw/sk.catkeys b/data/catalogs/add-ons/translators/raw/sk.catkeys
index e06689ba40..f05ad62a1d 100644
--- a/data/catalogs/add-ons/translators/raw/sk.catkeys
+++ b/data/catalogs/add-ons/translators/raw/sk.catkeys
@@ -1,7 +1,6 @@
-1 slovak x-vnd.Haiku-RAWTranslator 1938728039
+1 slovak x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/sv.catkeys b/data/catalogs/add-ons/translators/raw/sv.catkeys
index ba4eb5d4b3..14fbd7d5bf 100644
--- a/data/catalogs/add-ons/translators/raw/sv.catkeys
+++ b/data/catalogs/add-ons/translators/raw/sv.catkeys
@@ -1,7 +1,6 @@
-1 swedish x-vnd.Haiku-RAWTranslator 1938728039
+1 swedish x-vnd.Haiku-RAWTranslator 2229230003
RAWTranslator Settings ConfigView RAW översättare inställningar
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
-RAW Images ConfigView RAW bilder
RAW image translator RAWTranslator RAW bildöversättare
RAW Settings RAWTranslator main RAW inställningar
RAW images RAWTranslator RAW bilder
diff --git a/data/catalogs/add-ons/translators/raw/uk.catkeys b/data/catalogs/add-ons/translators/raw/uk.catkeys
index b2c046faa9..974aff609e 100644
--- a/data/catalogs/add-ons/translators/raw/uk.catkeys
+++ b/data/catalogs/add-ons/translators/raw/uk.catkeys
@@ -1,7 +1,6 @@
-1 ukrainian x-vnd.Haiku-RAWTranslator 1938728039
+1 ukrainian x-vnd.Haiku-RAWTranslator 2229230003
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
diff --git a/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys b/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys
index 40c43437e9..231974d285 100644
--- a/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys
+++ b/data/catalogs/add-ons/translators/raw/zh-Hans.catkeys
@@ -1,7 +1,6 @@
-1 english x-vnd.Haiku-RAWTranslator 1938728039
+1 english x-vnd.Haiku-RAWTranslator 2229230003
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 图像
diff --git a/data/catalogs/add-ons/translators/rtf/be.catkeys b/data/catalogs/add-ons/translators/rtf/be.catkeys
index 20577b9268..482c72f4d2 100644
--- a/data/catalogs/add-ons/translators/rtf/be.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/be.catkeys
@@ -1,7 +1,9 @@
-1 belarusian x-vnd.Haiku-RTFTranslator 3736645044
+1 belarusian x-vnd.Haiku-RTFTranslator 1620328626
Version %d.%d.%d, %s ConfigView Версія %d.%d.%d, %s
RTF text files RTFTranslator Файлы тэксту ў RTF
RTF-Translator Settings ConfigView Наладкі канвертара RTF
+Rich Text Format (RTF) translator 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
diff --git a/data/catalogs/add-ons/translators/rtf/fr.catkeys b/data/catalogs/add-ons/translators/rtf/fr.catkeys
index 46da7b01d5..6b88b4f5ac 100644
--- a/data/catalogs/add-ons/translators/rtf/fr.catkeys
+++ b/data/catalogs/add-ons/translators/rtf/fr.catkeys
@@ -1,7 +1,9 @@
-1 french x-vnd.Haiku-RTFTranslator 3736645044
+1 french x-vnd.Haiku-RTFTranslator 1620328626
Version %d.%d.%d, %s ConfigView Version %d.%d.%d, %s
RTF text files RTFTranslator Fichiers textes RTF
RTF-Translator Settings ConfigView Réglages du traducteur RTF
+Rich Text Format (RTF) translator ConfigView Traducteur du Format Texte enRichi (RTF)
RTF Settings main Réglages RTF
RichTextFormat file RTFTranslator Fichier Format Texte enRichi
+Rich Text Format translator RTFTranslator Traducteur du Format Texte enRichi
Rich Text Format translator v%d.%d.%d %s RTFTranslator Traducteur du Format Texte enRichi v%d.%d.%d %s
diff --git a/data/catalogs/add-ons/translators/stxt/be.catkeys b/data/catalogs/add-ons/translators/stxt/be.catkeys
index a3cf681121..41f308f80f 100644
--- a/data/catalogs/add-ons/translators/stxt/be.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/be.catkeys
@@ -1,6 +1,8 @@
-1 belarusian x-vnd.Haiku-STXTTranslator 3302294301
+1 belarusian x-vnd.Haiku-STXTTranslator 274886668
Be styled text file STXTTranslator Тэкставы файл са стылямі (Be styled)
Plain text file STXTTranslator Файл з простым тэкстам
STXTTranslator Settings STXTTranslator Наладкі канвертара STXT
+StyledEdit file translator STXTView Канвртар файлаў StyledEdit
StyledEdit files STXTTranslator Файлы StyledEdit
+StyledEdit file translator STXTTranslator Канвeртар файлаў StyledEdit
STXT Settings STXTMain Наладкі STXT
diff --git a/data/catalogs/add-ons/translators/stxt/fr.catkeys b/data/catalogs/add-ons/translators/stxt/fr.catkeys
index d9cd87acf6..a4d1161178 100644
--- a/data/catalogs/add-ons/translators/stxt/fr.catkeys
+++ b/data/catalogs/add-ons/translators/stxt/fr.catkeys
@@ -1,6 +1,8 @@
-1 french x-vnd.Haiku-STXTTranslator 3302294301
+1 french x-vnd.Haiku-STXTTranslator 274886668
Be styled text file STXTTranslator Fichier texte stylé Be
Plain text file STXTTranslator Fichier de texte brut
STXTTranslator Settings STXTTranslator Réglages du traducteur STXT
+StyledEdit file translator STXTView Traducteur de fichiers texte stylé
StyledEdit files STXTTranslator Fichiers texte stylé
+StyledEdit file translator STXTTranslator Traducteur de fichiers texte stylé
STXT Settings STXTMain Réglages STXT
diff --git a/data/catalogs/add-ons/translators/webp/be.catkeys b/data/catalogs/add-ons/translators/webp/be.catkeys
index 57211cfe5f..4acf1343e7 100644
--- a/data/catalogs/add-ons/translators/webp/be.catkeys
+++ b/data/catalogs/add-ons/translators/webp/be.catkeys
@@ -1,8 +1,7 @@
-1 belarusian x-vnd.Haiku-WebPTranslator 3630570850
+1 belarusian x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Метад сціску:
Based on libwebp v0.1, ConfigView Грунтуецца на матэрыялах libwebp v0.1,
Preset ConfigView Прадвызначаныя
-WebP Images ConfigView Выявы WebP
WebP images WebPTranslator Выявы WebP
WebPTranslator Settings ConfigView Наладкі канвертара выяваў WebP
Output quality: ConfigView Выходная якасць:
diff --git a/data/catalogs/add-ons/translators/webp/de.catkeys b/data/catalogs/add-ons/translators/webp/de.catkeys
index 11cb5c09d3..6ff6a87182 100644
--- a/data/catalogs/add-ons/translators/webp/de.catkeys
+++ b/data/catalogs/add-ons/translators/webp/de.catkeys
@@ -1,8 +1,7 @@
-1 german x-vnd.Haiku-WebPTranslator 3630570850
+1 german x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Komprimierungsart:
Based on libwebp v0.1, ConfigView Basiert auf libwebp v0.1
Preset ConfigView Voreinstellung
-WebP Images ConfigView WebP-Bilder
WebP images WebPTranslator WebP-Bilder
WebPTranslator Settings ConfigView WebPTranslator-Einstellungen
Output quality: ConfigView Ausgabequalität:
diff --git a/data/catalogs/add-ons/translators/webp/el.catkeys b/data/catalogs/add-ons/translators/webp/el.catkeys
index 3e2e3bdac6..e3dbd78829 100644
--- a/data/catalogs/add-ons/translators/webp/el.catkeys
+++ b/data/catalogs/add-ons/translators/webp/el.catkeys
@@ -1,8 +1,7 @@
-1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 3630570850
+1 greek, modern (1453-) x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Μέθοδος συμπίεσης:
Based on libwebp v0.1, ConfigView Βασισμένο στο libwebp v0.1,
Preset ConfigView Προεπιλογή
-WebP Images ConfigView Εικόνες WebP
WebP images WebPTranslator Εικόνες WebP
WebPTranslator Settings ConfigView Ρυθμίσεις μεταφραστή WebP
Output quality: ConfigView Ποιότητα εξόδου:
diff --git a/data/catalogs/add-ons/translators/webp/fi.catkeys b/data/catalogs/add-ons/translators/webp/fi.catkeys
index 240231252e..956352d791 100644
--- a/data/catalogs/add-ons/translators/webp/fi.catkeys
+++ b/data/catalogs/add-ons/translators/webp/fi.catkeys
@@ -1,8 +1,7 @@
-1 finnish x-vnd.Haiku-WebPTranslator 3630570850
+1 finnish x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Tiivistysmenetelmä
Based on libwebp v0.1, ConfigView Perustuu kirjastoon libwebp v0.1,
Preset ConfigView Esiasetus
-WebP Images ConfigView WebP-kuvat
WebP images WebPTranslator WebP-kuvat
WebPTranslator Settings ConfigView WebP-muunninasetukset
Output quality: ConfigView Tulostuslaatu:
diff --git a/data/catalogs/add-ons/translators/webp/fr.catkeys b/data/catalogs/add-ons/translators/webp/fr.catkeys
index e53444633a..d2f3b463c6 100644
--- a/data/catalogs/add-ons/translators/webp/fr.catkeys
+++ b/data/catalogs/add-ons/translators/webp/fr.catkeys
@@ -1,8 +1,7 @@
-1 french x-vnd.Haiku-WebPTranslator 3630570850
+1 french x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Méthode de compression :
Based on libwebp v0.1, ConfigView Basé sur libwebp v0.1,
Preset ConfigView Préréglage
-WebP Images ConfigView Images WebP
WebP images WebPTranslator Images WebP
WebPTranslator Settings ConfigView Réglages du traducteur WebP
Output quality: ConfigView Qualité de sortie :
diff --git a/data/catalogs/add-ons/translators/webp/hi.catkeys b/data/catalogs/add-ons/translators/webp/hi.catkeys
index a2354c8eef..58fc25e32c 100644
--- a/data/catalogs/add-ons/translators/webp/hi.catkeys
+++ b/data/catalogs/add-ons/translators/webp/hi.catkeys
@@ -1,8 +1,7 @@
-1 hindi x-vnd.Haiku-WebPTranslator 3630570850
+1 hindi x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView काम्प्रेस्शन का तरीका:
Based on libwebp v0.1, ConfigView libwebp v0.1 पर आधारित,
Preset ConfigView प्रीसेट
-WebP Images ConfigView WebP चित्र
WebP images WebPTranslator WebP चित्र
WebPTranslator Settings ConfigView WebP ट्रांसलेटर सेतिनग्स
Output quality: ConfigView आउटपुट गुणवत्ता:
diff --git a/data/catalogs/add-ons/translators/webp/ja.catkeys b/data/catalogs/add-ons/translators/webp/ja.catkeys
index 15289114d4..186ba72b31 100644
--- a/data/catalogs/add-ons/translators/webp/ja.catkeys
+++ b/data/catalogs/add-ons/translators/webp/ja.catkeys
@@ -1,8 +1,7 @@
-1 japanese x-vnd.Haiku-WebPTranslator 3630570850
+1 japanese x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView 圧縮方法:
Based on libwebp v0.1, ConfigView libwebp v0.1 に基づく、
Preset ConfigView プリセット:
-WebP Images ConfigView WebP イメージ
WebP images WebPTranslator WebP イメージ
WebPTranslator Settings ConfigView WebP トランスレーター設定
Output quality: ConfigView 出力品質:
diff --git a/data/catalogs/add-ons/translators/webp/lt.catkeys b/data/catalogs/add-ons/translators/webp/lt.catkeys
index 51e0cf11bb..1bdf672156 100644
--- a/data/catalogs/add-ons/translators/webp/lt.catkeys
+++ b/data/catalogs/add-ons/translators/webp/lt.catkeys
@@ -1,8 +1,7 @@
-1 lithuanian x-vnd.Haiku-WebPTranslator 3630570850
+1 lithuanian x-vnd.Haiku-WebPTranslator 2427600890
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ė:
diff --git a/data/catalogs/add-ons/translators/webp/nb.catkeys b/data/catalogs/add-ons/translators/webp/nb.catkeys
index 6029ba5958..f1ce63614a 100644
--- a/data/catalogs/add-ons/translators/webp/nb.catkeys
+++ b/data/catalogs/add-ons/translators/webp/nb.catkeys
@@ -1,8 +1,7 @@
-1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 3630570850
+1 bokmål, norwegian; norwegian bokmål x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Kompresjonsmetode:
Based on libwebp v0.1, ConfigView Basert på libwebp v0.1,
Preset ConfigView Forhåndsinstilling
-WebP Images ConfigView WebP-bilder
WebP images WebPTranslator WebP-bilder
WebPTranslator Settings ConfigView WebP-oversetterinnstillinger
Output quality: ConfigView Output kvalitet:
diff --git a/data/catalogs/add-ons/translators/webp/nl.catkeys b/data/catalogs/add-ons/translators/webp/nl.catkeys
index 7a155c126c..71db77ebf9 100644
--- a/data/catalogs/add-ons/translators/webp/nl.catkeys
+++ b/data/catalogs/add-ons/translators/webp/nl.catkeys
@@ -1,8 +1,7 @@
-1 dutch; flemish x-vnd.Haiku-WebPTranslator 3630570850
+1 dutch; flemish x-vnd.Haiku-WebPTranslator 2427600890
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:
diff --git a/data/catalogs/add-ons/translators/webp/pl.catkeys b/data/catalogs/add-ons/translators/webp/pl.catkeys
index 0748d18940..47fa1c4fa0 100644
--- a/data/catalogs/add-ons/translators/webp/pl.catkeys
+++ b/data/catalogs/add-ons/translators/webp/pl.catkeys
@@ -1,8 +1,7 @@
-1 polish x-vnd.Haiku-WebPTranslator 3630570850
+1 polish x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Metoda kompresji:
Based on libwebp v0.1, ConfigView Bazuje na libwebp v0.1,
Preset ConfigView Ustawienie
-WebP Images ConfigView Obrazki WebP
WebP images WebPTranslator Obrazki WebP
WebPTranslator Settings ConfigView Ustawienia translatora WebP
Output quality: ConfigView Jakość wyjściowa:
diff --git a/data/catalogs/add-ons/translators/webp/ro.catkeys b/data/catalogs/add-ons/translators/webp/ro.catkeys
index a692ddfee9..ba2bcb3318 100644
--- a/data/catalogs/add-ons/translators/webp/ro.catkeys
+++ b/data/catalogs/add-ons/translators/webp/ro.catkeys
@@ -1,5 +1,4 @@
-1 romanian x-vnd.Haiku-WebPTranslator 1423533669
-WebP Images ConfigView Imagini WebP
+1 romanian x-vnd.Haiku-WebPTranslator 220563709
WebP images WebPTranslator Imagini WebP
WebPTranslator Settings ConfigView Configurări TraducătorWebP
WebP Settings main Configurări WebP
diff --git a/data/catalogs/add-ons/translators/webp/ru.catkeys b/data/catalogs/add-ons/translators/webp/ru.catkeys
index 1f55644280..642081a026 100644
--- a/data/catalogs/add-ons/translators/webp/ru.catkeys
+++ b/data/catalogs/add-ons/translators/webp/ru.catkeys
@@ -1,8 +1,7 @@
-1 russian x-vnd.Haiku-WebPTranslator 3630570850
+1 russian x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Метод сжатия
Based on libwebp v0.1, ConfigView Основано на libwebp v0.1,
Preset ConfigView Пресет
-WebP Images ConfigView Транслятор WebP изображений
WebP images WebPTranslator WebP изображения
WebPTranslator Settings ConfigView Настройки WebP транслятора
Output quality: ConfigView Качество вывода:
diff --git a/data/catalogs/add-ons/translators/webp/sk.catkeys b/data/catalogs/add-ons/translators/webp/sk.catkeys
index 8ca3462ecc..0e26410570 100644
--- a/data/catalogs/add-ons/translators/webp/sk.catkeys
+++ b/data/catalogs/add-ons/translators/webp/sk.catkeys
@@ -1,8 +1,7 @@
-1 slovak x-vnd.Haiku-WebPTranslator 3630570850
+1 slovak x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Spôsob kompresie:
Based on libwebp v0.1, ConfigView Založené na libwebp v0.1,
Preset ConfigView Predvoľby
-WebP Images ConfigView Obrázky WebP
WebP images WebPTranslator Obrázky WebP
WebPTranslator Settings ConfigView Nastavenie WebPTranslator
Output quality: ConfigView Kvalita výstupu:
diff --git a/data/catalogs/add-ons/translators/webp/sv.catkeys b/data/catalogs/add-ons/translators/webp/sv.catkeys
index 58d14655f0..8ba1c66903 100644
--- a/data/catalogs/add-ons/translators/webp/sv.catkeys
+++ b/data/catalogs/add-ons/translators/webp/sv.catkeys
@@ -1,8 +1,7 @@
-1 swedish x-vnd.Haiku-WebPTranslator 3630570850
+1 swedish x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Komprimeringsmetod
Based on libwebp v0.1, ConfigView Baserat på libwebp v0.1,
Preset ConfigView Förval
-WebP Images ConfigView WebP bilder
WebP images WebPTranslator WebP bilder
WebPTranslator Settings ConfigView WebP översättningsinställningar
Output quality: ConfigView Utdatakvalité
diff --git a/data/catalogs/add-ons/translators/webp/uk.catkeys b/data/catalogs/add-ons/translators/webp/uk.catkeys
index 6f7216b7b3..cbc6b63c23 100644
--- a/data/catalogs/add-ons/translators/webp/uk.catkeys
+++ b/data/catalogs/add-ons/translators/webp/uk.catkeys
@@ -1,8 +1,7 @@
-1 ukrainian x-vnd.Haiku-WebPTranslator 3630570850
+1 ukrainian x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView Метод стискання
Based on libwebp v0.1, ConfigView На основі libwebp v0.1,
Preset ConfigView Набір параметрів
-WebP Images ConfigView Зображення WebP
WebP images WebPTranslator Зображення WebP
WebPTranslator Settings ConfigView Настройки перетворювача WebP
Output quality: ConfigView Якість виведення
diff --git a/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys b/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys
index ce8dfcc326..c6b716a690 100644
--- a/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys
+++ b/data/catalogs/add-ons/translators/webp/zh-Hans.catkeys
@@ -1,8 +1,7 @@
-1 english x-vnd.Haiku-WebPTranslator 3630570850
+1 english x-vnd.Haiku-WebPTranslator 2427600890
Compression method: ConfigView 压缩方法:
Based on libwebp v0.1, ConfigView 基于 libwebp v0.1,
Preset ConfigView 预设
-WebP Images ConfigView WebP 图像
WebP images WebPTranslator WebP 图像
WebPTranslator Settings ConfigView WebP 转换器设置
Output quality: ConfigView 输出质量:
diff --git a/data/catalogs/apps/codycam/fr.catkeys b/data/catalogs/apps/codycam/fr.catkeys
index d14a1c7801..468f37eaa4 100644
--- a/data/catalogs/apps/codycam/fr.catkeys
+++ b/data/catalogs/apps/codycam/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-CodyCam 2499223827
+1 french x-vnd.Haiku-CodyCam 2416864674
Capturing Image… VideoConsumer.cpp Capture d'une image…
Every 30 seconds CodyCam Toutes les 30 secondes
File name: CodyCam Nom du fichier :
@@ -85,6 +85,7 @@ Cannot find the media roster CodyCam Impossible de trouver le diagramme des mé
Every 4 hours CodyCam Toutes les 4 heures
FTP CodyCam FTP
File transmission failed VideoConsumer.cpp Erreur dans la transmission du fichier
+Cannot seek time source! CodyCam Impossible de positionner la référence de temps !
File CodyCam Fichier
Image Format Menu CodyCam Menu de formats d'images
Every 30 minutes CodyCam Toutes les 30 minutes
diff --git a/data/catalogs/apps/devices/fr.catkeys b/data/catalogs/apps/devices/fr.catkeys
index 5da59e267b..3c07c38c1a 100644
--- a/data/catalogs/apps/devices/fr.catkeys
+++ b/data/catalogs/apps/devices/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-Devices 2511616912
+1 french x-vnd.Haiku-Devices 865240481
Manufacturer DeviceSCSI Fabricant
Order by: DevicesView Trier par :
ACPI controller Device Contrôleur ACPI
@@ -18,6 +18,7 @@ Detailed DevicesView Détail
Category DevicesView Catégorie
Quit DevicesView Quitter
Device paths Device Chemin des périphériques
+Scanner DeviceSCSI Scanner
Printer DeviceSCSI Imprimante
Processor Device Microprocesseur
Optical Drive DeviceSCSI Lecteur optique
@@ -40,6 +41,7 @@ Driver used Device Pilote utilisé
Other DeviceSCSI Autre
Device Name\t\t\t\t: %Name%\nManufacturer\t\t\t: %Manufacturer%\nDriver used\t\t\t\t: %DriverUsed%\nDevice paths\t: %DevicePaths% Device Nom du périphérique\t\t\t\t\t: %Name%\nFabricant\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t: %Manufacturer%\nPilote utilisé\t\t\t\t\t\t\t\t\t\t: %DriverUsed%\nChemins du périphérique\t: %DevicePaths%
ACPI Thermal Zone DeviceACPI Zone thermique ACPI
+Communications DeviceSCSI Communications
Bus DevicesView Bus
Communication controller Device Contrôleur de communication
Manufacturer DeviceACPI Fabricant
@@ -52,8 +54,10 @@ Basic information DevicesView Informations de base
PCI Information DevicePCI Informations PCI
Manufacturer: Device Fabricant :
ACPI bus DevicesView Bus ACPI
+Changer DeviceSCSI Changeur de disques
ACPI System Bus DeviceACPI Bus système ACPI
Devices System name Périphériques
+Worm DeviceSCSI Disque inscriptible
Multimedia controller Device Contrôleur multimédia
Unknown DevicePCI Inconnu
Device name: Device Nom du périphérique :
@@ -72,6 +76,8 @@ Manufacturer DevicePCI Fabricant
Intelligent controller Device Contrôleur intelligent
Satellite communications controller Device Contrôleur de communications par satellite
SCSI Information DeviceSCSI Informations SCSI
+Enclosure DeviceSCSI Zone de stockage
+Array DeviceSCSI Baie
Bridge Device Pont
Refresh devices DevicesView Rafraichir les périphériques
Unknown device DevicesView Périphérique inconnu
diff --git a/data/catalogs/apps/drivesetup/fr.catkeys b/data/catalogs/apps/drivesetup/fr.catkeys
index 6cb62990bf..84d5fbadfa 100644
--- a/data/catalogs/apps/drivesetup/fr.catkeys
+++ b/data/catalogs/apps/drivesetup/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-DriveSetup 3496601396
+1 french x-vnd.Haiku-DriveSetup 1372142450
DriveSetup System name Gestionnaire de disque
Delete MainWindow Supprimer
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 Êtes-vous sûr de vouloir écrire les changements sur le disque ?\n\nToutes les données de la partition sélectionnée seront effacées si vous le faites !
@@ -11,12 +11,15 @@ There's no space on the partition where a child partition could be created. Main
Unable to find the selected partition by ID. MainWindow Impossible de trouver la partition sélectionnée par son ID.
Select a partition from the list below. DiskView Sélectionnez une partition dans la liste ci-dessous.
No disk devices have been recognized. DiskView Aucun périphérique disque n'a été reconnu.
+Failed to initialize the disk %s!\n MainWindow Impossible d'initialiser le disque %s !\n
The selected disk is read-only. MainWindow Le disque choisi est en lecture seule.
Partition name: CreateParamsPanel Nom de la partition :
Initialize InitParamsPanel Initialiser
+Are you sure you want to format the partition \"%s\"? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition « %s » ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
Could not mount partition %s. MainWindow Impossible de monter la partition %s.
+The partition %s has been successfully formatted.\n MainWindow La partition %s a été correctement formatée.\n
The partition %s is already unmounted. MainWindow La partition %s est déjà démontée.
-Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été enregistré sur le disque.
+Failed to delete the partition. No changes have been written to disk. MainWindow Impossible de supprimer la partition. Aucun changement n'a été écrit sur le disque.
Partition type: CreateParamsPanel Type de partition :
Could not delete the selected partition. MainWindow Impossible de supprimer la partition sélectionnée.
Initialize MainWindow Initialiser
@@ -29,21 +32,25 @@ Mounted at PartitionList Montée en
There was an error acquiring the partition row. MainWindow Erreur de lecture des informations de la partition.
You need to select a partition entry from the list. MainWindow Sélectionnez d'abord une entrée de la table des partitions.
The currently selected partition does not have a parent partition. MainWindow La partition sélectionnée n'a pas de partition parente.
-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 Êtes-vous sur de vouloir enregistrer les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites !
+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 Êtes-vous sur de vouloir écrire les changements sur le disque ?\n\nToutes les données du disque seront définitivement perdues si vous le faites !
Offset: %ld MB Support Déplacement : %ld Mo
-Write changes MainWindow Enregistrer les modifications
+Write changes MainWindow Écrire les modifications
There was an error preparing the disk for modifications. MainWindow Une erreur est survenue pendant la préparation des modifications du disque.
The partition %s is already mounted. MainWindow La partition %s est déjà montée.
+Are you sure you want to format the partition? You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater la partition ? Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
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 Êtes-vous sûr de vouloir écrire les modifications sur disque maintenant ?\n\nToutes les données du disque %s seront irrémédiablement perdues si vous le faites !
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 Êtes-vous sûr de vouloir supprimer la partition sélectionnée ?\n\nToutes les données sur la partition seront définitivement perdues si vous le faites !
Create… MainWindow Créer…
Disk system \"%s\"\" not found! MainWindow Le disque système « %s » est introuvable !
The disk has been successfully initialized.\n MainWindow Le disque a été correctement initialisée.\n
Could not unmount partition %s. MainWindow Impossible de démonter la partition %s.
+Failed to format the partition %s!\n MainWindow Impossible de formater la partition %s !\n
Mount MainWindow Monter
Create CreateParamsPanel Créer
+Are you sure you want to format a raw disk? (most people initialize the disk with a partitioning system first) You will be asked again before changes are written to the disk. MainWindow Êtes-vous sûr de vouloir formater un disque brut ? (la plus part du temps, il convient au préalable d'initialiser le disque avec un système de partitions ) Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.
Device PartitionList Périphérique
Disk MainWindow Disque
+Are you sure you want to initialize the selected disk? All data will be lost. You will be asked again before changes are written to the disk.\n MainWindow Êtes-vous sûr de vouloir initialiser le disque sélectionné ? Toutes les données seront perdues. Une confirmation vous sera à nouveau demandée avant que les changements ne soient écrits sur le disque.\n
Device DiskView Périphérique
Active PartitionList Active
Volume name PartitionList Nom de volume
@@ -58,6 +65,7 @@ Partition MainWindow Partition
File system PartitionList Système de fichiers
Validation of the given creation parameters failed. MainWindow Le contrôle des paramètres de création donnés a échoué.
Size PartitionList Taille
+Wipe (not implemented) MainWindow Effacer (non implémenté)
Validation of the given initialization parameters failed. MainWindow Le contrôle des paramètres d'initialisation donnés a échoué.
The selected partition does not contain a partitioning system. MainWindow La partition sélectionnée ne contient pas de système de partitionnement.
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 Êtes-vous sûr de vouloir enregistrer les modifications sur le disque maintenant ?\n\nToutes les données sur la partition %s seront définitivement perdues si vous le faites !
@@ -66,7 +74,9 @@ Partition size CreateParamsPanel Taille de la partition
Surface test (not implemented) MainWindow Test de surface (non implémenté)
Cancel InitParamsPanel Annuler
Cancel CreateParamsPanel Annuler
+Format MainWindow Formater
Parameters PartitionList Paramètres
Creation of the partition has failed. MainWindow La partition n'a pas pu être créée.
The currently selected partition is not empty. MainWindow La partition sélectionnée n'est pas vide.
+Failed to format the partition. No changes have been written to disk. MainWindow Impossible de formater la partition. Aucun changement n'a été écrit sur le disque.
Unmount MainWindow Démonter
diff --git a/data/catalogs/apps/fontdemo/fr.catkeys b/data/catalogs/apps/fontdemo/fr.catkeys
index 1b91450ac8..dd38cb9fb7 100644
--- a/data/catalogs/apps/fontdemo/fr.catkeys
+++ b/data/catalogs/apps/fontdemo/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-FontDemo 3756411221
+1 french x-vnd.Haiku-FontDemo 1769653414
Outline: ControlView Contour :
Size: 50 ControlView Taille : 50
Stop cycling ControlView Arrêter de boucler
@@ -11,6 +11,8 @@ Spacing: %d ControlView Espacement : %d
Cycle fonts ControlView Polices en boucle
Font: ControlView Police :
Rotation: 0 ControlView Rotation : 0
+Drawing mode: ControlView Mode de dessin :
+FontDemo FontDemo FontDemo
Haiku, Inc. ControlView Haiku, Inc.
Controls FontDemo Contrôles
Outline: %d ControlView Contour : %d
diff --git a/data/catalogs/apps/glteapot/be.catkeys b/data/catalogs/apps/glteapot/be.catkeys
index 58912bdd76..7d5a80a1a2 100644
--- a/data/catalogs/apps/glteapot/be.catkeys
+++ b/data/catalogs/apps/glteapot/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Haiku-GLTeapot 3688092856
+1 belarusian x-vnd.Haiku-GLTeapot 1569683445
Upper center TeapotWindow Зверху
Lighting TeapotWindow Падсветка
Off TeapotWindow Выключыць
@@ -9,6 +9,7 @@ Blue TeapotWindow Блакітны
Gouraud shading TeapotWindow Адценне Gouraud
Quit TeapotWindow Выйсці
Filled polygons TeapotWindow Запоўненыя палігоны
+Settings TeapotWindow Наладкі
Fog TeapotWindow Туман
Backface culling TeapotWindow Адкідаць заднія
Z-buffered TeapotWindow Z-буферызаваны
diff --git a/data/catalogs/apps/glteapot/de.catkeys b/data/catalogs/apps/glteapot/de.catkeys
index ae009f2501..82b2d5c6c5 100644
--- a/data/catalogs/apps/glteapot/de.catkeys
+++ b/data/catalogs/apps/glteapot/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Haiku-GLTeapot 3688092856
+1 german x-vnd.Haiku-GLTeapot 1569683445
Upper center TeapotWindow Mitte oben
Lighting TeapotWindow Beleuchtung
Off TeapotWindow Aus
@@ -9,6 +9,7 @@ Blue TeapotWindow Blau
Gouraud shading TeapotWindow Gouraud Shading
Quit TeapotWindow Beenden
Filled polygons TeapotWindow Gefüllte Polygone
+Settings TeapotWindow Einstellungen
Fog TeapotWindow Nebel
Backface culling TeapotWindow Backface Culling
Z-buffered TeapotWindow Z-Buffering
diff --git a/data/catalogs/apps/glteapot/fr.catkeys b/data/catalogs/apps/glteapot/fr.catkeys
index c83442f439..d68bedc700 100644
--- a/data/catalogs/apps/glteapot/fr.catkeys
+++ b/data/catalogs/apps/glteapot/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-GLTeapot 3688092856
+1 french x-vnd.Haiku-GLTeapot 1569683445
Upper center TeapotWindow En haut au centre
Lighting TeapotWindow Éclairage
Off TeapotWindow Arrêt
@@ -9,6 +9,7 @@ Blue TeapotWindow Bleu
Gouraud shading TeapotWindow Ombrages de Gouraud
Quit TeapotWindow Quitter
Filled polygons TeapotWindow Polygones pleins
+Settings TeapotWindow Réglages
Fog TeapotWindow Brouillard
Backface culling TeapotWindow Abattage des faces arrières
Z-buffered TeapotWindow Tampon de profondeur
diff --git a/data/catalogs/apps/glteapot/ja.catkeys b/data/catalogs/apps/glteapot/ja.catkeys
index d0ec4c04a0..360c5a760c 100644
--- a/data/catalogs/apps/glteapot/ja.catkeys
+++ b/data/catalogs/apps/glteapot/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Haiku-GLTeapot 3688092856
+1 japanese x-vnd.Haiku-GLTeapot 1569683445
Upper center TeapotWindow 上中央
Lighting TeapotWindow Lighting
Off TeapotWindow オフ
@@ -9,6 +9,7 @@ Blue TeapotWindow 青
Gouraud shading TeapotWindow グローシェーディング
Quit TeapotWindow 終了
Filled polygons TeapotWindow ポリゴンを塗りつぶす
+Settings TeapotWindow 設定
Fog TeapotWindow フォグ
Backface culling TeapotWindow バックフェースカリング
Z-buffered TeapotWindow Z バッファーを使用
diff --git a/data/catalogs/apps/glteapot/ru.catkeys b/data/catalogs/apps/glteapot/ru.catkeys
index b57ea21d91..036eae9169 100644
--- a/data/catalogs/apps/glteapot/ru.catkeys
+++ b/data/catalogs/apps/glteapot/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Haiku-GLTeapot 504494930
+1 russian x-vnd.Haiku-GLTeapot 2681052815
Upper center TeapotWindow Сверху на центр
Lighting TeapotWindow Освещение
Off TeapotWindow Выключить
@@ -9,6 +9,7 @@ Blue TeapotWindow Голубой
Gouraud shading TeapotWindow Метод тонирования Гуро
Quit TeapotWindow Выход
Filled polygons TeapotWindow Заполненные многоугольники
+Settings TeapotWindow Настройки
Fog TeapotWindow Туман
Z-buffered TeapotWindow Z-буферизация
File TeapotWindow Файл
diff --git a/data/catalogs/apps/icon-o-matic/be.catkeys b/data/catalogs/apps/icon-o-matic/be.catkeys
index 1e8cdbf56b..bb7d438d1e 100644
--- a/data/catalogs/apps/icon-o-matic/be.catkeys
+++ b/data/catalogs/apps/icon-o-matic/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.haiku-icon_o_matic 3088916408
+1 belarusian x-vnd.haiku-icon_o_matic 2079362081
Select All Icon-O-Matic-PathManipulator Выбраць Усё
Add Style Icon-O-Matic-AddStylesCmd Дадаць Стыль
Color (#%02x%02x%02x) Style name after dropping a color Колер (#%02x%02x%02x)
@@ -65,6 +65,7 @@ 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 Скінуць Трансфармацыі
+Settings Icon-O-Matic-Menus Наладкі
All Icon-O-Matic-Properties Усё
Multi Paste Properties Icon-O-Matic-Properties Уставіць некалькі уласцівасцяў
Undo Icon-O-Matic-Main Вярнуць
diff --git a/data/catalogs/apps/icon-o-matic/de.catkeys b/data/catalogs/apps/icon-o-matic/de.catkeys
index b0d115c8c2..c568f7de73 100644
--- a/data/catalogs/apps/icon-o-matic/de.catkeys
+++ b/data/catalogs/apps/icon-o-matic/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.haiku-icon_o_matic 3088916408
+1 german x-vnd.haiku-icon_o_matic 2079362081
Select All Icon-O-Matic-PathManipulator Alles auswählen
Add Style Icon-O-Matic-AddStylesCmd Stil hinzufügen
Color (#%02x%02x%02x) Style name after dropping a color Farbe (#%02x%02x%02x)
@@ -65,6 +65,7 @@ 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
+Settings Icon-O-Matic-Menus Einstellungen
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:
diff --git a/data/catalogs/apps/icon-o-matic/fr.catkeys b/data/catalogs/apps/icon-o-matic/fr.catkeys
index 0b1be64d56..74f149bbbe 100644
--- a/data/catalogs/apps/icon-o-matic/fr.catkeys
+++ b/data/catalogs/apps/icon-o-matic/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.haiku-icon_o_matic 2157814173
+1 french x-vnd.haiku-icon_o_matic 2934880409
Select All Icon-O-Matic-PathManipulator Sélectionner tout
Add Style Icon-O-Matic-AddStylesCmd Ajouter un style
Color (#%02x%02x%02x) Style name after dropping a color Couleur (#%02x%02x%02x)
@@ -6,26 +6,33 @@ Add Icon-O-Matic-StylesList Ajouter
Move Shape Icon-O-Matic-MoveShapesCommand Déplacer la forme
Opening the document failed! Icon-O-Matic-Main L'ouverture du document a échoué !
Reset transformation Icon-O-Matic-ShapesList Annuler la transformation
+Move Paths Icon-O-Matic-MovePathsCmd Déplacer les chemins
None Icon-O-Matic-Properties Aucun
New Icon-O-Matic-Menu-File Nouveau
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 peut ne pas avoir interprété toutes les données du fichier SVG lors de son importation. En sauvegardant par-dessus le fichier original, ces informations seront perdues.
Paste Properties Icon-O-Matic-Properties Coller les propriétés
+Stroke Transformation Barré
Save Icon Dialog title Enregistrer icône
Closed Icon-O-Matic-PropertyNames Fermé
Remove Path Icon-O-Matic-RemovePathsCmd Enlever le chemin
+Add shape with path Icon-O-Matic-Menu-Shape Ajouter une forme avec un chemin
Select Icon-O-Matic-Properties Sélectionner
Height Icon-O-Matic-PropertyNames Hauteur
+Remove Transformers Icon-O-Matic-RemoveTransformersCmd Enlever les Transformations
Width Icon-O-Matic-PropertyNames Largeur
Transformation Icon-O-Matic-TransformationBoxStates Transformation
Duplicate Icon-O-Matic-ShapesList Dupliquer
Icon-O-Matic-PropertyNames
Linear Icon-O-Matic-StyleTypes Linéaire
+Assign Path Icon-O-Matic-AddPathsCmd Assigner un chemin
Move Icon-O-Matic-TransformationBoxStates Déplacer
+Flip Control Points Icon-O-Matic-FlipPointsCmd Retourner les points de contrôle
warning Icon-O-Matic-SVGExport alerte
Copy Icon-O-Matic-Properties Copier
OK Icon-O-Matic-ColorPicker OK
Remove Control Point Icon-O-Matic-RemovePointsCmd Enlever le point de contrôle
Add circle Icon-O-Matic-PathsList Ajouter un cercle
+Shorten Icon-O-Matic-PropertyNames Raccourcir
bad news Title of error alert mauvaises nouvelles
Remove Paths Icon-O-Matic-RemovePathsCmd Enlever les chemins
Add Control Point Icon-O-Matic-AddPointCmd Ajouter un point de contrôle
@@ -44,11 +51,15 @@ Cancel Icon-O-Matic-SVGExport Annuler
Add shape with style Icon-O-Matic-Menu-Shape Ajouter une forme avec un style
Remove Shape Icon-O-Matic-RemoveShapesCmd Enlever la forme
HVIF Source Code Icon-O-Matic-SavePanel Code source HVIF
+Reset Transformations Icon-O-Matic-ResetTransformationCmd Réinitialiser les Transformations
+Settings Icon-O-Matic-Menus Réglages
All Icon-O-Matic-Properties Tout
Undo Icon-O-Matic-Main Annuler
Add Shape Icon-O-Matic-AddShapesCmd Ajouter une forme
Contour Transformation Contour
+ Icon-O-Matic-Menu-Edit
Perspective Transformation Perspective
+Move Transformer Icon-O-Matic-MoveTransformersCmd Déplacer la Transformation
Opacity Icon-O-Matic-PropertyNames Opacité
Gradient type Icon-O-Matic-StyleTypes Type de dégradé
Icon-O-Matic System name Icon-O-Matic
@@ -56,6 +67,7 @@ Cancel Icon-O-Matic-Menu-Settings Annuler
Modify Control Point Icon-O-Matic-ChangePointCmd Modifier le point de contrôle
Saving your document failed! Icon-O-Matic-Exporter L'enregistrement du document a échoué !
Split Icon-O-Matic-PathManipulator Diviser
+Nudge Control Points Icon-O-Matic-NudgePointsCommand Orner les points de contrôle
Remove Icon-O-Matic-StylesList Enlever
META:ICON Attribute Icon-O-Matic-SavePanel Attribut META:ICON
Rotate Icon-O-Matic-TransformationBoxStates Pivoter
@@ -101,11 +113,13 @@ Swatches Icon-O-Matic-Menus Nuancier
Icon-O-Matic-StyleTypes
Rotation Icon-O-Matic-PropertyNames Rotation
Add Icon-O-Matic-PathsList Ajouter
+Add Shapes Icon-O-Matic-AddShapesCmd Ajouter des Formes
Move Style Icon-O-Matic-MoveStylesCmd Déplacer le style
Snap to grid Icon-O-Matic-Menu-Settings Aligner sur la grille
Remove Icon-O-Matic-ShapesList Enlever
Yes Icon-O-Matic-StyledTextImport Oui
Transformation Icon-O-Matic-TransformersList Transformation
+Save image Icon-O-Matic-SavePanel Enregistrer l'image
Add Styles Icon-O-Matic-AddStylesCmd Ajouter des styles
Remove Control Points Icon-O-Matic-RemovePointsCmd Enlever les points de contrôle
Format Icon-O-Matic-SavePanel Format
@@ -114,6 +128,7 @@ Duplicate Icon-O-Matic-StylesList Dupliquer
too big Icon-O-Matic-StyledTextImport trop grand
Color Icon-O-Matic-PropertyNames Couleur
Insert Control Point Icon-O-Matic-InsertPointCmd Insérer un point de contrôle
+Flip Control Point Icon-O-Matic-FlipPointsCmd Retourner le Point de Contrôle
Redo Icon-O-Matic-Main Rétablir
OK Icon-O-Matic-SVGImport OK
Reset Transformation Icon-O-Matic-ResetTransformationCmd Réinitialiser la transformation
diff --git a/data/catalogs/apps/icon-o-matic/ru.catkeys b/data/catalogs/apps/icon-o-matic/ru.catkeys
index c78bdd0026..5fae5af33f 100644
--- a/data/catalogs/apps/icon-o-matic/ru.catkeys
+++ b/data/catalogs/apps/icon-o-matic/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.haiku-icon_o_matic 3088916408
+1 russian x-vnd.haiku-icon_o_matic 2079362081
Select All Icon-O-Matic-PathManipulator Выделить всё
Add Style Icon-O-Matic-AddStylesCmd Добавить стиль
Color (#%02x%02x%02x) Style name after dropping a color Цвет (#%02x%02x%02x)
@@ -65,6 +65,7 @@ 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 Сбросить изменения
+Settings Icon-O-Matic-Menus Настройки
All Icon-O-Matic-Properties Все
Multi Paste Properties Icon-O-Matic-Properties Вставить все свойства
Undo Icon-O-Matic-Main Отменить
diff --git a/data/catalogs/apps/login/fr.catkeys b/data/catalogs/apps/login/fr.catkeys
new file mode 100644
index 0000000000..51dbbfd319
--- /dev/null
+++ b/data/catalogs/apps/login/fr.catkeys
@@ -0,0 +1,17 @@
+1 french x-vnd.Haiku-Login 3428662131
+Error: %1 Login App Erreur : %1
+Hide password Login View Camoufler le mot de passe
+Desktop Desktop Window Bureau
+Invalid login! Login View Échec de l'identification !
+--edit\tLaunch in shelf editting mode to allow customizing the desktop.\n Login App --edit\tLancer en mode édition de présentoire pour permettre la personnalisation du bureau.\n
+OK Login View OK
+error %s\n Desktop Window A return message from fDesktopShelf->Save(). It can be \"B_OK\" erreur %s\n
+Login: Login View Identifiant :
+Error Login App Erreur
+Unimplemented Login App Non implémenté
+Welcome to Haiku Login Window Bienvenue dans Haiku
+Reboot Login View Redémarrer
+Halt Login View Arrêter
+Password: Login View Mot de passe :
+OK Login App OK
+--nonmodal\tDo not make the window modal\n Login App --nonmodal\tLa fenêtre n'est pas rendue modale\n
diff --git a/data/catalogs/apps/magnify/fr.catkeys b/data/catalogs/apps/magnify/fr.catkeys
index 16bef6518c..551fa0203a 100644
--- a/data/catalogs/apps/magnify/fr.catkeys
+++ b/data/catalogs/apps/magnify/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-Magnify 3515889001
+1 french x-vnd.Haiku-Magnify 283320408
no clip msg\n In console, when clipboard is empty after clicking Copy image aucun clip\n
Make square Magnify-Main Rendre carré
Copy image Magnify-Main Copier l'image
@@ -6,6 +6,7 @@ Magnify help Magnify-Help Aide de la Loupe
usage: magnify [size] (magnify size * size pixels)\n Console utilisation : magnify [taille] (taille d'agrandissement * taille des pixels)\n
Stick coordinates Magnify-Main Mémoriser les coordonnées
Info:\n hide/show info - hides/shows all these new features\n note: when showing, a red square will appear which signifies\n which pixel's rgb values will be displayed\n add/remove crosshairs - 2 crosshairs can be added (or removed)\n to aid in the alignment and placement of objects.\n The crosshairs are represented by blue squares and blue lines.\n hide/show grid - hides/shows the grid that separates each pixel\n Magnify-Help Informations :\n cacher/afficher les informations - cache ou affiche toutes les nouvelles fonctionnalités\n note : Lorsqu'un carré rouge apparait\n Il indique sur quel pixel la valeur de couleur RVB est mesurées\n Ajouter/Enlever un viseur - 2 viseurs peuvent être ajoutés (ou retirés...)\n pour aider à aligner et placer des objets\n les viseurs sont représentés par des carrés bleus et des lignes bleus\n montrer/cacher la grille - montre ou cache la grille séparant chaque pixel\n
+ freeze - freezes/unfreezes magnification of whatever the\n cursor is currently over\n Magnify-Help freeze - gèle/dégèle le grossissement quel que soit l'endroit\n où se trouve le curseur\n
Hide/Show grid Magnify-Main Cacher/afficher la grille
magnify: size must be a multiple of 4\n Console Loupe : la taille doit être un multiple de 4\n
General:\n 32 x 32 - the top left numbers are the number of visible\n pixels (width x height)\n 8 pixels/pixel - represents the number of pixels that are\n used to magnify a pixel\n R:152 G:52 B:10 - the RGB values for the pixel under\n the red square\n Magnify-Help Général :\n 32⨯32 - les nombres dans le coin supérieur gauche représentent\n le nombre de pixels affichés (largeur ⨯ hauteur).\n 8 pixels/pixel - représente le facteur de grossissement des pixels.\n R:152 V:52 B:10 - les valeurs RVB du pixel sous le carré rouge.\n
diff --git a/data/catalogs/apps/mail/be.catkeys b/data/catalogs/apps/mail/be.catkeys
index 26c9f4c85d..675c9b3885 100644
--- a/data/catalogs/apps/mail/be.catkeys
+++ b/data/catalogs/apps/mail/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Be-MAIL 849531913
+1 belarusian x-vnd.Be-MAIL 3337401776
View Mail Агляд
%d - Date Mail %d - Дата
Attach attributes: Mail Атрыбуты ўкладання:
@@ -27,6 +27,7 @@ Expert Mail Поўны
Reply account: Mail Акаунт для адказаў:
Discard Mail Адхіліць
Message Mail Паведамленне
+Settings… Mail Наладкі…
Reply to sender Mail Адказаць адпраўніку
There is no installed handler for URL links. Mail Апрацоўшчык URL спасылак не ўсталяваны.
Signature Mail Подпіс
diff --git a/data/catalogs/apps/mail/de.catkeys b/data/catalogs/apps/mail/de.catkeys
index 85efba209c..228ad08c7a 100644
--- a/data/catalogs/apps/mail/de.catkeys
+++ b/data/catalogs/apps/mail/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Be-MAIL 849531913
+1 german x-vnd.Be-MAIL 3337401776
View Mail Ansicht
%d - Date Mail %d - Datum
Attach attributes: Mail Attribute von Anhängen:
@@ -27,6 +27,7 @@ Expert Mail Experte
Reply account: Mail Konto zum Beantworten:
Discard Mail Verwerfen
Message Mail Nachricht
+Settings… Mail Einstellungen…
Reply to sender Mail Antwort an Absender
There is no installed handler for URL links. Mail URL-Verweisen ist keine Anwendung zugeordnet.
Signature Mail Signatur
diff --git a/data/catalogs/apps/mail/fr.catkeys b/data/catalogs/apps/mail/fr.catkeys
index 688c05ee63..2e07fc2b97 100644
--- a/data/catalogs/apps/mail/fr.catkeys
+++ b/data/catalogs/apps/mail/fr.catkeys
@@ -1,10 +1,11 @@
-1 french x-vnd.Be-MAIL 4235031197
+1 french x-vnd.Be-MAIL 3337401776
View Mail Vue
%d - Date Mail %d - Date
Attach attributes: Mail Attributs du fichier joint :
Inconsistency occurred in the undo/redo buffer. Mail Une incohérence est survenue dans le tampon d'annulation.
An error occurred trying to save the attachment. Mail Une erreur s'est produite en essayant de sauvegarder le fichier joint.
Copy to new Mail Copier vers nouveau
+Leave as 'New' Mail Do not translate New - this is non-localizable e-mail status Laisser en « nouveau »
Edit Mail Modifier
Print Mail Imprimer
Mail
@@ -26,6 +27,7 @@ Expert Mail Expert
Reply account: Mail Compte de réponse :
Discard Mail Ignorer
Message Mail Message
+Settings… Mail Réglages…
Reply to sender Mail Répondre à l'expéditeur
There is no installed handler for URL links. Mail Il n'y a pas d'application d'ouvrir les liens URL.
Signature Mail Signature
@@ -62,12 +64,14 @@ Warn unencodable: Mail Avertir si non encodable :
Quit Mail Quitter
%n - Full name Mail %n - Nom complet
Read Mail Lu
+UTF-8 Mail This string is used as a key to set default message compose encoding. It must be correct IANA name from http://cgit.haiku-os.org/haiku/tree/src/kits/textencoding/character_sets.cpp Translate it only if you want to change default message compose encoding for your locale. If you don't know what is it and why it may needs changing, just leave \"UTF-8\". UTF-8
Trash Mail Corbeille
Default account: Mail Compte par défaut :
Size: Mail Taille :
Account from mail Mail Compte de courrier
Edit signatures… Mail Modifier les signatures…
New Mail Nouveau
+Attachments: Mail Pièces jointes :
On Mail Marche
Set to %s Mail Changer en %s
Forward Mail Transférer
@@ -76,6 +80,7 @@ E-mail draft could not be saved! Mail Le brouillon n'a pas pu être sauvegardé
To: Mail À :
Only files can be added as attachments. Mail Seuls des fichiers peuvent être joints à un message.
Previous message Mail Message précédent
+Attachments: Mail Pièces jointes :
Title: Mail Titre :
Find… Mail Chercher…
Accounts… Mail Comptes…
@@ -98,6 +103,7 @@ Show raw message Mail Montrer le message brut
\\n - Newline Mail \\n - Nouvelle ligne
Start now Mail Démarrer maintenant
Close Mail Fermer
+No matches Mail Pas de correspondances
The mail_daemon is not running. The message is queued and will be sent when the mail_daemon is started. Mail mail_daemon n'est pas démarré. Ce message a été placé en file d'attente et sera envoyé quand mail_daemon sera démarré.
Really delete this signature? This cannot be undone. Mail Voulez-vous vraiment effacer cette signature ? Ça ne pourra pas être annulé.
Open Mail Ouvrir
diff --git a/data/catalogs/apps/mail/ja.catkeys b/data/catalogs/apps/mail/ja.catkeys
index 31bf56e02e..5bf9463fd5 100644
--- a/data/catalogs/apps/mail/ja.catkeys
+++ b/data/catalogs/apps/mail/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Be-MAIL 849531913
+1 japanese x-vnd.Be-MAIL 3337401776
View Mail 表示
%d - Date Mail %d - 日付
Attach attributes: Mail 属性の添付:
@@ -27,6 +27,7 @@ Expert Mail 上級者
Reply account: Mail 返信アカウント:
Discard Mail 破棄
Message Mail メッセージ
+Settings… Mail 設定…
Reply to sender Mail 差出人に返信
There is no installed handler for URL links. Mail URL リンク用ハンドラがインストールされていません。
Signature Mail 署名
diff --git a/data/catalogs/apps/mail/ru.catkeys b/data/catalogs/apps/mail/ru.catkeys
index 061afe85ef..f7cfc6f742 100644
--- a/data/catalogs/apps/mail/ru.catkeys
+++ b/data/catalogs/apps/mail/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Be-MAIL 849531913
+1 russian x-vnd.Be-MAIL 3337401776
View Mail Вид
%d - Date Mail %d - Дата
Attach attributes: Mail Прикрепление атрибутов:
@@ -27,6 +27,7 @@ Expert Mail Эксперт
Reply account: Mail Ответить, используя акканут:
Discard Mail Сбросить
Message Mail Сообщение
+Settings… Mail Настройки…
Reply to sender Mail Ответить отправителю
There is no installed handler for URL links. Mail Не выбрано приложение для открытия ссылок.
Signature Mail Подпись
diff --git a/data/catalogs/apps/mediaplayer/fr.catkeys b/data/catalogs/apps/mediaplayer/fr.catkeys
index 06bcad6d2e..e5c9bcf0c1 100644
--- a/data/catalogs/apps/mediaplayer/fr.catkeys
+++ b/data/catalogs/apps/mediaplayer/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-MediaPlayer 4127722853
+1 french x-vnd.Haiku-MediaPlayer 2969013755
raw audio MediaPlayer-InfoWin audio brut
Location MediaPlayer-InfoWin Emplacement
1.85 : 1 (American) MediaPlayer-Main 1.85 : 1 (Panoramique américain)
@@ -72,6 +72,7 @@ Stop playing. MediaPlayer-Main Arrêter la lecture.
The file '%filename' could not be opened.\n\n MediaPlayer-Main Impossible d'ouvrir le fichier « %filename ».\n\n
Error: MediaPlayer-RemovePLItemsCmd Erreur :
Audio MediaPlayer-InfoWin Audio
+Move into trash error MediaPlayer-RemovePLItemsCmd Erreur en déplaçant dans la corbeille
Internal error (malformed message). Saving the playlist failed. MediaPlayer-PlaylistWindow Erreur interne (message incorrect). La liste de lecture n'a pas pu être sauvegardée.
Skip to the previous track. MediaPlayer-Main Passer à la piste précédente.
%app% encountered an internal error. The file could not be opened. MediaPlayer-Main %app% a rencontré une erreur interne. Le fichier n'a pas pu être ouvert.
diff --git a/data/catalogs/apps/webpositive/fr.catkeys b/data/catalogs/apps/webpositive/fr.catkeys
index 9bce8756f4..4450442117 100644
--- a/data/catalogs/apps/webpositive/fr.catkeys
+++ b/data/catalogs/apps/webpositive/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-WebPositive 2104753528
+1 french x-vnd.Haiku-WebPositive 732657731
Show home button Settings Window Afficher le bouton de la page d'accueil
Username: Authentication Panel Utilisateur :
Copy URL to clipboard Download Window Copier l'URL dans le presse-papiers
@@ -6,6 +6,7 @@ Cancel Settings Window Annuler
Close window WebPositive Window Fermer la fenêtre
Quit WebPositive Quitter
The download could not be opened. Download Window Impossible d'ouvrir l'objet téléchargé.
+The downloads folder could not be opened.\n\nError: %error Download Window Don't translate variable %error Le dossier de téléchargement n'a pas pu être ouvert.\n\nErreur : %error
Open location WebPositive Window Ouvrir l'emplacement
Clear history WebPositive Window Nettoyer l'historique
WebPositive System name WebPositive
@@ -54,10 +55,13 @@ Revert Settings Window Restaurer
Fixed font: Settings Window Police à chasse fixe :
Cut WebPositive Window Couper
Bookmark this page WebPositive Window Poser un signet sur cette page
+Open downloads folder Download Window Ouvrir le dossier des téléchargements
+Number of days to keep links in History menu: Settings Window Nombre de jours de conservation de l'historique :
Hide Download Window Cacher
Reset size WebPositive Window Réinitialiser la taille
Find: WebPositive Window Rechercher :
Increase size WebPositive Window Augmenter la taille
+There was an error retrieving the bookmark folder.\n\nError: %error WebPositive Window Don't translate the variable %error Une erreur est survenue en récupérant le dossier des signets.\n\nErreur : %error
Over 1 day left Download Window Plus d'un jour restant
Downloads WebPositive Window Téléchargements
Requesting %url WebPositive Window Requête de %url
@@ -70,6 +74,7 @@ Finish: Download Window Finishing time Fin :
Fonts Settings Window Polices
Close WebPositive Window Fermer
OK Download Window OK
+Page source error WebPositive Window Erreur dans la page source
Open blank page Settings Window Ouvrir une page blanche
New tabs: Settings Window Nouvel onglet :
Cancel WebPositive Window Annuler
@@ -111,8 +116,12 @@ Style: Font Selection view Style :
General Settings Window Général
View WebPositive Window Affichage
Previous WebPositive Window Précédent
+There was an error creating the bookmark file.\n\nError: %error WebPositive Window Don't translate variable %error Une erreur est survenue en créant le fichier de signet.\n\nErreur : %error
Bookmark error WebPositive Window Erreur de signet
+Do you really want to clear the browsing history? WebPositive Window Voulez-vous vraiment effacer l'historique de navigation ?
Copy WebPositive Window Copier
+Open bookmarks confirmation WebPositive Window Confirmation de l'ouverture des signets
+Clone current page Settings Window Cloner la page actuelle
OK Authentication Panel OK
Copy URL Bar Copier
OK WebPositive Window OK
diff --git a/data/catalogs/apps/workspaces/fr.catkeys b/data/catalogs/apps/workspaces/fr.catkeys
index 984d4ff80c..d3b8ff84f2 100644
--- a/data/catalogs/apps/workspaces/fr.catkeys
+++ b/data/catalogs/apps/workspaces/fr.catkeys
@@ -1,12 +1,15 @@
-1 french x-vnd.Be-WORK 932379173
+1 french x-vnd.Be-WORK 2548258861
Invalid argument: %s\n Workspaces Argument invalide : %s\n
Quit Workspaces Quitter
Workspaces System name Bureaux
Change workspace count… Workspaces Changer le nombre de bureaux virtuels…
+Remove replicant Workspaces Retirer les réplicants
About Workspaces… Workspaces À propos de Bureaux…
Workspaces\nwritten by %1, and %2.\n\nCopyright %3, Haiku.\n\nSend windows behind using the Option key. Move windows to front using the Control key.\n Workspaces Bureaux\nécrit par %1 et %2.\n\nCopyright %3, Haiku.\n\nEnvoyez les fenêtre à l'arrière-plan avec la touche Option. Envoyez les fenêtres au premier plan avec la touche Contrôle.\n
Show window border Workspaces Montrer la bordure de fenêtre
Auto-raise Workspaces Auto-montée
OK Workspaces OK
Always on top Workspaces Toujours au dessus
+Live in the Deskbar Workspaces Loger dans la Deskbar
Show window tab Workspaces Afficher l'onglet de la fenêtre
+Usage: %s [options] [workspace]\nwhere \"options\" are:\n --notitle\t\ttitle bar removed, border and resize kept\n --noborder\t\ttitle, border, and resize removed\n --avoidfocus\t\tprevents the window from being the target of keyboard events\n --alwaysontop\t\tkeeps window on top\n --notmovable\t\twindow can't be moved around\n --autoraise\t\tauto-raise the workspace window when it's at the screen edge\n --help\t\tdisplay this help and exit\nand \"workspace\" is the number of the Workspace to which to switch (0-31)\n Workspaces Utilisation : %s [options] [bureaux]\noù les \"options\" peuvent être :\n --notitle\t\tla barre de titre est retirée, les bordures et le redimensionnement sont conservés\n --noborder\t\tla barre de titre, les bordures et le redimensionnement sont retirés\n --avoidfocus\t\tempêche que la fenêtre soit la cible des événements claviers\n --alwaysontop\t\tgarde la fenêtre au dessus\n --notmovable\t\tla fenêtre ne peut pas être déplacée\n --autoraise\t\tmonte la fenêtre des bureaux quand elle est au coin de l'écran\n --help\t\taffiche cette aide et sort\net \"bureaux\" est le nombre de bureaux virtuels parmi lesquels basculer (0-31)\n
diff --git a/data/catalogs/kits/tracker/be.catkeys b/data/catalogs/kits/tracker/be.catkeys
index f9d3d30996..cfaffa87a9 100644
--- a/data/catalogs/kits/tracker/be.catkeys
+++ b/data/catalogs/kits/tracker/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Haiku-libtracker 351214779
+1 belarusian x-vnd.Haiku-libtracker 2606149823
common B_COMMON_DIRECTORY агульны
OK WidgetAttributeText ОК
Icon view VolumeWindow Від іконак
@@ -164,6 +164,7 @@ no supporting apps OpenWithWindow няма падыходзячых прагр
That name is already taken. Please type another one. InfoWindow Імя ўжо занятае. Калі ласка, выберыце іншае.
Sorry, you can't create links in the Trash. PoseView Прабачце, вы не можаце свараце спасылкі ў Сметніцы.
An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Элемент \"%name\" ужо ёсць у каталозе, і можа мясціць\nэлементы з такімі ж імёнамі. Жадаеце замяніць іх файламі з каталога, які вы %verb?
+Tracker preferences… ContainerWindow Наладкі Трэкера…
Link \"%name\" to: InfoWindow File dialog title for new sym link Спасылка \"%name\" на
Mount settings… VolumeWindow Наладкі мантавання...
Select… VolumeWindow Выбраць...
diff --git a/data/catalogs/kits/tracker/de.catkeys b/data/catalogs/kits/tracker/de.catkeys
index 1c02189e03..5ddf4fa7d0 100644
--- a/data/catalogs/kits/tracker/de.catkeys
+++ b/data/catalogs/kits/tracker/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Haiku-libtracker 351214779
+1 german x-vnd.Haiku-libtracker 2606149823
common B_COMMON_DIRECTORY Allgemein
OK WidgetAttributeText OK
Icon view VolumeWindow Icon-Ansicht
@@ -164,6 +164,7 @@ no supporting apps OpenWithWindow keine unterstützenden Anwendungen
That name is already taken. Please type another one. InfoWindow Dieser Name wird bereits verwendet. Bitte einen anderen wählen.
Sorry, you can't create links in the Trash. PoseView Im Papierkorb können leider keine Verknüpfungen erstellt werden.
An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Ein Objekt mit dem Namen \"%name\" existiert bereits in diesem Ordner und könnte\nObjekte mit gleichen Namen enthalten. Sollen sie mit denen des Ordners ersetzt werden, der %verb werden soll?
+Tracker preferences… ContainerWindow Tracker-Einstellungen…
Link \"%name\" to: InfoWindow File dialog title for new sym link Verknüpfe \"%name\" mit:
Mount settings… VolumeWindow Einhänge-Einstellungen…
Select… VolumeWindow Auswählen…
diff --git a/data/catalogs/kits/tracker/fr.catkeys b/data/catalogs/kits/tracker/fr.catkeys
index 8d913d29ed..84b138c71b 100644
--- a/data/catalogs/kits/tracker/fr.catkeys
+++ b/data/catalogs/kits/tracker/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-libtracker 351214779
+1 french x-vnd.Haiku-libtracker 2606149823
common B_COMMON_DIRECTORY commun
OK WidgetAttributeText OK
Icon view VolumeWindow Vue en icônes
@@ -164,6 +164,7 @@ no supporting apps OpenWithWindow aucune application apte
That name is already taken. Please type another one. InfoWindow Ce nom est déjà utilisé. Veuillez en saisir un autre.
Sorry, you can't create links in the Trash. PoseView Désolé, vous ne pouvez pas créer des liens dans la Corbeille.
An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Un élément nommé « %name » existe déjà dans ce dossier, et peut contenir\ndes éléments de même noms. Voulez vous les remplacer par ceux contenu dans le dossier que vous êtes en train de %verb ?
+Tracker preferences… ContainerWindow Préférences du Tracker…
Link \"%name\" to: InfoWindow File dialog title for new sym link Lier « %name » à :
Mount settings… VolumeWindow Réglages du montage…
Select… VolumeWindow Sélectionner…
diff --git a/data/catalogs/kits/tracker/ru.catkeys b/data/catalogs/kits/tracker/ru.catkeys
index 056f175420..eb50b9da58 100644
--- a/data/catalogs/kits/tracker/ru.catkeys
+++ b/data/catalogs/kits/tracker/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Haiku-libtracker 4198990419
+1 russian x-vnd.Haiku-libtracker 2158958167
common B_COMMON_DIRECTORY Общие
OK WidgetAttributeText ОК
Icon view VolumeWindow Большие значки
@@ -161,6 +161,7 @@ no supporting apps OpenWithWindow нет поддерживающих прог
That name is already taken. Please type another one. InfoWindow Это имя уже занято. Пожалуйста, введите другое.
Sorry, you can't create links in the Trash. PoseView Извините, но вы не можете создавать ссылки в корзине.
An item named \"%name\" already exists in this folder, and may contain\nitems with the same names. Would you like to replace them with those contained in the folder you are %verb? FSUtils Папка \"%name\" уже существует.\nЗаменить существующие файлы при совпадении имён?
+Tracker preferences… ContainerWindow Настройки Tracker…
Link \"%name\" to: InfoWindow File dialog title for new sym link Ссылка \"%name\" на:
Mount settings… VolumeWindow Настройка подключения дисков…
Select… VolumeWindow Выделить…
diff --git a/data/catalogs/preferences/mail/fr.catkeys b/data/catalogs/preferences/mail/fr.catkeys
index afd656d3a4..f9d175b53c 100644
--- a/data/catalogs/preferences/mail/fr.catkeys
+++ b/data/catalogs/preferences/mail/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Haiku-Mail 3624866527
+1 french x-vnd.Haiku-Mail 2592587573
Mail checking Config Window Levée du courrier
Settings Config Window Réglages
Never Config Window show status window Jamais
@@ -14,6 +14,7 @@ Account name: E-Mail Nom du compte :
Account name: Config Views Nom du compte :
Create new account AutoConfigWindow Créé un nouveau compte
OK Config Views OK
+The filter could not be moved. Deleting filter. Config Views Le filtre n'a pas pu être déplacé. Suppression du filtre.
Revert Config Window Rétablir
Login name: E-Mail Nom de connexion :
Incoming E-Mail En arrivée
diff --git a/data/catalogs/servers/mail/be.catkeys b/data/catalogs/servers/mail/be.catkeys
index 239b9acafa..1143825f1a 100644
--- a/data/catalogs/servers/mail/be.catkeys
+++ b/data/catalogs/servers/mail/be.catkeys
@@ -1,4 +1,4 @@
-1 belarusian x-vnd.Be-POST 2566871483
+1 belarusian x-vnd.Be-POST 1091177030
Fetching mail for %name Notifier Атрымліваю пошту для %name
Check for mails only DeskbarView Толькі праверыць пошту
Send pending mails DeskbarView Даслаць паведамленні што чакаюць
@@ -18,5 +18,6 @@ Check for mail now DeskbarView Праверыць пошту
No new messages DeskbarView Няма новых паведамленняў
%num new messages for %name\n MailDaemon %num новых паведамленняў для %name\n
Mail daemon status log MailDaemon Пратакол паштовай службы
+Settings… DeskbarView Наладкі…
No new messages. MailDaemon Няма новых паведамленняў.
Mail status Notifier Статус пошты
diff --git a/data/catalogs/servers/mail/de.catkeys b/data/catalogs/servers/mail/de.catkeys
index 3976128705..6811df87ee 100644
--- a/data/catalogs/servers/mail/de.catkeys
+++ b/data/catalogs/servers/mail/de.catkeys
@@ -1,4 +1,4 @@
-1 german x-vnd.Be-POST 2566871483
+1 german x-vnd.Be-POST 1091177030
Fetching mail for %name Notifier E-Mails für %name abrufen
Check for mails only DeskbarView E-Mails nur abrufen für
Send pending mails DeskbarView E-Mails senden
@@ -18,5 +18,6 @@ Check for mail now DeskbarView E-Mails jetzt abrufen
No new messages DeskbarView Keine neuen Nachrichten
%num new messages for %name\n MailDaemon %num neue Nachrichten für %name\n
Mail daemon status log MailDaemon E-Mail-Dienst Statusmeldungen
+Settings… DeskbarView Einstellungen…
No new messages. MailDaemon Keine neuen Nachrichten.
Mail status Notifier Email-Status
diff --git a/data/catalogs/servers/mail/fr.catkeys b/data/catalogs/servers/mail/fr.catkeys
index 92c2b7d964..e97b17b9ed 100644
--- a/data/catalogs/servers/mail/fr.catkeys
+++ b/data/catalogs/servers/mail/fr.catkeys
@@ -1,4 +1,4 @@
-1 french x-vnd.Be-POST 944207750
+1 french x-vnd.Be-POST 1091177030
Fetching mail for %name Notifier Récupération des mails de %name
Check for mails only DeskbarView Vérifier seulement les courriels
Send pending mails DeskbarView Envoyer les courriels en attente
@@ -17,4 +17,7 @@ No new messages MailDaemon Aucun nouveau message
Check for mail now DeskbarView Vérifier les courriels maintenant
No new messages DeskbarView Aucun nouveau message
%num new messages for %name\n MailDaemon %num nouveaux messages pour %name\n
+Mail daemon status log MailDaemon Journal d'état du démon de courrier
+Settings… DeskbarView Réglages…
No new messages. MailDaemon Aucun nouveau message.
+Mail status Notifier État du courrier
diff --git a/data/catalogs/servers/mail/ja.catkeys b/data/catalogs/servers/mail/ja.catkeys
index adc5ccc063..726f03e81a 100644
--- a/data/catalogs/servers/mail/ja.catkeys
+++ b/data/catalogs/servers/mail/ja.catkeys
@@ -1,4 +1,4 @@
-1 japanese x-vnd.Be-POST 2566871483
+1 japanese x-vnd.Be-POST 1091177030
Fetching mail for %name Notifier %name からのメールを受信中
Check for mails only DeskbarView メール受信のみ
Send pending mails DeskbarView 保留メールを送信
@@ -18,5 +18,6 @@ Check for mail now DeskbarView 今すぐメールをチェック
No new messages DeskbarView 新着メッセージはありません
%num new messages for %name\n MailDaemon %name より %num 通のメッセージが届きました\n
Mail daemon status log MailDaemon メールデーモン状況ログ
+Settings… DeskbarView 設定…
No new messages. MailDaemon 新着メッセージはありません。
Mail status Notifier メールの状況
diff --git a/data/catalogs/servers/mail/ru.catkeys b/data/catalogs/servers/mail/ru.catkeys
index 1c2c91179a..1b162e2c38 100644
--- a/data/catalogs/servers/mail/ru.catkeys
+++ b/data/catalogs/servers/mail/ru.catkeys
@@ -1,4 +1,4 @@
-1 russian x-vnd.Be-POST 734840027
+1 russian x-vnd.Be-POST 1091177030
Fetching mail for %name Notifier Получение почты для %name
Check for mails only DeskbarView Только проверить почту
Send pending mails DeskbarView Отправить почту в ожидании
@@ -6,6 +6,7 @@ New Messages MailDaemon Новые сообщения
DeskbarView <нет аккаунтов>
%num new messages DeskbarView %num новых сообщений
Mail status MailDaemon Статус почты
+Shutdown mail services DeskbarView Выключить почтовые службы
%num new message DeskbarView %num новое сообщение
Sending mail for %name Notifier Отправка почты для %name
%num new messages. MailDaemon %num новых сообщений.
@@ -16,5 +17,7 @@ No new messages MailDaemon Нет новых сообщений
Check for mail now DeskbarView Проверить почту
No new messages DeskbarView Нет новых сообщений
%num new messages for %name\n MailDaemon У вас есть %num новых сообщений для %name\n
+Mail daemon status log MailDaemon Журнал почтового демона
+Settings… DeskbarView Настройки…
No new messages. MailDaemon Нет новых сообщений.
Mail status Notifier Статус почты
From 5bde1d438b786a96ed20bc2bf01b4da2384792e6 Mon Sep 17 00:00:00 2001
From: Niels Sascha Reedijk
Date: Sat, 18 Aug 2012 10:28:04 +0200
Subject: [PATCH 13/30] Update userguide from i18n.haiku-os.org.
---
docs/userguide/de/applications/expander.html | 4 +-
.../de/applications/icon-o-matic.html | 6 +-
docs/userguide/de/applications/magnify.html | 2 +-
docs/userguide/de/applications/mail.html | 10 +-
docs/userguide/de/contents.html | 4 +-
docs/userguide/de/deskbar.html | 21 +-
.../de/desktop-applets/networkstatus.html | 2 +-
docs/userguide/de/filesystem-layout.html | 2 +-
docs/userguide/de/gui.html | 45 +-
.../de/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
docs/userguide/de/images/gui-images/gui.png | Bin 34317 -> 35250 bytes
.../prefs-images/appearance-antialiasing.png | Bin 26848 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 25720 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../images/teammonitor-images/teammonitor.png | Bin 26143 -> 19158 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/de/index.html | 10 +-
docs/userguide/de/keyboard-shortcuts.html | 3 +-
docs/userguide/de/preferences.html | 2 -
docs/userguide/de/preferences/appearance.html | 27 +-
docs/userguide/de/preferences/e-mail.html | 6 +-
docs/userguide/de/preferences/filetypes.html | 4 +-
docs/userguide/de/preferences/keyboard.html | 4 +-
docs/userguide/de/queries.html | 6 +-
docs/userguide/de/teammonitor.html | 4 +-
docs/userguide/de/tracker.html | 10 +-
docs/userguide/de/workshop-email.html | 6 +-
.../de/workshop-filetypes+attributes.html | 10 +-
docs/userguide/de/workshop-wlan.html | 146 +++++
docs/userguide/en/applications/expander.html | 4 +-
docs/userguide/en/deskbar.html | 7 +-
.../en/desktop-applets/networkstatus.html | 2 +-
docs/userguide/en/filesystem-layout.html | 2 +-
docs/userguide/en/gui.html | 7 +-
.../en/images/apps-images/expander.png | Bin 15554 -> 23815 bytes
.../en/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
docs/userguide/en/images/gui-images/gui.png | Bin 34504 -> 35748 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../images/teammonitor-images/teammonitor.png | Bin 17217 -> 17817 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/en/preferences.html | 2 -
docs/userguide/en/preferences/appearance.html | 27 +-
docs/userguide/en/preferences/filetypes.html | 4 +-
docs/userguide/en/preferences/keyboard.html | 4 +-
docs/userguide/en/teammonitor.html | 2 +-
docs/userguide/en/workshop-wlan.html | 144 +++++
docs/userguide/es/applications/expander.html | 7 +-
docs/userguide/es/contents.html | 4 +-
docs/userguide/es/deskbar.html | 15 +-
.../es/desktop-applets/networkstatus.html | 2 +-
docs/userguide/es/filesystem-layout.html | 2 +-
docs/userguide/es/gui.html | 7 +-
.../es/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/es/preferences.html | 2 -
docs/userguide/es/preferences/appearance.html | 28 +-
docs/userguide/es/preferences/filetypes.html | 4 +-
docs/userguide/es/preferences/keyboard.html | 4 +-
docs/userguide/es/teammonitor.html | 5 +-
docs/userguide/es/workshop-wlan.html | 145 +++++
docs/userguide/fi/applications.html | 172 +++---
.../fi/applications/activitymonitor.html | 10 +-
docs/userguide/fi/applications/bepdf.html | 15 +-
.../fi/applications/bootmanager.html | 48 +-
docs/userguide/fi/applications/cdplayer.html | 28 +-
.../fi/applications/charactermap.html | 28 +-
docs/userguide/fi/applications/cli-apps.html | 6 +-
docs/userguide/fi/applications/codycam.html | 27 +-
docs/userguide/fi/applications/deskcalc.html | 51 +-
docs/userguide/fi/applications/diskprobe.html | 14 +-
docs/userguide/fi/applications/diskusage.html | 6 +-
.../userguide/fi/applications/drivesetup.html | 10 +-
docs/userguide/fi/applications/expander.html | 36 +-
.../fi/applications/icon-o-matic.html | 279 +++++----
docs/userguide/fi/applications/installer.html | 50 +-
.../fi/applications/list-cli-apps.html | 566 +++++++++---------
docs/userguide/fi/applications/magnify.html | 63 +-
docs/userguide/fi/applications/mail.html | 100 ++--
.../fi/applications/mediaplayer.html | 38 +-
.../userguide/fi/applications/midiplayer.html | 16 +-
.../fi/applications/packageinstaller.html | 40 +-
docs/userguide/fi/applications/pe.html | 10 +-
docs/userguide/fi/applications/people.html | 20 +-
docs/userguide/fi/applications/poorman.html | 12 +-
.../userguide/fi/applications/screenshot.html | 18 +-
docs/userguide/fi/applications/showimage.html | 43 +-
.../fi/applications/soundrecorder.html | 15 +-
.../userguide/fi/applications/stylededit.html | 20 +-
docs/userguide/fi/applications/terminal.html | 32 +-
.../userguide/fi/applications/textsearch.html | 53 +-
docs/userguide/fi/applications/tv.html | 14 +-
docs/userguide/fi/applications/vision.html | 10 +-
.../fi/applications/webpositive.html | 52 +-
.../fi/applications/wonderbrush.html | 14 +-
docs/userguide/fi/attributes.html | 99 +--
docs/userguide/fi/bash-scripting.html | 57 +-
docs/userguide/fi/bootloader.html | 10 +-
docs/userguide/fi/contents.html | 175 +++---
docs/userguide/fi/deskbar.html | 104 ++--
docs/userguide/fi/desktop-applets.html | 43 +-
.../fi/desktop-applets/launchbox.html | 65 +-
.../fi/desktop-applets/networkstatus.html | 12 +-
.../fi/desktop-applets/powerstatus.html | 6 +-
.../fi/desktop-applets/processcontroller.html | 14 +-
.../fi/desktop-applets/workspaces.html | 6 +-
docs/userguide/fi/filesystem-layout.html | 97 ++-
docs/userguide/fi/filetypes.html | 77 +--
docs/userguide/fi/gui.html | 129 ++--
.../apps-images/expander-preferences.png | Bin 12089 -> 11693 bytes
.../fi/images/apps-images/installer.png | Bin 24016 -> 34365 bytes
.../fi/images/deskbar-images/configure.png | Bin 16660 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 18305 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17704 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/fi/index.html | 88 ++-
docs/userguide/fi/keyboard-shortcuts.html | 76 +--
docs/userguide/fi/preferences.html | 42 +-
docs/userguide/fi/preferences/appearance.html | 33 +-
.../userguide/fi/preferences/backgrounds.html | 10 +-
.../fi/preferences/datatranslations.html | 62 +-
docs/userguide/fi/preferences/deskbar.html | 19 +-
docs/userguide/fi/preferences/e-mail.html | 201 +++----
docs/userguide/fi/preferences/filetypes.html | 21 +-
docs/userguide/fi/preferences/fonts.html | 18 +-
docs/userguide/fi/preferences/keyboard.html | 25 +-
docs/userguide/fi/preferences/keymap.html | 65 +-
docs/userguide/fi/preferences/locale.html | 44 +-
docs/userguide/fi/preferences/media.html | 18 +-
docs/userguide/fi/preferences/mouse.html | 16 +-
docs/userguide/fi/preferences/network.html | 12 +-
docs/userguide/fi/preferences/printers.html | 10 +-
docs/userguide/fi/preferences/screen.html | 8 +-
.../userguide/fi/preferences/screensaver.html | 12 +-
docs/userguide/fi/preferences/sounds.html | 23 +-
docs/userguide/fi/preferences/time.html | 16 +-
docs/userguide/fi/preferences/touchpad.html | 8 +-
docs/userguide/fi/preferences/tracker.html | 17 +-
.../fi/preferences/virtualmemory.html | 8 +-
docs/userguide/fi/queries.html | 30 +-
docs/userguide/fi/teammonitor.html | 20 +-
docs/userguide/fi/tracker-add-ons.html | 24 +-
docs/userguide/fi/tracker.html | 52 +-
docs/userguide/fi/twitcher.html | 18 +-
docs/userguide/fi/workshop-email.html | 109 ++--
.../fi/workshop-filetypes+attributes.html | 62 +-
docs/userguide/fi/workshop-wlan.html | 147 +++++
docs/userguide/fi/workspaces.html | 32 +-
docs/userguide/fr/applications.html | 14 +-
docs/userguide/fr/applications/expander.html | 8 +-
.../userguide/fr/applications/textsearch.html | 2 +-
docs/userguide/fr/contents.html | 2 +-
docs/userguide/fr/deskbar.html | 6 +-
.../fr/desktop-applets/networkstatus.html | 6 +-
docs/userguide/fr/filesystem-layout.html | 2 +-
docs/userguide/fr/gui.html | 29 +-
.../fr/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 11276 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17388 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/fr/keyboard-shortcuts.html | 3 +-
docs/userguide/fr/preferences.html | 2 -
docs/userguide/fr/preferences/appearance.html | 27 +-
docs/userguide/fr/preferences/filetypes.html | 4 +-
docs/userguide/fr/preferences/fonts.html | 6 +-
docs/userguide/fr/preferences/keyboard.html | 4 +-
docs/userguide/fr/preferences/mouse.html | 11 +-
docs/userguide/fr/teammonitor.html | 4 +-
docs/userguide/fr/tracker.html | 30 +-
docs/userguide/fr/workshop-wlan.html | 146 +++++
docs/userguide/it/applications/expander.html | 7 +-
docs/userguide/it/contents.html | 4 +-
docs/userguide/it/deskbar.html | 16 +-
.../it/desktop-applets/networkstatus.html | 2 +-
docs/userguide/it/filesystem-layout.html | 3 +-
docs/userguide/it/gui.html | 7 +-
.../it/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/it/preferences.html | 2 -
docs/userguide/it/preferences/appearance.html | 27 +-
docs/userguide/it/preferences/filetypes.html | 4 +-
docs/userguide/it/preferences/keyboard.html | 4 +-
docs/userguide/it/teammonitor.html | 5 +-
docs/userguide/it/workshop-wlan.html | 145 +++++
docs/userguide/jp/applications.html | 14 +-
.../jp/applications/bootmanager.html | 6 +-
docs/userguide/jp/applications/cdplayer.html | 2 +-
.../jp/applications/charactermap.html | 2 +-
docs/userguide/jp/applications/cli-apps.html | 2 +-
docs/userguide/jp/applications/deskcalc.html | 2 +-
docs/userguide/jp/applications/diskprobe.html | 2 +-
docs/userguide/jp/applications/diskusage.html | 2 +-
.../userguide/jp/applications/drivesetup.html | 2 +-
docs/userguide/jp/applications/expander.html | 6 +-
.../jp/applications/icon-o-matic.html | 4 +-
docs/userguide/jp/applications/installer.html | 2 +-
.../jp/applications/list-cli-apps.html | 2 +-
docs/userguide/jp/applications/magnify.html | 2 +-
docs/userguide/jp/applications/mail.html | 2 +-
.../jp/applications/mediaplayer.html | 2 +-
.../userguide/jp/applications/midiplayer.html | 2 +-
.../jp/applications/packageinstaller.html | 2 +-
docs/userguide/jp/applications/people.html | 2 +-
docs/userguide/jp/applications/poorman.html | 2 +-
.../userguide/jp/applications/screenshot.html | 2 +-
docs/userguide/jp/applications/showimage.html | 2 +-
.../jp/applications/soundrecorder.html | 2 +-
.../userguide/jp/applications/stylededit.html | 2 +-
docs/userguide/jp/applications/terminal.html | 2 +-
.../userguide/jp/applications/textsearch.html | 4 +-
docs/userguide/jp/applications/tv.html | 2 +-
docs/userguide/jp/applications/vision.html | 2 +-
.../jp/applications/webpositive.html | 2 +-
.../jp/applications/wonderbrush.html | 4 +-
docs/userguide/jp/attributes.html | 6 +-
docs/userguide/jp/bash-scripting.html | 6 +-
docs/userguide/jp/bootloader.html | 6 +-
docs/userguide/jp/contents.html | 2 +-
docs/userguide/jp/deskbar.html | 20 +-
.../jp/desktop-applets/launchbox.html | 6 +-
.../jp/desktop-applets/networkstatus.html | 10 +-
.../jp/desktop-applets/powerstatus.html | 4 +-
.../jp/desktop-applets/processcontroller.html | 6 +-
.../jp/desktop-applets/workspaces.html | 16 +-
docs/userguide/jp/filesystem-layout.html | 8 +-
docs/userguide/jp/filetypes.html | 6 +-
docs/userguide/jp/gui.html | 11 +-
.../jp/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 20834 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/jp/index.html | 6 +-
docs/userguide/jp/keyboard-shortcuts.html | 6 +-
docs/userguide/jp/preferences.html | 12 +-
docs/userguide/jp/preferences/appearance.html | 33 +-
.../jp/preferences/datatranslations.html | 6 +-
docs/userguide/jp/preferences/e-mail.html | 2 +-
docs/userguide/jp/preferences/filetypes.html | 6 +-
docs/userguide/jp/preferences/keyboard.html | 4 +-
docs/userguide/jp/preferences/keymap.html | 6 +-
docs/userguide/jp/preferences/locale.html | 2 +-
docs/userguide/jp/preferences/media.html | 2 +-
docs/userguide/jp/preferences/mouse.html | 2 +-
docs/userguide/jp/preferences/network.html | 2 +-
docs/userguide/jp/preferences/printers.html | 2 +-
docs/userguide/jp/preferences/screen.html | 2 +-
.../userguide/jp/preferences/screensaver.html | 2 +-
docs/userguide/jp/preferences/sounds.html | 2 +-
docs/userguide/jp/preferences/time.html | 2 +-
docs/userguide/jp/preferences/touchpad.html | 2 +-
.../jp/preferences/virtualmemory.html | 2 +-
docs/userguide/jp/queries.html | 10 +-
docs/userguide/jp/teammonitor.html | 8 +-
docs/userguide/jp/tracker-add-ons.html | 10 +-
docs/userguide/jp/tracker.html | 6 +-
docs/userguide/jp/twitcher.html | 6 +-
docs/userguide/jp/workshop-email.html | 34 +-
.../jp/workshop-filetypes+attributes.html | 40 +-
docs/userguide/jp/workshop-wlan.html | 146 +++++
docs/userguide/jp/workspaces.html | 16 +-
.../pt_PT/applications/expander.html | 4 +-
docs/userguide/pt_PT/deskbar.html | 7 +-
.../pt_PT/desktop-applets/networkstatus.html | 2 +-
docs/userguide/pt_PT/filesystem-layout.html | 2 +-
docs/userguide/pt_PT/gui.html | 7 +-
.../pt_PT/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/pt_PT/preferences.html | 2 -
.../pt_PT/preferences/appearance.html | 27 +-
.../pt_PT/preferences/filetypes.html | 4 +-
.../userguide/pt_PT/preferences/keyboard.html | 4 +-
docs/userguide/pt_PT/teammonitor.html | 5 +-
docs/userguide/pt_PT/workshop-wlan.html | 145 +++++
docs/userguide/ru/applications/expander.html | 7 +-
docs/userguide/ru/contents.html | 4 +-
docs/userguide/ru/deskbar.html | 19 +-
.../ru/desktop-applets/networkstatus.html | 10 +-
docs/userguide/ru/filesystem-layout.html | 3 +-
docs/userguide/ru/gui.html | 8 +-
.../ru/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 8438 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 6809 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 17294 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17460 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/ru/preferences.html | 2 -
docs/userguide/ru/preferences/appearance.html | 28 +-
docs/userguide/ru/preferences/filetypes.html | 4 +-
docs/userguide/ru/preferences/keyboard.html | 4 +-
docs/userguide/ru/teammonitor.html | 5 +-
docs/userguide/ru/workshop-wlan.html | 145 +++++
docs/userguide/sk/applications/expander.html | 4 +-
.../sk/applications/icon-o-matic.html | 7 +-
.../sk/applications/list-cli-apps.html | 3 +-
.../userguide/sk/applications/screenshot.html | 1 -
docs/userguide/sk/applications/terminal.html | 3 +-
docs/userguide/sk/attributes.html | 1 -
docs/userguide/sk/contents.html | 17 +-
docs/userguide/sk/deskbar.html | 21 +-
.../sk/desktop-applets/networkstatus.html | 9 +-
docs/userguide/sk/filesystem-layout.html | 3 +-
docs/userguide/sk/gui.html | 41 +-
.../sk/images/deskbar-images/configure.png | Bin 18276 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 10215 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 20075 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/sk/keyboard-shortcuts.html | 7 +-
docs/userguide/sk/preferences.html | 2 -
docs/userguide/sk/preferences/appearance.html | 28 +-
docs/userguide/sk/preferences/filetypes.html | 4 +-
docs/userguide/sk/preferences/keyboard.html | 4 +-
docs/userguide/sk/queries.html | 7 +-
docs/userguide/sk/teammonitor.html | 5 +-
docs/userguide/sk/tracker-add-ons.html | 41 +-
docs/userguide/sk/workshop-wlan.html | 145 +++++
.../sv_SE/applications/expander.html | 6 +-
docs/userguide/sv_SE/contents.html | 4 +-
docs/userguide/sv_SE/deskbar.html | 20 +-
.../sv_SE/desktop-applets/networkstatus.html | 2 +-
docs/userguide/sv_SE/filesystem-layout.html | 2 +-
docs/userguide/sv_SE/gui.html | 7 +-
.../sv_SE/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 17225 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17107 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/sv_SE/preferences.html | 2 -
.../sv_SE/preferences/appearance.html | 28 +-
.../sv_SE/preferences/filetypes.html | 4 +-
.../userguide/sv_SE/preferences/keyboard.html | 4 +-
docs/userguide/sv_SE/teammonitor.html | 2 +-
docs/userguide/sv_SE/workshop-wlan.html | 145 +++++
docs/userguide/uk/applications/expander.html | 4 +-
docs/userguide/uk/deskbar.html | 20 +-
.../uk/desktop-applets/networkstatus.html | 2 +-
docs/userguide/uk/filesystem-layout.html | 2 +-
docs/userguide/uk/gui.html | 7 +-
.../uk/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/uk/preferences.html | 2 -
docs/userguide/uk/preferences/appearance.html | 28 +-
docs/userguide/uk/preferences/filetypes.html | 4 +-
docs/userguide/uk/preferences/keyboard.html | 4 +-
docs/userguide/uk/teammonitor.html | 2 +-
docs/userguide/uk/workshop-wlan.html | 145 +++++
.../zh_CN/applications/expander.html | 4 +-
docs/userguide/zh_CN/applications/mail.html | 41 +-
docs/userguide/zh_CN/contents.html | 25 +-
docs/userguide/zh_CN/deskbar.html | 17 +-
.../zh_CN/desktop-applets/networkstatus.html | 4 +-
docs/userguide/zh_CN/filesystem-layout.html | 2 +-
docs/userguide/zh_CN/gui.html | 40 +-
.../zh_CN/images/deskbar-images/configure.png | Bin 16247 -> 20248 bytes
.../achtung-system.png | Bin 6957 -> 7139 bytes
.../filesystem-layout-images/achtung-user.png | Bin 5999 -> 5140 bytes
.../prefs-images/appearance-antialiasing.png | Bin 16784 -> 24127 bytes
.../images/prefs-images/appearance-colors.png | Bin 17136 -> 27575 bytes
.../prefs-images/appearance-decorators.png | Bin 0 -> 12216 bytes
.../images/prefs-images/appearance-fonts.png | Bin 0 -> 28475 bytes
.../workshop-wlan-images/join-network.png | Bin 0 -> 19122 bytes
.../workshop-wlan-images/join-status.gif | Bin 0 -> 11512 bytes
docs/userguide/zh_CN/keyboard-shortcuts.html | 5 +-
docs/userguide/zh_CN/preferences.html | 2 -
.../zh_CN/preferences/appearance.html | 27 +-
.../zh_CN/preferences/filetypes.html | 4 +-
docs/userguide/zh_CN/preferences/fonts.html | 4 +-
.../userguide/zh_CN/preferences/keyboard.html | 4 +-
docs/userguide/zh_CN/teammonitor.html | 2 +-
docs/userguide/zh_CN/workshop-email.html | 59 +-
docs/userguide/zh_CN/workshop-wlan.html | 146 +++++
docs/welcome/de/bugreports.html | 5 +-
docs/welcome/en/bugreports.html | 5 +-
docs/welcome/es/bugreports.html | 5 +-
docs/welcome/fi/bugreports.html | 89 +--
docs/welcome/fr/bugreports.html | 5 +-
docs/welcome/it/bugreports.html | 5 +-
docs/welcome/jp/bugreports.html | 5 +-
docs/welcome/pt_PT/bugreports.html | 5 +-
docs/welcome/ru/bugreports.html | 5 +-
docs/welcome/sk/bugreports.html | 99 +--
docs/welcome/sv_SE/bugreports.html | 5 +-
docs/welcome/uk/bugreports.html | 5 +-
docs/welcome/welcome_de.html | 24 +-
docs/welcome/welcome_en.html | 26 +-
docs/welcome/welcome_es.html | 26 +-
docs/welcome/welcome_fi.html | 96 +--
docs/welcome/welcome_fr.html | 30 +-
docs/welcome/welcome_it.html | 27 +-
docs/welcome/welcome_jp.html | 37 +-
docs/welcome/welcome_pt_PT.html | 26 +-
docs/welcome/welcome_ru.html | 27 +-
docs/welcome/welcome_sk.html | 27 +-
docs/welcome/welcome_sv_SE.html | 27 +-
docs/welcome/welcome_uk.html | 27 +-
docs/welcome/welcome_zh_CN.html | 27 +-
docs/welcome/zh_CN/bugreports.html | 5 +-
460 files changed, 5370 insertions(+), 2957 deletions(-)
create mode 100644 docs/userguide/de/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/de/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/de/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/de/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/de/workshop-wlan.html
create mode 100644 docs/userguide/en/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/en/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/en/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/en/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/en/workshop-wlan.html
create mode 100644 docs/userguide/es/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/es/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/es/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/es/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/es/workshop-wlan.html
create mode 100644 docs/userguide/fi/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/fi/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/fi/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/fi/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/fi/workshop-wlan.html
create mode 100644 docs/userguide/fr/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/fr/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/fr/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/fr/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/fr/workshop-wlan.html
create mode 100644 docs/userguide/it/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/it/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/it/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/it/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/it/workshop-wlan.html
create mode 100644 docs/userguide/jp/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/jp/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/jp/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/jp/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/jp/workshop-wlan.html
create mode 100644 docs/userguide/pt_PT/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/pt_PT/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/pt_PT/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/pt_PT/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/pt_PT/workshop-wlan.html
create mode 100644 docs/userguide/ru/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/ru/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/ru/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/ru/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/ru/workshop-wlan.html
create mode 100644 docs/userguide/sk/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/sk/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/sk/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/sk/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/sk/workshop-wlan.html
create mode 100644 docs/userguide/sv_SE/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/sv_SE/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/sv_SE/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/sv_SE/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/sv_SE/workshop-wlan.html
create mode 100644 docs/userguide/uk/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/uk/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/uk/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/uk/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/uk/workshop-wlan.html
create mode 100644 docs/userguide/zh_CN/images/prefs-images/appearance-decorators.png
create mode 100644 docs/userguide/zh_CN/images/prefs-images/appearance-fonts.png
create mode 100644 docs/userguide/zh_CN/images/workshop-wlan-images/join-network.png
create mode 100644 docs/userguide/zh_CN/images/workshop-wlan-images/join-status.gif
create mode 100644 docs/userguide/zh_CN/workshop-wlan.html
diff --git a/docs/userguide/de/applications/expander.html b/docs/userguide/de/applications/expander.html
index 630962194a..4e302850ac 100644
--- a/docs/userguide/de/applications/expander.html
+++ b/docs/userguide/de/applications/expander.html
@@ -65,14 +65,14 @@
Ein Doppelklick auf ein Archiv öffnet den Entpacker:

-| Quelle | ALT S | öffnet einen Dialog zur Auswahl eines Archivs |
+| Quelle | ALT O | öffnet einen Dialog zur Auswahl eines Archivs |
| Ziel | ALT D | öffnet einen Dialog, um zu bestimmen wohin entpackt werden soll |
| Entpacken | ALT E | startet das Entpacken; kann mit ALT K abgebrochen werden |
Der Inhalt des Archivs lässt sich mit Inhalt anzeigen oder ALT L anzeigen und verbergen.
Entpacker kann lediglich ganze Archive entpacken.
Nur einzelne Dateien eines Archivs auspacken, beziehungsweise Dateien entfernen oder hinzufügen, ist nicht möglich.
-Über oder ALT P gelangt man zu den Einstellungen von Entpacker.
+
Über oder ALT S gelangt man zu den Einstellungen von Entpacker.
Die Optionen sind selbsterklärend:

diff --git a/docs/userguide/de/applications/icon-o-matic.html b/docs/userguide/de/applications/icon-o-matic.html
index 35059a5855..2acae19889 100644
--- a/docs/userguide/de/applications/icon-o-matic.html
+++ b/docs/userguide/de/applications/icon-o-matic.html
@@ -24,7 +24,7 @@
@@ -347,7 +347,7 @@ Natürlich kann der Marker verschoben werden, um den Farbverlauf anzupassen. Zus
diff --git a/docs/userguide/de/applications/magnify.html b/docs/userguide/de/applications/magnify.html
index 28acecc065..afee1fdc9b 100644
--- a/docs/userguide/de/applications/magnify.html
+++ b/docs/userguide/de/applications/magnify.html
@@ -71,7 +71,7 @@ Das jeweils aktivierte, durch ein X markierte der beiden kann mit OPT ← / → / ↑ / ↓ verschoben werden.
Das Auswahlmenü oben rechts enthält mehrere Einträge: