tweaks: ungettextize three strings, to make a translator hint right again

The strings are gettextized further down, for the non-tiny version,
so they will get translated anyhow.  The relevant translator hint
is the earlier one about "the next thirteen strings".

Also adjust an indentation, and ungettextize another string for
consistency.
This commit is contained in:
Benno Schulenberg 2024-03-19 11:50:33 +01:00
parent d77263d8ed
commit bb7a9fe7d2
1 changed files with 5 additions and 5 deletions

View File

@ -787,12 +787,12 @@ void shortcut_init(void)
#ifdef NANO_TINY
add_to_funcs(do_search_backward, MHELP,
N_("Where Was"), WHENHELP(wherewas_gist), TOGETHER);
"Where Was", WHENHELP(wherewas_gist), TOGETHER);
add_to_funcs(do_findprevious, MMAIN|MHELP,
N_("Previous"), WHENHELP(findprev_gist), TOGETHER);
"Previous", WHENHELP(findprev_gist), TOGETHER);
add_to_funcs(do_findnext, MMAIN|MHELP,
N_("Next"), WHENHELP(findnext_gist), BLANKAFTER);
"Next", WHENHELP(findnext_gist), BLANKAFTER);
#endif
add_to_funcs(cut_text, MMAIN,
@ -825,7 +825,7 @@ void shortcut_init(void)
#ifndef NANO_TINY
add_to_funcs(do_undo, MMAIN,
/* TRANSLATORS: Try to keep the next ten strings at most 12 characters. */
/* TRANSLATORS: Try to keep the next ten strings at most 12 characters. */
N_("Undo"), WHENHELP(undo_gist), TOGETHER);
add_to_funcs(do_redo, MMAIN,
N_("Redo"), WHENHELP(redo_gist), BLANKAFTER);
@ -1010,7 +1010,7 @@ void shortcut_init(void)
#ifdef NANO_TINY
add_to_funcs(do_search_backward, MMAIN,
N_("Where Was"), WHENHELP(wherewas_gist), BLANKAFTER);
"Where Was", WHENHELP(wherewas_gist), BLANKAFTER);
#else
add_to_funcs(do_indent, MMAIN,
N_("Indent"), WHENHELP(indent_gist), TOGETHER);