From: David Lawrence Ramsey Date: Thu, 1 Feb 2007 13:40:59 +0000 (+0000) Subject: per Benno Schulenberg's patch, in shortcut_init(), reword the movement X-Git-Tag: v2.1.0~149 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=9f1db5dddb6adb2509579768a8d8b2b1c912d693;p=nano.git per Benno Schulenberg's patch, in shortcut_init(), reword the movement shortcut descriptions so that they use "Go to" instead of "Move to", since not all of them move the cursor in the same way; and reword the paragraph movement shortcut descriptions to more accurately describe how they work git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4062 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/ChangeLog b/ChangeLog index 2dd21759..7aa0a350 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-02-01 Benno Schulenberg + + * global.c (shortcut_init): Reword the movement shortcut + descriptions so that they use "Go to" instead of "Move to", + since not all of them move the cursor in the same way. + * global.c (shortcut_init): Reword the paragraph movement + shortcut descriptions to more accurately describe how they work. + 2007-01-29 David Lawrence Ramsey * ChangeLog: Rework the 2.1 branch's changelog to be more diff --git a/src/global.c b/src/global.c index 73b9e733..189b2ffe 100644 --- a/src/global.c +++ b/src/global.c @@ -328,8 +328,8 @@ void shortcut_init(bool unjustify) N_("Insert another file into the current one"); const char *nano_whereis_msg = N_("Search for a string or a regular expression"); - const char *nano_prevpage_msg = N_("Move to the previous screen"); - const char *nano_nextpage_msg = N_("Move to the next screen"); + const char *nano_prevpage_msg = N_("Go to previous screen"); + const char *nano_nextpage_msg = N_("Go to next screen"); const char *nano_cut_msg = N_("Cut the current line and store it in the cutbuffer"); const char *nano_uncut_msg = @@ -349,30 +349,28 @@ void shortcut_init(bool unjustify) const char *nano_indent_msg = N_("Indent the current line"); const char *nano_unindent_msg = N_("Unindent the current line"); #endif - const char *nano_forward_msg = N_("Move forward one character"); - const char *nano_back_msg = N_("Move back one character"); + const char *nano_forward_msg = N_("Go forward one character"); + const char *nano_back_msg = N_("Go back one character"); #ifndef NANO_TINY - const char *nano_nextword_msg = N_("Move forward one word"); - const char *nano_prevword_msg = N_("Move back one word"); -#endif - const char *nano_prevline_msg = N_("Move to the previous line"); - const char *nano_nextline_msg = N_("Move to the next line"); - const char *nano_home_msg = - N_("Move to the beginning of the current line"); - const char *nano_end_msg = - N_("Move to the end of the current line"); + const char *nano_nextword_msg = N_("Go forward one word"); + const char *nano_prevword_msg = N_("Go back one word"); +#endif + const char *nano_prevline_msg = N_("Go to previous line"); + const char *nano_nextline_msg = N_("Go to next line"); + const char *nano_home_msg = N_("Go to beginning of current line"); + const char *nano_end_msg = N_("Go to end of current line"); #ifndef DISABLE_JUSTIFY const char *nano_parabegin_msg = - N_("Move to the beginning of the current paragraph"); + N_("Go to beginning of paragraph; then of previous paragraph"); const char *nano_paraend_msg = - N_("Move to the end of the current paragraph"); + N_("Go just beyond end of paragraph; then of next paragraph"); #endif const char *nano_firstline_msg = - N_("Move to the first line of the file"); + N_("Go to the first line of the file"); const char *nano_lastline_msg = - N_("Move to the last line of the file"); + N_("Go to the last line of the file"); #ifndef NANO_TINY - const char *nano_bracket_msg = N_("Move to the matching bracket"); + const char *nano_bracket_msg = N_("Go to the matching bracket"); const char *nano_scrollup_msg = N_("Scroll up one line without scrolling the cursor"); const char *nano_scrolldown_msg =