From: Benno Schulenberg Date: Mon, 4 Jan 2016 11:10:07 +0000 (+0000) Subject: Gettextizing a forgotten string. X-Git-Tag: v2.5.1~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=9d72efa474957b75d33719f9b12bef568e6d5466;p=nano.git Gettextizing a forgotten string. git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5534 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index ebacaefa..8a9b30ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ * src/text.c (do_linter): Condense the exit code. * src/nano.c (allow_sigwinch): Improve its name and its comments. * src/global.c (shortcut_init): Add "Tab" as key description. + * src/text.c (do_linter): Gettextize a forgotten string. 2016-01-04 Mike Frysinger * src/global.c (strtosc, strtomenu): Constify the input parameter. diff --git a/src/text.c b/src/text.c index b73f7f2f..d30b8d87 100644 --- a/src/text.c +++ b/src/text.c @@ -3150,7 +3150,7 @@ void do_linter(void) while (curlint != NULL && !strcmp(curlint->filename, dontwantfile)) curlint = curlint->next; if (curlint == NULL) { - statusbar("No more errors in un-opened filed, cancelling"); + statusbar(_("No more errors in unopened files, cancelling")); break; } else goto new_lint_loop;