From 69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Mon, 30 Jan 2006 23:08:58 +0000 Subject: Use ngettext here. 2006-01-31 Christian Persch * src/bookmarks/ephy-bookmark-properties.c: (show_duplicate_cb): Use ngettext here. --- ChangeLog | 6 ++++++ src/bookmarks/ephy-bookmark-properties.c | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8286a49ad..a3afb5298 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-01-31 Christian Persch + + * src/bookmarks/ephy-bookmark-properties.c: (show_duplicate_cb): + + Use ngettext here. + 2006-01-30 Peter Harvey * src/bookmarks/ephy-bookmark-properties.c diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index 6c46ccbc8..c4a46a9cd 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -243,7 +243,9 @@ show_duplicate_cb (GtkButton *button, if (identical->len > 0) { - label = g_strdup_printf (_("_Unify With %d Identical Bookmark(s)"), + label = g_strdup_printf (ngettext ("_Unify With %d Identical Bookmark", + "_Unify With %d Identical Bookmarks", + identical->len), identical->len); item = gtk_image_menu_item_new_with_mnemonic (label); g_free (label); -- cgit v1.2.3