projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
More tweaks on gettext stuff; start tryng to make templates.pot.
[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
perl -I../intl ../intl/make-pot.pl $FILE > $FILE.pot
8
done
9
10
msgcat templates/*.pot > po/templates.pot
11
rm -f templates/*.pot
12