simplify do_wordlinechar_count()'s final message a bit more
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2926 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
8e94234b00
commit
07d5df4aeb
|
@ -2115,10 +2115,8 @@ void do_wordlinechar_count(void)
|
||||||
|
|
||||||
/* Display the total word, line, and character counts on the
|
/* Display the total word, line, and character counts on the
|
||||||
* statusbar. */
|
* statusbar. */
|
||||||
statusbar("%s%lu %s, %lu %s, %lu %s", old_mark_set ?
|
statusbar("%sWords: %lu Lines: %lu Chars: %lu", old_mark_set ?
|
||||||
_("In selection: ") : "", (unsigned long)words, P_("word",
|
_("(In Selection) ") : "", (unsigned long)words,
|
||||||
"words", (unsigned long)words), (unsigned long)lines, P_("line",
|
(unsigned long)lines, (unsigned long)chars);
|
||||||
"lines", (unsigned long)lines), (unsigned long)chars, P_("char",
|
|
||||||
"chars", (unsigned long)chars));
|
|
||||||
}
|
}
|
||||||
#endif /* !NANO_SMALL */
|
#endif /* !NANO_SMALL */
|
||||||
|
|
Loading…
Reference in New Issue