Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/boards/missing_letter
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/missing_letter
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/missing_letter')
-rw-r--r--boards/missing_letter/Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/boards/missing_letter/Makefile.am b/boards/missing_letter/Makefile.am
index fb53d80..78582b5 100644
--- a/boards/missing_letter/Makefile.am
+++ b/boards/missing_letter/Makefile.am
@@ -6,7 +6,14 @@ xml_in_files = \
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" $< > $@
+