Merge branch 'backport' into work
authorDana Jansens <danakj@orodu.net>
Thu, 28 Feb 2008 02:07:10 +0000 (21:07 -0500)
committerDana Jansens <danakj@orodu.net>
Thu, 28 Feb 2008 02:07:10 +0000 (21:07 -0500)
Conflicts:

openbox/actions/execute.c

31 files changed:
openbox/actions/execute.c
openbox/actions/exit.c
po/POTFILES.in
po/ar.po
po/bn_IN.po
po/ca.po
po/cs.po
po/de.po
po/en@boldquot.po
po/en@quot.po
po/es.po
po/et.po
po/eu.po
po/fi.po
po/fr.po
po/hu.po
po/it.po
po/ja.po
po/nl.po
po/no.po
po/openbox.pot
po/pl.po
po/pt.po
po/pt_BR.po
po/ru.po
po/sk.po
po/sv.po
po/ua.po
po/vi.po
po/zh_CN.po
po/zh_TW.po

index ff73bf2..fa66a48 100644 (file)
@@ -1,6 +1,7 @@
 #include "openbox/actions.h"
 #include "openbox/event.h"
 #include "openbox/startupnotify.h"
+#include "openbox/prompt.h"
 #include "openbox/screen.h"
 #include "obt/paths.h"
 #include "gettext.h"
@@ -15,6 +16,7 @@ typedef struct {
     gchar   *sn_name;
     gchar   *sn_icon;
     gchar   *sn_wmclass;
+    gchar   *prompt;
 } Options;
 
 static gpointer setup_func(xmlNodePtr node);
@@ -48,6 +50,9 @@ static gpointer setup_func(xmlNodePtr node)
         g_free(s);
     }
 
+    if ((n = obt_parse_find_node(node, "prompt")))
+        o->prompt = obt_parse_node_string(n);
+
     if ((n = obt_parse_find_node(node, "startupnotify"))) {
         xmlNodePtr m;
         if ((m = obt_parse_find_node(n->children, "enabled")))
@@ -75,6 +80,36 @@ static void free_func(gpointer options)
     }
 }
 
