From: Steinar H. Gunderson Date: Sat, 16 Jul 2005 23:23:42 +0000 (+0000) Subject: Actually make templates.po creation work. :-) X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f3dde0a900066f3d6e73ec41d4bb126128997dea;p=ccbs Actually make templates.po creation work. :-) --- diff --git a/intl/make-all-pot.sh b/intl/make-all-pot.sh index 0078eef..ba7aeb7 100755 --- a/intl/make-all-pot.sh +++ b/intl/make-all-pot.sh @@ -4,7 +4,8 @@ set -e rm -f templates/*.pot for FILE in templates/*.tmpl; do - perl -I../intl ../intl/make-pot.pl $FILE > $FILE.pot + echo $FILE... + perl -I../intl ../intl/make-pot.pl $FILE | msguniq > $FILE.pot done msgcat templates/*.pot > po/templates.pot