mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Do translate dialog strings, not just mark.
This commit is contained in:
parent
99f3df1591
commit
e97997b2ba
@ -1,3 +1,8 @@
|
||||
2005-08-19 David Martin <dmartina@excite.com>
|
||||
|
||||
* choosesyntax.c (exec_edit_syntax_dialog): Not just mark for
|
||||
l10n, but do translate dialog strings.
|
||||
|
||||
2005-08-15 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* edit-widget.h: Changed bit fields of length 1 from signed to
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user