merge r6154-6163 from trunk
authorDana Jansens <danakj@orodu.net>
Tue, 8 May 2007 00:08:51 +0000 (00:08 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 8 May 2007 00:08:51 +0000 (00:08 +0000)
24 files changed:
openbox/client.c
openbox/client.h
openbox/client_menu.c
openbox/menu.c
openbox/menu.h
openbox/menuframe.c
openbox/mouse.c
openbox/translate.c
po/ca.po
po/de.po
po/en@boldquot.po
po/en@quot.po
po/es.po
po/fi.po
po/fr.po
po/hr.po
po/ja.po
po/no.po
po/pl.po
po/pt.po
po/ru.po
po/sk.po
po/sv.po
po/zh_TW.po

index 47bfcabcb5ff6a547f2e7287fe124d47ca68ec5c..54ae99fcceb074949c4a97850ae57fdfa7fff4fa 100644 (file)
 
 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);
@@ -105,20 +106,20 @@ void client_shutdown(gboolean reconfig)
 {
 }
 
-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);
@@ -127,6 +128,29 @@ void client_remove_destructor(ObClientDestructor func)
     }
 }
 
+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;
@@ -533,7 +557,7 @@ void client_unmanage(ObClient *self)
         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);
     }
 
@@ -3001,6 +3025,13 @@ void client_set_desktop_recursive(ObClient *self,
             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 */
index b046e665d9314d553a30b23e75b336092695c901..d902f72a5d1ee8bc34f8097bac4fcf5fd8545035 100644 (file)
@@ -300,10 +300,17 @@ extern GList *client_list;
 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();
index da6ac2d9994ae9a81ae117c4161a3e66688be816..11e31965d68f5ce5a7e792af193c5eb71b86e029 100644 (file)
@@ -125,7 +125,7 @@ static gboolean send_to_update(ObMenuFrame *frame, gpointer data)
     guint i;
     GSList *acts;
     ObAction *act;
-    ObMenuEntry *e;;
+    ObMenuEntry *e;
 
     menu_clear_entries(menu);
 
@@ -169,6 +169,25 @@ static gboolean send_to_update(ObMenuFrame *frame, gpointer data)
     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)
 {
@@ -259,6 +278,8 @@ void client_menu_startup()
 
     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);
index 37601881eb0567264befe612fc80773e57bf364f..da9ba6b851aa2889eaf0b9b92308811b123284bd 100644 (file)
@@ -328,8 +328,8 @@ ObMenu* menu_new(const gchar *name, const gchar *title,
     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"));
 
@@ -528,6 +528,16 @@ ObMenuEntry* menu_add_separator(ObMenu *self, gint id, const gchar *label)
     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;
index f66e423e9ce0ac3a3360f59fffb1baf1f45a6e1a..9fc84bb8706f3916d97dc7ddbd93e53bdc7cb8d7 100644 (file)
@@ -37,6 +37,8 @@ typedef struct _ObNormalMenuEntry ObNormalMenuEntry;
 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,
@@ -75,6 +77,8 @@ struct _ObMenu
     /* plugin data */
     gpointer data;
 
+    ObMenuShowFunc show_func;
+    ObMenuHideFunc hide_func;
     ObMenuUpdateFunc update_func;
     ObMenuExecuteFunc execute_func;
     ObMenuDestroyFunc destroy_func;
@@ -166,6 +170,8 @@ void menu_show_all_shortcuts(ObMenu *self, gboolean show);
 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);
index b04fda55a746579a7f75fbf1047fdcf2b63890ce..01d3ae1ff308b6c3b5513c619f637e740ef4f239 100644 (file)
@@ -824,6 +824,68 @@ static void menu_frame_update(ObMenuFrame *self)
         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
@@ -922,6 +984,9 @@ static gboolean menu_frame_show(ObMenuFrame *self)
 
     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;
 }
 
@@ -1004,6 +1069,9 @@ void menu_frame_hide(ObMenuFrame *self)
     if (!it)
         return;
 
+    if (self->menu->hide_func)
+        self->menu->hide_func(self, self->menu->data);
+
     if (self->child)
         menu_frame_hide(self->child);
 
