summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2018-01-22 18:00:05 +0100
committerNiels De Graef <nielsdegraef@gmail.com>2018-01-22 18:00:05 +0100
commit7441b23fe074b5092094ca9ba14f58ebae9ebf2a (patch)
treeff09998aba6350da44cb3e5199cde1c82679c0f3
parent81e63b25bb073d26cbb0a0573ca5e9bf880e47bf (diff)
downloadgnome-contacts-7441b23fe074b5092094ca9ba14f58ebae9ebf2a.tar.gz
Window: ngettext call should be correct this time.
This is what happens on a shortage of coffee. Thanks again Piotr!
-rw-r--r--src/contacts-window.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contacts-window.vala b/src/contacts-window.vala
index 0885108..a2f027f 100644
--- a/src/contacts-window.vala
+++ b/src/contacts-window.vala
@@ -319,7 +319,7 @@ public class Contacts.Window : Gtk.ApplicationWindow {
if (contacts.size == 1)
msg = _("Deleted contact %s").printf (contacts[0].individual.display_name);
else
- msg = ngettext (_("%d contact deleted"), _("%d contacts deleted"), contacts.size)
+ msg = ngettext ("%d contact deleted", "%d contacts deleted", contacts.size)
.printf (contacts.size);
var b = new Button.with_mnemonic (_("_Undo"));