feat: add French language support with all article translations
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 13s
Deploy Internet for Kids / Deploy (push) Successful in 6s
Deploy Internet for Kids / Health Check (push) Successful in 3s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s

- French Hugo config (languages.fr.toml)
- All 6 content pages translated: homepage, about, imprint, privacy,
  global overview article, France social media ban article
- Child-safety-map shortcode updated with French table + legend
- Nginx redirect updated to include /fr/ path
- CI smoke tests now verify /fr/ endpoint

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-02 21:10:17 +03:00
parent 5fe5ed2aed
commit 21af166c06
10 changed files with 450 additions and 12 deletions

View File

@@ -35,7 +35,7 @@ server {
}
# Redirect unprefixed paths to /en/
location ~ ^/(?!en/|de/|css/|js/|img/|favicon|android|apple|site|llms|health) {
location ~ ^/(?!en/|de/|fr/|css/|js/|img/|favicon|android|apple|site|llms|health) {
return 302 /en$request_uri;
}