mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
e66063e630
up into seperate files for each pseudo client. Also reorganized how the modules are stored, and made most of the old "extra" modules "core"
21 lines
324 B
Bash
Executable File
21 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
|
|
rm anope.pot
|
|
touch anope.pot
|
|
|
|
cd ..
|
|
FILES=`find ./ -name *.cpp -o -name *.h | grep -v /modules/third/`
|
|
for f in $FILES
|
|
do
|
|
xgettext -C -s -d Anope -j -o language/anope.pot --from-code=utf-8 --keyword --keyword=_ $f
|
|
done
|
|
|
|
cd -
|
|
|
|
for f in *.po
|
|
do
|
|
msgmerge -v -s -U $f `echo $f | cut -d'.' -f1`.pot
|
|
done
|
|
|
|
rm -f *~
|