+static Options* dup_options(Options *in)
+{
+    Options *o = g_new(Options, 1);
+    o->cmd = g_strdup(in->cmd);
+    o->sn = in->sn;
+    o->sn_name = g_strdup(in->sn_name);
+    o->sn_icon = g_strdup(in->sn_icon);
+    o->sn_wmclass = g_strdup(in->sn_wmclass);
+    o->prompt = NULL;
+    return o;
+}
+
+static gboolean run_func(ObActionsData *data, gpointer options);
+
+static void prompt_cb(ObPrompt *p, gint result, gpointer data)
+{
+    Options *options = data;
+
+    if (result)
+        run_func(NULL, options);
+
+    prompt_unref(p);
+
+    g_free(options->cmd);
+    g_free(options->sn_name);
+    g_free(options->sn_icon);
+    g_free(options->sn_wmclass);
+    g_free(options);
+}
+
 /* Always return FALSE because its not interactive */
 static gboolean run_func(ObActionsData *data, gpointer options)
 {
@@ -84,6 +119,22 @@ static gboolean run_func(ObActionsData *data, gpointer options)
     Options *o = options;
 
     if (!o->cmd) return FALSE;
+
+    if (o->prompt) {
+        ObPrompt *p;
+        Options *ocp;
+        ObPromptAnswer answers[] = {
+            { _("No"), 0 },
+            { _("Yes"), 1 }
+        };
+
+        ocp = dup_options(options);
+        p = prompt_new(o->prompt, answers, 2, 0, 0, prompt_cb, ocp);
+        prompt_show(p, NULL, FALSE);
+
+        return FALSE;
+    }
+
     cmd = g_filename_from_utf8(o->cmd, -1, NULL, NULL, NULL);
     if (!cmd) {
         g_message(_("Failed to convert the path \"%s\" from utf8"), o->cmd);
index 662c984..f5af8a1 100644 (file)
@@ -1,20 +1,58 @@
 #include "openbox/actions.h"
 #include "openbox/openbox.h"
+#include "openbox/prompt.h"
+#include "gettext.h"
 
+typedef struct {
+    gboolean prompt;
+} Options;
+
+static gpointer setup_func(xmlNodePtr node);
 static gboolean run_func(ObActionsData *data, gpointer options);
 
 void action_exit_startup(void)
 {
-    actions_register("Exit",
-                     NULL, NULL,
-                     run_func,
-                     NULL, NULL);
+    actions_register("Exit", setup_func, NULL, run_func, NULL, NULL);
+}
+
+static gpointer setup_func(xmlNodePtr node)
+{
+    xmlNodePtr n;
+    Options *o;
+
+    o = g_new0(Options, 1);
+
+    if ((n = obt_parse_find_node(node, "prompt")))
+        o->prompt = obt_parse_node_bool(n);
+
+    return o;
+}
+
+static void prompt_cb(ObPrompt *p, gint result, gpointer data)
+{
+    if (result)
+        ob_exit(0);
+    prompt_unref(p);
 }
 
 /* Always return FALSE because its not interactive */
 static gboolean run_func(ObActionsData *data, gpointer options)
 {
-    ob_exit(0);
+    Options *o = options;
+
+    if (o->prompt) {
+        ObPrompt *p;
+        ObPromptAnswer answers[] = {
+            { _("No"), 0 },
+            { _("Yes"), 1 }
+        };
+
+        p = prompt_new(_("Are you sure you want to exit Openbox?"),
+                       answers, 2, 0, 0, prompt_cb, NULL);
+        prompt_show(p, NULL, FALSE);
+    }
+    else
+        ob_exit(0);
 
     return FALSE;
 }
index 6de409f..200e9ca 100644 (file)
@@ -1,6 +1,7 @@
 # List of source files containing translatable strings.
 openbox/actions.c
 openbox/actions/execute.c
+openbox/actions/exit.c
 openbox/client.c
 openbox/client_list_combined_menu.c
 openbox/client_list_menu.c
index f67740d..bf4062a 100644 (file)
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-07-21 14:43+0300\n"
 "Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
 "Language-Team: Arabic <doc@arabeyes.org>\n"
@@ -23,16 +23,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "فشلت في تحويل المسار \"%s\" من utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "فشلت في تنفيذ \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index c147bd0..a95364f 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-06-01 19:02+0530\n"
 "Last-Translator: Runa Bhattacharjee <runabh@gmail.com>\n"
 "Language-Team: Bengali (India) <en@li.org>\n"
@@ -23,16 +23,28 @@ msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 "অবৈধ কর্ম \"%s\"-র অনুরোধ জানানো হয়েছে। এই ধরনের কোনো কর্ম বর্তমানে উপস্থিত নেই।"
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "\"%s\" পাথটি utf8 থেকে রূপান্তর করতে ব্যর্থ"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "\"%s\" সঞ্চালন করতে ব্যর্থ: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 1433e96..0b2cbc0 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-05-28 15:54+0200\n"
 "Last-Translator: David Majà Martínez <davidmaja@gmail.com>\n"
 "Language-Team: catalan\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "L'acció sollicitada \"%s\" no és vàlida. Aquesta acció no existeix."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "No s'ha pogut convertir el camí \"%s\" des de utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "No s'ha pogut executar \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 0a85987..137e5dd 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-02-09 09:33+0100\n"
 "Last-Translator: tezlo <tezlo@gmx.net>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Požadována neplatná akce \"%s\". Žádná taková akce neexistuje."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Nepodařilo se převést cestu \"%s\" z utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Nepodařilo se spustit \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 81fe366..db26601 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-17 22:49+0100\n"
 "Last-Translator: Finn Zirngibl <finn@s23.org>\n"
 "Language-Team:  <de@li.org>\n"
@@ -23,16 +23,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Unzulässige Aktion \"%s\" angefordert. Diese Aktion existiert nicht."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Konnte Pfad \"%s\" nicht von utf8 konvertieren"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Konnte \"%s\" nicht ausführen: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index ff46551..2914136 100644 (file)
@@ -32,8 +32,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.999.0\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
-"PO-Revision-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
+"PO-Revision-Date: 2008-02-27 21:03-0500\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "MIME-Version: 1.0\n"
@@ -46,16 +46,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Invalid action “\e[1m%s\e[0m” requested. No such action exists."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "No"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "Yes"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Failed to convert the path “\e[1m%s\e[0m” from utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Failed to execute “\e[1m%s\e[0m”: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr "Are you sure you want to exit Openbox?"
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr "Unnamed Window"
index 89e94aa..643e308 100644 (file)
@@ -29,8 +29,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: openbox 3.999.0\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
-"PO-Revision-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
+"PO-Revision-Date: 2008-02-27 21:03-0500\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
 "MIME-Version: 1.0\n"
@@ -43,16 +43,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Invalid action “%s” requested. No such action exists."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "No"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "Yes"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Failed to convert the path “%s” from utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Failed to execute “%s”: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr "Are you sure you want to exit Openbox?"
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr "Unnamed Window"
index af8bbe0..71e06a4 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-02-19 00:15+0100\n"
 "Last-Translator: Elián Hanisch <lambdae2@gmail.com>\n"
 "Language-Team: español <es@li.org>\n"
@@ -24,16 +24,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "La acción \"%s\" solicitada es inválida. No existe tal acción."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "No"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "Sí"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Falló al convertir la ruta \"%s\" desde utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Falló al ejecutar \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
@@ -430,11 +442,5 @@ msgstr "Error en X: %s"
 msgid "OK"
 msgstr "OK"
 
-#~ msgid "No"
-#~ msgstr "No"
-
-#~ msgid "Yes"
-#~ msgstr "Sí"
-
 #~ msgid "Invalid use of action \"%s\". Action will be ignored."
 #~ msgstr "Uso inválido de la acción \"%s\". La acción sera ignorada."
index 23d580a..d2798d3 100644 (file)
--- a/po/et.po
+++ b/po/et.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-07-20 16:54+0200\n"
 "Last-Translator: Andres Järv <andresjarv@gmail.com>\n"
 "Language-Team: Estonian <et@li.org>\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Taotleti kehtetut käsklust \"%s\". Sellist käsklust pole olemas."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Raja \"%s\" ümberkodeerimine UTF8-st ebaõnnestus"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "\"%s\" käivitamine ebaõnnestus: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index f48499a..e68d72c 100644 (file)
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-19 14:34+0100\n"
 "Last-Translator: Inko I. A. <inkoia@gmail.com>\n"
 "Language-Team: Inko I. A. <inkoia@gmail.com>\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Eskatutako \"%s\" ekintza baliogabea. Ez da ekintza hori existitzen."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Hutsegitea \"%s\" helbidea utf8-tik bihurtzean"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Hutsegitea \"%s\" exekutatzean: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 21dd52f..7ab8c62 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-02-20 20:58+0200\n"
 "Last-Translator: Elias Julkunen <elias.julkunen@gmail.com>\n"
 "Language-Team: None\n"
@@ -23,16 +23,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Pyydettiin virheellinen toiminto \"%s\". Toimintoa ei ole olemassa."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "Ei"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "Kyllä"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Polun \"%s\" muuntaminen utf8:sta epäonnistui"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Ohjelman \"%s\" suorittaminen epäonnistui: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
@@ -418,9 +430,3 @@ msgstr "X-virhe: %s"
 #: openbox/prompt.c:182
 msgid "OK"
 msgstr "OK"
-
-#~ msgid "No"
-#~ msgstr "Ei"
-
-#~ msgid "Yes"
-#~ msgstr "Kyllä"
index 3dfdbe0..a49db83 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-17 22:53+0100\n"
 "Last-Translator: Cyrille Bagard <nocbos@gmail.com>\n"
 "Language-Team: français <fr@li.org>\n"
@@ -24,16 +24,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Action demandée invalide \"%s\". Une telle action n'existe pas."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Échec de la conversion du chemin « %s » depuis l'UTF-8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Échec de l'exécution de « %s » : %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 56506eb..8f20656 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-12-21 14:33+0100\n"
 "Last-Translator: Robert Kuszinger <hiding@freemail.hu>\n"
 "Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Az útvonalat nem sikerült átalakítani utf8-ból: \"%s\""
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Nem sikerült futtatni ezt a programot \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index dd232b3..53fc742 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-07-20 15:18+0200\n"
 "Last-Translator: Davide Truffa <davide@catoblepa.org>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Impossibile convertire il percorso utf8 \"%s\""
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Impossibile eseguire il comando \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index e152a97..e9b7a99 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-06-07 14:49+0200\n"
 "Last-Translator: Ryoichiro Suzuki <ryoichiro.suzuki@gmail.com>\n"
 "Language-Team: Japanese <ja@li.org>\n"
@@ -23,16 +23,28 @@ msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 "不正なアクション\"%s\"が要求されました。そのようなアクションは存在しません。"
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "パス\"%s\"を utf8 から変換するのに失敗しました。"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "\"%s\"の実行に失敗しました: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 2108d37..7eeb363 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-07-12 13:01+0200\n"
 "Last-Translator: Marvin Vek\n"
 "Language-Team: Dutch <nl@li.org>\n"
@@ -22,16 +22,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Ongeldige actie \"%s\" gevraagd. Deze actie bestaat niet"
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Converteren van het pad \"%s\" vanuit utf8 mislukt"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Uitvoeren van \"%s\" mislukt: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 6a64f78..5899cb5 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-29 13:37+0100\n"
 "Last-Translator: Michael Kjelbergvik Thung <postlogic@gmail.com>\n"
 "Language-Team: None\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Ugyldig operasjon \"%s\" etterspurt. Operasjonen finnes ikke."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Feil ved konvertering av \"%s\" fra utf8 "
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Kunne ikke kjøre \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 20a9d63..0845175 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr ""
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr ""
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 39df39e..a17cd27 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-07-14 00:43+0200\n"
 "Last-Translator: Piotr Drąg <raven@pmail.pl>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -22,16 +22,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr ""
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Nie można przekonwertować ścieżki \"%s\" z UTF-8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Wykonanie \"%s\" nie powiodło się: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index fde95ae..1588641 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-22 22:17+0100\n"
 "Last-Translator: Althaser <Althaser@gmail.com>\n"
 "Language-Team: None\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Pedido de acção \"%s\" inválido. Não existem quaisquer acções."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Falha a converter o caminho \"%s\" do utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Falha a executar \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 2c799f2..a910145 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-22 21:42+0100\n"
 "Last-Translator: Og Maciel <ogmaciel@gnome.org>\n"
 "Language-Team: Brazilian Portuguese <gnome-l10n-br@listas.cipsga.org.br>\n"
@@ -22,16 +22,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Ação inválida \"%s\" requisitada. Ação não existe."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Falha ao converter o caminho \"%s\" do utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Falha ao executar \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index a6e12fc..8acfdf1 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-22 07:56+0100\n"
 "Last-Translator: Nikita Bukhvostov <dragon.djanic@gmail.com>\n"
 "Language-Team: Russian <ru@li.org>\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Запрошенное действие \"%s\" не найдено."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Не удалось сконвертировать путь \"%s\" из utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Не удалось запустить \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index edefd81..19daf5e 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox-3.4.3\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-12-7 13:43Central Europe Daylight Time\n"
 "Last-Translator: Jozef Riha <jose1711@gmail.com\n"
 "Language-Team: Slovak <sk@sk.org>\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Vyžiadaná neplatná akcia \"%s\". Takáto akcia neexistuje."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Nepodarilo sa skonvertovať cestu \"%s\" z utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Nepodarilo sa spustiť \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 3b89e78..0548ac6 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-02-27 04:53+0100\n"
 "Last-Translator: Mikael Magnusson <mikachu@icculus.org>\n"
 "Language-Team: None\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Ogiltig action \"%s\" efterfrågades, men den finns inte."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "Nej"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "Ja"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Lyckades inte konvertera sökvägen \"%s\" från utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Kunde inte exekvera \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr "Namnlöst Fönster"
@@ -415,11 +427,5 @@ msgstr "X-fel: %s"
 msgid "OK"
 msgstr "OK"
 
-#~ msgid "No"
-#~ msgstr "Nej"
-
-#~ msgid "Yes"
-#~ msgstr "Ja"
-
 #~ msgid "Invalid use of action \"%s\". Action will be ignored."
 #~ msgstr "Ogiltigt användande av action \"%s\", den kommer ignoreras."
index 3ab1939..f34dc7f 100644 (file)
--- a/po/ua.po
+++ b/po/ua.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.2\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2007-06-16 13:02+0200\n"
 "Last-Translator: Dmitriy Moroz <zux@dimaka.org.ua>\n"
 "Language-Team: Ukrainian <root@archlinux.org.ua>\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Здійснено запит на некоректну дію \"%s\". Нема такої дії."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Не вдалося сконвертувати шлях \"%s\" з utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Невдалося виконати \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 4ccb0b1..a45bdc7 100644 (file)
--- a/po/vi.po
+++ b/po/vi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-17 23:08+0100\n"
 "Last-Translator: Quan Tran <qeed.quan@gmail.com>\n"
 "Language-Team: None\n"
@@ -20,16 +20,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "Hành động \"%s\" làm không được. Hành động đó không có."
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "Không thể chuyển chỗ \"%s\" từ utf8"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "Làm không được \"%s\": %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index d840e53..0913aab 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.5\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-01-18 15:02+0100\n"
 "Last-Translator: Shaodong Di <gnuyhlfh@gmail.com>\n"
 "Language-Team: 简体中文\n"
@@ -21,16 +21,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "请求的动作 \"%s\" 无效。该动作不存在。"
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr ""
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr ""
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "从 utf8 转换路径 \"%s\" 时失败"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "执行 \"%s\" 时失败: %s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
index 5df1e22..ea42306 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Openbox 3.4.6.1\n"
 "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n"
-"POT-Creation-Date: 2008-02-27 04:52+0100\n"
+"POT-Creation-Date: 2008-02-27 21:03-0500\n"
 "PO-Revision-Date: 2008-02-17 23:29+0800\n"
 "Last-Translator: 洪任諭 <pcman.tw@gmail.com>\n"
 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -22,16 +22,28 @@ msgstr ""
 msgid "Invalid action \"%s\" requested. No such action exists."
 msgstr "要求的動作「%s」無效。無此類動作存在。"
 
-#: openbox/actions/execute.c:92
+#: openbox/actions/execute.c:130 openbox/actions/exit.c:46
+msgid "No"
+msgstr "否"
+
+#: openbox/actions/execute.c:131 openbox/actions/exit.c:47
+msgid "Yes"
+msgstr "是"
+
+#: openbox/actions/execute.c:143
 #, c-format
 msgid "Failed to convert the path \"%s\" from utf8"
 msgstr "轉換路徑「%s」自 utf8 時失敗"
 
-#: openbox/actions/execute.c:101 openbox/actions/execute.c:120
+#: openbox/actions/execute.c:152 openbox/actions/execute.c:171
 #, c-format
 msgid "Failed to execute \"%s\": %s"
 msgstr "執行「%s」時失敗:%s"
 
+#: openbox/actions/exit.c:50
+msgid "Are you sure you want to exit Openbox?"
+msgstr ""
+
 #: openbox/client.c:1996
 msgid "Unnamed Window"
 msgstr ""
@@ -411,11 +423,5 @@ msgstr "X 錯誤:%s"
 msgid "OK"
 msgstr "確定"
 
-#~ msgid "No"
-#~ msgstr "否"
-
-#~ msgid "Yes"
-#~ msgstr "是"
-
 #~ msgid "Invalid use of action \"%s\". Action will be ignored."
 #~ msgstr "使用的動作「%s」無效。動作將被忽略。"