1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Language strings.
|
|
|
19 |
*
|
|
|
20 |
* @package factor_totp
|
|
|
21 |
* @subpackage tool_mfa
|
|
|
22 |
* @author Mikhail Golenkov <golenkovm@gmail.com>
|
|
|
23 |
* @copyright Catalyst IT
|
|
|
24 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
25 |
*/
|
|
|
26 |
|
|
|
27 |
$string['action:manage'] = 'Manage time-based one-time password (TOTP) authenticator';
|
|
|
28 |
$string['action:revoke'] = 'Remove time-based one-time password (TOTP) authenticator';
|
|
|
29 |
$string['devicename'] = 'Device label';
|
|
|
30 |
$string['devicename_help'] = 'This is the device you have an authenticator app installed on. You can set up multiple devices so this label helps track which ones are being used. You should set up each device with their own unique code so they can be revoked separately.';
|
|
|
31 |
$string['devicenameexample'] = 'eg "Work iPhone 11"';
|
|
|
32 |
$string['error:alreadyregistered'] = 'This time-based one-time password (TOTP) secret has already been registered.';
|
|
|
33 |
$string['error:codealreadyused'] = 'This code has already been used to authenticate. Please wait for a new code to be generated, and try again.';
|
|
|
34 |
$string['error:futurecode'] = 'This code is invalid. Please verify the time on your authenticator device is correct and try again.
|
|
|
35 |
Current system time is {$a}.';
|
|
|
36 |
$string['error:oldcode'] = 'This code is too old. Please verify the time on your authenticator device is correct and try again.
|
|
|
37 |
Current system time is {$a}.';
|
|
|
38 |
$string['error:wrongverification'] = 'Incorrect verification code.';
|
|
|
39 |
$string['factorsetup'] = 'App setup';
|
|
|
40 |
$string['info'] = 'Generate a verification code using an authenticator app.';
|
|
|
41 |
$string['logindesc'] = 'Use the authenticator app in your mobile device to generate a code.';
|
|
|
42 |
$string['loginoption'] = 'Use Authenticator application';
|
|
|
43 |
$string['loginskip'] = 'I don\'t have my device';
|
|
|
44 |
$string['loginsubmit'] = 'Continue';
|
|
|
45 |
$string['logintitle'] = 'Verify it\'s you by mobile app';
|
|
|
46 |
$string['managefactor'] = 'Manage authenticator app';
|
|
|
47 |
$string['managefactorbutton'] = 'Manage';
|
|
|
48 |
$string['manageinfo'] = 'You are using \'{$a}\' to authenticate.';
|
|
|
49 |
$string['pluginname'] = 'Authenticator app';
|
|
|
50 |
$string['privacy:metadata'] = 'The Authenticator app factor plugin does not store any personal data.';
|
|
|
51 |
$string['replacefactor'] = 'Replace authenticator app';
|
|
|
52 |
$string['replacefactorconfirmation'] = 'Replace \'{$a}\' authenticator app?';
|
|
|
53 |
$string['revokefactorconfirmation'] = 'Remove \'{$a}\' authenticator app?';
|
|
|
54 |
$string['settings:totplink'] = 'Show mobile app setup link';
|
|
|
55 |
$string['settings:totplink_help'] = 'If enabled the user will see a 3rd setup option with a direct otpauth:// link';
|
|
|
56 |
$string['settings:window'] = 'TOTP verification window';
|
|
|
57 |
$string['settings:window_help'] = 'How long each code is valid for. You can set this to a higher value as a workaround if your users device clocks are often slightly wrong.
|
|
|
58 |
Rounded down to the nearest 30 seconds, which is the time between new generated codes.';
|
|
|
59 |
$string['setupfactor'] = 'Set up authenticator app';
|
|
|
60 |
$string['setupfactorbutton'] = 'Set up';
|
|
|
61 |
$string['setupfactor:account'] = 'Account:';
|
|
|
62 |
$string['setupfactor:devicename'] = 'Device name';
|
|
|
63 |
$string['setupfactor:devicenameinfo'] = 'This helps you identify which device receives the verification code.';
|
|
|
64 |
$string['setupfactor:enter'] = 'Enter details manually';
|
|
|
65 |
$string['setupfactor:instructionsdevicename'] = '1. Give your device a name.';
|
|
|
66 |
$string['setupfactor:instructionsscan'] = '2. Scan the QR code with your authenticator app.';
|
|
|
67 |
$string['setupfactor:instructionsverification'] = '3. Enter the verification code.';
|
|
|
68 |
$string['setupfactor:intro'] = 'To set up this method, you need to have a device with an authenticator app. If you don\'t have an app, you can download one. For example, <a href="https://2fas.com/" target="_blank">2FAS Auth</a>, <a href="https://freeotp.github.io/" target="_blank">FreeOTP</a>, Google Authenticator, Microsoft Authenticator or Twilio Authy.';
|
|
|
69 |
$string['setupfactor:key'] = 'Secret key: ';
|
|
|
70 |
$string['setupfactor:link'] = 'Or enter details manually.';
|
|
|
71 |
$string['setupfactor:link_help'] = 'If you are on a mobile device and already have an authenticator app installed this link may work. Note that using TOTP on the same device as you login on can weaken the benefits of MFA.';
|
|
|
72 |
$string['setupfactor:linklabel'] = 'Open app already installed on this device';
|
|
|
73 |
$string['setupfactor:mode'] = 'Mode:';
|
|
|
74 |
$string['setupfactor:mode:timebased'] = 'Time-based';
|
|
|
75 |
$string['setupfactor:scanwithapp'] = 'Scan QR code with your chosen authenticator application.';
|
|
|
76 |
$string['setupfactor:verificationcode'] = 'Verification code';
|
|
|
77 |
$string['summarycondition'] = 'using a TOTP app';
|
|
|
78 |
$string['systimeformat'] = '%l:%M:%S %P %Z';
|
|
|
79 |
$string['verificationcode'] = 'Enter your 6 digit verification code';
|
|
|
80 |
$string['verificationcode_help'] = 'Open your authenticator app such as Google Authenticator and look for the 6 digit code which matches this site and username';
|
|
|
81 |
|
|
|
82 |
// Deprecated since Moodle 4.4.
|
|
|
83 |
$string['setupfactor:scanfail'] = 'Can\'t scan?';
|
|
|
84 |
$string['setupfactor:scan'] = 'Scan QR code';
|