Commit 9d72efa4 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Gettextizing a forgotten string.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5534 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
* src/text.c (do_linter): Condense the exit code. * src/text.c (do_linter): Condense the exit code.
* src/nano.c (allow_sigwinch): Improve its name and its comments. * src/nano.c (allow_sigwinch): Improve its name and its comments.
* src/global.c (shortcut_init): Add "Tab" as key description. * 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> 2016-01-04 Mike Frysinger <vapier@gentoo.org>
* src/global.c (strtosc, strtomenu): Constify the input parameter. * src/global.c (strtosc, strtomenu): Constify the input parameter.
......
...@@ -3150,7 +3150,7 @@ void do_linter(void) ...@@ -3150,7 +3150,7 @@ void do_linter(void)
while (curlint != NULL && !strcmp(curlint->filename, dontwantfile)) while (curlint != NULL && !strcmp(curlint->filename, dontwantfile))
curlint = curlint->next; curlint = curlint->next;
if (curlint == NULL) { if (curlint == NULL) {
statusbar("No more errors in un-opened filed, cancelling"); statusbar(_("No more errors in unopened files, cancelling"));
break; break;
} else } else
goto new_lint_loop; goto new_lint_loop;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment