help: reword the tags for deleting a word left and right

Don't use the word "Cut", as the words are discarded and
not added to the cutbuffer.
master
Benno Schulenberg 2019-02-24 16:29:49 +01:00
parent 1053a3c440
commit 15c3e924b8
1 changed files with 3 additions and 3 deletions

View File

@ -943,10 +943,10 @@ void shortcut_init(void)
#ifndef NANO_TINY
add_to_funcs(do_cut_prev_word, MMAIN,
/* TRANSLATORS: The next two strings refer to cutting words. */
N_("Cut Left"), WITHORSANS(cutwordleft_gist), TOGETHER, NOVIEW);
/* TRANSLATORS: The next two strings refer to deleting words. */
N_("Chop Left"), WITHORSANS(cutwordleft_gist), TOGETHER, NOVIEW);
add_to_funcs(do_cut_next_word, MMAIN,
N_("Cut Right"), WITHORSANS(cutwordright_gist), TOGETHER, NOVIEW);
N_("Chop Right"), WITHORSANS(cutwordright_gist), TOGETHER, NOVIEW);
add_to_funcs(do_cut_till_eof, MMAIN,
N_("CutTillEnd"), WITHORSANS(cuttilleof_gist), BLANKAFTER, NOVIEW);
#endif