tweaks: remove two needless words, and split up a changed text further

master
Benno Schulenberg 2018-08-29 20:17:41 +02:00
parent 33c4bb22d5
commit 388cd0b514
2 changed files with 7 additions and 7 deletions

View File

@ -953,9 +953,9 @@ void shortcut_init(void)
#ifndef NANO_TINY
add_to_funcs(do_indent, MMAIN,
N_("Indent Text"), WITHORSANS(indent_gist), TOGETHER, NOVIEW);
N_("Indent"), WITHORSANS(indent_gist), TOGETHER, NOVIEW);
add_to_funcs(do_unindent, MMAIN,
N_("Unindent Text"), WITHORSANS(unindent_gist), BLANKAFTER, NOVIEW);
N_("Unindent"), WITHORSANS(unindent_gist), BLANKAFTER, NOVIEW);
#endif
#ifdef ENABLE_COMMENT
add_to_funcs(do_comment, MMAIN,

View File

@ -414,13 +414,13 @@ void help_init(void)
htx[0] = N_("Execute Command Help Text\n\n "
"This mode allows you to insert the output of a "
"command run by the shell into the current buffer (or "
"into a new buffer). If the command is preceded by the "
"pipe symbol (|), the current contents of the buffer "
"(or of the marked region) will be piped to the command. ");
"into a new buffer). If the command is preceded by '|' "
"(the pipe symbol), the current contents of the buffer "
"(or marked region) will be piped to the command. ");
htx[1] = N_("If you just need another blank buffer, do not enter any "
"command.\n\n The following function keys are "
"command.\n\n");
htx[2] = N_(" The following function keys are "
"available in Execute Command mode:\n\n");
htx[2] = NULL;
}
#endif /* !NANO_TINY */
else {