Actually translating the Go-to-Directory prompt.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4920 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
d0e234db08
commit
ec173226cf
|
@ -2,6 +2,7 @@
|
||||||
* src/nano.c (do_input): Remove the three unused parameters 's_or_t',
|
* 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.
|
'ran_func', and 'finished'. They are only ever set and never used.
|
||||||
* src/text.c (do_justify): Adjust a call of do_input().
|
* 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>
|
2014-05-27 Chris Allegretta <chrisa@asty.org>
|
||||||
* src/winio.c (edit_refresh): wredrawln() is not supported under
|
* src/winio.c (edit_refresh): wredrawln() is not supported under
|
||||||
|
|
|
@ -217,7 +217,7 @@ char *do_browser(char *path, DIR *dir)
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
NULL,
|
NULL,
|
||||||
#endif
|
#endif
|
||||||
browser_refresh, N_("Go To Directory"));
|
browser_refresh, _("Go To Directory"));
|
||||||
|
|
||||||
curs_set(0);
|
curs_set(0);
|
||||||
#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
|
#if !defined(DISABLE_HELP) || !defined(DISABLE_MOUSE)
|
||||||
|
|
Loading…
Reference in New Issue