From 442650239c27ae039f864eb5ac49bb0f72742c34 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Mon, 28 Jun 2010 16:11:24 +0400 Subject: [PATCH] Fixed i18n of file operation dialogs. Signed-off-by: Andrew Borodin --- src/file.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/file.c b/src/file.c index 3236e3c58..a2bc3bd13 100644 --- a/src/file.c +++ b/src/file.c @@ -1875,7 +1875,6 @@ panel_operate_generate_prompt (const WPanel * panel, FileOperation operation, char *dp = format_string; gboolean build_question = FALSE; -#ifdef ENABLE_NLS static gboolean i18n_flag = FALSE; if (!i18n_flag) { @@ -1884,15 +1883,16 @@ panel_operate_generate_prompt (const WPanel * panel, FileOperation operation, for (i = sizeof (op_names1) / sizeof (op_names1[0]); i--;) op_names1[i] = Q_ (op_names1[i]); +#ifdef ENABLE_NLS for (i = sizeof (prompt_parts) / sizeof (prompt_parts[0]); i--;) prompt_parts[i] = _(prompt_parts[i]); one_format = _(one_format); many_format = _(many_format); question_format = _(question_format); +#endif /* ENABLE_NLS */ i18n_flag = TRUE; } -#endif /* ENABLE_NLS */ sp = single_source ? one_format : many_format; @@ -2013,7 +2013,6 @@ panel_operate (void *source_panel, FileOperation operation, gboolean force_singl gboolean do_bg = FALSE; /* do background operation? */ -#ifdef ENABLE_NLS static gboolean i18n_flag = FALSE; if (!i18n_flag) { @@ -2021,7 +2020,6 @@ panel_operate (void *source_panel, FileOperation operation, gboolean force_singl op_names[i] = Q_ (op_names[i]); i18n_flag = TRUE; } -#endif /* ENABLE_NLS */ free_linklist (&linklist); free_linklist (&dest_dirs);