]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - check-translations.sh
preparation for making weapon names translatable
[xonotic/xonotic-data.pk3dir.git] / check-translations.sh
index 2c6313c884ffcde15b489eaea111366cc18e3b79..6cfd13dbbdaa120ae6ab63ab9793cad9491aedec 100755 (executable)
@@ -1,8 +1,22 @@
-for VM in menu client; do
-       find qcsrc/"$VM" -type f -not -name \*.po -not -name \*.txt | xgettext -LC -k_ -f- --from-code utf-8 -o "$VM".dat.pot >&2
+#!/bin/sh
+
+for VM in menu csprogs; do
+       case "$VM" in
+               csprogs)
+                       VMD=client
+                       ;;
+               *)
+                       VMD=$VM
+                       ;;
+       esac
+       {
+               find qcsrc/"$VMD" -type f -not -name \*.po -not -name \*.txt
+               find qcsrc/common -type f -not -name \*.po -not -name \*.txt
+               find qcsrc/server -type f -name w_\*.qc
+       } | xgettext -LC -k_ -f- --from-code utf-8 -o "$VM".dat.pot >&2
        for X in "$VM".dat.*.po; do
                [ -f "$X" ] || continue
-               msgmerge -U "$X" "$VM".dat.pot >&2
+               msgmerge -F -U "$X" "$VM".dat.pot >&2
                todo=$(
                        msgattrib --untranslated "$X" | grep -A 2147483647 "^#:"
                        msgattrib --fuzzy "$X"        | grep -A 2147483647 "^#:"