From 68e68c79fcc9ebc51605f8b7129d5cd08c512b1c Mon Sep 17 00:00:00 2001 From: David Martin Date: Tue, 14 Feb 2006 09:15:16 +0000 Subject: [PATCH] Fix l18n macro N_() to _(). --- src/ChangeLog | 4 ++++ src/hotlist.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index bcb8743ec..0328088b8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-02-14 David Martin + + * hotlist.c (remove_from_hotlist): Fix l18n macro N_() to _(). + 2006-02-09 Pavel Tsekov * wtools.c (quick_dialog_skip): Do not set `lines' and `cols' diff --git a/src/hotlist.c b/src/hotlist.c index 9fc307187..d4ebc406c 100644 --- a/src/hotlist.c +++ b/src/hotlist.c @@ -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);