Putting four strings in the standard order: first backward, then forward.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5606 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2016-02-05 12:01:02 +00:00
parent 2a2e012064
commit 5a5144b75a
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
* doc/texinfo/nano.texi: Condense the descriptions of command-key * doc/texinfo/nano.texi: Condense the descriptions of command-key
sequences and of the screen layout, mention how to enter Unicode, sequences and of the screen layout, mention how to enter Unicode,
and mention that regular expressions are line oriented. and mention that regular expressions are line oriented.
* src/global.c (shortcut_init): Put four strings in standard order.
2016-01-31 Benno Schulenberg <bensberg@justemail.net> 2016-01-31 Benno Schulenberg <bensberg@justemail.net>
* src/files.c (has_valid_path): Be more specific in how a given path * src/files.c (has_valid_path): Be more specific in how a given path

View File

@ -552,11 +552,11 @@ void shortcut_init(void)
const char *nano_undo_msg = N_("Undo the last operation"); const char *nano_undo_msg = N_("Undo the last operation");
const char *nano_redo_msg = N_("Redo the last undone operation"); const char *nano_redo_msg = N_("Redo the last undone operation");
#endif #endif
const char *nano_forward_msg = N_("Go forward one character");
const char *nano_back_msg = N_("Go back one character"); const char *nano_back_msg = N_("Go back one character");
const char *nano_forward_msg = N_("Go forward one character");
#ifndef NANO_TINY #ifndef NANO_TINY
const char *nano_nextword_msg = N_("Go forward one word");
const char *nano_prevword_msg = N_("Go back one word"); const char *nano_prevword_msg = N_("Go back one word");
const char *nano_nextword_msg = N_("Go forward one word");
#endif #endif
const char *nano_prevline_msg = N_("Go to previous line"); const char *nano_prevline_msg = N_("Go to previous line");
const char *nano_nextline_msg = N_("Go to next line"); const char *nano_nextline_msg = N_("Go to next line");