blob: 766e64be2ff59f0e036213d3f888feeb41b68916 (
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 bootiso.pot && \
msgfmt -o /dev/null --statistics --check $i
done
else
echo -n $1".po: "
msgmerge --backup=none --update $1.po bootiso.pot && \
msgfmt -o /dev/null --statistics --check $1.po
fi
|