web/admin: Fix typo 'username address' -> 'username' (#1473)
This commit is contained in:
parent
b79901df87
commit
674bd9e05c
|
@ -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",
|
||||
|
|
|
@ -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."
|
||||
)
|
||||
)
|
||||
|
|
|
@ -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."
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Reference in New Issue