From 49051e63c6678ee90a54d17355e73286ae6817a3 Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Wed, 11 Jul 2001 14:50:47 +0000 Subject: s/GNOMELOCALEDIR/EVOLUTION_LOCALEDIR Added bindtextdomain(), textdomain() 2001-07-11 Kjartan Maraas * Makefile.am: s/GNOMELOCALEDIR/EVOLUTION_LOCALEDIR * elm-importer.c: Added bindtextdomain(), textdomain() calls. * evolution-gnomecard-importer.c: Same here. * pine-importer.c: Same here. * netscape-importer.c: Same here. svn path=/trunk/; revision=11002 --- importers/ChangeLog | 8 ++++++++ importers/Makefile.am | 2 +- importers/elm-importer.c | 3 +++ importers/evolution-gnomecard-importer.c | 3 +++ importers/netscape-importer.c | 3 +++ importers/pine-importer.c | 3 +++ 6 files changed, 21 insertions(+), 1 deletion(-) diff --git a/importers/ChangeLog b/importers/ChangeLog index 9f2e172689..be705f6e9a 100644 --- a/importers/ChangeLog +++ b/importers/ChangeLog @@ -1,3 +1,11 @@ +2001-07-11 Kjartan Maraas + + * Makefile.am: s/GNOMELOCALEDIR/EVOLUTION_LOCALEDIR + * elm-importer.c: Added bindtextdomain(), textdomain() calls. + * evolution-gnomecard-importer.c: Same here. + * pine-importer.c: Same here. + * netscape-importer.c: Same here. + 2001-07-10 Iain Holmes * elm-importer.c: Removed all the Don't ask again and alias code. diff --git a/importers/Makefile.am b/importers/Makefile.am index ca23b7b210..598e133ed7 100644 --- a/importers/Makefile.am +++ b/importers/Makefile.am @@ -4,7 +4,7 @@ bin_PROGRAMS = evolution-netscape-importer \ evolution-gnomecard-importer INCLUDES = \ - -DGNOMELOCALEDIR=\""$(localedir)"\" \ + -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \ -DG_LOG_DOMAIN=\"Evolution-Importer\" \ -I$(top_srcdir) \ -I$(top_builddir)/shell \ diff --git a/importers/elm-importer.c b/importers/elm-importer.c index b635c342d8..ff36aa087d 100644 --- a/importers/elm-importer.c +++ b/importers/elm-importer.c @@ -557,6 +557,9 @@ main (int argc, { CORBA_ORB orb; + bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); + textdomain(PACKAGE); + gnome_init_with_popt_table ("Evolution-Elm-Importer", VERSION, argc, argv, oaf_popt_options, 0, NULL); diff --git a/importers/evolution-gnomecard-importer.c b/importers/evolution-gnomecard-importer.c index 2294356aaf..141bd0338e 100644 --- a/importers/evolution-gnomecard-importer.c +++ b/importers/evolution-gnomecard-importer.c @@ -314,6 +314,9 @@ main (int argc, { CORBA_ORB orb; + bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); + textdomain(PACKAGE); + gnome_init_with_popt_table ("Evolution-GnomeCard-Intelligent-Importer", VERSION, argc, argv, oaf_popt_options, 0, NULL); diff --git a/importers/netscape-importer.c b/importers/netscape-importer.c index 80c1c350b5..d6455fb662 100644 --- a/importers/netscape-importer.c +++ b/importers/netscape-importer.c @@ -842,6 +842,9 @@ main (int argc, { CORBA_ORB orb; + bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); + textdomain(PACKAGE); + gnome_init_with_popt_table ("Evolution-Netscape-Importer", VERSION, argc, argv, oaf_popt_options, 0, NULL); diff --git a/importers/pine-importer.c b/importers/pine-importer.c index 52c611e7fa..f7eba31822 100644 --- a/importers/pine-importer.c +++ b/importers/pine-importer.c @@ -720,6 +720,9 @@ main (int argc, { CORBA_ORB orb; + bindtextdomain(PACKAGE, EVOLUTION_LOCALEDIR); + textdomain(PACKAGE); + gnome_init_with_popt_table ("Evolution-Pine-Importer", VERSION, argc, argv, oaf_popt_options, 0, NULL); -- cgit