diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-07-11 22:50:47 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-07-11 22:50:47 +0800 |
commit | 49051e63c6678ee90a54d17355e73286ae6817a3 (patch) | |
tree | d20b60d0a164c2fb4d7745d351b0ce4366d36389 /importers | |
parent | a74afe6c1914e262db8ac21aff303f0bce65ca76 (diff) | |
download | gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar.gz gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar.bz2 gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar.lz gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar.xz gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.tar.zst gsoc2013-evolution-49051e63c6678ee90a54d17355e73286ae6817a3.zip |
s/GNOMELOCALEDIR/EVOLUTION_LOCALEDIR Added bindtextdomain(), textdomain()
2001-07-11 Kjartan Maraas <kmaraas@gnome.org>
* 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
Diffstat (limited to 'importers')
-rw-r--r-- | importers/ChangeLog | 8 | ||||
-rw-r--r-- | importers/Makefile.am | 2 | ||||
-rw-r--r-- | importers/elm-importer.c | 3 | ||||
-rw-r--r-- | importers/evolution-gnomecard-importer.c | 3 | ||||
-rw-r--r-- | importers/netscape-importer.c | 3 | ||||
-rw-r--r-- | importers/pine-importer.c | 3 |
6 files changed, 21 insertions, 1 deletions
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 <kmaraas@gnome.org> + + * 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 <iain@ximian.com> * 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); |