diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | po.mak | 18 |
2 files changed, 23 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org> + + * po.mak: + snippet for updating .po files + 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org> * Makefile.am: @@ -0,0 +1,18 @@ +# rule to download .po +po / %.po - download: +@LI = $ (@: po / %.po - download = %) && cd po && wget - q - O $$LI.po.tmp http: + //www.iro.umontreal.ca/translation/maint/$(PACKAGE)/$$LI && if ! diff $$LI.po $$LI.po.tmp > /dev/null 2>&1; then echo "$$LI.po changed, updated"; mv $$LI.po.tmp $$LI.po; else rm $$LI.po.tmp; fi + +# a rule to redownload po files +download - po: +for LI + in ` cat po / LINGUAS `; +do + echo Checking $$LI.po; + make + po / + $$LI. + po - + download; + +done |