]> git.wh0rd.org Git - nano.git/commitdiff
per Benno Schulenberg's patch, in shortcut_init(), reword the movement
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 1 Feb 2007 13:40:59 +0000 (13:40 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 1 Feb 2007 13:40:59 +0000 (13:40 +0000)
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

ChangeLog
src/global.c

index 2dd21759e3fa5e9313b6ff21335cb51d6f368ec8..7aa0a350cad490e6f2fa00dc1ffc492df03b91a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-02-01  Benno Schulenberg  <bensberg@justemail.net>
+
+       * 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  <pooka109@cox.net>
 
        * ChangeLog: Rework the 2.1 branch's changelog to be more
index 73b9e7332156b16eec1c84607b6e28100293691c..189b2ffe40e18c4cd26b2fcc77bc64b1be6943f2 100644 (file)
@@ -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 =