From 0093848c04e77a838a69094f801c511bb152402a Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Wed, 6 Nov 2013 13:26:57 +0100 Subject: Partial fix for Bug #1247985 (Incorrect implementation of plural forms). Fixed bugs: - https://launchpad.net/bugs/1247985 (bzr r12780) --- src/sp-flowtext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/sp-flowtext.cpp') diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp index fee320e90..0cadb4345 100644 --- a/src/sp-flowtext.cpp +++ b/src/sp-flowtext.cpp @@ -297,7 +297,7 @@ gchar* SPFlowtext::description() const { int const nChars = layout.iteratorToCharIndex(layout.end()); char const *trunc = (layout.inputTruncated()) ? _(" [truncated]") : ""; - return g_strdup_printf(ngettext(_("(%d character%s)"), _("(%d characters%s)"), nChars), nChars, trunc); + return g_strdup_printf(ngettext("(%d character%s)", "(%d characters%s)", nChars), nChars, trunc); } void SPFlowtext::snappoints(std::vector &p, Inkscape::SnapPreferences const *snapprefs) const { -- cgit v1.2.3