aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChyla Zbigniew <chyla@src.gnome.org>2001-06-30 20:07:06 +0800
committerChyla Zbigniew <chyla@src.gnome.org>2001-06-30 20:07:06 +0800
commita03b5cb797c8eb7da4638577bc4195153a99a5b1 (patch)
treedbb92cf863daa937a67424bfdb32637b24c25a9f /addressbook
parentb6b1a2148da93b45a278ce02c9ee9b87768ed074 (diff)
downloadgsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar.gz
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar.bz2
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar.lz
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar.xz
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.tar.zst
gsoc2013-evolution-a03b5cb797c8eb7da4638577bc4195153a99a5b1.zip
Marked strings for translation.
* gui/component/e-address-popup.c (e_address_popup_construct): Marked strings for translation. svn path=/trunk/; revision=10628
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/component/e-address-popup.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 06db0e7239..aa21dc6a8d 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-30 Zbigniew Chyla <cyba@gnome.pl>
+
+ * gui/component/e-address-popup.c (e_address_popup_construct): Marked
+ strings for translation.
+
2001-06-30 Jon Trowbridge <trow@ximian.com>
* gui/merging/e-card-merging.c (match_query_callback): Make the
diff --git a/addressbook/gui/component/e-address-popup.c b/addressbook/gui/component/e-address-popup.c
index 2484805318..c291e95009 100644
--- a/addressbook/gui/component/e-address-popup.c
+++ b/addressbook/gui/component/e-address-popup.c
@@ -856,7 +856,7 @@ e_address_popup_construct (EAddressPopup *pop)
gtk_box_pack_start (GTK_BOX (pop->main_vbox), pop->generic_view, TRUE, TRUE, 0);
gtk_widget_show_all (pop->generic_view);
- pop->query_msg = gtk_label_new ("Querying Addressbook...");
+ pop->query_msg = gtk_label_new (_("Querying Addressbook..."));
gtk_box_pack_start (GTK_BOX (pop->main_vbox), pop->query_msg, TRUE, TRUE, 0);
gtk_widget_show (pop->query_msg);
@@ -913,7 +913,7 @@ e_address_popup_cardify (EAddressPopup *pop, ECard *card)
gtk_widget_show (pop->minicard_view);
gtk_widget_hide (pop->generic_view);
- b = gtk_button_new_with_label ("Edit Contact Info");
+ b = gtk_button_new_with_label (_("Edit Contact Info"));
gtk_box_pack_start (GTK_BOX (pop->main_vbox), b, TRUE, TRUE, 0);
gtk_signal_connect_object (GTK_OBJECT (b),
"clicked",
@@ -943,7 +943,7 @@ e_address_popup_no_matches (EAddressPopup *pop)
g_return_if_fail (pop && E_IS_ADDRESS_POPUP (pop));
- b = gtk_button_new_with_label ("Add to Contacts");
+ b = gtk_button_new_with_label (_("Add to Contacts"));
gtk_box_pack_start (GTK_BOX (pop->main_vbox), b, TRUE, TRUE, 0);
gtk_signal_connect_object (GTK_OBJECT (b),
"clicked",