weblate-sync: stop rewriting ## group comments to #

## is valid Fluent GroupComment syntax; the rewrite caused a sync loop
with upstream-source-sync restoring ## every day.
This commit is contained in:
Sylvestre Ledru
2026-04-13 09:19:48 +02:00
parent da24046f5c
commit 48aa0e017e
-8
View File
@@ -60,14 +60,6 @@ jobs:
fi
done
# Fix ## group comments to # single comments (Fluent syntax)
find src/uu/*/locales src/uucore/locales -name "*.ftl" -type f | while read -r f; do
if grep -qP '^## ' "$f"; then
sed -i 's/^## /# /' "$f"
echo "Fixed ## comments: $f"
fi
done
- name: Validate Fluent syntax
run: |
has_errors=false