X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=check-translations.sh;h=46ec3ec6c9121cb7bdf6bdc705a44f95545729c1;hp=0e1013cb6e085782bcd3444900347b2bc4db5866;hb=561489d21c9053b7103c6604c362aa24ee5c7916;hpb=edf01df130d0d1877461561178b8833a9ab6051c diff --git a/check-translations.sh b/check-translations.sh index 0e1013cb6..46ec3ec6c 100755 --- a/check-translations.sh +++ b/check-translations.sh @@ -56,7 +56,14 @@ if [ x"$mode" = x"pot" ]; then done echo "$name" done | sort -u - } | xgettext -LC -k_ -f- --from-code utf-8 -F -o common.pot >&2 + } | xgettext -LC -k_ -f- --from-code utf-8 -F -o common.pot.new >&2 + if msgcmp -N --use-untranslated common.pot common.pot.new && msgcmp -N --use-untranslated common.pot.new common.pot; then + echo "No contentful changes to common.pot - OK." + rm -f common.pot.new + else + echo "Updating common.pot. This probably should be committed." + mv -v common.pot.new common.pot + fi fi if [ x"$mode" = x"txt" ]; then @@ -74,6 +81,7 @@ if [ x"$mode" = x"txt" ]; then continue fi fi + # Note: we're only reporting EXISTING fuzzy matches in the Fuzzy count, thus -N. po=`msgmerge -N "$X" common.pot` ne=`printf "%s\n" "$po" | msgfmt -o /dev/null --check-format --check-header --use-fuzzy - 2>&1 | grep . | wc -l` nu=`printf "%s\n" "$po" | msgattrib --untranslated - | grep -c ^#:` @@ -93,11 +101,11 @@ if [ x"$mode" = x"txt" ]; then if [ "$p" -lt 50 ]; then continue fi - item="$l $l \"$l\" 0%" + item="$l \"$l\" \"$l\" 0%" fi printf "%s\n" "$item" | sed -e "s/[0-9][0-9]*%/$p%/" done - } | tr '"' '\t' | sort -k3 | tr '\t' '"' + } | LC_ALL=C sort -t '"' -k4,4 fi if [ x"$mode" = x"po" ]; then @@ -112,6 +120,7 @@ if [ x"$mode" = x"po" ]; then continue fi fi + # Note: no -N here, this is the point where we allow fuzzy matching. msgmerge -F -U "$X" common.pot >&2 msgfmt -o /dev/null --check-format --check-header --use-fuzzy "$X" 2>&1 \ | grep . > "$X".errors || rm -f "$X".errors @@ -263,6 +272,7 @@ EOF continue fi fi + # Note: no -N here, this is the point where we allow fuzzy matching. msgmerge -F -U "$X" common.pot >/dev/null 2>&1 done fi