diff options
author | Andre Klapper <a9016009@gmx.de> | 2006-07-12 22:40:54 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-07-12 22:40:54 +0800 |
commit | 592f87c4ebebc13ff371ee099015eeb8a2839380 (patch) | |
tree | 6e77333436264045077e71f1cbcea4c2eacab86c /plugins/bbdb | |
parent | e689915e2facbf63e4edf60e8d23bb72bdc8d2b2 (diff) | |
download | gsoc2013-evolution-592f87c4ebebc13ff371ee099015eeb8a2839380.tar.gz gsoc2013-evolution-592f87c4ebebc13ff371ee099015eeb8a2839380.tar.zst gsoc2013-evolution-592f87c4ebebc13ff371ee099015eeb8a2839380.zip |
Marking two strings for translation that were accidentally not marked.
2006-07-12 Andre Klapper <a9016009@gmx.de>
* bbdb.c: Marking two strings for translation that were accidentally
not marked. Fixes bug #347312.
svn path=/trunk/; revision=32296
Diffstat (limited to 'plugins/bbdb')
-rw-r--r-- | plugins/bbdb/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/bbdb/bbdb.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/plugins/bbdb/ChangeLog b/plugins/bbdb/ChangeLog index 358d9cce55..c4df7281a4 100644 --- a/plugins/bbdb/ChangeLog +++ b/plugins/bbdb/ChangeLog @@ -1,3 +1,8 @@ +2006-07-12 Andre Klapper <a9016009@gmx.de> + + * bbdb.c: Marking two strings for translation that were accidentally + not marked. Fixes bug #347312. + 2006-02-14 Andre Klapper <a9016009@gmx.de> * bbdb.c (bbdb_page_factory): Another typo fix from gfree to g_free. diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index 31c964ba71..4faa43604c 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -457,7 +457,7 @@ bbdb_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) gtk_box_pack_start (GTK_BOX (inner_vbox), check, FALSE, FALSE, 0); stuff->check = check; - label = gtk_label_new ("Select Address book for Automatic Contacts"); + label = gtk_label_new (_("Select Address book for Automatic Contacts")); gtk_box_pack_start (GTK_BOX (inner_vbox), label, FALSE, FALSE, 0); /* Source selection option menu */ @@ -493,7 +493,7 @@ bbdb_page_factory (EPlugin *ep, EConfigHookItemFactoryData *hook_data) gtk_box_pack_start (GTK_BOX (inner_vbox), check_gaim, FALSE, FALSE, 0); stuff->check_gaim = check_gaim; - gaim_label = gtk_label_new ("Select Address book for Gaim buddy list"); + gaim_label = gtk_label_new (_("Select Address book for Gaim buddy list")); gtk_box_pack_start (GTK_BOX (inner_vbox), gaim_label, FALSE, FALSE, 0); /* Gaim Source Selection Option Menu */ |