Improved event translation, #3516
Ylian Saint-Hilaire committed
Jan 23, 2022 at 11:03 UTC
9c0e3bd4c501d25d95f41066d33a9930d1c14a35
5 files changed
+690
-626
emails/translations/device-notify_de.html
+1
-1
@@ -30,7 +30,7 @@
30
</area-disconnections>
31
<area-footer>
32
<p>
33
- To unsubscribe, <a href="[[[SERVERURL]]][[[UNSUBSCRIBELINK]]]">hier klicken</a> within 1 hour of getting this message.
33
+ To unsubscribe, <a href="[[[SERVERURL]]][[[UNSUBSCRIBELINK]]]">hier klicken</a> innerhalb 1 Stunde nach erhalt dieser Nachricht.
34
</p>
35
</area-footer>
36
</div></body></html>
\ No newline at end of file
meshuser.js
+14
-11
@@ -2097,18 +2097,20 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2097
if ((parent.GetMeshRights(user, mesh) & MESHRIGHT_EDITMESH) == 0) return;
2098
if ((command.meshid.split('/').length != 3) || (command.meshid.split('/')[1] != domain.id)) return; // Invalid domain, operation only valid for current domain
2099
2100
- if ((common.validateString(command.meshname, 1, 128) == true) && (command.meshname != mesh.name)) { change = 'Group name changed from "' + mesh.name + '" to "' + command.meshname + '"'; mesh.name = command.meshname; }
2101
- if ((common.validateString(command.desc, 0, 1024) == true) && (command.desc != mesh.desc)) { if (change != '') change += ' and description changed'; else change += 'Group "' + mesh.name + '" description changed'; mesh.desc = command.desc; }
2102
- if ((common.validateInt(command.flags) == true) && (command.flags != mesh.flags)) { if (change != '') change += ' and flags changed'; else change += 'Group "' + mesh.name + '" flags changed'; mesh.flags = command.flags; }
2103
- if ((common.validateInt(command.consent) == true) && (command.consent != mesh.consent)) { if (change != '') change += ' and consent changed'; else change += 'Group "' + mesh.name + '" consent changed'; mesh.consent = command.consent; }
2104
- if ((common.validateInt(command.expireDevs, 0, 2000) == true) && (command.expireDevs != mesh.expireDevs)) { if (change != '') change += ' and auto-remove changed'; else change += 'Group "' + mesh.name + '" auto-remove changed'; if (command.expireDevs == 0) { delete mesh.expireDevs; } else { mesh.expireDevs = command.expireDevs; } }
2100
+ var changesids = [];
2101
+ if ((common.validateString(command.meshname, 1, 128) == true) && (command.meshname != mesh.name)) { change = 'Device group name changed from "' + mesh.name + '" to "' + command.meshname + '"'; changesids.push(1); mesh.name = command.meshname; }
2102
+ if ((common.validateString(command.desc, 0, 1024) == true) && (command.desc != mesh.desc)) { if (change != '') change += ' and description changed'; else change += 'Device group "' + mesh.name + '" description changed'; changesids.push(2); mesh.desc = command.desc; }
2103
+ if ((common.validateInt(command.flags) == true) && (command.flags != mesh.flags)) { if (change != '') change += ' and flags changed'; else change += 'Device group "' + mesh.name + '" flags changed'; changesids.push(3); mesh.flags = command.flags; }
2104
+ if ((common.validateInt(command.consent) == true) && (command.consent != mesh.consent)) { if (change != '') change += ' and consent changed'; else change += 'Device group "' + mesh.name + '" consent changed'; changesids.push(4); mesh.consent = command.consent; }
2105
+ if ((common.validateInt(command.expireDevs, 0, 2000) == true) && (command.expireDevs != mesh.expireDevs)) { if (change != '') change += ' and auto-remove changed'; else change += 'Device group "' + mesh.name + '" auto-remove changed'; changesids.push(5); if (command.expireDevs == 0) { delete mesh.expireDevs; } else { mesh.expireDevs = command.expireDevs; } }
2106
2107
// See if we need to change device group invitation codes
2108
if (mesh.mtype == 2) {
2109
if (command.invite === '*') {
2110
// Clear invite codes
2111
if (mesh.invite != null) { delete mesh.invite; }
2111
- if (change != '') { change += ' and invite code changed'; } else { change += 'Group "' + mesh.name + '" invite code changed'; }
2112
+ if (change != '') { change += ' and invite code changed'; } else { change += 'Device group "' + mesh.name + '" invite code changed'; }
2113
+ changesids.push(6);
2114
} else if ((typeof command.invite == 'object') && (Array.isArray(command.invite.codes)) && (typeof command.invite.flags == 'number')) {
2115
// Set invite codes
2116
if ((mesh.invite == null) || (mesh.invite.codes != command.invite.codes) || (mesh.invite.flags != command.invite.flags)) {
@@ -2125,14 +2127,15 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2127
return;
2128
}
2129
mesh.invite = { codes: command.invite.codes, flags: command.invite.flags };
2128
- if (change != '') { change += ' and invite code changed'; } else { change += 'Group "' + mesh.name + '" invite code changed'; }
2130
+ if (change != '') { change += ' and invite code changed'; } else { change += 'Device group "' + mesh.name + '" invite code changed'; }
2131
+ changesids.push(6);
2132
}
2133
}
2134
}
2135
2136
if (change != '') {
2137
db.Set(mesh);
2135
- var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, flags: mesh.flags, consent: mesh.consent, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite, expireDevs: command.expireDevs };
2138
+ var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, name: mesh.name, mtype: mesh.mtype, desc: mesh.desc, flags: mesh.flags, consent: mesh.consent, action: 'meshchange', links: mesh.links, msgid: 142, msgArgs: [ mesh.name, changesids ], msg: change, domain: domain.id, invite: mesh.invite, expireDevs: command.expireDevs };
2139
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2140
parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id]), obj, event);
2141
}
@@ -2256,7 +2259,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2259
}
2260
2261
mesh = parent.meshes[command.meshid];
2259
- change = '';
2262
if (mesh) {
2263
// Check if this user has rights to do this
2264
if ((parent.GetMeshRights(user, mesh) & MESHRIGHT_EDITMESH) == 0) return;
@@ -2265,7 +2267,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2267
// TODO: Check if this is a change from the existing policy
2268
2269
// Perform the Intel AMT policy change
2268
- change = 'Intel AMT policy change';
2270
var amtpolicy = { type: command.amtpolicy.type };
2271
if ((command.amtpolicy.type === 2) || (command.amtpolicy.type === 3)) {
2272
amtpolicy = { type: command.amtpolicy.type, badpass: command.amtpolicy.badpass, cirasetup: command.amtpolicy.cirasetup };
@@ -2277,7 +2278,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2278
db.Set(mesh);
2279
var amtpolicy2 = Object.assign({}, amtpolicy); // Shallow clone
2280
if (amtpolicy2.password != null) { amtpolicy2.password = 1; }
2280
- var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, amt: amtpolicy2, action: 'meshchange', links: mesh.links, msg: change, domain: domain.id, invite: mesh.invite };
2281
+ var event = { etype: 'mesh', userid: user._id, username: user.name, meshid: mesh._id, amt: amtpolicy2, action: 'meshchange', links: mesh.links, msgid: 141, msg: "Intel(r) AMT policy change", domain: domain.id, invite: mesh.invite };
2282
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the mesh. Another event will come.
2283
parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(mesh, [user._id]), obj, event);
2284
@@ -2963,6 +2964,8 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2964
// Event the node change. Only do this if the database will not do it.
2965
event.msg = 'Changed device ' + node.name + ' from group ' + mesh.name + ': ' + changes.join(', ');
2966
event.node = parent.CloneSafeNode(node);
2967
+ event.msgid = 140;
2968
+ event.msgArgs = [ node.name, mesh.name, changes.join(', ') ];
2969
if (amtchange == 1) { event.amtchange = 1; } // This will give a hint to the AMT Manager to reconnect using new AMT credentials
2970
if (command.rdpport == 3389) { event.node.rdpport = 3389; }
2971
if (command.rfbport == 5900) { event.node.rfbport = 5900; }
translate/translate.json
+653
-611
@@ -325,7 +325,7 @@
325
"da": " Brugere skal logge ind på denne server én gang før de kan tilføjes til denne enhedsgruppe.",
326
"xloc": [
327
"default.handlebars->39->1957",
328
- "default.handlebars->39->2484"
328
+ "default.handlebars->39->2494"
329
]
330
},
331
{
@@ -929,7 +929,8 @@
929
"da": ",",
930
"xloc": [
931
"default-mobile.handlebars->11->687",
932
- "default.handlebars->39->2031"
932
+ "default.handlebars->39->2031",
933
+ "default.handlebars->39->2277"
934
]
935
},
936
{
@@ -1535,7 +1536,7 @@
1536
"default-mobile.handlebars->11->470",
1537
"default.handlebars->39->1301",
1538
"default.handlebars->39->2086",
1538
- "default.handlebars->39->2682",
1539
+ "default.handlebars->39->2692",
1540
"sharing.handlebars->11->50"
1541
]
1542
},
@@ -1697,7 +1698,7 @@
1698
"zh-cht": "1個活躍時段",
1699
"da": "1 aktiv session",
1700
"xloc": [
1700
- "default.handlebars->39->2572"
1701
+ "default.handlebars->39->2582"
1702
]
1703
},
1704
{
@@ -1805,7 +1806,7 @@
1806
"zh-cht": "1群",
1807
"da": "1 gruppe",
1808
"xloc": [
1808
- "default.handlebars->39->2531"
1809
+ "default.handlebars->39->2541"
1810
]
1811
},
1812
{
@@ -1935,7 +1936,7 @@
1936
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1937
"da": "1 brugere mere vises ikke, brug søgefeltet for at søge efter brugere...",
1938
"xloc": [
1938
- "default.handlebars->39->2299"
1939
+ "default.handlebars->39->2309"
1940
]
1941
},
1942
{
@@ -2132,7 +2133,7 @@
2133
"default-mobile.handlebars->11->211",
2134
"default-mobile.handlebars->11->215",
2135
"default-mobile.handlebars->11->219",
2135
- "default.handlebars->39->2303",
2136
+ "default.handlebars->39->2313",
2137
"default.handlebars->39->381",
2138
"default.handlebars->39->384",
2139
"default.handlebars->39->388",
@@ -2907,8 +2908,8 @@
2908
"zh-cht": "啟用第二因素身份驗證",
2909
"da": "2. faktor godkendelse aktiveret",
2910
"xloc": [
2910
- "default.handlebars->39->2317",
2911
- "default.handlebars->39->2555"
2911
+ "default.handlebars->39->2327",
2912
+ "default.handlebars->39->2565"
2913
]
2914
},
2915
{
@@ -4250,7 +4251,7 @@
4251
"zh-chs": "操作系统",
4252
"da": "AMT-OS",
4253
"xloc": [
4253
- "default.handlebars->39->2811"
4254
+ "default.handlebars->39->2821"
4255
]
4256
},
4257
{
@@ -4261,7 +4262,7 @@
4262
"pl": "AMT-Przekier",
4263
"da": "AMT-Redir",
4264
"xloc": [
4264
- "default.handlebars->39->2716"
4265
+ "default.handlebars->39->2726"
4266
]
4267
},
4268
{
@@ -4272,7 +4273,7 @@
4273
"pl": "AMT-WSMAN",
4274
"da": "AMT-WSMAN",
4275
"xloc": [
4275
- "default.handlebars->39->2715"
4276
+ "default.handlebars->39->2725"
4277
]
4278
},
4279
{
@@ -4531,7 +4532,7 @@
4532
"zh-cht": "存取伺服器檔案",
4533
"da": "Adgang til server filer",
4534
"xloc": [
4534
- "default.handlebars->39->2490"
4535
+ "default.handlebars->39->2500"
4536
]
4537
},
4538
{
@@ -4642,7 +4643,7 @@
4643
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
4644
"default.handlebars->39->1739",
4645
"default.handlebars->39->1741",
4645
- "default.handlebars->39->2864",
4646
+ "default.handlebars->39->2874",
4647
"default.handlebars->39->745",
4648
"default.handlebars->39->747"
4649
]
@@ -4669,7 +4670,7 @@
4670
"da": "Konto indstillinger",
4671
"xloc": [
4672
"default-mobile.handlebars->11->698",
4672
- "default.handlebars->39->2741"
4673
+ "default.handlebars->39->2751"
4674
]
4675
},
4676
{
@@ -4831,8 +4832,8 @@
4832
"zh-cht": "帳戶已被鎖定",
4833
"da": "Kontoen er spærret",
4834
"xloc": [
4834
- "default.handlebars->39->2319",
4835
- "default.handlebars->39->2487"
4835
+ "default.handlebars->39->2329",
4836
+ "default.handlebars->39->2497"
4837
]
4838
},
4839
{
@@ -4858,7 +4859,7 @@
4859
"da": "Kontogrænsen er nået.",
4860
"xloc": [
4861
"default-mobile.handlebars->11->710",
4861
- "default.handlebars->39->2753",
4862
+ "default.handlebars->39->2763",
4863
"login-mobile.handlebars->5->6",
4864
"login.handlebars->5->6",
4865
"login2.handlebars->7->8"
@@ -5541,8 +5542,8 @@
5542
"zh-cht": "新增裝置",
5543
"da": "Tilføj en enhed",
5544
"xloc": [
5544
- "default.handlebars->39->2462",
5545
- "default.handlebars->39->2621",
5545
+ "default.handlebars->39->2472",
5546
+ "default.handlebars->39->2631",
5547
"default.handlebars->39->426"
5548
]
5549
},
@@ -5594,8 +5595,8 @@
5595
"da": "Tilføj enhedsgruppe",
5596
"xloc": [
5597
"default.handlebars->39->1993",
5597
- "default.handlebars->39->2456",
5598
- "default.handlebars->39->2609",
5598
+ "default.handlebars->39->2466",
5599
+ "default.handlebars->39->2619",
5600
"default.handlebars->39->342"
5601
]
5602
},
@@ -5790,7 +5791,7 @@
5791
"zh-cht": "新增成員身份",
5792
"da": "Tilføj medlemsskab",
5793
"xloc": [
5793
- "default.handlebars->39->2641"
5794
+ "default.handlebars->39->2651"
5795
]
5796
},
5797
{
@@ -5944,7 +5945,7 @@
5945
"xloc": [
5946
"default.handlebars->39->1851",
5947
"default.handlebars->39->1992",
5947
- "default.handlebars->39->2615",
5948
+ "default.handlebars->39->2625",
5949
"default.handlebars->39->924"
5950
]
5951
},
@@ -6043,7 +6044,7 @@
6044
"da": "Tilføj brugere",
6045
"xloc": [
6046
"default.handlebars->39->1850",
6046
- "default.handlebars->39->2451"
6047
+ "default.handlebars->39->2461"
6048
]
6049
},
6050
{
@@ -6093,7 +6094,7 @@
6094
"zh-cht": "將用戶新增到用戶群",
6095
"da": "Tilføj brugere til brugergruppe",
6096
"xloc": [
6096
- "default.handlebars->39->2486"
6097
+ "default.handlebars->39->2496"
6098
]
6099
},
6100
{
@@ -6742,7 +6743,7 @@
6743
"zh-cht": "管理領域",
6744
"da": "Admin Realms",
6745
"xloc": [
6745
- "default.handlebars->39->2535"
6746
+ "default.handlebars->39->2545"
6747
]
6748
},
6749
{
@@ -6793,7 +6794,7 @@
6794
"zh-cht": "管理領域",
6795
"da": "Administrative Realms",
6796
"xloc": [
6796
- "default.handlebars->39->2384"
6797
+ "default.handlebars->39->2394"
6798
]
6799
},
6800
{
@@ -6818,7 +6819,7 @@
6819
"zh-cht": "管理員",
6820
"da": "Administrator",
6821
"xloc": [
6821
- "default.handlebars->39->2311"
6822
+ "default.handlebars->39->2321"
6823
]
6824
},
6825
{
@@ -6874,7 +6875,7 @@
6875
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
6876
"default.handlebars->39->2061",
6877
"default.handlebars->39->2074",
6877
- "default.handlebars->39->2809",
6878
+ "default.handlebars->39->2819",
6879
"default.handlebars->39->362",
6880
"default.handlebars->39->603",
6881
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -6980,7 +6981,7 @@
6981
"zh-cht": "代理錯誤計數器",
6982
"da": "Agent fejltællere",
6983
"xloc": [
6983
- "default.handlebars->39->2778"
6984
+ "default.handlebars->39->2788"
6985
]
6986
},
6987
{
@@ -7164,7 +7165,7 @@
7165
"zh-cht": "代理時段",
7166
"da": "Agent sessioner",
7167
"xloc": [
7167
- "default.handlebars->39->2794"
7168
+ "default.handlebars->39->2804"
7169
]
7170
},
7171
{
@@ -7698,7 +7699,7 @@
7699
"zh-cht": "代理",
7700
"da": "Agenter",
7701
"xloc": [
7701
- "default.handlebars->39->2822"
7702
+ "default.handlebars->39->2832"
7703
]
7704
},
7705
{
@@ -7751,7 +7752,7 @@
7752
"default-mobile.handlebars->11->141",
7753
"default-mobile.handlebars->11->471",
7754
"default-mobile.handlebars->11->473",
7754
- "default.handlebars->39->2690",
7755
+ "default.handlebars->39->2700",
7756
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
7757
]
7758
},
@@ -7777,7 +7778,7 @@
7778
"zh-cht": "全部可用",
7779
"da": "Alle tilgængelige",
7780
"xloc": [
7780
- "default.handlebars->39->2273"
7781
+ "default.handlebars->39->2283"
7782
]
7783
},
7784
{
@@ -7827,7 +7828,7 @@
7828
"zh-cht": "所有事件",
7829
"da": "Alla hændelser",
7830
"xloc": [
7830
- "default.handlebars->39->2271"
7831
+ "default.handlebars->39->2281"
7832
]
7833
},
7834
{
@@ -7904,7 +7905,7 @@
7905
"da": "Tillad brugere at administrere denne enhedsgruppe og enheder i denne gruppe.",
7906
"xloc": [
7907
"default.handlebars->39->1955",
7907
- "default.handlebars->39->2483"
7908
+ "default.handlebars->39->2493"
7909
]
7910
},
7911
{
@@ -8179,8 +8180,8 @@
8180
"da": "Altid besked",
8181
"xloc": [
8182
"default.handlebars->39->1828",
8182
- "default.handlebars->39->2442",
8183
- "default.handlebars->39->2544",
8183
+ "default.handlebars->39->2452",
8184
+ "default.handlebars->39->2554",
8185
"default.handlebars->39->831"
8186
]
8187
},
@@ -8207,8 +8208,8 @@
8208
"da": "Spørg altid",
8209
"xloc": [
8210
"default.handlebars->39->1829",
8210
- "default.handlebars->39->2443",
8211
- "default.handlebars->39->2545",
8211
+ "default.handlebars->39->2453",
8212
+ "default.handlebars->39->2555",
8213
"default.handlebars->39->832"
8214
]
8215
},
@@ -9370,7 +9371,7 @@
9371
"zh-cht": "你確定要{0}外掛嗎:{1}",
9372
"da": "Er du sikker på, at du vil {0} pluginnet: {1}",
9373
"xloc": [
9373
- "default.handlebars->39->2873"
9374
+ "default.handlebars->39->2883"
9375
]
9376
},
9377
{
@@ -9745,7 +9746,7 @@
9746
"zh-cht": "認證軟體",
9747
"da": "Godkendelses App",
9748
"xloc": [
9748
- "default.handlebars->39->2548"
9749
+ "default.handlebars->39->2558"
9750
]
9751
},
9752
{
@@ -9940,7 +9941,8 @@
9941
"zh-cht": "自動刪除",
9942
"da": "Auto-fjernelse",
9943
"xloc": [
9943
- "default.handlebars->39->1813"
9944
+ "default.handlebars->39->1813",
9945
+ "default.handlebars->39->2275"
9946
]
9947
},
9948
{
@@ -10113,7 +10115,7 @@
10115
"zh-cht": "可用內存",
10116
"da": "Tilgængelig hukommelse",
10117
"xloc": [
10116
- "default.handlebars->39->2803"
10118
+ "default.handlebars->39->2813"
10119
]
10120
},
10121
{
@@ -10437,7 +10439,7 @@
10439
"zh-cht": "備用碼",
10440
"da": "Sikkerhedskopi koder",
10441
"xloc": [
10440
- "default.handlebars->39->2551"
10442
+ "default.handlebars->39->2561"
10443
]
10444
},
10445
{
@@ -10472,7 +10474,7 @@
10474
"zh-cht": "錯誤的簽名",
10475
"da": "Ugyldig signatur",
10476
"xloc": [
10475
- "default.handlebars->39->2785"
10477
+ "default.handlebars->39->2795"
10478
]
10479
},
10480
{
@@ -10497,7 +10499,7 @@
10499
"zh-cht": "錯誤的網絡憑證",
10500
"da": "Ugyldig Web Certifikat",
10501
"xloc": [
10500
- "default.handlebars->39->2784"
10502
+ "default.handlebars->39->2794"
10503
]
10504
},
10505
{
@@ -10796,7 +10798,7 @@
10798
"zh-cht": "廣播",
10799
"da": "Meddelelse",
10800
"xloc": [
10799
- "default.handlebars->39->2449",
10801
+ "default.handlebars->39->2459",
10802
"default.handlebars->container->column_l->p4->3->1->0->3->1"
10803
]
10804
},
@@ -10822,7 +10824,7 @@
10824
"zh-cht": "廣播消息",
10825
"da": "Send en meddelelse",
10826
"xloc": [
10825
- "default.handlebars->39->2366"
10827
+ "default.handlebars->39->2376"
10828
]
10829
},
10830
{
@@ -10847,7 +10849,7 @@
10849
"zh-cht": "向所有連接的用戶廣播消息。",
10850
"da": "Send en besked til alle tilsluttede brugere.",
10851
"xloc": [
10850
- "default.handlebars->39->2361"
10852
+ "default.handlebars->39->2371"
10853
]
10854
},
10855
{
@@ -10981,7 +10983,7 @@
10983
"pl": "Bajtów Odebrano",
10984
"da": "Bytes Ind",
10985
"xloc": [
10984
- "default.handlebars->39->2708"
10986
+ "default.handlebars->39->2718"
10987
]
10988
},
10989
{
@@ -10992,7 +10994,7 @@
10994
"pl": "Bajtów Wysłano",
10995
"da": "Bytes Ud",
10996
"xloc": [
10995
- "default.handlebars->39->2709"
10997
+ "default.handlebars->39->2719"
10998
]
10999
},
11000
{
@@ -11069,7 +11071,7 @@
11071
"da": "CIRA",
11072
"xloc": [
11073
"default-mobile.handlebars->11->250",
11072
- "default.handlebars->39->2810",
11074
+ "default.handlebars->39->2820",
11075
"default.handlebars->39->364",
11076
"default.handlebars->39->605"
11077
]
@@ -11096,7 +11098,7 @@
11098
"zh-cht": "CIRA伺服器",
11099
"da": "CIRA-server",
11100
"xloc": [
11099
- "default.handlebars->39->2857"
11101
+ "default.handlebars->39->2867"
11102
]
11103
},
11104
{
@@ -11121,7 +11123,7 @@
11123
"zh-cht": "CIRA伺服器指令",
11124
"da": "CIRA serverkommandoer",
11125
"xloc": [
11124
- "default.handlebars->39->2858"
11126
+ "default.handlebars->39->2868"
11127
]
11128
},
11129
{
@@ -11184,7 +11186,7 @@
11186
"xloc": [
11187
"default-mobile.handlebars->11->582",
11188
"default.handlebars->39->1422",
11187
- "default.handlebars->39->2834",
11189
+ "default.handlebars->39->2844",
11190
"default.handlebars->container->column_l->p40->3->1->p40type->5"
11191
]
11192
},
@@ -11210,7 +11212,7 @@
11212
"zh-cht": "CPU負載",
11213
"da": "CPU-belastning",
11214
"xloc": [
11213
- "default.handlebars->39->2799"
11215
+ "default.handlebars->39->2809"
11216
]
11217
},
11218
{
@@ -11235,7 +11237,7 @@
11237
"zh-cht": "最近15分鐘的CPU負載",
11238
"da": "CPU-belastning i de seneste 15 minutter",
11239
"xloc": [
11238
- "default.handlebars->39->2802"
11240
+ "default.handlebars->39->2812"
11241
]
11242
},
11243
{
@@ -11260,7 +11262,7 @@
11262
"zh-cht": "最近5分鐘的CPU負載",
11263
"da": "CPU-belastning i de seneste 5 minutter",
11264
"xloc": [
11263
- "default.handlebars->39->2801"
11265
+ "default.handlebars->39->2811"
11266
]
11267
},
11268
{
@@ -11285,7 +11287,7 @@
11287
"zh-cht": "最近一分鐘的CPU負載",
11288
"da": "CPU-belastning det sidste minut",
11289
"xloc": [
11288
- "default.handlebars->39->2800"
11290
+ "default.handlebars->39->2810"
11291
]
11292
},
11293
{
@@ -11340,7 +11342,7 @@
11342
"zh-cht": "CSV",
11343
"da": "CSV",
11344
"xloc": [
11343
- "default.handlebars->39->2281"
11345
+ "default.handlebars->39->2291"
11346
]
11347
},
11348
{
@@ -11365,8 +11367,8 @@
11367
"zh-cht": "CSV格式",
11368
"da": "CSV-format",
11369
"xloc": [
11368
- "default.handlebars->39->2285",
11369
- "default.handlebars->39->2353",
11370
+ "default.handlebars->39->2295",
11371
+ "default.handlebars->39->2363",
11372
"default.handlebars->39->676"
11373
]
11374
},
@@ -11414,7 +11416,7 @@
11416
"zh-cht": "呼叫錯誤",
11417
"da": "Opkaldsfejl",
11418
"xloc": [
11417
- "default.handlebars->39->2874"
11419
+ "default.handlebars->39->2884"
11420
]
11421
},
11422
{
@@ -11454,7 +11456,7 @@
11456
"default-mobile.handlebars->11->106",
11457
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
11458
"default.handlebars->39->1787",
11457
- "default.handlebars->39->2863",
11459
+ "default.handlebars->39->2873",
11460
"default.handlebars->39->463",
11461
"default.handlebars->container->dialog->idx_dlgButtonBar",
11462
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -11735,7 +11737,7 @@
11737
"zh-cht": "更改{0}的電郵",
11738
"da": "Skift email adresse for {0}",
11739
"xloc": [
11738
- "default.handlebars->39->2596"
11740
+ "default.handlebars->39->2606"
11741
]
11742
},
11743
{
@@ -11789,7 +11791,7 @@
11791
"xloc": [
11792
"default-mobile.handlebars->11->114",
11793
"default.handlebars->39->1736",
11792
- "default.handlebars->39->2569"
11794
+ "default.handlebars->39->2579"
11795
]
11796
},
11797
{
@@ -11814,7 +11816,7 @@
11816
"zh-cht": "更改{0}的密碼",
11817
"da": "Skift Kodeord for {0}",
11818
"xloc": [
11817
- "default.handlebars->39->2605"
11819
+ "default.handlebars->39->2615"
11820
]
11821
},
11822
{
@@ -11839,7 +11841,7 @@
11841
"zh-cht": "更改{0}的真實名稱",
11842
"da": "Skift rigtige navn for {0}",
11843
"xloc": [
11842
- "default.handlebars->39->2591"
11844
+ "default.handlebars->39->2601"
11845
]
11846
},
11847
{
@@ -11986,7 +11988,7 @@
11988
"zh-cht": "更改該用戶的密碼",
11989
"da": "Skift kodeord for denne bruger",
11990
"xloc": [
11989
- "default.handlebars->39->2568"
11991
+ "default.handlebars->39->2578"
11992
]
11993
},
11994
{
@@ -12122,7 +12124,8 @@
12124
"zh-cht": "{1}組中的設備{0}已更改:{2}",
12125
"da": "Ændrede enhed {0} fra gruppe {1}: {2}",
12126
"xloc": [
12125
- "default.handlebars->39->2187"
12127
+ "default.handlebars->39->2187",
12128
+ "default.handlebars->39->2268"
12129
]
12130
},
12131
{
@@ -12244,9 +12247,9 @@
12247
"zh-cht": "聊天",
12248
"da": "Chat",
12249
"xloc": [
12247
- "default.handlebars->39->2302",
12248
- "default.handlebars->39->2564",
12249
- "default.handlebars->39->2565",
12250
+ "default.handlebars->39->2312",
12251
+ "default.handlebars->39->2574",
12252
+ "default.handlebars->39->2575",
12253
"default.handlebars->39->871",
12254
"default.handlebars->39->977",
12255
"default.handlebars->39->999"
@@ -12302,7 +12305,7 @@
12305
"da": "Chatanmodning, klik her for at acceptere.",
12306
"xloc": [
12307
"default-mobile.handlebars->11->711",
12305
- "default.handlebars->39->2754"
12308
+ "default.handlebars->39->2764"
12309
]
12310
},
12311
{
@@ -12478,7 +12481,7 @@
12481
"da": "Kontrollerer...",
12482
"xloc": [
12483
"default.handlebars->39->1488",
12481
- "default.handlebars->39->2868"
12484
+ "default.handlebars->39->2878"
12485
]
12486
},
12487
{
@@ -12919,7 +12922,7 @@
12922
"da": "Fjern alt",
12923
"xloc": [
12924
"default-mobile.handlebars->11->694",
12922
- "default.handlebars->39->2737"
12925
+ "default.handlebars->39->2747"
12926
]
12927
},
12928
{
@@ -13022,7 +13025,7 @@
13025
"da": "Ryd denne notifikation",
13026
"xloc": [
13027
"default-mobile.handlebars->11->693",
13025
- "default.handlebars->39->2736"
13028
+ "default.handlebars->39->2746"
13029
]
13030
},
13031
{
@@ -13148,7 +13151,7 @@
13151
"zh-cht": "單擊此處編輯用戶群名稱",
13152
"da": "Klik her for at redigere brugergruppens navn",
13153
"xloc": [
13151
- "default.handlebars->39->2423"
13154
+ "default.handlebars->39->2433"
13155
]
13156
},
13157
{
@@ -13485,7 +13488,7 @@
13488
"default.handlebars->39->1303",
13489
"default.handlebars->39->205",
13490
"default.handlebars->39->213",
13488
- "default.handlebars->39->2862",
13491
+ "default.handlebars->39->2872",
13492
"sharing.handlebars->11->52"
13493
]
13494
},
@@ -13717,8 +13720,8 @@
13720
"zh-cht": "通用裝置群",
13721
"da": "Fælles enhedsgrupper",
13722
"xloc": [
13720
- "default.handlebars->39->2457",
13721
- "default.handlebars->39->2610"
13723
+ "default.handlebars->39->2467",
13724
+ "default.handlebars->39->2620"
13725
]
13726
},
13727
{
@@ -13743,8 +13746,8 @@
13746
"zh-cht": "通用裝置",
13747
"da": "Fælles enheder",
13748
"xloc": [
13746
- "default.handlebars->39->2463",
13747
- "default.handlebars->39->2622"
13749
+ "default.handlebars->39->2473",
13750
+ "default.handlebars->39->2632"
13751
]
13752
},
13753
{
@@ -13867,10 +13870,10 @@
13870
"default.handlebars->39->1111",
13871
"default.handlebars->39->1120",
13872
"default.handlebars->39->1927",
13870
- "default.handlebars->39->2331",
13871
- "default.handlebars->39->2413",
13872
- "default.handlebars->39->2479",
13873
- "default.handlebars->39->2608",
13873
+ "default.handlebars->39->2341",
13874
+ "default.handlebars->39->2423",
13875
+ "default.handlebars->39->2489",
13876
+ "default.handlebars->39->2618",
13877
"default.handlebars->39->640"
13878
]
13879
},
@@ -13995,7 +13998,7 @@
13998
"zh-cht": "確認刪除所選帳戶?",
13999
"da": "Bekræft sletning af valgte konto(er)",
14000
"xloc": [
13998
- "default.handlebars->39->2330"
14001
+ "default.handlebars->39->2340"
14002
]
14003
},
14004
{
@@ -14042,7 +14045,7 @@
14045
"zh-cht": "確認刪除所選用戶群?",
14046
"da": "Bekræft sletning af valgte brugergruppe(r)?",
14047
"xloc": [
14045
- "default.handlebars->39->2412"
14048
+ "default.handlebars->39->2422"
14049
]
14050
},
14051
{
@@ -14067,7 +14070,7 @@
14070
"zh-cht": "確認刪除用戶{0}?",
14071
"da": "Bekræft sletning af bruger {0}?",
14072
"xloc": [
14070
- "default.handlebars->39->2607"
14073
+ "default.handlebars->39->2617"
14074
]
14075
},
14076
{
@@ -14092,7 +14095,7 @@
14095
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
14096
"da": "Bekræft fjernelse af medlemskab for bruger \\\"{0}\\\"?",
14097
"xloc": [
14095
- "default.handlebars->39->2482"
14098
+ "default.handlebars->39->2492"
14099
]
14100
},
14101
{
@@ -14117,7 +14120,7 @@
14120
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
14121
"da": "Bekræft fjernelse af medlemskab for brugergruppen \\\"{0}\\\"?",
14122
"xloc": [
14120
- "default.handlebars->39->2639"
14123
+ "default.handlebars->39->2649"
14124
]
14125
},
14126
{
@@ -14245,8 +14248,8 @@
14248
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
14249
"da": "Bekræft fjernelse af adgangsrettigheder til enheden \\\"{0}\\\"?",
14250
"xloc": [
14248
- "default.handlebars->39->2472",
14249
- "default.handlebars->39->2630"
14251
+ "default.handlebars->39->2482",
14252
+ "default.handlebars->39->2640"
14253
]
14254
},
14255
{
@@ -14271,8 +14274,8 @@
14274
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
14275
"da": "Bekræft fjernelse af adgangsrettigheder for enhedsgruppen \\\"{0}\\\"?",
14276
"xloc": [
14274
- "default.handlebars->39->2474",
14275
- "default.handlebars->39->2643"
14277
+ "default.handlebars->39->2484",
14278
+ "default.handlebars->39->2653"
14279
]
14280
},
14281
{
@@ -14297,7 +14300,7 @@
14300
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
14301
"da": "Bekræft fjernelse af adgangsrettigheder for brugeren \\\"{0}\\\"?",
14302
"xloc": [
14300
- "default.handlebars->39->2632"
14303
+ "default.handlebars->39->2642"
14304
]
14305
},
14306
{
@@ -14322,7 +14325,7 @@
14325
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
14326
"da": "Bekræft fjernelse af adgangsrettigheder for brugergruppen \\\"{0}\\\"?",
14327
"xloc": [
14325
- "default.handlebars->39->2635"
14328
+ "default.handlebars->39->2645"
14329
]
14330
},
14331
{
@@ -14347,8 +14350,8 @@
14350
"zh-cht": "確認刪除訪問權限?",
14351
"da": "Bekræft fjernelse af adgangsrettigheder?",
14352
"xloc": [
14350
- "default.handlebars->39->2633",
14351
- "default.handlebars->39->2636"
14353
+ "default.handlebars->39->2643",
14354
+ "default.handlebars->39->2646"
14355
]
14356
},
14357
{
@@ -14421,7 +14424,7 @@
14424
"zh-cht": "確認刪除設備共享“{0}”?",
14425
"da": "Bekræft fjernelse af enhedsdeling \\\"{0}\\\"?",
14426
"xloc": [
14424
- "default.handlebars->39->2628"
14427
+ "default.handlebars->39->2638"
14428
]
14429
},
14430
{
@@ -14951,7 +14954,7 @@
14954
"zh-cht": "已連接的Intel® AMT",
14955
"da": "Forbundne Intel® AMT",
14956
"xloc": [
14954
- "default.handlebars->39->2790"
14957
+ "default.handlebars->39->2800"
14958
]
14959
},
14960
{
@@ -14976,7 +14979,7 @@
14979
"zh-cht": "已连接的用户",
14980
"da": "Forbundne brugere",
14981
"xloc": [
14979
- "default.handlebars->39->2795"
14982
+ "default.handlebars->39->2805"
14983
]
14984
},
14985
{
@@ -15174,7 +15177,7 @@
15177
"zh-cht": "連接數量",
15178
"da": "Antal forbindelser",
15179
"xloc": [
15177
- "default.handlebars->39->2821"
15180
+ "default.handlebars->39->2831"
15181
]
15182
},
15183
{
@@ -15226,7 +15229,7 @@
15229
"zh-cht": "連接轉發器",
15230
"da": "Forbindelsesrelæ",
15231
"xloc": [
15229
- "default.handlebars->39->2856"
15232
+ "default.handlebars->39->2866"
15233
]
15234
},
15235
{
@@ -15308,6 +15311,12 @@
15311
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
15312
]
15313
},
15314
+ {
15315
+ "en": "Consent",
15316
+ "xloc": [
15317
+ "default.handlebars->39->2274"
15318
+ ]
15319
+ },
15320
{
15321
"cs": "Konzole",
15322
"de": "Konsole",
@@ -15437,7 +15446,7 @@
15446
"zh-cht": "Cookie編碼器",
15447
"da": "Cookie encoder",
15448
"xloc": [
15440
- "default.handlebars->39->2840"
15449
+ "default.handlebars->39->2850"
15450
]
15451
},
15452
{
@@ -15970,7 +15979,7 @@
15979
"zh-cht": "核心伺服器",
15980
"da": "Core Server",
15981
"xloc": [
15973
- "default.handlebars->39->2839"
15982
+ "default.handlebars->39->2849"
15983
]
15984
},
15985
{
@@ -16041,7 +16050,7 @@
16050
"zh-cht": "創建帳號",
16051
"da": "Opret konto",
16052
"xloc": [
16044
- "default.handlebars->39->2380",
16053
+ "default.handlebars->39->2390",
16054
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
16055
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
16056
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -16140,7 +16149,7 @@
16149
"zh-cht": "創建用戶群",
16150
"da": "Opret brugergruppe",
16151
"xloc": [
16143
- "default.handlebars->39->2420"
16152
+ "default.handlebars->39->2430"
16153
]
16154
},
16155
{
@@ -16338,7 +16347,7 @@
16347
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
16348
"da": "Opret mange konti på én gang ved at importere en JSON-fil med følgende format:",
16349
"xloc": [
16341
- "default.handlebars->39->2344"
16350
+ "default.handlebars->39->2354"
16351
]
16352
},
16353
{
@@ -16484,7 +16493,7 @@
16493
"zh-cht": "創建",
16494
"da": "Oprettelse",
16495
"xloc": [
16487
- "default.handlebars->39->2524"
16496
+ "default.handlebars->39->2534"
16497
]
16498
},
16499
{
@@ -16894,7 +16903,7 @@
16903
"da": "Nuværende adgangskode er ikke korrekt.",
16904
"xloc": [
16905
"default-mobile.handlebars->11->721",
16897
- "default.handlebars->39->2764"
16906
+ "default.handlebars->39->2774"
16907
]
16908
},
16909
{
@@ -17158,7 +17167,7 @@
17167
"xloc": [
17168
"default-mobile.handlebars->11->375",
17169
"default.handlebars->39->1095",
17161
- "default.handlebars->39->2688"
17170
+ "default.handlebars->39->2698"
17171
]
17172
},
17173
{
@@ -17281,10 +17290,10 @@
17290
"zh-cht": "默認",
17291
"da": "Standard",
17292
"xloc": [
17284
- "default.handlebars->39->2367",
17285
- "default.handlebars->39->2416",
17286
- "default.handlebars->39->2427",
17287
- "default.handlebars->39->2500"
17293
+ "default.handlebars->39->2377",
17294
+ "default.handlebars->39->2426",
17295
+ "default.handlebars->39->2437",
17296
+ "default.handlebars->39->2510"
17297
]
17298
},
17299
{
@@ -17402,7 +17411,7 @@
17411
"zh-cht": "刪除帳戶",
17412
"da": "Slet kontoer",
17413
"xloc": [
17405
- "default.handlebars->39->2332"
17414
+ "default.handlebars->39->2342"
17415
]
17416
},
17417
{
@@ -17553,7 +17562,7 @@
17562
"zh-cht": "刪除用戶",
17563
"da": "Slet Bruger",
17564
"xloc": [
17556
- "default.handlebars->39->2567"
17565
+ "default.handlebars->39->2577"
17566
]
17567
},
17568
{
@@ -17578,8 +17587,8 @@
17587
"zh-cht": "刪除用戶群組",
17588
"da": "Slet Bruger Gruppe",
17589
"xloc": [
17581
- "default.handlebars->39->2468",
17582
- "default.handlebars->39->2480"
17590
+ "default.handlebars->39->2478",
17591
+ "default.handlebars->39->2490"
17592
]
17593
},
17594
{
@@ -17604,7 +17613,7 @@
17613
"zh-cht": "刪除用戶群組",
17614
"da": "Slet Bruger Grupper",
17615
"xloc": [
17607
- "default.handlebars->39->2414"
17616
+ "default.handlebars->39->2424"
17617
]
17618
},
17619
{
@@ -17629,7 +17638,7 @@
17638
"zh-cht": "刪除用戶{0}",
17639
"da": "Slet Bruger {0}",
17640
"xloc": [
17632
- "default.handlebars->39->2606"
17641
+ "default.handlebars->39->2616"
17642
]
17643
},
17644
{
@@ -17655,7 +17664,7 @@
17664
"da": "Slet konto",
17665
"xloc": [
17666
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
17658
- "default.handlebars->39->2328",
17667
+ "default.handlebars->39->2338",
17668
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
17669
]
17670
},
@@ -17706,7 +17715,7 @@
17715
"zh-cht": "刪除群組",
17716
"da": "Slet gruppe",
17717
"xloc": [
17709
- "default.handlebars->39->2410"
17718
+ "default.handlebars->39->2420"
17719
]
17720
},
17721
{
@@ -17810,7 +17819,7 @@
17819
"zh-cht": "刪除用戶群組{0}?",
17820
"da": "Slet bruger gruppe {0}?",
17821
"xloc": [
17813
- "default.handlebars->39->2478"
17822
+ "default.handlebars->39->2488"
17823
]
17824
},
17825
{
@@ -18092,10 +18101,11 @@
18101
"default.handlebars->39->1750",
18102
"default.handlebars->39->1805",
18103
"default.handlebars->39->1930",
18095
- "default.handlebars->39->2419",
18104
+ "default.handlebars->39->2272",
18105
"default.handlebars->39->2429",
18097
- "default.handlebars->39->2430",
18098
- "default.handlebars->39->2476",
18106
+ "default.handlebars->39->2439",
18107
+ "default.handlebars->39->2440",
18108
+ "default.handlebars->39->2486",
18109
"default.handlebars->39->764",
18110
"default.handlebars->39->765",
18111
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -18150,10 +18160,10 @@
18160
"default.handlebars->39->1248",
18161
"default.handlebars->39->1867",
18162
"default.handlebars->39->1936",
18153
- "default.handlebars->39->2663",
18154
- "default.handlebars->39->2713",
18155
- "default.handlebars->39->2729",
18156
- "default.handlebars->39->2815",
18163
+ "default.handlebars->39->2673",
18164
+ "default.handlebars->39->2723",
18165
+ "default.handlebars->39->2739",
18166
+ "default.handlebars->39->2825",
18167
"default.handlebars->39->729",
18168
"default.handlebars->39->935",
18169
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -18285,7 +18295,7 @@
18295
"zh-chs": "桌面复用",
18296
"da": "Skrivebord Multiplex",
18297
"xloc": [
18288
- "default.handlebars->39->2820"
18298
+ "default.handlebars->39->2830"
18299
]
18300
},
18301
{
@@ -18311,8 +18321,8 @@
18321
"da": "Skrivebordsnotifikation",
18322
"xloc": [
18323
"default.handlebars->39->1823",
18314
- "default.handlebars->39->2437",
18315
- "default.handlebars->39->2539",
18324
+ "default.handlebars->39->2447",
18325
+ "default.handlebars->39->2549",
18326
"default.handlebars->39->826"
18327
]
18328
},
@@ -18339,8 +18349,8 @@
18349
"da": "Prompt på skrivebordet",
18350
"xloc": [
18351
"default.handlebars->39->1822",
18342
- "default.handlebars->39->2436",
18343
- "default.handlebars->39->2538",
18352
+ "default.handlebars->39->2446",
18353
+ "default.handlebars->39->2548",
18354
"default.handlebars->39->825"
18355
]
18356
},
@@ -18367,8 +18377,8 @@
18377
"da": "Skrivebords Prompt + Værktøjslinje",
18378
"xloc": [
18379
"default.handlebars->39->1820",
18370
- "default.handlebars->39->2434",
18371
- "default.handlebars->39->2536",
18380
+ "default.handlebars->39->2444",
18381
+ "default.handlebars->39->2546",
18382
"default.handlebars->39->823"
18383
]
18384
},
@@ -18393,7 +18403,7 @@
18403
"zh-chs": "桌面会话",
18404
"da": "Skrivebordssession",
18405
"xloc": [
18396
- "default.handlebars->39->2656"
18406
+ "default.handlebars->39->2666"
18407
]
18408
},
18409
{
@@ -18492,8 +18502,8 @@
18502
"da": "Skrivebords værktøjslinje",
18503
"xloc": [
18504
"default.handlebars->39->1821",
18495
- "default.handlebars->39->2435",
18496
- "default.handlebars->39->2537",
18505
+ "default.handlebars->39->2445",
18506
+ "default.handlebars->39->2547",
18507
"default.handlebars->39->824"
18508
]
18509
},
@@ -18518,7 +18528,7 @@
18528
"zh-chs": "仅桌面视图",
18529
"da": "Kun Skrivebordsvisning",
18530
"xloc": [
18521
- "default.handlebars->39->2512"
18531
+ "default.handlebars->39->2522"
18532
]
18533
},
18534
{
@@ -18701,9 +18711,9 @@
18711
"default.handlebars->39->1477",
18712
"default.handlebars->39->1964",
18713
"default.handlebars->39->253",
18704
- "default.handlebars->39->2625",
18705
- "default.handlebars->39->2687",
18706
- "default.handlebars->39->2702",
18714
+ "default.handlebars->39->2635",
18715
+ "default.handlebars->39->2697",
18716
+ "default.handlebars->39->2712",
18717
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
18718
]
18719
},
@@ -18859,14 +18869,14 @@
18869
"default.handlebars->39->1959",
18870
"default.handlebars->39->1962",
18871
"default.handlebars->39->1963",
18862
- "default.handlebars->39->2278",
18863
- "default.handlebars->39->2460",
18864
- "default.handlebars->39->2466",
18865
- "default.handlebars->39->2613",
18866
- "default.handlebars->39->2672",
18867
- "default.handlebars->39->2691",
18868
- "default.handlebars->39->2705",
18869
- "default.handlebars->39->2742"
18872
+ "default.handlebars->39->2288",
18873
+ "default.handlebars->39->2470",
18874
+ "default.handlebars->39->2476",
18875
+ "default.handlebars->39->2623",
18876
+ "default.handlebars->39->2682",
18877
+ "default.handlebars->39->2701",
18878
+ "default.handlebars->39->2715",
18879
+ "default.handlebars->39->2752"
18880
]
18881
},
18882
{
@@ -18918,11 +18928,11 @@
18928
"da": "Enhedsgrupper",
18929
"xloc": [
18930
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
18921
- "default.handlebars->39->2294",
18922
- "default.handlebars->39->2404",
18923
- "default.handlebars->39->2447",
18924
- "default.handlebars->39->2533",
18925
- "default.handlebars->39->2793",
18931
+ "default.handlebars->39->2304",
18932
+ "default.handlebars->39->2414",
18933
+ "default.handlebars->39->2457",
18934
+ "default.handlebars->39->2543",
18935
+ "default.handlebars->39->2803",
18936
"default.handlebars->container->column_l->p2->p2info->9"
18937
]
18938
},
@@ -19025,7 +19035,7 @@
19035
"xloc": [
19036
"default-mobile.handlebars->11->391",
19037
"default.handlebars->39->1161",
19028
- "default.handlebars->39->2671",
19038
+ "default.handlebars->39->2681",
19039
"default.handlebars->39->428",
19040
"default.handlebars->39->437",
19041
"player.handlebars->3->25"
@@ -19102,7 +19112,7 @@
19112
"zh-chs": "设备推送",
19113
"da": "Enheds Push",
19114
"xloc": [
19105
- "default.handlebars->39->2552"
19115
+ "default.handlebars->39->2562"
19116
]
19117
},
19118
{
@@ -19482,6 +19492,12 @@
19492
"default.handlebars->39->2184"
19493
]
19494
},
19495
+ {
19496
+ "en": "Device group {0} was changed: {1}",
19497
+ "xloc": [
19498
+ "default.handlebars->39->2270"
19499
+ ]
19500
+ },
19501
{
19502
"cs": "Zařízení je napájeno z baterie",
19503
"de": "Gerät ist batteriebetrieben",
@@ -20060,8 +20076,8 @@
20076
"da": "Enheder",
20077
"xloc": [
20078
"default.handlebars->39->1885",
20063
- "default.handlebars->39->2405",
20064
- "default.handlebars->39->2448"
20079
+ "default.handlebars->39->2415",
20080
+ "default.handlebars->39->2458"
20081
]
20082
},
20083
{
@@ -20628,10 +20644,10 @@
20644
"da": "Domæne",
20645
"xloc": [
20646
"default.handlebars->39->113",
20631
- "default.handlebars->39->2368",
20632
- "default.handlebars->39->2417",
20633
- "default.handlebars->39->2426",
20634
- "default.handlebars->39->2499",
20647
+ "default.handlebars->39->2378",
20648
+ "default.handlebars->39->2427",
20649
+ "default.handlebars->39->2436",
20650
+ "default.handlebars->39->2509",
20651
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
20652
"mstsc.handlebars->main->1->3->1->rowdomain->3"
20653
]
@@ -21072,7 +21088,7 @@
21088
"zh-cht": "下載報告",
21089
"da": "Download Rapport",
21090
"xloc": [
21075
- "default.handlebars->39->2283",
21091
+ "default.handlebars->39->2293",
21092
"default.handlebars->container->column_l->p3->3->1->0->3",
21093
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
21094
]
@@ -21372,7 +21388,7 @@
21388
"zh-cht": "使用以下一種檔案格式下載事件列表。",
21389
"da": "Download listen over begivenheder med et af filformaterne nedenfor.",
21390
"xloc": [
21375
- "default.handlebars->39->2284"
21391
+ "default.handlebars->39->2294"
21392
]
21393
},
21394
{
@@ -21397,7 +21413,7 @@
21413
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
21414
"da": "Download listen over brugere med et af filformaterne nedenfor.",
21415
"xloc": [
21400
- "default.handlebars->39->2352"
21416
+ "default.handlebars->39->2362"
21417
]
21418
},
21419
{
@@ -21572,7 +21588,7 @@
21588
"zh-cht": "代理重複",
21589
"da": "Duplikér agent",
21590
"xloc": [
21575
- "default.handlebars->39->2789"
21591
+ "default.handlebars->39->2799"
21592
]
21593
},
21594
{
@@ -21622,7 +21638,7 @@
21638
"zh-cht": "複製用戶群",
21639
"da": "Duplikér brugergruppe",
21640
"xloc": [
21625
- "default.handlebars->39->2421"
21641
+ "default.handlebars->39->2431"
21642
]
21643
},
21644
{
@@ -21672,8 +21688,8 @@
21688
"default.handlebars->39->1053",
21689
"default.handlebars->39->259",
21690
"default.handlebars->39->261",
21675
- "default.handlebars->39->2651",
21676
- "default.handlebars->39->2677",
21691
+ "default.handlebars->39->2661",
21692
+ "default.handlebars->39->2687",
21693
"player.handlebars->3->18"
21694
]
21695
},
@@ -22522,7 +22538,7 @@
22538
"zh-chs": "编辑用户特征",
22539
"da": "Rediger brugerfunktioner",
22540
"xloc": [
22525
- "default.handlebars->39->2589"
22541
+ "default.handlebars->39->2599"
22542
]
22543
},
22544
{
@@ -22547,7 +22563,7 @@
22563
"zh-cht": "編輯用戶群",
22564
"da": "Rediger Bruger Gruppe",
22565
"xloc": [
22550
- "default.handlebars->39->2477"
22566
+ "default.handlebars->39->2487"
22567
]
22568
},
22569
{
@@ -22583,7 +22599,7 @@
22599
"pl": "Edytuj Opcje Grupy Użytkownika",
22600
"da": "Rediger brugergruppe funktioner",
22601
"xloc": [
22586
- "default.handlebars->39->2470"
22602
+ "default.handlebars->39->2480"
22603
]
22604
},
22605
{
@@ -22715,12 +22731,12 @@
22731
"da": "E-mail",
22732
"xloc": [
22733
"default-mobile.handlebars->11->102",
22718
- "default.handlebars->39->2370",
22719
- "default.handlebars->39->2503",
22720
- "default.handlebars->39->2505",
22721
- "default.handlebars->39->2550",
22734
+ "default.handlebars->39->2380",
22735
+ "default.handlebars->39->2513",
22736
+ "default.handlebars->39->2515",
22737
"default.handlebars->39->2560",
22723
- "default.handlebars->39->2592",
22738
+ "default.handlebars->39->2570",
22739
+ "default.handlebars->39->2602",
22740
"default.handlebars->39->473",
22741
"login-mobile.handlebars->5->42",
22742
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -22945,7 +22961,7 @@
22961
"zh-cht": "電郵未驗證",
22962
"da": "E-mail er ikke bekræftet",
22963
"xloc": [
22948
- "default.handlebars->39->2314"
22964
+ "default.handlebars->39->2324"
22965
]
22966
},
22967
{
@@ -22970,8 +22986,8 @@
22986
"zh-cht": "電子郵件已驗證",
22987
"da": "E-mail er bekræftet",
22988
"xloc": [
22973
- "default.handlebars->39->2315",
22974
- "default.handlebars->39->2497"
22989
+ "default.handlebars->39->2325",
22990
+ "default.handlebars->39->2507"
22991
]
22992
},
22993
{
@@ -22996,7 +23012,7 @@
23012
"zh-cht": "電郵已驗證。",
23013
"da": "E-mail er bekræftet",
23014
"xloc": [
22999
- "default.handlebars->39->2376"
23015
+ "default.handlebars->39->2386"
23016
]
23017
},
23018
{
@@ -23021,7 +23037,7 @@
23037
"zh-cht": "電郵未驗證",
23038
"da": "E-mail er ikke bekræftet",
23039
"xloc": [
23024
- "default.handlebars->39->2498"
23040
+ "default.handlebars->39->2508"
23041
]
23042
},
23043
{
@@ -23068,7 +23084,7 @@
23084
"da": "E-mail sendt.",
23085
"xloc": [
23086
"default-mobile.handlebars->11->714",
23071
- "default.handlebars->39->2757",
23087
+ "default.handlebars->39->2767",
23088
"login-mobile.handlebars->5->2",
23089
"login.handlebars->5->2",
23090
"login2.handlebars->7->3"
@@ -23144,7 +23160,7 @@
23160
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
23161
"da": "E-mail bekræftet og tvungen nulstilling af adgangskode påkrævet.",
23162
"xloc": [
23147
- "default.handlebars->39->2377"
23163
+ "default.handlebars->39->2387"
23164
]
23165
},
23166
{
@@ -23190,7 +23206,7 @@
23206
"zh-chs": "电子邮件/短信/推送流量",
23207
"da": "E-mail/SMS/Push-trafik",
23208
"xloc": [
23193
- "default.handlebars->39->2848"
23209
+ "default.handlebars->39->2858"
23210
]
23211
},
23212
{
@@ -23348,7 +23364,7 @@
23364
"da": "Aktiveret",
23365
"xloc": [
23366
"default.handlebars->39->116",
23351
- "default.handlebars->39->2679"
23367
+ "default.handlebars->39->2689"
23368
]
23369
},
23370
{
@@ -23464,7 +23480,7 @@
23480
"zh-cht": "時間結束",
23481
"da": "Slut tid",
23482
"xloc": [
23467
- "default.handlebars->39->2676"
23483
+ "default.handlebars->39->2686"
23484
]
23485
},
23486
{
@@ -24013,7 +24029,7 @@
24029
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
24030
"da": "Indtast en kommasepareret liste over administrative realms navne.",
24031
"xloc": [
24016
- "default.handlebars->39->2381"
24032
+ "default.handlebars->39->2391"
24033
]
24034
},
24035
{
@@ -24341,7 +24357,7 @@
24357
"da": "Fejl, invitationskoden \\\"{0}\\\" er allerede i brug.",
24358
"xloc": [
24359
"default-mobile.handlebars->11->722",
24344
- "default.handlebars->39->2765"
24360
+ "default.handlebars->39->2775"
24361
]
24362
},
24363
{
@@ -24366,7 +24382,7 @@
24382
"da": "Fejl, adgangskode ikke ændret.",
24383
"xloc": [
24384
"default-mobile.handlebars->11->719",
24369
- "default.handlebars->39->2762"
24385
+ "default.handlebars->39->2772"
24386
]
24387
},
24388
{
@@ -24391,7 +24407,7 @@
24407
"da": "Fejl, kan ikke ændres til almindeligt brugt adgangskode.",
24408
"xloc": [
24409
"default-mobile.handlebars->11->718",
24394
- "default.handlebars->39->2761"
24410
+ "default.handlebars->39->2771"
24411
]
24412
},
24413
{
@@ -24416,7 +24432,7 @@
24432
"da": "Fejl, kan ikke ændres til tidligere brugt adgangskode.",
24433
"xloc": [
24434
"default-mobile.handlebars->11->717",
24419
- "default.handlebars->39->2760"
24435
+ "default.handlebars->39->2770"
24436
]
24437
},
24438
{
@@ -24608,7 +24624,7 @@
24624
"zh-cht": "事件列表輸出",
24625
"da": "Exporter hændelsesliste",
24626
"xloc": [
24611
- "default.handlebars->39->2289"
24627
+ "default.handlebars->39->2299"
24628
]
24629
},
24630
{
@@ -24941,7 +24957,7 @@
24957
"zh-cht": "外部",
24958
"da": "Ekstern",
24959
"xloc": [
24944
- "default.handlebars->39->2828"
24960
+ "default.handlebars->39->2838"
24961
]
24962
},
24963
{
@@ -25066,7 +25082,7 @@
25082
"da": "Kunne ikke ændre e-mailadresse, en anden konto bruger allerede: {0}.",
25083
"xloc": [
25084
"default-mobile.handlebars->11->713",
25069
- "default.handlebars->39->2756"
25085
+ "default.handlebars->39->2766"
25086
]
25087
},
25088
{
@@ -25288,8 +25304,8 @@
25304
"da": "Funktioner",
25305
"xloc": [
25306
"default.handlebars->39->1819",
25291
- "default.handlebars->39->2433",
25292
- "default.handlebars->39->2521"
25307
+ "default.handlebars->39->2443",
25308
+ "default.handlebars->39->2531"
25309
]
25310
},
25311
{
@@ -25466,7 +25482,7 @@
25482
"zh-chs": "文件传输",
25483
"da": "Filoverførsel",
25484
"xloc": [
25469
- "default.handlebars->39->2657"
25485
+ "default.handlebars->39->2667"
25486
]
25487
},
25488
{
@@ -25521,10 +25537,10 @@
25537
"default.handlebars->39->1021",
25538
"default.handlebars->39->1869",
25539
"default.handlebars->39->1943",
25524
- "default.handlebars->39->2664",
25525
- "default.handlebars->39->2714",
25526
- "default.handlebars->39->2730",
25527
- "default.handlebars->39->2816",
25540
+ "default.handlebars->39->2674",
25541
+ "default.handlebars->39->2724",
25542
+ "default.handlebars->39->2740",
25543
+ "default.handlebars->39->2826",
25544
"default.handlebars->39->394",
25545
"default.handlebars->39->937",
25546
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
@@ -25580,8 +25596,8 @@
25596
"da": "Filer Notifikation",
25597
"xloc": [
25598
"default.handlebars->39->1827",
25583
- "default.handlebars->39->2441",
25584
- "default.handlebars->39->2543",
25599
+ "default.handlebars->39->2451",
25600
+ "default.handlebars->39->2553",
25601
"default.handlebars->39->830"
25602
]
25603
},
@@ -25608,8 +25624,8 @@
25624
"da": "Filer Prompt",
25625
"xloc": [
25626
"default.handlebars->39->1826",
25611
- "default.handlebars->39->2440",
25612
- "default.handlebars->39->2542",
25627
+ "default.handlebars->39->2450",
25628
+ "default.handlebars->39->2552",
25629
"default.handlebars->39->829"
25630
]
25631
},
@@ -25834,6 +25850,12 @@
25850
"terms.handlebars->container->topbar->uiMenuButton->uiMenu"
25851
]
25852
},
25853
+ {
25854
+ "en": "Flags",
25855
+ "xloc": [
25856
+ "default.handlebars->39->2273"
25857
+ ]
25858
+ },
25859
{
25860
"cs": "Blikat",
25861
"de": "Blitz",
@@ -26105,8 +26127,8 @@
26127
"zh-cht": "下次登入時強制重置密碼。",
26128
"da": "Tving nulstilling af adgangskode ved næste login.",
26129
"xloc": [
26108
- "default.handlebars->39->2375",
26109
- "default.handlebars->39->2603"
26130
+ "default.handlebars->39->2385",
26131
+ "default.handlebars->39->2613"
26132
]
26133
},
26134
{
@@ -26245,7 +26267,7 @@
26267
"zh-cht": "格式化",
26268
"da": "Formatér",
26269
"xloc": [
26248
- "default.handlebars->39->2280"
26270
+ "default.handlebars->39->2290"
26271
]
26272
},
26273
{
@@ -26318,8 +26340,8 @@
26340
"zh-cht": "自由",
26341
"da": "Ledig",
26342
"xloc": [
26321
- "default.handlebars->39->2774",
26322
- "default.handlebars->39->2776"
26343
+ "default.handlebars->39->2784",
26344
+ "default.handlebars->39->2786"
26345
]
26346
},
26347
{
@@ -26601,7 +26623,7 @@
26623
"default-mobile.handlebars->11->664",
26624
"default.handlebars->39->1765",
26625
"default.handlebars->39->1967",
26604
- "default.handlebars->39->2387"
26626
+ "default.handlebars->39->2397"
26627
]
26628
},
26629
{
@@ -26776,7 +26798,7 @@
26798
"zh-cht": "完整管理員",
26799
"da": "Fuld administrator",
26800
"xloc": [
26779
- "default.handlebars->39->2491"
26801
+ "default.handlebars->39->2501"
26802
]
26803
},
26804
{
@@ -27045,7 +27067,7 @@
27067
"pl": "Generuj Raport",
27068
"da": "Generer rapport",
27069
"xloc": [
27048
- "default.handlebars->39->2700"
27070
+ "default.handlebars->39->2710"
27071
]
27072
},
27073
{
@@ -27602,7 +27624,7 @@
27624
"da": "Gruppe",
27625
"xloc": [
27626
"default-mobile.handlebars->11->264",
27605
- "default.handlebars->39->2711",
27627
+ "default.handlebars->39->2721",
27628
"default.handlebars->39->756",
27629
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
27630
]
@@ -27629,8 +27651,8 @@
27651
"zh-cht": "集體指令",
27652
"da": "Gruppehandling",
27653
"xloc": [
27632
- "default.handlebars->39->2329",
27633
- "default.handlebars->39->2411",
27654
+ "default.handlebars->39->2339",
27655
+ "default.handlebars->39->2421",
27656
"default.handlebars->39->633",
27657
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
27658
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -27659,7 +27681,7 @@
27681
"zh-cht": "通過...分群",
27682
"da": "Gruppér efter",
27683
"xloc": [
27662
- "default.handlebars->39->2276"
27684
+ "default.handlebars->39->2286"
27685
]
27686
},
27687
{
@@ -27685,7 +27707,7 @@
27707
"da": "Gruppe-id",
27708
"xloc": [
27709
"agent-translations.json",
27688
- "default.handlebars->39->2428"
27710
+ "default.handlebars->39->2438"
27711
]
27712
},
27713
{
@@ -27710,7 +27732,7 @@
27732
"zh-cht": "群組成員",
27733
"da": "Gruppemedlemmer",
27734
"xloc": [
27713
- "default.handlebars->39->2452"
27735
+ "default.handlebars->39->2462"
27736
]
27737
},
27738
{
@@ -27735,7 +27757,13 @@
27757
"zh-cht": "通過...分群",
27758
"da": "Gruppér efter",
27759
"xloc": [
27738
- "default.handlebars->39->2689"
27760
+ "default.handlebars->39->2699"
27761
+ ]
27762
+ },
27763
+ {
27764
+ "en": "Group name",
27765
+ "xloc": [
27766
+ "default.handlebars->39->2271"
27767
]
27768
},
27769
{
@@ -27871,7 +27899,7 @@
27899
"pl": "Gość",
27900
"da": "Gæst",
27901
"xloc": [
27874
- "default.handlebars->39->2706"
27902
+ "default.handlebars->39->2716"
27903
]
27904
},
27905
{
@@ -27995,7 +28023,7 @@
28023
"zh-chs": "HTTP",
28024
"da": "HTTP",
28025
"xloc": [
27998
- "default.handlebars->39->2812"
28026
+ "default.handlebars->39->2822"
28027
]
28028
},
28029
{
@@ -28169,7 +28197,7 @@
28197
"zh-cht": "堆總數",
28198
"da": "Heap total",
28199
"xloc": [
28172
- "default.handlebars->39->2830"
28200
+ "default.handlebars->39->2840"
28201
]
28202
},
28203
{
@@ -28194,7 +28222,7 @@
28222
"zh-cht": "堆使用",
28223
"da": "Heap Used",
28224
"xloc": [
28197
- "default.handlebars->39->2829"
28225
+ "default.handlebars->39->2839"
28226
]
28227
},
28228
{
@@ -30127,7 +30155,7 @@
30155
"zh-cht": "英特爾AMT",
30156
"da": "Intel AMT",
30157
"xloc": [
30130
- "default.handlebars->39->2826"
30158
+ "default.handlebars->39->2836"
30159
]
30160
},
30161
{
@@ -30184,7 +30212,7 @@
30212
"zh-chs": "英特尔 AMT 经理",
30213
"da": "Intel AMT manager",
30214
"xloc": [
30187
- "default.handlebars->39->2855"
30215
+ "default.handlebars->39->2865"
30216
]
30217
},
30218
{
@@ -30253,7 +30281,7 @@
30281
"default.handlebars->39->1847",
30282
"default.handlebars->39->2062",
30283
"default.handlebars->39->2075",
30256
- "default.handlebars->39->2854",
30284
+ "default.handlebars->39->2864",
30285
"default.handlebars->39->731",
30286
"default.handlebars->39->798",
30287
"default.handlebars->39->837",
@@ -30610,8 +30638,8 @@
30638
"zh-cht": "Intel® AMT重定向",
30639
"da": "Intel® AMT-omdirigering",
30640
"xloc": [
30613
- "default.handlebars->39->2659",
30614
- "default.handlebars->39->2666",
30641
+ "default.handlebars->39->2669",
30642
+ "default.handlebars->39->2676",
30643
"player.handlebars->3->30"
30644
]
30645
},
@@ -30687,8 +30715,8 @@
30715
"zh-cht": "Intle® AMT WSMAN",
30716
"da": "Intel® AMT WSMAN",
30717
"xloc": [
30690
- "default.handlebars->39->2658",
30691
- "default.handlebars->39->2665",
30718
+ "default.handlebars->39->2668",
30719
+ "default.handlebars->39->2675",
30720
"player.handlebars->3->29"
30721
]
30722
},
@@ -31196,6 +31224,12 @@
31224
"default.handlebars->39->799"
31225
]
31226
},
31227
+ {
31228
+ "en": "Intel(r) AMT policy change",
31229
+ "xloc": [
31230
+ "default.handlebars->39->2269"
31231
+ ]
31232
+ },
31233
{
31234
"cs": "Intel® AMT",
31235
"de": "Intel® AMT",
@@ -31589,7 +31623,7 @@
31623
"zh-cht": "無效的裝置群類型",
31624
"da": "Ugyldig enhedsgruppetype",
31625
"xloc": [
31592
- "default.handlebars->39->2788"
31626
+ "default.handlebars->39->2798"
31627
]
31628
},
31629
{
@@ -31614,7 +31648,7 @@
31648
"zh-cht": "無效的JSON",
31649
"da": "Ugyldig JSON",
31650
"xloc": [
31617
- "default.handlebars->39->2782"
31651
+ "default.handlebars->39->2792"
31652
]
31653
},
31654
{
@@ -31640,8 +31674,8 @@
31674
"da": "Ugyldigt JSON-filformat.",
31675
"xloc": [
31676
"default.handlebars->39->1895",
31643
- "default.handlebars->39->2349",
31644
- "default.handlebars->39->2351"
31677
+ "default.handlebars->39->2359",
31678
+ "default.handlebars->39->2361"
31679
]
31680
},
31681
{
@@ -31667,7 +31701,7 @@
31701
"da": "Ugyldig JSON-fil: {0}.",
31702
"xloc": [
31703
"default.handlebars->39->1891",
31670
- "default.handlebars->39->2347"
31704
+ "default.handlebars->39->2357"
31705
]
31706
},
31707
{
@@ -31736,7 +31770,7 @@
31770
"zh-cht": "無效的PKCS簽名",
31771
"da": "Ugyldig PKCS-signatur",
31772
"xloc": [
31739
- "default.handlebars->39->2780"
31773
+ "default.handlebars->39->2790"
31774
]
31775
},
31776
{
@@ -31761,7 +31795,7 @@
31795
"zh-cht": "無效的RSA密碼",
31796
"da": "Ugyldig RSA-signatur",
31797
"xloc": [
31764
- "default.handlebars->39->2781"
31798
+ "default.handlebars->39->2791"
31799
]
31800
},
31801
{
@@ -31786,7 +31820,7 @@
31820
"da": "Ugyldig SMS-besked",
31821
"xloc": [
31822
"default-mobile.handlebars->11->725",
31789
- "default.handlebars->39->2768"
31823
+ "default.handlebars->39->2778"
31824
]
31825
},
31826
{
@@ -31849,7 +31883,7 @@
31883
"da": "Ugyldigt domæne",
31884
"xloc": [
31885
"default-mobile.handlebars->11->705",
31852
- "default.handlebars->39->2748"
31886
+ "default.handlebars->39->2758"
31887
]
31888
},
31889
{
@@ -31895,7 +31929,7 @@
31929
"da": "Ugyldig email",
31930
"xloc": [
31931
"default-mobile.handlebars->11->704",
31898
- "default.handlebars->39->2747"
31932
+ "default.handlebars->39->2757"
31933
]
31934
},
31935
{
@@ -31999,7 +32033,7 @@
32033
"xloc": [
32034
"default-mobile.handlebars->11->703",
32035
"default-mobile.handlebars->11->78",
32002
- "default.handlebars->39->2746",
32036
+ "default.handlebars->39->2756",
32037
"default.handlebars->39->296"
32038
]
32039
},
@@ -32025,7 +32059,7 @@
32059
"da": "Ugyldige webstedstilladelser",
32060
"xloc": [
32061
"default-mobile.handlebars->11->706",
32028
- "default.handlebars->39->2749"
32062
+ "default.handlebars->39->2759"
32063
]
32064
},
32065
{
@@ -32101,7 +32135,7 @@
32135
"da": "Ugyldigt brugernavn",
32136
"xloc": [
32137
"default-mobile.handlebars->11->702",
32104
- "default.handlebars->39->2745"
32138
+ "default.handlebars->39->2755"
32139
]
32140
},
32141
{
@@ -32147,7 +32181,7 @@
32181
"zh-cht": "使電郵無效",
32182
"da": "Ugyldig e-mail",
32183
"xloc": [
32150
- "default.handlebars->39->2323"
32184
+ "default.handlebars->39->2333"
32185
]
32186
},
32187
{
@@ -32327,7 +32361,13 @@
32361
"default.handlebars->39->2044",
32362
"default.handlebars->39->2046",
32363
"default.handlebars->39->2051",
32330
- "default.handlebars->39->2743"
32364
+ "default.handlebars->39->2753"
32365
+ ]
32366
+ },
32367
+ {
32368
+ "en": "Invite code",
32369
+ "xloc": [
32370
+ "default.handlebars->39->2276"
32371
]
32372
},
32373
{
@@ -32524,7 +32564,7 @@
32564
"zh-cht": "JSON",
32565
"da": "JSON",
32566
"xloc": [
32527
- "default.handlebars->39->2282"
32567
+ "default.handlebars->39->2292"
32568
]
32569
},
32570
{
@@ -32549,8 +32589,8 @@
32589
"zh-cht": "JSON格式",
32590
"da": "JSON-format",
32591
"xloc": [
32552
- "default.handlebars->39->2287",
32553
- "default.handlebars->39->2355",
32592
+ "default.handlebars->39->2297",
32593
+ "default.handlebars->39->2365",
32594
"default.handlebars->39->678"
32595
]
32596
},
@@ -33397,7 +33437,7 @@
33437
"zh-cht": "過去30天",
33438
"da": "Seneste 30 dage",
33439
"xloc": [
33400
- "default.handlebars->39->2694",
33440
+ "default.handlebars->39->2704",
33441
"default.handlebars->container->column_l->p40->3->1->p40time->9"
33442
]
33443
},
@@ -33464,7 +33504,7 @@
33504
"pl": "Ostatnie 7 dni",
33505
"da": "Seneste 7 dage",
33506
"xloc": [
33467
- "default.handlebars->39->2693"
33507
+ "default.handlebars->39->2703"
33508
]
33509
},
33510
{
@@ -33514,7 +33554,7 @@
33554
"zh-cht": "最後訪問",
33555
"da": "Seneste adgang",
33556
"xloc": [
33517
- "default.handlebars->39->2295"
33557
+ "default.handlebars->39->2305"
33558
]
33559
},
33560
{
@@ -33525,7 +33565,7 @@
33565
"pl": "Ostatni Dzień",
33566
"da": "Seneste dag",
33567
"xloc": [
33528
- "default.handlebars->39->2692"
33568
+ "default.handlebars->39->2702"
33569
]
33570
},
33571
{
@@ -33550,7 +33590,7 @@
33590
"zh-cht": "上次登入",
33591
"da": "Seneste login",
33592
"xloc": [
33553
- "default.handlebars->39->2525"
33593
+ "default.handlebars->39->2535"
33594
]
33595
},
33596
{
@@ -33586,7 +33626,7 @@
33626
"da": "Seneste adgang: {0}",
33627
"fr": "Dernier accès : {0}",
33628
"xloc": [
33589
- "default.handlebars->39->2305"
33629
+ "default.handlebars->39->2315"
33630
]
33631
},
33632
{
@@ -33673,7 +33713,7 @@
33713
"zh-cht": "上次更改:{0}",
33714
"da": "Senest ændret: {0}",
33715
"xloc": [
33676
- "default.handlebars->39->2529"
33716
+ "default.handlebars->39->2539"
33717
]
33718
},
33719
{
@@ -33748,7 +33788,7 @@
33788
"zh-cht": "上次登入:{0}",
33789
"da": "Seneste login: {0}",
33790
"xloc": [
33751
- "default.handlebars->39->2306"
33791
+ "default.handlebars->39->2316"
33792
]
33793
},
33794
{
@@ -34065,7 +34105,7 @@
34105
"zh-cht": "如沒有請留空。",
34106
"da": "Efterlad tom for ingen.",
34107
"xloc": [
34068
- "default.handlebars->39->2575"
34108
+ "default.handlebars->39->2585"
34109
]
34110
},
34111
{
@@ -34211,7 +34251,7 @@
34251
"pl": "Długość",
34252
"da": "Længde",
34253
"xloc": [
34214
- "default.handlebars->39->2707"
34254
+ "default.handlebars->39->2717"
34255
]
34256
},
34257
{
@@ -34236,7 +34276,7 @@
34276
"zh-cht": "減",
34277
"da": "Mindre",
34278
"xloc": [
34239
- "default.handlebars->39->2876"
34279
+ "default.handlebars->39->2886"
34280
]
34281
},
34282
{
@@ -35130,8 +35170,8 @@
35170
"default.handlebars->39->1469",
35171
"default.handlebars->39->1791",
35172
"default.handlebars->39->1795",
35133
- "default.handlebars->39->2598",
35134
- "default.handlebars->39->2647"
35173
+ "default.handlebars->39->2608",
35174
+ "default.handlebars->39->2657"
35175
]
35176
},
35177
{
@@ -35427,7 +35467,7 @@
35467
"zh-cht": "鎖定賬戶",
35468
"da": "Lås konto",
35469
"xloc": [
35430
- "default.handlebars->39->2395"
35470
+ "default.handlebars->39->2405"
35471
]
35472
},
35473
{
@@ -35452,7 +35492,7 @@
35492
"zh-cht": "鎖定帳戶設置",
35493
"da": "Lås kontoindstillinger",
35494
"xloc": [
35455
- "default.handlebars->39->2399"
35495
+ "default.handlebars->39->2409"
35496
]
35497
},
35498
{
@@ -35501,7 +35541,7 @@
35541
"zh-cht": "鎖定賬戶",
35542
"da": "Lås konto",
35543
"xloc": [
35504
- "default.handlebars->39->2326"
35544
+ "default.handlebars->39->2336"
35545
]
35546
},
35547
{
@@ -35610,7 +35650,7 @@
35650
"zh-cht": "已鎖定",
35651
"da": "Låst",
35652
"xloc": [
35613
- "default.handlebars->39->2307"
35653
+ "default.handlebars->39->2317"
35654
]
35655
},
35656
{
@@ -35636,7 +35676,7 @@
35676
"da": "Låst konto",
35677
"xloc": [
35678
"default-mobile.handlebars->11->77",
35639
- "default.handlebars->39->2488",
35679
+ "default.handlebars->39->2498",
35680
"default.handlebars->39->295"
35681
]
35682
},
@@ -36590,7 +36630,7 @@
36630
"zh-cht": "主伺服器訊息",
36631
"da": "Hovedserver meddelelser",
36632
"xloc": [
36593
- "default.handlebars->39->2842"
36633
+ "default.handlebars->39->2852"
36634
]
36635
},
36636
{
@@ -36822,7 +36862,7 @@
36862
"zh-cht": "管理錄音",
36863
"da": "Administrer optagelser",
36864
"xloc": [
36825
- "default.handlebars->39->2393"
36865
+ "default.handlebars->39->2403"
36866
]
36867
},
36868
{
@@ -36872,7 +36912,7 @@
36912
"zh-cht": "管理用戶群",
36913
"da": "Administrer brugergrupper",
36914
"xloc": [
36875
- "default.handlebars->39->2392"
36915
+ "default.handlebars->39->2402"
36916
]
36917
},
36918
{
@@ -36897,7 +36937,7 @@
36937
"zh-cht": "管理用戶",
36938
"da": "Administrer brugere",
36939
"xloc": [
36900
- "default.handlebars->39->2391",
36940
+ "default.handlebars->39->2401",
36941
"default.handlebars->39->984"
36942
]
36943
},
@@ -37129,7 +37169,7 @@
37169
"zh-cht": "經理",
37170
"da": "Manager",
37171
"xloc": [
37132
- "default.handlebars->39->2312"
37172
+ "default.handlebars->39->2322"
37173
]
37174
},
37175
{
@@ -37316,7 +37356,7 @@
37356
"zh-cht": "達到連接數量上限",
37357
"da": "Maksimalt antal sessioner nået",
37358
"xloc": [
37319
- "default.handlebars->39->2786"
37359
+ "default.handlebars->39->2796"
37360
]
37361
},
37362
{
@@ -37396,8 +37436,8 @@
37436
"zh-cht": "Megabyte",
37437
"da": "Megabyte",
37438
"xloc": [
37399
- "default.handlebars->39->2827",
37400
- "default.handlebars->39->2832"
37439
+ "default.handlebars->39->2837",
37440
+ "default.handlebars->39->2842"
37441
]
37442
},
37443
{
@@ -37424,7 +37464,7 @@
37464
"xloc": [
37465
"default-mobile.handlebars->11->590",
37466
"default.handlebars->39->1430",
37427
- "default.handlebars->39->2806",
37467
+ "default.handlebars->39->2816",
37468
"default.handlebars->container->column_l->p40->3->1->p40type->3"
37469
]
37470
},
@@ -37666,7 +37706,7 @@
37706
"zh-cht": "MeshAgent流量",
37707
"da": "MeshAgent-trafik",
37708
"xloc": [
37669
- "default.handlebars->39->2844"
37709
+ "default.handlebars->39->2854"
37710
]
37711
},
37712
{
@@ -37691,7 +37731,7 @@
37731
"zh-cht": "MeshAgent更新",
37732
"da": "MeshAgent-opdatering",
37733
"xloc": [
37694
- "default.handlebars->39->2845"
37734
+ "default.handlebars->39->2855"
37735
]
37736
},
37737
{
@@ -38103,7 +38143,7 @@
38143
"zh-cht": "MeshCentral伺服器同級化",
38144
"da": "MeshCentral Server Peering",
38145
"xloc": [
38106
- "default.handlebars->39->2843"
38146
+ "default.handlebars->39->2853"
38147
]
38148
},
38149
{
@@ -38575,7 +38615,7 @@
38615
"zh-cht": "電郵調度器",
38616
"da": "Meddelelses formidler",
38617
"xloc": [
38578
- "default.handlebars->39->2841"
38618
+ "default.handlebars->39->2851"
38619
]
38620
},
38621
{
@@ -38649,8 +38689,8 @@
38689
"zh-chs": "信使",
38690
"da": "Messenger",
38691
"xloc": [
38652
- "default.handlebars->39->2660",
38653
- "default.handlebars->39->2717"
38692
+ "default.handlebars->39->2670",
38693
+ "default.handlebars->39->2727"
38694
]
38695
},
38696
{
@@ -38902,7 +38942,7 @@
38942
"zh-cht": "更多",
38943
"da": "Mere",
38944
"xloc": [
38905
- "default.handlebars->39->2875"
38945
+ "default.handlebars->39->2885"
38946
]
38947
},
38948
{
@@ -39124,7 +39164,7 @@
39164
"zh-cht": "多工器",
39165
"da": "Multiplexor",
39166
"xloc": [
39127
- "default.handlebars->39->2678"
39167
+ "default.handlebars->39->2688"
39168
]
39169
},
39170
{
@@ -39644,12 +39684,12 @@
39684
"default.handlebars->39->1774",
39685
"default.handlebars->39->1804",
39686
"default.handlebars->39->1929",
39647
- "default.handlebars->39->2293",
39648
- "default.handlebars->39->2402",
39649
- "default.handlebars->39->2418",
39650
- "default.handlebars->39->2425",
39651
- "default.handlebars->39->2475",
39652
- "default.handlebars->39->2494",
39687
+ "default.handlebars->39->2303",
39688
+ "default.handlebars->39->2412",
39689
+ "default.handlebars->39->2428",
39690
+ "default.handlebars->39->2435",
39691
+ "default.handlebars->39->2485",
39692
+ "default.handlebars->39->2504",
39693
"default.handlebars->39->300",
39694
"default.handlebars->39->754",
39695
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
@@ -39704,7 +39744,7 @@
39744
"zh-cht": "名稱1,名稱2,名稱3",
39745
"da": "Navn1, Navn2, Navn3",
39746
"xloc": [
39707
- "default.handlebars->39->2383"
39747
+ "default.handlebars->39->2393"
39748
]
39749
},
39750
{
@@ -39930,7 +39970,7 @@
39970
"da": "Ny konto",
39971
"xloc": [
39972
"default-mobile.handlebars->11->695",
39933
- "default.handlebars->39->2738"
39973
+ "default.handlebars->39->2748"
39974
]
39975
},
39976
{
@@ -40319,7 +40359,7 @@
40359
"zh-chs": "无座席控制台",
40360
"da": "Ingen agentkonsol",
40361
"xloc": [
40322
- "default.handlebars->39->2584"
40362
+ "default.handlebars->39->2594"
40363
]
40364
},
40365
{
@@ -40343,7 +40383,7 @@
40383
"zh-chs": "没有控制台",
40384
"da": "Ingen konsol",
40385
"xloc": [
40346
- "default.handlebars->39->2515"
40386
+ "default.handlebars->39->2525"
40387
]
40388
},
40389
{
@@ -40397,7 +40437,7 @@
40437
"da": "Ingen skrivbord",
40438
"xloc": [
40439
"default.handlebars->39->2015",
40400
- "default.handlebars->39->2511",
40440
+ "default.handlebars->39->2521",
40441
"default.handlebars->39->969",
40442
"default.handlebars->39->991"
40443
]
@@ -40425,7 +40465,7 @@
40465
"da": "Ingen skrivbordsadgang",
40466
"xloc": [
40467
"default.handlebars->39->1975",
40428
- "default.handlebars->39->2580"
40468
+ "default.handlebars->39->2590"
40469
]
40470
},
40471
{
@@ -40472,8 +40512,8 @@
40512
"da": "Ingen begivenheder fundet",
40513
"xloc": [
40514
"default.handlebars->39->1349",
40475
- "default.handlebars->39->2269",
40476
- "default.handlebars->39->2646"
40515
+ "default.handlebars->39->2279",
40516
+ "default.handlebars->39->2656"
40517
]
40518
},
40519
{
@@ -40500,7 +40540,7 @@
40540
"xloc": [
40541
"default-mobile.handlebars->11->652",
40542
"default.handlebars->39->1977",
40503
- "default.handlebars->39->2583"
40543
+ "default.handlebars->39->2593"
40544
]
40545
},
40546
{
@@ -40527,7 +40567,7 @@
40567
"xloc": [
40568
"default-mobile.handlebars->11->675",
40569
"default.handlebars->39->2017",
40530
- "default.handlebars->39->2514",
40570
+ "default.handlebars->39->2524",
40571
"default.handlebars->39->966",
40572
"default.handlebars->39->988"
40573
]
@@ -40704,7 +40744,7 @@
40744
"zh-cht": "沒有成員",
40745
"da": "Ingen medlemmar",
40746
"xloc": [
40707
- "default.handlebars->39->2455"
40747
+ "default.handlebars->39->2465"
40748
]
40749
},
40750
{
@@ -40729,7 +40769,7 @@
40769
"zh-cht": "沒有新的裝置群",
40770
"da": "Ingen nye enhedsgrupper",
40771
"xloc": [
40732
- "default.handlebars->39->2396"
40772
+ "default.handlebars->39->2406"
40773
]
40774
},
40775
{
@@ -40740,7 +40780,7 @@
40780
"pl": "Brak Nowych Urządzeń",
40781
"da": "Ingen nye enheder",
40782
"xloc": [
40743
- "default.handlebars->39->2397"
40783
+ "default.handlebars->39->2407"
40784
]
40785
},
40786
{
@@ -40799,8 +40839,8 @@
40839
"pt-br": "Sem Comando Remoto",
40840
"da": "Ingen fjernkommando",
40841
"xloc": [
40802
- "default.handlebars->39->2517",
40803
- "default.handlebars->39->2586"
40842
+ "default.handlebars->39->2527",
40843
+ "default.handlebars->39->2596"
40844
]
40845
},
40846
{
@@ -40812,8 +40852,8 @@
40852
"pt-br": "Sem Controle Remoto",
40853
"da": "Ingen fjernadgang",
40854
"xloc": [
40815
- "default.handlebars->39->2510",
40816
- "default.handlebars->39->2579"
40855
+ "default.handlebars->39->2520",
40856
+ "default.handlebars->39->2589"
40857
]
40858
},
40859
{
@@ -40825,8 +40865,8 @@
40865
"pt-br": "Sem Resetar/Desligar",
40866
"da": "Ingen Reset/Off",
40867
"xloc": [
40828
- "default.handlebars->39->2519",
40829
- "default.handlebars->39->2588"
40868
+ "default.handlebars->39->2529",
40869
+ "default.handlebars->39->2598"
40870
]
40871
},
40872
{
@@ -40932,7 +40972,7 @@
40972
"xloc": [
40973
"default-mobile.handlebars->11->674",
40974
"default.handlebars->39->2016",
40935
- "default.handlebars->39->2513",
40975
+ "default.handlebars->39->2523",
40976
"default.handlebars->39->965",
40977
"default.handlebars->39->987"
40978
]
@@ -40961,7 +41001,7 @@
41001
"xloc": [
41002
"default-mobile.handlebars->11->651",
41003
"default.handlebars->39->1976",
40964
- "default.handlebars->39->2582"
41004
+ "default.handlebars->39->2592"
41005
]
41006
},
41007
{
@@ -40986,7 +41026,7 @@
41026
"zh-cht": "沒有工具(MeshCmd /路由器)",
41027
"da": "Ingen værktøjer (MeshCmd/router)",
41028
"xloc": [
40989
- "default.handlebars->39->2398"
41029
+ "default.handlebars->39->2408"
41030
]
41031
},
41032
{
@@ -40998,8 +41038,8 @@
41038
"pt-br": "Não desinstalar",
41039
"da": "Ingen afinstallation",
41040
"xloc": [
41001
- "default.handlebars->39->2516",
41002
- "default.handlebars->39->2585"
41041
+ "default.handlebars->39->2526",
41042
+ "default.handlebars->39->2595"
41043
]
41044
},
41045
{
@@ -41011,8 +41051,8 @@
41051
"pt-br": "Não acordar",
41052
"da": "Ingen Wake",
41053
"xloc": [
41014
- "default.handlebars->39->2518",
41015
- "default.handlebars->39->2587"
41054
+ "default.handlebars->39->2528",
41055
+ "default.handlebars->39->2597"
41056
]
41057
},
41058
{
@@ -41109,8 +41149,8 @@
41149
"zh-cht": "沒有共同的裝置群",
41150
"da": "Ingen enhedsgrupper til fælles",
41151
"xloc": [
41112
- "default.handlebars->39->2461",
41113
- "default.handlebars->39->2614"
41152
+ "default.handlebars->39->2471",
41153
+ "default.handlebars->39->2624"
41154
]
41155
},
41156
{
@@ -41260,8 +41300,8 @@
41300
"zh-cht": "沒有共同的裝置",
41301
"da": "Ingen enheder til fælles",
41302
"xloc": [
41263
- "default.handlebars->39->2467",
41264
- "default.handlebars->39->2626"
41303
+ "default.handlebars->39->2477",
41304
+ "default.handlebars->39->2636"
41305
]
41306
},
41307
{
@@ -41439,7 +41479,7 @@
41479
"zh-cht": "找不到群組。",
41480
"da": "Ingen grupper fundet.",
41481
"xloc": [
41442
- "default.handlebars->39->2401"
41482
+ "default.handlebars->39->2411"
41483
]
41484
},
41485
{
@@ -41673,7 +41713,7 @@
41713
"da": "Intet telefonnummer til denne bruger",
41714
"xloc": [
41715
"default-mobile.handlebars->11->726",
41676
- "default.handlebars->39->2769"
41716
+ "default.handlebars->39->2779"
41717
]
41718
},
41719
{
@@ -41723,7 +41763,7 @@
41763
"zh-cht": "沒有錄音。",
41764
"da": "Ingen optagelser.",
41765
"xloc": [
41726
- "default.handlebars->39->2648"
41766
+ "default.handlebars->39->2658"
41767
]
41768
},
41769
{
@@ -41769,7 +41809,7 @@
41809
"zh-cht": "沒有伺服器權限",
41810
"da": "Ingen serverrettigheder",
41811
"xloc": [
41772
- "default.handlebars->39->2489"
41812
+ "default.handlebars->39->2499"
41813
]
41814
},
41815
{
@@ -41815,7 +41855,7 @@
41855
"zh-cht": "沒有用戶群成員身份",
41856
"da": "Ingen brugergruppemedlemskaber",
41857
"xloc": [
41818
- "default.handlebars->39->2620"
41858
+ "default.handlebars->39->2630"
41859
]
41860
},
41861
{
@@ -41840,7 +41880,7 @@
41880
"da": "Ingen brugerstyringsrettigheder",
41881
"xloc": [
41882
"default-mobile.handlebars->11->724",
41843
- "default.handlebars->39->2767"
41883
+ "default.handlebars->39->2777"
41884
]
41885
},
41886
{
@@ -41865,7 +41905,7 @@
41905
"zh-cht": "未找到相應的用戶。",
41906
"da": "Ingen brugere fundet.",
41907
"xloc": [
41868
- "default.handlebars->39->2301"
41908
+ "default.handlebars->39->2311"
41909
]
41910
},
41911
{
@@ -42011,17 +42051,17 @@
42051
"default.handlebars->39->2069",
42052
"default.handlebars->39->2094",
42053
"default.handlebars->39->2099",
42014
- "default.handlebars->39->2277",
42015
- "default.handlebars->39->2422",
42016
- "default.handlebars->39->2424",
42054
+ "default.handlebars->39->2287",
42055
"default.handlebars->39->2432",
42056
+ "default.handlebars->39->2434",
42057
"default.handlebars->39->244",
42019
- "default.handlebars->39->2444",
42020
- "default.handlebars->39->2508",
42021
- "default.handlebars->39->2520",
42058
+ "default.handlebars->39->2442",
42059
+ "default.handlebars->39->2454",
42060
+ "default.handlebars->39->2518",
42061
"default.handlebars->39->2530",
42023
- "default.handlebars->39->2534",
42024
- "default.handlebars->39->2546",
42062
+ "default.handlebars->39->2540",
42063
+ "default.handlebars->39->2544",
42064
+ "default.handlebars->39->2556",
42065
"default.handlebars->39->272",
42066
"default.handlebars->39->353",
42067
"default.handlebars->39->354",
@@ -42333,7 +42373,7 @@
42373
"zh-cht": "不在伺服器上",
42374
"da": "Ikke på serveren",
42375
"xloc": [
42336
- "default.handlebars->39->2670"
42376
+ "default.handlebars->39->2680"
42377
]
42378
},
42379
{
@@ -42358,8 +42398,8 @@
42398
"zh-cht": "沒有設置",
42399
"da": "Ikke indstillet",
42400
"xloc": [
42361
- "default.handlebars->39->2495",
42362
- "default.handlebars->39->2496"
42401
+ "default.handlebars->39->2505",
42402
+ "default.handlebars->39->2506"
42403
]
42404
},
42405
{
@@ -42384,7 +42424,7 @@
42424
"zh-cht": "未經審核的",
42425
"da": "Ikke verificeret",
42426
"xloc": [
42387
- "default.handlebars->39->2594"
42427
+ "default.handlebars->39->2604"
42428
]
42429
},
42430
{
@@ -42414,7 +42454,7 @@
42454
"default-mobile.handlebars->11->626",
42455
"default.handlebars->39->1007",
42456
"default.handlebars->39->1848",
42417
- "default.handlebars->39->2556",
42457
+ "default.handlebars->39->2566",
42458
"default.handlebars->39->865",
42459
"default.handlebars->39->975",
42460
"default.handlebars->39->997"
@@ -42589,7 +42629,7 @@
42629
"zh-cht": "通知",
42630
"da": "Giv besked",
42631
"xloc": [
42592
- "default.handlebars->39->2562",
42632
+ "default.handlebars->39->2572",
42633
"default.handlebars->39->269"
42634
]
42635
},
@@ -42667,7 +42707,7 @@
42707
"zh-cht": "通知{0}",
42708
"da": "Giv besked til {0}",
42709
"xloc": [
42670
- "default.handlebars->39->2341"
42710
+ "default.handlebars->39->2351"
42711
]
42712
},
42713
{
@@ -42691,7 +42731,7 @@
42731
"zh-chs": "空值",
42732
"da": "Null",
42733
"xloc": [
42694
- "default.handlebars->39->2835"
42734
+ "default.handlebars->39->2845"
42735
]
42736
},
42737
{
@@ -42860,7 +42900,7 @@
42900
"da": "Opstod kl. {0}",
42901
"xloc": [
42902
"default-mobile.handlebars->11->692",
42863
- "default.handlebars->39->2735"
42903
+ "default.handlebars->39->2745"
42904
]
42905
},
42906
{
@@ -42922,7 +42962,7 @@
42962
"zh-cht": "離線用戶",
42963
"da": "Offline brugere",
42964
"xloc": [
42925
- "default.handlebars->39->2298"
42965
+ "default.handlebars->39->2308"
42966
]
42967
},
42968
{
@@ -42998,7 +43038,7 @@
43038
"zh-cht": "一天",
43039
"da": "En dag",
43040
"xloc": [
43001
- "default.handlebars->39->2274"
43041
+ "default.handlebars->39->2284"
43042
]
43043
},
43044
{
@@ -43076,7 +43116,7 @@
43116
"zh-cht": "在線用戶",
43117
"da": "Online brugere",
43118
"xloc": [
43079
- "default.handlebars->39->2297"
43119
+ "default.handlebars->39->2307"
43120
]
43121
},
43122
{
@@ -43100,7 +43140,7 @@
43140
"zh-chs": "只显示前 100 个用户",
43141
"da": "Vis kun de første 100 brugere",
43142
"xloc": [
43103
- "default.handlebars->39->2342"
43143
+ "default.handlebars->39->2352"
43144
]
43145
},
43146
{
@@ -43499,8 +43539,8 @@
43539
"xloc": [
43540
"default-mobile.handlebars->11->362",
43541
"default.handlebars->39->1076",
43502
- "default.handlebars->39->2325",
43503
- "default.handlebars->39->2409",
43542
+ "default.handlebars->39->2335",
43543
+ "default.handlebars->39->2419",
43544
"default.handlebars->39->632",
43545
"default.handlebars->39->651"
43546
]
@@ -43984,7 +44024,7 @@
44024
"zh-cht": "部分的",
44025
"da": "Delvis",
44026
"xloc": [
43987
- "default.handlebars->39->2313"
44027
+ "default.handlebars->39->2323"
44028
]
44029
},
44030
{
@@ -44080,7 +44120,7 @@
44120
"zh-cht": "部分權限",
44121
"da": "Delvise rettigheder",
44122
"xloc": [
44083
- "default.handlebars->39->2492"
44123
+ "default.handlebars->39->2502"
44124
]
44125
},
44126
{
@@ -44138,12 +44178,12 @@
44178
"default.handlebars->39->1288",
44179
"default.handlebars->39->1756",
44180
"default.handlebars->39->1904",
44141
- "default.handlebars->39->2371",
44142
- "default.handlebars->39->2372",
44143
- "default.handlebars->39->2526",
44144
- "default.handlebars->39->2528",
44145
- "default.handlebars->39->2599",
44146
- "default.handlebars->39->2600",
44181
+ "default.handlebars->39->2381",
44182
+ "default.handlebars->39->2382",
44183
+ "default.handlebars->39->2536",
44184
+ "default.handlebars->39->2538",
44185
+ "default.handlebars->39->2609",
44186
+ "default.handlebars->39->2610",
44187
"default.handlebars->39->304",
44188
"default.handlebars->39->442",
44189
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
@@ -44291,7 +44331,7 @@
44331
"da": "Adgangskode ændret.",
44332
"xloc": [
44333
"default-mobile.handlebars->11->720",
44294
- "default.handlebars->39->2763"
44334
+ "default.handlebars->39->2773"
44335
]
44336
},
44337
{
@@ -44342,7 +44382,7 @@
44382
"zh-cht": "密碼提示",
44383
"da": "Adgangskodetip",
44384
"xloc": [
44345
- "default.handlebars->39->2601"
44385
+ "default.handlebars->39->2611"
44386
]
44387
},
44388
{
@@ -45074,7 +45114,7 @@
45114
"da": "Adgang nægtet",
45115
"xloc": [
45116
"default-mobile.handlebars->11->701",
45077
- "default.handlebars->39->2744"
45117
+ "default.handlebars->39->2754"
45118
]
45119
},
45120
{
@@ -45101,7 +45141,7 @@
45141
"xloc": [
45142
"default-mobile.handlebars->11->686",
45143
"default.handlebars->39->2030",
45104
- "default.handlebars->39->2296"
45144
+ "default.handlebars->39->2306"
45145
]
45146
},
45147
{
@@ -45205,7 +45245,7 @@
45245
"default.handlebars->39->1461",
45246
"default.handlebars->39->1464",
45247
"default.handlebars->39->227",
45208
- "default.handlebars->39->2577"
45248
+ "default.handlebars->39->2587"
45249
]
45250
},
45251
{
@@ -45230,7 +45270,7 @@
45270
"zh-cht": "電話號碼",
45271
"da": "Telefonnummer",
45272
"xloc": [
45233
- "default.handlebars->39->2507"
45273
+ "default.handlebars->39->2517"
45274
]
45275
},
45276
{
@@ -45257,7 +45297,7 @@
45297
"xloc": [
45298
"default-mobile.handlebars->11->90",
45299
"default.handlebars->39->1463",
45260
- "default.handlebars->39->2576"
45300
+ "default.handlebars->39->2586"
45301
]
45302
},
45303
{
@@ -45482,7 +45522,7 @@
45522
"da": "Plugin handling",
45523
"xloc": [
45524
"default.handlebars->39->285",
45485
- "default.handlebars->39->2872"
45525
+ "default.handlebars->39->2882"
45526
]
45527
},
45528
{
@@ -46135,7 +46175,7 @@
46175
"zh-cht": "存在於伺服器上",
46176
"da": "Findes på serveren",
46177
"xloc": [
46138
- "default.handlebars->39->2669"
46178
+ "default.handlebars->39->2679"
46179
]
46180
},
46181
{
@@ -46265,8 +46305,8 @@
46305
"default-mobile.handlebars->11->79",
46306
"default-mobile.handlebars->11->80",
46307
"default.handlebars->39->1456",
46268
- "default.handlebars->39->2571",
46269
- "default.handlebars->39->2597",
46308
+ "default.handlebars->39->2581",
46309
+ "default.handlebars->39->2607",
46310
"default.handlebars->39->297"
46311
]
46312
},
@@ -46660,7 +46700,7 @@
46700
"zh-cht": "協議",
46701
"da": "Protocol",
46702
"xloc": [
46663
- "default.handlebars->39->2667",
46703
+ "default.handlebars->39->2677",
46704
"player.handlebars->3->32"
46705
]
46706
},
@@ -47274,7 +47314,7 @@
47314
"zh-cht": "RSS",
47315
"da": "RSS",
47316
"xloc": [
47277
- "default.handlebars->39->2831"
47317
+ "default.handlebars->39->2841"
47318
]
47319
},
47320
{
@@ -47349,7 +47389,7 @@
47389
"zh-cht": "隨機密碼。",
47390
"da": "Tilfældig adgangskode.",
47391
"xloc": [
47352
- "default.handlebars->39->2373"
47392
+ "default.handlebars->39->2383"
47393
]
47394
},
47395
{
@@ -47439,9 +47479,9 @@
47479
"zh-cht": "真正的名字",
47480
"da": "Rigtige navn",
47481
"xloc": [
47442
- "default.handlebars->39->2504",
47443
- "default.handlebars->39->2506",
47444
- "default.handlebars->39->2590"
47482
+ "default.handlebars->39->2514",
47483
+ "default.handlebars->39->2516",
47484
+ "default.handlebars->39->2600"
47485
]
47486
},
47487
{
@@ -47466,7 +47506,7 @@
47506
"zh-cht": "境界",
47507
"da": "Realms",
47508
"xloc": [
47469
- "default.handlebars->39->2382"
47509
+ "default.handlebars->39->2392"
47510
]
47511
},
47512
{
@@ -47520,8 +47560,8 @@
47560
"da": "Optag sessioner",
47561
"xloc": [
47562
"default.handlebars->39->1816",
47523
- "default.handlebars->39->2431",
47524
- "default.handlebars->39->2509"
47563
+ "default.handlebars->39->2441",
47564
+ "default.handlebars->39->2519"
47565
]
47566
},
47567
{
@@ -47572,8 +47612,8 @@
47612
"da": "Optag sessioner",
47613
"xloc": [
47614
"default.handlebars->39->1946",
47575
- "default.handlebars->39->2469",
47576
- "default.handlebars->39->2578"
47615
+ "default.handlebars->39->2479",
47616
+ "default.handlebars->39->2588"
47617
]
47618
},
47619
{
@@ -47598,7 +47638,7 @@
47638
"zh-cht": "記錄細節",
47639
"da": "Optagelsesdetaljer",
47640
"xloc": [
47601
- "default.handlebars->39->2681"
47641
+ "default.handlebars->39->2691"
47642
]
47643
},
47644
{
@@ -47834,7 +47874,7 @@
47874
"da": "Relay",
47875
"xloc": [
47876
"default-mobile.handlebars->11->252",
47837
- "default.handlebars->39->2813",
47877
+ "default.handlebars->39->2823",
47878
"default.handlebars->39->368",
47879
"default.handlebars->39->609"
47880
]
@@ -47861,7 +47901,7 @@
47901
"zh-cht": "中繼數量",
47902
"da": "Antal Relays",
47903
"xloc": [
47864
- "default.handlebars->39->2798"
47904
+ "default.handlebars->39->2808"
47905
]
47906
},
47907
{
@@ -47907,7 +47947,7 @@
47947
"zh-cht": "中繼錯誤",
47948
"da": "Relay fejl",
47949
"xloc": [
47910
- "default.handlebars->39->2791"
47950
+ "default.handlebars->39->2801"
47951
]
47952
},
47953
{
@@ -47953,8 +47993,8 @@
47993
"zh-cht": "中繼連接",
47994
"da": "Relay sessioner",
47995
"xloc": [
47956
- "default.handlebars->39->2797",
47957
- "default.handlebars->39->2825"
47996
+ "default.handlebars->39->2807",
47997
+ "default.handlebars->39->2835"
47998
]
47999
},
48000
{
@@ -48803,7 +48843,7 @@
48843
"zh-chs": "远程会话",
48844
"da": "Fjernsessioner",
48845
"xloc": [
48806
- "default.handlebars->39->2683"
48846
+ "default.handlebars->39->2693"
48847
]
48848
},
48849
{
@@ -48945,7 +48985,7 @@
48985
"default-mobile.handlebars->11->673",
48986
"default.handlebars->39->1972",
48987
"default.handlebars->39->2014",
48948
- "default.handlebars->39->2581"
48988
+ "default.handlebars->39->2591"
48989
]
48990
},
48991
{
@@ -49206,8 +49246,8 @@
49246
"zh-cht": "刪除裝置群權限",
49247
"da": "Fjern enhedsgruppetilladelser",
49248
"xloc": [
49209
- "default.handlebars->39->2473",
49210
- "default.handlebars->39->2642"
49249
+ "default.handlebars->39->2483",
49250
+ "default.handlebars->39->2652"
49251
]
49252
},
49253
{
@@ -49232,8 +49272,8 @@
49272
"zh-cht": "刪除裝置權限",
49273
"da": "Fjern enhedstilladelser",
49274
"xloc": [
49235
- "default.handlebars->39->2471",
49236
- "default.handlebars->39->2629"
49275
+ "default.handlebars->39->2481",
49276
+ "default.handlebars->39->2639"
49277
]
49278
},
49279
{
@@ -49258,7 +49298,7 @@
49298
"zh-cht": "刪除設備共享",
49299
"da": "Fjern enhedsdeling",
49300
"xloc": [
49261
- "default.handlebars->39->2627"
49301
+ "default.handlebars->39->2637"
49302
]
49303
},
49304
{
@@ -49329,7 +49369,7 @@
49369
"zh-cht": "刪除用戶群成員身份",
49370
"da": "Fjern brugergruppemedlemskab",
49371
"xloc": [
49332
- "default.handlebars->39->2638"
49372
+ "default.handlebars->39->2648"
49373
]
49374
},
49375
{
@@ -49355,7 +49395,7 @@
49395
"da": "Fjern brugergruppetilladelser",
49396
"xloc": [
49397
"default.handlebars->39->2035",
49358
- "default.handlebars->39->2634"
49398
+ "default.handlebars->39->2644"
49399
]
49400
},
49401
{
@@ -49380,7 +49420,7 @@
49420
"zh-cht": "刪除用戶成員資格",
49421
"da": "Fjern brugermedlemskab",
49422
"xloc": [
49383
- "default.handlebars->39->2481"
49423
+ "default.handlebars->39->2491"
49424
]
49425
},
49426
{
@@ -49406,7 +49446,7 @@
49446
"da": "Fjern brugertilladelser",
49447
"xloc": [
49448
"default.handlebars->39->2033",
49409
- "default.handlebars->39->2631"
49449
+ "default.handlebars->39->2641"
49450
]
49451
},
49452
{
@@ -49431,7 +49471,7 @@
49471
"zh-cht": "刪除所有二因子鑑別。",
49472
"da": "Fjern al 2. faktor-godkendelse.",
49473
"xloc": [
49434
- "default.handlebars->39->2604"
49474
+ "default.handlebars->39->2614"
49475
]
49476
},
49477
{
@@ -49456,7 +49496,7 @@
49496
"zh-cht": "刪除此用戶標識的所有先前事件。",
49497
"da": "Fjern alle tidligere hændelser for dette bruger-id.",
49498
"xloc": [
49459
- "default.handlebars->39->2374"
49499
+ "default.handlebars->39->2384"
49500
]
49501
},
49502
{
@@ -49681,7 +49721,7 @@
49721
"zh-cht": "刪除此用戶",
49722
"da": "Fjern denne bruger",
49723
"xloc": [
49684
- "default.handlebars->39->2566"
49724
+ "default.handlebars->39->2576"
49725
]
49726
},
49727
{
@@ -49706,7 +49746,7 @@
49746
"zh-cht": "刪除用戶群成員身份",
49747
"da": "Fjern brugergruppe medlemskab",
49748
"xloc": [
49709
- "default.handlebars->39->2618"
49749
+ "default.handlebars->39->2628"
49750
]
49751
},
49752
{
@@ -49731,7 +49771,7 @@
49771
"zh-cht": "刪除此裝置的用戶群權限",
49772
"da": "Fjern brugergrupperettigheder til denne enhed",
49773
"xloc": [
49734
- "default.handlebars->39->2465"
49774
+ "default.handlebars->39->2475"
49775
]
49776
},
49777
{
@@ -49756,7 +49796,7 @@
49796
"zh-cht": "刪除此裝置群的用戶群權限",
49797
"da": "Fjern brugergrupperettigheder til denne enhedsgruppe",
49798
"xloc": [
49759
- "default.handlebars->39->2459",
49799
+ "default.handlebars->39->2469",
49800
"default.handlebars->39->926"
49801
]
49802
},
@@ -49783,9 +49823,9 @@
49823
"da": "Fjern brugerrettigheder til denne enhedsgruppe",
49824
"xloc": [
49825
"default.handlebars->39->1861",
49786
- "default.handlebars->39->2453",
49787
- "default.handlebars->39->2612",
49788
- "default.handlebars->39->2624",
49826
+ "default.handlebars->39->2463",
49827
+ "default.handlebars->39->2622",
49828
+ "default.handlebars->39->2634",
49829
"default.handlebars->39->927"
49830
]
49831
},
@@ -50201,7 +50241,7 @@
50241
"zh-cht": "報告日",
50242
"da": "Rapportdag",
50243
"xloc": [
50204
- "default.handlebars->39->2275"
50244
+ "default.handlebars->39->2285"
50245
]
50246
},
50247
{
@@ -50226,7 +50266,7 @@
50266
"zh-cht": "報告類型",
50267
"da": "Rapport type",
50268
"xloc": [
50229
- "default.handlebars->39->2270"
50269
+ "default.handlebars->39->2280"
50270
]
50271
},
50272
{
@@ -50237,7 +50277,7 @@
50277
"pl": "Raport zwrócił brak wpisów.",
50278
"da": "Rapporten gav ingen poster.",
50279
"xloc": [
50240
- "default.handlebars->39->2710"
50280
+ "default.handlebars->39->2720"
50281
]
50282
},
50283
{
@@ -50257,7 +50297,7 @@
50297
"tr": "Report.csv",
50298
"da": "Report.csv",
50299
"xloc": [
50260
- "default.handlebars->39->2733"
50300
+ "default.handlebars->39->2743"
50301
]
50302
},
50303
{
@@ -50433,8 +50473,8 @@
50473
"da": "Krav: {0}.",
50474
"xloc": [
50475
"default-mobile.handlebars->11->113",
50436
- "default.handlebars->39->2379",
50437
- "default.handlebars->39->2602"
50476
+ "default.handlebars->39->2389",
50477
+ "default.handlebars->39->2612"
50478
]
50479
},
50480
{
@@ -50878,7 +50918,7 @@
50918
"zh-cht": "限制條件",
50919
"da": "Begrænsninger",
50920
"xloc": [
50881
- "default.handlebars->39->2493"
50921
+ "default.handlebars->39->2503"
50922
]
50923
},
50924
{
@@ -51602,8 +51642,8 @@
51642
"zh-cht": "短信",
51643
"da": "SMS",
51644
"xloc": [
51605
- "default.handlebars->39->2553",
51606
- "default.handlebars->39->2558",
51645
+ "default.handlebars->39->2563",
51646
+ "default.handlebars->39->2568",
51647
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
51648
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
51649
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -51633,7 +51673,7 @@
51673
"zh-cht": "此用戶的短信功能電話號碼。",
51674
"da": "SMS-kompatibelt telefonnummer til denne bruger.",
51675
"xloc": [
51636
- "default.handlebars->39->2574"
51676
+ "default.handlebars->39->2584"
51677
]
51678
},
51679
{
@@ -51658,7 +51698,7 @@
51698
"da": "SMS-fejl",
51699
"xloc": [
51700
"default-mobile.handlebars->11->728",
51661
- "default.handlebars->39->2771"
51701
+ "default.handlebars->39->2781"
51702
]
51703
},
51704
{
@@ -51683,7 +51723,7 @@
51723
"da": "SMS-fejl: {0}",
51724
"xloc": [
51725
"default-mobile.handlebars->11->729",
51686
- "default.handlebars->39->2772"
51726
+ "default.handlebars->39->2782"
51727
]
51728
},
51729
{
@@ -51719,7 +51759,7 @@
51759
"da": "SMS-gateway ikke aktiveret",
51760
"xloc": [
51761
"default-mobile.handlebars->11->723",
51722
- "default.handlebars->39->2766"
51762
+ "default.handlebars->39->2776"
51763
]
51764
},
51765
{
@@ -51792,7 +51832,7 @@
51832
"da": "SMS blev sendt.",
51833
"xloc": [
51834
"default-mobile.handlebars->11->727",
51795
- "default.handlebars->39->2770"
51835
+ "default.handlebars->39->2780"
51836
]
51837
},
51838
{
@@ -52633,7 +52673,7 @@
52673
"default.handlebars->39->1100",
52674
"default.handlebars->39->1407",
52675
"default.handlebars->39->2083",
52636
- "default.handlebars->39->2554",
52676
+ "default.handlebars->39->2564",
52677
"default.handlebars->39->443",
52678
"default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
52679
]
@@ -52660,7 +52700,7 @@
52700
"zh-cht": "安全密鑰",
52701
"da": "Sikkerhedsnøgle",
52702
"xloc": [
52663
- "default.handlebars->39->2549"
52703
+ "default.handlebars->39->2559"
52704
]
52705
},
52706
{
@@ -52685,7 +52725,7 @@
52725
"da": "Sikkerhedsadvarsel",
52726
"xloc": [
52727
"default-mobile.handlebars->11->697",
52688
- "default.handlebars->39->2740"
52728
+ "default.handlebars->39->2750"
52729
]
52730
},
52731
{
@@ -52759,8 +52799,8 @@
52799
"default.handlebars->39->1307",
52800
"default.handlebars->39->1309",
52801
"default.handlebars->39->2109",
52762
- "default.handlebars->39->2321",
52763
- "default.handlebars->39->2407",
52802
+ "default.handlebars->39->2331",
52803
+ "default.handlebars->39->2417",
52804
"default.handlebars->39->464",
52805
"default.handlebars->39->614",
52806
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
@@ -52784,7 +52824,7 @@
52824
"xloc": [
52825
"default.handlebars->39->1050",
52826
"default.handlebars->39->1052",
52787
- "default.handlebars->39->2698"
52827
+ "default.handlebars->39->2708"
52828
]
52829
},
52830
{
@@ -52811,8 +52851,8 @@
52851
"xloc": [
52852
"default.handlebars->39->1308",
52853
"default.handlebars->39->2108",
52814
- "default.handlebars->39->2320",
52815
- "default.handlebars->39->2406",
52854
+ "default.handlebars->39->2330",
52855
+ "default.handlebars->39->2416",
52856
"default.handlebars->39->613",
52857
"default.handlebars->meshContextMenu->cxselectnone",
52858
"sharing.handlebars->11->57"
@@ -52964,8 +53004,8 @@
53004
"zh-cht": "選擇要對所有選定用戶執行的操作。",
53005
"da": "Vælg en handling, der skal udføres på alle valgte brugere.",
53006
"xloc": [
52967
- "default.handlebars->39->2324",
52968
- "default.handlebars->39->2408"
53007
+ "default.handlebars->39->2334",
53008
+ "default.handlebars->39->2418"
53009
]
53010
},
53011
{
@@ -53143,7 +53183,7 @@
53183
"zh-cht": "發電郵",
53184
"da": "Send e-mail",
53185
"xloc": [
53146
- "default.handlebars->39->2335"
53186
+ "default.handlebars->39->2345"
53187
]
53188
},
53189
{
@@ -53219,7 +53259,7 @@
53259
"zh-cht": "發送簡訊",
53260
"da": "Send SMS",
53261
"xloc": [
53222
- "default.handlebars->39->2333"
53262
+ "default.handlebars->39->2343"
53263
]
53264
},
53265
{
@@ -53244,7 +53284,7 @@
53284
"zh-cht": "發送短信給該用戶",
53285
"da": "Send en SMS-besked til denne bruger",
53286
"xloc": [
53247
- "default.handlebars->39->2559"
53287
+ "default.handlebars->39->2569"
53288
]
53289
},
53290
{
@@ -53269,7 +53309,7 @@
53309
"zh-cht": "發送電郵給該用戶",
53310
"da": "Send en e-mail til denne bruger",
53311
"xloc": [
53272
- "default.handlebars->39->2561"
53312
+ "default.handlebars->39->2571"
53313
]
53314
},
53315
{
@@ -53294,7 +53334,7 @@
53334
"zh-cht": "向該群中的所有用戶發送通知。",
53335
"da": "Send en meddelelse til alle brugere i denne gruppe.",
53336
"xloc": [
53297
- "default.handlebars->39->2450"
53337
+ "default.handlebars->39->2460"
53338
]
53339
},
53340
{
@@ -53319,7 +53359,7 @@
53359
"zh-cht": "向該用戶發送文本通知。",
53360
"da": "Send en tekstmeddelelse til denne bruger.",
53361
"xloc": [
53322
- "default.handlebars->39->2336"
53362
+ "default.handlebars->39->2346"
53363
]
53364
},
53365
{
@@ -53344,7 +53384,7 @@
53384
"zh-cht": "發送電郵給用戶",
53385
"da": "Send e-mail til brugeren",
53386
"xloc": [
53347
- "default.handlebars->39->2316"
53387
+ "default.handlebars->39->2326"
53388
]
53389
},
53390
{
@@ -53394,7 +53434,7 @@
53434
"zh-cht": "發送邀請電郵。",
53435
"da": "Send invitationsmail.",
53436
"xloc": [
53397
- "default.handlebars->39->2378"
53437
+ "default.handlebars->39->2388"
53438
]
53439
},
53440
{
@@ -53547,7 +53587,7 @@
53587
"zh-cht": "發送用戶通知",
53588
"da": "Send brugermeddelelse",
53589
"xloc": [
53550
- "default.handlebars->39->2563"
53590
+ "default.handlebars->39->2573"
53591
]
53592
},
53593
{
@@ -53703,7 +53743,7 @@
53743
"zh-cht": "伺服器備份",
53744
"da": "Server Backup",
53745
"xloc": [
53706
- "default.handlebars->39->2388"
53746
+ "default.handlebars->39->2398"
53747
]
53748
},
53749
{
@@ -53728,7 +53768,7 @@
53768
"zh-cht": "伺服器憑證",
53769
"da": "Server Certifikat",
53770
"xloc": [
53731
- "default.handlebars->39->2846"
53771
+ "default.handlebars->39->2856"
53772
]
53773
},
53774
{
@@ -53777,7 +53817,7 @@
53817
"zh-cht": "伺服器數據庫",
53818
"da": "Server Database",
53819
"xloc": [
53780
- "default.handlebars->39->2847"
53820
+ "default.handlebars->39->2857"
53821
]
53822
},
53823
{
@@ -53806,7 +53846,7 @@
53846
"default-mobile.handlebars->11->670",
53847
"default.handlebars->39->1980",
53848
"default.handlebars->39->2011",
53809
- "default.handlebars->39->2385",
53849
+ "default.handlebars->39->2395",
53850
"default.handlebars->39->973",
53851
"default.handlebars->39->995"
53852
]
@@ -53858,7 +53898,7 @@
53898
"da": "Servergrænse",
53899
"xloc": [
53900
"default-mobile.handlebars->11->696",
53861
- "default.handlebars->39->2739"
53901
+ "default.handlebars->39->2749"
53902
]
53903
},
53904
{
@@ -53907,8 +53947,8 @@
53947
"zh-cht": "伺服器權限",
53948
"da": "Servertilladelser",
53949
"xloc": [
53910
- "default.handlebars->39->2308",
53911
- "default.handlebars->39->2400"
53950
+ "default.handlebars->39->2318",
53951
+ "default.handlebars->39->2410"
53952
]
53953
},
53954
{
@@ -53933,7 +53973,7 @@
53973
"zh-cht": "伺服器配額",
53974
"da": "Serverkvote",
53975
"xloc": [
53936
- "default.handlebars->39->2523"
53976
+ "default.handlebars->39->2533"
53977
]
53978
},
53979
{
@@ -53958,7 +53998,7 @@
53998
"zh-cht": "伺服器還原",
53999
"da": "Servergendannelse",
54000
"xloc": [
53961
- "default.handlebars->39->2389"
54001
+ "default.handlebars->39->2399"
54002
]
54003
},
54004
{
@@ -53983,7 +54023,7 @@
54023
"zh-cht": "伺服器權限",
54024
"da": "Serverrettigheder",
54025
"xloc": [
53986
- "default.handlebars->39->2522"
54026
+ "default.handlebars->39->2532"
54027
]
54028
},
54029
{
@@ -54008,7 +54048,7 @@
54048
"zh-cht": "伺服器狀態",
54049
"da": "Servertilstand",
54050
"xloc": [
54011
- "default.handlebars->39->2777"
54051
+ "default.handlebars->39->2787"
54052
]
54053
},
54054
{
@@ -54058,7 +54098,7 @@
54098
"zh-cht": "伺服器追蹤",
54099
"da": "Serversporing",
54100
"xloc": [
54061
- "default.handlebars->39->2859"
54101
+ "default.handlebars->39->2869"
54102
]
54103
},
54104
{
@@ -54082,7 +54122,7 @@
54122
"zh-chs": "服务器跟踪事件",
54123
"da": "Serversporingshændelse",
54124
"xloc": [
54085
- "default.handlebars->39->2838"
54125
+ "default.handlebars->39->2848"
54126
]
54127
},
54128
{
@@ -54158,7 +54198,7 @@
54198
"zh-cht": "伺服器更新",
54199
"da": "Serveropdateringer",
54200
"xloc": [
54161
- "default.handlebars->39->2390"
54201
+ "default.handlebars->39->2400"
54202
]
54203
},
54204
{
@@ -54408,7 +54448,7 @@
54448
"zh-cht": "ServerStats.csv",
54449
"da": "ServerStats.csv",
54450
"xloc": [
54411
- "default.handlebars->39->2837"
54451
+ "default.handlebars->39->2847"
54452
]
54453
},
54454
{
@@ -54483,8 +54523,8 @@
54523
"zh-cht": "節",
54524
"da": "Session",
54525
"xloc": [
54486
- "default.handlebars->39->2649",
54487
- "default.handlebars->39->2703",
54526
+ "default.handlebars->39->2659",
54527
+ "default.handlebars->39->2713",
54528
"ssh.handlebars->3->17",
54529
"ssh.handlebars->3->19"
54530
]
@@ -55570,7 +55610,7 @@
55610
"pl": "Pokaż Ruch",
55611
"da": "Vis trafik",
55612
"xloc": [
55573
- "default.handlebars->39->2699"
55613
+ "default.handlebars->39->2709"
55614
]
55615
},
55616
{
@@ -55720,8 +55760,8 @@
55760
"zh-cht": "顯示1分鐘",
55761
"da": "Vis i 1 minut",
55762
"xloc": [
55723
- "default.handlebars->39->2339",
55724
- "default.handlebars->39->2364"
55763
+ "default.handlebars->39->2349",
55764
+ "default.handlebars->39->2374"
55765
]
55766
},
55767
{
@@ -55746,8 +55786,8 @@
55786
"zh-cht": "顯示10秒",
55787
"da": "Vis i 10 sekunder",
55788
"xloc": [
55749
- "default.handlebars->39->2338",
55750
- "default.handlebars->39->2363"
55789
+ "default.handlebars->39->2348",
55790
+ "default.handlebars->39->2373"
55791
]
55792
},
55793
{
@@ -55772,8 +55812,8 @@
55812
"zh-cht": "顯示5分鐘",
55813
"da": "Vis i 5 minutter",
55814
"xloc": [
55775
- "default.handlebars->39->2340",
55776
- "default.handlebars->39->2365"
55815
+ "default.handlebars->39->2350",
55816
+ "default.handlebars->39->2375"
55817
]
55818
},
55819
{
@@ -55798,8 +55838,8 @@
55838
"zh-cht": "顯示消息,直到被用戶拒絕",
55839
"da": "Vis besked, indtil den afvises af brugeren",
55840
"xloc": [
55801
- "default.handlebars->39->2337",
55802
- "default.handlebars->39->2362"
55841
+ "default.handlebars->39->2347",
55842
+ "default.handlebars->39->2372"
55843
]
55844
},
55845
{
@@ -56209,8 +56249,8 @@
56249
"zh-cht": "尺寸",
56250
"da": "Størrelse",
56251
"xloc": [
56212
- "default.handlebars->39->2652",
56213
- "default.handlebars->39->2673",
56252
+ "default.handlebars->39->2662",
56253
+ "default.handlebars->39->2683",
56254
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
56255
]
56256
},
@@ -57513,8 +57553,8 @@
57553
"default.handlebars->39->1176",
57554
"default.handlebars->39->258",
57555
"default.handlebars->39->263",
57516
- "default.handlebars->39->2650",
57517
- "default.handlebars->39->2675",
57556
+ "default.handlebars->39->2660",
57557
+ "default.handlebars->39->2685",
57558
"sharing.handlebars->11->14"
57559
]
57560
},
@@ -58006,8 +58046,8 @@
58046
"zh-cht": "狀態",
58047
"da": "Status",
58048
"xloc": [
58009
- "default.handlebars->39->2593",
58010
- "default.handlebars->39->2668",
58049
+ "default.handlebars->39->2603",
58050
+ "default.handlebars->39->2678",
58051
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
58052
]
58053
},
@@ -58306,7 +58346,7 @@
58346
"zh-cht": "主題",
58347
"da": "Emne",
58348
"xloc": [
58309
- "default.handlebars->39->2334"
58349
+ "default.handlebars->39->2344"
58350
]
58351
},
58352
{
@@ -59239,10 +59279,10 @@
59279
"default.handlebars->39->1020",
59280
"default.handlebars->39->1866",
59281
"default.handlebars->39->1940",
59242
- "default.handlebars->39->2662",
59243
- "default.handlebars->39->2712",
59244
- "default.handlebars->39->2728",
59245
- "default.handlebars->39->2814",
59282
+ "default.handlebars->39->2672",
59283
+ "default.handlebars->39->2722",
59284
+ "default.handlebars->39->2738",
59285
+ "default.handlebars->39->2824",
59286
"default.handlebars->39->390",
59287
"default.handlebars->39->730",
59288
"default.handlebars->39->934",
@@ -59325,8 +59365,8 @@
59365
"da": "Terminalbesked",
59366
"xloc": [
59367
"default.handlebars->39->1825",
59328
- "default.handlebars->39->2439",
59329
- "default.handlebars->39->2541",
59368
+ "default.handlebars->39->2449",
59369
+ "default.handlebars->39->2551",
59370
"default.handlebars->39->828"
59371
]
59372
},
@@ -59353,8 +59393,8 @@
59393
"da": "Terminal Prompt",
59394
"xloc": [
59395
"default.handlebars->39->1824",
59356
- "default.handlebars->39->2438",
59357
- "default.handlebars->39->2540",
59396
+ "default.handlebars->39->2448",
59397
+ "default.handlebars->39->2550",
59398
"default.handlebars->39->827"
59399
]
59400
},
@@ -59379,7 +59419,7 @@
59419
"zh-chs": "终端会话",
59420
"da": "Terminal session",
59421
"xloc": [
59382
- "default.handlebars->39->2655"
59422
+ "default.handlebars->39->2665"
59423
]
59424
},
59425
{
@@ -59716,7 +59756,7 @@
59756
"da": "Der er i øjeblikket ingen meddelelser",
59757
"xloc": [
59758
"default-mobile.handlebars->11->691",
59719
- "default.handlebars->39->2734"
59759
+ "default.handlebars->39->2744"
59760
]
59761
},
59762
{
@@ -59741,7 +59781,7 @@
59781
"da": "Der har været {0} mislykkede loginforsøg på denne konto siden sidste login.",
59782
"xloc": [
59783
"default-mobile.handlebars->11->712",
59744
- "default.handlebars->39->2755"
59784
+ "default.handlebars->39->2765"
59785
]
59786
},
59787
{
@@ -59958,9 +59998,9 @@
59998
"da": "Dette er en gæstedelingssession",
59999
"xloc": [
60000
"default.handlebars->39->1348",
59961
- "default.handlebars->39->2268",
59962
- "default.handlebars->39->2644",
59963
- "default.handlebars->39->2645"
60001
+ "default.handlebars->39->2278",
60002
+ "default.handlebars->39->2654",
60003
+ "default.handlebars->39->2655"
60004
]
60005
},
60006
{
@@ -60355,8 +60395,8 @@
60395
"xloc": [
60396
"default-mobile.handlebars->11->351",
60397
"default.handlebars->39->1061",
60358
- "default.handlebars->39->2696",
60359
- "default.handlebars->39->2701",
60398
+ "default.handlebars->39->2706",
60399
+ "default.handlebars->39->2711",
60400
"player.handlebars->3->17"
60401
]
60402
},
@@ -60383,7 +60423,7 @@
60423
"da": "Tidsinterval",
60424
"xloc": [
60425
"default.handlebars->39->1049",
60386
- "default.handlebars->39->2697"
60426
+ "default.handlebars->39->2707"
60427
]
60428
},
60429
{
@@ -60408,7 +60448,7 @@
60448
"zh-cht": "時間跨度",
60449
"da": "Tidsperiode",
60450
"xloc": [
60411
- "default.handlebars->39->2272"
60451
+ "default.handlebars->39->2282"
60452
]
60453
},
60454
{
@@ -60434,7 +60474,7 @@
60474
"da": "Tidsinterval",
60475
"xloc": [
60476
"default.handlebars->39->1045",
60437
- "default.handlebars->39->2695"
60477
+ "default.handlebars->39->2705"
60478
]
60479
},
60480
{
@@ -61844,7 +61884,7 @@
61884
"default.handlebars->39->1747",
61885
"default.handlebars->39->1807",
61886
"default.handlebars->39->1897",
61847
- "default.handlebars->39->2685",
61887
+ "default.handlebars->39->2695",
61888
"default.handlebars->39->431",
61889
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
61890
"sharing.handlebars->p11->deskarea0->deskarea4->3"
@@ -62164,7 +62204,7 @@
62204
"da": "Kan ikke få adgang til denne funktion, før to-faktor-godkendelse er aktiveret. Dette er nødvendigt for ekstra sikkerhed. Gå til fanen \\\"Min konto\\\" og se sektionen \\\"Kontosikkerhed\\\".",
62205
"xloc": [
62206
"default.handlebars->39->1742",
62167
- "default.handlebars->39->2865",
62207
+ "default.handlebars->39->2875",
62208
"default.handlebars->39->748"
62209
]
62210
},
@@ -62190,7 +62230,7 @@
62230
"da": "Kan ikke tilføje bruger i denne tilstand",
62231
"xloc": [
62232
"default-mobile.handlebars->11->708",
62193
- "default.handlebars->39->2751"
62233
+ "default.handlebars->39->2761"
62234
]
62235
},
62236
{
@@ -62696,15 +62736,15 @@
62736
"default.handlebars->39->1792",
62737
"default.handlebars->39->1793",
62738
"default.handlebars->39->180",
62699
- "default.handlebars->39->2637",
62700
- "default.handlebars->39->2654",
62701
- "default.handlebars->39->2661",
62702
- "default.handlebars->39->2722",
62703
- "default.handlebars->39->2723",
62704
- "default.handlebars->39->2724",
62705
- "default.handlebars->39->2725",
62706
- "default.handlebars->39->2726",
62707
- "default.handlebars->39->2731",
62739
+ "default.handlebars->39->2647",
62740
+ "default.handlebars->39->2664",
62741
+ "default.handlebars->39->2671",
62742
+ "default.handlebars->39->2732",
62743
+ "default.handlebars->39->2733",
62744
+ "default.handlebars->39->2734",
62745
+ "default.handlebars->39->2735",
62746
+ "default.handlebars->39->2736",
62747
+ "default.handlebars->39->2741",
62748
"default.handlebars->39->44",
62749
"default.handlebars->39->51",
62750
"default.handlebars->39->52",
@@ -62759,7 +62799,7 @@
62799
"zh-cht": "未知動作",
62800
"da": "Ukendt handling",
62801
"xloc": [
62762
- "default.handlebars->39->2783"
62802
+ "default.handlebars->39->2793"
62803
]
62804
},
62805
{
@@ -62784,8 +62824,8 @@
62824
"zh-cht": "未知裝置",
62825
"da": "Ukendt enhed",
62826
"xloc": [
62787
- "default.handlebars->39->2464",
62788
- "default.handlebars->39->2623"
62827
+ "default.handlebars->39->2474",
62828
+ "default.handlebars->39->2633"
62829
]
62830
},
62831
{
@@ -62810,9 +62850,9 @@
62850
"zh-cht": "未知裝置群",
62851
"da": "Ukendt enhedsgruppe",
62852
"xloc": [
62813
- "default.handlebars->39->2458",
62814
- "default.handlebars->39->2611",
62815
- "default.handlebars->39->2787"
62853
+ "default.handlebars->39->2468",
62854
+ "default.handlebars->39->2621",
62855
+ "default.handlebars->39->2797"
62856
]
62857
},
62858
{
@@ -62837,7 +62877,7 @@
62877
"zh-cht": "未知群組",
62878
"da": "Ukendt gruppe",
62879
"xloc": [
62840
- "default.handlebars->39->2779"
62880
+ "default.handlebars->39->2789"
62881
]
62882
},
62883
{
@@ -62875,8 +62915,8 @@
62915
"pl": "Nieznany Użytkownik",
62916
"da": "Ukendt bruger",
62917
"xloc": [
62878
- "default.handlebars->39->2727",
62879
- "default.handlebars->39->2732"
62918
+ "default.handlebars->39->2737",
62919
+ "default.handlebars->39->2742"
62920
]
62921
},
62922
{
@@ -62901,7 +62941,7 @@
62941
"zh-cht": "未知用戶群",
62942
"da": "Ukendt brugergruppe",
62943
"xloc": [
62904
- "default.handlebars->39->2617"
62944
+ "default.handlebars->39->2627"
62945
]
62946
},
62947
{
@@ -63006,7 +63046,7 @@
63046
"zh-cht": "解鎖帳戶",
63047
"da": "Lås konto op",
63048
"xloc": [
63009
- "default.handlebars->39->2327"
63049
+ "default.handlebars->39->2337"
63050
]
63051
},
63052
{
@@ -63124,7 +63164,7 @@
63164
"zh-cht": "最新",
63165
"da": "Up to date",
63166
"xloc": [
63127
- "default.handlebars->39->2870"
63167
+ "default.handlebars->39->2880"
63168
]
63169
},
63170
{
@@ -63672,7 +63712,7 @@
63712
"zh-chs": "用法",
63713
"da": "Anvendelse",
63714
"xloc": [
63675
- "default.handlebars->39->2833"
63715
+ "default.handlebars->39->2843"
63716
]
63717
},
63718
{
@@ -63870,8 +63910,8 @@
63910
"zh-cht": "用過的",
63911
"da": "Brugt",
63912
"xloc": [
63873
- "default.handlebars->39->2773",
63874
- "default.handlebars->39->2775"
63913
+ "default.handlebars->39->2783",
63914
+ "default.handlebars->39->2785"
63915
]
63916
},
63917
{
@@ -63898,12 +63938,12 @@
63938
"xloc": [
63939
"default.handlebars->39->112",
63940
"default.handlebars->39->1862",
63901
- "default.handlebars->39->2279",
63902
- "default.handlebars->39->2309",
63903
- "default.handlebars->39->2454",
63904
- "default.handlebars->39->2680",
63905
- "default.handlebars->39->2686",
63906
- "default.handlebars->39->2704",
63941
+ "default.handlebars->39->2289",
63942
+ "default.handlebars->39->2319",
63943
+ "default.handlebars->39->2464",
63944
+ "default.handlebars->39->2690",
63945
+ "default.handlebars->39->2696",
63946
+ "default.handlebars->39->2714",
63947
"default.handlebars->39->336",
63948
"default.handlebars->39->929"
63949
]
@@ -63930,7 +63970,7 @@
63970
"zh-cht": "用戶+檔案",
63971
"da": "Bruger + filer",
63972
"xloc": [
63933
- "default.handlebars->39->2310"
63973
+ "default.handlebars->39->2320"
63974
]
63975
},
63976
{
@@ -63956,10 +63996,10 @@
63996
"da": "Brugerkontoimport",
63997
"xloc": [
63998
"default.handlebars->39->1892",
63959
- "default.handlebars->39->2345",
63960
- "default.handlebars->39->2346",
63961
- "default.handlebars->39->2348",
63962
- "default.handlebars->39->2350"
63999
+ "default.handlebars->39->2355",
64000
+ "default.handlebars->39->2356",
64001
+ "default.handlebars->39->2358",
64002
+ "default.handlebars->39->2360"
64003
]
64004
},
64005
{
@@ -63984,7 +64024,7 @@
64024
"zh-cht": "用戶帳戶",
64025
"da": "Brugerkonti",
64026
"xloc": [
63987
- "default.handlebars->39->2792"
64027
+ "default.handlebars->39->2802"
64028
]
64029
},
64030
{
@@ -64038,8 +64078,8 @@
64078
"xloc": [
64079
"default.handlebars->39->1054",
64080
"default.handlebars->39->1831",
64041
- "default.handlebars->39->2445",
64042
- "default.handlebars->39->2547",
64081
+ "default.handlebars->39->2455",
64082
+ "default.handlebars->39->2557",
64083
"default.handlebars->39->273",
64084
"default.handlebars->39->834"
64085
]
@@ -64068,9 +64108,9 @@
64108
"xloc": [
64109
"default.handlebars->39->1960",
64110
"default.handlebars->39->1961",
64071
- "default.handlebars->39->2415",
64072
- "default.handlebars->39->2619",
64073
- "default.handlebars->39->2640",
64111
+ "default.handlebars->39->2425",
64112
+ "default.handlebars->39->2629",
64113
+ "default.handlebars->39->2650",
64114
"default.handlebars->39->928"
64115
]
64116
},
@@ -64121,7 +64161,7 @@
64161
"zh-cht": "用戶群成員",
64162
"da": "Brugergruppemedlemskaber",
64163
"xloc": [
64124
- "default.handlebars->39->2616"
64164
+ "default.handlebars->39->2626"
64165
]
64166
},
64167
{
@@ -64172,8 +64212,8 @@
64212
"da": "Brugeridentifikator",
64213
"xloc": [
64214
"default.handlebars->39->2029",
64175
- "default.handlebars->39->2501",
64176
- "default.handlebars->39->2502"
64215
+ "default.handlebars->39->2511",
64216
+ "default.handlebars->39->2512"
64217
]
64218
},
64219
{
@@ -64199,7 +64239,7 @@
64239
"da": "Brugeridentifikatorer",
64240
"xloc": [
64241
"default.handlebars->39->1958",
64202
- "default.handlebars->39->2485"
64242
+ "default.handlebars->39->2495"
64243
]
64244
},
64245
{
@@ -64248,7 +64288,7 @@
64288
"zh-cht": "用戶列表輸出",
64289
"da": "Eksport af brugerliste",
64290
"xloc": [
64251
- "default.handlebars->39->2357"
64291
+ "default.handlebars->39->2367"
64292
]
64293
},
64294
{
@@ -64394,7 +64434,7 @@
64434
"zh-cht": "用戶節",
64435
"da": "Brugersessioner",
64436
"xloc": [
64397
- "default.handlebars->39->2824"
64437
+ "default.handlebars->39->2834"
64438
]
64439
},
64440
{
@@ -64435,7 +64475,7 @@
64475
"pl": "Wykorzystanie Pasma przez Użytkownika",
64476
"da": "Brugertrafik",
64477
"xloc": [
64438
- "default.handlebars->39->2684"
64478
+ "default.handlebars->39->2694"
64479
]
64480
},
64481
{
@@ -64535,7 +64575,7 @@
64575
"da": "Bruger eksisterer allerede",
64576
"xloc": [
64577
"default-mobile.handlebars->11->707",
64538
- "default.handlebars->39->2750"
64578
+ "default.handlebars->39->2760"
64579
]
64580
},
64581
{
@@ -64751,7 +64791,7 @@
64791
"da": "Bruger {0} ikke fundet.",
64792
"xloc": [
64793
"default-mobile.handlebars->11->715",
64754
- "default.handlebars->39->2758"
64794
+ "default.handlebars->39->2768"
64795
]
64796
},
64797
{
@@ -64812,7 +64852,7 @@
64852
"default.handlebars->39->1770",
64853
"default.handlebars->39->1775",
64854
"default.handlebars->39->1809",
64815
- "default.handlebars->39->2369",
64855
+ "default.handlebars->39->2379",
64856
"default.handlebars->39->302",
64857
"default.handlebars->39->440",
64858
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
@@ -64958,9 +64998,9 @@
64998
"zh-cht": "用戶",
64999
"da": "Brugere",
65000
"xloc": [
64961
- "default.handlebars->39->2403",
64962
- "default.handlebars->39->2446",
64963
- "default.handlebars->39->2823",
65001
+ "default.handlebars->39->2413",
65002
+ "default.handlebars->39->2456",
65003
+ "default.handlebars->39->2833",
65004
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
65005
]
65006
},
@@ -64986,7 +65026,7 @@
65026
"zh-cht": "用戶節",
65027
"da": "Brugersessioner",
65028
"xloc": [
64989
- "default.handlebars->39->2796"
65029
+ "default.handlebars->39->2806"
65030
]
65031
},
65032
{
@@ -65010,7 +65050,7 @@
65050
"zh-chs": "用户视图",
65051
"da": "Brugervisning",
65052
"xloc": [
65013
- "default.handlebars->39->2343"
65053
+ "default.handlebars->39->2353"
65054
]
65055
},
65056
{
@@ -65035,7 +65075,7 @@
65075
"da": "Brugere {0} ikke fundet.",
65076
"xloc": [
65077
"default-mobile.handlebars->11->716",
65038
- "default.handlebars->39->2759"
65078
+ "default.handlebars->39->2769"
65079
]
65080
},
65081
{
@@ -65159,7 +65199,7 @@
65199
"zh-cht": "驗證電郵",
65200
"da": "Bekræft e-mail",
65201
"xloc": [
65162
- "default.handlebars->39->2322"
65202
+ "default.handlebars->39->2332"
65203
]
65204
},
65205
{
@@ -65184,7 +65224,7 @@
65224
"da": "Validering undtagelse",
65225
"xloc": [
65226
"default-mobile.handlebars->11->709",
65187
- "default.handlebars->39->2752"
65227
+ "default.handlebars->39->2762"
65228
]
65229
},
65230
{
@@ -65337,7 +65377,7 @@
65377
"zh-cht": "已驗證",
65378
"da": "Verificeret",
65379
"xloc": [
65340
- "default.handlebars->39->2595"
65380
+ "default.handlebars->39->2605"
65381
]
65382
},
65383
{
@@ -65390,7 +65430,7 @@
65430
"xloc": [
65431
"default-mobile.handlebars->11->87",
65432
"default.handlebars->39->1459",
65393
- "default.handlebars->39->2318"
65433
+ "default.handlebars->39->2328"
65434
]
65435
},
65436
{
@@ -65524,7 +65564,7 @@
65564
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
65565
"da": "Version inkompatibel. Opgrader venligst din MeshCentral-installation først",
65566
"xloc": [
65527
- "default.handlebars->39->2866"
65567
+ "default.handlebars->39->2876"
65568
]
65569
},
65570
{
@@ -65672,7 +65712,7 @@
65712
"zh-cht": "查看所有事件",
65713
"da": "Se alle hændelser",
65714
"xloc": [
65675
- "default.handlebars->39->2394"
65715
+ "default.handlebars->39->2404"
65716
]
65717
},
65718
{
@@ -65718,8 +65758,8 @@
65758
"zh-cht": "查看變更日誌",
65759
"da": "Vis Changelog",
65760
"xloc": [
65721
- "default.handlebars->39->2869",
65722
- "default.handlebars->39->2871"
65761
+ "default.handlebars->39->2879",
65762
+ "default.handlebars->39->2881"
65763
]
65764
},
65765
{
@@ -65794,7 +65834,7 @@
65834
"zh-cht": "查看有關此用戶的註釋",
65835
"da": "Se noter om denne bruger",
65836
"xloc": [
65797
- "default.handlebars->39->2557"
65837
+ "default.handlebars->39->2567"
65838
]
65839
},
65840
{
@@ -65843,7 +65883,7 @@
65883
"zh-chs": "查看此用户以前的登录",
65884
"da": "Se tidligere logins for denne bruger",
65885
"xloc": [
65846
- "default.handlebars->39->2570"
65886
+ "default.handlebars->39->2580"
65887
]
65888
},
65889
{
@@ -66337,8 +66377,8 @@
66377
"zh-cht": "網絡伺服器",
66378
"da": "Webbserver",
66379
"xloc": [
66340
- "default.handlebars->39->2849",
66341
- "default.handlebars->39->2850"
66380
+ "default.handlebars->39->2859",
66381
+ "default.handlebars->39->2860"
66382
]
66383
},
66384
{
@@ -66362,7 +66402,7 @@
66402
"zh-chs": "Web 服务器 HTTP 标头",
66403
"da": "Webbserver HTTP Headers",
66404
"xloc": [
66365
- "default.handlebars->39->2853"
66405
+ "default.handlebars->39->2863"
66406
]
66407
},
66408
{
@@ -66387,7 +66427,7 @@
66427
"zh-cht": "Web伺服器請求",
66428
"da": "Webserveranmodninger",
66429
"xloc": [
66390
- "default.handlebars->39->2851"
66430
+ "default.handlebars->39->2861"
66431
]
66432
},
66433
{
@@ -66412,7 +66452,7 @@
66452
"zh-cht": "Web插座中繼",
66453
"da": "Web Socket Relay",
66454
"xloc": [
66415
- "default.handlebars->39->2852"
66455
+ "default.handlebars->39->2862"
66456
]
66457
},
66458
{
@@ -66437,7 +66477,7 @@
66477
"zh-cht": "網絡RDP",
66478
"da": "Web-RDP",
66479
"xloc": [
66440
- "default.handlebars->39->2718",
66480
+ "default.handlebars->39->2728",
66481
"default.handlebars->39->903"
66482
]
66483
},
@@ -66450,7 +66490,7 @@
66490
"pl": "Web-SFTP",
66491
"da": "Web-SFTP",
66492
"xloc": [
66453
- "default.handlebars->39->2720"
66493
+ "default.handlebars->39->2730"
66494
]
66495
},
66496
{
@@ -66474,7 +66514,7 @@
66514
"zh-chs": "网络SSH",
66515
"da": "Web-SSH",
66516
"xloc": [
66477
- "default.handlebars->39->2719",
66517
+ "default.handlebars->39->2729",
66518
"default.handlebars->39->905"
66519
]
66520
},
@@ -66499,7 +66539,7 @@
66539
"zh-chs": "网络VNC",
66540
"da": "Web-VNC",
66541
"xloc": [
66502
- "default.handlebars->39->2721",
66542
+ "default.handlebars->39->2731",
66543
"default.handlebars->39->901"
66544
]
66545
},
@@ -66524,7 +66564,7 @@
66564
"zh-chs": "网络RDP",
66565
"da": "WebRDP",
66566
"xloc": [
66527
- "default.handlebars->39->2817"
66567
+ "default.handlebars->39->2827"
66568
]
66569
},
66570
{
@@ -66548,7 +66588,7 @@
66588
"zh-chs": "网络SSH",
66589
"da": "WebSSH",
66590
"xloc": [
66551
- "default.handlebars->39->2818"
66591
+ "default.handlebars->39->2828"
66592
]
66593
},
66594
{
@@ -66583,14 +66623,11 @@
66623
"zh-chs": "网络VNC",
66624
"da": "WebVNC",
66625
"xloc": [
66586
- "default.handlebars->39->2819"
66626
+ "default.handlebars->39->2829"
66627
]
66628
},
66629
{
66630
"en": "Weekly",
66591
- "en": "wöchentlich",
66592
- "nl": "Wekelijks",
66593
- "pl": "Tygodniowo",
66631
"xloc": [
66632
"default.handlebars->39->268"
66633
]
@@ -66817,7 +66854,7 @@
66854
"zh-cht": "下次登入時將更改。",
66855
"da": "Ændres ved næste login.",
66856
"xloc": [
66820
- "default.handlebars->39->2527"
66857
+ "default.handlebars->39->2537"
66858
]
66859
},
66860
{
@@ -68576,7 +68613,7 @@
68613
"zh-cht": "\\\\'",
68614
"da": "\\\\'",
68615
"xloc": [
68579
- "default.handlebars->39->2867"
68616
+ "default.handlebars->39->2877"
68617
]
68618
},
68619
{
@@ -69238,8 +69275,8 @@
69275
"zh-cht": "eventslist.csv",
69276
"da": "eventslist.csv",
69277
"xloc": [
69241
- "default.handlebars->39->2286",
69242
- "default.handlebars->39->2291"
69278
+ "default.handlebars->39->2296",
69279
+ "default.handlebars->39->2301"
69280
]
69281
},
69282
{
@@ -69264,8 +69301,8 @@
69301
"zh-cht": "eventslist.json",
69302
"da": "eventslist.json",
69303
"xloc": [
69267
- "default.handlebars->39->2288",
69268
- "default.handlebars->39->2292"
69304
+ "default.handlebars->39->2298",
69305
+ "default.handlebars->39->2302"
69306
]
69307
},
69308
{
@@ -69340,8 +69377,8 @@
69377
"zh-cht": "免費",
69378
"da": "ledig",
69379
"xloc": [
69343
- "default.handlebars->39->2804",
69344
- "default.handlebars->39->2807"
69380
+ "default.handlebars->39->2814",
69381
+ "default.handlebars->39->2817"
69382
]
69383
},
69384
{
@@ -69606,7 +69643,7 @@
69643
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
69644
"da": "id, name, email, creation, lastlogin, groups, authfactors",
69645
"xloc": [
69609
- "default.handlebars->39->2358"
69646
+ "default.handlebars->39->2368"
69647
]
69648
},
69649
{
@@ -69822,7 +69859,7 @@
69859
"zh-cht": "k max,默認為空白",
69860
"da": "k max, blank for standard",
69861
"xloc": [
69825
- "default.handlebars->39->2386"
69862
+ "default.handlebars->39->2396"
69863
]
69864
},
69865
{
@@ -70449,7 +70486,7 @@
70486
"zh-cht": "servertrace.csv",
70487
"da": "servertrace.csv",
70488
"xloc": [
70452
- "default.handlebars->39->2861"
70489
+ "default.handlebars->39->2871"
70490
]
70491
},
70492
{
@@ -70551,7 +70588,7 @@
70588
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
70589
"da": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
70590
"xloc": [
70554
- "default.handlebars->39->2836"
70591
+ "default.handlebars->39->2846"
70592
]
70593
},
70594
{
@@ -70576,7 +70613,7 @@
70613
"zh-cht": "時間,來源,訊息",
70614
"da": "time, source, message",
70615
"xloc": [
70579
- "default.handlebars->39->2860"
70616
+ "default.handlebars->39->2870"
70617
]
70618
},
70619
{
@@ -70623,8 +70660,8 @@
70660
"zh-cht": "總",
70661
"da": "total",
70662
"xloc": [
70626
- "default.handlebars->39->2805",
70627
- "default.handlebars->39->2808"
70663
+ "default.handlebars->39->2815",
70664
+ "default.handlebars->39->2818"
70665
]
70666
},
70667
{
@@ -70751,8 +70788,8 @@
70788
"zh-cht": "userlist.csv",
70789
"da": "userlist.csv",
70790
"xloc": [
70754
- "default.handlebars->39->2354",
70755
- "default.handlebars->39->2359"
70791
+ "default.handlebars->39->2364",
70792
+ "default.handlebars->39->2369"
70793
]
70794
},
70795
{
@@ -70777,8 +70814,8 @@
70814
"zh-cht": "userlist.json",
70815
"da": "userlist.json",
70816
"xloc": [
70780
- "default.handlebars->39->2356",
70781
- "default.handlebars->39->2360"
70817
+ "default.handlebars->39->2366",
70818
+ "default.handlebars->39->2370"
70819
]
70820
},
70821
{
@@ -70803,7 +70840,7 @@
70840
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
70841
"da": "utc, time, type, action, user, device, message",
70842
"xloc": [
70806
- "default.handlebars->39->2290"
70843
+ "default.handlebars->39->2300"
70844
]
70845
},
70846
{
@@ -70854,6 +70891,11 @@
70891
"device-notify.html->2->9->1"
70892
]
70893
},
70894
+ {
70895
+ "en": "wöchentlich",
70896
+ "nl": "Wekelijks",
70897
+ "pl": "Tygodniowo"
70898
+ },
70899
{
70900
"cs": "{0}",
70901
"de": "{0}",
@@ -71060,7 +71102,7 @@
71102
"xloc": [
71103
"default.handlebars->39->2096",
71104
"default.handlebars->39->2101",
71063
- "default.handlebars->39->2653"
71105
+ "default.handlebars->39->2663"
71106
]
71107
},
71108
{
@@ -71183,7 +71225,7 @@
71225
"zh-cht": "{0}個活躍節",
71226
"da": "{0} aktive sessioner",
71227
"xloc": [
71186
- "default.handlebars->39->2573"
71228
+ "default.handlebars->39->2583"
71229
]
71230
},
71231
{
@@ -71236,7 +71278,7 @@
71278
"xloc": [
71279
"default-mobile.handlebars->11->143",
71280
"default.handlebars->39->2111",
71239
- "default.handlebars->39->2674",
71281
+ "default.handlebars->39->2684",
71282
"download.handlebars->3->2",
71283
"download2.handlebars->5->2",
71284
"sharing.handlebars->11->97"
@@ -71385,7 +71427,7 @@
71427
"zh-cht": "{0}個群組",
71428
"da": "{0} grupper",
71429
"xloc": [
71388
- "default.handlebars->39->2532"
71430
+ "default.handlebars->39->2542"
71431
]
71432
},
71433
{
@@ -71598,7 +71640,7 @@
71640
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
71641
"da": "{0} flere brugere ikke vist, brug søgefeltet til at søge efter brugere...",
71642
"xloc": [
71601
- "default.handlebars->39->2300"
71643
+ "default.handlebars->39->2310"
71644
]
71645
},
71646
{
@@ -71970,7 +72012,7 @@
72012
"default-mobile.handlebars->11->212",
72013
"default-mobile.handlebars->11->216",
72014
"default-mobile.handlebars->11->220",
71973
- "default.handlebars->39->2304",
72015
+ "default.handlebars->39->2314",
72016
"default.handlebars->39->382",
72017
"default.handlebars->39->385",
72018
"default.handlebars->39->389",
views/default.handlebars
+21
-2
@@ -13450,9 +13450,21 @@
13450
136: "Forcibly disconnected files session of user {0}",
13451
137: "Forcibly disconnected routing session of user {0}",
13452
138: "Added device share {0} recurring daily.",
13453
- 139: "Added device share {0} recurring weekly."
13453
+ 139: "Added device share {0} recurring weekly.",
13454
+ 140: "Changed device {0} from group {1}: {2}",
13455
+ 141: "Intel(r) AMT policy change",
13456
+ 142: "Device group {0} was changed: {1}"
13457
};
13458
13459
+ var eventsShortMessageId = {
13460
+ 1: "Group name",
13461
+ 2: "Description",
13462
+ 3: "Flags",
13463
+ 4: "Consent",
13464
+ 5: "Auto-Remove",
13465
+ 6: "Invite code"
13466
+ }
13467
+
13468
// Highlights the device being hovered
13469
function eventMouseHover(e, over) {
13470
e.children[1].classList.remove('g1s');
@@ -13486,7 +13498,14 @@
13498
if (event.msgArgs != null) {
13499
for (var i in event.msgArgs) {
13500
var xx = event.msgArgs[i];
13489
- if ((typeof xx == 'string') && (xx.indexOf('DATETIME:') == 0)) { xx = printFlexDateTime(new Date(parseInt(xx.substring(9)))); }
13501
+ if (Array.isArray(xx)) {
13502
+ var x2 = [];
13503
+ for (var j in xx) { if ((typeof xx[j] == 'number') && (eventsShortMessageId[xx[j]])) { x2.push(eventsShortMessageId[xx[j]]); } else { x2.push(xx[j]); } }
13504
+ xx = x2.join(", ");
13505
+ } else {
13506
+ if ((typeof xx == 'string') && (xx.indexOf('DATETIME:') == 0)) { xx = printFlexDateTime(new Date(parseInt(xx.substring(9)))); }
13507
+
13508
+ }
13509
msg = msg.split('{' + i + '}').join(xx);
13510
}
13511
}
webserver.js
+1
-1
@@ -7628,7 +7628,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
7628
if ((acceptLanguages[i] == 'en') || (acceptLanguages[i].startsWith('en-'))) {
7629
// English requested
7630
args.lang = 'en';
7631
- if (user && (user.llang != 'en')) { user.llang = 'en'; obj.db.SetUser(user); } // Set user 'last language' used if needed.
7631
+ if (user && user.llang) { delete user.llang; obj.db.SetUser(user); } // Clear user 'last language' used if needed. Since English is the default, remove "last language".
7632
break;
7633
}
7634
if (fileOptions[acceptLanguages[i]] != null) {