3 for VM in menu csprogs; do
13 find qcsrc/"$VMD" -type f -not -name \*.po -not -name \*.txt
14 find qcsrc/common -type f -not -name \*.po -not -name \*.txt
15 find qcsrc/server -type f -name w_\*.qc
16 } | xgettext -LC -k_ -f- --from-code utf-8 -o "$VM".dat.pot >&2
17 for X in "$VM".dat.*.po; do
18 [ -f "$X" ] || continue
19 msgmerge -F -U "$X" "$VM".dat.pot >&2
21 msgattrib --untranslated "$X" | grep -A 2147483647 "^#:"
22 msgattrib --fuzzy "$X" | grep -A 2147483647 "^#:"
24 if [ -n "$todo" ]; then
25 echo "TODO for translation $X:"