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",
|
"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",
|
||||||
|
|
|
@ -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."
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -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."
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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}
|
||||||
|
|
|
@ -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}
|
||||||
|
|
Reference in a new issue