diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-01-29 00:58:41 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2005-01-29 00:58:41 +0800 |
commit | 3ea3a7c7c6e374d4ee06124ddc048ab17100dcf6 (patch) | |
tree | 869d002cd65c510db6868285bc175510430185e5 /addressbook/gui | |
parent | 03a484a6740223efc6bb35c7b06416d1ace205e0 (diff) | |
download | gsoc2013-evolution-3ea3a7c7c6e374d4ee06124ddc048ab17100dcf6.tar.gz gsoc2013-evolution-3ea3a7c7c6e374d4ee06124ddc048ab17100dcf6.tar.zst gsoc2013-evolution-3ea3a7c7c6e374d4ee06124ddc048ab17100dcf6.zip |
Changed a string to make it complete and clear for transaltion Fixes
2005-01-28 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/widgets/eab-vcard-control.c (pstream_load) :
Changed a string to make it complete and clear
for transaltion
Fixes #61067
svn path=/trunk/; revision=28601
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-vcard-control.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-vcard-control.c b/addressbook/gui/widgets/eab-vcard-control.c index 3e2cdddcc9..77497767ca 100644 --- a/addressbook/gui/widgets/eab-vcard-control.c +++ b/addressbook/gui/widgets/eab-vcard-control.c @@ -136,8 +136,8 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream, if (list && list->next) { char *message; int length = g_list_length (list) - 1; - message = g_strdup_printf (ngettext("and one other contact.", - "and %d other contacts.", length), + message = g_strdup_printf (ngettext("There is one other contact.", + "There are %d other contacts.", length), length); gtk_label_set_text (GTK_LABEL (vcard_control->label), message); g_free (message); |