From 97b67cc635a49ca1cfe02f15a5d2dfcf05acdc4b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 3 May 2007 20:40:17 +0000 Subject: [PATCH] same thing as r6008 in trunk --- openbox/client_list_combined_menu.c | 3 +- openbox/client_list_menu.c | 7 ++- openbox/client_menu.c | 33 +++++++------- openbox/menu.h | 3 +- openbox/menuframe.c | 23 +++++----- po/ca.po | 70 ++++++++++++++--------------- po/de.po | 70 ++++++++++++++--------------- po/en@boldquot.po | 70 ++++++++++++++--------------- po/en@quot.po | 70 ++++++++++++++--------------- po/es.po | 70 ++++++++++++++--------------- po/fi.po | 70 ++++++++++++++--------------- po/fr.po | 70 ++++++++++++++--------------- po/hr.po | 70 ++++++++++++++--------------- po/ja.po | 70 ++++++++++++++--------------- po/no.po | 70 ++++++++++++++--------------- po/pl.po | 70 ++++++++++++++--------------- po/pt.po | 70 ++++++++++++++--------------- po/ru.po | 70 ++++++++++++++--------------- po/sk.po | 70 ++++++++++++++--------------- po/sv.po | 70 ++++++++++++++--------------- po/zh_TW.po | 70 ++++++++++++++--------------- 21 files changed, 599 insertions(+), 590 deletions(-) diff --git a/openbox/client_list_combined_menu.c b/openbox/client_list_combined_menu.c index 9dd56e0a..fcc95f69 100644 --- a/openbox/client_list_combined_menu.c +++ b/openbox/client_list_combined_menu.c @@ -33,7 +33,7 @@ ObMenu *combined_menu; -static void self_update(ObMenuFrame *frame, gpointer data) +static gboolean self_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; ObMenuEntry *e; @@ -104,6 +104,7 @@ static void self_update(ObMenuFrame *frame, gpointer data) e->data.normal.enabled = FALSE; } } + return TRUE; /* always show the menu */ } /* executes it using the client in the actions, since we set that diff --git a/openbox/client_list_menu.c b/openbox/client_list_menu.c index 86a70af4..12c16815 100644 --- a/openbox/client_list_menu.c +++ b/openbox/client_list_menu.c @@ -38,7 +38,7 @@ typedef struct guint desktop; } DesktopData; -static void desk_menu_update(ObMenuFrame *frame, gpointer data) +static gboolean desk_menu_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; DesktopData *d = data; @@ -105,6 +105,7 @@ static void desk_menu_update(ObMenuFrame *frame, gpointer data) if (d->desktop == screen_desktop) e->data.normal.enabled = FALSE; } + return TRUE; /* always show */ } /* executes it using the client in the actions, since we set that @@ -129,7 +130,7 @@ static void desk_menu_destroy(ObMenu *menu, gpointer data) desktop_menus = g_slist_remove(desktop_menus, menu); } -static void self_update(ObMenuFrame *frame, gpointer data) +static gboolean self_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; guint i; @@ -162,6 +163,8 @@ static void self_update(ObMenuFrame *frame, gpointer data) desktop_menus = g_slist_delete_link(desktop_menus, it); menu_entry_remove(menu_find_entry_id(menu, i)); } + + return TRUE; /* always show */ } static void client_dest(ObClient *client, gpointer data) diff --git a/openbox/client_menu.c b/openbox/client_menu.c index 4efef8a8..011e3ec1 100644 --- a/openbox/client_menu.c +++ b/openbox/client_menu.c @@ -51,21 +51,21 @@ enum { CLIENT_CLOSE }; -static void client_update(ObMenuFrame *frame, gpointer data) +static gboolean client_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; ObMenuEntry *e; GList *it; + if (frame->client == NULL || !client_normal(frame->client)) + return FALSE; /* don't show the menu */ + for (it = menu->entries; it; it = g_list_next(it)) { e = it->data; if (e->type == OB_MENU_ENTRY_TYPE_NORMAL) - e->data.normal.enabled = !!frame->client; + e->data.normal.enabled = TRUE; } - if (!frame->client) - return; - e = menu_find_entry_id(menu, CLIENT_ICONIFY); e->data.normal.enabled = frame->client->functions & OB_CLIENT_FUNC_ICONIFY; @@ -91,23 +91,24 @@ static void client_update(ObMenuFrame *frame, gpointer data) e = menu_find_entry_id(menu, CLIENT_DECORATE); e->data.normal.enabled = client_normal(frame->client); + return TRUE; /* show the menu */ } -static void layer_update(ObMenuFrame *frame, gpointer data) +static gboolean layer_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; ObMenuEntry *e; GList *it; + if (frame->client == NULL || !client_normal(frame->client)) + return FALSE; /* don't show the menu */ + for (it = menu->entries; it; it = g_list_next(it)) { e = it->data; if (e->type == OB_MENU_ENTRY_TYPE_NORMAL) - e->data.normal.enabled = !!frame->client; + e->data.normal.enabled = TRUE; } - if (!frame->client) - return; - e = menu_find_entry_id(menu, LAYER_TOP); e->data.normal.enabled = !frame->client->above; @@ -116,9 +117,10 @@ static void layer_update(ObMenuFrame *frame, gpointer data) e = menu_find_entry_id(menu, LAYER_BOTTOM); e->data.normal.enabled = !frame->client->below; + return TRUE; /* show the menu */ } -static void send_to_update(ObMenuFrame *frame, gpointer data) +static gboolean send_to_update(ObMenuFrame *frame, gpointer data) { ObMenu *menu = frame->menu; guint i; @@ -128,8 +130,8 @@ static void send_to_update(ObMenuFrame *frame, gpointer data) menu_clear_entries(menu); - if (!frame->client) - return; + if (frame->client == NULL || !client_normal(frame->client)) + return FALSE; /* don't show the menu */ for (i = 0; i <= screen_num_desktops; ++i) { const gchar *name; @@ -155,6 +157,7 @@ static void send_to_update(ObMenuFrame *frame, gpointer data) if (frame->client->desktop == desk) e->data.normal.enabled = FALSE; } + return TRUE; /* show the menu */ } static void client_menu_place(ObMenuFrame *frame, gint *x, gint *y, @@ -269,7 +272,7 @@ void client_menu_startup() acts = g_slist_prepend(NULL, action_from_string ("ToggleMaximizeFull", OB_USER_ACTION_MENU_SELECTION)); - e = menu_add_normal(menu, CLIENT_MAXIMIZE, "MAXIMIZE", acts, TRUE); + e = menu_add_normal(menu, CLIENT_MAXIMIZE, _("Maximiz&e"), acts, TRUE); e->data.normal.mask = ob_rr_theme->max_mask; e->data.normal.mask_normal_color = ob_rr_theme->menu_color; e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color; @@ -285,7 +288,7 @@ void client_menu_startup() acts = g_slist_prepend(NULL, action_from_string ("ToggleShade", OB_USER_ACTION_MENU_SELECTION)); - e = menu_add_normal(menu, CLIENT_SHADE, "SHADE", acts, TRUE); + e = menu_add_normal(menu, CLIENT_SHADE, _("&Roll up"), acts, TRUE); e->data.normal.mask = ob_rr_theme->shade_mask; e->data.normal.mask_normal_color = ob_rr_theme->menu_color; e->data.normal.mask_disabled_color = ob_rr_theme->menu_disabled_color; diff --git a/openbox/menu.h b/openbox/menu.h index fc859a8b..b08f7c95 100644 --- a/openbox/menu.h +++ b/openbox/menu.h @@ -37,7 +37,8 @@ typedef struct _ObNormalMenuEntry ObNormalMenuEntry; typedef struct _ObSubmenuMenuEntry ObSubmenuMenuEntry; typedef struct _ObSeparatorMenuEntry ObSeparatorMenuEntry; -typedef void (*ObMenuUpdateFunc)(struct _ObMenuFrame *frame, gpointer data); +typedef gboolean (*ObMenuUpdateFunc)(struct _ObMenuFrame *frame, + gpointer data); typedef void (*ObMenuExecuteFunc)(struct _ObMenuEntry *entry, guint state, gpointer data, Time time); typedef void (*ObMenuDestroyFunc)(struct _ObMenu *menu, gpointer data); diff --git a/openbox/menuframe.c b/openbox/menuframe.c index 6f8ecad0..a95e46fc 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -751,16 +751,6 @@ static gboolean menu_frame_show(ObMenuFrame *self) { GList *it; - if (menu_frame_visible == NULL) { - /* no menus shown yet */ - if (!grab_pointer(TRUE, TRUE, OB_CURSOR_POINTER)) - return FALSE; - if (!grab_keyboard(TRUE)) { - grab_pointer(FALSE, TRUE, OB_CURSOR_POINTER); - return FALSE; - } - } - /* determine if the underlying menu is already visible */ for (it = menu_frame_visible; it; it = g_list_next(it)) { ObMenuFrame *f = it->data; @@ -769,7 +759,18 @@ static gboolean menu_frame_show(ObMenuFrame *self) } if (!it) { if (self->menu->update_func) - self->menu->update_func(self, self->menu->data); + if (!self->menu->update_func(self, self->menu->data)) + return FALSE; + } + + if (menu_frame_visible == NULL) { + /* no menus shown yet */ + if (!grab_pointer(TRUE, TRUE, OB_CURSOR_POINTER)) + return FALSE; + if (!grab_keyboard(TRUE)) { + grab_pointer(FALSE, TRUE, OB_CURSOR_POINTER); + return FALSE; + } } menu_frame_update(self); diff --git a/po/ca.po b/po/ca.po index 6aaa5e31..35ec399b 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-01-25 20:41+0100\n" "Last-Translator: David Majà Martínez \n" "Language-Team: catalan\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Vés aquí..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Escriptoris" @@ -47,66 +47,66 @@ msgstr "En&rotlla" msgid "All desktops" msgstr "Tots els escriptoris" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "Ca&pa" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Sempre a so&bre" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Sempre a so&ta" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "A l'&escriptori" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menú del client" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimitza" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Posa a so&bre" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Posa a so&ta" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Decoració" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Mou" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Redimen&siona" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "Tan&ca" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id necessita un argument\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file necessita un argument\n" diff --git a/po/de.po b/po/de.po index 1e861e55..6aea8ac3 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2006-06-11 10:41+0200\n" "Last-Translator: Simon A. Wilper \n" "Language-Team: \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Gehe zu..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "" @@ -47,65 +47,65 @@ msgstr "Auf&rollen" msgid "All desktops" msgstr "Alle Desktops" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "&Fenster" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Immer im &Vordergrund" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Immer im &Hintergrund" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&An Desktop senden" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimieren" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "In den &Vordergrund" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "In den &Hintergrund" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Dekoriere" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "Vers&chieben" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "&Größe ändern" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Schließen" @@ -135,20 +135,20 @@ msgstr "" "Es wurde keine gültige Konfigurationsdatei gefunden, benutze einfache " "Standardwerte." -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "Neustart fehlgeschlagen, um die ausführbare Datei '%s' zu starten: %s" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "Syntax: openbox [Optionen]\n" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" @@ -158,40 +158,40 @@ msgstr "" "Optionen:\n" "\n" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" " --config-file FILE Datei, die als Konfigurationsdatei geladen werden " "soll\n" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr " --sm-disable Keine Verbindung zum Sitzungsmanager aufbauen\n" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr " --sm-client-id ID ID des Sitzungsmanagers\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" " --sm-save-file FILE Datei von der eine gespeicherte Sitzung geladen werden " "soll\n" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr " --replace Den aktuell laufenden Fenstermanager ersetzen\n" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr " --help Diese Hilfe anzeigen und beenden\n" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr " --version Version anzeigen und beenden\n" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" @@ -201,11 +201,11 @@ msgstr "" "Nachrichten an eine laufende Openbox-Instanz weiterleiten:\n" "\n" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr " --reconfigure Openbox's Konfiguration neu laden\n" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" @@ -216,20 +216,20 @@ msgstr "" "Debugging Optionen:\n" "\n" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr " --snyc im Synchronisierungsmodus starten\n" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr " --debug Debugging-Informationen anzeigen\n" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" " --debug-focus Debugging-Informationen fürs Fokus-Handling anzeigen\n" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -240,7 +240,7 @@ msgstr "" "Bitte melden Sie Bugreports an: %s\n" "\n" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--config-file benötigt ein Argument\n" diff --git a/po/en@boldquot.po b/po/en@boldquot.po index c2bc7cca..69ad9186 100644 --- a/po/en@boldquot.po +++ b/po/en@boldquot.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4.0\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2007-04-24 22:57-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -41,11 +41,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Go there..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Desktops" @@ -69,55 +69,55 @@ msgstr "&Roll up" msgid "All desktops" msgstr "All desktops" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 msgid "&Layer" msgstr "&Layer" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 msgid "Always on &top" msgstr "Always on &top" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 msgid "Always on &bottom" msgstr "Always on &bottom" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 msgid "&Send to desktop" msgstr "&Send to desktop" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Client menu" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 msgid "Ico&nify" msgstr "Ico&nify" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 msgid "Raise to &top" msgstr "Raise to &top" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 msgid "Lower to &bottom" msgstr "Lower to &bottom" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 msgid "&Decorate" msgstr "&Decorate" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 msgid "&Move" msgstr "&Move" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 msgid "Resi&ze" msgstr "Resi&ze" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 msgid "&Close" msgstr "&Close" @@ -142,20 +142,20 @@ msgstr "Cannot set locale modifiers for the X server." msgid "Unable to find a valid config file, using some simple defaults" msgstr "Unable to find a valid config file, using some simple defaults" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "Restart failed to execute new executable '%s': %s" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "Copyright (c)" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "Syntax: openbox [options]\n" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" @@ -165,35 +165,35 @@ msgstr "" "Options:\n" "\n" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr " --config-file FILE Specify the file to load for the config file\n" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr " --sm-disable Disable connection to session manager\n" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 msgid " --sm-client-id ID Specify session management ID\n" msgstr " --sm-client-id ID Specify session management ID\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr " --sm-save-file FILE Specify file to load a saved session from\n" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr " --replace Replace the currently running window manager\n" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr " --help Display this help and exit\n" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr " --version Display the version and exit\n" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" @@ -203,11 +203,11 @@ msgstr "" "Passing messages to a running Openbox instance:\n" "\n" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr " --reconfigure Reload Openbox's configuration\n" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" @@ -217,19 +217,19 @@ msgstr "" "Debugging options:\n" "\n" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr " --sync Run in synchronous mode\n" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr " --debug Display debugging output\n" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr " --debug-focus Display debugging output for focus handling\n" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -240,7 +240,7 @@ msgstr "" "Please report bugs at %s\n" "\n" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 msgid "--config-file requires an argument\n" msgstr "--config-file requires an argument\n" diff --git a/po/en@quot.po b/po/en@quot.po index 8b9a4fcd..b5b77679 100644 --- a/po/en@quot.po +++ b/po/en@quot.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4.0\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2007-04-24 22:57-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,11 +38,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Go there..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Desktops" @@ -66,55 +66,55 @@ msgstr "&Roll up" msgid "All desktops" msgstr "All desktops" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 msgid "&Layer" msgstr "&Layer" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 msgid "Always on &top" msgstr "Always on &top" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 msgid "Always on &bottom" msgstr "Always on &bottom" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 msgid "&Send to desktop" msgstr "&Send to desktop" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Client menu" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 msgid "Ico&nify" msgstr "Ico&nify" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 msgid "Raise to &top" msgstr "Raise to &top" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 msgid "Lower to &bottom" msgstr "Lower to &bottom" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 msgid "&Decorate" msgstr "&Decorate" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 msgid "&Move" msgstr "&Move" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 msgid "Resi&ze" msgstr "Resi&ze" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 msgid "&Close" msgstr "&Close" @@ -139,20 +139,20 @@ msgstr "Cannot set locale modifiers for the X server." msgid "Unable to find a valid config file, using some simple defaults" msgstr "Unable to find a valid config file, using some simple defaults" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "Restart failed to execute new executable '%s': %s" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "Copyright (c)" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "Syntax: openbox [options]\n" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" @@ -162,35 +162,35 @@ msgstr "" "Options:\n" "\n" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr " --config-file FILE Specify the file to load for the config file\n" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr " --sm-disable Disable connection to session manager\n" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 msgid " --sm-client-id ID Specify session management ID\n" msgstr " --sm-client-id ID Specify session management ID\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr " --sm-save-file FILE Specify file to load a saved session from\n" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr " --replace Replace the currently running window manager\n" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr " --help Display this help and exit\n" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr " --version Display the version and exit\n" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" @@ -200,11 +200,11 @@ msgstr "" "Passing messages to a running Openbox instance:\n" "\n" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr " --reconfigure Reload Openbox's configuration\n" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" @@ -214,19 +214,19 @@ msgstr "" "Debugging options:\n" "\n" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr " --sync Run in synchronous mode\n" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr " --debug Display debugging output\n" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr " --debug-focus Display debugging output for focus handling\n" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -237,7 +237,7 @@ msgstr "" "Please report bugs at %s\n" "\n" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 msgid "--config-file requires an argument\n" msgstr "--config-file requires an argument\n" diff --git a/po/es.po b/po/es.po index ea1b5563..be4cf99d 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2005-03-25 09:31+0100\n" "Last-Translator: Miguel Calleja Gómez \n" "Language-Team: None\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Ir ahí..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Escritorios" @@ -47,66 +47,66 @@ msgstr "En&rollar" msgid "All desktops" msgstr "Todos los escritorios" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "Ca&pa" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Siempre &encima" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Siempre &debajo" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&Enviar a escritorio" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menú del cliente" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimizar" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Poner en p&rimer plano" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Poner en ú<imo plano" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Decorar" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Mover" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Redimen&sionar" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Cerrar" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id necesita un argumento\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file necesita un argumento\n" diff --git a/po/fi.po b/po/fi.po index c9a2c77e..88376780 100644 --- a/po/fi.po +++ b/po/fi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2005-03-15 21:29+0200\n" "Last-Translator: Pauli Virtanen \n" "Language-Team: Finnish \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Näytä tämä..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Työtilat" @@ -47,66 +47,66 @@ msgstr "&Rullaa" msgid "All desktops" msgstr "Kaikkiin työtiloihin" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "K&erros" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Aina &päällimmäinen" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Tavallinen" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Aina &alimmainen" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "Siirrä &työtilaan" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Ikkunan valikko" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Pie&nennä" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Nosta &päällimmäiseksi" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "&Laske alimmaiseksi" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "Piirrä/poista &kehykset" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "S&iirrä" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "&Muuta kokoa" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Sulje" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id tarvitsee parametrin\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file tarvitsee parametrin\n" diff --git a/po/fr.po b/po/fr.po index 31deb67f..c67d31cc 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-06-11 23:06+0200\n" "Last-Translator: Julien Louis \n" "Language-Team: French \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Aller à..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Bureaux" @@ -47,66 +47,66 @@ msgstr "En&rouler" msgid "All desktops" msgstr "Tous les bureaux" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "E&mplacement" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Toujours au &premier plan" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Toujours en &arrière plan" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "Envoyer vers le &bureau" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menu de la fenêtre" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Ico&nifier" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Mettre au &premier plan" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Mettre en &arrière plan" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "Dé&corer" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Déplacer" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Redimen&sionner" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Fermer" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id requiert un argument\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file requiert un argument\n" diff --git a/po/hr.po b/po/hr.po index ac5d5043..634830ae 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2006-09-05 16:45+0100\n" "Last-Translator: Daniel Radetic \n" "Language-Team: None\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Odi na..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Radne povrÅ¡ine" @@ -47,66 +47,66 @@ msgstr "Pov&uci gore" msgid "All desktops" msgstr "Sve radne povrÅ¡ine" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "&Razina" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Uvijek na &vrhu" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normalno" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Uvijek na &dnu" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&PoÅ¡alji na radnu povrÅ¡inu" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Meni klijenta" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Iko&nificiraj" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Podigni na &vrh" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Spusti na &dno" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "De&koriraj" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "Po&makni" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Prom&jeni veličinu" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Zatvori" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id zahtjeva argument\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file zahtjeva argument\n" diff --git a/po/ja.po b/po/ja.po index b0431b22..cc370ac2 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.0\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2003-11-20 15:00+0900\n" "Last-Translator: Yukihiro Nakai \n" "Language-Team: Japanese \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "移動する..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "デスクトップ" @@ -47,66 +47,66 @@ msgstr "ロールアップ(&R)" msgid "All desktops" msgstr "すべてのデスクトップ(&A)" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "レイヤー(&L)" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "常に最上位にする(&T)" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "ノーマル(&N)" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "常に最下位にする(&B)" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "デスクトップに送る(&S)" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "クライアントメニュー" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "アイコン化(&N)" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "最上位に上げる(&T)" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "最下位に下げる(&B)" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "装飾(&D)" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "移動(&M)" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "リサイズ(&Z)" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "閉じる(&C)" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id には引数が必要です\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file には引数が必要です\n" diff --git a/po/no.po b/po/no.po index d6fb42a8..fe8a40d3 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-03-29 18:33:39+0200\n" "Last-Translator: Øyvind Albrigtsen\n" "Language-Team: None\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Gå dit" -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Skrivebord" @@ -47,66 +47,66 @@ msgstr "&Rull opp" msgid "All desktops" msgstr "Alle skrivebord" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "La&g" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Alltid ø&verst" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Alltid &nederst" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&Send til" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Klient meny" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "&Minimer" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Legg ø&verst" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Legg &nederst" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Dekorer" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Flytt" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Endre s&tørrelse" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Lukk" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id krever et argument\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file krever et argument\n" diff --git a/po/pl.po b/po/pl.po index d9c97225..db625cfb 100644 --- a/po/pl.po +++ b/po/pl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-09-07 21:17+0200\n" "Last-Translator: Madej \n" "Language-Team: NONE\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Przejdź..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Pulpit" @@ -47,66 +47,66 @@ msgstr "&Zwiń" msgid "All desktops" msgstr "Wszystkie pulpity" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "Warstwa" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Zawsze na &wierzchu" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normalnie" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Zawsze pod &spodem" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "Wyślij na &pulpit" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menu klienta" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimalizuj" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Wyślij na &wierzch" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Wyślij na &spód" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Obramówka" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "Prz&esuń" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Zmień &rozmiar" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "Z&amknij" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id wymaga argumentu\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file wymaga argumentu\n" diff --git a/po/pt.po b/po/pt.po index 12178a28..5c2af2f6 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-03-29 18:33:39+0200\n" "Last-Translator: Gonçalo Ferreira \n" "Language-Team: None\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Ir até..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Áreas de trabalho" @@ -47,66 +47,66 @@ msgstr "En&rolar" msgid "All desktops" msgstr "Todas as áreas de trabalho" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "&Camada" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Sempre em &cima" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Sempre no &fundo" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&Enviar para área de trabalho" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menu de clientes" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimizar" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Elevar ao &topo" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Baixar ao f&undo" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Decorar" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Mover" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Redimen&sionar" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "&Fechar" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id requer um argumento\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file requer um argumento\n" diff --git a/po/ru.po b/po/ru.po index d7db2f06..0a87c478 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-04-23 13:00+0300\n" "Last-Translator: Alexey Remizov \n" "Language-Team: Russian \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Перейти..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Рабочие места" @@ -47,66 +47,66 @@ msgstr "Скрутить(&R)" msgid "All desktops" msgstr "Все рабочие места" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "Расположить(&L)" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Всегда на переднем плане(&T)" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "Обычно(&N)" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Всегда на заднем плане(&B)" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "Переместить на рабочее место(&S)" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Меню клиента" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Свернуть(&N)" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Поднять на передний план(&T)" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Опустить на задний план(&B)" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "Убрать оформление(&D)" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "Переместить(&M)" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Изменить размер(&Z)" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "Закрыть(&C)" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id требует параметр\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file требует параметр\n" diff --git a/po/sk.po b/po/sk.po index abd89c5a..79cb4744 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox-3.3rc2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2006-08-25 00:52+0200\n" "Last-Translator: Jozef Riha \n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "PrejsÅ¥ na..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Plochy" @@ -47,66 +47,66 @@ msgstr "Zvinúť" msgid "All desktops" msgstr "VÅ¡etky plochy" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "Vrstva" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Vždy navrchu" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "Normálna" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Vždy dole" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "PoslaÅ¥ na plochu" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Menu klienta" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Do ikony" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Presunúť navrch" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Presunúť naspodok" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "Dekorácia" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "Presunúť" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Zmena veľkosti" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "ZavrieÅ¥" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id vyžaduje parameter\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file vyžaduje parameter\n" diff --git a/po/sv.po b/po/sv.po index 59fe162b..2f949271 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2004-03-29 18:33:39+0200\n" "Last-Translator: Mikael Magnusson \n" "Language-Team: None\n" @@ -15,11 +15,11 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "Gå dit" -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "Skrivbord" @@ -47,66 +47,66 @@ msgstr "&Rulla upp" msgid "All desktops" msgstr "Alla skrivbord" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "&Lager" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "Alltid ö&verst" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "&Normal" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "Alltid &underst" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "&Skicka till" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "Klientmeny" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "Mi&nimera" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "Lägg ö&verst" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "Lägg &underst" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "&Dekorera" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "&Flytta" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "Ändra s&torlek" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "Stän&g" @@ -132,86 +132,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id kräver ett argument\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -219,7 +219,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file kräver ett argument\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index c4642175..6c6580b1 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.3rc2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-04-24 22:57-0400\n" +"POT-Creation-Date: 2007-04-26 11:53-0400\n" "PO-Revision-Date: 2006-03-01 12:00+0800\n" "Last-Translator: Wei-Lun Chao \n" "Language-Team: Chinese (traditional) \n" @@ -16,11 +16,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: openbox/client_list_menu.c:100 +#: openbox/client_list_menu.c:98 msgid "Go there..." msgstr "到那裡去..." -#: openbox/client_list_menu.c:191 +#: openbox/client_list_menu.c:189 msgid "Desktops" msgstr "桌面" @@ -48,66 +48,66 @@ msgstr "向上捲動(&R)" msgid "All desktops" msgstr "所有桌面(&A)" -#: openbox/client_menu.c:166 +#: openbox/client_menu.c:229 #, fuzzy msgid "&Layer" msgstr "圖層(&L)" -#: openbox/client_menu.c:172 +#: openbox/client_menu.c:235 #, fuzzy msgid "Always on &top" msgstr "最上層(&T)" -#: openbox/client_menu.c:177 +#: openbox/client_menu.c:240 #, fuzzy msgid "&Normal" msgstr "一般(&N)" -#: openbox/client_menu.c:182 +#: openbox/client_menu.c:245 #, fuzzy msgid "Always on &bottom" msgstr "最下層(&B)" -#: openbox/client_menu.c:185 +#: openbox/client_menu.c:248 #, fuzzy msgid "&Send to desktop" msgstr "傳送到桌面(&S)" -#: openbox/client_menu.c:189 +#: openbox/client_menu.c:252 msgid "Client menu" msgstr "客戶端選單" -#: openbox/client_menu.c:199 +#: openbox/client_menu.c:263 #, fuzzy msgid "Ico&nify" msgstr "最小化(&N)" -#: openbox/client_menu.c:216 +#: openbox/client_menu.c:280 #, fuzzy msgid "Raise to &top" msgstr "提到最上層(&T)" -#: openbox/client_menu.c:220 +#: openbox/client_menu.c:284 #, fuzzy msgid "Lower to &bottom" msgstr "降到最下層(&B)" -#: openbox/client_menu.c:233 +#: openbox/client_menu.c:297 #, fuzzy msgid "&Decorate" msgstr "裝飾(&D)" -#: openbox/client_menu.c:239 +#: openbox/client_menu.c:303 #, fuzzy msgid "&Move" msgstr "移動(&M)" -#: openbox/client_menu.c:243 +#: openbox/client_menu.c:307 #, fuzzy msgid "Resi&ze" msgstr "重新調整大小(&Z)" -#: openbox/client_menu.c:249 +#: openbox/client_menu.c:313 #, fuzzy msgid "&Close" msgstr "關閉(&C)" @@ -133,86 +133,86 @@ msgstr "" msgid "Unable to find a valid config file, using some simple defaults" msgstr "" -#: openbox/openbox.c:349 +#: openbox/openbox.c:350 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "" -#: openbox/openbox.c:389 openbox/openbox.c:391 +#: openbox/openbox.c:390 openbox/openbox.c:392 msgid "Copyright (c)" msgstr "" -#: openbox/openbox.c:400 +#: openbox/openbox.c:401 msgid "Syntax: openbox [options]\n" msgstr "" -#: openbox/openbox.c:401 +#: openbox/openbox.c:402 msgid "" "\n" "Options:\n" "\n" msgstr "" -#: openbox/openbox.c:402 +#: openbox/openbox.c:403 msgid " --config-file FILE Specify the file to load for the config file\n" msgstr "" -#: openbox/openbox.c:404 +#: openbox/openbox.c:405 msgid " --sm-disable Disable connection to session manager\n" msgstr "" -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, fuzzy msgid " --sm-client-id ID Specify session management ID\n" msgstr "--sm-client-id 要求引數\n" -#: openbox/openbox.c:406 +#: openbox/openbox.c:407 msgid " --sm-save-file FILE Specify file to load a saved session from\n" msgstr "" -#: openbox/openbox.c:408 +#: openbox/openbox.c:409 msgid " --replace Replace the currently running window manager\n" msgstr "" -#: openbox/openbox.c:409 +#: openbox/openbox.c:410 msgid " --help Display this help and exit\n" msgstr "" -#: openbox/openbox.c:410 +#: openbox/openbox.c:411 msgid " --version Display the version and exit\n" msgstr "" -#: openbox/openbox.c:411 +#: openbox/openbox.c:412 msgid "" "\n" "Passing messages to a running Openbox instance:\n" "\n" msgstr "" -#: openbox/openbox.c:412 +#: openbox/openbox.c:413 msgid " --reconfigure Reload Openbox's configuration\n" msgstr "" -#: openbox/openbox.c:413 +#: openbox/openbox.c:414 msgid "" "\n" "Debugging options:\n" "\n" msgstr "" -#: openbox/openbox.c:414 +#: openbox/openbox.c:415 msgid " --sync Run in synchronous mode\n" msgstr "" -#: openbox/openbox.c:415 +#: openbox/openbox.c:416 msgid " --debug Display debugging output\n" msgstr "" -#: openbox/openbox.c:416 +#: openbox/openbox.c:417 msgid " --debug-focus Display debugging output for focus handling\n" msgstr "" -#: openbox/openbox.c:417 +#: openbox/openbox.c:418 #, c-format msgid "" "\n" @@ -220,7 +220,7 @@ msgid "" "\n" msgstr "" -#: openbox/openbox.c:448 +#: openbox/openbox.c:449 #, fuzzy msgid "--config-file requires an argument\n" msgstr "--sm-save-file 要求引數\n" -- 2.34.1