diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-01-31 07:08:58 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-01-31 07:08:58 +0800 |
commit | 69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2 (patch) | |
tree | 29ba3b344a8ebf277a061b6d518858742ee7c537 /src | |
parent | 5a25f384ec84c94e89e07558296620dc74681e7b (diff) | |
download | gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar.gz gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar.bz2 gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar.lz gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar.xz gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.tar.zst gsoc2013-epiphany-69e6a3f34faadf357c8046fc7f9fc3dd0e7186f2.zip |
Use ngettext here.
2006-01-31 Christian Persch <chpe@cvs.gnome.org>
* src/bookmarks/ephy-bookmark-properties.c: (show_duplicate_cb):
Use ngettext here.
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 4 |
1 files changed, 3 insertions, 1 deletions
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); |