summaryrefslogtreecommitdiffstats
path: root/src/text-context.cpp
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2013-11-07 14:15:49 +0000
committerJazzyNico <nicoduf@yahoo.fr>2013-11-07 14:15:49 +0000
commitfccdab61f8c42d40edffd92181ac4e35a46318e0 (patch)
tree6e459a4e55b9e86ab67d390bb13c8ac4c3fa50b9 /src/text-context.cpp
parentPartial fix for Bug #1247985 (Incorrect implementation of plural forms). (diff)
downloadinkscape-fccdab61f8c42d40edffd92181ac4e35a46318e0.tar.gz
inkscape-fccdab61f8c42d40edffd92181ac4e35a46318e0.zip
Fix for Bug #1247985 (Incorrect implementation of plural forms).
Fixed bugs: - https://launchpad.net/bugs/1247985 (bzr r12781)
Diffstat (limited to 'src/text-context.cpp')
-rw-r--r--src/text-context.cpp4
1 files changed, 2 insertions, 2 deletions
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); <b>Enter</b> 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); <b>Enter</b> to start new paragraph.", "Type or edit flowed text (%d characters%s); <b>Enter</b> 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); <b>Enter</b> to start new line."), nChars, trunc);
+ SP_EVENT_CONTEXT(tc)->message_context->setF(Inkscape::NORMAL_MESSAGE, ngettext("Type or edit text (%d character%s); <b>Enter</b> to start new line.", "Type or edit text (%d characters%s); <b>Enter</b> to start new line.", nChars), nChars, trunc);
}
} else {