projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Run msgmerge at the end of updating 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
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
14
for FILE in po/*.po; do
15
msgmerge -U $FILE po/templates.pot
16
done