typedef struct
{
- ObClientDestructor func;
+ ObClientCallback func;
gpointer data;
-} Destructor;
+} ClientCallback;
-GList *client_list = NULL;
+GList *client_list = NULL;
-static GSList *client_destructors = NULL;
+static GSList *client_destructors = NULL;
+static GSList *client_desktop_notifies = NULL;
static void client_get_all(ObClient *self);
static void client_toggle_border(ObClient *self, gboolean show);
{
}
-void client_add_destructor(ObClientDestructor func, gpointer data)
+void client_add_destructor(ObClientCallback func, gpointer data)
{
- Destructor *d = g_new(Destructor, 1);
+ ClientCallback *d = g_new(ClientCallback, 1);
d->func = func;
d->data = data;
client_destructors = g_slist_prepend(client_destructors, d);
}
-void client_remove_destructor(ObClientDestructor func)
+void client_remove_destructor(ObClientCallback func)
{
GSList *it;
for (it = client_destructors; it; it = g_slist_next(it)) {
- Destructor *d = it->data;
+ ClientCallback *d = it->data;
if (d->func == func) {
g_free(d);
client_destructors = g_slist_delete_link(client_destructors, it);
}
}
+void client_add_desktop_notify(ObClientCallback func, gpointer data)
+{
+ ClientCallback *d = g_new(ClientCallback, 1);
+ d->func = func;
+ d->data = data;
+ client_desktop_notifies = g_slist_prepend(client_desktop_notifies, d);
+}
+
+void client_remove_desktop_notify(ObClientCallback func)
+{
+ GSList *it;
+
+ for (it = client_desktop_notifies; it; it = g_slist_next(it)) {
+ ClientCallback *d = it->data;
+ if (d->func == func) {
+ g_free(d);
+ client_desktop_notifies =
+ g_slist_delete_link(client_desktop_notifies, it);
+ break;
+ }
+ }
+}
+
void client_set_list()
{
Window *windows, *win_it;
screen_update_areas();
for (it = client_destructors; it; it = g_slist_next(it)) {
- Destructor *d = it->data;
+ ClientCallback *d = it->data;
d->func(self, d->data);
}
focus_order_to_top(self);
else
focus_order_to_bottom(self);
+
+ /* call the notifies */
+ GSList *it;
+ for (it = client_desktop_notifies; it; it = g_slist_next(it)) {
+ ClientCallback *d = it->data;
+ d->func(self, d->data);
+ }
}
/* move all transients */
void client_startup(gboolean reconfig);
void client_shutdown(gboolean reconfig);
-typedef void (*ObClientDestructor)(ObClient *client, gpointer data);
+typedef void (*ObClientCallback)(ObClient *client, gpointer data);
-void client_add_destructor(ObClientDestructor func, gpointer data);
-void client_remove_destructor(ObClientDestructor func);
+/* Callback functions */
+
+/*! Get notified when the client is unmanaged */
+void client_add_destructor(ObClientCallback func, gpointer data);
+void client_remove_destructor(ObClientCallback func);
+
+/*! Get notified when the client changes desktop */
+void client_add_desktop_notify(ObClientCallback func, gpointer data);
+void client_remove_desktop_notify(ObClientCallback func);
/*! Manages all existing windows */
void client_manage_all();
guint i;
GSList *acts;
ObAction *act;
- ObMenuEntry *e;;
+ ObMenuEntry *e;
menu_clear_entries(menu);
return TRUE; /* show the menu */
}
+static void desktop_change_callback(ObClient *c, gpointer data)
+{
+ ObMenuFrame *frame = data;
+ if (c == frame->client) {
+ /* the client won't even be on the screen anymore, so hide the menu */
+ menu_frame_hide_all();
+ }
+}
+
+static void show_callback(ObMenuFrame *frame, gpointer data)
+{
+ client_add_desktop_notify(desktop_change_callback, frame);
+}
+
+static void hide_callback(ObMenuFrame *frame, gpointer data)
+{
+ client_remove_desktop_notify(desktop_change_callback);
+}
+
static void client_menu_place(ObMenuFrame *frame, gint *x, gint *y,
gint button, gpointer data)
{
menu = menu_new(SEND_TO_MENU_NAME, _("&Send to desktop"), TRUE, NULL);
menu_set_update_func(menu, send_to_update);
+ menu_set_show_func(menu, show_callback);
+ menu_set_hide_func(menu, hide_callback);
menu = menu_new(CLIENT_MENU_NAME, _("Client menu"), TRUE, NULL);
g_hash_table_replace(menu_hash, self->name, self);
self->more_menu = g_new0(ObMenu, 1);
- self->more_menu->name = "More...";
- self->more_menu->title = "More...";
+ self->more_menu->name = _("More...");
+ self->more_menu->title = _("More...");
self->more_menu->data = data;
self->more_menu->shortcut = g_unichar_tolower(g_utf8_get_char("M"));
return e;
}
+void menu_set_show_func(ObMenu *self, ObMenuShowFunc func)
+{
+ self->show_func = func;
+}
+
+void menu_set_hide_func(ObMenu *self, ObMenuHideFunc func)
+{
+ self->hide_func = func;
+}
+
void menu_set_update_func(ObMenu *self, ObMenuUpdateFunc func)
{
self->update_func = func;
typedef struct _ObSubmenuMenuEntry ObSubmenuMenuEntry;
typedef struct _ObSeparatorMenuEntry ObSeparatorMenuEntry;
+typedef void (*ObMenuShowFunc)(struct _ObMenuFrame *frame, gpointer data);
+typedef void (*ObMenuHideFunc)(struct _ObMenuFrame *frame, gpointer data);
typedef gboolean (*ObMenuUpdateFunc)(struct _ObMenuFrame *frame,
gpointer data);
typedef void (*ObMenuExecuteFunc)(struct _ObMenuEntry *entry,
/* plugin data */
gpointer data;
+ ObMenuShowFunc show_func;
+ ObMenuHideFunc hide_func;
ObMenuUpdateFunc update_func;
ObMenuExecuteFunc execute_func;
ObMenuDestroyFunc destroy_func;
void menu_show(gchar *name, gint x, gint y, gint button,
struct _ObClient *client);
+void menu_set_show_func(ObMenu *menu, ObMenuShowFunc func);
+void menu_set_hide_func(ObMenu *menu, ObMenuHideFunc func);
void menu_set_update_func(ObMenu *menu, ObMenuUpdateFunc func);
void menu_set_execute_func(ObMenu *menu, ObMenuExecuteFunc func);
void menu_set_destroy_func(ObMenu *menu, ObMenuDestroyFunc func);
fit = n;
}
+ /* * make the menu fit on the screen */
+
+ /* calculate the height of the menu */
+ h = 0;
+ for (fit = self->entries; fit; fit = g_list_next(fit))
+ h += menu_entry_frame_get_height(fit->data,
+ fit == self->entries,
+ g_list_next(fit) == NULL);
+ /* add the border at the top and bottom */
+ h += ob_rr_theme->mbwidth * 2;
+
+ a = screen_physical_area_monitor(self->monitor);
+
+ if (h > a->height) {
+ GList *flast, *tmp;
+ gboolean last_entry = TRUE;
+
+ /* take the height of our More... entry into account */
+ h += menu_entry_frame_get_height(NULL, FALSE, TRUE);
+
+ /* start at the end of the entries */
+ flast = g_list_last(self->entries);
+
+ /* pull out all the entries from the frame that don't
+ fit on the screen, leaving at least 1 though */
+ while (h > a->height && g_list_previous(flast) != NULL) {
+ /* update the height, without this entry */
+ h -= menu_entry_frame_get_height(flast->data, FALSE, last_entry);
+
+ /* destroy the entry we're not displaying */
+ tmp = flast;
+ flast = g_list_previous(flast);
+ menu_entry_frame_free(tmp->data);
+ self->entries = g_list_delete_link(self->entries, tmp);
+
+ /* only the first one that we see is the last entry in the menu */
+ last_entry = FALSE;
+ };
+
+ {
+ ObMenuEntry *more_entry;
+ ObMenuEntryFrame *more_frame;
+ /* make the More... menu entry frame which will display in this
+ frame.
+ if self->menu->more_menu is NULL that means that this is already
+ More... menu, so just use ourself.
+ */
+ more_entry = menu_get_more((self->menu->more_menu ?
+ self->menu->more_menu :
+ self->menu),
+ /* continue where we left off */
+ self->show_from +
+ g_list_length(self->entries));
+ more_frame = menu_entry_frame_new(more_entry, self);
+ /* make it get deleted when the menu frame goes away */
+ menu_entry_unref(more_entry);
+
+ /* add our More... entry to the frame */
+ self->entries = g_list_append(self->entries, more_frame);
+ }
+ }
+
menu_frame_render(self);
/* make the menu fit on the screen. at most we call render twice, at least
menu_frame_visible = g_list_prepend(menu_frame_visible, self);
+ if (self->menu->show_func)
+ self->menu->show_func(self, self->menu->data);
+
return TRUE;
}
if (!it)
return;
+ if (self->menu->hide_func)
+ self->menu->hide_func(self, self->menu->data);
+
if (self->child)
menu_frame_hide(self->child);
GSList *it;
if (!translate_button(buttonstr, &state, &button)) {
- g_message(_("Invalid button '%s' in pointer binding"), buttonstr);
+ g_message(_("Invalid button '%s' in mouse binding"), buttonstr);
return FALSE;
}
context = frame_context_from_string(contextstr);
if (!context) {
- g_message(_("Invalid context '%s' in pointer binding"), contextstr);
+ g_message(_("Invalid context '%s' in mouse binding"), contextstr);
return FALSE;
}
!g_ascii_strcasecmp("H", str))
mask = modkeys_key_to_mask(OB_MODKEY_KEY_HYPER);
else
- g_message(_("Invalid modifier key '%s' in key/pointer binding"), str);
+ g_message(_("Invalid modifier key '%s' in key/mouse binding"), str);
return mask;
}
else if (!g_ascii_strcasecmp("Up", l)) *button = 4;
else if (!g_ascii_strcasecmp("Down", l)) *button = 5;
else if (!g_ascii_strncasecmp("Button", l, 6)) *button = atoi(l+6);
- if (!*button) {
- g_message(_("Invalid button '%s' in pointer binding"), l);
+ if (!*button)
goto translation_fail;
- }
ret = TRUE;
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Vés aquí..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Escriptoris"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Restaur&a"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "M&aximitza"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Desen&rotlla"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "En&rotlla"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Tots els escriptoris"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "Ca&pa"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Sempre a so&bre"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Sempre a so&ta"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "A l'&escriptori"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menú del client"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Mi&nimitza"
+msgid "R&estore"
+msgstr "Restaur&a"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Posa a so&bre"
+msgid "&Move"
+msgstr "&Mou"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Posa a so&ta"
+msgid "Resi&ze"
+msgstr "Redimen&siona"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "&Decoració"
+msgid "Ico&nify"
+msgstr "Mi&nimitza"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "&Mou"
+msgid "Ma&ximize"
+msgstr "M&aximitza"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Redimen&siona"
+msgid "&Roll up/down"
+msgstr "Desen&rotlla"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "&Decoració"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "Tan&ca"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "No és pot crear el directori '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file necessita un argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id necessita un argument\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file necessita un argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "No és pot crear el directori '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "No és pot crear el directori '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "En&rotlla"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Posa a so&bre"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Posa a so&ta"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id necessita un argument\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id necessita un argument\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file necessita un argument\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "No s'ha pogut inicialitzar Xft."
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Gehe zu..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr ""
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Wi&ederherstellen"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maximi&eren"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Ab&rollen"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "Auf&rollen"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Alle Desktops"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "&Fenster"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Immer im &Vordergrund"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Immer im &Hintergrund"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "&An Desktop senden"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr ""
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Mi&nimieren"
+msgid "R&estore"
+msgstr "Wi&ederherstellen"
+
+#: openbox/client_menu.c:288
+#, fuzzy
+msgid "&Move"
+msgstr "Vers&chieben"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Raise to &top"
-msgstr "In den &Vordergrund"
+msgid "Resi&ze"
+msgstr "&Größe ändern"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "In den &Hintergrund"
+msgid "Ico&nify"
+msgstr "Mi&nimieren"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Decorate"
-msgstr "&Dekoriere"
+msgid "Ma&ximize"
+msgstr "Maximi&eren"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "&Move"
-msgstr "Vers&chieben"
+msgid "&Roll up/down"
+msgstr "Ab&rollen"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:328
#, fuzzy
-msgid "Resi&ze"
-msgstr "&Größe ändern"
+msgid "Un/&Decorate"
+msgstr "&Dekoriere"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Schließen"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-"Die gewählte Lokalisierung konnte für die Umgebung nicht gesetzt werden"
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Das Verzeichnis '%s' konnte nicht angelegt werden: %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr "Die gewählte Lokalisierung wird vom X-Server nicht unterstützt."
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
"Die Lokalisierungsmodifizierer für den X-Server konnten nicht gesetzt werden."
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
"Es wurde keine gültige Konfigurationsdatei gefunden, benutze einfache "
"Standardwerte."
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, 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:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr "Syntax: openbox [Optionen]\n"
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
+#, fuzzy
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
"\n"
"Optionen:\n"
"\n"
-#: 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:405
-msgid " --sm-disable Disable connection to session manager\n"
-msgstr " --sm-disable Keine Verbindung zum Sitzungsmanager aufbauen\n"
-
-#: openbox/openbox.c:406
+#: openbox/openbox.c:458
#, fuzzy
-msgid " --sm-client-id ID Specify session management ID\n"
-msgstr " --sm-client-id ID ID des Sitzungsmanagers\n"
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --reconfigure Openbox's Konfiguration neu laden\n"
-#: 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:460
+#, fuzzy
+msgid " --sm-disable Disable connection to the session manager\n"
+msgstr " --sm-disable Keine Verbindung zum Sitzungsmanager aufbauen\n"
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr " --replace Den aktuell laufenden Fenstermanager ersetzen\n"
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr " --help Diese Hilfe anzeigen und beenden\n"
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr " --version Version anzeigen und beenden\n"
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
+#, fuzzy
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
"\n"
"Nachrichten an eine laufende Openbox-Instanz weiterleiten:\n"
"\n"
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Openbox's Konfiguration neu laden\n"
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
+#, fuzzy
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
"\n"
"\n"
"Debugging Optionen:\n"
"\n"
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --snyc im Synchronisierungsmodus starten\n"
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Debugging-Informationen anzeigen\n"
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
" --debug-focus Debugging-Informationen fürs Fokus-Handling anzeigen\n"
-#: openbox/openbox.c:418
-#, c-format
+#: openbox/openbox.c:471
+#, fuzzy, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
"\n"
"Bitte melden Sie Bugreports an: %s\n"
"\n"
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--config-file benötigt ein Argument\n"
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id benötigt ein Argument\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
-msgstr "--sm-save-file benötigt ein Argument\n"
-
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Das Verzeichnis '%s' konnte nicht angelegt werden: %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Das Verzeichnis '%s' konnte nicht angelegt werden: %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr "Fehler beim Speichern der Sitzung nach '%s': %s"
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "Auf&rollen"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "In den &Vordergrund"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "In den &Hintergrund"
+
+#~ msgid "Couldn't set locale from environment."
+#~ msgstr ""
+#~ "Die gewählte Lokalisierung konnte für die Umgebung nicht gesetzt werden"
+
+#~ 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"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr " --sm-client-id ID ID des Sitzungsmanagers\n"
+
+#~ 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"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id benötigt ein Argument\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file benötigt ein Argument\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Xft konnte nicht initialisiert werden"
msgstr ""
"Project-Id-Version: openbox 3.4.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
-"PO-Revision-Date: 2007-04-24 22:57-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-0400\n"
+"PO-Revision-Date: 2007-05-07 18:50-0400\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: openbox/client_list_menu.c:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Go there..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Desktops"
-#: openbox/client_menu.c:75
-msgid "Restor&e"
-msgstr "Restor&e"
-
-#: openbox/client_menu.c:75
-msgid "Maximiz&e"
-msgstr "Maximiz&e"
-
-#: openbox/client_menu.c:80
-msgid "&Roll down"
-msgstr "&Roll down"
-
-#: openbox/client_menu.c:80
-msgid "&Roll up"
-msgstr "&Roll up"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "All desktops"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
msgid "&Layer"
msgstr "&Layer"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
msgid "Always on &top"
msgstr "Always on &top"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
msgid "Always on &bottom"
msgstr "Always on &bottom"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
msgid "&Send to desktop"
msgstr "&Send to desktop"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Client menu"
-#: openbox/client_menu.c:263
-msgid "Ico&nify"
-msgstr "Ico&nify"
-
-#: openbox/client_menu.c:280
-msgid "Raise to &top"
-msgstr "Raise to &top"
-
-#: openbox/client_menu.c:284
-msgid "Lower to &bottom"
-msgstr "Lower to &bottom"
+#: openbox/client_menu.c:278
+msgid "R&estore"
+msgstr "R&estore"
-#: openbox/client_menu.c:297
-msgid "&Decorate"
-msgstr "&Decorate"
-
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:288
msgid "&Move"
msgstr "&Move"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:292
msgid "Resi&ze"
msgstr "Resi&ze"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:296
+msgid "Ico&nify"
+msgstr "Ico&nify"
+
+#: openbox/client_menu.c:307
+msgid "Ma&ximize"
+msgstr "Ma&ximize"
+
+#: openbox/client_menu.c:317
+msgid "&Roll up/down"
+msgstr "&Roll up/down"
+
+#: openbox/client_menu.c:328
+msgid "Un/&Decorate"
+msgstr "Un/&Decorate"
+
+#: openbox/client_menu.c:340
msgid "&Close"
msgstr "&Close"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr "Couldn't set locale from environment."
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Unable to change to home directory '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr "X server does not support locale."
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr "Cannot set locale modifiers for the X server."
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
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:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr "Restart failed to execute new executable '%s': %s"
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr "Copyright (c)"
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr "Syntax: openbox [options]\n"
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
"\n"
"Options:\n"
-"\n"
-
-#: 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:405
-msgid " --sm-disable Disable connection to session manager\n"
-msgstr " --sm-disable Disable connection to session manager\n"
-#: 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:458
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --config TYPE Specify the configuration profile to use\n"
-#: 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:460
+msgid " --sm-disable Disable connection to the session manager\n"
+msgstr " --sm-disable Disable connection to the session manager\n"
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr " --replace Replace the currently running window manager\n"
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr " --help Display this help and exit\n"
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr " --version Display the version and exit\n"
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Reload Openbox's configuration\n"
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
"\n"
"Debugging options:\n"
-"\n"
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Run in synchronous mode\n"
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Display debugging output\n"
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Display debugging output for focus handling\n"
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
"\n"
"Please report bugs at %s\n"
-"\n"
-
-#: openbox/openbox.c:449
-msgid "--config-file requires an argument\n"
-msgstr "--config-file requires an argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id requires an argument\n"
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
-msgstr "--sm-save-file requires an argument\n"
+#: openbox/openbox.c:519
+msgid "--config requires an argument\n"
+msgstr "--config requires an argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Unable to make directory '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Unable to save the session to '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr "Error while saving the session to '%s': %s"
msgstr ""
"Project-Id-Version: openbox 3.4.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
-"PO-Revision-Date: 2007-04-24 22:57-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-0400\n"
+"PO-Revision-Date: 2007-05-07 18:50-0400\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: openbox/client_list_menu.c:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Go there..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Desktops"
-#: openbox/client_menu.c:75
-msgid "Restor&e"
-msgstr "Restor&e"
-
-#: openbox/client_menu.c:75
-msgid "Maximiz&e"
-msgstr "Maximiz&e"
-
-#: openbox/client_menu.c:80
-msgid "&Roll down"
-msgstr "&Roll down"
-
-#: openbox/client_menu.c:80
-msgid "&Roll up"
-msgstr "&Roll up"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "All desktops"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
msgid "&Layer"
msgstr "&Layer"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
msgid "Always on &top"
msgstr "Always on &top"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
msgid "Always on &bottom"
msgstr "Always on &bottom"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
msgid "&Send to desktop"
msgstr "&Send to desktop"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Client menu"
-#: openbox/client_menu.c:263
-msgid "Ico&nify"
-msgstr "Ico&nify"
-
-#: openbox/client_menu.c:280
-msgid "Raise to &top"
-msgstr "Raise to &top"
-
-#: openbox/client_menu.c:284
-msgid "Lower to &bottom"
-msgstr "Lower to &bottom"
+#: openbox/client_menu.c:278
+msgid "R&estore"
+msgstr "R&estore"
-#: openbox/client_menu.c:297
-msgid "&Decorate"
-msgstr "&Decorate"
-
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:288
msgid "&Move"
msgstr "&Move"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:292
msgid "Resi&ze"
msgstr "Resi&ze"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:296
+msgid "Ico&nify"
+msgstr "Ico&nify"
+
+#: openbox/client_menu.c:307
+msgid "Ma&ximize"
+msgstr "Ma&ximize"
+
+#: openbox/client_menu.c:317
+msgid "&Roll up/down"
+msgstr "&Roll up/down"
+
+#: openbox/client_menu.c:328
+msgid "Un/&Decorate"
+msgstr "Un/&Decorate"
+
+#: openbox/client_menu.c:340
msgid "&Close"
msgstr "&Close"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr "Couldn't set locale from environment."
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Unable to change to home directory '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr "X server does not support locale."
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr "Cannot set locale modifiers for the X server."
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
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:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr "Restart failed to execute new executable '%s': %s"
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr "Copyright (c)"
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr "Syntax: openbox [options]\n"
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
"\n"
"Options:\n"
-"\n"
-
-#: 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:405
-msgid " --sm-disable Disable connection to session manager\n"
-msgstr " --sm-disable Disable connection to session manager\n"
-#: 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:458
+msgid " --config TYPE Specify the configuration profile to use\n"
+msgstr " --config TYPE Specify the configuration profile to use\n"
-#: 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:460
+msgid " --sm-disable Disable connection to the session manager\n"
+msgstr " --sm-disable Disable connection to the session manager\n"
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr " --replace Replace the currently running window manager\n"
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr " --help Display this help and exit\n"
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr " --version Display the version and exit\n"
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Reload Openbox's configuration\n"
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
"\n"
"Debugging options:\n"
-"\n"
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Run in synchronous mode\n"
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Display debugging output\n"
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Display debugging output for focus handling\n"
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
"\n"
"Please report bugs at %s\n"
-"\n"
-
-#: openbox/openbox.c:449
-msgid "--config-file requires an argument\n"
-msgstr "--config-file requires an argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id requires an argument\n"
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
-msgstr "--sm-save-file requires an argument\n"
+#: openbox/openbox.c:519
+msgid "--config requires an argument\n"
+msgstr "--config requires an argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Unable to make directory '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Unable to save the session to '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr "Error while saving the session to '%s': %s"
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Ir ahí..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Escritorios"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Rest&aurar"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maximiz&ar"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Desen&rollar"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "En&rollar"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Todos los escritorios"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "Ca&pa"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Siempre &encima"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Siempre &debajo"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "&Enviar a escritorio"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menú del cliente"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Mi&nimizar"
+msgid "R&estore"
+msgstr "Rest&aurar"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Poner en p&rimer plano"
+msgid "&Move"
+msgstr "&Mover"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Poner en ú<imo plano"
+msgid "Resi&ze"
+msgstr "Redimen&sionar"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "&Decorar"
+msgid "Ico&nify"
+msgstr "Mi&nimizar"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "&Mover"
+msgid "Ma&ximize"
+msgstr "Maximiz&ar"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Redimen&sionar"
+msgid "&Roll up/down"
+msgstr "Desen&rollar"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "&Decorar"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Cerrar"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "No se puede crear el directorio '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file necesita un argumento\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id necesita un argumento\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file necesita un argumento\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "No se puede crear el directorio '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "No se puede crear el directorio '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "En&rollar"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Poner en p&rimer plano"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Poner en ú<imo plano"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id necesita un argumento\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id necesita un argumento\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file necesita un argumento\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "No se pudo iniciar Xft."
msgstr ""
"Project-Id-Version: openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Näytä tämä..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Työtilat"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "P&alauta"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Suurenn&a"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "&Rullaa auki"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "&Rullaa"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Kaikkiin työtiloihin"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "K&erros"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Aina &päällimmäinen"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Tavallinen"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Aina &alimmainen"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "Siirrä &työtilaan"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Ikkunan valikko"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Pie&nennä"
+msgid "R&estore"
+msgstr "P&alauta"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Nosta &päällimmäiseksi"
+msgid "&Move"
+msgstr "S&iirrä"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "&Laske alimmaiseksi"
+msgid "Resi&ze"
+msgstr "&Muuta kokoa"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "Piirrä/poista &kehykset"
+msgid "Ico&nify"
+msgstr "Pie&nennä"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "S&iirrä"
+msgid "Ma&ximize"
+msgstr "Suurenn&a"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "&Muuta kokoa"
+msgid "&Roll up/down"
+msgstr "&Rullaa auki"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "Piirrä/poista &kehykset"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Sulje"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Hakemiston \"%s\" luonti epäonnistui: %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file tarvitsee parametrin\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id tarvitsee parametrin\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file tarvitsee parametrin\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Hakemiston \"%s\" luonti epäonnistui: %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Hakemiston \"%s\" luonti epäonnistui: %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "&Rullaa"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Nosta &päällimmäiseksi"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "&Laske alimmaiseksi"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id tarvitsee parametrin\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id tarvitsee parametrin\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file tarvitsee parametrin\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Xft:n käynnistys epäonnistui."
msgstr ""
"Project-Id-Version: Openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Aller à..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Bureaux"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "R&estaurer"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maximis&er"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Dé&rouler"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "En&rouler"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Tous les bureaux"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "E&mplacement"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Toujours au &premier plan"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Toujours en &arrière plan"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "Envoyer vers le &bureau"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menu de la fenêtre"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Ico&nifier"
+msgid "R&estore"
+msgstr "R&estaurer"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Mettre au &premier plan"
+msgid "&Move"
+msgstr "&Déplacer"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Mettre en &arrière plan"
+msgid "Resi&ze"
+msgstr "Redimen&sionner"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "Dé&corer"
+msgid "Ico&nify"
+msgstr "Ico&nifier"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "&Déplacer"
+msgid "Ma&ximize"
+msgstr "Maximis&er"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Redimen&sionner"
+msgid "&Roll up/down"
+msgstr "Dé&rouler"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "Dé&corer"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Fermer"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Impossible de créer le répertoire '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file requiert un argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id requiert un argument\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file requiert un argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Impossible de créer le répertoire '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Impossible de créer le répertoire '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "En&rouler"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Mettre au &premier plan"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Mettre en &arrière plan"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id requiert un argument\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id requiert un argument\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file requiert un argument\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Impossible d'initialiser Xft."
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Odi na..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Radne površine"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Ponovno uspostav&i"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maks&imiziraj"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Sp&usti dolje"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "Pov&uci gore"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Sve radne površine"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "&Razina"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Uvijek na &vrhu"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normalno"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Uvijek na &dnu"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "&Pošalji na radnu površinu"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Meni klijenta"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Iko&nificiraj"
+msgid "R&estore"
+msgstr "Ponovno uspostav&i"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Podigni na &vrh"
+msgid "&Move"
+msgstr "Po&makni"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Spusti na &dno"
+msgid "Resi&ze"
+msgstr "Prom&jeni veličinu"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "De&koriraj"
+msgid "Ico&nify"
+msgstr "Iko&nificiraj"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "Po&makni"
+msgid "Ma&ximize"
+msgstr "Maks&imiziraj"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Prom&jeni veličinu"
+msgid "&Roll up/down"
+msgstr "Sp&usti dolje"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "De&koriraj"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Zatvori"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Nemogu napraviti direktorij '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file zahtjeva argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id zahtjeva argument\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file zahtjeva argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Nemogu napraviti direktorij '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Nemogu napraviti direktorij '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "Pov&uci gore"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Podigni na &vrh"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Spusti na &dno"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id zahtjeva argument\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id zahtjeva argument\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file zahtjeva argument\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Nemogu pokrenuti Xft."
msgstr ""
"Project-Id-Version: Openbox 3.0\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "移動する..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "デスクトップ"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "リストア(&E)"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "最大化(&E)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "ロールダウン(&R)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "ロールアップ(&R)"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "すべてのデスクトップ(&A)"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "レイヤー(&L)"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "常に最上位にする(&T)"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "ノーマル(&N)"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "常に最下位にする(&B)"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "デスクトップに送る(&S)"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "クライアントメニュー"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "ã\82¢ã\82¤ã\82³ã\83³å\8c\96(&N)"
+msgid "R&estore"
+msgstr "ã\83ªã\82¹ã\83\88ã\82¢(&E)"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "最上位に上げる(&T)"
+msgid "&Move"
+msgstr "移動(&M)"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "最下位に下げる(&B)"
+msgid "Resi&ze"
+msgstr "リサイズ(&Z)"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "装飾(&D)"
+msgid "Ico&nify"
+msgstr "アイコン化(&N)"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "移動(&M)"
+msgid "Ma&ximize"
+msgstr "最大化(&E)"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "ã\83ªã\82µã\82¤ã\82º(&Z)"
+msgid "&Roll up/down"
+msgstr "ã\83ã\83¼ã\83«ã\83\80ã\82¦ã\83³(&R)"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "装飾(&D)"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "閉じる(&C)"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "ディレクトリ'%s'を作れません: %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:406
-#, fuzzy
-msgid " --sm-client-id ID Specify session management ID\n"
-msgstr "--sm-client-id には引数が必要です\n"
-
-#: openbox/openbox.c:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file には引数が必要です\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id には引数が必要です\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file には引数が必要です\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "ディレクトリ'%s'を作れません: %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "ディレクトリ'%s'を作れません: %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "ロールアップ(&R)"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "最上位に上げる(&T)"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "最下位に下げる(&B)"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id には引数が必要です\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id には引数が必要です\n"
+
+#~ msgid "--sm-save-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-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Gå dit"
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Skrivebord"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Tilbak&estill"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maxim&er"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "&Rull ned"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "&Rull opp"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Alle skrivebord"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "La&g"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Alltid ø&verst"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Alltid &nederst"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "&Send til"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Klient meny"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "&Minimer"
+msgid "R&estore"
+msgstr "Tilbak&estill"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Legg ø&verst"
+msgid "&Move"
+msgstr "&Flytt"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Legg &nederst"
+msgid "Resi&ze"
+msgstr "Endre s&tørrelse"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "&Dekorer"
+msgid "Ico&nify"
+msgstr "&Minimer"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "&Flytt"
+msgid "Ma&ximize"
+msgstr "Maxim&er"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Endre s&tørrelse"
+msgid "&Roll up/down"
+msgstr "&Rull ned"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "&Dekorer"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Lukk"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Kunde ikke lage katalogen '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file krever et argument\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id krever et argument\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file krever et argument\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Kunde ikke lage katalogen '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Kunde ikke lage katalogen '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "&Rull opp"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Legg ø&verst"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Legg &nederst"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id krever et argument\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id krever et argument\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file krever et argument\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Kunde ikke initialisere Xft."
msgstr ""
"Project-Id-Version: Openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Przejdź..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Pulpit"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Prz&ywróć"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maks&ymalizuj"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Ro&zwiń"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "&Zwiń"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Wszystkie pulpity"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "Warstwa"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Zawsze na &wierzchu"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normalnie"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Zawsze pod &spodem"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "Wyślij na &pulpit"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menu klienta"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Mi&nimalizuj"
+msgid "R&estore"
+msgstr "Prz&ywróć"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Wyślij na &wierzch"
+msgid "&Move"
+msgstr "Prz&esuń"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Wyślij na &spód"
+msgid "Resi&ze"
+msgstr "Zmień &rozmiar"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "&Obramówka"
+msgid "Ico&nify"
+msgstr "Mi&nimalizuj"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "Prz&esuń"
+msgid "Ma&ximize"
+msgstr "Maks&ymalizuj"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Zmień &rozmiar"
+msgid "&Roll up/down"
+msgstr "Ro&zwiń"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "&Obramówka"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "Z&amknij"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Nie mogę utworzyć katalogu '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file wymaga argumentu\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id wymaga argumentu\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file wymaga argumentu\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Nie mogę utworzyć katalogu '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Nie mogę utworzyć katalogu '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "&Zwiń"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Wyślij na &wierzch"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Wyślij na &spód"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id wymaga argumentu\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id wymaga argumentu\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file wymaga argumentu\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Błąd przy inicjalizacji Xft."
msgstr ""
"Project-Id-Version: Openbox 3.3\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Ir até..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Áreas de trabalho"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Rest&aurar"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "M&aximizar"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Desen&rolar"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "En&rolar"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Todas as áreas de trabalho"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "&Camada"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Sempre em &cima"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "&Normal"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Sempre no &fundo"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "&Enviar para área de trabalho"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menu de clientes"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Mi&nimizar"
+msgid "R&estore"
+msgstr "Rest&aurar"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Elevar ao &topo"
+msgid "&Move"
+msgstr "&Mover"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Baixar ao f&undo"
+msgid "Resi&ze"
+msgstr "Redimen&sionar"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "&Decorar"
+msgid "Ico&nify"
+msgstr "Mi&nimizar"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "&Mover"
+msgid "Ma&ximize"
+msgstr "M&aximizar"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Redimen&sionar"
+msgid "&Roll up/down"
+msgstr "Desen&rolar"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "&Decorar"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "&Fechar"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Incapaz de criar o directório '%s': %s "
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file requer um argumento\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id requer um argumento\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file requer um argumento\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Incapaz de criar o directório '%s': %s "
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Incapaz de criar o directório '%s': %s "
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "En&rolar"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Elevar ao &topo"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Baixar ao f&undo"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id requer um argumento\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id requer um argumento\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file requer um argumento\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Incapaz de inicializar Xft."
msgstr ""
"Project-Id-Version: openbox 3.2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Перейти..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Рабочие места"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Восстановить(&E)"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Развернуть на весь экран(&E)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Раскрутить(&R)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "Скрутить(&R)"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Все рабочие места"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "Расположить(&L)"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Всегда на переднем плане(&T)"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "Обычно(&N)"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Всегда на заднем плане(&B)"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "Переместить на рабочее место(&S)"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Меню клиента"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "СвеÑ\80нÑ\83Ñ\82Ñ\8c(&N)"
+msgid "R&estore"
+msgstr "Ð\92оÑ\81Ñ\81Ñ\82ановиÑ\82Ñ\8c(&E)"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Ð\9fоднÑ\8fÑ\82Ñ\8c на пеÑ\80едний план(&T)"
+msgid "&Move"
+msgstr "Ð\9fеÑ\80емеÑ\81Ñ\82иÑ\82Ñ\8c(&M)"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Ð\9eпÑ\83Ñ\81Ñ\82иÑ\82Ñ\8c на задний план(&B)"
+msgid "Resi&ze"
+msgstr "Ð\98змениÑ\82Ñ\8c Ñ\80азмеÑ\80(&Z)"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "УбÑ\80аÑ\82Ñ\8c оÑ\84оÑ\80мление(&D)"
+msgid "Ico&nify"
+msgstr "СвеÑ\80нÑ\83Ñ\82Ñ\8c(&N)"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "Ð\9fеÑ\80емеÑ\81Ñ\82иÑ\82Ñ\8c(&M)"
+msgid "Ma&ximize"
+msgstr "РазвеÑ\80нÑ\83Ñ\82Ñ\8c на веÑ\81Ñ\8c Ñ\8dкÑ\80ан(&E)"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Ð\98змениÑ\82Ñ\8c Ñ\80азмеÑ\80(&Z)"
+msgid "&Roll up/down"
+msgstr "РаÑ\81кÑ\80Ñ\83Ñ\82иÑ\82Ñ\8c(&R)"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "Убрать оформление(&D)"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "Закрыть(&C)"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Невозможно создать каталог '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:406
-#, fuzzy
-msgid " --sm-client-id ID Specify session management ID\n"
-msgstr "--sm-client-id требует параметр\n"
-
-#: openbox/openbox.c:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file требует параметр\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id требует параметр\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file требует параметр\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Невозможно создать каталог '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Невозможно создать каталог '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "Скрутить(&R)"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Поднять на передний план(&T)"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Опустить на задний план(&B)"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id требует параметр\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id требует параметр\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file требует параметр\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Не удалось инициализировать Xft."
msgstr ""
"Project-Id-Version: Openbox-3.3rc2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Prejsť na..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Plochy"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "Obnoviť"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "Maximalizovať"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "Rozvinúť"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "Zvinúť"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "Všetky plochy"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "Vrstva"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "Vždy navrchu"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "Normálna"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "Vždy dole"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "Poslať na plochu"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "Menu klienta"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "Do ikony"
+msgid "R&estore"
+msgstr "Obnoviť"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "Presunúť navrch"
+msgid "&Move"
+msgstr "Presunúť"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "Presunúť naspodok"
+msgid "Resi&ze"
+msgstr "Zmena veľkosti"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "Dekorácia"
+msgid "Ico&nify"
+msgstr "Do ikony"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "Presunúť"
+msgid "Ma&ximize"
+msgstr "Maximalizovať"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "Zmena veľkosti"
+msgid "&Roll up/down"
+msgstr "Rozvinúť"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "Dekorácia"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "Zavrieť"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Nebolo možné vytvoriť adresár '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: 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:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file vyžaduje parameter\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id vyžaduje parameter\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file vyžaduje parameter\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Nebolo možné vytvoriť adresár '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Nebolo možné vytvoriť adresár '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "Zvinúť"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "Presunúť navrch"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "Presunúť naspodok"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id vyžaduje parameter\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id vyžaduje parameter\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file vyžaduje parameter\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "Nepodarilo sa inicializovať Xft."
msgstr ""
"Project-Id-Version: openbox 3.4\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-05-06 13:44+0200\n"
+"POT-Creation-Date: 2007-05-08 00:55+0200\n"
"PO-Revision-Date: 2007-05-06 13:44+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:104
+#: openbox/action.c:922
+#, c-format
+msgid "Invalid action '%s' requested. No such action exists."
+msgstr "Ogiltig action '%s' efterfrågades, men finns inte."
+
+#: openbox/action.c:925
+#, c-format
+msgid "Invalid use of action '%s'. Action will be ignored."
+msgstr "Ogiltigt användande av action '%s', den kommer ignoreras."
+
+#: openbox/action.c:1154 openbox/action.c:1172 openbox/action.c:1185
+#, c-format
+msgid "Failed to execute '%s': %s"
+msgstr "Kunde inte exekvera '%s': %s"
+
+#: openbox/action.c:1193
+#, c-format
+msgid "Failed to convert the path '%s' from utf8"
+msgstr "Lyckades inte konvertera sökvägen '%s' från utf8"
+
+#: openbox/client_list_combined_menu.c:102 openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "Gå dit"
+#: openbox/client_list_combined_menu.c:147
+msgid "Windows"
+msgstr "Fönster"
+
#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "Skrivbord"
msgid "&Close"
msgstr "Stän&g"
-#: openbox/openbox.c:120
+#: openbox/config.c:664
+#, c-format
+msgid "Invalid button '%s' specified in config file"
+msgstr "Ogiltig knapp '%s' angiven i konfigurationsfilen"
+
+#: openbox/keyboard.c:160
+msgid "Conflict with key binding in config file"
+msgstr "Konflikt med annan tangentbindning i konfigurationsfilen"
+
+#: openbox/menu.c:98 openbox/menu.c:106
+#, c-format
+msgid "Unable to find a valid menu file '%s'"
+msgstr "Kunde inte hitta en giltig menyfil '%s'"
+
+#: openbox/menu.c:149
+#, c-format
+msgid "Failed to execute command for pipe-menu '%s': %s"
+msgstr "Misslyckades att köra kommando för pipe-menyn '%s': %s"
+
+#: openbox/menu.c:166
+#, c-format
+msgid "Invalid output from pipe-menu '%s'"
+msgstr "Ogiltig utdata från pipe-menyn '%s'"
+
+#: openbox/menu.c:179
+#, c-format
+msgid "Attempted to access menu '%s' but it does not exist"
+msgstr "Försökte öppna menyn '%s', men den finns inte"
+
+#: openbox/menu.c:331 openbox/menu.c:332
+msgid "More..."
+msgstr "Mer..."
+
+#: openbox/mouse.c:314 openbox/translate.c:95
+#, c-format
+msgid "Invalid button '%s' in mouse binding"
+msgstr "Ogiltig knapp '%s' i musbindning"
+
+#: openbox/mouse.c:320
+#, c-format
+msgid "Invalid context '%s' in mouse binding"
+msgstr "Ogiltig kontext '%s' i musbindning"
+
+#: openbox/openbox.c:119
+#, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "Kunde inte gå till hemkatalogen '%s': %s"
-#: openbox/openbox.c:173
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr "X-servern stödjer inte lokalisering."
-#: openbox/openbox.c:175
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:240
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr "Kunde inte hitta en giltig konfiguration, använder standardvärden"
-#: openbox/openbox.c:375
+#: openbox/openbox.c:376
+#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr "Restart misslyckades att starta nytt program '%s': %s"
-#: openbox/openbox.c:444 openbox/openbox.c:446
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:455
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr "Syntax: openbox [alternativ]\n"
-#: openbox/openbox.c:456
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
"\n"
"Alternativ:\n"
-#: openbox/openbox.c:457
+#: openbox/openbox.c:458
msgid " --config TYPE Specify the configuration profile to use\n"
-msgstr " --config TYP Ange vilken konfigurationsprofil som ska användas\n"
+msgstr ""
+" --config TYP Ange vilken konfigurationsprofil som ska användas\n"
-#: openbox/openbox.c:459
+#: openbox/openbox.c:460
msgid " --sm-disable Disable connection to the session manager\n"
msgstr " --sm-disable Avaktivera anslutning till sessions-hanteraren\n"
-#: openbox/openbox.c:461
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr " --replace Ersätt den befintliga fönsterhanteraren\n"
-#: openbox/openbox.c:462
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr " --help Visa den här hjälpen och avsluta\n"
-#: openbox/openbox.c:463
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr " --version Visa versionen och avsluta\n"
-#: openbox/openbox.c:464
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
"\n"
"Skicka meddelanden till en exekverande instans av Openbox:\n"
-#: openbox/openbox.c:465
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr " --reconfigure Ladda om Openbox konfiguration\n"
-#: openbox/openbox.c:466
-msgid ""
-"\n"
-"Options for internal use:\n"
-msgstr ""
-"\n"
-"Alternativ för intern användning:\n"
-
#: openbox/openbox.c:467
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr " --sm-save-file FIL Specifiera fil att ladda en sparad session från\n"
-
-#: openbox/openbox.c:468
-msgid " --sm-client-id ID Specify session management ID\n"
-msgstr " --sm-client-id ID Ange ett sessions-hanterings-ID\n"
-
-#: openbox/openbox.c:469
msgid ""
"\n"
"Debugging options:\n"
"\n"
"Debug-alternativ:\n"
-#: openbox/openbox.c:470
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr " --sync Kör i synkroniserat läge\n"
-#: openbox/openbox.c:471
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr " --debug Visa debuginformation\n"
-#: openbox/openbox.c:472
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr " --debug-focus Visa debuginformation för fokushantering\n"
-#: openbox/openbox.c:473
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"\n"
"Rapportera buggar till %s\n"
-#: openbox/openbox.c:531
+#: openbox/openbox.c:519
msgid "--config requires an argument\n"
msgstr "--config kräver ett argument\n"
-#: openbox/openbox.c:540
-msgid "--sm-save-file requires an argument\n"
-msgstr "--sm-save-file kräver ett argument\n"
+#: openbox/screen.c:85 openbox/screen.c:186
+#, c-format
+msgid "A window manager is already running on screen %d"
+msgstr "En fönsterhanterare körs redan på skärm %d"
-#: openbox/openbox.c:548
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id kräver ett argument\n"
+#: openbox/screen.c:122
+#, c-format
+msgid "Could not acquire window manager selection on screen %d"
+msgstr "Kunde inte erhålla fönsterhanterarmarkeringen på skärm %d"
+
+#: openbox/screen.c:143
+#, c-format
+msgid "The WM on screen %d is not exiting"
+msgstr "Fönsterhanteraren på skärm %d avslutar inte"
#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "Kunde inte skapa katalogen '%s': %s"
-#: openbox/session.c:425
+#: openbox/session.c:426
#, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "Kunde inte spara sessionen till '%s': %s"
-#: openbox/session.c:533
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr "Fel inträffade när sessionen skulle sparas till '%s': %s"
+
+#: openbox/startupnotify.c:240
+#, c-format
+msgid "Running %s\n"
+msgstr "Kör %s\n"
+
+#: openbox/translate.c:58
+#, c-format
+msgid "Invalid modifier key '%s' in key/mouse binding"
+msgstr "Ogiltig modifikationstangent '%s' i tangent/musbindning"
+
+#: openbox/translate.c:137
+#, c-format
+msgid "Invalid key code '%s' in key binding"
+msgstr "Ogiltig tangentkod '%s' i tantentbindning"
+
+#: openbox/translate.c:144
+#, c-format
+msgid "Invalid key name '%s' in key binding"
+msgstr "Ogiltigt tangentnamn '%s' i tangentbindning"
+
+#: openbox/translate.c:150
+#, c-format
+msgid "Requested key '%s' does not exist on the display"
+msgstr "Efterfrågad tangent '%s' finns inte på displayen"
+
+#: openbox/xerror.c:39
+#, c-format
+msgid "X Error: %s"
+msgstr "X Fel: %s"
msgstr ""
"Project-Id-Version: openbox 3.3rc2\n"
"Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-26 11:53-0400\n"
+"POT-Creation-Date: 2007-05-07 18:50-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:98
+#: openbox/client_list_menu.c:104
msgid "Go there..."
msgstr "到那裡去..."
-#: openbox/client_list_menu.c:189
+#: openbox/client_list_menu.c:198
msgid "Desktops"
msgstr "桌面"
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Restor&e"
-msgstr "還原(&E)"
-
-#: openbox/client_menu.c:75
-#, fuzzy
-msgid "Maximiz&e"
-msgstr "最大化(&E)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll down"
-msgstr "向下捲動(&R)"
-
-#: openbox/client_menu.c:80
-#, fuzzy
-msgid "&Roll up"
-msgstr "向上捲動(&R)"
-
-#: openbox/client_menu.c:142
+#: openbox/client_menu.c:149
msgid "All desktops"
msgstr "所有桌面(&A)"
-#: openbox/client_menu.c:229
+#: openbox/client_menu.c:247
#, fuzzy
msgid "&Layer"
msgstr "圖層(&L)"
-#: openbox/client_menu.c:235
+#: openbox/client_menu.c:253
#, fuzzy
msgid "Always on &top"
msgstr "最上層(&T)"
-#: openbox/client_menu.c:240
+#: openbox/client_menu.c:258
#, fuzzy
msgid "&Normal"
msgstr "一般(&N)"
-#: openbox/client_menu.c:245
+#: openbox/client_menu.c:263
#, fuzzy
msgid "Always on &bottom"
msgstr "最下層(&B)"
-#: openbox/client_menu.c:248
+#: openbox/client_menu.c:266
#, fuzzy
msgid "&Send to desktop"
msgstr "傳送到桌面(&S)"
-#: openbox/client_menu.c:252
+#: openbox/client_menu.c:270
msgid "Client menu"
msgstr "客戶端選單"
-#: openbox/client_menu.c:263
+#: openbox/client_menu.c:278
#, fuzzy
-msgid "Ico&nify"
-msgstr "最小化(&N)"
+msgid "R&estore"
+msgstr "還原(&E)"
-#: openbox/client_menu.c:280
+#: openbox/client_menu.c:288
#, fuzzy
-msgid "Raise to &top"
-msgstr "提到最上層(&T)"
+msgid "&Move"
+msgstr "移動(&M)"
-#: openbox/client_menu.c:284
+#: openbox/client_menu.c:292
#, fuzzy
-msgid "Lower to &bottom"
-msgstr "é\99\8då\88°æ\9c\80ä¸\8b層(&B)"
+msgid "Resi&ze"
+msgstr "é\87\8dæ\96°èª¿æ\95´å¤§å°\8f(&Z)"
-#: openbox/client_menu.c:297
+#: openbox/client_menu.c:296
#, fuzzy
-msgid "&Decorate"
-msgstr "裝飾(&D)"
+msgid "Ico&nify"
+msgstr "最小化(&N)"
-#: openbox/client_menu.c:303
+#: openbox/client_menu.c:307
#, fuzzy
-msgid "&Move"
-msgstr "移動(&M)"
+msgid "Ma&ximize"
+msgstr "最大化(&E)"
-#: openbox/client_menu.c:307
+#: openbox/client_menu.c:317
#, fuzzy
-msgid "Resi&ze"
-msgstr "重新調整大小(&Z)"
+msgid "&Roll up/down"
+msgstr "向下捲動(&R)"
-#: openbox/client_menu.c:313
+#: openbox/client_menu.c:328
+#, fuzzy
+msgid "Un/&Decorate"
+msgstr "裝飾(&D)"
+
+#: openbox/client_menu.c:340
#, fuzzy
msgid "&Close"
msgstr "關閉(&C)"
-#: openbox/openbox.c:106
-msgid "Couldn't set locale from environment."
-msgstr ""
-
-#: openbox/openbox.c:114
+#: openbox/openbox.c:119
#, fuzzy, c-format
msgid "Unable to change to home directory '%s': %s"
msgstr "無法製作目錄 '%s': %s"
-#: openbox/openbox.c:165
+#: openbox/openbox.c:174
msgid "X server does not support locale."
msgstr ""
-#: openbox/openbox.c:167
+#: openbox/openbox.c:176
msgid "Cannot set locale modifiers for the X server."
msgstr ""
-#: openbox/openbox.c:229
+#: openbox/openbox.c:241
msgid "Unable to find a valid config file, using some simple defaults"
msgstr ""
-#: openbox/openbox.c:350
+#: openbox/openbox.c:376
#, c-format
msgid "Restart failed to execute new executable '%s': %s"
msgstr ""
-#: openbox/openbox.c:390 openbox/openbox.c:392
+#: openbox/openbox.c:445 openbox/openbox.c:447
msgid "Copyright (c)"
msgstr ""
-#: openbox/openbox.c:401
+#: openbox/openbox.c:456
msgid "Syntax: openbox [options]\n"
msgstr ""
-#: openbox/openbox.c:402
+#: openbox/openbox.c:457
msgid ""
"\n"
"Options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:403
-msgid " --config-file FILE Specify the file to load for the config file\n"
+#: openbox/openbox.c:458
+msgid " --config TYPE Specify the configuration profile to use\n"
msgstr ""
-#: openbox/openbox.c:405
-msgid " --sm-disable Disable connection to session manager\n"
+#: openbox/openbox.c:460
+msgid " --sm-disable Disable connection to the session manager\n"
msgstr ""
-#: openbox/openbox.c:406
-#, fuzzy
-msgid " --sm-client-id ID Specify session management ID\n"
-msgstr "--sm-client-id 要求引數\n"
-
-#: openbox/openbox.c:407
-msgid " --sm-save-file FILE Specify file to load a saved session from\n"
-msgstr ""
-
-#: openbox/openbox.c:409
+#: openbox/openbox.c:462
msgid " --replace Replace the currently running window manager\n"
msgstr ""
-#: openbox/openbox.c:410
+#: openbox/openbox.c:463
msgid " --help Display this help and exit\n"
msgstr ""
-#: openbox/openbox.c:411
+#: openbox/openbox.c:464
msgid " --version Display the version and exit\n"
msgstr ""
-#: openbox/openbox.c:412
+#: openbox/openbox.c:465
msgid ""
"\n"
"Passing messages to a running Openbox instance:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:413
+#: openbox/openbox.c:466
msgid " --reconfigure Reload Openbox's configuration\n"
msgstr ""
-#: openbox/openbox.c:414
+#: openbox/openbox.c:467
msgid ""
"\n"
"Debugging options:\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:415
+#: openbox/openbox.c:468
msgid " --sync Run in synchronous mode\n"
msgstr ""
-#: openbox/openbox.c:416
+#: openbox/openbox.c:469
msgid " --debug Display debugging output\n"
msgstr ""
-#: openbox/openbox.c:417
+#: openbox/openbox.c:470
msgid " --debug-focus Display debugging output for focus handling\n"
msgstr ""
-#: openbox/openbox.c:418
+#: openbox/openbox.c:471
#, c-format
msgid ""
"\n"
"Please report bugs at %s\n"
-"\n"
msgstr ""
-#: openbox/openbox.c:449
+#: openbox/openbox.c:519
#, fuzzy
-msgid "--config-file requires an argument\n"
-msgstr "--sm-save-file 要求引數\n"
-
-#: openbox/session.c:124
-msgid "--sm-client-id requires an argument\n"
-msgstr "--sm-client-id 要求引數\n"
-
-#: openbox/session.c:132
-msgid "--sm-save-file requires an argument\n"
+msgid "--config requires an argument\n"
msgstr "--sm-save-file 要求引數\n"
-#: openbox/session.c:168
+#: openbox/session.c:100
#, c-format
msgid "Unable to make directory '%s': %s"
msgstr "無法製作目錄 '%s': %s"
-#: openbox/session.c:343
+#: openbox/session.c:426
#, fuzzy, c-format
msgid "Unable to save the session to '%s': %s"
msgstr "無法製作目錄 '%s': %s"
-#: openbox/session.c:433
+#: openbox/session.c:534
#, c-format
msgid "Error while saving the session to '%s': %s"
msgstr ""
+#, fuzzy
+#~ msgid "&Roll up"
+#~ msgstr "向上捲動(&R)"
+
+#, fuzzy
+#~ msgid "Raise to &top"
+#~ msgstr "提到最上層(&T)"
+
+#, fuzzy
+#~ msgid "Lower to &bottom"
+#~ msgstr "降到最下層(&B)"
+
+#, fuzzy
+#~ msgid " --sm-client-id ID Specify session management ID\n"
+#~ msgstr "--sm-client-id 要求引數\n"
+
+#~ msgid "--sm-client-id requires an argument\n"
+#~ msgstr "--sm-client-id 要求引數\n"
+
+#~ msgid "--sm-save-file requires an argument\n"
+#~ msgstr "--sm-save-file 要求引數\n"
+
#~ msgid "Couldn't initialize Xft."
#~ msgstr "無法初始化 Xft。"