From fb62e7f9422c1773fd64664e53bb9af9b7280401 Mon Sep 17 00:00:00 2001 From: Serreau Jovann Date: Fri, 10 Apr 2026 10:13:20 +0200 Subject: [PATCH] Force French locale on master and rebrand header tag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - keycloak-init now enables i18n on master with French as the only supported locale and the default, so all login pages render in fr. - Replace dynamic realm.displayName tag (which showed 'Keycloak') with hardcoded '// Connexion sécurisée' in the theme header. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 5 ++++- themes/ecosplay/login/template.ftl | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 51d720c..33d12b7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -83,7 +83,10 @@ services: -s "smtpServer.ssl=false" \ -s "smtpServer.user=$$SMTP_USER" \ -s "smtpServer.password=$$SMTP_PASSWORD" \ - -s "loginTheme=$$LOGIN_THEME" + -s "loginTheme=$$LOGIN_THEME" \ + -s "internationalizationEnabled=true" \ + -s 'supportedLocales=["fr"]' \ + -s "defaultLocale=fr" echo "Master realm configured." networks: - keycloak-net diff --git a/themes/ecosplay/login/template.ftl b/themes/ecosplay/login/template.ftl index 2883c58..a5c95f9 100644 --- a/themes/ecosplay/login/template.ftl +++ b/themes/ecosplay/login/template.ftl @@ -53,7 +53,7 @@
-

// ${realm.displayName!"E-Cosplay"}

+

// Connexion sécurisée

<#nested "header">