mirror of git://git.sv.gnu.org/nano.git
Actually translating the Go-to-Directory prompt.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4920 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
d0e234db08
commit
ec173226cf
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue