tweaks: move a translator hint to where xgettext will see it

A translator hint needs to be placed on the line directly before
the relevant string.
master
Benno Schulenberg 2021-12-02 11:02:56 +01:00
parent b55474788b
commit 58cba6a7c6
1 changed files with 1 additions and 1 deletions

View File

@ -1284,8 +1284,8 @@ void unbound_key(int code)
* (from the keyboard) that nano does not recognize. */
statusline(AHEM, _("Unknown sequence"));
#ifndef NANO_TINY
/* TRANSLATORS: This refers to an unbound function key. */
else if (code > KEY_F0 && code < KEY_F0 + 25)
/* TRANSLATORS: This refers to an unbound function key. */
statusline(AHEM, _("Unbound key: F%i"), code - KEY_F0);
#endif
else if (code > 0x7F)