aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-12-02 23:24:42 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:06 +0800
commite0cf91771a5ff16979ea71171f2c3d0960657bb6 (patch)
treef276ee33ccf68c3367006c9f7b0ff65b09ada759 /addressbook/gui
parentcfffc1befe8fd0d2f3f7e66121ca421470c908db (diff)
downloadgsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar.gz
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar.bz2
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar.lz
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar.xz
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.tar.zst
gsoc2013-evolution-e0cf91771a5ff16979ea71171f2c3d0960657bb6.zip
Localize few strings with ngettext
Per request of bug #635414
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index bb5fc15bb8..ecb6ea7ed5 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -1469,9 +1469,13 @@ e_addressbook_view_view (EAddressbookView *view)
/* XXX Provide a parent window. */
dialog = gtk_message_dialog_new (
NULL, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE,
- _("Opening %d contacts will open %d new windows as "
- "well.\nDo you really want to display all of these "
- "contacts?"), length, length);
+ ngettext (
+ /* Translators: This is shown for more than 5 contacts. */
+ "Opening %d contacts will open %d new windows as well.\nDo you really want to display all of these contacts?",
+ "Opening %d contacts will open %d new windows as well.\nDo you really want to display all of these contacts?",
+ length
+ ),
+ length, length);
gtk_dialog_add_buttons (
GTK_DIALOG (dialog),
_("_Don't Display"), GTK_RESPONSE_NO,