diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2000-10-31 06:10:23 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-10-31 06:10:23 +0800 |
commit | dd76f4c007ae749393c702a3d8b4555ec36711d3 (patch) | |
tree | 33729f6789ab096be4a6856e01549a42c2090f42 /addressbook/gui | |
parent | e22fc888293da251575c89847dcada165e5b9076 (diff) | |
download | gsoc2013-evolution-dd76f4c007ae749393c702a3d8b4555ec36711d3.tar.gz gsoc2013-evolution-dd76f4c007ae749393c702a3d8b4555ec36711d3.tar.zst gsoc2013-evolution-dd76f4c007ae749393c702a3d8b4555ec36711d3.zip |
Fixed marking of strings for translation. Use "_(" instead of "_ (". Add
2000-10-30 Kjartan Maraas <kmaraas@gnome.org>
* backend/e-book/e-card.c: Fixed marking of strings
for translation. Use "_(" instead of "_ (".
* gui/component/addressbook-factory.c: Add missing
calls to bindtextdomain() and textdomain noticed by
Dan Winship.
* gui/component/addressbook.c: Marked string for translation.
svn path=/trunk/; revision=6282
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-factory.c | 4 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-factory.c b/addressbook/gui/component/addressbook-factory.c index 6b2d194a42..ebfd0d9cfd 100644 --- a/addressbook/gui/component/addressbook-factory.c +++ b/addressbook/gui/component/addressbook-factory.c @@ -43,8 +43,12 @@ init_bonobo (int argc, char **argv) int main (int argc, char **argv) { + bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); + textdomain (PACKAGE); + init_corba (&argc, argv); + init_bonobo (argc, argv); /* FIXME: Messy names here. This file should be `main.c'. `addressbook.c' should diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c index dee910c258..22ab0516fb 100644 --- a/addressbook/gui/component/addressbook.c +++ b/addressbook/gui/component/addressbook.c @@ -272,7 +272,7 @@ make_quick_search_widget (GtkSignalFunc start_search_func, gtk_box_pack_start (GTK_BOX (search_vbox), search_entry, FALSE, TRUE, 3); gtk_box_pack_start (GTK_BOX (search_vbox), - gtk_label_new("Quick Search"), + gtk_label_new(_("Quick Search")), FALSE, TRUE, 0); return search_vbox; |