ci(test/translations): ignore untranslated entries

This commit is contained in:
Leah Amelia Chen
2025-03-18 08:33:28 +01:00
parent d75c5ec038
commit e3fbbe8fe3

View File

@ -697,7 +697,10 @@ jobs:
msgcmp "$old_pot" po/com.mitchellh.ghostty.pot --use-untranslated
# Compare all other POs to current POT
for f in po/*.po; do msgcmp "$f" po/com.mitchellh.ghostty.pot; done
for f in po/*.po; do
# Ignore untranslated entries
msgcmp --use-untranslated "$f" po/com.mitchellh.ghostty.pot;
done
test-pkg-linux:
strategy: