]> git.wh0rd.org Git - nano.git/commitdiff
add missing string translation
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 6 Oct 2005 20:46:11 +0000 (20:46 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Thu, 6 Oct 2005 20:46:11 +0000 (20:46 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3040 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/text.c

index 9554c6e2b05288396611bbbffa7886e0d3801e41..8b8bb24f7a08d88f7d3ce78fd86d7a72b5dabe1f 100644 (file)
@@ -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);
 }