From 674bd9e05c1f90f622e5ba471326d03d388c0042 Mon Sep 17 00:00:00 2001 From: pemontto <939704+pemontto@users.noreply.github.com> Date: Sun, 26 Sep 2021 11:53:37 +0100 Subject: [PATCH] web/admin: Fix typo 'username address' -> 'username' (#1473) --- authentik/core/migrations/0020_source_user_matching_mode.py | 2 +- authentik/core/models.py | 2 +- web/src/locales/en.po | 4 ++-- web/src/locales/pseudo-LOCALE.po | 2 +- web/src/pages/sources/oauth/OAuthSourceForm.ts | 2 +- web/src/pages/sources/plex/PlexSourceForm.ts | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/authentik/core/migrations/0020_source_user_matching_mode.py b/authentik/core/migrations/0020_source_user_matching_mode.py index 68f6f9524..aca0ad617 100644 --- a/authentik/core/migrations/0020_source_user_matching_mode.py +++ b/authentik/core/migrations/0020_source_user_matching_mode.py @@ -26,7 +26,7 @@ class Migration(migrations.Migration): ), ( "username_link", - "Link to a user with identical username address. Can have security implications when a username is used with another source.", + "Link to a user with identical username. Can have security implications when a username is used with another source.", ), ( "username_deny", diff --git a/authentik/core/models.py b/authentik/core/models.py index b1c0b3ec0..d60452dd1 100644 --- a/authentik/core/models.py +++ b/authentik/core/models.py @@ -283,7 +283,7 @@ class SourceUserMatchingModes(models.TextChoices): ) USERNAME_LINK = "username_link", _( ( - "Link to a user with identical username address. Can have security implications " + "Link to a user with identical username. Can have security implications " "when a username is used with another source." ) ) diff --git a/web/src/locales/en.po b/web/src/locales/en.po index d70be624a..63bdcc62f 100644 --- a/web/src/locales/en.po +++ b/web/src/locales/en.po @@ -2331,8 +2331,8 @@ msgstr "Link to a user with identical email address. Can have security implicati #: src/pages/sources/oauth/OAuthSourceForm.ts #: src/pages/sources/plex/PlexSourceForm.ts -msgid "Link to a user with identical username address. Can have security implications when a username is used with another source." -msgstr "Link to a user with identical username address. Can have security implications when a username is used with another source." +msgid "Link to a user with identical username. Can have security implications when a username is used with another source." +msgstr "Link to a user with identical username. Can have security implications when a username is used with another source." #: src/pages/stages/invitation/InvitationListLink.ts msgid "Link to use the invitation." diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index 1c40129a2..2ef83d86f 100644 --- a/web/src/locales/pseudo-LOCALE.po +++ b/web/src/locales/pseudo-LOCALE.po @@ -2323,7 +2323,7 @@ msgstr "" #: src/pages/sources/oauth/OAuthSourceForm.ts #: src/pages/sources/plex/PlexSourceForm.ts -msgid "Link to a user with identical username address. Can have security implications when a username is used with another source." +msgid "Link to a user with identical username. Can have security implications when a username is used with another source." msgstr "" #: src/pages/stages/invitation/InvitationListLink.ts diff --git a/web/src/pages/sources/oauth/OAuthSourceForm.ts b/web/src/pages/sources/oauth/OAuthSourceForm.ts index b7bf6369f..c5e46280f 100644 --- a/web/src/pages/sources/oauth/OAuthSourceForm.ts +++ b/web/src/pages/sources/oauth/OAuthSourceForm.ts @@ -219,7 +219,7 @@ export class OAuthSourceForm extends ModelForm { ?selected=${this.instance?.userMatchingMode === UserMatchingModeEnum.UsernameLink} > - ${t`Link to a user with identical username address. Can have security implications when a username is used with another source.`} + ${t`Link to a user with identical username. Can have security implications when a username is used with another source.`}