From 899c0a3f4c8fd7d6a108e08a5b8857e06e7c8693 Mon Sep 17 00:00:00 2001 From: Tommy Reynolds Date: Mon, 6 Mar 2006 12:30:27 +0000 Subject: My bad. FC4 xml2po does NOT have the "-l ${LANG}" switch, so I've taken it out. Tranlations will have the bogus 'lang="po/${LANG}"' attribute on their top-level element. I'll complete the fix later this evening. Sorry. --- Makefile.common | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 5197d1b..8bf79f0 100644 --- a/Makefile.common +++ b/Makefile.common @@ -328,7 +328,10 @@ $(patsubst ${PRI_LANG}/%,${1}/%,${2}):: ${2} po/${1}.po \ ${DOC_ENTITIES_ENT-${1}} mkdir -p ${1} ln -s -f ../${2} $$@.in - ${XML2PO} -e -p po/${1}.po -l ${1} $$@.in >$$@ + # ${XML2PO} -e -p po/${1}.po -l ${1} $$@.in >$$@ + # This gives the WRONG language "po/${1}" in the + # translation, but I'll have to fix it later. Sorry + ${XML2PO} -e -p po/${1}.po $$@.in >$$@ clean:: ${RM} $$@.in endef -- cgit