From 98acc0bc3605085f180fff936af48001e877e556 Mon Sep 17 00:00:00 2001 From: Kris De Gussem Date: Mon, 7 May 2012 14:48:42 +0200 Subject: Find dialog: taking plurals into account for UI translation (bzr r11343) --- src/ui/dialog/find.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp index 03a440d5c..ce2dbeea1 100644 --- a/src/ui/dialog/find.cpp +++ b/src/ui/dialog/find.cpp @@ -827,11 +827,11 @@ Find::onAction() count, all, exact? _("exact") : _("partial")); if (_action_replace){ // TRANSLATORS: "%1" is replaced with the number of matches - status.set_text(Glib::ustring::compose(_("%1 objects replaced"), count)); + status.set_text(Glib::ustring::compose(ngettext("%1 object replaced","%1 objects replaced",count), count)); } else { // TRANSLATORS: "%1" is replaced with the number of matches - status.set_text(Glib::ustring::compose(_("%1 objects found"), count)); + status.set_text(Glib::ustring::compose(ngettext("%1 object found","%1 objects found",count), count)); } Inkscape::Selection *selection = sp_desktop_selection (desktop); -- cgit v1.2.3