From 5f5880dccda32bfc0f62b130e00e62536257e696 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 10 May 2011 16:03:33 +0200 Subject: [PATCH 1/1] Fix some translation string markings --- openbox/debug.c | 2 +- openbox/openbox.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openbox/debug.c b/openbox/debug.c index 8423e8a..358b090 100644 --- a/openbox/debug.c +++ b/openbox/debug.c @@ -135,7 +135,7 @@ static void prompt_handler(const gchar *log_domain, GLogLevelFlags log_level, const gchar *message, gpointer data) { if (ob_state() == OB_STATE_RUNNING) - prompt_show_message(message, _("Openbox"), _("Close")); + prompt_show_message(message, "Openbox", _("Close")); else log_handler(log_domain, log_level, message, data); } diff --git a/openbox/openbox.c b/openbox/openbox.c index c41eea4..0782794 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -629,7 +629,7 @@ static void parse_args(gint *argc, gchar **argv) } else if (!strcmp(argv[i], "--startup")) { if (i == *argc - 1) /* no args left */ - g_printerr(_("--startup requires an argument\n")); + g_printerr(_("%s requires an argument\n"), "--startup"); else { /* this will be in the current locale encoding, which is what we want */ @@ -663,7 +663,7 @@ static void parse_args(gint *argc, gchar **argv) } else if (!strcmp(argv[i], "--config-file")) { if (i == *argc - 1) /* no args left */ - g_printerr(_("--config-file requires an argument\n")); + g_printerr(_("%s requires an argument\n"), "--config-file"); else { /* this will be in the current locale encoding, which is what we want */ -- 1.9.1