summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-02-27 21:07:10 -0500
committerDana Jansens <danakj@orodu.net>2008-02-27 21:07:10 -0500
commit8bd02bf4b883fa369dd68df2053974407024ddaf (patch)
tree7c765a1d4faa2812fe1993f5ec3ca45ee21ea005
parent26cc41f6c6187dabd5c7ee4365c8fa44751009e5 (diff)
parentfbacc56d9d0792631b5160df1244ee10214db37d (diff)
Merge branch 'backport' into work
Conflicts: openbox/actions/execute.c
-rw-r--r--openbox/actions/execute.c51
-rw-r--r--openbox/actions/exit.c48
-rw-r--r--po/POTFILES.in1
-rw-r--r--po/ar.po18
-rw-r--r--po/bn_IN.po18
-rw-r--r--po/ca.po18
-rw-r--r--po/cs.po18
-rw-r--r--po/de.po18
-rw-r--r--po/en@boldquot.po20
-rw-r--r--po/en@quot.po20
-rw-r--r--po/es.po24
-rw-r--r--po/et.po18
-rw-r--r--po/eu.po18
-rw-r--r--po/fi.po24
-rw-r--r--po/fr.po18
-rw-r--r--po/hu.po18
-rw-r--r--po/it.po18
-rw-r--r--po/ja.po18
-rw-r--r--po/nl.po18
-rw-r--r--po/no.po18
-rw-r--r--po/openbox.pot18
-rw-r--r--po/pl.po18
-rw-r--r--po/pt.po18
-rw-r--r--po/pt_BR.po18
-rw-r--r--po/ru.po18
-rw-r--r--po/sk.po18
-rw-r--r--po/sv.po24
-rw-r--r--po/ua.po18
-rw-r--r--po/vi.po18
-rw-r--r--po/zh_CN.po18
-rw-r--r--po/zh_TW.po24
31 files changed, 517 insertions, 115 deletions
diff --git a/openbox/actions/execute.c b/openbox/actions/execute.c
index ff73bf2b..fa66a484 100644
--- a/openbox/actions/execute.c
+++ b/openbox/actions/execute.c
@@ -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);
diff --git a/openbox/actions/exit.c b/openbox/actions/exit.c
index 662c984a..f5af8a12 100644
--- a/openbox/actions/exit.c
+++ b/openbox/actions/exit.c
@@ -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;
}
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 6de409fc..200e9ca3 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -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
diff --git a/po/ar.po b/po/ar.po
index f67740d8..bf4062a2 100644
--- 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 ""
diff --git a/po/bn_IN.po b/po/bn_IN.po
index c147bd0b..a95364fe 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.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-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 ""
diff --git a/po/ca.po b/po/ca.po
index 1433e963..0b2cbc0c 100644
--- 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 ""
diff --git a/po/cs.po b/po/cs.po
index 0a859879..137e5dd2 100644
--- 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 ""
diff --git a/po/de.po b/po/de.po
index 81fe3661..db266018 100644
--- 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 ""
diff --git a/po/en@boldquot.po b/po/en@boldquot.po
index ff465512..2914136f 100644
--- a/po/en@boldquot.po
+++ b/po/en@boldquot.po
@@ -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 “%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"
diff --git a/po/en@quot.po b/po/en@quot.po
index 89e94aa5..643e3085 100644
--- a/po/en@quot.po
+++ b/po/en@quot.po
@@ -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"
diff --git a/po/es.po b/po/es.po
index af8bbe03..71e06a4d 100644
--- 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."
diff --git a/po/et.po b/po/et.po
index 23d580ab..d2798d3f 100644
--- 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 ""
diff --git a/po/eu.po b/po/eu.po
index f48499ad..e68d72ce 100644
--- 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 ""
diff --git a/po/fi.po b/po/fi.po
index 21dd52f8..7ab8c627 100644
--- 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ä"
diff --git a/po/fr.po b/po/fr.po
index 3dfdbe08..a49db830 100644
--- 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: franais <fr@li.org>\n"
@@ -24,16 +24,28 @@ msgstr ""
msgid "Invalid action \"%s\" requested. No such action exists."
msgstr "Action demande 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'excution 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 ""
diff --git a/po/hu.po b/po/hu.po
index 56506ebf..8f206564 100644
--- 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 ""
diff --git a/po/it.po b/po/it.po
index dd232b3b..53fc742f 100644
--- 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 ""
diff --git a/po/ja.po b/po/ja.po
index e152a974..e9b7a998 100644
--- 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 ""
diff --git a/po/nl.po b/po/nl.po
index 2108d378..7eeb3634 100644
--- 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 ""
diff --git a/po/no.po b/po/no.po
index 6a64f78c..5899cb55 100644
--- 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 ""
diff --git a/po/openbox.pot b/po/openbox.pot
index 20a9d630..0845175a 100644
--- a/po/openbox.pot
+++ b/po/openbox.pot
@@ -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 ""
diff --git a/po/pl.po b/po/pl.po
index 39df39ea..a17cd27f 100644
--- 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 ""
diff --git a/po/pt.po b/po/pt.po
index fde95aed..15886410 100644
--- 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 aco \"%s\" invlido. No existem quaisquer aces."
-#: 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 ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 2c799f2e..a9101453 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.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 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 ""
diff --git a/po/ru.po b/po/ru.po
index a6e12fc4..8acfdf1a 100644
--- 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 ""
diff --git a/po/sk.po b/po/sk.po
index edefd81b..19daf5e9 100644
--- 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 ""
diff --git a/po/sv.po b/po/sv.po
index 3b89e78c..0548ac67 100644
--- 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\" efterfrgades, 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 skvgen \"%s\" frn 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 "Namnlst Fnster"
@@ -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 anvndande av action \"%s\", den kommer ignoreras."
diff --git a/po/ua.po b/po/ua.po
index 3ab1939d..f34dc7fb 100644
--- 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 ""
diff --git a/po/vi.po b/po/vi.po
index 4ccb0b1c..a45bdc75 100644
--- 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 ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index d840e531..0913aab4 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.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-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 ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 5df1e227..ea423067 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -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」無效。動作將被忽略。"