1
1

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.
Этот коммит содержится в:
Benno Schulenberg 2019-02-24 16:29:49 +01:00
родитель 1053a3c440
Коммит 15c3e924b8

Просмотреть файл

@ -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