Actually translating the Go-to-Directory prompt.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4920 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2014-05-28 13:27:33 +00:00
parent d0e234db08
commit ec173226cf
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* src/nano.c (do_input): Remove the three unused parameters 's_or_t',
'ran_func', and 'finished'. They are only ever set and never used.
* src/text.c (do_justify): Adjust a call of do_input().
* src/browser (do_browser): Actually translate the go-to-dir prompt.
2014-05-27 Chris Allegretta <chrisa@asty.org>
* src/winio.c (edit_refresh): wredrawln() is not supported under

View File

@ -217,7 +217,7 @@ char *do_browser(char *path, DIR *dir)
#ifndef NANO_TINY
NULL,
#endif
browser_refresh, N_("Go To Directory"));
browser_refresh, _("Go To Directory"));
curs_set(0);
#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)