blob: 740d10fc7769eca0ac92ef8806254e04c3b2bc06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
POFILE=$1
if [[ $POFILE == "" ]]; then
for i in *.po
do
echo -n $i": "
msgmerge --backup=none --update $i help.pot && \
msgfmt -o /dev/null --statistics --check $i
done
else
echo -n $1".po: "
msgmerge --update $1.po help.pot && \
msgfmt -o /dev/null --statistics --check $1.po
fi
|