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

View file

@ -283,7 +283,7 @@ class SourceUserMatchingModes(models.TextChoices):
) )
USERNAME_LINK = "username_link", _( 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." "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/oauth/OAuthSourceForm.ts
#: src/pages/sources/plex/PlexSourceForm.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 "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. Can have security implications when a username is used with another source."
#: src/pages/stages/invitation/InvitationListLink.ts #: src/pages/stages/invitation/InvitationListLink.ts
msgid "Link to use the invitation." msgid "Link to use the invitation."

View file

@ -2323,7 +2323,7 @@ msgstr ""
#: src/pages/sources/oauth/OAuthSourceForm.ts #: src/pages/sources/oauth/OAuthSourceForm.ts
#: src/pages/sources/plex/PlexSourceForm.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 "" msgstr ""
#: src/pages/stages/invitation/InvitationListLink.ts #: src/pages/stages/invitation/InvitationListLink.ts

View file

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

View file

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