nano

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

commit 7b71f573e7781dceb3c9ac2e5338875e3f2a2165
parent 4071de1989170c310f3c123784c0e7b595e251d4
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  6 Oct 2005 20:46:11 +0000

add missing string translation


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3040 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/text.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/text.c b/src/text.c @@ -2134,7 +2134,7 @@ void do_wordlinechar_count(void) /* Display the total word, line, and character counts on the * statusbar. */ - statusbar("%sWords: %lu Lines: %ld Chars: %lu", old_mark_set ? + statusbar(_("%sWords: %lu Lines: %ld Chars: %lu"), old_mark_set ? _("In Selection: ") : "", (unsigned long)words, (long)lines, (unsigned long)chars); }