nano

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

commit e0d9b7a8af20ceb430eb609e449c46540fd6441e
parent b3ace4d8f6a92f045021e1356624800f24818842
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 29 Sep 2019 15:08:57 +0200

tweaks: add a translator hint, and correct two others

Diffstat:
Msrc/browser.c | 1+
Msrc/global.c | 2+-
Msrc/search.c | 2+-
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/browser.c b/src/browser.c @@ -670,6 +670,7 @@ int filesearch_init(bool forwards) /* Now ask what to search for. */ response = do_prompt(FALSE, FALSE, MWHEREISFILE, NULL, &search_history, browser_refresh, "%s%s%s", _("Search"), + /* TRANSLATORS: A modifier of the Search prompt. */ !forwards ? _(" [Backwards]") : "", thedefault); free(thedefault); diff --git a/src/global.c b/src/global.c @@ -1410,7 +1410,7 @@ const char *flagtostr(int flag) { switch (flag) { case NO_HELP: - /* TRANSLATORS: The next fourteen strings are toggle descriptions; + /* TRANSLATORS: The next thirteen strings are toggle descriptions; * they are best kept shorter than 40 characters, but may be longer. */ return N_("Help mode"); case CONSTANT_SHOW: diff --git a/src/search.c b/src/search.c @@ -98,7 +98,7 @@ void search_init(bool replacing, bool keep_the_answer) answer, &search_history, edit_refresh, /* TRANSLATORS: This is the main search prompt. */ "%s%s%s%s%s%s", _("Search"), - /* TRANSLATORS: The next five modify the search prompt. */ + /* TRANSLATORS: The next four modify the search prompt. */ ISSET(CASE_SENSITIVE) ? _(" [Case Sensitive]") : "", ISSET(USE_REGEXP) ? _(" [Regexp]") : "", ISSET(BACKWARDS_SEARCH) ? _(" [Backwards]") : "",