in shortcut_init(), tweak the descriptions of some shortcut keys to make
them more uniform, per Benno Schulenberg's patch with minor tweaks by me git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3419 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
родитель
2ca2356802
Коммит
40e0572100
@ -88,6 +88,8 @@ CVS code -
|
|||||||
followed by special movement shortcuts, followed by advanced
|
followed by special movement shortcuts, followed by advanced
|
||||||
word and paragraph shortcuts, followed by display shortcuts.
|
word and paragraph shortcuts, followed by display shortcuts.
|
||||||
(DLR and Benno Schulenberg, suggested by Benno Schulenberg)
|
(DLR and Benno Schulenberg, suggested by Benno Schulenberg)
|
||||||
|
- Tweak the descriptions of some shortcut keys to make them more
|
||||||
|
uniform. (Benno Schulenberg, minor tweaks by DLR)
|
||||||
toggle_init()
|
toggle_init()
|
||||||
- In the global toggle list, move the "Constant cursor position
|
- In the global toggle list, move the "Constant cursor position
|
||||||
display" toggle up to after the "Use more space for editing"
|
display" toggle up to after the "Use more space for editing"
|
||||||
|
13
src/global.c
13
src/global.c
@ -367,9 +367,9 @@ void shortcut_init(bool unjustify)
|
|||||||
#endif
|
#endif
|
||||||
#ifndef DISABLE_JUSTIFY
|
#ifndef DISABLE_JUSTIFY
|
||||||
const char *nano_parabegin_msg =
|
const char *nano_parabegin_msg =
|
||||||
N_("Go to the beginning of the current paragraph");
|
N_("Move to the beginning of the current paragraph");
|
||||||
const char *nano_paraend_msg =
|
const char *nano_paraend_msg =
|
||||||
N_("Go to the end of the current paragraph");
|
N_("Move to the end of the current paragraph");
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_MULTIBUFFER
|
#ifdef ENABLE_MULTIBUFFER
|
||||||
const char *nano_prevfile_msg =
|
const char *nano_prevfile_msg =
|
||||||
@ -377,7 +377,8 @@ void shortcut_init(bool unjustify)
|
|||||||
const char *nano_nextfile_msg =
|
const char *nano_nextfile_msg =
|
||||||
N_("Switch to the next file buffer");
|
N_("Switch to the next file buffer");
|
||||||
#endif
|
#endif
|
||||||
const char *nano_verbatim_msg = N_("Insert character(s) verbatim");
|
const char *nano_verbatim_msg =
|
||||||
|
N_("Insert the next character(s) verbatim");
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
const char *nano_cut_till_end_msg =
|
const char *nano_cut_till_end_msg =
|
||||||
N_("Cut from the cursor position to the end of the file");
|
N_("Cut from the cursor position to the end of the file");
|
||||||
@ -386,12 +387,12 @@ void shortcut_init(bool unjustify)
|
|||||||
const char *nano_fulljustify_msg = N_("Justify the entire file");
|
const char *nano_fulljustify_msg = N_("Justify the entire file");
|
||||||
#endif
|
#endif
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
const char *nano_bracket_msg = N_("Find matching bracket");
|
const char *nano_bracket_msg = N_("Move to the matching bracket");
|
||||||
#endif
|
#endif
|
||||||
const char *nano_firstline_msg =
|
const char *nano_firstline_msg =
|
||||||
N_("Go to the first line of the file");
|
N_("Move to the first line of the file");
|
||||||
const char *nano_lastline_msg =
|
const char *nano_lastline_msg =
|
||||||
N_("Go to the last line of the file");
|
N_("Move to the last line of the file");
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
const char *nano_case_msg =
|
const char *nano_case_msg =
|
||||||
N_("Make the current search/replace case (in)sensitive");
|
N_("Make the current search/replace case (in)sensitive");
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user