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