diff options
author | reggaemanu <reggaemanu@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-12-03 00:13:37 +0000 |
---|---|---|
committer | reggaemanu <reggaemanu@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-12-03 00:13:37 +0000 |
commit | b4a991a1b3b9444edb76ab1384c9be74611f40b4 (patch) | |
tree | e99b7d6f63f5c6f22be5a4b552fdb0895eedd3e2 /emerald | |
parent | 54568afed38d513b7ddc9cdfbdd747340a98927f (diff) | |
download | marex-dev-b4a991a1b3b9444edb76ab1384c9be74611f40b4.tar.gz marex-dev-b4a991a1b3b9444edb76ab1384c9be74611f40b4.tar.bz2 |
emerald: oops, another missing string
git-svn-id: file:///beryl/trunk@1507 d7aaf104-2d23-0410-ae22-9d23157bf5a3
Diffstat (limited to 'emerald')
-rw-r--r-- | emerald/src/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emerald/src/main.c b/emerald/src/main.c index 1795667..1ae2b4b 100644 --- a/emerald/src/main.c +++ b/emerald/src/main.c @@ -4764,7 +4764,7 @@ show_force_quit_dialog (WnckWindow *win, return; tmp = g_markup_escape_text (wnck_window_get_name (win), -1); - str = g_strdup_printf (N_("The window \"%s\" is not responding."), tmp); + str = g_strdup_printf (_("The window \"%s\" is not responding."), tmp); g_free (tmp); @@ -4773,7 +4773,7 @@ show_force_quit_dialog (WnckWindow *win, GTK_BUTTONS_NONE, "<b>%s</b>\n\n%s", str, - N_("Forcing this application to " + _("Forcing this application to " "quit will cause you to lose any " "unsaved changes.")); g_free (str); @@ -4788,7 +4788,7 @@ show_force_quit_dialog (WnckWindow *win, gtk_dialog_add_buttons (GTK_DIALOG (dialog), GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, - "_Force Quit", + _("_Force Quit"), GTK_RESPONSE_ACCEPT, NULL); |