This commit is contained in:
garronej 2023-02-26 17:21:04 +01:00
commit 6137e7186a

View file

@ -9,20 +9,20 @@ export function useI18n(props: Props) {
"extraMessages": { "extraMessages": {
"en": { "en": {
"alphanumericalCharsOnly": "Only alphanumerical characters", "alphanumericalCharsOnly": "Only alphanumerical characters",
"gender": "Gender", "gender": "Gender",
// Here we overwrite the default english value for the message "doForgotPassword" // 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 // 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", "doForgotPassword": "I forgot my password",
}, },
"fr": { "fr": {
/* spell-checker: disable */ /* spell-checker: disable */
"alphanumericalCharsOnly": "Caractère alphanumérique uniquement", "alphanumericalCharsOnly": "Caractère alphanumérique uniquement",
"gender": "Genre", "gender": "Genre",
"doForgotPassword": "J'ai oublié mon mot de passe" "doForgotPassword": "J'ai oublié mon mot de passe"
/* spell-checker: enable */ /* spell-checker: enable */
}, },
}, },
}); });
} }
export type I18n = NonNullable<ReturnType<typeof useI18n>>; export type I18n = NonNullable<ReturnType<typeof useI18n>>;