Fixed typo, #3853
Ylian Saint-Hilaire committed
Apr 8, 2022 at 09:57 UTC
34e598f89f57724adbbdeed2b564f070aca06c17
4 files changed
+4
-4
meshcentral-config-schema.json
+1
-1
@@ -246,7 +246,7 @@
246
"maxInvalid2fa": {
247
"type": "object",
248
"additionalProperties": false,
249
- "description": "This section described a policy for how many times an IP address is allowed to attempt to perform two-factor authenticaiton (2FA) incorrectly. By default it's 10 times in 10 minutes, but this can be changed here.",
249
+ "description": "This section described a policy for how many times an IP address is allowed to attempt to perform two-factor authentication (2FA) incorrectly. By default it's 10 times in 10 minutes, but this can be changed here.",
250
"properties": {
251
"exclude": { "type": "string", "default": null, "description": "Ranges of IP addresses that are not subject to invalid 2FA limitations. For example: 192.168.1.0/24,172.16.0.1"},
252
"time": { "type": "integer", "default": 10, "description": "Time in minutes over which the a maximum number of invalid 2FA attempts is allowed from an IP address." },
translate/translate.json
+1
-1
@@ -23775,7 +23775,7 @@
23775
"cs": "Povolit e-mailovou dvoufaktorovou autentizaci.",
23776
"da": "Aktivér e-mail 2-faktor godkendelse.",
23777
"de": "Aktivieren Sie die E-Mail-Zwei-Faktor-Authentifizierung.",
23778
- "en": "Enable email two-factor authenticaiton.",
23778
+ "en": "Enable email two-factor authentication.",
23779
"es": "Habilitar autenticación de dos factores por correo electrónico.",
23780
"fi": "Ota käyttöön kaksi vaihenen todennus sähköpostitse.",
23781
"fr": "Activer l'authentification à deux facteurs par e-mail.",
views/default-mobile.handlebars
+1
-1
@@ -2253,7 +2253,7 @@
2253
var emailU2Fenabled = ((userinfo.otpekey == 1) && (userinfo.email != null) && (userinfo.emailVerified == true));
2254
setDialogMode(2, "Email Authentication", 1, function () {
2255
if (emailU2Fenabled != Q('email2facheck').checked) { meshserver.send({ action: 'otpemail', enabled: Q('email2facheck').checked }); }
2256
- }, "When enabled, on each login, you will be given the option to receive a login token to you email account for added security." + '<br /><br /><label><input id=email2facheck type=checkbox ' + (emailU2Fenabled ? 'checked' : '') + '/>' + "Enable email two-factor authenticaiton." + '</label>');
2256
+ }, "When enabled, on each login, you will be given the option to receive a login token to you email account for added security." + '<br /><br /><label><input id=email2facheck type=checkbox ' + (emailU2Fenabled ? 'checked' : '') + '/>' + "Enable email two-factor authentication." + '</label>');
2257
}
2258
2259
function account_manageAuthApp() {
views/default.handlebars
+1
-1
@@ -11279,7 +11279,7 @@
11279
var emailU2Fenabled = ((userinfo.otpekey == 1) && (userinfo.email != null) && (userinfo.emailVerified == true));
11280
setDialogMode(2, "Email Authentication", 1, function () {
11281
if (emailU2Fenabled != Q('email2facheck').checked) { meshserver.send({ action: 'otpemail', enabled: Q('email2facheck').checked }); }
11282
- }, "When enabled, on each login, you will be given the option to receive a login token to you email account for added security." + '<br /><br /><label><input id=email2facheck type=checkbox ' + (emailU2Fenabled?'checked':'') + '/>' + "Enable email two-factor authenticaiton." + '</label>');
11282
+ }, "When enabled, on each login, you will be given the option to receive a login token to you email account for added security." + '<br /><br /><label><input id=email2facheck type=checkbox ' + (emailU2Fenabled?'checked':'') + '/>' + "Enable email two-factor authentication." + '</label>');
11283
}
11284
11285
function account_manageAuthApp() {