1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 18:36:39 +02:00
Files
anope/modules/extra/language/update.sh
T

15 lines
255 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 --keyword=_ $f
done
for f in `ls *.po`
do
msgmerge -v -s -U $f `basename $f | cut -d'.' -f1`.pot
done
rm -f *~