diff --git a/src/keycloak-theme/KcApp.tsx b/src/keycloak-theme/KcApp.tsx
index de1f801..514b01e 100644
--- a/src/keycloak-theme/KcApp.tsx
+++ b/src/keycloak-theme/KcApp.tsx
@@ -35,6 +35,12 @@ export default function App(props: { kcContext: KcContext; }) {
if (i18n === null) {
return null;
}
+
+ /*
+ * Examples assuming i18n.currentLanguageTag === "en":
+ * i18n.msg("access-denied") === Access denied
+ * i18n.msg("foo") === foo in English
+ */
const pageProps: Omit, "kcContext"> = {
i18n,