aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--src/bookmarks/ephy-bookmark-properties.c4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8286a49ad..a3afb5298 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-31 Christian Persch <chpe@cvs.gnome.org>
+
+ * src/bookmarks/ephy-bookmark-properties.c: (show_duplicate_cb):
+
+ Use ngettext here.
+
2006-01-30 Peter Harvey <peter.a.harvey@gmail.com>
* 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);