Commit 9c2f7ab3 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

per Benno Schulenberg's patch, in help_init(), if one of the help

strings ends in newlines followed by a space, move the space to the next
help string to make it easier for translators to see


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3644 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 7 additions and 4 deletions
+7 -4
...@@ -247,6 +247,9 @@ CVS code - ...@@ -247,6 +247,9 @@ CVS code -
to display more of "^Space" and "M-Space". (DLR, suggested by to display more of "^Space" and "M-Space". (DLR, suggested by
Benno Schulenberg) Benno Schulenberg)
- Add various wording fixes. (DLR and Benno Schulenberg) - Add various wording fixes. (DLR and Benno Schulenberg)
- If one of the help strings ends in newlines followed by a
space, move the space to the next help string to make it
easier for translators to see. (Benno Schulenberg)
parse_help_input() parse_help_input()
- Add Space and - as aliases for PageDown and PageUp, for - Add Space and - as aliases for PageDown and PageUp, for
consistency with the file browser. (DLR, suggested by Benno consistency with the file browser. (DLR, suggested by Benno
......
...@@ -299,8 +299,8 @@ void help_init(void) ...@@ -299,8 +299,8 @@ void help_init(void)
"search string.\n\n The previous search string will be " "search string.\n\n The previous search string will be "
"shown in brackets after the search prompt. Hitting " "shown in brackets after the search prompt. Hitting "
"Enter without entering any text will perform the " "Enter without entering any text will perform the "
"previous search.\n\n "); "previous search.\n\n");
htx[1] = N_("The following function keys are available in " htx[1] = N_(" The following function keys are available in "
"Browser Search mode:\n\n"); "Browser Search mode:\n\n");
htx[2] = NULL; htx[2] = NULL;
} else if (currshortcut == gotodir_list) { } else if (currshortcut == gotodir_list) {
...@@ -355,8 +355,8 @@ void help_init(void) ...@@ -355,8 +355,8 @@ void help_init(void)
"showing the file being edited. The status line is " "showing the file being edited. The status line is "
"the third line from the bottom and shows important " "the third line from the bottom and shows important "
"messages. The bottom two lines show the most " "messages. The bottom two lines show the most "
"commonly used shortcuts in the editor.\n\n "); "commonly used shortcuts in the editor.\n\n");
htx[1] = N_("The notation for shortcuts is as follows: " htx[1] = N_(" The notation for shortcuts is as follows: "
"Control-key sequences are notated with a caret (^) " "Control-key sequences are notated with a caret (^) "
"symbol and can be entered either by using the Control " "symbol and can be entered either by using the Control "
"(Ctrl) key or pressing the Escape (Esc) key twice. " "(Ctrl) key or pressing the Escape (Esc) key twice. "
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment