diff options
-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 */ |