From 48aa0e017e940e3d0d1a3a557a10d7e94ea7d941 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 13 Apr 2026 09:19:48 +0200 Subject: [PATCH] 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. --- .github/workflows/weblate-sync.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/weblate-sync.yml b/.github/workflows/weblate-sync.yml index 42748e80..31784e7b 100644 --- a/.github/workflows/weblate-sync.yml +++ b/.github/workflows/weblate-sync.yml @@ -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