forked from Github-Mirrors/canaille
doc: prefer 'multi-factor' over 'two-factor' term
This commit is contained in:
parent
b336e01938
commit
44c5669d97
6 changed files with 1417 additions and 1415 deletions
|
@ -469,7 +469,7 @@ def redirect_to_verify_2fa(user, otp_method, request_ip, fail_redirect_url):
|
|||
if otp_method in ["HOTP", "TOTP"]:
|
||||
if not user.last_otp_login:
|
||||
flash(
|
||||
"You have not enabled Two-Factor Authentication. Please enable it first to login.",
|
||||
"You have not enabled multi-factor authentication. Please enable it first to login.",
|
||||
"info",
|
||||
)
|
||||
return redirect(url_for("core.auth.setup_two_factor_auth"))
|
||||
|
|
|
@ -255,14 +255,14 @@ class User(Model):
|
|||
|
||||
secret_token: str | None = None
|
||||
"""Unique token generated for each user, used for
|
||||
two-factor authentication."""
|
||||
multi-factor authentication."""
|
||||
|
||||
hotp_counter: int | None = None
|
||||
"""HMAC-based One Time Password counter, used for
|
||||
two-factor authentication."""
|
||||
multi-factor authentication."""
|
||||
|
||||
one_time_password: str | None = None
|
||||
"""One time password used for email or sms two-factor authentication."""
|
||||
"""One time password used for email or sms multi-factor authentication."""
|
||||
|
||||
one_time_password_emission_date: datetime.datetime | None = None
|
||||
"""A DateTime indicating when the user last emitted an email or sms one-time password."""
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="content">
|
||||
{{ _("Sign in as %(username)s", username=username) }}
|
||||
</div>
|
||||
<div class="sub header">{% trans %}Set up Two-Factor Authentication.{% endtrans %}</div>
|
||||
<div class="sub header">{% trans %}Set up multi-factor authentication.{% endtrans %}</div>
|
||||
</h2>
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PROJECT VERSION\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2024-12-12 09:58+0100\n"
|
||||
"POT-Creation-Date: 2024-12-12 12:02+0100\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -1087,7 +1087,7 @@ msgid "Impersonate"
|
|||
msgstr ""
|
||||
|
||||
#: canaille/core/templates/setup-2fa.html:23
|
||||
msgid "Set up Two-Factor Authentication."
|
||||
msgid "Set up multi-factor authentication."
|
||||
msgstr ""
|
||||
|
||||
#: canaille/core/templates/users.html:5 canaille/core/templates/users.html:29
|
||||
|
|
2816
doc/locales/doc.pot
2816
doc/locales/doc.pot
File diff suppressed because it is too large
Load diff
|
@ -177,7 +177,7 @@ def test_new_user_setup_otp(testclient, backend, caplog, otp_method):
|
|||
assert res.location == "/setup-2fa"
|
||||
assert (
|
||||
"info",
|
||||
"You have not enabled Two-Factor Authentication. Please enable it first to login.",
|
||||
"You have not enabled multi-factor authentication. Please enable it first to login.",
|
||||
) in res.flashes
|
||||
res = testclient.get("/setup-2fa", status=200)
|
||||
assert u.secret_token == res.form["secret"].value
|
||||
|
|
Loading…
Reference in a new issue