mirror of
https://github.com/anope/anope.git
synced 2026-06-26 13:56:38 +02:00
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd ../src > /dev/null
|
|
xgettext -C -s -d Anope -o ../lang/anope.pot --from-code=utf-8 --keyword=_ language.cpp
|
|
popd > /dev/null
|
|
|
|
for f in *.po
|
|
do
|
|
msgmerge -v -s -U $f `echo $f | cut -d'.' -f1`.pot
|
|
done
|