projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Actually make templates.po creation work. :-)
[ccbs]
/
intl
/
make-all-pot.sh
1
#! /bin/sh
2
3
set -e
4
5
rm -f templates/*.pot
6
for FILE in templates/*.tmpl; do
7
echo $FILE...
8
perl -I../intl ../intl/make-pot.pl $FILE | msguniq > $FILE.pot
9
done
10
11
msgcat templates/*.pot > po/templates.pot
12
rm -f templates/*.pot
13