Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/boards/read_colors
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2006-08-12 18:04:13 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2006-08-12 18:04:13 (GMT)
commit8bb6b26d2bf2b8b2d65dc24d354a887b71562548 (patch)
treeffefa088913f46fee9fb2910702ef17f8b1a17af /boards/read_colors
parent3b3de6053c4ad386535808aeaa285e216d9c2bb6 (diff)
- changed transformation of xml.in files to xml files. Now the translations
are no more embedded in them. It was no more used for a while, we take the translation from the po file directly. This saves 2 to 3 MB !. - Fixed the escape key on to level menu. It no more stops the menu itself. - Added initial support for autopackage software packaging system.
Diffstat (limited to 'boards/read_colors')
-rw-r--r--boards/read_colors/Makefile.am11
1 files changed, 9 insertions, 2 deletions
diff --git a/boards/read_colors/Makefile.am b/boards/read_colors/Makefile.am
index ba9cd37..36f3ccf 100644
--- a/boards/read_colors/Makefile.am
+++ b/boards/read_colors/Makefile.am
@@ -2,10 +2,17 @@
xmldir = $(pkgdatadir)/@PACKAGE_DATA_DIR@/read_colors
xml_in_files = board1.xml.in
-
+
xml_DATA = $(xml_in_files:.xml.in=.xml)
-@INTLTOOL_XML_RULE@
+#
+# Do not use the INTLTOOL_XML_RULE, we don't need to embed the translations
+# in the file themselves. GCompris pick the translations from the po file at
+# runtime.
+#
+$(xml_DATA): %.xml: %.xml.in
+ sed -e "s/\(\<\)\/*_//g" $< > $@
+