Version 0.6.0
Ylian Saint-Hilaire committed
Jul 31, 2020 at 18:05 UTC
8ea198b83176826daf4a926a63144e9a38d26306
8 files changed
+463
-388
agents/meshcore.js
+18
-5
@@ -2374,7 +2374,7 @@ function createMeshCore(agent) {
2374
var response = null;
2375
switch (cmd) {
2376
case 'help': { // Displays available commands
2377
- var fin = '', f = '', availcommands = 'coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,amt,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,amtreset,amtccm,amtacm,amtdeactivate,amtpolicy,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,scanamt,wallpaper,addagentmsg,clearagentmsg';
2377
+ var fin = '', f = '', availcommands = 'coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,amt,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,amtreset,amtccm,amtacm,amtdeactivate,amtpolicy,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,scanamt,wallpaper,agentmsg';
2378
if (process.platform == 'win32') { availcommands += ',safemode,wpfhwacceleration,uac'; }
2379
if (process.platform != 'freebsd') { availcommands += ',vm';}
2380
if (require('MeshAgent').maxKvmTileSize != null) { availcommands += ',kvmmode'; }
@@ -2389,11 +2389,24 @@ function createMeshCore(agent) {
2389
response = "Available commands: \r\n" + fin + ".";
2390
break;
2391
}
2392
- case 'addagentmsg': {
2393
- if (args['_'].length != 1) {
2394
- response = "Proper usage: addagentmsg \"Alert Message\""; // Display usage
2392
+ case 'agentmsg': {
2393
+ if (args['_'].length == 0) {
2394
+ response = "Proper usage:\r\n agentmsg add \"[message]\" [iconIndex]\r\n agentmsg remove [index]\r\n agentmsg list"; // Display usage
2395
} else {
2396
- tunnelUserCount.msg[args['_'][0]] = 1;
2396
+ if ((args['_'][0] == 'add') && (args['_'].length > 1)) {
2397
+ var msgIndex = 1, iconIndex = 0;
2398
+ while (tunnelUserCount.msg[msgIndex] != null) { msgIndex++; }
2399
+ if (args['_'].length >= 3) { try { iconIndex = parseInt(args['_'][2]); } catch (ex) { } }
2400
+ if (typeof iconIndex != 'number') { iconIndex = 0; }
2401
+ tunnelUserCount.msg[msgIndex] = { msg: args['_'][1], icon: iconIndex };
2402
+ response = 'Agent message ' + msgIndex + ' added.';
2403
+ } else if ((args['_'][0] == 'remove') && (args['_'].length > 1)) {
2404
+ var msgIndex = 0;
2405
+ try { msgIndex = parseInt(args['_'][1]); } catch (ex) { }
2406
+ if (tunnelUserCount.msg[msgIndex] == null) { response = "Message not found."; } else { delete tunnelUserCount.msg[msgIndex]; response = "Message removed."; }
2407
+ } else if (args['_'][0] == 'list') {
2408
+ response = JSON.stringify(tunnelUserCount.msg, null, 2);
2409
+ }
2410
try { mesh.SendCommand({ action: 'sessions', type: 'msg', value: tunnelUserCount.msg }); } catch (ex) { }
2411
}
2412
break;
package.json
+2
-19
@@ -1,6 +1,6 @@
1
{
2
"name": "meshcentral",
3
- "version": "0.5.99",
3
+ "version": "0.6.0",
4
"keywords": [
5
"Remote Device Management",
6
"Remote Device Monitoring",
@@ -34,8 +34,6 @@
34
"sample-config-advanced.json"
35
],
36
"dependencies": {
37
- "archiver": "^4.0.2",
38
- "archiver-zip-encrypted": "^1.0.8",
37
"body-parser": "^1.19.0",
38
"cbor": "^4.1.5",
39
"compression": "^1.7.4",
@@ -44,29 +42,14 @@
42
"express": "^4.17.0",
43
"express-handlebars": "^3.1.0",
44
"express-ws": "^4.0.0",
47
- "image-size": "^0.8.3",
45
"ipcheck": "^0.1.0",
49
- "jwt-simple": "^0.5.6",
46
"minimist": "^1.2.0",
51
- "mongodb": "^3.6.0",
47
"multiparty": "^4.2.1",
48
"nedb": "^1.8.0",
49
"node-forge": "^0.8.4",
55
- "node-rdpjs-2": "^0.3.5",
56
- "node-windows": "^0.1.14",
57
- "otplib": "^10.2.3",
58
- "passport": "^0.4.1",
59
- "passport-azure-oauth2": "^0.1.0",
60
- "passport-github2": "^0.1.12",
61
- "passport-google-oauth20": "^2.0.0",
62
- "passport-reddit": "^0.2.4",
63
- "passport-twitter": "^1.0.4",
64
- "plivo": "^4.7.0",
65
- "saslprep": "^1.0.3",
50
"ws": "^6.2.1",
51
"xmldom": "^0.1.27",
68
- "yauzl": "^2.10.0",
69
- "yubikeyotp": "^0.2.0"
52
+ "yauzl": "^2.10.0"
53
},
54
"devDependencies": {},
55
"repository": {
public/images/notify24.png
Binary files /dev/null and b/public/images/notify24.png differ
public/images/notify48.png
Binary files /dev/null and b/public/images/notify48.png differ
public/styles/style.css
+19
@@ -797,6 +797,25 @@ NoMeshesPanel img {
797
background-color:#44F;
798
}
799
800
+.NotifyIcon1 { width:48px; height:48px; background: url(../images/notify48.png) 0px 0px; }
801
+.NotifyIcon2 { width:48px; height:48px; background: url(../images/notify48.png) -48px 0px; }
802
+.NotifyIcon3 { width:48px; height:48px; background: url(../images/notify48.png) -96px 0px; }
803
+.NotifyIcon4 { width:48px; height:48px; background: url(../images/notify48.png) -144px 0px; }
804
+.NotifyIcon5 { width:48px; height:48px; background: url(../images/notify48.png) -192px 0px; }
805
+.NotifyIcon6 { width:48px; height:48px; background: url(../images/notify48.png) -240px 0px; }
806
+.NotifyIcon7 { width:48px; height:48px; background: url(../images/notify48.png) -288px 0px; }
807
+.NotifyIcon8 { width:48px; height:48px; background: url(../images/notify48.png) -336px 0px; }
808
+.NotifyIcon9 { width:48px; height:48px; background: url(../images/notify48.png) -384px 0px; }
809
+.NotifyIconSmall1 { width:24px; height:24px; background: url(../images/notify24.png) 0px 0px; }
810
+.NotifyIconSmall2 { width:24px; height:24px; background: url(../images/notify24.png) -24px 0px; }
811
+.NotifyIconSmall3 { width:24px; height:24px; background: url(../images/notify24.png) -48px 0px; }
812
+.NotifyIconSmall4 { width:24px; height:24px; background: url(../images/notify24.png) -72px 0px; }
813
+.NotifyIconSmall5 { width:24px; height:24px; background: url(../images/notify24.png) -96px 0px; }
814
+.NotifyIconSmall6 { width:24px; height:24px; background: url(../images/notify24.png) -120px 0px; }
815
+.NotifyIconSmall7 { width:24px; height:24px; background: url(../images/notify24.png) -144px 0px; }
816
+.NotifyIconSmall8 { width:24px; height:24px; background: url(../images/notify24.png) -168px 0px; }
817
+.NotifyIconSmall9 { width:24px; height:24px; background: url(../images/notify24.png) -192px 0px; }
818
+
819
.deviceBatteryLarge {
820
position:absolute;
821
left:10px;
translate/translate.json
+398
-356
@@ -192,7 +192,7 @@
192
"zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。",
193
"xloc": [
194
"default.handlebars->27->1333",
195
- "default.handlebars->27->1662"
195
+ "default.handlebars->27->1670"
196
]
197
},
198
{
@@ -641,7 +641,7 @@
641
"default-mobile.handlebars->9->108",
642
"default-mobile.handlebars->9->295",
643
"default.handlebars->27->1440",
644
- "default.handlebars->27->1815",
644
+ "default.handlebars->27->1827",
645
"default.handlebars->27->811"
646
]
647
},
@@ -691,7 +691,7 @@
691
"ru": "1 активная сессия",
692
"zh-chs": "1個活動會話",
693
"xloc": [
694
- "default.handlebars->27->1731"
694
+ "default.handlebars->27->1739"
695
]
696
},
697
{
@@ -753,7 +753,7 @@
753
"ru": "1 группа",
754
"zh-chs": "1組",
755
"xloc": [
756
- "default.handlebars->27->1696"
756
+ "default.handlebars->27->1704"
757
]
758
},
759
{
@@ -1164,7 +1164,7 @@
1164
"zh-chs": "啟用第二因素身份驗證",
1165
"xloc": [
1166
"default.handlebars->27->1525",
1167
- "default.handlebars->27->1718"
1167
+ "default.handlebars->27->1726"
1168
]
1169
},
1170
{
@@ -1642,6 +1642,13 @@
1642
"ru": ":",
1643
"zh-chs": ":"
1644
},
1645
+ {
1646
+ "en": "</i></div>",
1647
+ "xloc": [
1648
+ "default.handlebars->27->1797",
1649
+ "default.handlebars->27->1799"
1650
+ ]
1651
+ },
1652
{
1653
"cs": "<<",
1654
"de": "<<",
@@ -1918,7 +1925,7 @@
1925
"ru": "Доступ к файлам сервера",
1926
"zh-chs": "訪問服務器文件",
1927
"xloc": [
1921
- "default.handlebars->27->1668"
1928
+ "default.handlebars->27->1676"
1929
]
1930
},
1931
{
@@ -2043,7 +2050,7 @@
2050
"zh-chs": "帐户已被锁定",
2051
"xloc": [
2052
"default.handlebars->27->1527",
2046
- "default.handlebars->27->1665"
2053
+ "default.handlebars->27->1673"
2054
]
2055
},
2056
{
@@ -2318,8 +2325,8 @@
2325
"ru": "Добавить устройство",
2326
"zh-chs": "添加設備",
2327
"xloc": [
2321
- "default.handlebars->27->1642",
2322
- "default.handlebars->27->1766"
2328
+ "default.handlebars->27->1650",
2329
+ "default.handlebars->27->1774"
2330
]
2331
},
2332
{
@@ -2354,8 +2361,8 @@
2361
"zh-chs": "添加設備組",
2362
"xloc": [
2363
"default.handlebars->27->1365",
2357
- "default.handlebars->27->1636",
2358
- "default.handlebars->27->1754",
2364
+ "default.handlebars->27->1644",
2365
+ "default.handlebars->27->1762",
2366
"default.handlebars->27->216"
2367
]
2368
},
@@ -2472,7 +2479,7 @@
2479
"ru": "Добавить участие",
2480
"zh-chs": "添加會員",
2481
"xloc": [
2475
- "default.handlebars->27->1784"
2482
+ "default.handlebars->27->1792"
2483
]
2484
},
2485
{
@@ -2564,7 +2571,7 @@
2571
"xloc": [
2572
"default.handlebars->27->1265",
2573
"default.handlebars->27->1364",
2567
- "default.handlebars->27->1760",
2574
+ "default.handlebars->27->1768",
2575
"default.handlebars->27->626"
2576
]
2577
},
@@ -2625,7 +2632,7 @@
2632
"zh-chs": "添加用戶",
2633
"xloc": [
2634
"default.handlebars->27->1264",
2628
- "default.handlebars->27->1631"
2635
+ "default.handlebars->27->1639"
2636
]
2637
},
2638
{
@@ -2659,7 +2666,7 @@
2666
"ru": "Добавить пользователей в группу",
2667
"zh-chs": "將用戶添加到用戶組",
2668
"xloc": [
2662
- "default.handlebars->27->1664"
2669
+ "default.handlebars->27->1672"
2670
]
2671
},
2672
{
@@ -2872,7 +2879,7 @@
2879
"ru": "Области администратора",
2880
"zh-chs": "管理領域",
2881
"xloc": [
2875
- "default.handlebars->27->1700"
2882
+ "default.handlebars->27->1708"
2883
]
2884
},
2885
{
@@ -2907,7 +2914,7 @@
2914
"ru": "Административные области",
2915
"zh-chs": "行政領域",
2916
"xloc": [
2910
- "default.handlebars->27->1582"
2917
+ "default.handlebars->27->1590"
2918
]
2919
},
2920
{
@@ -3035,7 +3042,7 @@
3042
"ru": "Счетчик ошибок агента",
3043
"zh-chs": "座席錯誤計數器",
3044
"xloc": [
3038
- "default.handlebars->27->1825"
3045
+ "default.handlebars->27->1837"
3046
]
3047
},
3048
{
@@ -3111,7 +3118,7 @@
3118
"ru": "Сессии агентов",
3119
"zh-chs": "座席會議",
3120
"xloc": [
3114
- "default.handlebars->27->1841"
3121
+ "default.handlebars->27->1853"
3122
]
3123
},
3124
{
@@ -3234,7 +3241,7 @@
3241
"ru": "Агенты",
3242
"zh-chs": "代理商",
3243
"xloc": [
3237
- "default.handlebars->27->1854"
3244
+ "default.handlebars->27->1866"
3245
]
3246
},
3247
{
@@ -3335,7 +3342,7 @@
3342
"zh-chs": "允許用戶管理此設備組和該組中的設備。",
3343
"xloc": [
3344
"default.handlebars->27->1331",
3338
- "default.handlebars->27->1661"
3345
+ "default.handlebars->27->1669"
3346
]
3347
},
3348
{
@@ -3440,7 +3447,7 @@
3447
"zh-chs": "始終通知",
3448
"xloc": [
3449
"default.handlebars->27->1245",
3443
- "default.handlebars->27->1709",
3450
+ "default.handlebars->27->1717",
3451
"default.handlebars->27->568"
3452
]
3453
},
@@ -3459,7 +3466,7 @@
3466
"zh-chs": "總是提示",
3467
"xloc": [
3468
"default.handlebars->27->1246",
3462
- "default.handlebars->27->1710",
3469
+ "default.handlebars->27->1718",
3470
"default.handlebars->27->569"
3471
]
3472
},
@@ -4069,7 +4076,7 @@
4076
"ru": "Вы уверенны, что {0} плагин: {1}",
4077
"zh-chs": "您確定要{0}插件嗎:{1}",
4078
"xloc": [
4072
- "default.handlebars->27->1894"
4079
+ "default.handlebars->27->1906"
4080
]
4081
},
4082
{
@@ -4165,7 +4172,7 @@
4172
"ru": "Приложение аутентификации",
4173
"zh-chs": "身份驗證應用",
4174
"xloc": [
4168
- "default.handlebars->27->1713"
4175
+ "default.handlebars->27->1721"
4176
]
4177
},
4178
{
@@ -4482,7 +4489,7 @@
4489
"ru": "Резервные коды",
4490
"zh-chs": "備用碼",
4491
"xloc": [
4485
- "default.handlebars->27->1715"
4492
+ "default.handlebars->27->1723"
4493
]
4494
},
4495
{
@@ -4499,7 +4506,7 @@
4506
"ru": "Плохой ключ",
4507
"zh-chs": "錯誤的簽名",
4508
"xloc": [
4502
- "default.handlebars->27->1832"
4509
+ "default.handlebars->27->1844"
4510
]
4511
},
4512
{
@@ -4516,7 +4523,7 @@
4523
"ru": "Плохой веб-сертификат",
4524
"zh-chs": "錯誤的網絡證書",
4525
"xloc": [
4519
- "default.handlebars->27->1831"
4526
+ "default.handlebars->27->1843"
4527
]
4528
},
4529
{
@@ -4654,7 +4661,7 @@
4661
"ru": "Отправить сообщение",
4662
"zh-chs": "廣播",
4663
"xloc": [
4657
- "default.handlebars->27->1629",
4664
+ "default.handlebars->27->1637",
4665
"default.handlebars->container->column_l->p4->3->1->0->3->1"
4666
]
4667
},
@@ -4672,7 +4679,7 @@
4679
"ru": "Отправить сообщение",
4680
"zh-chs": "廣播消息",
4681
"xloc": [
4675
- "default.handlebars->27->1564"
4682
+ "default.handlebars->27->1572"
4683
]
4684
},
4685
{
@@ -4689,7 +4696,7 @@
4696
"ru": "Отправить сообщение всем подключенным пользователям.",
4697
"zh-chs": "向所有連接的用戶廣播消息。",
4698
"xloc": [
4692
- "default.handlebars->27->1563"
4699
+ "default.handlebars->27->1567"
4700
]
4701
},
4702
{
@@ -4779,7 +4786,7 @@
4786
"ru": "CIRA Сервер",
4787
"zh-chs": "CIRA服務器",
4788
"xloc": [
4782
- "default.handlebars->27->1882"
4789
+ "default.handlebars->27->1894"
4790
]
4791
},
4792
{
@@ -4796,7 +4803,7 @@
4803
"ru": "CIRA Сервер команды",
4804
"zh-chs": "CIRA服務器命令",
4805
"xloc": [
4799
- "default.handlebars->27->1883"
4806
+ "default.handlebars->27->1895"
4807
]
4808
},
4809
{
@@ -4830,7 +4837,7 @@
4837
"ru": "Загрузка CPU",
4838
"zh-chs": "CPU負載",
4839
"xloc": [
4833
- "default.handlebars->27->1846"
4840
+ "default.handlebars->27->1858"
4841
]
4842
},
4843
{
@@ -4847,7 +4854,7 @@
4854
"ru": "Загрузка CPU за последние 15 минут",
4855
"zh-chs": "最近15分鐘的CPU負載",
4856
"xloc": [
4850
- "default.handlebars->27->1849"
4857
+ "default.handlebars->27->1861"
4858
]
4859
},
4860
{
@@ -4864,7 +4871,7 @@
4871
"ru": "Загрузка CPU за последние 5 минут",
4872
"zh-chs": "最近5分鐘的CPU負載",
4873
"xloc": [
4867
- "default.handlebars->27->1848"
4874
+ "default.handlebars->27->1860"
4875
]
4876
},
4877
{
@@ -4881,7 +4888,7 @@
4888
"ru": "Загрузка CPU за последнюю минуту",
4889
"zh-chs": "最後一分鐘的CPU負載",
4890
"xloc": [
4884
- "default.handlebars->27->1847"
4891
+ "default.handlebars->27->1859"
4892
]
4893
},
4894
{
@@ -4934,7 +4941,7 @@
4941
"zh-chs": "CSV格式",
4942
"xloc": [
4943
"default.handlebars->27->1494",
4937
- "default.handlebars->27->1555",
4944
+ "default.handlebars->27->1559",
4945
"default.handlebars->27->453"
4946
]
4947
},
@@ -4952,7 +4959,7 @@
4959
"ru": "Ошибка вызова",
4960
"zh-chs": "通話錯誤",
4961
"xloc": [
4955
- "default.handlebars->27->1895"
4962
+ "default.handlebars->27->1907"
4963
]
4964
},
4965
{
@@ -5092,7 +5099,7 @@
5099
"ru": "Смена email для {0}",
5100
"zh-chs": "更改{0}的電子郵件",
5101
"xloc": [
5095
- "default.handlebars->27->1743"
5102
+ "default.handlebars->27->1751"
5103
]
5104
},
5105
{
@@ -5130,7 +5137,7 @@
5137
"xloc": [
5138
"default-mobile.handlebars->9->90",
5139
"default.handlebars->27->1190",
5133
- "default.handlebars->27->1730"
5140
+ "default.handlebars->27->1738"
5141
]
5142
},
5143
{
@@ -5147,14 +5154,14 @@
5154
"ru": "Смена пароля для {0}",
5155
"zh-chs": "更改{0}的密碼",
5156
"xloc": [
5150
- "default.handlebars->27->1750"
5157
+ "default.handlebars->27->1758"
5158
]
5159
},
5160
{
5161
"en": "Change Real Name for {0}",
5162
"nl": "Verander echte naam voor {0}",
5163
"xloc": [
5157
- "default.handlebars->27->1738"
5164
+ "default.handlebars->27->1746"
5165
]
5166
},
5167
{
@@ -5224,7 +5231,7 @@
5231
"ru": "Изменить пароль для этого пользователя",
5232
"zh-chs": "更改該用戶的密碼",
5233
"xloc": [
5227
- "default.handlebars->27->1729"
5234
+ "default.handlebars->27->1737"
5235
]
5236
},
5237
{
@@ -5436,7 +5443,7 @@
5443
"ru": "Проверка...",
5444
"zh-chs": "檢查...",
5445
"xloc": [
5439
- "default.handlebars->27->1889",
5446
+ "default.handlebars->27->1901",
5447
"default.handlebars->27->963"
5448
]
5449
},
@@ -5652,7 +5659,7 @@
5659
"nl": "Wis alle meldingen",
5660
"zh-chs": "全部清除",
5661
"xloc": [
5655
- "default.handlebars->27->1819"
5662
+ "default.handlebars->27->1831"
5663
]
5664
},
5665
{
@@ -5702,7 +5709,7 @@
5709
"ru": "Очистить это уведомление",
5710
"zh-chs": "清除此通知",
5711
"xloc": [
5705
- "default.handlebars->27->1818"
5712
+ "default.handlebars->27->1830"
5713
]
5714
},
5715
{
@@ -5778,7 +5785,7 @@
5785
"nl": "Klik hier om de gebruikersgroepsnaam te bewerken",
5786
"zh-chs": "单击此处编辑用户组名称",
5787
"xloc": [
5781
- "default.handlebars->27->1618"
5788
+ "default.handlebars->27->1626"
5789
]
5790
},
5791
{
@@ -5961,8 +5968,8 @@
5968
"ru": "Общие группы устройств",
5969
"zh-chs": "通用設備組",
5970
"xloc": [
5964
- "default.handlebars->27->1637",
5965
- "default.handlebars->27->1755"
5971
+ "default.handlebars->27->1645",
5972
+ "default.handlebars->27->1763"
5973
]
5974
},
5975
{
@@ -5979,8 +5986,8 @@
5986
"ru": "Общие устройства",
5987
"zh-chs": "通用設備",
5988
"xloc": [
5982
- "default.handlebars->27->1643",
5983
- "default.handlebars->27->1767"
5989
+ "default.handlebars->27->1651",
5990
+ "default.handlebars->27->1775"
5991
]
5992
},
5993
{
@@ -6019,9 +6026,9 @@
6026
"default-mobile.handlebars->9->402",
6027
"default.handlebars->27->1310",
6028
"default.handlebars->27->1539",
6022
- "default.handlebars->27->1608",
6023
- "default.handlebars->27->1657",
6024
- "default.handlebars->27->1753",
6029
+ "default.handlebars->27->1616",
6030
+ "default.handlebars->27->1665",
6031
+ "default.handlebars->27->1761",
6032
"default.handlebars->27->437",
6033
"default.handlebars->27->706",
6034
"default.handlebars->27->715"
@@ -6105,7 +6112,7 @@
6112
"nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?",
6113
"zh-chs": "确认删除选定的用户组?",
6114
"xloc": [
6108
- "default.handlebars->27->1607"
6115
+ "default.handlebars->27->1615"
6116
]
6117
},
6118
{
@@ -6122,7 +6129,7 @@
6129
"ru": "Подтвердить удаление пользователя {0}?",
6130
"zh-chs": "確認刪除用戶{0}?",
6131
"xloc": [
6125
- "default.handlebars->27->1752"
6132
+ "default.handlebars->27->1760"
6133
]
6134
},
6135
{
@@ -6136,7 +6143,7 @@
6143
"nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?",
6144
"zh-chs": "确认删除用户\\“ {0} \\”的成员身份?",
6145
"xloc": [
6139
- "default.handlebars->27->1660"
6146
+ "default.handlebars->27->1668"
6147
]
6148
},
6149
{
@@ -6150,7 +6157,7 @@
6157
"nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?",
6158
"zh-chs": "确认删除用户组 “{0}” 的成员身份?",
6159
"xloc": [
6153
- "default.handlebars->27->1782"
6160
+ "default.handlebars->27->1790"
6161
]
6162
},
6163
{
@@ -6217,8 +6224,8 @@
6224
"nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?",
6225
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
6226
"xloc": [
6220
- "default.handlebars->27->1650",
6221
- "default.handlebars->27->1773"
6227
+ "default.handlebars->27->1658",
6228
+ "default.handlebars->27->1781"
6229
]
6230
},
6231
{
@@ -6232,8 +6239,8 @@
6239
"nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?",
6240
"zh-chs": "是否确认删除设备组“ {0}”的访问权限?",
6241
"xloc": [
6235
- "default.handlebars->27->1652",
6236
- "default.handlebars->27->1786"
6242
+ "default.handlebars->27->1660",
6243
+ "default.handlebars->27->1794"
6244
]
6245
},
6246
{
@@ -6247,7 +6254,7 @@
6254
"nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?",
6255
"zh-chs": "确认删除用户\\“ {0} \\”的访问权限?",
6256
"xloc": [
6250
- "default.handlebars->27->1775"
6257
+ "default.handlebars->27->1783"
6258
]
6259
},
6260
{
@@ -6261,7 +6268,7 @@
6268
"nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?",
6269
"zh-chs": "确认删除用户组“ {0}”的访问权限?",
6270
"xloc": [
6264
- "default.handlebars->27->1778"
6271
+ "default.handlebars->27->1786"
6272
]
6273
},
6274
{
@@ -6275,8 +6282,8 @@
6282
"nl": "Verwijdering van toegangsrechten bevestigen?",
6283
"zh-chs": "确认删除访问权限?",
6284
"xloc": [
6278
- "default.handlebars->27->1776",
6279
- "default.handlebars->27->1779"
6285
+ "default.handlebars->27->1784",
6286
+ "default.handlebars->27->1787"
6287
]
6288
},
6289
{
@@ -6524,7 +6531,7 @@
6531
"ru": "Подключено Intel® AMT",
6532
"zh-chs": "連接的英特爾®AMT",
6533
"xloc": [
6527
- "default.handlebars->27->1837"
6534
+ "default.handlebars->27->1849"
6535
]
6536
},
6537
{
@@ -6541,7 +6548,7 @@
6548
"ru": "Подключенные пользователи",
6549
"zh-chs": "關聯用戶",
6550
"xloc": [
6544
- "default.handlebars->27->1842"
6551
+ "default.handlebars->27->1854"
6552
]
6553
},
6554
{
@@ -6618,7 +6625,7 @@
6625
"ru": "Подключений ",
6626
"zh-chs": "連接數",
6627
"xloc": [
6621
- "default.handlebars->27->1853"
6628
+ "default.handlebars->27->1865"
6629
]
6630
},
6631
{
@@ -6635,7 +6642,7 @@
6642
"ru": "Ретранслятор подключения",
6643
"zh-chs": "連接繼電器",
6644
"xloc": [
6638
- "default.handlebars->27->1881"
6645
+ "default.handlebars->27->1893"
6646
]
6647
},
6648
{
@@ -6763,7 +6770,7 @@
6770
"ru": "Cookie-кодировщик",
6771
"zh-chs": "Cookie編碼器",
6772
"xloc": [
6766
- "default.handlebars->27->1867"
6773
+ "default.handlebars->27->1879"
6774
]
6775
},
6776
{
@@ -7075,7 +7082,7 @@
7082
"ru": "Основной сервер",
7083
"zh-chs": "核心服務器",
7084
"xloc": [
7078
- "default.handlebars->27->1866"
7085
+ "default.handlebars->27->1878"
7086
]
7087
},
7088
{
@@ -7109,7 +7116,7 @@
7116
"ru": "Создать учетную запись",
7117
"zh-chs": "創建帳號",
7118
"xloc": [
7112
- "default.handlebars->27->1578",
7119
+ "default.handlebars->27->1586",
7120
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
7121
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
7122
]
@@ -7145,7 +7152,7 @@
7152
"ru": "Создать группу пользователей",
7153
"zh-chs": "創建用戶組",
7154
"xloc": [
7148
- "default.handlebars->27->1615"
7155
+ "default.handlebars->27->1623"
7156
]
7157
},
7158
{
@@ -7196,7 +7203,7 @@
7203
"ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:",
7204
"zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:",
7205
"xloc": [
7199
- "default.handlebars->27->1546"
7206
+ "default.handlebars->27->1550"
7207
]
7208
},
7209
{
@@ -7231,7 +7238,7 @@
7238
"ru": "Создано",
7239
"zh-chs": "創建",
7240
"xloc": [
7234
- "default.handlebars->27->1689"
7241
+ "default.handlebars->27->1697"
7242
]
7243
},
7244
{
@@ -7552,10 +7559,10 @@
7559
"en": "Default",
7560
"nl": "Standaard",
7561
"xloc": [
7555
- "default.handlebars->27->1565",
7556
- "default.handlebars->27->1611",
7557
- "default.handlebars->27->1622",
7558
- "default.handlebars->27->1678"
7562
+ "default.handlebars->27->1573",
7563
+ "default.handlebars->27->1619",
7564
+ "default.handlebars->27->1630",
7565
+ "default.handlebars->27->1686"
7566
]
7567
},
7568
{
@@ -7706,7 +7713,7 @@
7713
"ru": "Удалить пользователя",
7714
"zh-chs": "刪除用戶",
7715
"xloc": [
7709
- "default.handlebars->27->1728"
7716
+ "default.handlebars->27->1736"
7717
]
7718
},
7719
{
@@ -7723,8 +7730,8 @@
7730
"ru": "Удалить группу пользователей",
7731
"zh-chs": "刪除用戶組",
7732
"xloc": [
7726
- "default.handlebars->27->1648",
7727
- "default.handlebars->27->1658"
7733
+ "default.handlebars->27->1656",
7734
+ "default.handlebars->27->1666"
7735
]
7736
},
7737
{
@@ -7738,7 +7745,7 @@
7745
"nl": "Gebruikersgroepen verwijderen",
7746
"zh-chs": "删除用户组",
7747
"xloc": [
7741
- "default.handlebars->27->1609"
7748
+ "default.handlebars->27->1617"
7749
]
7750
},
7751
{
@@ -7755,7 +7762,7 @@
7762
"ru": "Удалить пользователя {0}",
7763
"zh-chs": "刪除用戶{0}",
7764
"xloc": [
7758
- "default.handlebars->27->1751"
7765
+ "default.handlebars->27->1759"
7766
]
7767
},
7768
{
@@ -7805,7 +7812,7 @@
7812
"nl": "Verwijder groep",
7813
"zh-chs": "删除群组",
7814
"xloc": [
7808
- "default.handlebars->27->1605"
7815
+ "default.handlebars->27->1613"
7816
]
7817
},
7818
{
@@ -7859,7 +7866,7 @@
7866
"ru": "Удалить группу пользователей {0}?",
7867
"zh-chs": "刪除用戶組{0}?",
7868
"xloc": [
7862
- "default.handlebars->27->1656"
7869
+ "default.handlebars->27->1664"
7870
]
7871
},
7872
{
@@ -7996,10 +8003,10 @@
8003
"default.handlebars->27->1202",
8004
"default.handlebars->27->1230",
8005
"default.handlebars->27->1313",
7999
- "default.handlebars->27->1614",
8000
- "default.handlebars->27->1624",
8001
- "default.handlebars->27->1625",
8002
- "default.handlebars->27->1654",
8006
+ "default.handlebars->27->1622",
8007
+ "default.handlebars->27->1632",
8008
+ "default.handlebars->27->1633",
8009
+ "default.handlebars->27->1662",
8010
"default.handlebars->27->527",
8011
"default.handlebars->27->528",
8012
"default.handlebars->27->749",
@@ -8039,7 +8046,7 @@
8046
"xloc": [
8047
"default-mobile.handlebars->9->256",
8048
"default.handlebars->27->1318",
8042
- "default.handlebars->27->1796",
8049
+ "default.handlebars->27->1808",
8050
"default.handlebars->27->492",
8051
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
8052
"default.handlebars->contextMenu->cxdesktop"
@@ -8077,7 +8084,7 @@
8084
"zh-chs": "桌面通知",
8085
"xloc": [
8086
"default.handlebars->27->1240",
8080
- "default.handlebars->27->1704",
8087
+ "default.handlebars->27->1712",
8088
"default.handlebars->27->563"
8089
]
8090
},
@@ -8096,7 +8103,7 @@
8103
"zh-chs": "桌面提示",
8104
"xloc": [
8105
"default.handlebars->27->1239",
8099
- "default.handlebars->27->1703",
8106
+ "default.handlebars->27->1711",
8107
"default.handlebars->27->562"
8108
]
8109
},
@@ -8115,7 +8122,7 @@
8122
"zh-chs": "桌面提示+工具欄",
8123
"xloc": [
8124
"default.handlebars->27->1237",
8118
- "default.handlebars->27->1701",
8125
+ "default.handlebars->27->1709",
8126
"default.handlebars->27->560"
8127
]
8128
},
@@ -8148,7 +8155,7 @@
8155
"zh-chs": "桌面工具欄",
8156
"xloc": [
8157
"default.handlebars->27->1238",
8151
- "default.handlebars->27->1702",
8158
+ "default.handlebars->27->1710",
8159
"default.handlebars->27->561"
8160
]
8161
},
@@ -8221,7 +8228,7 @@
8228
"zh-chs": "設備",
8229
"xloc": [
8230
"default.handlebars->27->1340",
8224
- "default.handlebars->27->1770",
8231
+ "default.handlebars->27->1778",
8232
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
8233
]
8234
},
@@ -8261,10 +8268,10 @@
8268
"default.handlebars->27->1338",
8269
"default.handlebars->27->1339",
8270
"default.handlebars->27->1487",
8264
- "default.handlebars->27->1640",
8265
- "default.handlebars->27->1646",
8266
- "default.handlebars->27->1758",
8267
- "default.handlebars->27->1805"
8271
+ "default.handlebars->27->1648",
8272
+ "default.handlebars->27->1654",
8273
+ "default.handlebars->27->1766",
8274
+ "default.handlebars->27->1817"
8275
]
8276
},
8277
{
@@ -8301,10 +8308,10 @@
8308
"xloc": [
8309
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
8310
"default.handlebars->27->1503",
8304
- "default.handlebars->27->1599",
8305
- "default.handlebars->27->1627",
8306
- "default.handlebars->27->1698",
8307
- "default.handlebars->27->1840",
8311
+ "default.handlebars->27->1607",
8312
+ "default.handlebars->27->1635",
8313
+ "default.handlebars->27->1706",
8314
+ "default.handlebars->27->1852",
8315
"default.handlebars->container->column_l->p2->p2info->7"
8316
]
8317
},
@@ -8365,7 +8372,7 @@
8372
"zh-chs": "設備名稱",
8373
"xloc": [
8374
"default-mobile.handlebars->9->278",
8368
- "default.handlebars->27->1804",
8375
+ "default.handlebars->27->1816",
8376
"default.handlebars->27->269",
8377
"default.handlebars->27->747",
8378
"player.handlebars->3->9"
@@ -8455,7 +8462,7 @@
8462
"ru": "Примечания могут быть просмотрены и изменены другими администраторами.",
8463
"zh-chs": "其他設備組管理員可以查看和更改設備組註釋。",
8464
"xloc": [
8458
- "default.handlebars->27->671"
8465
+ "default.handlebars->27->670"
8466
]
8467
},
8468
{
@@ -8765,8 +8772,8 @@
8772
"nl": "Apparaten",
8773
"zh-chs": "设备",
8774
"xloc": [
8768
- "default.handlebars->27->1600",
8769
- "default.handlebars->27->1628"
8775
+ "default.handlebars->27->1608",
8776
+ "default.handlebars->27->1636"
8777
]
8778
},
8779
{
@@ -8958,10 +8965,10 @@
8965
"en": "Domain",
8966
"nl": "Domein",
8967
"xloc": [
8961
- "default.handlebars->27->1566",
8962
- "default.handlebars->27->1612",
8963
- "default.handlebars->27->1621",
8964
- "default.handlebars->27->1677",
8968
+ "default.handlebars->27->1574",
8969
+ "default.handlebars->27->1620",
8970
+ "default.handlebars->27->1629",
8971
+ "default.handlebars->27->1685",
8972
"mstsc.handlebars->main->1->3->1->2->1->0",
8973
"mstsc.handlebars->main->1->3->1->2->3"
8974
]
@@ -9337,7 +9344,7 @@
9344
"ru": "Скачать список пользователей в одном из форматов ниже.",
9345
"zh-chs": "使用以下一種文件格式下載用戶列表。",
9346
"xloc": [
9340
- "default.handlebars->27->1554"
9347
+ "default.handlebars->27->1558"
9348
]
9349
},
9350
{
@@ -9420,7 +9427,7 @@
9427
"nl": "Dubbele agent",
9428
"zh-chs": "代理重复",
9429
"xloc": [
9423
- "default.handlebars->27->1836"
9430
+ "default.handlebars->27->1848"
9431
]
9432
},
9433
{
@@ -9454,7 +9461,7 @@
9461
"ru": "Скопировать группу пользователей",
9462
"zh-chs": "重複的用戶組",
9463
"xloc": [
9457
- "default.handlebars->27->1616"
9464
+ "default.handlebars->27->1624"
9465
]
9466
},
9467
{
@@ -9485,8 +9492,8 @@
9492
"ru": "Длительность",
9493
"zh-chs": "持續時間",
9494
"xloc": [
9488
- "default.handlebars->27->1790",
9489
- "default.handlebars->27->1810",
9495
+ "default.handlebars->27->1802",
9496
+ "default.handlebars->27->1822",
9497
"player.handlebars->3->2"
9498
]
9499
},
@@ -9977,7 +9984,7 @@
9984
"ru": "Редактировать группу пользователей",
9985
"zh-chs": "編輯用戶組",
9986
"xloc": [
9980
- "default.handlebars->27->1655"
9987
+ "default.handlebars->27->1663"
9988
]
9989
},
9990
{
@@ -10032,11 +10039,11 @@
10039
"zh-chs": "電子郵件",
10040
"xloc": [
10041
"default-mobile.handlebars->9->78",
10035
- "default.handlebars->27->1568",
10036
- "default.handlebars->27->1681",
10037
- "default.handlebars->27->1683",
10038
- "default.handlebars->27->1723",
10039
- "default.handlebars->27->1739",
10042
+ "default.handlebars->27->1576",
10043
+ "default.handlebars->27->1689",
10044
+ "default.handlebars->27->1691",
10045
+ "default.handlebars->27->1731",
10046
+ "default.handlebars->27->1747",
10047
"default.handlebars->27->319",
10048
"login-mobile.handlebars->5->42",
10049
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -10170,7 +10177,7 @@
10177
"zh-chs": "電子郵件已驗證",
10178
"xloc": [
10179
"default.handlebars->27->1523",
10173
- "default.handlebars->27->1675"
10180
+ "default.handlebars->27->1683"
10181
]
10182
},
10183
{
@@ -10187,7 +10194,7 @@
10194
"ru": "Email подтвержден.",
10195
"zh-chs": "電子郵件已驗證。",
10196
"xloc": [
10190
- "default.handlebars->27->1574"
10197
+ "default.handlebars->27->1582"
10198
]
10199
},
10200
{
@@ -10204,7 +10211,7 @@
10211
"ru": "Email не подтвержден",
10212
"zh-chs": "電子郵件未驗證",
10213
"xloc": [
10207
- "default.handlebars->27->1676"
10214
+ "default.handlebars->27->1684"
10215
]
10216
},
10217
{
@@ -10243,7 +10250,7 @@
10250
"en": "Email verified and forced password reset required.",
10251
"nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.",
10252
"xloc": [
10246
- "default.handlebars->27->1575"
10253
+ "default.handlebars->27->1583"
10254
]
10255
},
10256
{
@@ -10256,7 +10263,7 @@
10263
"nl": "Email/SMS verkeer",
10264
"zh-chs": "电子邮件/短信流量",
10265
"xloc": [
10259
- "default.handlebars->27->1875"
10266
+ "default.handlebars->27->1887"
10267
]
10268
},
10269
{
@@ -10354,7 +10361,7 @@
10361
"en": "Enabled",
10362
"nl": "Ingeschakeld",
10363
"xloc": [
10357
- "default.handlebars->27->1812"
10364
+ "default.handlebars->27->1824"
10365
]
10366
},
10367
{
@@ -10378,7 +10385,7 @@
10385
"en": "End Time",
10386
"nl": "Eindtijd",
10387
"xloc": [
10381
- "default.handlebars->27->1809"
10388
+ "default.handlebars->27->1821"
10389
]
10390
},
10391
{
@@ -10634,7 +10641,7 @@
10641
"ru": "Введите разделенный запятыми список имен административных областей.",
10642
"zh-chs": "輸入管理領域名稱的逗號分隔列表。",
10643
"xloc": [
10637
- "default.handlebars->27->1579"
10644
+ "default.handlebars->27->1587"
10645
]
10646
},
10647
{
@@ -10941,7 +10948,7 @@
10948
"ru": "Внешний",
10949
"zh-chs": "外部",
10950
"xloc": [
10944
- "default.handlebars->27->1860"
10951
+ "default.handlebars->27->1872"
10952
]
10953
},
10954
{
@@ -11154,7 +11161,7 @@
11161
"default-mobile.handlebars->9->167",
11162
"default-mobile.handlebars->9->257",
11163
"default.handlebars->27->1325",
11157
- "default.handlebars->27->1797",
11164
+ "default.handlebars->27->1809",
11165
"default.handlebars->27->236",
11166
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
11167
"default.handlebars->contextMenu->cxfiles"
@@ -11192,7 +11199,7 @@
11199
"zh-chs": "文件通知",
11200
"xloc": [
11201
"default.handlebars->27->1244",
11195
- "default.handlebars->27->1708",
11202
+ "default.handlebars->27->1716",
11203
"default.handlebars->27->567"
11204
]
11205
},
@@ -11211,7 +11218,7 @@
11218
"zh-chs": "文件提示",
11219
"xloc": [
11220
"default.handlebars->27->1243",
11214
- "default.handlebars->27->1707",
11221
+ "default.handlebars->27->1715",
11222
"default.handlebars->27->566"
11223
]
11224
},
@@ -11372,8 +11379,8 @@
11379
"ru": "Принудительно сбросить пароль при следующем входе в систему.",
11380
"zh-chs": "下次登錄時強制重置密碼。",
11381
"xloc": [
11375
- "default.handlebars->27->1573",
11376
- "default.handlebars->27->1748"
11382
+ "default.handlebars->27->1581",
11383
+ "default.handlebars->27->1756"
11384
]
11385
},
11386
{
@@ -11466,8 +11473,8 @@
11473
"ru": "Свободно",
11474
"zh-chs": "自由",
11475
"xloc": [
11469
- "default.handlebars->27->1821",
11470
- "default.handlebars->27->1823"
11476
+ "default.handlebars->27->1833",
11477
+ "default.handlebars->27->1835"
11478
]
11479
},
11480
{
@@ -11661,7 +11668,7 @@
11668
"default-mobile.handlebars->9->425",
11669
"default.handlebars->27->1211",
11670
"default.handlebars->27->1343",
11664
- "default.handlebars->27->1585"
11671
+ "default.handlebars->27->1593"
11672
]
11673
},
11674
{
@@ -11761,7 +11768,7 @@
11768
"ru": "Администратор с полным доступом",
11769
"zh-chs": "正式管理員",
11770
"xloc": [
11764
- "default.handlebars->27->1669"
11771
+ "default.handlebars->27->1677"
11772
]
11773
},
11774
{
@@ -12193,7 +12200,7 @@
12200
"zh-chs": "集體行動",
12201
"xloc": [
12202
"default.handlebars->27->1537",
12196
- "default.handlebars->27->1606",
12203
+ "default.handlebars->27->1614",
12204
"default.handlebars->27->435",
12205
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
12206
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -12211,7 +12218,7 @@
12218
"en": "Group Identifier",
12219
"nl": "Groepsidentificatie",
12220
"xloc": [
12214
- "default.handlebars->27->1623"
12221
+ "default.handlebars->27->1631"
12222
]
12223
},
12224
{
@@ -12228,7 +12235,7 @@
12235
"ru": "Члены группы",
12236
"zh-chs": "小組成員",
12237
"xloc": [
12231
- "default.handlebars->27->1632"
12238
+ "default.handlebars->27->1640"
12239
]
12240
},
12241
{
@@ -12400,7 +12407,7 @@
12407
"ru": "Всего кучи",
12408
"zh-chs": "堆總數",
12409
"xloc": [
12403
- "default.handlebars->27->1862"
12410
+ "default.handlebars->27->1874"
12411
]
12412
},
12413
{
@@ -12417,7 +12424,7 @@
12424
"ru": "Куча используется",
12425
"zh-chs": "堆使用",
12426
"xloc": [
12420
- "default.handlebars->27->1861"
12427
+ "default.handlebars->27->1873"
12428
]
12429
},
12430
{
@@ -13255,8 +13262,8 @@
13262
"xloc": [
13263
"default.handlebars->27->1427",
13264
"default.handlebars->27->1435",
13258
- "default.handlebars->27->1858",
13259
- "default.handlebars->27->1880"
13265
+ "default.handlebars->27->1870",
13266
+ "default.handlebars->27->1892"
13267
]
13268
},
13269
{
@@ -13297,14 +13304,14 @@
13304
"en": "Intel AMT Redirection",
13305
"nl": "Intel AMT omleiding",
13306
"xloc": [
13300
- "default.handlebars->27->1799"
13307
+ "default.handlebars->27->1811"
13308
]
13309
},
13310
{
13311
"en": "Intel AMT WSMAN",
13312
"nl": "Intel AMT WSMAN",
13313
"xloc": [
13307
- "default.handlebars->27->1798"
13314
+ "default.handlebars->27->1810"
13315
]
13316
},
13317
{
@@ -14002,7 +14009,7 @@
14009
"ru": "Некорректный тип группы устройств",
14010
"zh-chs": "無效的設備組類型",
14011
"xloc": [
14005
- "default.handlebars->27->1835"
14012
+ "default.handlebars->27->1847"
14013
]
14014
},
14015
{
@@ -14019,7 +14026,7 @@
14026
"ru": "Некорректный JSON",
14027
"zh-chs": "無效的JSON",
14028
"xloc": [
14022
- "default.handlebars->27->1829"
14029
+ "default.handlebars->27->1841"
14030
]
14031
},
14032
{
@@ -14036,8 +14043,8 @@
14043
"ru": "Некорректный формат файла JSON.",
14044
"zh-chs": "無效的JSON文件格式。",
14045
"xloc": [
14039
- "default.handlebars->27->1551",
14040
- "default.handlebars->27->1553"
14046
+ "default.handlebars->27->1555",
14047
+ "default.handlebars->27->1557"
14048
]
14049
},
14050
{
@@ -14054,7 +14061,7 @@
14061
"ru": "Некорректный файл JSON: {0}.",
14062
"zh-chs": "無效的JSON文件:{0}。",
14063
"xloc": [
14057
- "default.handlebars->27->1549"
14064
+ "default.handlebars->27->1553"
14065
]
14066
},
14067
{
@@ -14071,7 +14078,7 @@
14078
"ru": "Некорректная сигнатура PKCS",
14079
"zh-chs": "無效的PKCS簽名",
14080
"xloc": [
14074
- "default.handlebars->27->1827"
14081
+ "default.handlebars->27->1839"
14082
]
14083
},
14084
{
@@ -14088,7 +14095,7 @@
14095
"ru": "Некорректная сигнатура RSA",
14096
"zh-chs": "無效的RSA密碼",
14097
"xloc": [
14091
- "default.handlebars->27->1828"
14098
+ "default.handlebars->27->1840"
14099
]
14100
},
14101
{
@@ -14422,7 +14429,7 @@
14429
"zh-chs": "JSON格式",
14430
"xloc": [
14431
"default.handlebars->27->1496",
14425
- "default.handlebars->27->1557",
14432
+ "default.handlebars->27->1561",
14433
"default.handlebars->27->455"
14434
]
14435
},
@@ -14939,7 +14946,7 @@
14946
"ru": "Последний вход в систему",
14947
"zh-chs": "上次登錄",
14948
"xloc": [
14942
- "default.handlebars->27->1690"
14949
+ "default.handlebars->27->1698"
14950
]
14951
},
14952
{
@@ -15002,7 +15009,7 @@
15009
"ru": "Последнее изменение: {0}",
15010
"zh-chs": "上次更改:{0}",
15011
"xloc": [
15005
- "default.handlebars->27->1694"
15012
+ "default.handlebars->27->1702"
15013
]
15014
},
15015
{
@@ -15190,7 +15197,7 @@
15197
"nl": "Leeg laten voor geen.",
15198
"zh-chs": "一无所有。",
15199
"xloc": [
15193
- "default.handlebars->27->1734"
15200
+ "default.handlebars->27->1742"
15201
]
15202
},
15203
{
@@ -15229,7 +15236,7 @@
15236
"ru": "Меньше",
15237
"zh-chs": "減",
15238
"xloc": [
15232
- "default.handlebars->27->1897"
15239
+ "default.handlebars->27->1909"
15240
]
15241
},
15242
{
@@ -15660,6 +15667,7 @@
15667
"default-mobile.handlebars->9->72",
15668
"default.handlebars->27->1218",
15669
"default.handlebars->27->1222",
15670
+ "default.handlebars->27->1796",
15671
"default.handlebars->27->719",
15672
"default.handlebars->27->951"
15673
]
@@ -15782,7 +15790,7 @@
15790
"ru": "Заблокировать учетную запись",
15791
"zh-chs": "鎖定賬戶",
15792
"xloc": [
15785
- "default.handlebars->27->1592"
15793
+ "default.handlebars->27->1600"
15794
]
15795
},
15796
{
@@ -15833,7 +15841,7 @@
15841
"ru": "Заблокированная учетная запись",
15842
"zh-chs": "賬戶鎖定",
15843
"xloc": [
15836
- "default.handlebars->27->1666"
15844
+ "default.handlebars->27->1674"
15845
]
15846
},
15847
{
@@ -16351,7 +16359,7 @@
16359
"ru": "Сообщения главного сервера",
16360
"zh-chs": "主服務器消息",
16361
"xloc": [
16354
- "default.handlebars->27->1869"
16362
+ "default.handlebars->27->1881"
16363
]
16364
},
16365
{
@@ -16483,7 +16491,7 @@
16491
"en": "Manage Recordings",
16492
"nl": "Beheeer opnames",
16493
"xloc": [
16486
- "default.handlebars->27->1591"
16494
+ "default.handlebars->27->1599"
16495
]
16496
},
16497
{
@@ -16517,7 +16525,7 @@
16525
"ru": "Управление группами пользователя",
16526
"zh-chs": "管理用戶組",
16527
"xloc": [
16520
- "default.handlebars->27->1590"
16528
+ "default.handlebars->27->1598"
16529
]
16530
},
16531
{
@@ -16534,7 +16542,7 @@
16542
"ru": "Управление пользователями",
16543
"zh-chs": "管理用戶",
16544
"xloc": [
16537
- "default.handlebars->27->1589",
16545
+ "default.handlebars->27->1597",
16546
"default.handlebars->27->651"
16547
]
16548
},
@@ -16777,7 +16785,7 @@
16785
"ru": "Достигнуто максимальное число сессий",
16786
"zh-chs": "達到的會話數上限",
16787
"xloc": [
16780
- "default.handlebars->27->1833"
16788
+ "default.handlebars->27->1845"
16789
]
16790
},
16791
{
@@ -16831,7 +16839,7 @@
16839
"ru": "Мегабайт",
16840
"zh-chs": "兆字節",
16841
"xloc": [
16834
- "default.handlebars->27->1859"
16842
+ "default.handlebars->27->1871"
16843
]
16844
},
16845
{
@@ -16849,7 +16857,7 @@
16857
"zh-chs": "記憶",
16858
"xloc": [
16859
"default-mobile.handlebars->9->381",
16852
- "default.handlebars->27->1850",
16860
+ "default.handlebars->27->1862",
16861
"default.handlebars->27->917",
16862
"default.handlebars->container->column_l->p40->3->1->p40type->3"
16863
]
@@ -16987,7 +16995,7 @@
16995
"ru": "Трафик MeshAgent",
16996
"zh-chs": "MeshAgent流量",
16997
"xloc": [
16990
- "default.handlebars->27->1871"
16998
+ "default.handlebars->27->1883"
16999
]
17000
},
17001
{
@@ -17004,7 +17012,7 @@
17012
"ru": "Обновление MeshAgent",
17013
"zh-chs": "MeshAgent更新",
17014
"xloc": [
17007
- "default.handlebars->27->1872"
17015
+ "default.handlebars->27->1884"
17016
]
17017
},
17018
{
@@ -17107,7 +17115,7 @@
17115
"ru": "Соединения сервера MeshCentral",
17116
"zh-chs": "MeshCentral服務器對等",
17117
"xloc": [
17110
- "default.handlebars->27->1870"
17118
+ "default.handlebars->27->1882"
17119
]
17120
},
17121
{
@@ -17371,7 +17379,7 @@
17379
"ru": "Диспетчер сообщения",
17380
"zh-chs": "郵件調度程序",
17381
"xloc": [
17374
- "default.handlebars->27->1868"
17382
+ "default.handlebars->27->1880"
17383
]
17384
},
17385
{
@@ -17520,7 +17528,7 @@
17528
"ru": "Еще",
17529
"zh-chs": "更多",
17530
"xloc": [
17523
- "default.handlebars->27->1896"
17531
+ "default.handlebars->27->1908"
17532
]
17533
},
17534
{
@@ -17596,7 +17604,7 @@
17604
"en": "Multiplexor",
17605
"nl": "Multiplexor",
17606
"xloc": [
17599
- "default.handlebars->27->1811"
17607
+ "default.handlebars->27->1823"
17608
]
17609
},
17610
{
@@ -17868,11 +17876,11 @@
17876
"default.handlebars->27->1229",
17877
"default.handlebars->27->1312",
17878
"default.handlebars->27->1502",
17871
- "default.handlebars->27->1597",
17872
- "default.handlebars->27->1613",
17873
- "default.handlebars->27->1620",
17874
- "default.handlebars->27->1653",
17875
- "default.handlebars->27->1672",
17879
+ "default.handlebars->27->1605",
17880
+ "default.handlebars->27->1621",
17881
+ "default.handlebars->27->1628",
17882
+ "default.handlebars->27->1661",
17883
+ "default.handlebars->27->1680",
17884
"default.handlebars->27->517",
17885
"default.handlebars->27->76",
17886
"default.handlebars->27->778",
@@ -17915,7 +17923,7 @@
17923
"ru": "Имя1, Имя2, Имя3",
17924
"zh-chs": "名稱1,名稱2,名稱3",
17925
"xloc": [
17918
- "default.handlebars->27->1581"
17926
+ "default.handlebars->27->1589"
17927
]
17928
},
17929
{
@@ -18270,7 +18278,7 @@
18278
"zh-chs": "找不到活動",
18279
"xloc": [
18280
"default.handlebars->27->1478",
18273
- "default.handlebars->27->1787",
18281
+ "default.handlebars->27->1795",
18282
"default.handlebars->27->849"
18283
]
18284
},
@@ -18414,7 +18422,7 @@
18422
"ru": "Нет членов",
18423
"zh-chs": "沒有會員",
18424
"xloc": [
18417
- "default.handlebars->27->1635"
18425
+ "default.handlebars->27->1643"
18426
]
18427
},
18428
{
@@ -18431,7 +18439,7 @@
18439
"ru": "Запретить создание групп устройств",
18440
"zh-chs": "沒有新的設備組",
18441
"xloc": [
18434
- "default.handlebars->27->1593"
18442
+ "default.handlebars->27->1601"
18443
]
18444
},
18445
{
@@ -18547,7 +18555,7 @@
18555
"ru": "Нет инструментов (MeshCmd/Router)",
18556
"zh-chs": "沒有工具(MeshCmd /路由器)",
18557
"xloc": [
18550
- "default.handlebars->27->1594"
18558
+ "default.handlebars->27->1602"
18559
]
18560
},
18561
{
@@ -18564,8 +18572,8 @@
18572
"ru": "Нет общих групп устройств",
18573
"zh-chs": "沒有共同的設備組",
18574
"xloc": [
18567
- "default.handlebars->27->1641",
18568
- "default.handlebars->27->1759"
18575
+ "default.handlebars->27->1649",
18576
+ "default.handlebars->27->1767"
18577
]
18578
},
18579
{
@@ -18661,8 +18669,8 @@
18669
"ru": "Нет общих устройств",
18670
"zh-chs": "沒有共同的設備",
18671
"xloc": [
18664
- "default.handlebars->27->1647",
18665
- "default.handlebars->27->1771"
18672
+ "default.handlebars->27->1655",
18673
+ "default.handlebars->27->1779"
18674
]
18675
},
18676
{
@@ -18749,7 +18757,7 @@
18757
"ru": "Группы не найдены.",
18758
"zh-chs": "找不到群組。",
18759
"xloc": [
18752
- "default.handlebars->27->1596"
18760
+ "default.handlebars->27->1604"
18761
]
18762
},
18763
{
@@ -18838,6 +18846,12 @@
18846
"default.handlebars->container->column_l->p42->pluginNoneNotice->0"
18847
]
18848
},
18849
+ {
18850
+ "en": "No recordings.",
18851
+ "xloc": [
18852
+ "default.handlebars->27->1798"
18853
+ ]
18854
+ },
18855
{
18856
"cs": "Žádná práva k serveru",
18857
"de": "Keine Serverberechtigungen",
@@ -18852,7 +18866,7 @@
18866
"ru": "Нет серверных прав",
18867
"zh-chs": "沒有服務器權限",
18868
"xloc": [
18855
- "default.handlebars->27->1667"
18869
+ "default.handlebars->27->1675"
18870
]
18871
},
18872
{
@@ -18869,7 +18883,7 @@
18883
"ru": "Нет членства в группах пользователей",
18884
"zh-chs": "沒有用戶組成員身份",
18885
"xloc": [
18872
- "default.handlebars->27->1765"
18886
+ "default.handlebars->27->1773"
18887
]
18888
},
18889
{
@@ -18972,12 +18986,12 @@
18986
"default.handlebars->27->1429",
18987
"default.handlebars->27->1448",
18988
"default.handlebars->27->1486",
18975
- "default.handlebars->27->1617",
18976
- "default.handlebars->27->1619",
18977
- "default.handlebars->27->1686",
18978
- "default.handlebars->27->1695",
18979
- "default.handlebars->27->1699",
18980
- "default.handlebars->27->1711",
18989
+ "default.handlebars->27->1625",
18990
+ "default.handlebars->27->1627",
18991
+ "default.handlebars->27->1694",
18992
+ "default.handlebars->27->1703",
18993
+ "default.handlebars->27->1707",
18994
+ "default.handlebars->27->1719",
18995
"default.handlebars->27->174",
18996
"default.handlebars->27->190",
18997
"default.handlebars->27->191",
@@ -19138,7 +19152,7 @@
19152
"en": "Not on server",
19153
"nl": "Niet op de server",
19154
"xloc": [
19141
- "default.handlebars->27->1803"
19155
+ "default.handlebars->27->1815"
19156
]
19157
},
19158
{
@@ -19155,8 +19169,8 @@
19169
"ru": "Не задано",
19170
"zh-chs": "沒有設置",
19171
"xloc": [
19158
- "default.handlebars->27->1673",
19159
- "default.handlebars->27->1674"
19172
+ "default.handlebars->27->1681",
19173
+ "default.handlebars->27->1682"
19174
]
19175
},
19176
{
@@ -19173,7 +19187,7 @@
19187
"ru": "не подтверждено",
19188
"zh-chs": "未經審核的",
19189
"xloc": [
19176
- "default.handlebars->27->1741"
19190
+ "default.handlebars->27->1749"
19191
]
19192
},
19193
{
@@ -19191,11 +19205,11 @@
19205
"zh-chs": "筆記",
19206
"xloc": [
19207
"default.handlebars->27->1262",
19194
- "default.handlebars->27->1719",
19208
+ "default.handlebars->27->1727",
19209
"default.handlebars->27->586",
19210
"default.handlebars->27->644",
19211
"default.handlebars->27->663",
19198
- "default.handlebars->27->670"
19212
+ "default.handlebars->27->671"
19213
]
19214
},
19215
{
@@ -19299,7 +19313,7 @@
19313
"ru": "Уведомить",
19314
"zh-chs": "通知",
19315
"xloc": [
19302
- "default.handlebars->27->1725"
19316
+ "default.handlebars->27->1733"
19317
]
19318
},
19319
{
@@ -19335,7 +19349,7 @@
19349
"ru": "Уведомить {0}",
19350
"zh-chs": "通知{0}",
19351
"xloc": [
19338
- "default.handlebars->27->1544"
19352
+ "default.handlebars->27->1549"
19353
]
19354
},
19355
{
@@ -19413,7 +19427,7 @@
19427
"ru": "Произошло в {0}",
19428
"zh-chs": "發生在{0}",
19429
"xloc": [
19416
- "default.handlebars->27->1817"
19430
+ "default.handlebars->27->1829"
19431
]
19432
},
19433
{
@@ -19665,7 +19679,7 @@
19679
"xloc": [
19680
"default-mobile.handlebars->9->264",
19681
"default.handlebars->27->1533",
19668
- "default.handlebars->27->1604",
19682
+ "default.handlebars->27->1612",
19683
"default.handlebars->27->425",
19684
"default.handlebars->27->445",
19685
"default.handlebars->27->684"
@@ -19905,7 +19919,7 @@
19919
"ru": "Частичные права",
19920
"zh-chs": "部分權利",
19921
"xloc": [
19908
- "default.handlebars->27->1670"
19922
+ "default.handlebars->27->1678"
19923
]
19924
},
19925
{
@@ -19940,12 +19954,12 @@
19954
"zh-chs": "密碼",
19955
"xloc": [
19956
"default-mobile.handlebars->9->269",
19943
- "default.handlebars->27->1569",
19944
- "default.handlebars->27->1570",
19945
- "default.handlebars->27->1691",
19946
- "default.handlebars->27->1693",
19947
- "default.handlebars->27->1744",
19948
- "default.handlebars->27->1745",
19957
+ "default.handlebars->27->1577",
19958
+ "default.handlebars->27->1578",
19959
+ "default.handlebars->27->1699",
19960
+ "default.handlebars->27->1701",
19961
+ "default.handlebars->27->1752",
19962
+ "default.handlebars->27->1753",
19963
"default.handlebars->27->274",
19964
"default.handlebars->27->305",
19965
"default.handlebars->27->694",
@@ -20056,7 +20070,7 @@
20070
"ru": "Подсказка пароля",
20071
"zh-chs": "密碼提示",
20072
"xloc": [
20059
- "default.handlebars->27->1746"
20073
+ "default.handlebars->27->1754"
20074
]
20075
},
20076
{
@@ -20384,7 +20398,7 @@
20398
"default-mobile.handlebars->9->65",
20399
"default-mobile.handlebars->9->67",
20400
"default.handlebars->27->159",
20387
- "default.handlebars->27->1736",
20401
+ "default.handlebars->27->1744",
20402
"default.handlebars->27->943",
20403
"default.handlebars->27->946"
20404
]
@@ -20399,7 +20413,7 @@
20413
"nl": "Telefoonnummer",
20414
"zh-chs": "电话号码",
20415
"xloc": [
20402
- "default.handlebars->27->1685"
20416
+ "default.handlebars->27->1693"
20417
]
20418
},
20419
{
@@ -20413,7 +20427,7 @@
20427
"zh-chs": "电话号码:",
20428
"xloc": [
20429
"default-mobile.handlebars->9->66",
20416
- "default.handlebars->27->1735",
20430
+ "default.handlebars->27->1743",
20431
"default.handlebars->27->945"
20432
]
20433
},
@@ -20550,7 +20564,7 @@
20564
"zh-chs": "插件動作",
20565
"xloc": [
20566
"default.handlebars->27->185",
20553
- "default.handlebars->27->1893"
20567
+ "default.handlebars->27->1905"
20568
]
20569
},
20570
{
@@ -20868,7 +20882,7 @@
20882
"en": "Present on server",
20883
"nl": "Aanwezig op de server",
20884
"xloc": [
20871
- "default.handlebars->27->1802"
20885
+ "default.handlebars->27->1814"
20886
]
20887
},
20888
{
@@ -20984,7 +20998,7 @@
20998
"ru": "Протокол",
20999
"zh-chs": "協議",
21000
"xloc": [
20987
- "default.handlebars->27->1800",
21001
+ "default.handlebars->27->1812",
21002
"player.handlebars->3->16"
21003
]
21004
},
@@ -21292,7 +21306,7 @@
21306
"ru": "RSS",
21307
"zh-chs": "的RSS",
21308
"xloc": [
21295
- "default.handlebars->27->1863"
21309
+ "default.handlebars->27->1875"
21310
]
21311
},
21312
{
@@ -21309,7 +21323,7 @@
21323
"ru": "Случайный пароль.",
21324
"zh-chs": "隨機化密碼。",
21325
"xloc": [
21312
- "default.handlebars->27->1571"
21326
+ "default.handlebars->27->1579"
21327
]
21328
},
21329
{
@@ -21350,9 +21364,9 @@
21364
"en": "Real Name",
21365
"nl": "Echte naam",
21366
"xloc": [
21353
- "default.handlebars->27->1682",
21354
- "default.handlebars->27->1684",
21355
- "default.handlebars->27->1737"
21367
+ "default.handlebars->27->1690",
21368
+ "default.handlebars->27->1692",
21369
+ "default.handlebars->27->1745"
21370
]
21371
},
21372
{
@@ -21369,7 +21383,7 @@
21383
"ru": "Области",
21384
"zh-chs": "境界",
21385
"xloc": [
21372
- "default.handlebars->27->1580"
21386
+ "default.handlebars->27->1588"
21387
]
21388
},
21389
{
@@ -21396,7 +21410,7 @@
21410
"en": "Recording Details",
21411
"nl": "Opname details",
21412
"xloc": [
21399
- "default.handlebars->27->1814"
21413
+ "default.handlebars->27->1826"
21414
]
21415
},
21416
{
@@ -21520,7 +21534,7 @@
21534
"ru": "Число ретрансляций",
21535
"zh-chs": "中繼計數",
21536
"xloc": [
21523
- "default.handlebars->27->1845"
21537
+ "default.handlebars->27->1857"
21538
]
21539
},
21540
{
@@ -21537,7 +21551,7 @@
21551
"ru": "Ошибки ретранслятора",
21552
"zh-chs": "中繼錯誤",
21553
"xloc": [
21540
- "default.handlebars->27->1838"
21554
+ "default.handlebars->27->1850"
21555
]
21556
},
21557
{
@@ -21554,8 +21568,8 @@
21568
"ru": "Сессии ретранслятора",
21569
"zh-chs": "接力會議",
21570
"xloc": [
21557
- "default.handlebars->27->1844",
21558
- "default.handlebars->27->1857"
21571
+ "default.handlebars->27->1856",
21572
+ "default.handlebars->27->1869"
21573
]
21574
},
21575
{
@@ -21876,8 +21890,8 @@
21890
"nl": "Apparaatgroepmachtigingen verwijderen",
21891
"zh-chs": "删除设备组权限",
21892
"xloc": [
21879
- "default.handlebars->27->1651",
21880
- "default.handlebars->27->1785"
21893
+ "default.handlebars->27->1659",
21894
+ "default.handlebars->27->1793"
21895
]
21896
},
21897
{
@@ -21891,8 +21905,8 @@
21905
"nl": "Apparaatmachtigingen verwijderen",
21906
"zh-chs": "删除设备权限",
21907
"xloc": [
21894
- "default.handlebars->27->1649",
21895
- "default.handlebars->27->1772"
21908
+ "default.handlebars->27->1657",
21909
+ "default.handlebars->27->1780"
21910
]
21911
},
21912
{
@@ -21920,7 +21934,7 @@
21934
"nl": "Lidmaatschap van gebruikersgroep verwijderen",
21935
"zh-chs": "删除用户组成员身份",
21936
"xloc": [
21923
- "default.handlebars->27->1781"
21937
+ "default.handlebars->27->1789"
21938
]
21939
},
21940
{
@@ -21935,7 +21949,7 @@
21949
"zh-chs": "删除用户组权限",
21950
"xloc": [
21951
"default.handlebars->27->1403",
21938
- "default.handlebars->27->1777"
21952
+ "default.handlebars->27->1785"
21953
]
21954
},
21955
{
@@ -21949,7 +21963,7 @@
21963
"nl": "Gebruikerslidmaatschap verwijderen",
21964
"zh-chs": "删除用户成员资格",
21965
"xloc": [
21952
- "default.handlebars->27->1659"
21966
+ "default.handlebars->27->1667"
21967
]
21968
},
21969
{
@@ -21964,7 +21978,7 @@
21978
"zh-chs": "删除用户权限",
21979
"xloc": [
21980
"default.handlebars->27->1401",
21967
- "default.handlebars->27->1774"
21981
+ "default.handlebars->27->1782"
21982
]
21983
},
21984
{
@@ -21981,7 +21995,7 @@
21995
"ru": "Удалить все двухфакторные аутентификации.",
21996
"zh-chs": "刪除所有第二因素驗證。",
21997
"xloc": [
21984
- "default.handlebars->27->1749"
21998
+ "default.handlebars->27->1757"
21999
]
22000
},
22001
{
@@ -21998,7 +22012,7 @@
22012
"ru": "Удалить все прошлые события для этого userid.",
22013
"zh-chs": "刪除此用戶標識的所有先前事件。",
22014
"xloc": [
22001
- "default.handlebars->27->1572"
22015
+ "default.handlebars->27->1580"
22016
]
22017
},
22018
{
@@ -22085,7 +22099,7 @@
22099
"ru": "Удалить этого пользователя",
22100
"zh-chs": "删除该用户",
22101
"xloc": [
22088
- "default.handlebars->27->1727"
22102
+ "default.handlebars->27->1735"
22103
]
22104
},
22105
{
@@ -22102,7 +22116,7 @@
22116
"ru": "Удалить членство пользователя в группе",
22117
"zh-chs": "刪除用戶組成員身份",
22118
"xloc": [
22105
- "default.handlebars->27->1763"
22119
+ "default.handlebars->27->1771"
22120
]
22121
},
22122
{
@@ -22116,7 +22130,7 @@
22130
"nl": "Gebruikersrechten voor dit apparaat verwijderen",
22131
"zh-chs": "删除此设备的用户组权限",
22132
"xloc": [
22119
- "default.handlebars->27->1645"
22133
+ "default.handlebars->27->1653"
22134
]
22135
},
22136
{
@@ -22133,7 +22147,7 @@
22147
"ru": "Удалить права группы пользователей для этой группы устройств",
22148
"zh-chs": "刪除該設備組的用戶組權限",
22149
"xloc": [
22136
- "default.handlebars->27->1639",
22150
+ "default.handlebars->27->1647",
22151
"default.handlebars->27->628"
22152
]
22153
},
@@ -22152,9 +22166,9 @@
22166
"zh-chs": "刪除此設備組的用戶權限",
22167
"xloc": [
22168
"default.handlebars->27->1279",
22155
- "default.handlebars->27->1633",
22156
- "default.handlebars->27->1757",
22157
- "default.handlebars->27->1769",
22169
+ "default.handlebars->27->1641",
22170
+ "default.handlebars->27->1765",
22171
+ "default.handlebars->27->1777",
22172
"default.handlebars->27->629"
22173
]
22174
},
@@ -22230,8 +22244,8 @@
22244
"zh-chs": "要求:{0}。",
22245
"xloc": [
22246
"default-mobile.handlebars->9->89",
22233
- "default.handlebars->27->1577",
22234
- "default.handlebars->27->1747"
22247
+ "default.handlebars->27->1585",
22248
+ "default.handlebars->27->1755"
22249
]
22250
},
22251
{
@@ -22473,7 +22487,7 @@
22487
"ru": "Ограничения",
22488
"zh-chs": "限制條件",
22489
"xloc": [
22476
- "default.handlebars->27->1671"
22490
+ "default.handlebars->27->1679"
22491
]
22492
},
22493
{
@@ -22733,8 +22747,8 @@
22747
"nl": "SMS",
22748
"zh-chs": "短信",
22749
"xloc": [
22736
- "default.handlebars->27->1716",
22737
- "default.handlebars->27->1721",
22750
+ "default.handlebars->27->1724",
22751
+ "default.handlebars->27->1729",
22752
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
22753
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
22754
]
@@ -22749,7 +22763,7 @@
22763
"nl": "SMS geschikt telefoonnummer voor deze gebruiker.",
22764
"zh-chs": "此用户的短信功能电话号码。",
22765
"xloc": [
22752
- "default.handlebars->27->1733"
22766
+ "default.handlebars->27->1741"
22767
]
22768
},
22769
{
@@ -23161,7 +23175,7 @@
23175
"xloc": [
23176
"default-mobile.handlebars->9->270",
23177
"default-mobile.handlebars->9->360",
23164
- "default.handlebars->27->1717",
23178
+ "default.handlebars->27->1725",
23179
"default.handlebars->27->275",
23180
"default.handlebars->27->695",
23181
"default.handlebars->27->896"
@@ -23181,7 +23195,7 @@
23195
"ru": "Ключ безопасности",
23196
"zh-chs": "安全密鑰",
23197
"xloc": [
23184
- "default.handlebars->27->1714"
23198
+ "default.handlebars->27->1722"
23199
]
23200
},
23201
{
@@ -23217,7 +23231,7 @@
23231
"xloc": [
23232
"default.handlebars->27->1458",
23233
"default.handlebars->27->1529",
23220
- "default.handlebars->27->1602",
23234
+ "default.handlebars->27->1610",
23235
"default.handlebars->27->421",
23236
"default.handlebars->27->812",
23237
"default.handlebars->27->814",
@@ -23245,7 +23259,7 @@
23259
"xloc": [
23260
"default.handlebars->27->1457",
23261
"default.handlebars->27->1528",
23248
- "default.handlebars->27->1601",
23262
+ "default.handlebars->27->1609",
23263
"default.handlebars->27->420",
23264
"default.handlebars->27->813",
23265
"default.handlebars->meshContextMenu->cxselectnone"
@@ -23331,7 +23345,7 @@
23345
"zh-chs": "选择要对所有选定用户执行的操作。",
23346
"xloc": [
23347
"default.handlebars->27->1532",
23334
- "default.handlebars->27->1603"
23348
+ "default.handlebars->27->1611"
23349
]
23350
},
23351
{
@@ -23472,7 +23486,7 @@
23486
"nl": "Stuur een SMS bericht naar deze gebruiker",
23487
"zh-chs": "发送短信给该用户",
23488
"xloc": [
23475
- "default.handlebars->27->1722"
23489
+ "default.handlebars->27->1730"
23490
]
23491
},
23492
{
@@ -23480,7 +23494,7 @@
23494
"nl": "Stuur een e-mailbericht naar deze gebruiker",
23495
"fr": "Envoyer un Mail à cet utilisateur",
23496
"xloc": [
23483
- "default.handlebars->27->1724"
23497
+ "default.handlebars->27->1732"
23498
]
23499
},
23500
{
@@ -23497,7 +23511,7 @@
23511
"ru": "Отправить уведомление всем пользователям этой группы.",
23512
"zh-chs": "向該組中的所有用戶發送通知。",
23513
"xloc": [
23500
- "default.handlebars->27->1630"
23514
+ "default.handlebars->27->1638"
23515
]
23516
},
23517
{
@@ -23514,7 +23528,7 @@
23528
"ru": "Отправить текстовое уведомление этому пользователю.",
23529
"zh-chs": "向該用戶發送文本通知。",
23530
"xloc": [
23517
- "default.handlebars->27->1545"
23531
+ "default.handlebars->27->1544"
23532
]
23533
},
23534
{
@@ -23564,7 +23578,7 @@
23578
"ru": "Отправить приглашение по email.",
23579
"zh-chs": "發送邀請電子郵件。",
23580
"xloc": [
23567
- "default.handlebars->27->1576"
23581
+ "default.handlebars->27->1584"
23582
]
23583
},
23584
{
@@ -23630,7 +23644,7 @@
23644
"ru": "Отправить уведомление пользователю",
23645
"zh-chs": "發送用戶通知",
23646
"xloc": [
23633
- "default.handlebars->27->1726"
23647
+ "default.handlebars->27->1734"
23648
]
23649
},
23650
{
@@ -23682,7 +23696,7 @@
23696
"ru": "Резервное копирование сервера",
23697
"zh-chs": "服務器備份",
23698
"xloc": [
23685
- "default.handlebars->27->1586"
23699
+ "default.handlebars->27->1594"
23700
]
23701
},
23702
{
@@ -23699,7 +23713,7 @@
23713
"ru": "Сертификат сервера",
23714
"zh-chs": "服務器證書",
23715
"xloc": [
23702
- "default.handlebars->27->1873"
23716
+ "default.handlebars->27->1885"
23717
]
23718
},
23719
{
@@ -23716,7 +23730,7 @@
23730
"ru": "База данных сервера",
23731
"zh-chs": "服務器數據庫",
23732
"xloc": [
23719
- "default.handlebars->27->1874"
23733
+ "default.handlebars->27->1886"
23734
]
23735
},
23736
{
@@ -23737,7 +23751,7 @@
23751
"default-mobile.handlebars->9->431",
23752
"default.handlebars->27->1355",
23753
"default.handlebars->27->1383",
23740
- "default.handlebars->27->1583",
23754
+ "default.handlebars->27->1591",
23755
"default.handlebars->27->642",
23756
"default.handlebars->27->661"
23757
]
@@ -23757,7 +23771,7 @@
23771
"zh-chs": "服務器權限",
23772
"xloc": [
23773
"default.handlebars->27->1516",
23760
- "default.handlebars->27->1595"
23774
+ "default.handlebars->27->1603"
23775
]
23776
},
23777
{
@@ -23774,7 +23788,7 @@
23788
"ru": "Квота сервера",
23789
"zh-chs": "服務器配額",
23790
"xloc": [
23777
- "default.handlebars->27->1688"
23791
+ "default.handlebars->27->1696"
23792
]
23793
},
23794
{
@@ -23791,7 +23805,7 @@
23805
"ru": "Восстановление сервера",
23806
"zh-chs": "服務器還原",
23807
"xloc": [
23794
- "default.handlebars->27->1587"
23808
+ "default.handlebars->27->1595"
23809
]
23810
},
23811
{
@@ -23808,7 +23822,7 @@
23822
"ru": "Права",
23823
"zh-chs": "服務器權限",
23824
"xloc": [
23811
- "default.handlebars->27->1687"
23825
+ "default.handlebars->27->1695"
23826
]
23827
},
23828
{
@@ -23825,7 +23839,7 @@
23839
"ru": "Состояние сервера",
23840
"zh-chs": "服務器狀態",
23841
"xloc": [
23828
- "default.handlebars->27->1824"
23842
+ "default.handlebars->27->1836"
23843
]
23844
},
23845
{
@@ -23859,7 +23873,7 @@
23873
"ru": "Трассировка сервера",
23874
"zh-chs": "服務器跟踪",
23875
"xloc": [
23862
- "default.handlebars->27->1884"
23876
+ "default.handlebars->27->1896"
23877
]
23878
},
23879
{
@@ -23876,7 +23890,7 @@
23890
"ru": "Обновление сервера",
23891
"zh-chs": "服務器更新",
23892
"xloc": [
23879
- "default.handlebars->27->1588"
23893
+ "default.handlebars->27->1596"
23894
]
23895
},
23896
{
@@ -23998,7 +24012,7 @@
24012
"ru": "ServerStats.csv",
24013
"zh-chs": "ServerStats.csv",
24014
"xloc": [
24001
- "default.handlebars->27->1865"
24015
+ "default.handlebars->27->1877"
24016
]
24017
},
24018
{
@@ -24039,7 +24053,7 @@
24053
"en": "Session",
24054
"nl": "Sessie",
24055
"xloc": [
24042
- "default.handlebars->27->1788"
24056
+ "default.handlebars->27->1800"
24057
]
24058
},
24059
{
@@ -24425,6 +24439,34 @@
24439
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7"
24440
]
24441
},
24442
+ {
24443
+ "en": "Show for 1 minute",
24444
+ "xloc": [
24445
+ "default.handlebars->27->1547",
24446
+ "default.handlebars->27->1570"
24447
+ ]
24448
+ },
24449
+ {
24450
+ "en": "Show for 10 seconds",
24451
+ "xloc": [
24452
+ "default.handlebars->27->1546",
24453
+ "default.handlebars->27->1569"
24454
+ ]
24455
+ },
24456
+ {
24457
+ "en": "Show for 5 minutes",
24458
+ "xloc": [
24459
+ "default.handlebars->27->1548",
24460
+ "default.handlebars->27->1571"
24461
+ ]
24462
+ },
24463
+ {
24464
+ "en": "Show message until dismissed by user",
24465
+ "xloc": [
24466
+ "default.handlebars->27->1545",
24467
+ "default.handlebars->27->1568"
24468
+ ]
24469
+ },
24470
{
24471
"cs": "Zobrazit záznam chyb na serveru",
24472
"de": "Server-Fehlerprotokoll anzeigen",
@@ -24591,8 +24633,8 @@
24633
"ru": "Размер",
24634
"zh-chs": "尺寸",
24635
"xloc": [
24594
- "default.handlebars->27->1791",
24595
- "default.handlebars->27->1806",
24636
+ "default.handlebars->27->1803",
24637
+ "default.handlebars->27->1818",
24638
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
24639
]
24640
},
@@ -25407,8 +25449,8 @@
25449
"en": "Start Time",
25450
"nl": "Start tijd",
25451
"xloc": [
25410
- "default.handlebars->27->1789",
25411
- "default.handlebars->27->1808",
25452
+ "default.handlebars->27->1801",
25453
+ "default.handlebars->27->1820",
25454
"default.handlebars->27->761"
25455
]
25456
},
@@ -25461,8 +25503,8 @@
25503
"ru": "Статус",
25504
"zh-chs": "狀態",
25505
"xloc": [
25464
- "default.handlebars->27->1740",
25465
- "default.handlebars->27->1801",
25506
+ "default.handlebars->27->1748",
25507
+ "default.handlebars->27->1813",
25508
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
25509
]
25510
},
@@ -26024,7 +26066,7 @@
26066
"xloc": [
26067
"default-mobile.handlebars->9->164",
26068
"default.handlebars->27->1322",
26027
- "default.handlebars->27->1795",
26069
+ "default.handlebars->27->1807",
26070
"default.handlebars->27->233",
26071
"default.handlebars->27->493",
26072
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -26063,7 +26105,7 @@
26105
"zh-chs": "終端通知",
26106
"xloc": [
26107
"default.handlebars->27->1242",
26066
- "default.handlebars->27->1706",
26108
+ "default.handlebars->27->1714",
26109
"default.handlebars->27->565"
26110
]
26111
},
@@ -26082,7 +26124,7 @@
26124
"zh-chs": "終端提示",
26125
"xloc": [
26126
"default.handlebars->27->1241",
26085
- "default.handlebars->27->1705",
26127
+ "default.handlebars->27->1713",
26128
"default.handlebars->27->564"
26129
]
26130
},
@@ -26226,7 +26268,7 @@
26268
"ru": "На данный момент уведомлений нет",
26269
"zh-chs": "目前沒有任何通知",
26270
"xloc": [
26229
- "default.handlebars->27->1816"
26271
+ "default.handlebars->27->1828"
26272
]
26273
},
26274
{
@@ -27485,9 +27527,9 @@
27527
"default.handlebars->27->1219",
27528
"default.handlebars->27->1220",
27529
"default.handlebars->27->13",
27488
- "default.handlebars->27->1780",
27489
- "default.handlebars->27->1793",
27490
- "default.handlebars->27->1794",
27530
+ "default.handlebars->27->1788",
27531
+ "default.handlebars->27->1805",
27532
+ "default.handlebars->27->1806",
27533
"default.handlebars->27->41",
27534
"default.handlebars->27->419",
27535
"default.handlebars->27->42",
@@ -27527,7 +27569,7 @@
27569
"ru": "Неизвестное действие",
27570
"zh-chs": "未知動作",
27571
"xloc": [
27530
- "default.handlebars->27->1830"
27572
+ "default.handlebars->27->1842"
27573
]
27574
},
27575
{
@@ -27544,8 +27586,8 @@
27586
"ru": "Неизвестное устройство",
27587
"zh-chs": "未知設備",
27588
"xloc": [
27547
- "default.handlebars->27->1644",
27548
- "default.handlebars->27->1768"
27589
+ "default.handlebars->27->1652",
27590
+ "default.handlebars->27->1776"
27591
]
27592
},
27593
{
@@ -27562,9 +27604,9 @@
27604
"ru": "Неизвестная группа устройств",
27605
"zh-chs": "未知設備組",
27606
"xloc": [
27565
- "default.handlebars->27->1638",
27566
- "default.handlebars->27->1756",
27567
- "default.handlebars->27->1834"
27607
+ "default.handlebars->27->1646",
27608
+ "default.handlebars->27->1764",
27609
+ "default.handlebars->27->1846"
27610
]
27611
},
27612
{
@@ -27581,7 +27623,7 @@
27623
"ru": "Неизвестная группа",
27624
"zh-chs": "未知群組",
27625
"xloc": [
27584
- "default.handlebars->27->1826"
27626
+ "default.handlebars->27->1838"
27627
]
27628
},
27629
{
@@ -27616,7 +27658,7 @@
27658
"ru": "Неизвестная группа пользователей",
27659
"zh-chs": "未知用戶組",
27660
"xloc": [
27619
- "default.handlebars->27->1762"
27661
+ "default.handlebars->27->1770"
27662
]
27663
},
27664
{
@@ -27705,7 +27747,7 @@
27747
"ru": "Актуально",
27748
"zh-chs": "最新",
27749
"xloc": [
27708
- "default.handlebars->27->1891"
27750
+ "default.handlebars->27->1903"
27751
]
27752
},
27753
{
@@ -27955,8 +27997,8 @@
27997
"ru": "Использовано",
27998
"zh-chs": "用過的",
27999
"xloc": [
27958
- "default.handlebars->27->1820",
27959
- "default.handlebars->27->1822"
28000
+ "default.handlebars->27->1832",
28001
+ "default.handlebars->27->1834"
28002
]
28003
},
28004
{
@@ -27976,8 +28018,8 @@
28018
"default.handlebars->27->1280",
28019
"default.handlebars->27->1488",
28020
"default.handlebars->27->1517",
27979
- "default.handlebars->27->1634",
27980
- "default.handlebars->27->1813",
28021
+ "default.handlebars->27->1642",
28022
+ "default.handlebars->27->1825",
28023
"default.handlebars->27->211",
28024
"default.handlebars->27->631"
28025
]
@@ -28013,10 +28055,10 @@
28055
"ru": "Импорт учетной записи пользователя",
28056
"zh-chs": "用戶帳戶導入",
28057
"xloc": [
28016
- "default.handlebars->27->1547",
28017
- "default.handlebars->27->1548",
28018
- "default.handlebars->27->1550",
28019
- "default.handlebars->27->1552"
28058
+ "default.handlebars->27->1551",
28059
+ "default.handlebars->27->1552",
28060
+ "default.handlebars->27->1554",
28061
+ "default.handlebars->27->1556"
28062
]
28063
},
28064
{
@@ -28033,7 +28075,7 @@
28075
"ru": "Учетные записи пользователей",
28076
"zh-chs": "用戶帳號",
28077
"xloc": [
28036
- "default.handlebars->27->1839"
28078
+ "default.handlebars->27->1851"
28079
]
28080
},
28081
{
@@ -28070,7 +28112,7 @@
28112
"zh-chs": "用戶同意",
28113
"xloc": [
28114
"default.handlebars->27->1248",
28073
- "default.handlebars->27->1712",
28115
+ "default.handlebars->27->1720",
28116
"default.handlebars->27->571"
28117
]
28118
},
@@ -28090,9 +28132,9 @@
28132
"xloc": [
28133
"default.handlebars->27->1336",
28134
"default.handlebars->27->1337",
28093
- "default.handlebars->27->1610",
28094
- "default.handlebars->27->1764",
28095
- "default.handlebars->27->1783",
28135
+ "default.handlebars->27->1618",
28136
+ "default.handlebars->27->1772",
28137
+ "default.handlebars->27->1791",
28138
"default.handlebars->27->630"
28139
]
28140
},
@@ -28127,7 +28169,7 @@
28169
"ru": "Членство в группах пользователей",
28170
"zh-chs": "用戶組成員資格",
28171
"xloc": [
28130
- "default.handlebars->27->1761"
28172
+ "default.handlebars->27->1769"
28173
]
28174
},
28175
{
@@ -28152,8 +28194,8 @@
28194
"zh-chs": "用戶標識",
28195
"xloc": [
28196
"default.handlebars->27->1397",
28155
- "default.handlebars->27->1679",
28156
- "default.handlebars->27->1680"
28197
+ "default.handlebars->27->1687",
28198
+ "default.handlebars->27->1688"
28199
]
28200
},
28201
{
@@ -28161,7 +28203,7 @@
28203
"nl": "Gebruikers-ID's",
28204
"xloc": [
28205
"default.handlebars->27->1334",
28164
- "default.handlebars->27->1663"
28206
+ "default.handlebars->27->1671"
28207
]
28208
},
28209
{
@@ -28178,7 +28220,7 @@
28220
"ru": "Экспортировать список пользователей",
28221
"zh-chs": "用戶列表導出",
28222
"xloc": [
28181
- "default.handlebars->27->1559"
28223
+ "default.handlebars->27->1563"
28224
]
28225
},
28226
{
@@ -28258,7 +28300,7 @@
28300
"ru": "Сессии пользователя",
28301
"zh-chs": "用戶會話",
28302
"xloc": [
28261
- "default.handlebars->27->1856"
28303
+ "default.handlebars->27->1868"
28304
]
28305
},
28306
{
@@ -28392,7 +28434,7 @@
28434
"zh-chs": "用戶名",
28435
"xloc": [
28436
"default-mobile.handlebars->9->268",
28395
- "default.handlebars->27->1567",
28437
+ "default.handlebars->27->1575",
28438
"default.handlebars->27->272",
28439
"default.handlebars->27->304",
28440
"default.handlebars->27->693",
@@ -28454,9 +28496,9 @@
28496
"ru": "Пользователи",
28497
"zh-chs": "用戶數",
28498
"xloc": [
28457
- "default.handlebars->27->1598",
28458
- "default.handlebars->27->1626",
28459
- "default.handlebars->27->1855",
28499
+ "default.handlebars->27->1606",
28500
+ "default.handlebars->27->1634",
28501
+ "default.handlebars->27->1867",
28502
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
28503
]
28504
},
@@ -28474,7 +28516,7 @@
28516
"ru": "Сессии пользователей",
28517
"zh-chs": "用戶會話",
28518
"xloc": [
28477
- "default.handlebars->27->1843"
28519
+ "default.handlebars->27->1855"
28520
]
28521
},
28522
{
@@ -28566,7 +28608,7 @@
28608
"ru": "Проверенный",
28609
"zh-chs": "已驗證",
28610
"xloc": [
28569
- "default.handlebars->27->1742"
28611
+ "default.handlebars->27->1750"
28612
]
28613
},
28614
{
@@ -28670,7 +28712,7 @@
28712
"ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral",
28713
"zh-chs": "版本不兼容,请先升级您的MeshCentral安装",
28714
"xloc": [
28673
- "default.handlebars->27->1887"
28715
+ "default.handlebars->27->1899"
28716
]
28717
},
28718
{
@@ -28738,8 +28780,8 @@
28780
"ru": "Просмотр журнала изменений",
28781
"zh-chs": "查看变更日志",
28782
"xloc": [
28741
- "default.handlebars->27->1890",
28742
- "default.handlebars->27->1892"
28783
+ "default.handlebars->27->1902",
28784
+ "default.handlebars->27->1904"
28785
]
28786
},
28787
{
@@ -28790,7 +28832,7 @@
28832
"ru": "Посмотреть примечания об этом пользователе",
28833
"zh-chs": "查看有關此用戶的註釋",
28834
"xloc": [
28793
- "default.handlebars->27->1720"
28835
+ "default.handlebars->27->1728"
28836
]
28837
},
28838
{
@@ -28997,8 +29039,8 @@
29039
"ru": "Веб-сервер",
29040
"zh-chs": "網絡服務器",
29041
"xloc": [
29000
- "default.handlebars->27->1876",
29001
- "default.handlebars->27->1877"
29042
+ "default.handlebars->27->1888",
29043
+ "default.handlebars->27->1889"
29044
]
29045
},
29046
{
@@ -29015,7 +29057,7 @@
29057
"ru": "Запросы веб-сервера",
29058
"zh-chs": "Web服務器請求",
29059
"xloc": [
29018
- "default.handlebars->27->1878"
29060
+ "default.handlebars->27->1890"
29061
]
29062
},
29063
{
@@ -29032,7 +29074,7 @@
29074
"ru": "Ретранслятор Web Socket",
29075
"zh-chs": "Web套接字中繼",
29076
"xloc": [
29035
- "default.handlebars->27->1879"
29077
+ "default.handlebars->27->1891"
29078
]
29079
},
29080
{
@@ -29144,7 +29186,7 @@
29186
"ru": "Будет изменено при следующем входе в систему.",
29187
"zh-chs": "下次登錄時將更改。",
29188
"xloc": [
29147
- "default.handlebars->27->1692"
29189
+ "default.handlebars->27->1700"
29190
]
29191
},
29192
{
@@ -30113,7 +30155,7 @@
30155
"ru": "\\\\'",
30156
"zh-chs": "\\\\'",
30157
"xloc": [
30116
- "default.handlebars->27->1888"
30158
+ "default.handlebars->27->1900"
30159
]
30160
},
30161
{
@@ -30434,7 +30476,7 @@
30476
"ru": "свободно",
30477
"zh-chs": "自由",
30478
"xloc": [
30437
- "default.handlebars->27->1851"
30479
+ "default.handlebars->27->1863"
30480
]
30481
},
30482
{
@@ -30619,7 +30661,7 @@
30661
"ru": "id, name, email, creation, lastlogin, groups, authfactors",
30662
"zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors",
30663
"xloc": [
30622
- "default.handlebars->27->1560"
30664
+ "default.handlebars->27->1564"
30665
]
30666
},
30667
{
@@ -30720,7 +30762,7 @@
30762
"ru": "k max, пусто по умолчанию",
30763
"zh-chs": "k max,默认为空白",
30764
"xloc": [
30723
- "default.handlebars->27->1584"
30765
+ "default.handlebars->27->1592"
30766
]
30767
},
30768
{
@@ -30825,7 +30867,7 @@
30867
"ru": "servertrace.csv",
30868
"zh-chs": "servertrace.csv",
30869
"xloc": [
30828
- "default.handlebars->27->1886"
30870
+ "default.handlebars->27->1898"
30871
]
30872
},
30873
{
@@ -30882,7 +30924,7 @@
30924
"ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
30925
"zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss",
30926
"xloc": [
30885
- "default.handlebars->27->1864"
30927
+ "default.handlebars->27->1876"
30928
]
30929
},
30930
{
@@ -30899,7 +30941,7 @@
30941
"ru": "time, source, message",
30942
"zh-chs": "時間,來源,訊息",
30943
"xloc": [
30902
- "default.handlebars->27->1885"
30944
+ "default.handlebars->27->1897"
30945
]
30946
},
30947
{
@@ -30930,7 +30972,7 @@
30972
"ru": "всего",
30973
"zh-chs": "總",
30974
"xloc": [
30933
- "default.handlebars->27->1852"
30975
+ "default.handlebars->27->1864"
30976
]
30977
},
30978
{
@@ -31001,8 +31043,8 @@
31043
"ru": "userlist.csv",
31044
"zh-chs": "userlist.csv",
31045
"xloc": [
31004
- "default.handlebars->27->1556",
31005
- "default.handlebars->27->1561"
31046
+ "default.handlebars->27->1560",
31047
+ "default.handlebars->27->1565"
31048
]
31049
},
31050
{
@@ -31019,8 +31061,8 @@
31061
"ru": "userlist.json",
31062
"zh-chs": "userlist.json",
31063
"xloc": [
31022
- "default.handlebars->27->1558",
31023
- "default.handlebars->27->1562"
31064
+ "default.handlebars->27->1562",
31065
+ "default.handlebars->27->1566"
31066
]
31067
},
31068
{
@@ -31089,7 +31131,7 @@
31131
"zh-chs": "{0} Kb",
31132
"xloc": [
31133
"default.handlebars->27->1450",
31092
- "default.handlebars->27->1792"
31134
+ "default.handlebars->27->1804"
31135
]
31136
},
31137
{
@@ -31143,7 +31185,7 @@
31185
"ru": "{0} активных сессий",
31186
"zh-chs": "{0}個活動會話",
31187
"xloc": [
31146
- "default.handlebars->27->1732"
31188
+ "default.handlebars->27->1740"
31189
]
31190
},
31191
{
@@ -31179,7 +31221,7 @@
31221
"xloc": [
31222
"default-mobile.handlebars->9->119",
31223
"default.handlebars->27->1460",
31182
- "default.handlebars->27->1807"
31224
+ "default.handlebars->27->1819"
31225
]
31226
},
31227
{
@@ -31237,7 +31279,7 @@
31279
"ru": "{0} групп",
31280
"zh-chs": "{0}個群組",
31281
"xloc": [
31240
- "default.handlebars->27->1697"
31282
+ "default.handlebars->27->1705"
31283
]
31284
},
31285
{
views/default-mobile.handlebars
+18
-4
@@ -140,6 +140,16 @@
140
float: left;
141
}
142
143
+ .NotifyIconSmall1 { width:24px; height:24px; background: url(../images/notify24.png) 0px 0px; }
144
+ .NotifyIconSmall2 { width:24px; height:24px; background: url(../images/notify24.png) -24px 0px; }
145
+ .NotifyIconSmall3 { width:24px; height:24px; background: url(../images/notify24.png) -48px 0px; }
146
+ .NotifyIconSmall4 { width:24px; height:24px; background: url(../images/notify24.png) -72px 0px; }
147
+ .NotifyIconSmall5 { width:24px; height:24px; background: url(../images/notify24.png) -96px 0px; }
148
+ .NotifyIconSmall6 { width:24px; height:24px; background: url(../images/notify24.png) -120px 0px; }
149
+ .NotifyIconSmall7 { width:24px; height:24px; background: url(../images/notify24.png) -144px 0px; }
150
+ .NotifyIconSmall8 { width:24px; height:24px; background: url(../images/notify24.png) -168px 0px; }
151
+ .NotifyIconSmall9 { width:24px; height:24px; background: url(../images/notify24.png) -192px 0px; }
152
+
153
.gray {
154
/*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/ /* Firefox 10+, Firefox on Android */
155
filter: gray; /* IE6-9 */
@@ -2300,15 +2310,19 @@
2310
function showDeviceMessages(nodeid, force, e) {
2311
if (e) haltEvent(e);
2312
if (xxdialogMode && !force) return false;
2303
- var node = null, x = '';
2313
+ var node = null, x = '<div style=max-height:200px;width:100%;overflow-y:auto;overflow-x:hidden>', count = 0;
2314
if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); }
2315
if ((node == null) || (node.sessions == null) || (node.sessions.msg == null)) { setDialogMode(0); return false; }
2316
for (var i in node.sessions.msg) {
2307
- var msg = i;
2317
+ var msg = i, icon = 5;
2318
if (typeof node.sessions.msg[i].msg == 'string') { msg = node.sessions.msg[i].msg; }
2309
- x += '<div style="border-radius:5px;background-color:#BBB;width:100%;padding:4px;margin-bottom:4px">' + EscapeHtml(i) + '</div>';
2319
+ if (typeof node.sessions.msg[i].icon == 'number') { icon = node.sessions.msg[i].icon; }
2320
+ if ((icon < 1) || (icon > 9)) { icon = 5; }
2321
+ x += '<table style=width:100%><td style=width:24px><div class=NotifyIconSmall' + icon + '></div><td><div style="border-radius:5px;background-color:#BBB;width:calc(100% - 18px);padding:8px">' + EscapeHtml(msg) + '</div></table>';
2322
+ count++;
2323
}
2311
- if (x != '') setDialogMode(2, "Agent Messages" + ' - ' + EscapeHtml(node.name), 1, null, x, 'MESSAGES-' + node._id);
2324
+ x += '</div>';
2325
+ if (count > 0) setDialogMode(2, "Agent Messages" + ' - ' + EscapeHtml(node.name), 1, null, x, 'MESSAGES-' + node._id);
2326
return false;
2327
}
2328
views/default.handlebars
+8
-4
@@ -3696,15 +3696,19 @@
3696
function showDeviceMessages(nodeid, force, e) {
3697
if (e) haltEvent(e);
3698
if (xxdialogMode && !force) return false;
3699
- var node = null, x = '';
3699
+ var node = null, x = '<div style=max-height:200px;overflow-y:auto>', count = 0;
3700
if (nodeid == null) { node = currentNode; } else { node = getNodeFromId(nodeid); }
3701
if ((node == null) || (node.sessions == null) || (node.sessions.msg == null)) { setDialogMode(0); return false; }
3702
for (var i in node.sessions.msg) {
3703
- var msg = i;
3703
+ var msg = i, icon = 5;
3704
if (typeof node.sessions.msg[i].msg == 'string') { msg = node.sessions.msg[i].msg; }
3705
- x += '<div style="border-radius:5px;background-color:#BBB;width:100%;padding:4px;margin-bottom:4px">' + EscapeHtml(i) + '</div>';
3705
+ if (typeof node.sessions.msg[i].icon == 'number') { icon = node.sessions.msg[i].icon; }
3706
+ if ((icon < 1) || (icon > 9)) { icon = 5; }
3707
+ x += '<table style=width:96%><td style=width:24px><div class=NotifyIconSmall' + icon + '></div><td><div style="border-radius:5px;background-color:#BBB;width:100%;padding:8px">' + EscapeHtml(msg) + '</div></table>';
3708
+ count++;
3709
}
3707
- if (x != '') setDialogMode(2, "Agent Messages" + ' - ' + EscapeHtml(node.name), 1, null, x, 'MESSAGES-' + node._id);
3710
+ x += '</div>';
3711
+ if (count > 0) setDialogMode(2, "Agent Messages" + ' - ' + EscapeHtml(node.name), 1, null, x, 'MESSAGES-' + node._id);
3712
return false;
3713
}
3714