nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 173bbe11ef1ef9bebf15a06c1f32a7d97f748d79
parent 7531b71fa14d3fc45653f3ac9df94bc95d688efe
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Wed,  7 Dec 2016 20:56:28 +0100

tweaks: add a few translator hints

Diffstat:
Msrc/files.c | 11+++++------
Msrc/text.c | 1+
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -2221,6 +2221,7 @@ int do_writeout(bool exiting) * it allows reading from or writing to files not specified on * the command line. */ if (openfile->mark_set && !exiting && !ISSET(RESTRICTED)) + /* TRANSLATORS: The next six strings are prompts. */ msg = (method == PREPEND) ? _("Prepend Selection to File") : (method == APPEND) ? _("Append Selection to File") : _("Write Selection to File"); @@ -2359,13 +2360,11 @@ int do_writeout(bool exiting) free(full_answer); if (do_warning) { - /* If we're using restricted mode, we aren't allowed - * to overwrite an existing file with the current - * file. We also aren't allowed to change the name - * of the current file if it has one, because that - * would allow reading from or writing to files not - * specified on the command line. */ + /* When in restricted mode, we aren't allowed to overwrite + * an existing file with the current buffer, nor to change + * the name of the current file if it already has one. */ if (ISSET(RESTRICTED)) { + /* TRANSLATORS: Restricted mode forbids overwriting. */ warn_and_shortly_pause(_("File exists -- " "cannot overwrite")); continue; diff --git a/src/text.c b/src/text.c @@ -3850,6 +3850,7 @@ void complete_a_word(void) statusline(ALERT, _("No further matches")); refresh_needed = TRUE; } else + /* TRANSLATORS: Shown when there are zero possible completions. */ statusline(ALERT, _("No matches")); free(shard);