diff options
author | Chris Toshok <toshok@ximian.com> | 2004-03-25 04:21:13 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-03-25 04:21:13 +0800 |
commit | 7d4de82d4a0b2217ca356cb79e5859c404f6da2b (patch) | |
tree | cacf2e2c2e0a976a778bc5d158c40a07b4554a1f /addressbook/gui | |
parent | 7f5228bdbad17fddedaddc4714a52b5601cb0769 (diff) | |
download | gsoc2013-evolution-7d4de82d4a0b2217ca356cb79e5859c404f6da2b.tar.gz gsoc2013-evolution-7d4de82d4a0b2217ca356cb79e5859c404f6da2b.tar.zst gsoc2013-evolution-7d4de82d4a0b2217ca356cb79e5859c404f6da2b.zip |
don't know what I was thinking approving this change. the _() was only
2004-03-24 Chris Toshok <toshok@ximian.com>
* gui/widgets/eab-gui-util.c (eab_show_multiple_contacts): don't
know what I was thinking approving this change. the _() was only
used in the plural case (in fact where n > 5), so a singular case
was never necessary, and neither was the call to ngettext.
svn path=/trunk/; revision=25174
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 6dd72d9325..f08e2122ce 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -205,11 +205,8 @@ eab_show_multiple_contacts (EBook *book, 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, - ngettext("Opening %d contact will open %d new window as well.\n" - "Do you really want to display this contact?", - "Opening %d contacts will open %d new windows as well.\n" - "Do you really want to display all of these contacts?", - length), + _("Opening %d contacts will open %d new windows as well.\n" + "Do you really want to display all of these contacts?"), length, length); |