🌎Internationalization and Translations
Or i18n for short
Base principles
export default function Register(props: RegisterProps) {
const { i18n } = props;
const { msg, msgStr, advancedMsg, advancedMsgStr } = i18n;
return (
//...
<a href={url.loginUrl}>
{msg("backToLogin")}
</a>
// ...
);
}
msg("backToLogin") gets rendered as « Back to LoginOverriding the base message or adding custom ones
In the theme

In the Keycloak Realm configuration



Stories in different languages
What do do if my language is not in the default set

Last updated
Was this helpful?


