Welcome to mirror list, hosted at ThFree Co, Russian Federation.

make_mo.sh « locale « ui - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f3b28f80c0c5566aa798026e2268f647a8d0c5c (plain)
1
2
3
4
5
#!/bin/bash

while read pofile; do
        msgfmt --use-fuzzy -c -o ${pofile%po}mo $pofile || exit $?
done < <(find $(dirname $0) -type f -name '*.po')