diff options
| author | Nicolas Dufour <nicoduf@yahoo.fr> | 2015-03-06 08:51:53 +0000 |
|---|---|---|
| committer | JazzyNico <nicoduf@yahoo.fr> | 2015-03-06 08:51:53 +0000 |
| commit | 957c647a8a0a567fef4f1940be43134d749830d4 (patch) | |
| tree | 3a0fedcd5a105c802497b70f7fed518e4881a7e5 /src/selection-describer.cpp | |
| parent | XAML export. Fix for Bug #1423216 (Clipping grouped objects not exported to x... (diff) | |
| download | inkscape-957c647a8a0a567fef4f1940be43134d749830d4.tar.gz inkscape-957c647a8a0a567fef4f1940be43134d749830d4.zip | |
Fix for Bug #1428967 (Inkscape0.91 crashes under interface using Chinese/Taiwan(zh-tw)).
Fixed bugs:
- https://launchpad.net/bugs/1428967
(bzr r13968)
Diffstat (limited to '')
| -rw-r--r-- | src/selection-describer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selection-describer.cpp b/src/selection-describer.cpp index f7814fd57..2386a731e 100644 --- a/src/selection-describer.cpp +++ b/src/selection-describer.cpp @@ -233,8 +233,8 @@ void SelectionDescriber::_updateMessageFromSelection(Inkscape::Selection *select int n_terms = count_terms((GSList *)items); gchar *objects_str = g_strdup_printf(ngettext( - "<b>%i</b> objects selected of type %s", - "<b>%i</b> objects selected of types %s", n_terms), + "<b>%1$i</b> objects selected of type %2$s", + "<b>%1$i</b> objects selected of types %2$s", n_terms), objcount, terms); g_free(terms); |
