diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-02-13 07:57:52 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-02-13 07:57:52 +0800 |
commit | 9369aeead8e0b9da517870002531f9f636b22b58 (patch) | |
tree | 9836efff8c8f662f1c9ef514586206e57fac5826 /executive-summary/test-service | |
parent | 35a363f671057163f9cf828d901b4e8385c252d1 (diff) | |
download | gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar.gz gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar.bz2 gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar.lz gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar.xz gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.tar.zst gsoc2013-evolution-9369aeead8e0b9da517870002531f9f636b22b58.zip |
xml-i18n-tools setup for .oaf.in files. Mark strings for translation.
2001-02-13 Kjartan Maraas <kmaraas@gnome.org>
* Makefile.am: xml-i18n-tools setup for .oaf.in files.
* GNOME_Evolution_Summary.oaf.in: Mark strings for translation.
* test-service/Makefile.am: xml-i18n-tools setup for .oaf.in files.
* test-service/*.oaf.in: Mark strings for translation.
svn path=/trunk/; revision=8191
Diffstat (limited to 'executive-summary/test-service')
3 files changed, 13 insertions, 10 deletions
diff --git a/executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in b/executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in index 4cb096b3ae..decd499293 100644 --- a/executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in +++ b/executive-summary/test-service/GNOME_Evolution_Summary_rdf.oaf.in @@ -9,7 +9,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="Factory for the RDF summary."/> + _value="Factory for the RDF summary."/> </oaf_server> <oaf_server iid="OAFIID:GNOME_Evolution_Summary_rdf_SummaryComponent" @@ -21,7 +21,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="RDF Summary"/> + _value="RDF Summary"/> </oaf_server> </oaf_info> diff --git a/executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in b/executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in index 098da5e393..b0c9e8f0d6 100644 --- a/executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in +++ b/executive-summary/test-service/GNOME_Evolution_Summary_test.oaf.in @@ -9,7 +9,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="Factory for the test component."/> + _value="Factory for the test component."/> </oaf_server> <oaf_server iid="OAFIID:GNOME_Evolution_Summary_test_Component" @@ -21,7 +21,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="Test service"/> + _value="Test service"/> </oaf_server> <!-- This does not work @@ -34,7 +34,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="Factory for the test bonobo component."/> + _value="Factory for the test bonobo component."/> </oaf_server> <oaf_server iid="OAFIID:evolution-summary-component:test-bonobo-service:d3cb3ed6-a654-4337-8aa0-f443751d6d1b" @@ -46,7 +46,7 @@ </oaf_attribute> <oaf_attribute name="description" type="string" - value="Test bonobo service"/> + _value="Test bonobo service"/> </oaf_server> --> diff --git a/executive-summary/test-service/Makefile.am b/executive-summary/test-service/Makefile.am index 51f41c899b..c31e95035a 100644 --- a/executive-summary/test-service/Makefile.am +++ b/executive-summary/test-service/Makefile.am @@ -33,8 +33,11 @@ rdf_summary_LDADD = \ $(EXTRA_GNOME_LIBS) oafdir = $(datadir)/oaf -oaf_DATA = \ - GNOME_Evolution_Summary_test.oafinfo \ - GNOME_Evolution_Summary_rdf.oafinfo +oaf_in_files = \ + GNOME_Evolution_Summary_test.oaf.in \ + GNOME_Evolution_Summary_rdf.oaf.in +oaf_DATA = $(oaf_in_files:.oaf.in=.oaf) -EXTRA_DIST = $(oaf_DATA) +@XML_I18N_MERGE_OAF_RULE@ + +EXTRA_DIST = $(oaf_in_files) $(oaf_DATA) |