diff --git a/ChangeLog b/ChangeLog index ebacaefad928258d03c2e5077472060b7ad250d3..8a9b30efe6efd80325138dc6b2fe658badaa7db5 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 <vapier@gentoo.org> * src/global.c (strtosc, strtomenu): Constify the input parameter. diff --git a/src/text.c b/src/text.c index b73f7f2fc6b3defcbc5c0f6e7270a0af7d726bf7..d30b8d87b48b823b6055304f8f79a43eab969c95 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;