summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/find.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/find.cpp')
-rw-r--r--src/ui/dialog/find.cpp4
1 files changed, 2 insertions, 2 deletions
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);