diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2001-05-05 23:29:07 +0800 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2001-05-05 23:29:07 +0800 |
commit | 6476d43a8761b7763ea64f726618658714d1345a (patch) | |
tree | 7e8ae0b259bb07c6dcf456d7ea7e6bee74ce3c0e /executive-summary/test-service | |
parent | 54bb5b485659a7bb51d34c3a3de56f6a7a6c0887 (diff) | |
download | gsoc2013-evolution-6476d43a8761b7763ea64f726618658714d1345a.tar.gz gsoc2013-evolution-6476d43a8761b7763ea64f726618658714d1345a.tar.zst gsoc2013-evolution-6476d43a8761b7763ea64f726618658714d1345a.zip |
no need of -DEVOLUTION_VERSION
2001-05-05 Gediminas Paulauskas <menesis@delfi.lt>
* component/Makefile.am, evolution-services/Makefile.am: no need of
-DEVOLUTION_VERSION
* component/e-summary-callbacks.c: translate window title.
* component/e-summary-url.c (e_summary_url_describe): contents are in
utf-8, convert to locale.
* test-service/Makefile.am: define EVOLUTION_LOCALEDIR.
* test-service/rdf-summary.c: init gettext.
svn path=/trunk/; revision=9681
Diffstat (limited to 'executive-summary/test-service')
-rw-r--r-- | executive-summary/test-service/Makefile.am | 3 | ||||
-rw-r--r-- | executive-summary/test-service/rdf-summary.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/executive-summary/test-service/Makefile.am b/executive-summary/test-service/Makefile.am index 62aaafdc9d..ac22c0ed19 100644 --- a/executive-summary/test-service/Makefile.am +++ b/executive-summary/test-service/Makefile.am @@ -5,7 +5,8 @@ INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/executive-summary \ $(EXTRA_GNOME_CFLAGS) \ - $(BONOBO_HTML_GNOME_CFLAGS) + $(BONOBO_HTML_GNOME_CFLAGS) \ + -DEVOLUTION_LOCALEDIR=\""$(localedir)"\" test_service_SOURCES = \ main.c diff --git a/executive-summary/test-service/rdf-summary.c b/executive-summary/test-service/rdf-summary.c index 876dae97a4..c7bf12cf0f 100644 --- a/executive-summary/test-service/rdf-summary.c +++ b/executive-summary/test-service/rdf-summary.c @@ -954,6 +954,9 @@ main (int argc, { CORBA_ORB orb; + bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR); + textdomain (PACKAGE); + gnome_init_with_popt_table ("RDF-Summary", VERSION, argc, argv, oaf_popt_options, 0, NULL); orb = oaf_init (argc, argv); |