providers/saml: Fix typo (#1950)
This commit is contained in:
parent
db06428ab9
commit
273f5211a0
|
@ -21,7 +21,7 @@ class Migration(migrations.Migration):
|
|||
name="audience",
|
||||
field=models.TextField(
|
||||
default="",
|
||||
help_text="Value of the audience restriction field of the asseration.",
|
||||
help_text="Value of the audience restriction field of the assertion.",
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
|
|
|
@ -16,7 +16,7 @@ class Migration(migrations.Migration):
|
|||
field=models.TextField(
|
||||
blank=True,
|
||||
default="",
|
||||
help_text="Value of the audience restriction field of the asseration. When left empty, no audience restriction will be added.",
|
||||
help_text="Value of the audience restriction field of the assertion. When left empty, no audience restriction will be added.",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
|
@ -41,7 +41,7 @@ class SAMLProvider(Provider):
|
|||
blank=True,
|
||||
help_text=_(
|
||||
(
|
||||
"Value of the audience restriction field of the asseration. When left empty, "
|
||||
"Value of the audience restriction field of the assertion. When left empty, "
|
||||
"no audience restriction will be added."
|
||||
)
|
||||
),
|
||||
|
|
|
@ -27952,7 +27952,7 @@ components:
|
|||
maxLength: 200
|
||||
audience:
|
||||
type: string
|
||||
description: Value of the audience restriction field of the asseration.
|
||||
description: Value of the audience restriction field of the assertion.
|
||||
When left empty, no audience restriction will be added.
|
||||
issuer:
|
||||
type: string
|
||||
|
@ -29559,7 +29559,7 @@ components:
|
|||
maxLength: 200
|
||||
audience:
|
||||
type: string
|
||||
description: Value of the audience restriction field of the asseration.
|
||||
description: Value of the audience restriction field of the assertion.
|
||||
When left empty, no audience restriction will be added.
|
||||
issuer:
|
||||
type: string
|
||||
|
@ -29661,7 +29661,7 @@ components:
|
|||
maxLength: 200
|
||||
audience:
|
||||
type: string
|
||||
description: Value of the audience restriction field of the asseration.
|
||||
description: Value of the audience restriction field of the assertion.
|
||||
When left empty, no audience restriction will be added.
|
||||
issuer:
|
||||
type: string
|
||||
|
|
|
@ -961,8 +961,8 @@ msgstr "Configure how the outpost queries the core authentik server's users."
|
|||
#~ msgstr "Configure settings relevant to your user profile."
|
||||
|
||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||
msgid "Configure the maximum allowed time drift for an asseration."
|
||||
msgstr "Configure the maximum allowed time drift for an asseration."
|
||||
msgid "Configure the maximum allowed time drift for an assertion."
|
||||
msgstr "Configure the maximum allowed time drift for an assertion."
|
||||
|
||||
#: src/pages/tenants/TenantListPage.ts
|
||||
msgid "Configure visual settings and defaults for different domains."
|
||||
|
|
|
@ -959,7 +959,7 @@ msgstr ""
|
|||
#~ msgstr "Configure les paramètre applicable à votre profil."
|
||||
|
||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||
msgid "Configure the maximum allowed time drift for an asseration."
|
||||
msgid "Configure the maximum allowed time drift for an assertion."
|
||||
msgstr "Configure la dérive temporelle maximale d'une assetion."
|
||||
|
||||
#: src/pages/tenants/TenantListPage.ts
|
||||
|
|
|
@ -955,7 +955,7 @@ msgstr ""
|
|||
#~ msgstr ""
|
||||
|
||||
#: src/pages/providers/saml/SAMLProviderForm.ts
|
||||
msgid "Configure the maximum allowed time drift for an asseration."
|
||||
msgid "Configure the maximum allowed time drift for an assertion."
|
||||
msgstr ""
|
||||
|
||||
#: src/pages/tenants/TenantListPage.ts
|
||||
|
|
|
@ -297,7 +297,7 @@ export class SAMLProviderFormPage extends ModelForm<SAMLProvider, number> {
|
|||
required
|
||||
/>
|
||||
<p class="pf-c-form__helper-text">
|
||||
${t`Configure the maximum allowed time drift for an asseration.`}
|
||||
${t`Configure the maximum allowed time drift for an assertion.`}
|
||||
</p>
|
||||
<p class="pf-c-form__helper-text">
|
||||
${t`(Format: hours=-1;minutes=-2;seconds=-3).`}
|
||||
|
|
Reference in New Issue