aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-03-09 15:48:03 +0000
committerMario <mario@mariovavti.com>2023-03-09 15:48:03 +0000
commit203d9d651f799710cc38824312b29ba341f1ea0f (patch)
tree9b6e1495aafb64995d04137643f45505fa3ce965 /Zotlabs/Module
parent8af5788fc193a245c8aeed3b554a79baaa1bde3a (diff)
downloadvolse-hubzilla-203d9d651f799710cc38824312b29ba341f1ea0f.tar.gz
volse-hubzilla-203d9d651f799710cc38824312b29ba341f1ea0f.tar.bz2
volse-hubzilla-203d9d651f799710cc38824312b29ba341f1ea0f.zip
mfa strings update
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Settings/Account.php1
-rw-r--r--Zotlabs/Module/Settings/Multifactor.php11
2 files changed, 6 insertions, 6 deletions
diff --git a/Zotlabs/Module/Settings/Account.php b/Zotlabs/Module/Settings/Account.php
index 5e1fb176e..85e7c793f 100644
--- a/Zotlabs/Module/Settings/Account.php
+++ b/Zotlabs/Module/Settings/Account.php
@@ -105,6 +105,7 @@ class Account {
'$password1' => array('npassword', t('Enter New Password'), '', ''),
'$password2' => array('confirm', t('Confirm New Password'), '', t('Leave password fields blank unless changing')),
'$submit' => t('Submit'),
+ '$mfa' => t('Multi-Factor Authentication'),
'$email' => array('email', t('DId2 or Email Address:'), $email, '', '', $attremail),
'$email_hidden' => (($attremail) ? $email : ''),
'$removeme' => t('Remove Account'),
diff --git a/Zotlabs/Module/Settings/Multifactor.php b/Zotlabs/Module/Settings/Multifactor.php
index 5ac47be09..191055e2c 100644
--- a/Zotlabs/Module/Settings/Multifactor.php
+++ b/Zotlabs/Module/Settings/Multifactor.php
@@ -51,10 +51,9 @@ class Multifactor {
return replace_macros(get_markup_template('totp_setup.tpl'),
[
'$form_security_token' => get_form_security_token("settings_mfa"),
- '$title' => t(' Account Multifactor Settings'),
- '$totp_setup_text' => t('Multi-Factor Authentication Setup'),
- '$secret_text' => t('This is your generated secret. It may be used in some cases if the QR image cannot be read. Please save it.'),
- '$test_title' => t('Please enter the code from your authenticator'),
+ '$title' => t('Account Multi-Factor Authentication'),
+ '$secret_text' => t('This is your generated secret. It may be used in some cases if the QR image cannot be read. Please store it in a safe place.'),
+ '$test_title' => t('Please enter the code from your authenticator app'),
'$test_title_sub' => t('You will only be able to enable MFA if the test passes'),
'$qrcode' => (new QRCode())->render($uri),
'$uri' => $uri,
@@ -63,9 +62,9 @@ class Multifactor {
'$test_fail' => t("Incorrect code."),
'$enable_mfa' => [
'enable_mfa',
- t('Enable Multi-factor Authentication'),
+ t('Enable Multi-Factor Authentication'),
AConfig::Get($account['account_id'], 'system', 'mfa_enabled'),
- '',
+ t('Logging in will require you to be in possession of your smartphone with an authenticator app'),
[t('No'), t('Yes')]
],
'$submit' => t('Submit'),