From fccdab61f8c42d40edffd92181ac4e35a46318e0 Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Thu, 7 Nov 2013 15:15:49 +0100 Subject: Fix for Bug #1247985 (Incorrect implementation of plural forms). Fixed bugs: - https://launchpad.net/bugs/1247985 (bzr r12781) --- src/text-context.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/text-context.cpp') diff --git a/src/text-context.cpp b/src/text-context.cpp index 7d9b9848f..5b79c1f1a 100644 --- a/src/text-context.cpp +++ b/src/text-context.cpp @@ -1611,9 +1611,9 @@ static void sp_text_context_update_cursor(SPTextContext *tc, bool scroll_to_see } } - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, _("Type or edit flowed text (%d characters%s); Enter to start new paragraph."), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit flowed text (%d character%s); Enter to start new paragraph.", "Type or edit flowed text (%d characters%s); Enter to start new paragraph.", nChars), nChars, trunc); } else { - SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, _("Type or edit text (%d characters%s); Enter to start new line."), nChars, trunc); + SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); Enter to start new line.", "Type or edit text (%d characters%s); Enter to start new line.", nChars), nChars, trunc); } } else { -- cgit v1.2.3