mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-04 14:12:59 +03:00
Fix l18n macro N_() to _().
This commit is contained in:
parent
663f821891
commit
68e68c79fc
@ -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'
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user