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;
e->data.normal.enabled = FALSE;
}
}
+ return TRUE; /* always show the menu */
}
/* executes it using the client in the actions, since we set that
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;
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
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;
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)
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;
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;
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;
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;
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,
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;
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;
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);
{
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;
}
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);
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"
"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"
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"
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"
"\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"
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"
"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 ""
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"
"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"
"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"
"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"
"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"
"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"
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"
"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"
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"
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"
"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"
"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"
"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"
"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"
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"
"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"
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"
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"
"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"
"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"
"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"
"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"
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"
"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"
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"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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 "デスクトップ"
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)"
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"
"\n"
msgstr ""
-#: openbox/openbox.c:448
+#: openbox/openbox.c:449
#, fuzzy
msgid "--config-file requires an argument\n"
msgstr "--sm-save-file には引数が必要です\n"
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"
"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"
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"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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 "Рабочие места"
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)"
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"
"\n"
msgstr ""
-#: openbox/openbox.c:448
+#: openbox/openbox.c:449
#, fuzzy
msgid "--config-file requires an argument\n"
msgstr "--sm-save-file требует параметр\n"
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"
"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"
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ť"
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"
"\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"
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"
"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"
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"
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"
"\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"
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"
"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 "桌面"
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)"
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"
"\n"
msgstr ""
-#: openbox/openbox.c:448
+#: openbox/openbox.c:449
#, fuzzy
msgid "--config-file requires an argument\n"
msgstr "--sm-save-file 要求引數\n"