From e97997b2bac422d852bbbea30a07bd3c3de8d5c8 Mon Sep 17 00:00:00 2001 From: David Martin Date: Fri, 19 Aug 2005 09:10:07 +0000 Subject: [PATCH] Do translate dialog strings, not just mark. --- edit/ChangeLog | 5 +++++ edit/choosesyntax.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/edit/ChangeLog b/edit/ChangeLog index f43ae1c50..5f528e164 100644 --- a/edit/ChangeLog +++ b/edit/ChangeLog @@ -1,3 +1,8 @@ +2005-08-19 David Martin + + * choosesyntax.c (exec_edit_syntax_dialog): Not just mark for + l10n, but do translate dialog strings. + 2005-08-15 Roland Illig * edit-widget.h: Changed bit fields of length 1 from signed to diff --git a/edit/choosesyntax.c b/edit/choosesyntax.c index a7752f851..aa0203cc1 100644 --- a/edit/choosesyntax.c +++ b/edit/choosesyntax.c @@ -31,9 +31,9 @@ exec_edit_syntax_dialog (const char **names) { int i; Listbox *syntaxlist = create_listbox_window (MAX_ENTRY_LEN, LIST_LINES, - N_(" Choose syntax highlighting "), NULL); - LISTBOX_APPEND_TEXT (syntaxlist, 'A', N_("< Auto >"), NULL); - LISTBOX_APPEND_TEXT (syntaxlist, 'R', N_("< Reload Current Syntax >"), NULL); + _(" Choose syntax highlighting "), NULL); + LISTBOX_APPEND_TEXT (syntaxlist, 'A', _("< Auto >"), NULL); + LISTBOX_APPEND_TEXT (syntaxlist, 'R', _("< Reload Current Syntax >"), NULL); for (i = 0; names[i]; i++) { LISTBOX_APPEND_TEXT (syntaxlist, 0, names[i], NULL);