Decrease minimum needed translated strings

This commit is contained in:
HackerNCoder 2023-04-19 21:45:09 +02:00
parent d104daed4b
commit d1303e49b3

View file

@ -18,7 +18,7 @@ for file in ./translations-*.po; do
stats=$(msgfmt --statistics ${file} 2>&1)
numdone=$(echo ${stats%* translated*})
if [[ $numdone -le 5680 ]]; then
if [[ $numdone -le 5400 ]]; then
echo -e "\x1B[36mSKIPPING $file since it has less than 5680 strings translated\x1B[0m"
continue
fi