From c206c058e402077cae042b9a065cc54c1d564bde Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Wed, 8 Feb 2023 13:55:07 +0100 Subject: [PATCH] Update i18n.ts --- src/KcApp/i18n.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/KcApp/i18n.ts b/src/KcApp/i18n.ts index e4d55ea..41a0fb8 100644 --- a/src/KcApp/i18n.ts +++ b/src/KcApp/i18n.ts @@ -9,20 +9,20 @@ export function useI18n(props: Props) { "extraMessages": { "en": { "alphanumericalCharsOnly": "Only alphanumerical characters", - "gender": "Gender", - // Here we overwrite the default english value for the message "doForgotPassword" + "gender": "Gender", + // Here we overwrite the default english value for the message "doForgotPassword" // that is "Forgot Password?" see: https://github.com/InseeFrLab/keycloakify/blob/f0ae5ea908e0aa42391af323b6d5e2fd371af851/src/lib/i18n/generated_messages/18.0.1/login/en.ts#L17 "doForgotPassword": "I forgot my password", }, "fr": { /* spell-checker: disable */ "alphanumericalCharsOnly": "Caractère alphanumérique uniquement", - "gender": "Genre", - "doForgotPassword": "J'ai oublié mon mot de passe" + "gender": "Genre", + "doForgotPassword": "J'ai oublié mon mot de passe" /* spell-checker: enable */ }, }, }); } -export type I18n = NonNullable>; \ No newline at end of file +export type I18n = NonNullable>;