Fix some translation string markings
This commit is contained in:
parent
588aa0790a
commit
5f5880dccd
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue