mirror of
git://git.acid.vegas/anope.git
synced 2024-11-15 04:06:42 +00:00
15 lines
255 B
Bash
15 lines
255 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for f in `ls ../*.cpp`
|
||
|
do
|
||
|
BASE=`basename $f | cut -d'.' -f1`
|
||
|
xgettext -C -s -d $BASE -o $BASE.pot --from-code=utf-8 --keyword --keyword=_ $f
|
||
|
done
|
||
|
|
||
|
for f in `ls *.po`
|
||
|
do
|
||
|
msgmerge -v -s -U $f `basename $f | cut -d'.' -f1`.pot
|
||
|
done
|
||
|
|
||
|
rm -f *~
|