same thing as r6008 in trunk
authorDana Jansens <danakj@orodu.net>
Thu, 3 May 2007 20:40:17 +0000 (20:40 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 3 May 2007 20:40:17 +0000 (20:40 +0000)
21 files changed:
openbox/client_list_combined_menu.c
openbox/client_list_menu.c
openbox/client_menu.c
openbox/menu.h
openbox/menuframe.c
po/ca.po
po/de.po
po/en@boldquot.po
po/en@quot.po
po/es.po
po/fi.po
po/fr.po
po/hr.po
po/ja.po
po/no.po
po/pl.po
po/pt.po
po/ru.po
po/sk.po
po/sv.po
po/zh_TW.po

index 9dd56e0a92da85259bc467bbbfab19106a51f755..fcc95f69dfc1aa1cf4a3eb1ad04c256f0ed70048 100644 (file)
@@ -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
index 86a70af45c6f40dc9bb94b25e8f0567c70f2300e..12c16815a432fd8899a6139d8a8ab54072dfa371 100644 (file)
@@ -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)
index 4efef8a83014e7c6d6fa005e5d6e015eac7eed81..011e3ec119bfd40bce1a33f09e030a84c4186985 100644 (file)
@@ -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;
index fc859a8b1675d79df00a0f558c8b4365909e8fed..b08f7c952507fd30b0b26246ec422c09016bc50a 100644 (file)
@@ -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);
index 6f8ecad01149b338a38f61d2ae177aebe5ef95ab..a95e46fca4e1ccc9bd300037feb7ffed9ad6c196 100644 (file)
@@ -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);
index 6aaa5e31d0b8988f168974c81c0291a63aeec67a..35ec399b3b0d98aebafd56c705609fcea3884d45 100644 (file)
--- 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 <davidmaja@gmail.com>\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"
index 1e861e55c046b884222f374343d654c7bb689d7d..6aea8ac3ca822b2b50377316791928e321dbe6cf 100644 (file)
--- 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 <simonaw@openoffice.org>\n"
 "Language-Team:  <de@li.org>\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"
index c2bc7cca2b8882a680e4c97718527318467aefd6..69ad918687787701917865772ac5d8265c3320b6 100644 (file)
@@ -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"
 
index 8b9a4fcd40641ee03da387f9cdec20c24810a76a..b5b7767960f0a2e2a602ee8c63cd1ccfdea9dba1 100644 (file)
@@ -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"
 
index ea1b556336252b8072138d87230a61dda83938d2..be4cf99d7921c40e29b667a2d9120f21a6d7eef2 100644 (file)
--- 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 <mcg79@lycos.es>\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 ú&ltimo 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"
index c9a2c77e9e1c12d55f6304b7df595efa99ff4c68..88376780e6e58e60f8a4160b2cc5b3b3d52af3f6 100644 (file)
--- 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 <pauli.virtanen@hut.fi>\n"
 "Language-Team: Finnish <fi@li.org>\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"
index 31deb67f54f91d4fdfc4629e57e373a8fb2efbd8..c67d31cc51e1794607719eb3f48c1a0bc9d8880b 100644 (file)
--- 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 <leonptitlouis@wanadoo.fr>\n"
 "Language-Team: French <traduc@traduc.org>\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"
index ac5d5043a3a838445843253e0c0b9d4dd72fe52e..634830ae2ea2a4e2ae01f87781f91bf689492642 100644 (file)
--- 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 <drade@boobah.info>\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"
index b0431b2262e83d74ebefc0ededd65950e66edb02..cc370ac20b89d16892b1d1ba417011a96ea570e8 100644 (file)
--- 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 <nakai@gnome.gr.jp>\n"
 "Language-Team: Japanese <ja@li.org>\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"
index d6fb42a8b27b8c766c5c25a6d835bd067e21aad8..fe8a40d3c3eb5d89336bc7ea85db6c3826e2a38d 100644 (file)
--- 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"
index d9c9722598ebb29b48e94547a4b07fbdc520e19d..db625cfbf047eab9eb474f76e41afbfdb7d6c2f3 100644 (file)
--- 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 <madej@afn.no-ip.org>\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"
index 12178a28f422fc4ce16e33d22cd4cf0d074bd036..5c2af2f658f694d22b697c861ea955fcfdada3e8 100644 (file)
--- 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 <gonsas@gmail.com>\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"
index d7db2f06745bc0af537a23d8537f58e7959eef87..0a87c478b72f9f70b0a3b8e0c9408abba74fe1bf 100644 (file)
--- 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 <alexey@remizov.pp.ru>\n"
 "Language-Team: Russian <gnome-cyr@gnome.org>\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"
index abd89c5a2f5ac2b690ab6625390e4d3b8a67926c..79cb47446e15557cec6c4740e31389cbe6143e02 100644 (file)
--- 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 <jose1711@gmail.com\n"
 "Language-Team: Slovak <LL@li.org>\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"
index 59fe162b224e50c31100c5a5daadc6876960dc39..2f949271a75b899e2127f3d20b5729fcf22b3c92 100644 (file)
--- 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 <mikachu@icculus.org>\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"
index c464217599bb1eb9b2407a2fb8b9ee2da146d904..6c6580b14c3bd1256813aa6b9e70fc96303f2af6 100644 (file)
@@ -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 <william.chao@ossii.com.tw>\n"
 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\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"