1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Minor fixes.

This commit is contained in:
Ylian Saint-Hilaire 2020-12-09 17:13:02 -08:00
parent 0159610449
commit 615c1e81c0
4 changed files with 11 additions and 9 deletions

View file

@ -61,7 +61,7 @@
var msg = '';
switch (msgid) {
case 1: { msg = "ERROR: Invalid domain."; break; }
case 2: { msg = "ERROR: Invalid username \"{0}\"."; break; }
case 2: { msg = format("ERROR: Invalid username \"{0}\".", arg1); break; }
case 3: { msg = format("ERROR: Invalid e-mail \"{0}\" for user \"{1}\".", arg1, arg2); break; }
case 4: { msg = format("E-mail \"{0}\" for user \"{1}\" already verified.", arg1, arg2); break; }
case 5: { msg = format("E-mail \"{0}\" already in use on a different account. Change the email address and try again.", arg1); break; }