Fixed typo, #3190.
This commit is contained in:
parent
0240d1a651
commit
c814fdc412
|
@ -40,7 +40,7 @@ Object.defineProperty(Array.prototype, 'getParameter',
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// The folloing line just below with 'msh=' needs to stay exactly like this since MeshCentral will replace it with the correct settings.
|
// The following line just below with 'msh=' needs to stay exactly like this since MeshCentral will replace it with the correct settings.
|
||||||
var msh = {};
|
var msh = {};
|
||||||
var translation = JSON.parse(msh.translation);
|
var translation = JSON.parse(msh.translation);
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</table>
|
</table>
|
||||||
<area-header>
|
<area-header>
|
||||||
<p>
|
<p>
|
||||||
The folloing devices have changed their connection state.
|
The following devices have changed their connection state.
|
||||||
</p>
|
</p>
|
||||||
</area-header>
|
</area-header>
|
||||||
<area-connections>
|
<area-connections>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[[[SERVERNAME]]] - Device Notification
|
[[[SERVERNAME]]] - Device Notification
|
||||||
~<area-header>
|
~<area-header>
|
||||||
The folloing devices have changed their connection state.
|
The following devices have changed their connection state.
|
||||||
~</area-header>
|
~</area-header>
|
||||||
~<area-connections>
|
~<area-connections>
|
||||||
~
|
~
|
||||||
|
|
|
@ -2851,7 +2851,7 @@ function CreateMeshCentralServer(config, args) {
|
||||||
obj.fs.readFile(amtlogfilename, 'utf8', function (err, data) {
|
obj.fs.readFile(amtlogfilename, 'utf8', function (err, data) {
|
||||||
var amtPasswords = {}; // UUID --> [Passwords]
|
var amtPasswords = {}; // UUID --> [Passwords]
|
||||||
if ((err == null) && (data != null)) {
|
if ((err == null) && (data != null)) {
|
||||||
const lines = data.split('\r\n').join('\n').split('\n');
|
const lines = data.split('\n');
|
||||||
for (var i in lines) {
|
for (var i in lines) {
|
||||||
var line = lines[i];
|
var line = lines[i];
|
||||||
if (line.startsWith('{')) {
|
if (line.startsWith('{')) {
|
||||||
|
|
|
@ -56369,7 +56369,7 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"en": "The folloing devices have changed their connection state.",
|
"en": "The following devices have changed their connection state.",
|
||||||
"xloc": [
|
"xloc": [
|
||||||
"device-notify.html->2->3->1",
|
"device-notify.html->2->3->1",
|
||||||
"device-notify.txt"
|
"device-notify.txt"
|
||||||
|
|
Loading…
Reference in New Issue