diff options
author | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-01 05:42:21 +0800 |
---|---|---|
committer | Chyla Zbigniew <chyla@src.gnome.org> | 2001-09-01 05:42:21 +0800 |
commit | ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e (patch) | |
tree | 1bf7b0ac1e005db29147894801385cc3f67222a7 /addressbook/gui/component | |
parent | 136c97b56d8dc0d2f9e04c27a18647b0dac4ca72 (diff) | |
download | gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.tar.gz gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.tar.zst gsoc2013-evolution-ac5c6bb28360f3d1e7f7d2aabd8d64f22584503e.zip |
s/_/U_/
* gui/component/addressbook-storage.c
(addressbook_get_other_contact_storage): s/_/U_/
* gui/widgets/e-addressbook-reflow-adapter.c (addressbook_compare):
Use g_utf8_collate.
* gui/widgets/e-minicard.c (e_minicard_compare):
Ditto.
* printing/e-contact-print.c (card_compare):
Ditto.
svn path=/trunk/; revision=12542
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/addressbook-storage.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c index b888375a26..efff59a732 100644 --- a/addressbook/gui/component/addressbook-storage.c +++ b/addressbook/gui/component/addressbook-storage.c @@ -60,6 +60,8 @@ #include <gal/util/e-xml-utils.h> #include <libgnome/gnome-i18n.h> +#include "e-util/e-unicode-i18n.h" + #include "evolution-shell-component.h" #include "evolution-storage.h" @@ -135,7 +137,7 @@ addressbook_get_other_contact_storage (void) EvolutionStorageResult result; if (storage == NULL) { - storage = evolution_storage_new (_("Other Contacts"), NULL, NULL); + storage = evolution_storage_new (U_("Other Contacts"), NULL, NULL); gtk_signal_connect (GTK_OBJECT (storage), "remove_folder", GTK_SIGNAL_FUNC(remove_ldap_folder), NULL); |