web/admin: Fix typo 'username address' -> 'username' (#1473)

This commit is contained in:
pemontto 2021-09-26 11:53:37 +01:00 committed by GitHub
parent b79901df87
commit 674bd9e05c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -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",

View File

@ -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."
)
)

View File

@ -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."

View File

@ -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

View File

@ -219,7 +219,7 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
?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.`}
</option>
<option
value=${UserMatchingModeEnum.UsernameDeny}

View File

@ -204,7 +204,7 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
?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.`}
</option>
<option
value=${UserMatchingModeEnum.UsernameDeny}