diff options
| author | Andrius Ramanauskas <knutux@gmail.com> | 2006-03-27 13:15:30 +0000 |
|---|---|---|
| committer | knutux <knutux@users.sourceforge.net> | 2006-03-27 13:15:30 +0000 |
| commit | fb9e00f189160847c59e26e15756dbfa42f6b161 (patch) | |
| tree | 6ff0b953d678eaa4c4d7d612fff2544541a8fb20 /src/sp-flowtext.cpp | |
| parent | next iteration (diff) | |
| download | inkscape-fb9e00f189160847c59e26e15756dbfa42f6b161.tar.gz inkscape-fb9e00f189160847c59e26e15756dbfa42f6b161.zip | |
minor changes to adjust strings for plural forms
(bzr r308)
Diffstat (limited to 'src/sp-flowtext.cpp')
| -rw-r--r-- | src/sp-flowtext.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-flowtext.cpp b/src/sp-flowtext.cpp index 4c46a699c..3f70f53ce 100644 --- a/src/sp-flowtext.cpp +++ b/src/sp-flowtext.cpp @@ -338,9 +338,9 @@ static gchar *sp_flowtext_description(SPItem *item) Inkscape::Text::Layout const &layout = SP_FLOWTEXT(item)->layout; int const nChars = layout.iteratorToCharIndex(layout.end()); if (SP_FLOWTEXT(item)->has_internal_frame()) - return g_strdup_printf(_("<b>Flowed text</b> (%d characters)"), nChars); + return g_strdup_printf(ngettext("<b>Flowed text</b> (%d character)", "<b>Flowed text</b> (%d characters)", nChars), nChars); else - return g_strdup_printf(_("<b>Linked flowed text</b> (%d characters)"), nChars); + return g_strdup_printf(ngettext("<b>Linked flowed text</b> (%d character)", "<b>Linked flowed text</b> (%d characters)", nChars), nChars); } static NRArenaItem * |
