diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2013-11-06 12:26:57 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2013-11-06 12:26:57 +0000 |
| commit | 0093848c04e77a838a69094f801c511bb152402a (patch) | |
| tree | d8d8a9e28d322c666801e2ca42ecb507fb274fc1 /src/sp-flowtext.cpp | |
| parent | remove unused private members (diff) | |
| download | inkscape-0093848c04e77a838a69094f801c511bb152402a.tar.gz inkscape-0093848c04e77a838a69094f801c511bb152402a.zip | |
Partial fix for Bug #1247985 (Incorrect implementation of plural forms).
Fixed bugs:
- https://launchpad.net/bugs/1247985
(bzr r12780)
Diffstat (limited to 'src/sp-flowtext.cpp')
| -rw-r--r-- | src/sp-flowtext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs) const { |
