aboutsummaryrefslogtreecommitdiffstats
path: root/docs/mcc-help/update.sh
blob: afa95b9d10833073f7766887b75ad4afd8175348 (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 mcc-help.pot && \
    msgfmt -o /dev/null --statistics --check $i
  done
else
  echo -n $1".po: "
  msgmerge --update $1.po mcc-help.pot && \
  msgfmt -o /dev/null --statistics --check $1.po
fi