index 27172d525c614c7933b297d1f9108e3947c7edd6..522eba8cbf9c8ccb27b241ae330c8ad4ab6c4083 100644 (file)
@@ -311,13 +311,13 @@ gboolean mouse_bind(const gchar *buttonstr, const gchar *contextstr,
     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;
     }
 
index 1ef8e7d58ed4b17dd81a268bc4e1818c8d5800f1..a9ff3e264c0cf774588235766a7d3ebaab42fefe 100644 (file)
@@ -55,7 +55,7 @@ static guint translate_modifier(gchar *str)
              !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;
 }
@@ -91,10 +91,8 @@ gboolean translate_button(const gchar *str, guint *state, guint *button)
     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;
 
index 35ec399b3b0d98aebafd56c705609fcea3884d45..07ab21c527cd7d2fc88c86924ff1ff745fc8ce61 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index 6aea8ac3ca822b2b50377316791928e321dbe6cf..e8e0ec811cf07e6fe6ba1bdd64151459a05b3220 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,259 +15,255 @@ msgstr ""
 "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"
 
index 69ad918687787701917865772ac5d8265c3320b6..c34f5a020d237d4fe5f9f2a5ea210142ae7e2283 100644 (file)
@@ -32,8 +32,8 @@ msgid ""
 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"
@@ -41,228 +41,188 @@ msgstr ""
 "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"
index b5b7767960f0a2e2a602ee8c63cd1ccfdea9dba1..15c8df194dc5175ff67b8e6b88d45c482f0e8099 100644 (file)
@@ -29,8 +29,8 @@ msgid ""
 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"
@@ -38,228 +38,188 @@ msgstr ""
 "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"
index be4cf99d7921c40e29b667a2d9120f21a6d7eef2..e309266fe0e7f38954c445527d0b71f60b268593 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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 ú&ltimo 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 ú&ltimo 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."
 
index 88376780e6e58e60f8a4160b2cc5b3b3d52af3f6..4e29a1908961c3faee333d16ef2e348b3df9f039 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index c67d31cc51e1794607719eb3f48c1a0bc9d8880b..3c7d7c5555cb28b51a904ee16aa75e408fa13986 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index 634830ae2ea2a4e2ae01f87781f91bf689492642..82240c99d6450cf1dcb66592616cf21178e18ede 100644 (file)
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index cc370ac20b89d16892b1d1ba417011a96ea570e8..9d2a597b46c5cf8eb3dbb1e9f7aff2c5c05c2434 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.0\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,234 +15,216 @@ msgstr ""
 "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"
index fe8a40d3c3eb5d89336bc7ea85db6c3826e2a38d..fab84ade24c4891699d706052aef78eb06a00167 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index db625cfbf047eab9eb474f76e41afbfdb7d6c2f3..cd93c359297885ada41bf69f9c2cfaa800f74783 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index 5c2af2f658f694d22b697c861ea955fcfdada3e8..d76772b39a2d90704ae597e3d62c10c626f0384a 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index 0a87c478b72f9f70b0a3b8e0c9408abba74fe1bf..342950323c985700010b016c80056a8a2a5c5643 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index 79cb47446e15557cec6c4740e31389cbe6143e02..0d2de6b776a73f8d7fa250adaad63e7f88d0f361 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox-3.3rc2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -15,238 +15,220 @@ msgstr ""
 "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."
 
index f184d894fbe07531ed6fab69dc5ece2471d07f02..1cea492c6508c340493b3a04adb5dbc933ab15cb 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 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"
@@ -15,10 +15,34 @@ msgstr ""
 "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"
@@ -83,35 +107,80 @@ msgstr "(Av)&Dekorera"
 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"
@@ -119,27 +188,28 @@ msgstr ""
 "\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"
@@ -147,27 +217,11 @@ msgstr ""
 "\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"
@@ -175,19 +229,19 @@ msgstr ""
 "\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"
@@ -196,29 +250,66 @@ msgstr ""
 "\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"
index 6c6580b14c3bd1256813aa6b9e70fc96303f2af6..e4c7ee3f6a07608afe4081da619ebecd8dc625d5 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.3rc2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2007-04-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"
@@ -16,238 +16,220 @@ msgstr ""
 "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。"