diff --git a/web/src/locales/en.po b/web/src/locales/en.po index ccdaee6c8..fbc5a2c01 100644 --- a/web/src/locales/en.po +++ b/web/src/locales/en.po @@ -2072,8 +2072,8 @@ msgid "Optional URL if the IDP supports Single-Logout." msgstr "Optional URL if the IDP supports Single-Logout." #: src/pages/stages/invitation/InvitationForm.ts:55 -msgid "Optional data which is loaded into the flow's 'prompt_data' context variable." -msgstr "Optional data which is loaded into the flow's 'prompt_data' context variable." +msgid "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." +msgstr "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." #: src/pages/stages/identification/IdentificationStageForm.ts:119 msgid "Optional enrollment flow, which is linked at the bottom of the page." @@ -2686,6 +2686,14 @@ msgstr "Set HTTP-Basic Authentication" msgid "Set a custom HTTP-Basic Authentication header based on values from authentik." msgstr "Set a custom HTTP-Basic Authentication header based on values from authentik." +#: src/pages/groups/GroupForm.ts:100 +#: src/pages/outposts/OutpostForm.ts:109 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:73 +#: src/pages/policies/PolicyTestForm.ts:78 +#: src/pages/users/UserForm.ts:81 +msgid "Set custom attributes using YAML or JSON." +msgstr "Set custom attributes using YAML or JSON." + #: src/pages/events/RuleForm.ts:96 #: src/pages/events/RuleListPage.ts:48 msgid "Severity" diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index 97d8f7b61..6977033c4 100644 --- a/web/src/locales/pseudo-LOCALE.po +++ b/web/src/locales/pseudo-LOCALE.po @@ -2068,7 +2068,7 @@ msgid "Optional URL if the IDP supports Single-Logout." msgstr "" #: src/pages/stages/invitation/InvitationForm.ts:55 -msgid "Optional data which is loaded into the flow's 'prompt_data' context variable." +msgid "Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON." msgstr "" #: src/pages/stages/identification/IdentificationStageForm.ts:119 @@ -2682,6 +2682,14 @@ msgstr "" msgid "Set a custom HTTP-Basic Authentication header based on values from authentik." msgstr "" +#: src/pages/groups/GroupForm.ts:100 +#: src/pages/outposts/OutpostForm.ts:109 +#: src/pages/outposts/ServiceConnectionKubernetesForm.ts:73 +#: src/pages/policies/PolicyTestForm.ts:78 +#: src/pages/users/UserForm.ts:81 +msgid "Set custom attributes using YAML or JSON." +msgstr "" + #: src/pages/events/RuleForm.ts:96 #: src/pages/events/RuleListPage.ts:48 msgid "Severity" diff --git a/web/src/pages/groups/GroupForm.ts b/web/src/pages/groups/GroupForm.ts index eb397beec..ee68f46ab 100644 --- a/web/src/pages/groups/GroupForm.ts +++ b/web/src/pages/groups/GroupForm.ts @@ -91,6 +91,7 @@ export class GroupForm extends Form { name="attributes"> +

${t`Set custom attributes using YAML or JSON.`}

`; } diff --git a/web/src/pages/outposts/OutpostForm.ts b/web/src/pages/outposts/OutpostForm.ts index 81d4a572b..af3d3cbd2 100644 --- a/web/src/pages/outposts/OutpostForm.ts +++ b/web/src/pages/outposts/OutpostForm.ts @@ -100,6 +100,7 @@ export class OutpostForm extends Form { label=${t`Configuration`} name="config"> +

${t`Set custom attributes using YAML or JSON.`}

`; }))} `; diff --git a/web/src/pages/outposts/ServiceConnectionKubernetesForm.ts b/web/src/pages/outposts/ServiceConnectionKubernetesForm.ts index 6ca48e661..1d9a5c998 100644 --- a/web/src/pages/outposts/ServiceConnectionKubernetesForm.ts +++ b/web/src/pages/outposts/ServiceConnectionKubernetesForm.ts @@ -67,6 +67,7 @@ export class ServiceConnectionKubernetesForm extends Form +

${t`Set custom attributes using YAML or JSON.`}

`; } diff --git a/web/src/pages/policies/PolicyTestForm.ts b/web/src/pages/policies/PolicyTestForm.ts index 799d934ee..5b67c397b 100644 --- a/web/src/pages/policies/PolicyTestForm.ts +++ b/web/src/pages/policies/PolicyTestForm.ts @@ -77,6 +77,7 @@ export class PolicyTestForm extends Form { name="context"> +

${t`Set custom attributes using YAML or JSON.`}

${this.result ? this.renderResult(): html``} `; diff --git a/web/src/pages/stages/invitation/InvitationForm.ts b/web/src/pages/stages/invitation/InvitationForm.ts index d81a67b3e..d104f758c 100644 --- a/web/src/pages/stages/invitation/InvitationForm.ts +++ b/web/src/pages/stages/invitation/InvitationForm.ts @@ -48,7 +48,7 @@ export class InvitationForm extends Form { name="fixedData"> -

${t`Optional data which is loaded into the flow's 'prompt_data' context variable.`}

+

${t`Optional data which is loaded into the flow's 'prompt_data' context variable. YAML or JSON.`}

`; } diff --git a/web/src/pages/users/UserForm.ts b/web/src/pages/users/UserForm.ts index 1d7aaf558..d1f66c717 100644 --- a/web/src/pages/users/UserForm.ts +++ b/web/src/pages/users/UserForm.ts @@ -74,6 +74,7 @@ export class UserForm extends Form { name="attributes"> +

${t`Set custom attributes using YAML or JSON.`}

`; }