Fix CI check for additional translations only (#289)

This commit is contained in:
Thomas Miceli 2024-05-28 00:00:05 +02:00 committed by GitHub
parent 22052bd38f
commit 77d87aeecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 8 deletions

View File

@ -8,8 +8,6 @@ sed -i '/^\s*$/d' sorted_reference_keys.txt
for new_file in internal/i18n/locales/*.yml; do
filename=$(basename $new_file)
echo ""
echo "Checking $filename..."
# Extract keys from the current file and sort them
sort <(awk -F':' '{print $1}' $new_file) > sorted_new_keys.txt
@ -18,17 +16,12 @@ for new_file in internal/i18n/locales/*.yml; do
comm -3 sorted_reference_keys.txt sorted_new_keys.txt > differences.txt
if [ -s differences.txt ]; then
echo "Error in $filename: The YAML file has differences in keys."
while IFS= read -r line; do
if [[ $line == $'\t'* ]]; then
echo "+ Additional key in $filename: $(echo $line | awk '{$1=$1; print}')"
else
echo "- Missing key in $filename: $(echo $line | awk '{$1=$1; print}')"
differences_found=1
fi
done < differences.txt
differences_found=1
else
echo "All keys in $filename match perfectly."
fi
rm sorted_new_keys.txt