Fix l18n macro N_() to _().

This commit is contained in:
David Martin 2006-02-14 09:15:16 +00:00
parent 663f821891
commit 68e68c79fc
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-02-14 David Martin <dmartina@excite.com>
* hotlist.c (remove_from_hotlist): Fix l18n macro N_() to _().
2006-02-09 Pavel Tsekov <ptsekov@gmx.net>
* wtools.c (quick_dialog_skip): Do not set `lines' and `cols'

View File

@ -1083,7 +1083,7 @@ static void remove_from_hotlist (struct hotlist *entry)
char *title;
int result;
title = g_strconcat (N_(" Remove: "),
title = g_strconcat (_(" Remove: "),
name_trunc (entry->label, 30),
" ",
NULL);
@ -1092,7 +1092,7 @@ static void remove_from_hotlist (struct hotlist *entry)
query_set_sel (1);
result = query_dialog (title,
_("\n Are you sure you want to remove this entry?"),
D_ERROR, 2, N_("&Yes"), N_("&No"));
D_ERROR, 2, _("&Yes"), _("&No"));
g_free (title);