aboutsummaryrefslogtreecommitdiff
path: root/po/updatepo.sh
blob: 9289dabdfc11f9620129eacdf7f97167e927d54f (plain)
1
2
3
4
5
6

for f in *.po
do
    cp "$f" "$f.old"
    msgmerge -N "$f" hardinfo.pot > tmp.po && mv tmp.po "$f"
done