mirror of
https://github.com/anope/anope.git
synced 2026-06-25 17:26:37 +02:00
08583dc107
out of the core and into the modules that use them.
15 lines
245 B
Bash
Executable File
15 lines
245 B
Bash
Executable File
#!/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=_ $f
|
|
done
|
|
|
|
for f in `ls *.po`
|
|
do
|
|
msgmerge -v -s -U $f `basename $f | cut -d'.' -f1`.pot
|
|
done
|
|
|
|
rm -f *~
|