1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 17:03:12 +02:00
Files
anope/lang/update.sh
T
2010-09-26 02:33:01 -04:00

11 lines
203 B
Bash
Executable File

#!/bin/bash
pushd ../src > /dev/null
xgettext -s -d Anope -o ../lang/anope.pot --from-code=utf-8 language.cpp
popd > /dev/null
for f in *.po
do
msgmerge -v -s -U $f `echo $f | cut -d'.' -f1`.pot
done