Added Intel AMT mouse wheel support.
Ylian Saint-Hilaire committed
Feb 22, 2022 at 18:18 UTC
a0a4582253e2bd5393ef658770f53d840db1c19e
2 files changed
+671
-622
public/scripts/amt-desktop-0.0.2.js
+16
@@ -884,6 +884,8 @@ var CreateAmtRemoteDesktop = function (divid, scrolldiv) {
884
c.onmouseup = obj.mouseup;
885
c.onmousedown = obj.mousedown;
886
c.onmousemove = obj.mousemove;
887
+ //c.onmousewheel = obj.mousewheel;
888
+ c.onwheel = obj.mousewheel;
889
//if (navigator.userAgent.match(/mozilla/i)) c.DOMMouseScroll = obj.xxDOMMouseScroll; else c.onmousewheel = obj.xxMouseWheel;
890
_MouseInputGrab = true;
891
}
@@ -894,6 +896,8 @@ var CreateAmtRemoteDesktop = function (divid, scrolldiv) {
896
c.onmousemove = null;
897
c.onmouseup = null;
898
c.onmousedown = null;
899
+ //c.onmousewheel = null;
900
+ c.onwheel = null;
901
//if (navigator.userAgent.match(/mozilla/i)) c.DOMMouseScroll = null; else c.onmousewheel = null;
902
_MouseInputGrab = false;
903
}
@@ -921,6 +925,18 @@ var CreateAmtRemoteDesktop = function (divid, scrolldiv) {
925
926
// RFB 'PointerEvent' and mouse handlers
927
obj.mousedblclick = function (e) { }
928
+ obj.mousewheel = function (e) {
929
+ var v = 0;
930
+ if (typeof e.deltaY == 'number') { v = -1 * e.deltaY; }
931
+ else if (typeof e.detail == 'number') { v = -1 * e.detail; }
932
+ else if (typeof e.wheelDelta == 'number') { v = e.wheelDelta; }
933
+ if (v == 0) return;
934
+ var tmpmask = obj.buttonmask;
935
+ obj.buttonmask |= (1 << ((v > 0) ? 3 : 4));
936
+ obj.mousemove(e, 1);
937
+ obj.buttonmask = tmpmask;
938
+ return obj.mousemove(e, 1);
939
+ }
940
obj.mousedown = function (e) { obj.buttonmask |= (1 << e.button); return obj.mousemove(e, 1); }
941
obj.mouseup = function (e) { obj.buttonmask &= (0xFFFF - (1 << e.button)); return obj.mousemove(e, 1); }
942
obj.mousemove = function (e, force) {
translate/translate.json
+655
-622
@@ -325,7 +325,7 @@
325
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
326
"xloc": [
327
"default.handlebars->39->1959",
328
- "default.handlebars->39->2501"
328
+ "default.handlebars->39->2505"
329
]
330
},
331
{
@@ -930,7 +930,7 @@
930
"xloc": [
931
"default-mobile.handlebars->11->687",
932
"default.handlebars->39->2033",
933
- "default.handlebars->39->2284"
933
+ "default.handlebars->39->2288"
934
]
935
},
936
{
@@ -1581,7 +1581,7 @@
1581
"default-mobile.handlebars->11->470",
1582
"default.handlebars->39->1303",
1583
"default.handlebars->39->2088",
1584
- "default.handlebars->39->2699",
1584
+ "default.handlebars->39->2703",
1585
"sharing.handlebars->11->50"
1586
]
1587
},
@@ -1743,7 +1743,7 @@
1743
"zh-chs": "1个活跃时段",
1744
"zh-cht": "1個活躍時段",
1745
"xloc": [
1746
- "default.handlebars->39->2589"
1746
+ "default.handlebars->39->2593"
1747
]
1748
},
1749
{
@@ -1859,7 +1859,7 @@
1859
"zh-chs": "1组",
1860
"zh-cht": "1群",
1861
"xloc": [
1862
- "default.handlebars->39->2548"
1862
+ "default.handlebars->39->2552"
1863
]
1864
},
1865
{
@@ -1989,7 +1989,7 @@
1989
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1990
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1991
"xloc": [
1992
- "default.handlebars->39->2316"
1992
+ "default.handlebars->39->2320"
1993
]
1994
},
1995
{
@@ -2186,7 +2186,7 @@
2186
"default-mobile.handlebars->11->211",
2187
"default-mobile.handlebars->11->215",
2188
"default-mobile.handlebars->11->219",
2189
- "default.handlebars->39->2320",
2189
+ "default.handlebars->39->2324",
2190
"default.handlebars->39->383",
2191
"default.handlebars->39->386",
2192
"default.handlebars->39->390",
@@ -2966,8 +2966,8 @@
2966
"zh-chs": "启用第二因素身份验证",
2967
"zh-cht": "啟用第二因素身份驗證",
2968
"xloc": [
2969
- "default.handlebars->39->2334",
2970
- "default.handlebars->39->2572"
2969
+ "default.handlebars->39->2338",
2970
+ "default.handlebars->39->2576"
2971
]
2972
},
2973
{
@@ -4307,7 +4307,7 @@
4307
"tr": "AMT-OS",
4308
"zh-chs": "操作系统",
4309
"xloc": [
4310
- "default.handlebars->39->2828"
4310
+ "default.handlebars->39->2832"
4311
]
4312
},
4313
{
@@ -4326,7 +4326,7 @@
4326
"ru": "AMT-Redir",
4327
"tr": "AMT-Yönlendirme",
4328
"xloc": [
4329
- "default.handlebars->39->2733"
4329
+ "default.handlebars->39->2737"
4330
]
4331
},
4332
{
@@ -4345,7 +4345,7 @@
4345
"ru": "AMT-WSMAN",
4346
"tr": "AMT-WSMAN",
4347
"xloc": [
4348
- "default.handlebars->39->2732"
4348
+ "default.handlebars->39->2736"
4349
]
4350
},
4351
{
@@ -4604,7 +4604,7 @@
4604
"zh-chs": "访问服务器档案",
4605
"zh-cht": "存取伺服器檔案",
4606
"xloc": [
4607
- "default.handlebars->39->2507"
4607
+ "default.handlebars->39->2511"
4608
]
4609
},
4610
{
@@ -4715,7 +4715,7 @@
4715
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
4716
"default.handlebars->39->1741",
4717
"default.handlebars->39->1743",
4718
- "default.handlebars->39->2881",
4718
+ "default.handlebars->39->2885",
4719
"default.handlebars->39->747",
4720
"default.handlebars->39->749"
4721
]
@@ -4742,7 +4742,7 @@
4742
"zh-chs": "帐号设定",
4743
"xloc": [
4744
"default-mobile.handlebars->11->698",
4745
- "default.handlebars->39->2758"
4745
+ "default.handlebars->39->2762"
4746
]
4747
},
4748
{
@@ -4912,8 +4912,8 @@
4912
"zh-chs": "帐户已被锁定",
4913
"zh-cht": "帳戶已被鎖定",
4914
"xloc": [
4915
- "default.handlebars->39->2336",
4916
- "default.handlebars->39->2504"
4915
+ "default.handlebars->39->2340",
4916
+ "default.handlebars->39->2508"
4917
]
4918
},
4919
{
@@ -4939,7 +4939,7 @@
4939
"zh-cht": "達到帳戶限制。",
4940
"xloc": [
4941
"default-mobile.handlebars->11->710",
4942
- "default.handlebars->39->2770",
4942
+ "default.handlebars->39->2774",
4943
"login-mobile.handlebars->5->6",
4944
"login.handlebars->5->6",
4945
"login2.handlebars->7->8"
@@ -5638,8 +5638,8 @@
5638
"zh-chs": "添加设备",
5639
"zh-cht": "新增裝置",
5640
"xloc": [
5641
- "default.handlebars->39->2479",
5642
- "default.handlebars->39->2638",
5641
+ "default.handlebars->39->2483",
5642
+ "default.handlebars->39->2642",
5643
"default.handlebars->39->428"
5644
]
5645
},
@@ -5691,8 +5691,8 @@
5691
"zh-cht": "新增裝置群",
5692
"xloc": [
5693
"default.handlebars->39->1995",
5694
- "default.handlebars->39->2473",
5695
- "default.handlebars->39->2626",
5694
+ "default.handlebars->39->2477",
5695
+ "default.handlebars->39->2630",
5696
"default.handlebars->39->344"
5697
]
5698
},
@@ -5887,7 +5887,7 @@
5887
"zh-chs": "添加成员身份",
5888
"zh-cht": "新增成員身份",
5889
"xloc": [
5890
- "default.handlebars->39->2658"
5890
+ "default.handlebars->39->2662"
5891
]
5892
},
5893
{
@@ -6041,7 +6041,7 @@
6041
"xloc": [
6042
"default.handlebars->39->1853",
6043
"default.handlebars->39->1994",
6044
- "default.handlebars->39->2632",
6044
+ "default.handlebars->39->2636",
6045
"default.handlebars->39->926"
6046
]
6047
},
@@ -6140,7 +6140,7 @@
6140
"zh-cht": "新增用戶",
6141
"xloc": [
6142
"default.handlebars->39->1852",
6143
- "default.handlebars->39->2468"
6143
+ "default.handlebars->39->2472"
6144
]
6145
},
6146
{
@@ -6190,7 +6190,7 @@
6190
"zh-chs": "将用户添加到用户组",
6191
"zh-cht": "將用戶新增到用戶群",
6192
"xloc": [
6193
- "default.handlebars->39->2503"
6193
+ "default.handlebars->39->2507"
6194
]
6195
},
6196
{
@@ -6870,7 +6870,7 @@
6870
"zh-chs": "管理领域",
6871
"zh-cht": "管理領域",
6872
"xloc": [
6873
- "default.handlebars->39->2552"
6873
+ "default.handlebars->39->2556"
6874
]
6875
},
6876
{
@@ -6921,7 +6921,7 @@
6921
"zh-chs": "管理领域",
6922
"zh-cht": "管理領域",
6923
"xloc": [
6924
- "default.handlebars->39->2401"
6924
+ "default.handlebars->39->2405"
6925
]
6926
},
6927
{
@@ -6946,7 +6946,7 @@
6946
"zh-chs": "管理员",
6947
"zh-cht": "管理員",
6948
"xloc": [
6949
- "default.handlebars->39->2328"
6949
+ "default.handlebars->39->2332"
6950
]
6951
},
6952
{
@@ -7002,7 +7002,7 @@
7002
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
7003
"default.handlebars->39->2063",
7004
"default.handlebars->39->2076",
7005
- "default.handlebars->39->2826",
7005
+ "default.handlebars->39->2830",
7006
"default.handlebars->39->364",
7007
"default.handlebars->39->605",
7008
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -7108,7 +7108,7 @@
7108
"zh-chs": "代理错误计数器",
7109
"zh-cht": "代理錯誤計數器",
7110
"xloc": [
7111
- "default.handlebars->39->2795"
7111
+ "default.handlebars->39->2799"
7112
]
7113
},
7114
{
@@ -7301,7 +7301,7 @@
7301
"zh-chs": "代理时段",
7302
"zh-cht": "代理時段",
7303
"xloc": [
7304
- "default.handlebars->39->2811"
7304
+ "default.handlebars->39->2815"
7305
]
7306
},
7307
{
@@ -7851,7 +7851,7 @@
7851
"zh-chs": "代理",
7852
"zh-cht": "代理",
7853
"xloc": [
7854
- "default.handlebars->39->2839"
7854
+ "default.handlebars->39->2843"
7855
]
7856
},
7857
{
@@ -7904,7 +7904,7 @@
7904
"default-mobile.handlebars->11->141",
7905
"default-mobile.handlebars->11->471",
7906
"default-mobile.handlebars->11->473",
7907
- "default.handlebars->39->2707",
7907
+ "default.handlebars->39->2711",
7908
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
7909
]
7910
},
@@ -7930,7 +7930,7 @@
7930
"zh-chs": "全部可用",
7931
"zh-cht": "全部可用",
7932
"xloc": [
7933
- "default.handlebars->39->2290"
7933
+ "default.handlebars->39->2294"
7934
]
7935
},
7936
{
@@ -7980,7 +7980,7 @@
7980
"zh-chs": "所有事件",
7981
"zh-cht": "所有事件",
7982
"xloc": [
7983
- "default.handlebars->39->2288"
7983
+ "default.handlebars->39->2292"
7984
]
7985
},
7986
{
@@ -8057,7 +8057,7 @@
8057
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
8058
"xloc": [
8059
"default.handlebars->39->1957",
8060
- "default.handlebars->39->2500"
8060
+ "default.handlebars->39->2504"
8061
]
8062
},
8063
{
@@ -8332,8 +8332,8 @@
8332
"zh-cht": "一直通知",
8333
"xloc": [
8334
"default.handlebars->39->1830",
8335
- "default.handlebars->39->2459",
8336
- "default.handlebars->39->2561",
8335
+ "default.handlebars->39->2463",
8336
+ "default.handlebars->39->2565",
8337
"default.handlebars->39->833"
8338
]
8339
},
@@ -8360,8 +8360,8 @@
8360
"zh-cht": "一直提示",
8361
"xloc": [
8362
"default.handlebars->39->1831",
8363
- "default.handlebars->39->2460",
8364
- "default.handlebars->39->2562",
8363
+ "default.handlebars->39->2464",
8364
+ "default.handlebars->39->2566",
8365
"default.handlebars->39->834"
8366
]
8367
},
@@ -9523,7 +9523,7 @@
9523
"zh-chs": "您确定要{0}插件吗:{1}",
9524
"zh-cht": "你確定要{0}外掛嗎:{1}",
9525
"xloc": [
9526
- "default.handlebars->39->2890"
9526
+ "default.handlebars->39->2894"
9527
]
9528
},
9529
{
@@ -9898,7 +9898,7 @@
9898
"zh-chs": "认证软件",
9899
"zh-cht": "認證軟體",
9900
"xloc": [
9901
- "default.handlebars->39->2565"
9901
+ "default.handlebars->39->2569"
9902
]
9903
},
9904
{
@@ -10103,7 +10103,7 @@
10103
"zh-cht": "自動刪除",
10104
"xloc": [
10105
"default.handlebars->39->1815",
10106
- "default.handlebars->39->2282"
10106
+ "default.handlebars->39->2286"
10107
]
10108
},
10109
{
@@ -10276,7 +10276,7 @@
10276
"zh-chs": "可用內存",
10277
"zh-cht": "可用內存",
10278
"xloc": [
10279
- "default.handlebars->39->2820"
10279
+ "default.handlebars->39->2824"
10280
]
10281
},
10282
{
@@ -10600,7 +10600,7 @@
10600
"zh-chs": "备用码",
10601
"zh-cht": "備用碼",
10602
"xloc": [
10603
- "default.handlebars->39->2568"
10603
+ "default.handlebars->39->2572"
10604
]
10605
},
10606
{
@@ -10644,7 +10644,7 @@
10644
"zh-chs": "错误的签名",
10645
"zh-cht": "錯誤的簽名",
10646
"xloc": [
10647
- "default.handlebars->39->2802"
10647
+ "default.handlebars->39->2806"
10648
]
10649
},
10650
{
@@ -10669,7 +10669,7 @@
10669
"zh-chs": "错误的网络证书",
10670
"zh-cht": "錯誤的網絡憑證",
10671
"xloc": [
10672
- "default.handlebars->39->2801"
10672
+ "default.handlebars->39->2805"
10673
]
10674
},
10675
{
@@ -10968,7 +10968,7 @@
10968
"zh-chs": "广播",
10969
"zh-cht": "廣播",
10970
"xloc": [
10971
- "default.handlebars->39->2466",
10971
+ "default.handlebars->39->2470",
10972
"default.handlebars->container->column_l->p4->3->1->0->3->1"
10973
]
10974
},
@@ -10994,7 +10994,7 @@
10994
"zh-chs": "广播消息",
10995
"zh-cht": "廣播消息",
10996
"xloc": [
10997
- "default.handlebars->39->2383"
10997
+ "default.handlebars->39->2387"
10998
]
10999
},
11000
{
@@ -11019,7 +11019,7 @@
11019
"zh-chs": "向所有连接的用户广播消息。",
11020
"zh-cht": "向所有連接的用戶廣播消息。",
11021
"xloc": [
11022
- "default.handlebars->39->2378"
11022
+ "default.handlebars->39->2382"
11023
]
11024
},
11025
{
@@ -11161,7 +11161,7 @@
11161
"ru": "Входящих байт",
11162
"tr": "Bayt Girişi",
11163
"xloc": [
11164
- "default.handlebars->39->2725"
11164
+ "default.handlebars->39->2729"
11165
]
11166
},
11167
{
@@ -11180,7 +11180,7 @@
11180
"ru": "Исходящих байт",
11181
"tr": "Bayt Bitti",
11182
"xloc": [
11183
- "default.handlebars->39->2726"
11183
+ "default.handlebars->39->2730"
11184
]
11185
},
11186
{
@@ -11257,7 +11257,7 @@
11257
"zh-cht": "CIRA",
11258
"xloc": [
11259
"default-mobile.handlebars->11->250",
11260
- "default.handlebars->39->2827",
11260
+ "default.handlebars->39->2831",
11261
"default.handlebars->39->366",
11262
"default.handlebars->39->607"
11263
]
@@ -11284,7 +11284,7 @@
11284
"zh-chs": "CIRA服务器",
11285
"zh-cht": "CIRA伺服器",
11286
"xloc": [
11287
- "default.handlebars->39->2874"
11287
+ "default.handlebars->39->2878"
11288
]
11289
},
11290
{
@@ -11309,7 +11309,7 @@
11309
"zh-chs": "CIRA服务器命令",
11310
"zh-cht": "CIRA伺服器指令",
11311
"xloc": [
11312
- "default.handlebars->39->2875"
11312
+ "default.handlebars->39->2879"
11313
]
11314
},
11315
{
@@ -11380,7 +11380,7 @@
11380
"xloc": [
11381
"default-mobile.handlebars->11->582",
11382
"default.handlebars->39->1424",
11383
- "default.handlebars->39->2851",
11383
+ "default.handlebars->39->2855",
11384
"default.handlebars->container->column_l->p40->3->1->p40type->5"
11385
]
11386
},
@@ -11406,7 +11406,7 @@
11406
"zh-chs": "CPU负载",
11407
"zh-cht": "CPU負載",
11408
"xloc": [
11409
- "default.handlebars->39->2816"
11409
+ "default.handlebars->39->2820"
11410
]
11411
},
11412
{
@@ -11431,7 +11431,7 @@
11431
"zh-chs": "最近15分钟的CPU负载",
11432
"zh-cht": "最近15分鐘的CPU負載",
11433
"xloc": [
11434
- "default.handlebars->39->2819"
11434
+ "default.handlebars->39->2823"
11435
]
11436
},
11437
{
@@ -11456,7 +11456,7 @@
11456
"zh-chs": "最近5分钟的CPU负载",
11457
"zh-cht": "最近5分鐘的CPU負載",
11458
"xloc": [
11459
- "default.handlebars->39->2818"
11459
+ "default.handlebars->39->2822"
11460
]
11461
},
11462
{
@@ -11481,7 +11481,7 @@
11481
"zh-chs": "最近一分钟的CPU负载",
11482
"zh-cht": "最近一分鐘的CPU負載",
11483
"xloc": [
11484
- "default.handlebars->39->2817"
11484
+ "default.handlebars->39->2821"
11485
]
11486
},
11487
{
@@ -11536,7 +11536,7 @@
11536
"zh-chs": "CSV",
11537
"zh-cht": "CSV",
11538
"xloc": [
11539
- "default.handlebars->39->2298"
11539
+ "default.handlebars->39->2302"
11540
]
11541
},
11542
{
@@ -11561,8 +11561,8 @@
11561
"zh-chs": "CSV格式",
11562
"zh-cht": "CSV格式",
11563
"xloc": [
11564
- "default.handlebars->39->2302",
11565
- "default.handlebars->39->2370",
11564
+ "default.handlebars->39->2306",
11565
+ "default.handlebars->39->2374",
11566
"default.handlebars->39->678"
11567
]
11568
},
@@ -11610,7 +11610,7 @@
11610
"zh-chs": "呼叫错误",
11611
"zh-cht": "呼叫錯誤",
11612
"xloc": [
11613
- "default.handlebars->39->2891"
11613
+ "default.handlebars->39->2895"
11614
]
11615
},
11616
{
@@ -11658,7 +11658,7 @@
11658
"default-mobile.handlebars->11->106",
11659
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
11660
"default.handlebars->39->1789",
11661
- "default.handlebars->39->2880",
11661
+ "default.handlebars->39->2884",
11662
"default.handlebars->39->465",
11663
"default.handlebars->container->dialog->idx_dlgButtonBar",
11664
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -11939,7 +11939,7 @@
11939
"zh-chs": "更改{0}的电邮",
11940
"zh-cht": "更改{0}的電郵",
11941
"xloc": [
11942
- "default.handlebars->39->2613"
11942
+ "default.handlebars->39->2617"
11943
]
11944
},
11945
{
@@ -11993,7 +11993,7 @@
11993
"xloc": [
11994
"default-mobile.handlebars->11->114",
11995
"default.handlebars->39->1738",
11996
- "default.handlebars->39->2586"
11996
+ "default.handlebars->39->2590"
11997
]
11998
},
11999
{
@@ -12018,7 +12018,7 @@
12018
"zh-chs": "更改{0}的密码",
12019
"zh-cht": "更改{0}的密碼",
12020
"xloc": [
12021
- "default.handlebars->39->2622"
12021
+ "default.handlebars->39->2626"
12022
]
12023
},
12024
{
@@ -12043,7 +12043,7 @@
12043
"zh-chs": "更改{0}的真实名称",
12044
"zh-cht": "更改{0}的真實名稱",
12045
"xloc": [
12046
- "default.handlebars->39->2608"
12046
+ "default.handlebars->39->2612"
12047
]
12048
},
12049
{
@@ -12190,7 +12190,7 @@
12190
"zh-chs": "更改该用户的密码",
12191
"zh-cht": "更改該用戶的密碼",
12192
"xloc": [
12193
- "default.handlebars->39->2585"
12193
+ "default.handlebars->39->2589"
12194
]
12195
},
12196
{
@@ -12458,9 +12458,9 @@
12458
"zh-cht": "聊天",
12459
"xloc": [
12460
"default.handlebars->39->1001",
12461
- "default.handlebars->39->2319",
12462
- "default.handlebars->39->2581",
12463
- "default.handlebars->39->2582",
12461
+ "default.handlebars->39->2323",
12462
+ "default.handlebars->39->2585",
12463
+ "default.handlebars->39->2586",
12464
"default.handlebars->39->873",
12465
"default.handlebars->39->979"
12466
]
@@ -12515,7 +12515,7 @@
12515
"zh-chs": "聊天请求,点击这里接受。",
12516
"xloc": [
12517
"default-mobile.handlebars->11->711",
12518
- "default.handlebars->39->2771"
12518
+ "default.handlebars->39->2775"
12519
]
12520
},
12521
{
@@ -12691,7 +12691,7 @@
12691
"zh-cht": "檢查...",
12692
"xloc": [
12693
"default.handlebars->39->1490",
12694
- "default.handlebars->39->2885"
12694
+ "default.handlebars->39->2889"
12695
]
12696
},
12697
{
@@ -13132,7 +13132,7 @@
13132
"zh-cht": "全部清除",
13133
"xloc": [
13134
"default-mobile.handlebars->11->694",
13135
- "default.handlebars->39->2754"
13135
+ "default.handlebars->39->2758"
13136
]
13137
},
13138
{
@@ -13235,7 +13235,7 @@
13235
"zh-cht": "清除此通知",
13236
"xloc": [
13237
"default-mobile.handlebars->11->693",
13238
- "default.handlebars->39->2753"
13238
+ "default.handlebars->39->2757"
13239
]
13240
},
13241
{
@@ -13361,7 +13361,7 @@
13361
"zh-chs": "单击此处编辑用户组名称",
13362
"zh-cht": "單擊此處編輯用戶群名稱",
13363
"xloc": [
13364
- "default.handlebars->39->2440"
13364
+ "default.handlebars->39->2444"
13365
]
13366
},
13367
{
@@ -13709,7 +13709,7 @@
13709
"default.handlebars->39->1305",
13710
"default.handlebars->39->206",
13711
"default.handlebars->39->214",
13712
- "default.handlebars->39->2879",
13712
+ "default.handlebars->39->2883",
13713
"sharing.handlebars->11->52"
13714
]
13715
},
@@ -13944,8 +13944,8 @@
13944
"zh-chs": "通用设备组",
13945
"zh-cht": "通用裝置群",
13946
"xloc": [
13947
- "default.handlebars->39->2474",
13948
- "default.handlebars->39->2627"
13947
+ "default.handlebars->39->2478",
13948
+ "default.handlebars->39->2631"
13949
]
13950
},
13951
{
@@ -13970,8 +13970,8 @@
13970
"zh-chs": "通用设备",
13971
"zh-cht": "通用裝置",
13972
"xloc": [
13973
- "default.handlebars->39->2480",
13974
- "default.handlebars->39->2639"
13973
+ "default.handlebars->39->2484",
13974
+ "default.handlebars->39->2643"
13975
]
13976
},
13977
{
@@ -14094,10 +14094,10 @@
14094
"default.handlebars->39->1113",
14095
"default.handlebars->39->1122",
14096
"default.handlebars->39->1929",
14097
- "default.handlebars->39->2348",
14098
- "default.handlebars->39->2430",
14099
- "default.handlebars->39->2496",
14100
- "default.handlebars->39->2625",
14097
+ "default.handlebars->39->2352",
14098
+ "default.handlebars->39->2434",
14099
+ "default.handlebars->39->2500",
14100
+ "default.handlebars->39->2629",
14101
"default.handlebars->39->642"
14102
]
14103
},
@@ -14222,7 +14222,7 @@
14222
"zh-chs": "确认删除选定的帐户?",
14223
"zh-cht": "確認刪除所選帳戶?",
14224
"xloc": [
14225
- "default.handlebars->39->2347"
14225
+ "default.handlebars->39->2351"
14226
]
14227
},
14228
{
@@ -14269,7 +14269,7 @@
14269
"zh-chs": "确认删除选定的用户组?",
14270
"zh-cht": "確認刪除所選用戶群?",
14271
"xloc": [
14272
- "default.handlebars->39->2429"
14272
+ "default.handlebars->39->2433"
14273
]
14274
},
14275
{
@@ -14294,7 +14294,7 @@
14294
"zh-chs": "确认删除用户{0}?",
14295
"zh-cht": "確認刪除用戶{0}?",
14296
"xloc": [
14297
- "default.handlebars->39->2624"
14297
+ "default.handlebars->39->2628"
14298
]
14299
},
14300
{
@@ -14319,7 +14319,7 @@
14319
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
14320
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
14321
"xloc": [
14322
- "default.handlebars->39->2499"
14322
+ "default.handlebars->39->2503"
14323
]
14324
},
14325
{
@@ -14344,7 +14344,7 @@
14344
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
14345
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
14346
"xloc": [
14347
- "default.handlebars->39->2656"
14347
+ "default.handlebars->39->2660"
14348
]
14349
},
14350
{
@@ -14472,8 +14472,8 @@
14472
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
14473
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
14474
"xloc": [
14475
- "default.handlebars->39->2489",
14476
- "default.handlebars->39->2647"
14475
+ "default.handlebars->39->2493",
14476
+ "default.handlebars->39->2651"
14477
]
14478
},
14479
{
@@ -14498,8 +14498,8 @@
14498
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
14499
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
14500
"xloc": [
14501
- "default.handlebars->39->2491",
14502
- "default.handlebars->39->2660"
14501
+ "default.handlebars->39->2495",
14502
+ "default.handlebars->39->2664"
14503
]
14504
},
14505
{
@@ -14524,7 +14524,7 @@
14524
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
14525
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
14526
"xloc": [
14527
- "default.handlebars->39->2649"
14527
+ "default.handlebars->39->2653"
14528
]
14529
},
14530
{
@@ -14549,7 +14549,7 @@
14549
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
14550
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
14551
"xloc": [
14552
- "default.handlebars->39->2652"
14552
+ "default.handlebars->39->2656"
14553
]
14554
},
14555
{
@@ -14574,8 +14574,8 @@
14574
"zh-chs": "确认删除访问权限?",
14575
"zh-cht": "確認刪除訪問權限?",
14576
"xloc": [
14577
- "default.handlebars->39->2650",
14578
- "default.handlebars->39->2653"
14577
+ "default.handlebars->39->2654",
14578
+ "default.handlebars->39->2657"
14579
]
14580
},
14581
{
@@ -14648,7 +14648,7 @@
14648
"zh-chs": "确认删除设备共享“{0}”?",
14649
"zh-cht": "確認刪除設備共享“{0}”?",
14650
"xloc": [
14651
- "default.handlebars->39->2645"
14651
+ "default.handlebars->39->2649"
14652
]
14653
},
14654
{
@@ -15178,7 +15178,7 @@
15178
"zh-chs": "已连接的英特尔®AMT",
15179
"zh-cht": "已連接的Intel® AMT",
15180
"xloc": [
15181
- "default.handlebars->39->2807"
15181
+ "default.handlebars->39->2811"
15182
]
15183
},
15184
{
@@ -15203,7 +15203,7 @@
15203
"zh-chs": "已连接的用户",
15204
"zh-cht": "已连接的用户",
15205
"xloc": [
15206
- "default.handlebars->39->2812"
15206
+ "default.handlebars->39->2816"
15207
]
15208
},
15209
{
@@ -15417,7 +15417,7 @@
15417
"zh-chs": "连接数量",
15418
"zh-cht": "連接數量",
15419
"xloc": [
15420
- "default.handlebars->39->2838"
15420
+ "default.handlebars->39->2842"
15421
]
15422
},
15423
{
@@ -15469,7 +15469,7 @@
15469
"zh-chs": "连接转发器",
15470
"zh-cht": "連接轉發器",
15471
"xloc": [
15472
- "default.handlebars->39->2873"
15472
+ "default.handlebars->39->2877"
15473
]
15474
},
15475
{
@@ -15566,7 +15566,7 @@
15566
"ru": "Согласие",
15567
"tr": "Onay",
15568
"xloc": [
15569
- "default.handlebars->39->2281"
15569
+ "default.handlebars->39->2285"
15570
]
15571
},
15572
{
@@ -15698,7 +15698,7 @@
15698
"zh-chs": "Cookie编码器",
15699
"zh-cht": "Cookie編碼器",
15700
"xloc": [
15701
- "default.handlebars->39->2857"
15701
+ "default.handlebars->39->2861"
15702
]
15703
},
15704
{
@@ -16231,7 +16231,7 @@
16231
"zh-chs": "核心服务器",
16232
"zh-cht": "核心伺服器",
16233
"xloc": [
16234
- "default.handlebars->39->2856"
16234
+ "default.handlebars->39->2860"
16235
]
16236
},
16237
{
@@ -16302,7 +16302,7 @@
16302
"zh-chs": "创建帐号",
16303
"zh-cht": "創建帳號",
16304
"xloc": [
16305
- "default.handlebars->39->2397",
16305
+ "default.handlebars->39->2401",
16306
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
16307
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
16308
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -16401,7 +16401,7 @@
16401
"zh-chs": "创建用户组",
16402
"zh-cht": "創建用戶群",
16403
"xloc": [
16404
- "default.handlebars->39->2437"
16404
+ "default.handlebars->39->2441"
16405
]
16406
},
16407
{
@@ -16599,7 +16599,7 @@
16599
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
16600
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
16601
"xloc": [
16602
- "default.handlebars->39->2361"
16602
+ "default.handlebars->39->2365"
16603
]
16604
},
16605
{
@@ -16745,7 +16745,7 @@
16745
"zh-chs": "创建",
16746
"zh-cht": "創建",
16747
"xloc": [
16748
- "default.handlebars->39->2541"
16748
+ "default.handlebars->39->2545"
16749
]
16750
},
16751
{
@@ -17155,7 +17155,7 @@
17155
"zh-chs": "当前密码不正确。",
17156
"xloc": [
17157
"default-mobile.handlebars->11->721",
17158
- "default.handlebars->39->2781"
17158
+ "default.handlebars->39->2785"
17159
]
17160
},
17161
{
@@ -17430,7 +17430,7 @@
17430
"xloc": [
17431
"default-mobile.handlebars->11->375",
17432
"default.handlebars->39->1097",
17433
- "default.handlebars->39->2705"
17433
+ "default.handlebars->39->2709"
17434
]
17435
},
17436
{
@@ -17553,10 +17553,10 @@
17553
"zh-chs": "默认",
17554
"zh-cht": "默認",
17555
"xloc": [
17556
- "default.handlebars->39->2384",
17557
- "default.handlebars->39->2433",
17558
- "default.handlebars->39->2444",
17559
- "default.handlebars->39->2517"
17556
+ "default.handlebars->39->2388",
17557
+ "default.handlebars->39->2437",
17558
+ "default.handlebars->39->2448",
17559
+ "default.handlebars->39->2521"
17560
]
17561
},
17562
{
@@ -17674,7 +17674,7 @@
17674
"zh-chs": "删除帐户",
17675
"zh-cht": "刪除帳戶",
17676
"xloc": [
17677
- "default.handlebars->39->2349"
17677
+ "default.handlebars->39->2353"
17678
]
17679
},
17680
{
@@ -17825,7 +17825,7 @@
17825
"zh-chs": "删除用户",
17826
"zh-cht": "刪除用戶",
17827
"xloc": [
17828
- "default.handlebars->39->2584"
17828
+ "default.handlebars->39->2588"
17829
]
17830
},
17831
{
@@ -17850,8 +17850,8 @@
17850
"zh-chs": "删除用户群组",
17851
"zh-cht": "刪除用戶群組",
17852
"xloc": [
17853
- "default.handlebars->39->2485",
17854
- "default.handlebars->39->2497"
17853
+ "default.handlebars->39->2489",
17854
+ "default.handlebars->39->2501"
17855
]
17856
},
17857
{
@@ -17876,7 +17876,7 @@
17876
"zh-chs": "删除用户群组",
17877
"zh-cht": "刪除用戶群組",
17878
"xloc": [
17879
- "default.handlebars->39->2431"
17879
+ "default.handlebars->39->2435"
17880
]
17881
},
17882
{
@@ -17901,7 +17901,7 @@
17901
"zh-chs": "删除用户{0}",
17902
"zh-cht": "刪除用戶{0}",
17903
"xloc": [
17904
- "default.handlebars->39->2623"
17904
+ "default.handlebars->39->2627"
17905
]
17906
},
17907
{
@@ -17927,7 +17927,7 @@
17927
"zh-cht": "刪除帳戶",
17928
"xloc": [
17929
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
17930
- "default.handlebars->39->2345",
17930
+ "default.handlebars->39->2349",
17931
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
17932
]
17933
},
@@ -17978,7 +17978,7 @@
17978
"zh-chs": "删除群组",
17979
"zh-cht": "刪除群組",
17980
"xloc": [
17981
- "default.handlebars->39->2427"
17981
+ "default.handlebars->39->2431"
17982
]
17983
},
17984
{
@@ -18082,7 +18082,7 @@
18082
"zh-chs": "删除用户群组{0}?",
18083
"zh-cht": "刪除用戶群組{0}?",
18084
"xloc": [
18085
- "default.handlebars->39->2495"
18085
+ "default.handlebars->39->2499"
18086
]
18087
},
18088
{
@@ -18364,11 +18364,11 @@
18364
"default.handlebars->39->1752",
18365
"default.handlebars->39->1807",
18366
"default.handlebars->39->1932",
18367
- "default.handlebars->39->2279",
18368
- "default.handlebars->39->2436",
18369
- "default.handlebars->39->2446",
18370
- "default.handlebars->39->2447",
18371
- "default.handlebars->39->2493",
18367
+ "default.handlebars->39->2283",
18368
+ "default.handlebars->39->2440",
18369
+ "default.handlebars->39->2450",
18370
+ "default.handlebars->39->2451",
18371
+ "default.handlebars->39->2497",
18372
"default.handlebars->39->766",
18373
"default.handlebars->39->767",
18374
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -18423,10 +18423,10 @@
18423
"default.handlebars->39->1250",
18424
"default.handlebars->39->1869",
18425
"default.handlebars->39->1938",
18426
- "default.handlebars->39->2680",
18427
- "default.handlebars->39->2730",
18428
- "default.handlebars->39->2746",
18429
- "default.handlebars->39->2832",
18426
+ "default.handlebars->39->2684",
18427
+ "default.handlebars->39->2734",
18428
+ "default.handlebars->39->2750",
18429
+ "default.handlebars->39->2836",
18430
"default.handlebars->39->731",
18431
"default.handlebars->39->937",
18432
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
@@ -18558,7 +18558,7 @@
18558
"tr": "Masaüstü Multiplex",
18559
"zh-chs": "桌面复用",
18560
"xloc": [
18561
- "default.handlebars->39->2837"
18561
+ "default.handlebars->39->2841"
18562
]
18563
},
18564
{
@@ -18584,8 +18584,8 @@
18584
"zh-cht": "桌面通知",
18585
"xloc": [
18586
"default.handlebars->39->1825",
18587
- "default.handlebars->39->2454",
18588
- "default.handlebars->39->2556",
18587
+ "default.handlebars->39->2458",
18588
+ "default.handlebars->39->2560",
18589
"default.handlebars->39->828"
18590
]
18591
},
@@ -18612,8 +18612,8 @@
18612
"zh-cht": "桌面提示",
18613
"xloc": [
18614
"default.handlebars->39->1824",
18615
- "default.handlebars->39->2453",
18616
- "default.handlebars->39->2555",
18615
+ "default.handlebars->39->2457",
18616
+ "default.handlebars->39->2559",
18617
"default.handlebars->39->827"
18618
]
18619
},
@@ -18640,8 +18640,8 @@
18640
"zh-cht": "桌面提示+工具欄",
18641
"xloc": [
18642
"default.handlebars->39->1822",
18643
- "default.handlebars->39->2451",
18644
- "default.handlebars->39->2553",
18643
+ "default.handlebars->39->2455",
18644
+ "default.handlebars->39->2557",
18645
"default.handlebars->39->825"
18646
]
18647
},
@@ -18666,7 +18666,7 @@
18666
"tr": "Masaüstü Oturumu",
18667
"zh-chs": "桌面会话",
18668
"xloc": [
18669
- "default.handlebars->39->2673"
18669
+ "default.handlebars->39->2677"
18670
]
18671
},
18672
{
@@ -18765,8 +18765,8 @@
18765
"zh-cht": "桌面工具欄",
18766
"xloc": [
18767
"default.handlebars->39->1823",
18768
- "default.handlebars->39->2452",
18769
- "default.handlebars->39->2554",
18768
+ "default.handlebars->39->2456",
18769
+ "default.handlebars->39->2558",
18770
"default.handlebars->39->826"
18771
]
18772
},
@@ -18791,7 +18791,7 @@
18791
"tr": "Yalnızca Masaüstü Görünümü",
18792
"zh-chs": "仅桌面视图",
18793
"xloc": [
18794
- "default.handlebars->39->2529"
18794
+ "default.handlebars->39->2533"
18795
]
18796
},
18797
{
@@ -18974,9 +18974,9 @@
18974
"default.handlebars->39->1479",
18975
"default.handlebars->39->1966",
18976
"default.handlebars->39->255",
18977
- "default.handlebars->39->2642",
18978
- "default.handlebars->39->2704",
18979
- "default.handlebars->39->2719",
18977
+ "default.handlebars->39->2646",
18978
+ "default.handlebars->39->2708",
18979
+ "default.handlebars->39->2723",
18980
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
18981
]
18982
},
@@ -19132,14 +19132,14 @@
19132
"default.handlebars->39->1961",
19133
"default.handlebars->39->1964",
19134
"default.handlebars->39->1965",
19135
- "default.handlebars->39->2295",
19136
- "default.handlebars->39->2477",
19137
- "default.handlebars->39->2483",
19138
- "default.handlebars->39->2630",
19139
- "default.handlebars->39->2689",
19140
- "default.handlebars->39->2708",
19141
- "default.handlebars->39->2722",
19142
- "default.handlebars->39->2759"
19135
+ "default.handlebars->39->2299",
19136
+ "default.handlebars->39->2481",
19137
+ "default.handlebars->39->2487",
19138
+ "default.handlebars->39->2634",
19139
+ "default.handlebars->39->2693",
19140
+ "default.handlebars->39->2712",
19141
+ "default.handlebars->39->2726",
19142
+ "default.handlebars->39->2763"
19143
]
19144
},
19145
{
@@ -19191,11 +19191,11 @@
19191
"zh-cht": "裝置群",
19192
"xloc": [
19193
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
19194
- "default.handlebars->39->2311",
19195
- "default.handlebars->39->2421",
19196
- "default.handlebars->39->2464",
19197
- "default.handlebars->39->2550",
19198
- "default.handlebars->39->2810",
19194
+ "default.handlebars->39->2315",
19195
+ "default.handlebars->39->2425",
19196
+ "default.handlebars->39->2468",
19197
+ "default.handlebars->39->2554",
19198
+ "default.handlebars->39->2814",
19199
"default.handlebars->container->column_l->p2->p2info->9"
19200
]
19201
},
@@ -19298,7 +19298,7 @@
19298
"xloc": [
19299
"default-mobile.handlebars->11->391",
19300
"default.handlebars->39->1163",
19301
- "default.handlebars->39->2688",
19301
+ "default.handlebars->39->2692",
19302
"default.handlebars->39->430",
19303
"default.handlebars->39->439",
19304
"player.handlebars->3->25"
@@ -19375,7 +19375,7 @@
19375
"tr": "Cihaz İtme",
19376
"zh-chs": "设备推送",
19377
"xloc": [
19378
- "default.handlebars->39->2569"
19378
+ "default.handlebars->39->2573"
19379
]
19380
},
19381
{
@@ -20369,8 +20369,8 @@
20369
"zh-cht": "裝置",
20370
"xloc": [
20371
"default.handlebars->39->1887",
20372
- "default.handlebars->39->2422",
20373
- "default.handlebars->39->2465"
20372
+ "default.handlebars->39->2426",
20373
+ "default.handlebars->39->2469"
20374
]
20375
},
20376
{
@@ -20961,10 +20961,10 @@
20961
"zh-cht": "域",
20962
"xloc": [
20963
"default.handlebars->39->114",
20964
- "default.handlebars->39->2385",
20965
- "default.handlebars->39->2434",
20966
- "default.handlebars->39->2443",
20967
- "default.handlebars->39->2516",
20964
+ "default.handlebars->39->2389",
20965
+ "default.handlebars->39->2438",
20966
+ "default.handlebars->39->2447",
20967
+ "default.handlebars->39->2520",
20968
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
20969
"mstsc.handlebars->main->1->3->1->rowdomain->3"
20970
]
@@ -21405,7 +21405,7 @@
21405
"zh-chs": "下载报告",
21406
"zh-cht": "下載報告",
21407
"xloc": [
21408
- "default.handlebars->39->2300",
21408
+ "default.handlebars->39->2304",
21409
"default.handlebars->container->column_l->p3->3->1->0->3",
21410
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv"
21411
]
@@ -21705,7 +21705,7 @@
21705
"zh-chs": "使用以下一种档案格式下载事件列表。",
21706
"zh-cht": "使用以下一種檔案格式下載事件列表。",
21707
"xloc": [
21708
- "default.handlebars->39->2301"
21708
+ "default.handlebars->39->2305"
21709
]
21710
},
21711
{
@@ -21730,7 +21730,7 @@
21730
"zh-chs": "使用以下一种档案格式下载用户列表。",
21731
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
21732
"xloc": [
21733
- "default.handlebars->39->2369"
21733
+ "default.handlebars->39->2373"
21734
]
21735
},
21736
{
@@ -21905,7 +21905,7 @@
21905
"zh-chs": "代理重复",
21906
"zh-cht": "代理重複",
21907
"xloc": [
21908
- "default.handlebars->39->2806"
21908
+ "default.handlebars->39->2810"
21909
]
21910
},
21911
{
@@ -21955,7 +21955,7 @@
21955
"zh-chs": "复制用户组",
21956
"zh-cht": "複製用戶群",
21957
"xloc": [
21958
- "default.handlebars->39->2438"
21958
+ "default.handlebars->39->2442"
21959
]
21960
},
21961
{
@@ -22005,8 +22005,8 @@
22005
"default.handlebars->39->1055",
22006
"default.handlebars->39->261",
22007
"default.handlebars->39->263",
22008
- "default.handlebars->39->2668",
22009
- "default.handlebars->39->2694",
22008
+ "default.handlebars->39->2672",
22009
+ "default.handlebars->39->2698",
22010
"player.handlebars->3->18"
22011
]
22012
},
@@ -22855,7 +22855,7 @@
22855
"tr": "Kullanıcı Özelliklerini Düzenle",
22856
"zh-chs": "编辑用户特征",
22857
"xloc": [
22858
- "default.handlebars->39->2606"
22858
+ "default.handlebars->39->2610"
22859
]
22860
},
22861
{
@@ -22880,7 +22880,7 @@
22880
"zh-chs": "编辑用户组",
22881
"zh-cht": "編輯用戶群",
22882
"xloc": [
22883
- "default.handlebars->39->2494"
22883
+ "default.handlebars->39->2498"
22884
]
22885
},
22886
{
@@ -22924,7 +22924,7 @@
22924
"ru": "Редактировать функции групп пользователей",
22925
"tr": "Kullanıcı Grubu Özelliklerini Düzenle",
22926
"xloc": [
22927
- "default.handlebars->39->2487"
22927
+ "default.handlebars->39->2491"
22928
]
22929
},
22930
{
@@ -23067,12 +23067,12 @@
23067
"zh-cht": "電郵",
23068
"xloc": [
23069
"default-mobile.handlebars->11->102",
23070
- "default.handlebars->39->2387",
23071
- "default.handlebars->39->2520",
23072
- "default.handlebars->39->2522",
23073
- "default.handlebars->39->2567",
23074
- "default.handlebars->39->2577",
23075
- "default.handlebars->39->2609",
23070
+ "default.handlebars->39->2391",
23071
+ "default.handlebars->39->2524",
23072
+ "default.handlebars->39->2526",
23073
+ "default.handlebars->39->2571",
23074
+ "default.handlebars->39->2581",
23075
+ "default.handlebars->39->2613",
23076
"default.handlebars->39->475",
23077
"login-mobile.handlebars->5->42",
23078
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -23321,7 +23321,7 @@
23321
"zh-chs": "电邮未验证",
23322
"zh-cht": "電郵未驗證",
23323
"xloc": [
23324
- "default.handlebars->39->2331"
23324
+ "default.handlebars->39->2335"
23325
]
23326
},
23327
{
@@ -23346,8 +23346,8 @@
23346
"zh-chs": "电子邮件已验证",
23347
"zh-cht": "電子郵件已驗證",
23348
"xloc": [
23349
- "default.handlebars->39->2332",
23350
- "default.handlebars->39->2514"
23349
+ "default.handlebars->39->2336",
23350
+ "default.handlebars->39->2518"
23351
]
23352
},
23353
{
@@ -23372,7 +23372,7 @@
23372
"zh-chs": "电邮已验证。",
23373
"zh-cht": "電郵已驗證。",
23374
"xloc": [
23375
- "default.handlebars->39->2393"
23375
+ "default.handlebars->39->2397"
23376
]
23377
},
23378
{
@@ -23397,7 +23397,7 @@
23397
"zh-chs": "电邮未验证",
23398
"zh-cht": "電郵未驗證",
23399
"xloc": [
23400
- "default.handlebars->39->2515"
23400
+ "default.handlebars->39->2519"
23401
]
23402
},
23403
{
@@ -23444,7 +23444,7 @@
23444
"zh-cht": "電郵已發送。",
23445
"xloc": [
23446
"default-mobile.handlebars->11->714",
23447
- "default.handlebars->39->2774",
23447
+ "default.handlebars->39->2778",
23448
"login-mobile.handlebars->5->2",
23449
"login.handlebars->5->2",
23450
"login2.handlebars->7->3"
@@ -23520,7 +23520,7 @@
23520
"zh-chs": "已通过电邮验证,并且需要重置密码。",
23521
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
23522
"xloc": [
23523
- "default.handlebars->39->2394"
23523
+ "default.handlebars->39->2398"
23524
]
23525
},
23526
{
@@ -23566,7 +23566,7 @@
23566
"tr": "E-posta/SMS/Push Trafiği",
23567
"zh-chs": "电子邮件/短信/推送流量",
23568
"xloc": [
23569
- "default.handlebars->39->2865"
23569
+ "default.handlebars->39->2869"
23570
]
23571
},
23572
{
@@ -23724,7 +23724,7 @@
23724
"zh-cht": "已啟用",
23725
"xloc": [
23726
"default.handlebars->39->117",
23727
- "default.handlebars->39->2696"
23727
+ "default.handlebars->39->2700"
23728
]
23729
},
23730
{
@@ -23870,7 +23870,7 @@
23870
"zh-chs": "时间结束",
23871
"zh-cht": "時間結束",
23872
"xloc": [
23873
- "default.handlebars->39->2693"
23873
+ "default.handlebars->39->2697"
23874
]
23875
},
23876
{
@@ -24419,7 +24419,7 @@
24419
"zh-chs": "输入管理领域名称的逗号分隔列表。",
24420
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
24421
"xloc": [
24422
- "default.handlebars->39->2398"
24422
+ "default.handlebars->39->2402"
24423
]
24424
},
24425
{
@@ -24747,7 +24747,7 @@
24747
"zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。",
24748
"xloc": [
24749
"default-mobile.handlebars->11->722",
24750
- "default.handlebars->39->2782"
24750
+ "default.handlebars->39->2786"
24751
]
24752
},
24753
{
@@ -24772,7 +24772,7 @@
24772
"zh-chs": "错误,密码未更改。",
24773
"xloc": [
24774
"default-mobile.handlebars->11->719",
24775
- "default.handlebars->39->2779"
24775
+ "default.handlebars->39->2783"
24776
]
24777
},
24778
{
@@ -24797,7 +24797,7 @@
24797
"zh-chs": "错误,无法更改为常用密码。",
24798
"xloc": [
24799
"default-mobile.handlebars->11->718",
24800
- "default.handlebars->39->2778"
24800
+ "default.handlebars->39->2782"
24801
]
24802
},
24803
{
@@ -24822,7 +24822,7 @@
24822
"zh-chs": "错误,无法更改为以前使用的密码。",
24823
"xloc": [
24824
"default-mobile.handlebars->11->717",
24825
- "default.handlebars->39->2777"
24825
+ "default.handlebars->39->2781"
24826
]
24827
},
24828
{
@@ -25014,7 +25014,7 @@
25014
"zh-chs": "事件列表输出",
25015
"zh-cht": "事件列表輸出",
25016
"xloc": [
25017
- "default.handlebars->39->2306"
25017
+ "default.handlebars->39->2310"
25018
]
25019
},
25020
{
@@ -25347,7 +25347,7 @@
25347
"zh-chs": "外部",
25348
"zh-cht": "外部",
25349
"xloc": [
25350
- "default.handlebars->39->2845"
25350
+ "default.handlebars->39->2849"
25351
]
25352
},
25353
{
@@ -25472,7 +25472,7 @@
25472
"zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。",
25473
"xloc": [
25474
"default-mobile.handlebars->11->713",
25475
- "default.handlebars->39->2773"
25475
+ "default.handlebars->39->2777"
25476
]
25477
},
25478
{
@@ -25694,8 +25694,8 @@
25694
"zh-cht": "功能",
25695
"xloc": [
25696
"default.handlebars->39->1821",
25697
- "default.handlebars->39->2450",
25698
- "default.handlebars->39->2538"
25697
+ "default.handlebars->39->2454",
25698
+ "default.handlebars->39->2542"
25699
]
25700
},
25701
{
@@ -25872,7 +25872,7 @@
25872
"tr": "Dosya transferi",
25873
"zh-chs": "文件传输",
25874
"xloc": [
25875
- "default.handlebars->39->2674"
25875
+ "default.handlebars->39->2678"
25876
]
25877
},
25878
{
@@ -25927,10 +25927,10 @@
25927
"default.handlebars->39->1023",
25928
"default.handlebars->39->1871",
25929
"default.handlebars->39->1945",
25930
- "default.handlebars->39->2681",
25931
- "default.handlebars->39->2731",
25932
- "default.handlebars->39->2747",
25933
- "default.handlebars->39->2833",
25930
+ "default.handlebars->39->2685",
25931
+ "default.handlebars->39->2735",
25932
+ "default.handlebars->39->2751",
25933
+ "default.handlebars->39->2837",
25934
"default.handlebars->39->396",
25935
"default.handlebars->39->939",
25936
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
@@ -25986,8 +25986,8 @@
25986
"zh-cht": "檔案通知",
25987
"xloc": [
25988
"default.handlebars->39->1829",
25989
- "default.handlebars->39->2458",
25990
- "default.handlebars->39->2560",
25989
+ "default.handlebars->39->2462",
25990
+ "default.handlebars->39->2564",
25991
"default.handlebars->39->832"
25992
]
25993
},
@@ -26014,8 +26014,8 @@
26014
"zh-cht": "檔案提示",
26015
"xloc": [
26016
"default.handlebars->39->1828",
26017
- "default.handlebars->39->2457",
26018
- "default.handlebars->39->2559",
26017
+ "default.handlebars->39->2461",
26018
+ "default.handlebars->39->2563",
26019
"default.handlebars->39->831"
26020
]
26021
},
@@ -26273,7 +26273,7 @@
26273
"ru": "Флаги",
26274
"tr": "Bayraklar",
26275
"xloc": [
26276
- "default.handlebars->39->2280"
26276
+ "default.handlebars->39->2284"
26277
]
26278
},
26279
{
@@ -26547,8 +26547,8 @@
26547
"zh-chs": "下次登录时强制重置密码。",
26548
"zh-cht": "下次登入時強制重置密碼。",
26549
"xloc": [
26550
- "default.handlebars->39->2392",
26551
- "default.handlebars->39->2620"
26550
+ "default.handlebars->39->2396",
26551
+ "default.handlebars->39->2624"
26552
]
26553
},
26554
{
@@ -26727,7 +26727,7 @@
26727
"zh-chs": "格式化",
26728
"zh-cht": "格式化",
26729
"xloc": [
26730
- "default.handlebars->39->2297"
26730
+ "default.handlebars->39->2301"
26731
]
26732
},
26733
{
@@ -26800,8 +26800,8 @@
26800
"zh-chs": "自由",
26801
"zh-cht": "自由",
26802
"xloc": [
26803
- "default.handlebars->39->2791",
26804
- "default.handlebars->39->2793"
26803
+ "default.handlebars->39->2795",
26804
+ "default.handlebars->39->2797"
26805
]
26806
},
26807
{
@@ -27083,7 +27083,7 @@
27083
"default-mobile.handlebars->11->664",
27084
"default.handlebars->39->1767",
27085
"default.handlebars->39->1969",
27086
- "default.handlebars->39->2404"
27086
+ "default.handlebars->39->2408"
27087
]
27088
},
27089
{
@@ -27258,7 +27258,7 @@
27258
"zh-chs": "完整管理员",
27259
"zh-cht": "完整管理員",
27260
"xloc": [
27261
- "default.handlebars->39->2508"
27261
+ "default.handlebars->39->2512"
27262
]
27263
},
27264
{
@@ -27535,7 +27535,7 @@
27535
"ru": "Создать отчет",
27536
"tr": "Rapor oluştur",
27537
"xloc": [
27538
- "default.handlebars->39->2717"
27538
+ "default.handlebars->39->2721"
27539
]
27540
},
27541
{
@@ -28108,7 +28108,7 @@
28108
"zh-cht": "群",
28109
"xloc": [
28110
"default-mobile.handlebars->11->264",
28111
- "default.handlebars->39->2728",
28111
+ "default.handlebars->39->2732",
28112
"default.handlebars->39->758",
28113
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
28114
]
@@ -28135,8 +28135,8 @@
28135
"zh-chs": "集体指令",
28136
"zh-cht": "集體指令",
28137
"xloc": [
28138
- "default.handlebars->39->2346",
28139
- "default.handlebars->39->2428",
28138
+ "default.handlebars->39->2350",
28139
+ "default.handlebars->39->2432",
28140
"default.handlebars->39->635",
28141
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
28142
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -28165,7 +28165,7 @@
28165
"zh-chs": "通过...分组",
28166
"zh-cht": "通過...分群",
28167
"xloc": [
28168
- "default.handlebars->39->2293"
28168
+ "default.handlebars->39->2297"
28169
]
28170
},
28171
{
@@ -28191,7 +28191,7 @@
28191
"zh-cht": "群標識符",
28192
"xloc": [
28193
"agent-translations.json",
28194
- "default.handlebars->39->2445"
28194
+ "default.handlebars->39->2449"
28195
]
28196
},
28197
{
@@ -28216,7 +28216,7 @@
28216
"zh-chs": "群组成员",
28217
"zh-cht": "群組成員",
28218
"xloc": [
28219
- "default.handlebars->39->2469"
28219
+ "default.handlebars->39->2473"
28220
]
28221
},
28222
{
@@ -28248,7 +28248,7 @@
28248
"zh-chs": "通过...分组",
28249
"zh-cht": "通過...分群",
28250
"xloc": [
28251
- "default.handlebars->39->2706"
28251
+ "default.handlebars->39->2710"
28252
]
28253
},
28254
{
@@ -28266,7 +28266,7 @@
28266
"ru": "Название группы",
28267
"tr": "Grup ismi",
28268
"xloc": [
28269
- "default.handlebars->39->2278"
28269
+ "default.handlebars->39->2282"
28270
]
28271
},
28272
{
@@ -28410,7 +28410,7 @@
28410
"ru": "Гость",
28411
"tr": "Misafir",
28412
"xloc": [
28413
- "default.handlebars->39->2723"
28413
+ "default.handlebars->39->2727"
28414
]
28415
},
28416
{
@@ -28534,7 +28534,7 @@
28534
"tr": "HTTP",
28535
"zh-chs": "HTTP",
28536
"xloc": [
28537
- "default.handlebars->39->2829"
28537
+ "default.handlebars->39->2833"
28538
]
28539
},
28540
{
@@ -28708,7 +28708,7 @@
28708
"zh-chs": "堆总数",
28709
"zh-cht": "堆總數",
28710
"xloc": [
28711
- "default.handlebars->39->2847"
28711
+ "default.handlebars->39->2851"
28712
]
28713
},
28714
{
@@ -28733,7 +28733,7 @@
28733
"zh-chs": "堆使用",
28734
"zh-cht": "堆使用",
28735
"xloc": [
28736
- "default.handlebars->39->2846"
28736
+ "default.handlebars->39->2850"
28737
]
28738
},
28739
{
@@ -30738,7 +30738,7 @@
30738
"zh-chs": "英特尔AMT",
30739
"zh-cht": "英特爾AMT",
30740
"xloc": [
30741
- "default.handlebars->39->2843"
30741
+ "default.handlebars->39->2847"
30742
]
30743
},
30744
{
@@ -30819,7 +30819,7 @@
30819
"tr": "Intel AMT yöneticisi",
30820
"zh-chs": "英特尔 AMT 经理",
30821
"xloc": [
30822
- "default.handlebars->39->2872"
30822
+ "default.handlebars->39->2876"
30823
]
30824
},
30825
{
@@ -30896,7 +30896,7 @@
30896
"default.handlebars->39->1849",
30897
"default.handlebars->39->2064",
30898
"default.handlebars->39->2077",
30899
- "default.handlebars->39->2871",
30899
+ "default.handlebars->39->2875",
30900
"default.handlebars->39->733",
30901
"default.handlebars->39->800",
30902
"default.handlebars->39->839",
@@ -31253,8 +31253,8 @@
31253
"zh-chs": "英特尔®AMT重定向",
31254
"zh-cht": "Intel® AMT重定向",
31255
"xloc": [
31256
- "default.handlebars->39->2676",
31257
- "default.handlebars->39->2683",
31256
+ "default.handlebars->39->2680",
31257
+ "default.handlebars->39->2687",
31258
"player.handlebars->3->30"
31259
]
31260
},
@@ -31330,8 +31330,8 @@
31330
"zh-chs": "英特尔®AMT WSMAN",
31331
"zh-cht": "Intle® AMT WSMAN",
31332
"xloc": [
31333
- "default.handlebars->39->2675",
31334
- "default.handlebars->39->2682",
31333
+ "default.handlebars->39->2679",
31334
+ "default.handlebars->39->2686",
31335
"player.handlebars->3->29"
31336
]
31337
},
@@ -32250,7 +32250,7 @@
32250
"zh-chs": "无效的设备组类型",
32251
"zh-cht": "無效的裝置群類型",
32252
"xloc": [
32253
- "default.handlebars->39->2805"
32253
+ "default.handlebars->39->2809"
32254
]
32255
},
32256
{
@@ -32275,7 +32275,7 @@
32275
"zh-chs": "无效的JSON",
32276
"zh-cht": "無效的JSON",
32277
"xloc": [
32278
- "default.handlebars->39->2799"
32278
+ "default.handlebars->39->2803"
32279
]
32280
},
32281
{
@@ -32301,8 +32301,8 @@
32301
"zh-cht": "無效的JSON檔案格式。",
32302
"xloc": [
32303
"default.handlebars->39->1897",
32304
- "default.handlebars->39->2366",
32305
- "default.handlebars->39->2368"
32304
+ "default.handlebars->39->2370",
32305
+ "default.handlebars->39->2372"
32306
]
32307
},
32308
{
@@ -32328,7 +32328,7 @@
32328
"zh-cht": "無效的JSON檔案:{0}。",
32329
"xloc": [
32330
"default.handlebars->39->1893",
32331
- "default.handlebars->39->2364"
32331
+ "default.handlebars->39->2368"
32332
]
32333
},
32334
{
@@ -32429,7 +32429,7 @@
32429
"zh-chs": "无效的PKCS签名",
32430
"zh-cht": "無效的PKCS簽名",
32431
"xloc": [
32432
- "default.handlebars->39->2797"
32432
+ "default.handlebars->39->2801"
32433
]
32434
},
32435
{
@@ -32454,7 +32454,7 @@
32454
"zh-chs": "無效的RSA密碼",
32455
"zh-cht": "無效的RSA密碼",
32456
"xloc": [
32457
- "default.handlebars->39->2798"
32457
+ "default.handlebars->39->2802"
32458
]
32459
},
32460
{
@@ -32479,7 +32479,7 @@
32479
"zh-chs": "无效的短信",
32480
"xloc": [
32481
"default-mobile.handlebars->11->725",
32482
- "default.handlebars->39->2785"
32482
+ "default.handlebars->39->2789"
32483
]
32484
},
32485
{
@@ -32550,7 +32550,7 @@
32550
"zh-chs": "无效域",
32551
"xloc": [
32552
"default-mobile.handlebars->11->705",
32553
- "default.handlebars->39->2765"
32553
+ "default.handlebars->39->2769"
32554
]
32555
},
32556
{
@@ -32596,7 +32596,7 @@
32596
"zh-chs": "不合规电邮",
32597
"xloc": [
32598
"default-mobile.handlebars->11->704",
32599
- "default.handlebars->39->2764"
32599
+ "default.handlebars->39->2768"
32600
]
32601
},
32602
{
@@ -32700,7 +32700,7 @@
32700
"xloc": [
32701
"default-mobile.handlebars->11->703",
32702
"default-mobile.handlebars->11->78",
32703
- "default.handlebars->39->2763",
32703
+ "default.handlebars->39->2767",
32704
"default.handlebars->39->298"
32705
]
32706
},
@@ -32726,7 +32726,7 @@
32726
"zh-chs": "网站权限无效",
32727
"xloc": [
32728
"default-mobile.handlebars->11->706",
32729
- "default.handlebars->39->2766"
32729
+ "default.handlebars->39->2770"
32730
]
32731
},
32732
{
@@ -32802,7 +32802,7 @@
32802
"zh-chs": "无效的用户名",
32803
"xloc": [
32804
"default-mobile.handlebars->11->702",
32805
- "default.handlebars->39->2762"
32805
+ "default.handlebars->39->2766"
32806
]
32807
},
32808
{
@@ -32848,7 +32848,7 @@
32848
"zh-chs": "使电邮无效",
32849
"zh-cht": "使電郵無效",
32850
"xloc": [
32851
- "default.handlebars->39->2340"
32851
+ "default.handlebars->39->2344"
32852
]
32853
},
32854
{
@@ -33028,7 +33028,7 @@
33028
"default.handlebars->39->2046",
33029
"default.handlebars->39->2048",
33030
"default.handlebars->39->2053",
33031
- "default.handlebars->39->2760"
33031
+ "default.handlebars->39->2764"
33032
]
33033
},
33034
{
@@ -33046,7 +33046,7 @@
33046
"ru": "Код приглашения",
33047
"tr": "Davet kodu",
33048
"xloc": [
33049
- "default.handlebars->39->2283"
33049
+ "default.handlebars->39->2287"
33050
]
33051
},
33052
{
@@ -33243,7 +33243,7 @@
33243
"zh-chs": "JSON",
33244
"zh-cht": "JSON",
33245
"xloc": [
33246
- "default.handlebars->39->2299"
33246
+ "default.handlebars->39->2303"
33247
]
33248
},
33249
{
@@ -33268,8 +33268,8 @@
33268
"zh-chs": "JSON格式",
33269
"zh-cht": "JSON格式",
33270
"xloc": [
33271
- "default.handlebars->39->2304",
33272
- "default.handlebars->39->2372",
33271
+ "default.handlebars->39->2308",
33272
+ "default.handlebars->39->2376",
33273
"default.handlebars->39->680"
33274
]
33275
},
@@ -34132,7 +34132,7 @@
34132
"zh-chs": "过去30天",
34133
"zh-cht": "過去30天",
34134
"xloc": [
34135
- "default.handlebars->39->2711",
34135
+ "default.handlebars->39->2715",
34136
"default.handlebars->container->column_l->p40->3->1->p40time->9"
34137
]
34138
},
@@ -34207,7 +34207,7 @@
34207
"ru": "Последние 7 дней",
34208
"tr": "Son 7 gün",
34209
"xloc": [
34210
- "default.handlebars->39->2710"
34210
+ "default.handlebars->39->2714"
34211
]
34212
},
34213
{
@@ -34257,7 +34257,7 @@
34257
"zh-chs": "最后访问",
34258
"zh-cht": "最後訪問",
34259
"xloc": [
34260
- "default.handlebars->39->2312"
34260
+ "default.handlebars->39->2316"
34261
]
34262
},
34263
{
@@ -34276,7 +34276,7 @@
34276
"ru": "Последний день",
34277
"tr": "Son gun",
34278
"xloc": [
34279
- "default.handlebars->39->2709"
34279
+ "default.handlebars->39->2713"
34280
]
34281
},
34282
{
@@ -34301,7 +34301,7 @@
34301
"zh-chs": "上次登录",
34302
"zh-cht": "上次登入",
34303
"xloc": [
34304
- "default.handlebars->39->2542"
34304
+ "default.handlebars->39->2546"
34305
]
34306
},
34307
{
@@ -34346,7 +34346,7 @@
34346
"ru": "Последний доступ: {0}",
34347
"tr": "Son erişim: {0}",
34348
"xloc": [
34349
- "default.handlebars->39->2322"
34349
+ "default.handlebars->39->2326"
34350
]
34351
},
34352
{
@@ -34433,7 +34433,7 @@
34433
"zh-chs": "上次更改:{0}",
34434
"zh-cht": "上次更改:{0}",
34435
"xloc": [
34436
- "default.handlebars->39->2546"
34436
+ "default.handlebars->39->2550"
34437
]
34438
},
34439
{
@@ -34508,7 +34508,7 @@
34508
"zh-chs": "上次登录:{0}",
34509
"zh-cht": "上次登入:{0}",
34510
"xloc": [
34511
- "default.handlebars->39->2323"
34511
+ "default.handlebars->39->2327"
34512
]
34513
},
34514
{
@@ -34825,7 +34825,7 @@
34825
"zh-chs": "如没有请留空。",
34826
"zh-cht": "如沒有請留空。",
34827
"xloc": [
34828
- "default.handlebars->39->2592"
34828
+ "default.handlebars->39->2596"
34829
]
34830
},
34831
{
@@ -34853,6 +34853,12 @@
34853
"default.handlebars->39->1200"
34854
]
34855
},
34856
+ {
34857
+ "en": "Left Web-RDP session \\\"{1}\\\" after {0} second(s).",
34858
+ "xloc": [
34859
+ "default.handlebars->39->2255"
34860
+ ]
34861
+ },
34862
{
34863
"cs": "Opuštění webové relace RDP po {0} sekundách.",
34864
"da": "Forlod Web-RDP-session efter {0} sekund(er).",
@@ -34867,9 +34873,12 @@
34873
"nl": "Web-RDP sessie verlaten na {0} seconde(n).",
34874
"pl": "Opuścił sesję Web-RDP po {0} sekundach.",
34875
"ru": "Покинул сеанс Web-RDP через {0} с.",
34870
- "tr": "{0} saniye sonra Web-RDP oturumundan ayrıldı.",
34876
+ "tr": "{0} saniye sonra Web-RDP oturumundan ayrıldı."
34877
+ },
34878
+ {
34879
+ "en": "Left Web-SFTP session \\\"{1}\\\" after {0} second(s).",
34880
"xloc": [
34872
- "default.handlebars->39->2255"
34881
+ "default.handlebars->39->2254"
34882
]
34883
},
34884
{
@@ -34886,9 +34895,12 @@
34895
"nl": "Web-SFTP sessie verlaten na {0} seconde(n).",
34896
"pl": "Opuścił sesję Web-SFTP po {0} sekundach.",
34897
"ru": "Покинул сеанс Web-SFTP через {0} с.",
34889
- "tr": "{0} saniye sonra Web-SFTP oturumundan ayrıldı.",
34898
+ "tr": "{0} saniye sonra Web-SFTP oturumundan ayrıldı."
34899
+ },
34900
+ {
34901
+ "en": "Left Web-SSH session \\\"{1}\\\" after {0} second(s).",
34902
"xloc": [
34891
- "default.handlebars->39->2254"
34903
+ "default.handlebars->39->2253"
34904
]
34905
},
34906
{
@@ -34905,10 +34917,7 @@
34917
"nl": "Web-SSH sessie verlaten na {0} seconde(n).",
34918
"pl": "Opuścił sesję Web-SSH po {0} sekundach.",
34919
"ru": "Покинул сеанс Web-SSH через {0} с.",
34908
- "tr": "{0} saniye sonra Web-SSH oturumundan ayrıldı.",
34909
- "xloc": [
34910
- "default.handlebars->39->2253"
34911
- ]
34920
+ "tr": "{0} saniye sonra Web-SSH oturumundan ayrıldı."
34921
},
34922
{
34923
"cs": "Opustili relaci Web-VNC po {0} sekundách.",
@@ -35026,7 +35035,7 @@
35035
"ru": "Продолжительность",
35036
"tr": "Uzunluk",
35037
"xloc": [
35029
- "default.handlebars->39->2724"
35038
+ "default.handlebars->39->2728"
35039
]
35040
},
35041
{
@@ -35051,7 +35060,7 @@
35060
"zh-chs": "减",
35061
"zh-cht": "減",
35062
"xloc": [
35054
- "default.handlebars->39->2893"
35063
+ "default.handlebars->39->2897"
35064
]
35065
},
35066
{
@@ -35945,8 +35954,8 @@
35954
"default.handlebars->39->1471",
35955
"default.handlebars->39->1793",
35956
"default.handlebars->39->1797",
35948
- "default.handlebars->39->2615",
35949
- "default.handlebars->39->2664"
35957
+ "default.handlebars->39->2619",
35958
+ "default.handlebars->39->2668"
35959
]
35960
},
35961
{
@@ -36242,7 +36251,7 @@
36251
"zh-chs": "锁定账户",
36252
"zh-cht": "鎖定賬戶",
36253
"xloc": [
36245
- "default.handlebars->39->2412"
36254
+ "default.handlebars->39->2416"
36255
]
36256
},
36257
{
@@ -36267,7 +36276,7 @@
36276
"zh-chs": "锁定帐户设置",
36277
"zh-cht": "鎖定帳戶設置",
36278
"xloc": [
36270
- "default.handlebars->39->2416"
36279
+ "default.handlebars->39->2420"
36280
]
36281
},
36282
{
@@ -36316,7 +36325,7 @@
36325
"zh-chs": "锁定账户",
36326
"zh-cht": "鎖定賬戶",
36327
"xloc": [
36319
- "default.handlebars->39->2343"
36328
+ "default.handlebars->39->2347"
36329
]
36330
},
36331
{
@@ -36433,7 +36442,7 @@
36442
"zh-chs": "已锁定",
36443
"zh-cht": "已鎖定",
36444
"xloc": [
36436
- "default.handlebars->39->2324"
36445
+ "default.handlebars->39->2328"
36446
]
36447
},
36448
{
@@ -36459,7 +36468,7 @@
36468
"zh-cht": "被鎖定賬戶",
36469
"xloc": [
36470
"default-mobile.handlebars->11->77",
36462
- "default.handlebars->39->2505",
36471
+ "default.handlebars->39->2509",
36472
"default.handlebars->39->297"
36473
]
36474
},
@@ -37413,7 +37422,7 @@
37422
"zh-chs": "主服务器信息",
37423
"zh-cht": "主伺服器訊息",
37424
"xloc": [
37416
- "default.handlebars->39->2859"
37425
+ "default.handlebars->39->2863"
37426
]
37427
},
37428
{
@@ -37645,7 +37654,7 @@
37654
"zh-chs": "管理录音",
37655
"zh-cht": "管理錄音",
37656
"xloc": [
37648
- "default.handlebars->39->2410"
37657
+ "default.handlebars->39->2414"
37658
]
37659
},
37660
{
@@ -37695,7 +37704,7 @@
37704
"zh-chs": "管理用户组",
37705
"zh-cht": "管理用戶群",
37706
"xloc": [
37698
- "default.handlebars->39->2409"
37707
+ "default.handlebars->39->2413"
37708
]
37709
},
37710
{
@@ -37720,7 +37729,7 @@
37729
"zh-chs": "管理用户",
37730
"zh-cht": "管理用戶",
37731
"xloc": [
37723
- "default.handlebars->39->2408",
37732
+ "default.handlebars->39->2412",
37733
"default.handlebars->39->986"
37734
]
37735
},
@@ -37952,7 +37961,7 @@
37961
"zh-chs": "经理",
37962
"zh-cht": "經理",
37963
"xloc": [
37955
- "default.handlebars->39->2329"
37964
+ "default.handlebars->39->2333"
37965
]
37966
},
37967
{
@@ -38139,7 +38148,7 @@
38148
"zh-chs": "达到连接数量上限",
38149
"zh-cht": "達到連接數量上限",
38150
"xloc": [
38142
- "default.handlebars->39->2803"
38151
+ "default.handlebars->39->2807"
38152
]
38153
},
38154
{
@@ -38226,8 +38235,8 @@
38235
"zh-chs": "Megabyte",
38236
"zh-cht": "Megabyte",
38237
"xloc": [
38229
- "default.handlebars->39->2844",
38230
- "default.handlebars->39->2849"
38238
+ "default.handlebars->39->2848",
38239
+ "default.handlebars->39->2853"
38240
]
38241
},
38242
{
@@ -38254,7 +38263,7 @@
38263
"xloc": [
38264
"default-mobile.handlebars->11->590",
38265
"default.handlebars->39->1432",
38257
- "default.handlebars->39->2823",
38266
+ "default.handlebars->39->2827",
38267
"default.handlebars->container->column_l->p40->3->1->p40type->3"
38268
]
38269
},
@@ -38493,7 +38502,7 @@
38502
"zh-chs": "MeshAgent流量",
38503
"zh-cht": "MeshAgent流量",
38504
"xloc": [
38496
- "default.handlebars->39->2861"
38505
+ "default.handlebars->39->2865"
38506
]
38507
},
38508
{
@@ -38518,7 +38527,7 @@
38527
"zh-chs": "MeshAgent更新",
38528
"zh-cht": "MeshAgent更新",
38529
"xloc": [
38521
- "default.handlebars->39->2862"
38530
+ "default.handlebars->39->2866"
38531
]
38532
},
38533
{
@@ -38938,7 +38947,7 @@
38947
"zh-chs": "MeshCentral服务器同级化",
38948
"zh-cht": "MeshCentral伺服器同級化",
38949
"xloc": [
38941
- "default.handlebars->39->2860"
38950
+ "default.handlebars->39->2864"
38951
]
38952
},
38953
{
@@ -39410,7 +39419,7 @@
39419
"zh-chs": "消息调度器",
39420
"zh-cht": "電郵調度器",
39421
"xloc": [
39413
- "default.handlebars->39->2858"
39422
+ "default.handlebars->39->2862"
39423
]
39424
},
39425
{
@@ -39484,8 +39493,8 @@
39493
"tr": "haberci",
39494
"zh-chs": "信使",
39495
"xloc": [
39487
- "default.handlebars->39->2677",
39488
- "default.handlebars->39->2734"
39496
+ "default.handlebars->39->2681",
39497
+ "default.handlebars->39->2738"
39498
]
39499
},
39500
{
@@ -39753,7 +39762,7 @@
39762
"zh-chs": "更多",
39763
"zh-cht": "更多",
39764
"xloc": [
39756
- "default.handlebars->39->2892"
39765
+ "default.handlebars->39->2896"
39766
]
39767
},
39768
{
@@ -39975,7 +39984,7 @@
39984
"zh-chs": "多路复用器",
39985
"zh-cht": "多工器",
39986
"xloc": [
39978
- "default.handlebars->39->2695"
39987
+ "default.handlebars->39->2699"
39988
]
39989
},
39990
{
@@ -40503,12 +40512,12 @@
40512
"default.handlebars->39->1776",
40513
"default.handlebars->39->1806",
40514
"default.handlebars->39->1931",
40506
- "default.handlebars->39->2310",
40507
- "default.handlebars->39->2419",
40508
- "default.handlebars->39->2435",
40509
- "default.handlebars->39->2442",
40510
- "default.handlebars->39->2492",
40511
- "default.handlebars->39->2511",
40515
+ "default.handlebars->39->2314",
40516
+ "default.handlebars->39->2423",
40517
+ "default.handlebars->39->2439",
40518
+ "default.handlebars->39->2446",
40519
+ "default.handlebars->39->2496",
40520
+ "default.handlebars->39->2515",
40521
"default.handlebars->39->302",
40522
"default.handlebars->39->756",
40523
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
@@ -40563,7 +40572,7 @@
40572
"zh-chs": "名称1,名称2,名称3",
40573
"zh-cht": "名稱1,名稱2,名稱3",
40574
"xloc": [
40566
- "default.handlebars->39->2400"
40575
+ "default.handlebars->39->2404"
40576
]
40577
},
40578
{
@@ -40789,7 +40798,7 @@
40798
"zh-chs": "新账户",
40799
"xloc": [
40800
"default-mobile.handlebars->11->695",
40792
- "default.handlebars->39->2755"
40801
+ "default.handlebars->39->2759"
40802
]
40803
},
40804
{
@@ -41189,7 +41198,7 @@
41198
"tr": "Aracı Konsolu Yok",
41199
"zh-chs": "无座席控制台",
41200
"xloc": [
41192
- "default.handlebars->39->2601"
41201
+ "default.handlebars->39->2605"
41202
]
41203
},
41204
{
@@ -41213,7 +41222,7 @@
41222
"tr": "Konsol Yok",
41223
"zh-chs": "没有控制台",
41224
"xloc": [
41216
- "default.handlebars->39->2532"
41225
+ "default.handlebars->39->2536"
41226
]
41227
},
41228
{
@@ -41267,7 +41276,7 @@
41276
"zh-cht": "沒有桌面",
41277
"xloc": [
41278
"default.handlebars->39->2017",
41270
- "default.handlebars->39->2528",
41279
+ "default.handlebars->39->2532",
41280
"default.handlebars->39->971",
41281
"default.handlebars->39->993"
41282
]
@@ -41295,7 +41304,7 @@
41304
"zh-cht": "不能訪問桌面",
41305
"xloc": [
41306
"default.handlebars->39->1977",
41298
- "default.handlebars->39->2597"
41307
+ "default.handlebars->39->2601"
41308
]
41309
},
41310
{
@@ -41342,8 +41351,8 @@
41351
"zh-cht": "找不到事件",
41352
"xloc": [
41353
"default.handlebars->39->1351",
41345
- "default.handlebars->39->2286",
41346
- "default.handlebars->39->2663"
41354
+ "default.handlebars->39->2290",
41355
+ "default.handlebars->39->2667"
41356
]
41357
},
41358
{
@@ -41370,7 +41379,7 @@
41379
"xloc": [
41380
"default-mobile.handlebars->11->652",
41381
"default.handlebars->39->1979",
41373
- "default.handlebars->39->2600"
41382
+ "default.handlebars->39->2604"
41383
]
41384
},
41385
{
@@ -41397,7 +41406,7 @@
41406
"xloc": [
41407
"default-mobile.handlebars->11->675",
41408
"default.handlebars->39->2019",
41400
- "default.handlebars->39->2531",
41409
+ "default.handlebars->39->2535",
41410
"default.handlebars->39->968",
41411
"default.handlebars->39->990"
41412
]
@@ -41574,7 +41583,7 @@
41583
"zh-chs": "没有成员",
41584
"zh-cht": "沒有成員",
41585
"xloc": [
41577
- "default.handlebars->39->2472"
41586
+ "default.handlebars->39->2476"
41587
]
41588
},
41589
{
@@ -41599,7 +41608,7 @@
41608
"zh-chs": "没有新的设备组",
41609
"zh-cht": "沒有新的裝置群",
41610
"xloc": [
41602
- "default.handlebars->39->2413"
41611
+ "default.handlebars->39->2417"
41612
]
41613
},
41614
{
@@ -41618,7 +41627,7 @@
41627
"ru": "Запретить добавление новых устройств",
41628
"tr": "Yeni Cihaz Yok",
41629
"xloc": [
41621
- "default.handlebars->39->2414"
41630
+ "default.handlebars->39->2418"
41631
]
41632
},
41633
{
@@ -41685,8 +41694,8 @@
41694
"ru": "Нет доступа к выполнению команд",
41695
"tr": "Uzaktan Komut Yok",
41696
"xloc": [
41688
- "default.handlebars->39->2534",
41689
- "default.handlebars->39->2603"
41697
+ "default.handlebars->39->2538",
41698
+ "default.handlebars->39->2607"
41699
]
41700
},
41701
{
@@ -41706,8 +41715,8 @@
41715
"ru": "Нет доступа к удаленному управлению",
41716
"tr": "Uzaktan Kumanda Yok",
41717
"xloc": [
41709
- "default.handlebars->39->2527",
41710
- "default.handlebars->39->2596"
41718
+ "default.handlebars->39->2531",
41719
+ "default.handlebars->39->2600"
41720
]
41721
},
41722
{
@@ -41727,8 +41736,8 @@
41736
"ru": "Нет доступа к перезагрузке/выключению",
41737
"tr": "Sıfırlama/Kapatma Yok",
41738
"xloc": [
41730
- "default.handlebars->39->2536",
41731
- "default.handlebars->39->2605"
41739
+ "default.handlebars->39->2540",
41740
+ "default.handlebars->39->2609"
41741
]
41742
},
41743
{
@@ -41834,7 +41843,7 @@
41843
"xloc": [
41844
"default-mobile.handlebars->11->674",
41845
"default.handlebars->39->2018",
41837
- "default.handlebars->39->2530",
41846
+ "default.handlebars->39->2534",
41847
"default.handlebars->39->967",
41848
"default.handlebars->39->989"
41849
]
@@ -41863,7 +41872,7 @@
41872
"xloc": [
41873
"default-mobile.handlebars->11->651",
41874
"default.handlebars->39->1978",
41866
- "default.handlebars->39->2599"
41875
+ "default.handlebars->39->2603"
41876
]
41877
},
41878
{
@@ -41888,7 +41897,7 @@
41897
"zh-chs": "没有工具(MeshCmd /路由器)",
41898
"zh-cht": "沒有工具(MeshCmd /路由器)",
41899
"xloc": [
41891
- "default.handlebars->39->2415"
41900
+ "default.handlebars->39->2419"
41901
]
41902
},
41903
{
@@ -41908,8 +41917,8 @@
41917
"ru": "Нет доступа к удалению",
41918
"tr": "Kaldırma Yok",
41919
"xloc": [
41911
- "default.handlebars->39->2533",
41912
- "default.handlebars->39->2602"
41920
+ "default.handlebars->39->2537",
41921
+ "default.handlebars->39->2606"
41922
]
41923
},
41924
{
@@ -41929,8 +41938,8 @@
41938
"ru": "Нет доступа к пробуждению",
41939
"tr": "Uyanmak yok",
41940
"xloc": [
41932
- "default.handlebars->39->2535",
41933
- "default.handlebars->39->2604"
41941
+ "default.handlebars->39->2539",
41942
+ "default.handlebars->39->2608"
41943
]
41944
},
41945
{
@@ -42027,8 +42036,8 @@
42036
"zh-chs": "没有共同的设备组",
42037
"zh-cht": "沒有共同的裝置群",
42038
"xloc": [
42030
- "default.handlebars->39->2478",
42031
- "default.handlebars->39->2631"
42039
+ "default.handlebars->39->2482",
42040
+ "default.handlebars->39->2635"
42041
]
42042
},
42043
{
@@ -42178,8 +42187,8 @@
42187
"zh-chs": "没有共同的设备",
42188
"zh-cht": "沒有共同的裝置",
42189
"xloc": [
42181
- "default.handlebars->39->2484",
42182
- "default.handlebars->39->2643"
42190
+ "default.handlebars->39->2488",
42191
+ "default.handlebars->39->2647"
42192
]
42193
},
42194
{
@@ -42357,7 +42366,7 @@
42366
"zh-chs": "找不到群组。",
42367
"zh-cht": "找不到群組。",
42368
"xloc": [
42360
- "default.handlebars->39->2418"
42369
+ "default.handlebars->39->2422"
42370
]
42371
},
42372
{
@@ -42600,7 +42609,7 @@
42609
"zh-chs": "此用户没有电话号码",
42610
"xloc": [
42611
"default-mobile.handlebars->11->726",
42603
- "default.handlebars->39->2786"
42612
+ "default.handlebars->39->2790"
42613
]
42614
},
42615
{
@@ -42650,7 +42659,7 @@
42659
"zh-chs": "没有录音。",
42660
"zh-cht": "沒有錄音。",
42661
"xloc": [
42653
- "default.handlebars->39->2665"
42662
+ "default.handlebars->39->2669"
42663
]
42664
},
42665
{
@@ -42696,7 +42705,7 @@
42705
"zh-chs": "没有服务器权限",
42706
"zh-cht": "沒有伺服器權限",
42707
"xloc": [
42699
- "default.handlebars->39->2506"
42708
+ "default.handlebars->39->2510"
42709
]
42710
},
42711
{
@@ -42742,7 +42751,7 @@
42751
"zh-chs": "没有用户组成员身份",
42752
"zh-cht": "沒有用戶群成員身份",
42753
"xloc": [
42745
- "default.handlebars->39->2637"
42754
+ "default.handlebars->39->2641"
42755
]
42756
},
42757
{
@@ -42767,7 +42776,7 @@
42776
"zh-chs": "无用户管理权限",
42777
"xloc": [
42778
"default-mobile.handlebars->11->724",
42770
- "default.handlebars->39->2784"
42779
+ "default.handlebars->39->2788"
42780
]
42781
},
42782
{
@@ -42792,7 +42801,7 @@
42801
"zh-chs": "未找到相应的用户。",
42802
"zh-cht": "未找到相應的用戶。",
42803
"xloc": [
42795
- "default.handlebars->39->2318"
42804
+ "default.handlebars->39->2322"
42805
]
42806
},
42807
{
@@ -42938,17 +42947,17 @@
42947
"default.handlebars->39->2071",
42948
"default.handlebars->39->2096",
42949
"default.handlebars->39->2101",
42941
- "default.handlebars->39->2294",
42942
- "default.handlebars->39->2439",
42943
- "default.handlebars->39->2441",
42944
- "default.handlebars->39->2449",
42950
+ "default.handlebars->39->2298",
42951
+ "default.handlebars->39->2443",
42952
+ "default.handlebars->39->2445",
42953
+ "default.handlebars->39->2453",
42954
"default.handlebars->39->246",
42946
- "default.handlebars->39->2461",
42947
- "default.handlebars->39->2525",
42948
- "default.handlebars->39->2537",
42949
- "default.handlebars->39->2547",
42955
+ "default.handlebars->39->2465",
42956
+ "default.handlebars->39->2529",
42957
+ "default.handlebars->39->2541",
42958
"default.handlebars->39->2551",
42951
- "default.handlebars->39->2563",
42959
+ "default.handlebars->39->2555",
42960
+ "default.handlebars->39->2567",
42961
"default.handlebars->39->274",
42962
"default.handlebars->39->355",
42963
"default.handlebars->39->356",
@@ -43260,7 +43269,7 @@
43269
"zh-chs": "不在服务器上",
43270
"zh-cht": "不在伺服器上",
43271
"xloc": [
43263
- "default.handlebars->39->2687"
43272
+ "default.handlebars->39->2691"
43273
]
43274
},
43275
{
@@ -43285,8 +43294,8 @@
43294
"zh-chs": "没有设置",
43295
"zh-cht": "沒有設置",
43296
"xloc": [
43288
- "default.handlebars->39->2512",
43289
- "default.handlebars->39->2513"
43297
+ "default.handlebars->39->2516",
43298
+ "default.handlebars->39->2517"
43299
]
43300
},
43301
{
@@ -43311,7 +43320,7 @@
43320
"zh-chs": "未经审核的",
43321
"zh-cht": "未經審核的",
43322
"xloc": [
43314
- "default.handlebars->39->2611"
43323
+ "default.handlebars->39->2615"
43324
]
43325
},
43326
{
@@ -43341,7 +43350,7 @@
43350
"default-mobile.handlebars->11->626",
43351
"default.handlebars->39->1009",
43352
"default.handlebars->39->1850",
43344
- "default.handlebars->39->2573",
43353
+ "default.handlebars->39->2577",
43354
"default.handlebars->39->867",
43355
"default.handlebars->39->977",
43356
"default.handlebars->39->999"
@@ -43516,7 +43525,7 @@
43525
"zh-chs": "通知",
43526
"zh-cht": "通知",
43527
"xloc": [
43519
- "default.handlebars->39->2579",
43528
+ "default.handlebars->39->2583",
43529
"default.handlebars->39->271"
43530
]
43531
},
@@ -43594,7 +43603,7 @@
43603
"zh-chs": "通知{0}",
43604
"zh-cht": "通知{0}",
43605
"xloc": [
43597
- "default.handlebars->39->2358"
43606
+ "default.handlebars->39->2362"
43607
]
43608
},
43609
{
@@ -43618,7 +43627,7 @@
43627
"tr": "Boş",
43628
"zh-chs": "空值",
43629
"xloc": [
43621
- "default.handlebars->39->2852"
43630
+ "default.handlebars->39->2856"
43631
]
43632
},
43633
{
@@ -43787,7 +43796,7 @@
43796
"zh-cht": "發生在{0}",
43797
"xloc": [
43798
"default-mobile.handlebars->11->692",
43790
- "default.handlebars->39->2752"
43799
+ "default.handlebars->39->2756"
43800
]
43801
},
43802
{
@@ -43858,7 +43867,7 @@
43867
"zh-chs": "离线用户",
43868
"zh-cht": "離線用戶",
43869
"xloc": [
43861
- "default.handlebars->39->2315"
43870
+ "default.handlebars->39->2319"
43871
]
43872
},
43873
{
@@ -43934,7 +43943,7 @@
43943
"zh-chs": "一天",
43944
"zh-cht": "一天",
43945
"xloc": [
43937
- "default.handlebars->39->2291"
43946
+ "default.handlebars->39->2295"
43947
]
43948
},
43949
{
@@ -44012,7 +44021,7 @@
44021
"zh-chs": "在线用户",
44022
"zh-cht": "在線用戶",
44023
"xloc": [
44015
- "default.handlebars->39->2314"
44024
+ "default.handlebars->39->2318"
44025
]
44026
},
44027
{
@@ -44036,7 +44045,7 @@
44045
"tr": "Yalnızca ilk 100 kullanıcıyı göster",
44046
"zh-chs": "只显示前 100 个用户",
44047
"xloc": [
44039
- "default.handlebars->39->2359"
44048
+ "default.handlebars->39->2363"
44049
]
44050
},
44051
{
@@ -44451,8 +44460,8 @@
44460
"xloc": [
44461
"default-mobile.handlebars->11->362",
44462
"default.handlebars->39->1078",
44454
- "default.handlebars->39->2342",
44455
- "default.handlebars->39->2426",
44463
+ "default.handlebars->39->2346",
44464
+ "default.handlebars->39->2430",
44465
"default.handlebars->39->634",
44466
"default.handlebars->39->653"
44467
]
@@ -44936,7 +44945,7 @@
44945
"zh-chs": "部分的",
44946
"zh-cht": "部分的",
44947
"xloc": [
44939
- "default.handlebars->39->2330"
44948
+ "default.handlebars->39->2334"
44949
]
44950
},
44951
{
@@ -45032,7 +45041,7 @@
45041
"zh-chs": "部分权限",
45042
"zh-cht": "部分權限",
45043
"xloc": [
45035
- "default.handlebars->39->2509"
45044
+ "default.handlebars->39->2513"
45045
]
45046
},
45047
{
@@ -45090,12 +45099,12 @@
45099
"default.handlebars->39->1290",
45100
"default.handlebars->39->1758",
45101
"default.handlebars->39->1906",
45093
- "default.handlebars->39->2388",
45094
- "default.handlebars->39->2389",
45095
- "default.handlebars->39->2543",
45096
- "default.handlebars->39->2545",
45097
- "default.handlebars->39->2616",
45098
- "default.handlebars->39->2617",
45102
+ "default.handlebars->39->2392",
45103
+ "default.handlebars->39->2393",
45104
+ "default.handlebars->39->2547",
45105
+ "default.handlebars->39->2549",
45106
+ "default.handlebars->39->2620",
45107
+ "default.handlebars->39->2621",
45108
"default.handlebars->39->306",
45109
"default.handlebars->39->444",
45110
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
@@ -45243,7 +45252,7 @@
45252
"zh-chs": "密码已更改。",
45253
"xloc": [
45254
"default-mobile.handlebars->11->720",
45246
- "default.handlebars->39->2780"
45255
+ "default.handlebars->39->2784"
45256
]
45257
},
45258
{
@@ -45294,7 +45303,7 @@
45303
"zh-chs": "密码提示",
45304
"zh-cht": "密碼提示",
45305
"xloc": [
45297
- "default.handlebars->39->2618"
45306
+ "default.handlebars->39->2622"
45307
]
45308
},
45309
{
@@ -46044,7 +46053,7 @@
46053
"zh-chs": "没有权限",
46054
"xloc": [
46055
"default-mobile.handlebars->11->701",
46047
- "default.handlebars->39->2761"
46056
+ "default.handlebars->39->2765"
46057
]
46058
},
46059
{
@@ -46071,7 +46080,7 @@
46080
"xloc": [
46081
"default-mobile.handlebars->11->686",
46082
"default.handlebars->39->2032",
46074
- "default.handlebars->39->2313"
46083
+ "default.handlebars->39->2317"
46084
]
46085
},
46086
{
@@ -46175,7 +46184,7 @@
46184
"default.handlebars->39->1463",
46185
"default.handlebars->39->1466",
46186
"default.handlebars->39->229",
46178
- "default.handlebars->39->2594"
46187
+ "default.handlebars->39->2598"
46188
]
46189
},
46190
{
@@ -46200,7 +46209,7 @@
46209
"zh-chs": "电话号码",
46210
"zh-cht": "電話號碼",
46211
"xloc": [
46203
- "default.handlebars->39->2524"
46212
+ "default.handlebars->39->2528"
46213
]
46214
},
46215
{
@@ -46227,7 +46236,7 @@
46236
"xloc": [
46237
"default-mobile.handlebars->11->90",
46238
"default.handlebars->39->1465",
46230
- "default.handlebars->39->2593"
46239
+ "default.handlebars->39->2597"
46240
]
46241
},
46242
{
@@ -46452,7 +46461,7 @@
46461
"zh-cht": "外掛指令",
46462
"xloc": [
46463
"default.handlebars->39->287",
46455
- "default.handlebars->39->2889"
46464
+ "default.handlebars->39->2893"
46465
]
46466
},
46467
{
@@ -47151,7 +47160,7 @@
47160
"zh-chs": "存在于服务器上",
47161
"zh-cht": "存在於伺服器上",
47162
"xloc": [
47154
- "default.handlebars->39->2686"
47163
+ "default.handlebars->39->2690"
47164
]
47165
},
47166
{
@@ -47281,8 +47290,8 @@
47290
"default-mobile.handlebars->11->79",
47291
"default-mobile.handlebars->11->80",
47292
"default.handlebars->39->1458",
47284
- "default.handlebars->39->2588",
47285
- "default.handlebars->39->2614",
47293
+ "default.handlebars->39->2592",
47294
+ "default.handlebars->39->2618",
47295
"default.handlebars->39->299"
47296
]
47297
},
@@ -47676,7 +47685,7 @@
47685
"zh-chs": "协议",
47686
"zh-cht": "協議",
47687
"xloc": [
47679
- "default.handlebars->39->2684",
47688
+ "default.handlebars->39->2688",
47689
"player.handlebars->3->32"
47690
]
47691
},
@@ -48290,7 +48299,7 @@
48299
"zh-chs": "RSS",
48300
"zh-cht": "RSS",
48301
"xloc": [
48293
- "default.handlebars->39->2848"
48302
+ "default.handlebars->39->2852"
48303
]
48304
},
48305
{
@@ -48365,7 +48374,7 @@
48374
"zh-chs": "随机密码。",
48375
"zh-cht": "隨機密碼。",
48376
"xloc": [
48368
- "default.handlebars->39->2390"
48377
+ "default.handlebars->39->2394"
48378
]
48379
},
48380
{
@@ -48475,9 +48484,9 @@
48484
"zh-chs": "真正的名字",
48485
"zh-cht": "真正的名字",
48486
"xloc": [
48478
- "default.handlebars->39->2521",
48479
- "default.handlebars->39->2523",
48480
- "default.handlebars->39->2607"
48487
+ "default.handlebars->39->2525",
48488
+ "default.handlebars->39->2527",
48489
+ "default.handlebars->39->2611"
48490
]
48491
},
48492
{
@@ -48502,7 +48511,7 @@
48511
"zh-chs": "境界",
48512
"zh-cht": "境界",
48513
"xloc": [
48505
- "default.handlebars->39->2399"
48514
+ "default.handlebars->39->2403"
48515
]
48516
},
48517
{
@@ -48556,8 +48565,8 @@
48565
"zh-cht": "記錄會議",
48566
"xloc": [
48567
"default.handlebars->39->1818",
48559
- "default.handlebars->39->2448",
48560
- "default.handlebars->39->2526"
48568
+ "default.handlebars->39->2452",
48569
+ "default.handlebars->39->2530"
48570
]
48571
},
48572
{
@@ -48608,8 +48617,8 @@
48617
"zh-cht": "記錄會議",
48618
"xloc": [
48619
"default.handlebars->39->1948",
48611
- "default.handlebars->39->2486",
48612
- "default.handlebars->39->2595"
48620
+ "default.handlebars->39->2490",
48621
+ "default.handlebars->39->2599"
48622
]
48623
},
48624
{
@@ -48634,7 +48643,7 @@
48643
"zh-chs": "记录细节",
48644
"zh-cht": "記錄細節",
48645
"xloc": [
48637
- "default.handlebars->39->2698"
48646
+ "default.handlebars->39->2702"
48647
]
48648
},
48649
{
@@ -48903,7 +48912,7 @@
48912
"zh-cht": "中繼",
48913
"xloc": [
48914
"default-mobile.handlebars->11->252",
48906
- "default.handlebars->39->2830",
48915
+ "default.handlebars->39->2834",
48916
"default.handlebars->39->370",
48917
"default.handlebars->39->611"
48918
]
@@ -48930,7 +48939,7 @@
48939
"zh-chs": "中继数量",
48940
"zh-cht": "中繼數量",
48941
"xloc": [
48933
- "default.handlebars->39->2815"
48942
+ "default.handlebars->39->2819"
48943
]
48944
},
48945
{
@@ -48976,7 +48985,7 @@
48985
"zh-chs": "中继错误",
48986
"zh-cht": "中繼錯誤",
48987
"xloc": [
48979
- "default.handlebars->39->2808"
48988
+ "default.handlebars->39->2812"
48989
]
48990
},
48991
{
@@ -49022,8 +49031,8 @@
49031
"zh-chs": "中继连接",
49032
"zh-cht": "中繼連接",
49033
"xloc": [
49025
- "default.handlebars->39->2814",
49026
- "default.handlebars->39->2842"
49034
+ "default.handlebars->39->2818",
49035
+ "default.handlebars->39->2846"
49036
]
49037
},
49038
{
@@ -49872,7 +49881,7 @@
49881
"tr": "Uzak Oturumlar",
49882
"zh-chs": "远程会话",
49883
"xloc": [
49875
- "default.handlebars->39->2700"
49884
+ "default.handlebars->39->2704"
49885
]
49886
},
49887
{
@@ -50014,7 +50023,7 @@
50023
"default-mobile.handlebars->11->673",
50024
"default.handlebars->39->1974",
50025
"default.handlebars->39->2016",
50017
- "default.handlebars->39->2598"
50026
+ "default.handlebars->39->2602"
50027
]
50028
},
50029
{
@@ -50275,8 +50284,8 @@
50284
"zh-chs": "删除设备组权限",
50285
"zh-cht": "刪除裝置群權限",
50286
"xloc": [
50278
- "default.handlebars->39->2490",
50279
- "default.handlebars->39->2659"
50287
+ "default.handlebars->39->2494",
50288
+ "default.handlebars->39->2663"
50289
]
50290
},
50291
{
@@ -50301,8 +50310,8 @@
50310
"zh-chs": "删除设备权限",
50311
"zh-cht": "刪除裝置權限",
50312
"xloc": [
50304
- "default.handlebars->39->2488",
50305
- "default.handlebars->39->2646"
50313
+ "default.handlebars->39->2492",
50314
+ "default.handlebars->39->2650"
50315
]
50316
},
50317
{
@@ -50327,7 +50336,7 @@
50336
"zh-chs": "删除设备共享",
50337
"zh-cht": "刪除設備共享",
50338
"xloc": [
50330
- "default.handlebars->39->2644"
50339
+ "default.handlebars->39->2648"
50340
]
50341
},
50342
{
@@ -50398,7 +50407,7 @@
50407
"zh-chs": "删除用户组成员身份",
50408
"zh-cht": "刪除用戶群成員身份",
50409
"xloc": [
50401
- "default.handlebars->39->2655"
50410
+ "default.handlebars->39->2659"
50411
]
50412
},
50413
{
@@ -50424,7 +50433,7 @@
50433
"zh-cht": "刪除用戶群權限",
50434
"xloc": [
50435
"default.handlebars->39->2037",
50427
- "default.handlebars->39->2651"
50436
+ "default.handlebars->39->2655"
50437
]
50438
},
50439
{
@@ -50449,7 +50458,7 @@
50458
"zh-chs": "删除用户成员资格",
50459
"zh-cht": "刪除用戶成員資格",
50460
"xloc": [
50452
- "default.handlebars->39->2498"
50461
+ "default.handlebars->39->2502"
50462
]
50463
},
50464
{
@@ -50475,7 +50484,7 @@
50484
"zh-cht": "刪除用戶權限",
50485
"xloc": [
50486
"default.handlebars->39->2035",
50478
- "default.handlebars->39->2648"
50487
+ "default.handlebars->39->2652"
50488
]
50489
},
50490
{
@@ -50500,7 +50509,7 @@
50509
"zh-chs": "删除所有两因素认证。",
50510
"zh-cht": "刪除所有二因子鑑別。",
50511
"xloc": [
50503
- "default.handlebars->39->2621"
50512
+ "default.handlebars->39->2625"
50513
]
50514
},
50515
{
@@ -50525,7 +50534,7 @@
50534
"zh-chs": "删除此用户标识的所有先前事件。",
50535
"zh-cht": "刪除此用戶標識的所有先前事件。",
50536
"xloc": [
50528
- "default.handlebars->39->2391"
50537
+ "default.handlebars->39->2395"
50538
]
50539
},
50540
{
@@ -50750,7 +50759,7 @@
50759
"zh-chs": "删除此用户",
50760
"zh-cht": "刪除此用戶",
50761
"xloc": [
50753
- "default.handlebars->39->2583"
50762
+ "default.handlebars->39->2587"
50763
]
50764
},
50765
{
@@ -50775,7 +50784,7 @@
50784
"zh-chs": "删除用户组成员身份",
50785
"zh-cht": "刪除用戶群成員身份",
50786
"xloc": [
50778
- "default.handlebars->39->2635"
50787
+ "default.handlebars->39->2639"
50788
]
50789
},
50790
{
@@ -50800,7 +50809,7 @@
50809
"zh-chs": "删除此设备的用户组权限",
50810
"zh-cht": "刪除此裝置的用戶群權限",
50811
"xloc": [
50803
- "default.handlebars->39->2482"
50812
+ "default.handlebars->39->2486"
50813
]
50814
},
50815
{
@@ -50825,7 +50834,7 @@
50834
"zh-chs": "删除此设备组的用户组权限",
50835
"zh-cht": "刪除此裝置群的用戶群權限",
50836
"xloc": [
50828
- "default.handlebars->39->2476",
50837
+ "default.handlebars->39->2480",
50838
"default.handlebars->39->928"
50839
]
50840
},
@@ -50852,9 +50861,9 @@
50861
"zh-cht": "刪除此裝置群的用戶權限",
50862
"xloc": [
50863
"default.handlebars->39->1863",
50855
- "default.handlebars->39->2470",
50856
- "default.handlebars->39->2629",
50857
- "default.handlebars->39->2641",
50864
+ "default.handlebars->39->2474",
50865
+ "default.handlebars->39->2633",
50866
+ "default.handlebars->39->2645",
50867
"default.handlebars->39->929"
50868
]
50869
},
@@ -51278,7 +51287,7 @@
51287
"zh-chs": "报告日",
51288
"zh-cht": "報告日",
51289
"xloc": [
51281
- "default.handlebars->39->2292"
51290
+ "default.handlebars->39->2296"
51291
]
51292
},
51293
{
@@ -51303,7 +51312,7 @@
51312
"zh-chs": "报告类型",
51313
"zh-cht": "報告類型",
51314
"xloc": [
51306
- "default.handlebars->39->2287"
51315
+ "default.handlebars->39->2291"
51316
]
51317
},
51318
{
@@ -51322,7 +51331,7 @@
51331
"ru": "Отчет не вернул данных",
51332
"tr": "Rapor hiçbir bütün döndürmedi.",
51333
"xloc": [
51325
- "default.handlebars->39->2727"
51334
+ "default.handlebars->39->2731"
51335
]
51336
},
51337
{
@@ -51344,7 +51353,7 @@
51353
"sv": "Report.csv",
51354
"tr": "Report.csv",
51355
"xloc": [
51347
- "default.handlebars->39->2750"
51356
+ "default.handlebars->39->2754"
51357
]
51358
},
51359
{
@@ -51528,8 +51537,8 @@
51537
"zh-cht": "要求:{0}。",
51538
"xloc": [
51539
"default-mobile.handlebars->11->113",
51531
- "default.handlebars->39->2396",
51532
- "default.handlebars->39->2619"
51540
+ "default.handlebars->39->2400",
51541
+ "default.handlebars->39->2623"
51542
]
51543
},
51544
{
@@ -51973,7 +51982,7 @@
51982
"zh-chs": "限制条件",
51983
"zh-cht": "限制條件",
51984
"xloc": [
51976
- "default.handlebars->39->2510"
51985
+ "default.handlebars->39->2514"
51986
]
51987
},
51988
{
@@ -52705,8 +52714,8 @@
52714
"zh-chs": "短信",
52715
"zh-cht": "短信",
52716
"xloc": [
52708
- "default.handlebars->39->2570",
52709
- "default.handlebars->39->2575",
52717
+ "default.handlebars->39->2574",
52718
+ "default.handlebars->39->2579",
52719
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
52720
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
52721
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -52736,7 +52745,7 @@
52745
"zh-chs": "此用户的短信功能电话号码。",
52746
"zh-cht": "此用戶的短信功能電話號碼。",
52747
"xloc": [
52739
- "default.handlebars->39->2591"
52748
+ "default.handlebars->39->2595"
52749
]
52750
},
52751
{
@@ -52761,7 +52770,7 @@
52770
"zh-chs": "短信错误",
52771
"xloc": [
52772
"default-mobile.handlebars->11->728",
52764
- "default.handlebars->39->2788"
52773
+ "default.handlebars->39->2792"
52774
]
52775
},
52776
{
@@ -52786,7 +52795,7 @@
52795
"zh-chs": "短信错误:{0}",
52796
"xloc": [
52797
"default-mobile.handlebars->11->729",
52789
- "default.handlebars->39->2789"
52798
+ "default.handlebars->39->2793"
52799
]
52800
},
52801
{
@@ -52830,7 +52839,7 @@
52839
"zh-chs": "短信网关未启用",
52840
"xloc": [
52841
"default-mobile.handlebars->11->723",
52833
- "default.handlebars->39->2783"
52842
+ "default.handlebars->39->2787"
52843
]
52844
},
52845
{
@@ -52903,7 +52912,7 @@
52912
"zh-chs": "短信发送成功。",
52913
"xloc": [
52914
"default-mobile.handlebars->11->727",
52906
- "default.handlebars->39->2787"
52915
+ "default.handlebars->39->2791"
52916
]
52917
},
52918
{
@@ -53760,7 +53769,7 @@
53769
"default.handlebars->39->1102",
53770
"default.handlebars->39->1409",
53771
"default.handlebars->39->2085",
53763
- "default.handlebars->39->2571",
53772
+ "default.handlebars->39->2575",
53773
"default.handlebars->39->445",
53774
"default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
53775
]
@@ -53787,7 +53796,7 @@
53796
"zh-chs": "安全密钥",
53797
"zh-cht": "安全密鑰",
53798
"xloc": [
53790
- "default.handlebars->39->2566"
53799
+ "default.handlebars->39->2570"
53800
]
53801
},
53802
{
@@ -53812,7 +53821,7 @@
53821
"zh-chs": "安全警告",
53822
"xloc": [
53823
"default-mobile.handlebars->11->697",
53815
- "default.handlebars->39->2757"
53824
+ "default.handlebars->39->2761"
53825
]
53826
},
53827
{
@@ -53886,8 +53895,8 @@
53895
"default.handlebars->39->1309",
53896
"default.handlebars->39->1311",
53897
"default.handlebars->39->2111",
53889
- "default.handlebars->39->2338",
53890
- "default.handlebars->39->2424",
53898
+ "default.handlebars->39->2342",
53899
+ "default.handlebars->39->2428",
53900
"default.handlebars->39->466",
53901
"default.handlebars->39->616",
53902
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
@@ -53919,7 +53928,7 @@
53928
"xloc": [
53929
"default.handlebars->39->1052",
53930
"default.handlebars->39->1054",
53922
- "default.handlebars->39->2715"
53931
+ "default.handlebars->39->2719"
53932
]
53933
},
53934
{
@@ -53946,8 +53955,8 @@
53955
"xloc": [
53956
"default.handlebars->39->1310",
53957
"default.handlebars->39->2110",
53949
- "default.handlebars->39->2337",
53950
- "default.handlebars->39->2423",
53958
+ "default.handlebars->39->2341",
53959
+ "default.handlebars->39->2427",
53960
"default.handlebars->39->615",
53961
"default.handlebars->meshContextMenu->cxselectnone",
53962
"sharing.handlebars->11->57"
@@ -54099,8 +54108,8 @@
54108
"zh-chs": "选择要对所有选定用户执行的操作。",
54109
"zh-cht": "選擇要對所有選定用戶執行的操作。",
54110
"xloc": [
54102
- "default.handlebars->39->2341",
54103
- "default.handlebars->39->2425"
54111
+ "default.handlebars->39->2345",
54112
+ "default.handlebars->39->2429"
54113
]
54114
},
54115
{
@@ -54278,7 +54287,7 @@
54287
"zh-chs": "发电邮",
54288
"zh-cht": "發電郵",
54289
"xloc": [
54281
- "default.handlebars->39->2352"
54290
+ "default.handlebars->39->2356"
54291
]
54292
},
54293
{
@@ -54354,7 +54363,7 @@
54363
"zh-chs": "发送短信",
54364
"zh-cht": "發送簡訊",
54365
"xloc": [
54357
- "default.handlebars->39->2350"
54366
+ "default.handlebars->39->2354"
54367
]
54368
},
54369
{
@@ -54379,7 +54388,7 @@
54388
"zh-chs": "发送短信给该用户",
54389
"zh-cht": "發送短信給該用戶",
54390
"xloc": [
54382
- "default.handlebars->39->2576"
54391
+ "default.handlebars->39->2580"
54392
]
54393
},
54394
{
@@ -54404,7 +54413,7 @@
54413
"zh-chs": "发送电邮给该用户",
54414
"zh-cht": "發送電郵給該用戶",
54415
"xloc": [
54407
- "default.handlebars->39->2578"
54416
+ "default.handlebars->39->2582"
54417
]
54418
},
54419
{
@@ -54429,7 +54438,7 @@
54438
"zh-chs": "向该组中的所有用户发送通知。",
54439
"zh-cht": "向該群中的所有用戶發送通知。",
54440
"xloc": [
54432
- "default.handlebars->39->2467"
54441
+ "default.handlebars->39->2471"
54442
]
54443
},
54444
{
@@ -54454,7 +54463,7 @@
54463
"zh-chs": "向该用户发送文本通知。",
54464
"zh-cht": "向該用戶發送文本通知。",
54465
"xloc": [
54457
- "default.handlebars->39->2353"
54466
+ "default.handlebars->39->2357"
54467
]
54468
},
54469
{
@@ -54479,7 +54488,7 @@
54488
"zh-chs": "发送电邮给用户",
54489
"zh-cht": "發送電郵給用戶",
54490
"xloc": [
54482
- "default.handlebars->39->2333"
54491
+ "default.handlebars->39->2337"
54492
]
54493
},
54494
{
@@ -54529,7 +54538,7 @@
54538
"zh-chs": "发送邀请电邮。",
54539
"zh-cht": "發送邀請電郵。",
54540
"xloc": [
54532
- "default.handlebars->39->2395"
54541
+ "default.handlebars->39->2399"
54542
]
54543
},
54544
{
@@ -54682,7 +54691,7 @@
54691
"zh-chs": "发送用户通知",
54692
"zh-cht": "發送用戶通知",
54693
"xloc": [
54685
- "default.handlebars->39->2580"
54694
+ "default.handlebars->39->2584"
54695
]
54696
},
54697
{
@@ -54846,7 +54855,7 @@
54855
"zh-chs": "服务器备份",
54856
"zh-cht": "伺服器備份",
54857
"xloc": [
54849
- "default.handlebars->39->2405"
54858
+ "default.handlebars->39->2409"
54859
]
54860
},
54861
{
@@ -54871,7 +54880,7 @@
54880
"zh-chs": "服务器证书",
54881
"zh-cht": "伺服器憑證",
54882
"xloc": [
54874
- "default.handlebars->39->2863"
54883
+ "default.handlebars->39->2867"
54884
]
54885
},
54886
{
@@ -54920,7 +54929,7 @@
54929
"zh-chs": "服务器数据库",
54930
"zh-cht": "伺服器數據庫",
54931
"xloc": [
54923
- "default.handlebars->39->2864"
54932
+ "default.handlebars->39->2868"
54933
]
54934
},
54935
{
@@ -54949,7 +54958,7 @@
54958
"default-mobile.handlebars->11->670",
54959
"default.handlebars->39->1982",
54960
"default.handlebars->39->2013",
54952
- "default.handlebars->39->2402",
54961
+ "default.handlebars->39->2406",
54962
"default.handlebars->39->975",
54963
"default.handlebars->39->997"
54964
]
@@ -55001,7 +55010,7 @@
55010
"zh-chs": "服务器限制",
55011
"xloc": [
55012
"default-mobile.handlebars->11->696",
55004
- "default.handlebars->39->2756"
55013
+ "default.handlebars->39->2760"
55014
]
55015
},
55016
{
@@ -55050,8 +55059,8 @@
55059
"zh-chs": "服务器权限",
55060
"zh-cht": "伺服器權限",
55061
"xloc": [
55053
- "default.handlebars->39->2325",
55054
- "default.handlebars->39->2417"
55062
+ "default.handlebars->39->2329",
55063
+ "default.handlebars->39->2421"
55064
]
55065
},
55066
{
@@ -55076,7 +55085,7 @@
55085
"zh-chs": "服务器配额",
55086
"zh-cht": "伺服器配額",
55087
"xloc": [
55079
- "default.handlebars->39->2540"
55088
+ "default.handlebars->39->2544"
55089
]
55090
},
55091
{
@@ -55101,7 +55110,7 @@
55110
"zh-chs": "服务器还原",
55111
"zh-cht": "伺服器還原",
55112
"xloc": [
55104
- "default.handlebars->39->2406"
55113
+ "default.handlebars->39->2410"
55114
]
55115
},
55116
{
@@ -55126,7 +55135,7 @@
55135
"zh-chs": "服务器权限",
55136
"zh-cht": "伺服器權限",
55137
"xloc": [
55129
- "default.handlebars->39->2539"
55138
+ "default.handlebars->39->2543"
55139
]
55140
},
55141
{
@@ -55151,7 +55160,7 @@
55160
"zh-chs": "服务器状态",
55161
"zh-cht": "伺服器狀態",
55162
"xloc": [
55154
- "default.handlebars->39->2794"
55163
+ "default.handlebars->39->2798"
55164
]
55165
},
55166
{
@@ -55201,7 +55210,7 @@
55210
"zh-chs": "服务器跟踪",
55211
"zh-cht": "伺服器追蹤",
55212
"xloc": [
55204
- "default.handlebars->39->2876"
55213
+ "default.handlebars->39->2880"
55214
]
55215
},
55216
{
@@ -55225,7 +55234,7 @@
55234
"tr": "Sunucu İzleme Etkinliği",
55235
"zh-chs": "服务器跟踪事件",
55236
"xloc": [
55228
- "default.handlebars->39->2855"
55237
+ "default.handlebars->39->2859"
55238
]
55239
},
55240
{
@@ -55301,7 +55310,7 @@
55310
"zh-chs": "服务器更新",
55311
"zh-cht": "伺服器更新",
55312
"xloc": [
55304
- "default.handlebars->39->2407"
55313
+ "default.handlebars->39->2411"
55314
]
55315
},
55316
{
@@ -55551,7 +55560,7 @@
55560
"zh-chs": "ServerStats.csv",
55561
"zh-cht": "ServerStats.csv",
55562
"xloc": [
55554
- "default.handlebars->39->2854"
55563
+ "default.handlebars->39->2858"
55564
]
55565
},
55566
{
@@ -55626,8 +55635,8 @@
55635
"zh-chs": "会话",
55636
"zh-cht": "節",
55637
"xloc": [
55629
- "default.handlebars->39->2666",
55630
- "default.handlebars->39->2720",
55638
+ "default.handlebars->39->2670",
55639
+ "default.handlebars->39->2724",
55640
"ssh.handlebars->3->17",
55641
"ssh.handlebars->3->19"
55642
]
@@ -56764,7 +56773,7 @@
56773
"ru": "Показать трафик",
56774
"tr": "Trafiği Göster",
56775
"xloc": [
56767
- "default.handlebars->39->2716"
56776
+ "default.handlebars->39->2720"
56777
]
56778
},
56779
{
@@ -56914,8 +56923,8 @@
56923
"zh-chs": "显示1分钟",
56924
"zh-cht": "顯示1分鐘",
56925
"xloc": [
56917
- "default.handlebars->39->2356",
56918
- "default.handlebars->39->2381"
56926
+ "default.handlebars->39->2360",
56927
+ "default.handlebars->39->2385"
56928
]
56929
},
56930
{
@@ -56940,8 +56949,8 @@
56949
"zh-chs": "显示10秒",
56950
"zh-cht": "顯示10秒",
56951
"xloc": [
56943
- "default.handlebars->39->2355",
56944
- "default.handlebars->39->2380"
56952
+ "default.handlebars->39->2359",
56953
+ "default.handlebars->39->2384"
56954
]
56955
},
56956
{
@@ -56966,8 +56975,8 @@
56975
"zh-chs": "显示5分钟",
56976
"zh-cht": "顯示5分鐘",
56977
"xloc": [
56969
- "default.handlebars->39->2357",
56970
- "default.handlebars->39->2382"
56978
+ "default.handlebars->39->2361",
56979
+ "default.handlebars->39->2386"
56980
]
56981
},
56982
{
@@ -56992,8 +57001,8 @@
57001
"zh-chs": "显示消息,直到被用户拒绝",
57002
"zh-cht": "顯示消息,直到被用戶拒絕",
57003
"xloc": [
56995
- "default.handlebars->39->2354",
56996
- "default.handlebars->39->2379"
57004
+ "default.handlebars->39->2358",
57005
+ "default.handlebars->39->2383"
57006
]
57007
},
57008
{
@@ -57403,8 +57412,8 @@
57412
"zh-chs": "尺寸",
57413
"zh-cht": "尺寸",
57414
"xloc": [
57406
- "default.handlebars->39->2669",
57407
- "default.handlebars->39->2690",
57415
+ "default.handlebars->39->2673",
57416
+ "default.handlebars->39->2694",
57417
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
57418
]
57419
},
@@ -58707,8 +58716,8 @@
58716
"default.handlebars->39->1178",
58717
"default.handlebars->39->260",
58718
"default.handlebars->39->265",
58710
- "default.handlebars->39->2667",
58711
- "default.handlebars->39->2692",
58719
+ "default.handlebars->39->2671",
58720
+ "default.handlebars->39->2696",
58721
"sharing.handlebars->11->14"
58722
]
58723
},
@@ -58761,6 +58770,30 @@
58770
"default-mobile.handlebars->11->374"
58771
]
58772
},
58773
+ {
58774
+ "en": "Started Web-RDP session \\\"{0}\\\".",
58775
+ "xloc": [
58776
+ "default.handlebars->39->2280"
58777
+ ]
58778
+ },
58779
+ {
58780
+ "en": "Started Web-SFTP session \\\"{0}\\\".",
58781
+ "xloc": [
58782
+ "default.handlebars->39->2279"
58783
+ ]
58784
+ },
58785
+ {
58786
+ "en": "Started Web-SSH session \\\"{0}\\\".",
58787
+ "xloc": [
58788
+ "default.handlebars->39->2278"
58789
+ ]
58790
+ },
58791
+ {
58792
+ "en": "Started Web-VNC session \\\"{0}\\\".",
58793
+ "xloc": [
58794
+ "default.handlebars->39->2281"
58795
+ ]
58796
+ },
58797
{
58798
"cs": "Zahájena relace multiplexu pro stolní počítače",
58799
"da": "Startede multiplex session på skrivebordet",
@@ -59207,8 +59240,8 @@
59240
"zh-chs": "状况",
59241
"zh-cht": "狀態",
59242
"xloc": [
59210
- "default.handlebars->39->2610",
59211
- "default.handlebars->39->2685",
59243
+ "default.handlebars->39->2614",
59244
+ "default.handlebars->39->2689",
59245
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
59246
]
59247
},
@@ -59507,7 +59540,7 @@
59540
"zh-chs": "主题",
59541
"zh-cht": "主題",
59542
"xloc": [
59510
- "default.handlebars->39->2351"
59543
+ "default.handlebars->39->2355"
59544
]
59545
},
59546
{
@@ -60476,10 +60509,10 @@
60509
"default.handlebars->39->1022",
60510
"default.handlebars->39->1868",
60511
"default.handlebars->39->1942",
60479
- "default.handlebars->39->2679",
60480
- "default.handlebars->39->2729",
60481
- "default.handlebars->39->2745",
60482
- "default.handlebars->39->2831",
60512
+ "default.handlebars->39->2683",
60513
+ "default.handlebars->39->2733",
60514
+ "default.handlebars->39->2749",
60515
+ "default.handlebars->39->2835",
60516
"default.handlebars->39->392",
60517
"default.handlebars->39->732",
60518
"default.handlebars->39->936",
@@ -60562,8 +60595,8 @@
60595
"zh-cht": "終端機通知",
60596
"xloc": [
60597
"default.handlebars->39->1827",
60565
- "default.handlebars->39->2456",
60566
- "default.handlebars->39->2558",
60598
+ "default.handlebars->39->2460",
60599
+ "default.handlebars->39->2562",
60600
"default.handlebars->39->830"
60601
]
60602
},
@@ -60590,8 +60623,8 @@
60623
"zh-cht": "終端機提示",
60624
"xloc": [
60625
"default.handlebars->39->1826",
60593
- "default.handlebars->39->2455",
60594
- "default.handlebars->39->2557",
60626
+ "default.handlebars->39->2459",
60627
+ "default.handlebars->39->2561",
60628
"default.handlebars->39->829"
60629
]
60630
},
@@ -60616,7 +60649,7 @@
60649
"tr": "Terminal Oturumu",
60650
"zh-chs": "终端会话",
60651
"xloc": [
60619
- "default.handlebars->39->2672"
60652
+ "default.handlebars->39->2676"
60653
]
60654
},
60655
{
@@ -60981,7 +61014,7 @@
61014
"zh-cht": "目前沒有任何通知",
61015
"xloc": [
61016
"default-mobile.handlebars->11->691",
60984
- "default.handlebars->39->2751"
61017
+ "default.handlebars->39->2755"
61018
]
61019
},
61020
{
@@ -61006,7 +61039,7 @@
61039
"zh-chs": "自上次登录以来,此帐户已有 {0} 次登录尝试失败。",
61040
"xloc": [
61041
"default-mobile.handlebars->11->712",
61009
- "default.handlebars->39->2772"
61042
+ "default.handlebars->39->2776"
61043
]
61044
},
61045
{
@@ -61223,9 +61256,9 @@
61256
"zh-chs": "这是嘉宾分享环节",
61257
"xloc": [
61258
"default.handlebars->39->1350",
61226
- "default.handlebars->39->2285",
61227
- "default.handlebars->39->2661",
61228
- "default.handlebars->39->2662"
61259
+ "default.handlebars->39->2289",
61260
+ "default.handlebars->39->2665",
61261
+ "default.handlebars->39->2666"
61262
]
61263
},
61264
{
@@ -61620,8 +61653,8 @@
61653
"xloc": [
61654
"default-mobile.handlebars->11->351",
61655
"default.handlebars->39->1063",
61623
- "default.handlebars->39->2713",
61624
- "default.handlebars->39->2718",
61656
+ "default.handlebars->39->2717",
61657
+ "default.handlebars->39->2722",
61658
"player.handlebars->3->17"
61659
]
61660
},
@@ -61648,7 +61681,7 @@
61681
"zh-cht": "時間範圍",
61682
"xloc": [
61683
"default.handlebars->39->1051",
61651
- "default.handlebars->39->2714"
61684
+ "default.handlebars->39->2718"
61685
]
61686
},
61687
{
@@ -61673,7 +61706,7 @@
61706
"zh-chs": "时间跨度",
61707
"zh-cht": "時間跨度",
61708
"xloc": [
61676
- "default.handlebars->39->2289"
61709
+ "default.handlebars->39->2293"
61710
]
61711
},
61712
{
@@ -61699,7 +61732,7 @@
61732
"zh-cht": "時間範圍",
61733
"xloc": [
61734
"default.handlebars->39->1047",
61702
- "default.handlebars->39->2712"
61735
+ "default.handlebars->39->2716"
61736
]
61737
},
61738
{
@@ -63161,7 +63194,7 @@
63194
"default.handlebars->39->1749",
63195
"default.handlebars->39->1809",
63196
"default.handlebars->39->1899",
63164
- "default.handlebars->39->2702",
63197
+ "default.handlebars->39->2706",
63198
"default.handlebars->39->433",
63199
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
63200
"sharing.handlebars->p11->deskarea0->deskarea4->3"
@@ -63481,7 +63514,7 @@
63514
"zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
63515
"xloc": [
63516
"default.handlebars->39->1744",
63484
- "default.handlebars->39->2882",
63517
+ "default.handlebars->39->2886",
63518
"default.handlebars->39->750"
63519
]
63520
},
@@ -63507,7 +63540,7 @@
63540
"zh-chs": "无法在此模式下添加用户",
63541
"xloc": [
63542
"default-mobile.handlebars->11->708",
63510
- "default.handlebars->39->2768"
63543
+ "default.handlebars->39->2772"
63544
]
63545
},
63546
{
@@ -64042,15 +64075,15 @@
64075
"default.handlebars->39->1794",
64076
"default.handlebars->39->1795",
64077
"default.handlebars->39->181",
64045
- "default.handlebars->39->2654",
64046
- "default.handlebars->39->2671",
64047
- "default.handlebars->39->2678",
64048
- "default.handlebars->39->2739",
64049
- "default.handlebars->39->2740",
64050
- "default.handlebars->39->2741",
64051
- "default.handlebars->39->2742",
64078
+ "default.handlebars->39->2658",
64079
+ "default.handlebars->39->2675",
64080
+ "default.handlebars->39->2682",
64081
"default.handlebars->39->2743",
64053
- "default.handlebars->39->2748",
64082
+ "default.handlebars->39->2744",
64083
+ "default.handlebars->39->2745",
64084
+ "default.handlebars->39->2746",
64085
+ "default.handlebars->39->2747",
64086
+ "default.handlebars->39->2752",
64087
"default.handlebars->39->44",
64088
"default.handlebars->39->51",
64089
"default.handlebars->39->52",
@@ -64105,7 +64138,7 @@
64138
"zh-chs": "未知动作",
64139
"zh-cht": "未知動作",
64140
"xloc": [
64108
- "default.handlebars->39->2800"
64141
+ "default.handlebars->39->2804"
64142
]
64143
},
64144
{
@@ -64130,8 +64163,8 @@
64163
"zh-chs": "未知设备",
64164
"zh-cht": "未知裝置",
64165
"xloc": [
64133
- "default.handlebars->39->2481",
64134
- "default.handlebars->39->2640"
64166
+ "default.handlebars->39->2485",
64167
+ "default.handlebars->39->2644"
64168
]
64169
},
64170
{
@@ -64156,9 +64189,9 @@
64189
"zh-chs": "未知设备组",
64190
"zh-cht": "未知裝置群",
64191
"xloc": [
64159
- "default.handlebars->39->2475",
64160
- "default.handlebars->39->2628",
64161
- "default.handlebars->39->2804"
64192
+ "default.handlebars->39->2479",
64193
+ "default.handlebars->39->2632",
64194
+ "default.handlebars->39->2808"
64195
]
64196
},
64197
{
@@ -64183,7 +64216,7 @@
64216
"zh-chs": "未知群组",
64217
"zh-cht": "未知群組",
64218
"xloc": [
64186
- "default.handlebars->39->2796"
64219
+ "default.handlebars->39->2800"
64220
]
64221
},
64222
{
@@ -64228,8 +64261,8 @@
64261
"ru": "Неизвестный пользователь",
64262
"tr": "Bilinmeyen kullanıcı",
64263
"xloc": [
64231
- "default.handlebars->39->2744",
64232
- "default.handlebars->39->2749"
64264
+ "default.handlebars->39->2748",
64265
+ "default.handlebars->39->2753"
64266
]
64267
},
64268
{
@@ -64254,7 +64287,7 @@
64287
"zh-chs": "未知用户组",
64288
"zh-cht": "未知用戶群",
64289
"xloc": [
64257
- "default.handlebars->39->2634"
64290
+ "default.handlebars->39->2638"
64291
]
64292
},
64293
{
@@ -64359,7 +64392,7 @@
64392
"zh-chs": "解锁帐户",
64393
"zh-cht": "解鎖帳戶",
64394
"xloc": [
64362
- "default.handlebars->39->2344"
64395
+ "default.handlebars->39->2348"
64396
]
64397
},
64398
{
@@ -64484,7 +64517,7 @@
64517
"zh-chs": "最新",
64518
"zh-cht": "最新",
64519
"xloc": [
64487
- "default.handlebars->39->2887"
64520
+ "default.handlebars->39->2891"
64521
]
64522
},
64523
{
@@ -65032,7 +65065,7 @@
65065
"tr": "kullanım",
65066
"zh-chs": "用法",
65067
"xloc": [
65035
- "default.handlebars->39->2850"
65068
+ "default.handlebars->39->2854"
65069
]
65070
},
65071
{
@@ -65230,8 +65263,8 @@
65263
"zh-chs": "用过的",
65264
"zh-cht": "用過的",
65265
"xloc": [
65233
- "default.handlebars->39->2790",
65234
- "default.handlebars->39->2792"
65266
+ "default.handlebars->39->2794",
65267
+ "default.handlebars->39->2796"
65268
]
65269
},
65270
{
@@ -65258,12 +65291,12 @@
65291
"xloc": [
65292
"default.handlebars->39->113",
65293
"default.handlebars->39->1864",
65261
- "default.handlebars->39->2296",
65262
- "default.handlebars->39->2326",
65263
- "default.handlebars->39->2471",
65264
- "default.handlebars->39->2697",
65265
- "default.handlebars->39->2703",
65266
- "default.handlebars->39->2721",
65294
+ "default.handlebars->39->2300",
65295
+ "default.handlebars->39->2330",
65296
+ "default.handlebars->39->2475",
65297
+ "default.handlebars->39->2701",
65298
+ "default.handlebars->39->2707",
65299
+ "default.handlebars->39->2725",
65300
"default.handlebars->39->338",
65301
"default.handlebars->39->931"
65302
]
@@ -65290,7 +65323,7 @@
65323
"zh-chs": "用户+档案",
65324
"zh-cht": "用戶+檔案",
65325
"xloc": [
65293
- "default.handlebars->39->2327"
65326
+ "default.handlebars->39->2331"
65327
]
65328
},
65329
{
@@ -65316,10 +65349,10 @@
65349
"zh-cht": "用戶帳戶導入",
65350
"xloc": [
65351
"default.handlebars->39->1894",
65319
- "default.handlebars->39->2362",
65320
- "default.handlebars->39->2363",
65321
- "default.handlebars->39->2365",
65322
- "default.handlebars->39->2367"
65352
+ "default.handlebars->39->2366",
65353
+ "default.handlebars->39->2367",
65354
+ "default.handlebars->39->2369",
65355
+ "default.handlebars->39->2371"
65356
]
65357
},
65358
{
@@ -65344,7 +65377,7 @@
65377
"zh-chs": "用户帐户",
65378
"zh-cht": "用戶帳戶",
65379
"xloc": [
65347
- "default.handlebars->39->2809"
65380
+ "default.handlebars->39->2813"
65381
]
65382
},
65383
{
@@ -65398,8 +65431,8 @@
65431
"xloc": [
65432
"default.handlebars->39->1056",
65433
"default.handlebars->39->1833",
65401
- "default.handlebars->39->2462",
65402
- "default.handlebars->39->2564",
65434
+ "default.handlebars->39->2466",
65435
+ "default.handlebars->39->2568",
65436
"default.handlebars->39->275",
65437
"default.handlebars->39->836"
65438
]
@@ -65428,9 +65461,9 @@
65461
"xloc": [
65462
"default.handlebars->39->1962",
65463
"default.handlebars->39->1963",
65431
- "default.handlebars->39->2432",
65432
- "default.handlebars->39->2636",
65433
- "default.handlebars->39->2657",
65464
+ "default.handlebars->39->2436",
65465
+ "default.handlebars->39->2640",
65466
+ "default.handlebars->39->2661",
65467
"default.handlebars->39->930"
65468
]
65469
},
@@ -65481,7 +65514,7 @@
65514
"zh-chs": "用户组成员",
65515
"zh-cht": "用戶群成員",
65516
"xloc": [
65484
- "default.handlebars->39->2633"
65517
+ "default.handlebars->39->2637"
65518
]
65519
},
65520
{
@@ -65532,8 +65565,8 @@
65565
"zh-cht": "用戶識別碼",
65566
"xloc": [
65567
"default.handlebars->39->2031",
65535
- "default.handlebars->39->2518",
65536
- "default.handlebars->39->2519"
65568
+ "default.handlebars->39->2522",
65569
+ "default.handlebars->39->2523"
65570
]
65571
},
65572
{
@@ -65559,7 +65592,7 @@
65592
"zh-cht": "用戶標識符",
65593
"xloc": [
65594
"default.handlebars->39->1960",
65562
- "default.handlebars->39->2502"
65595
+ "default.handlebars->39->2506"
65596
]
65597
},
65598
{
@@ -65608,7 +65641,7 @@
65641
"zh-chs": "用户列表输出",
65642
"zh-cht": "用戶列表輸出",
65643
"xloc": [
65611
- "default.handlebars->39->2374"
65644
+ "default.handlebars->39->2378"
65645
]
65646
},
65647
{
@@ -65754,7 +65787,7 @@
65787
"zh-chs": "用户节",
65788
"zh-cht": "用戶節",
65789
"xloc": [
65757
- "default.handlebars->39->2841"
65790
+ "default.handlebars->39->2845"
65791
]
65792
},
65793
{
@@ -65802,7 +65835,7 @@
65835
"ru": "Расход трафика пользователями",
65836
"tr": "Kullanıcı Trafiği Kullanımı",
65837
"xloc": [
65805
- "default.handlebars->39->2701"
65838
+ "default.handlebars->39->2705"
65839
]
65840
},
65841
{
@@ -65902,7 +65935,7 @@
65935
"zh-chs": "用户已存在",
65936
"xloc": [
65937
"default-mobile.handlebars->11->707",
65905
- "default.handlebars->39->2767"
65938
+ "default.handlebars->39->2771"
65939
]
65940
},
65941
{
@@ -66125,7 +66158,7 @@
66158
"zh-chs": "未找到用户 {0}。",
66159
"xloc": [
66160
"default-mobile.handlebars->11->715",
66128
- "default.handlebars->39->2775"
66161
+ "default.handlebars->39->2779"
66162
]
66163
},
66164
{
@@ -66186,7 +66219,7 @@
66219
"default.handlebars->39->1772",
66220
"default.handlebars->39->1777",
66221
"default.handlebars->39->1811",
66189
- "default.handlebars->39->2386",
66222
+ "default.handlebars->39->2390",
66223
"default.handlebars->39->304",
66224
"default.handlebars->39->442",
66225
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
@@ -66332,9 +66365,9 @@
66365
"zh-chs": "用户",
66366
"zh-cht": "用戶",
66367
"xloc": [
66335
- "default.handlebars->39->2420",
66336
- "default.handlebars->39->2463",
66337
- "default.handlebars->39->2840",
66368
+ "default.handlebars->39->2424",
66369
+ "default.handlebars->39->2467",
66370
+ "default.handlebars->39->2844",
66371
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
66372
]
66373
},
@@ -66360,7 +66393,7 @@
66393
"zh-chs": "用户会话",
66394
"zh-cht": "用戶節",
66395
"xloc": [
66363
- "default.handlebars->39->2813"
66396
+ "default.handlebars->39->2817"
66397
]
66398
},
66399
{
@@ -66384,7 +66417,7 @@
66417
"tr": "Kullanıcılar Görünümü",
66418
"zh-chs": "用户视图",
66419
"xloc": [
66387
- "default.handlebars->39->2360"
66420
+ "default.handlebars->39->2364"
66421
]
66422
},
66423
{
@@ -66409,7 +66442,7 @@
66442
"zh-chs": "未找到用户 {0}。",
66443
"xloc": [
66444
"default-mobile.handlebars->11->716",
66412
- "default.handlebars->39->2776"
66445
+ "default.handlebars->39->2780"
66446
]
66447
},
66448
{
@@ -66533,7 +66566,7 @@
66566
"zh-chs": "验证电邮",
66567
"zh-cht": "驗證電郵",
66568
"xloc": [
66536
- "default.handlebars->39->2339"
66569
+ "default.handlebars->39->2343"
66570
]
66571
},
66572
{
@@ -66558,7 +66591,7 @@
66591
"zh-chs": "验证异常",
66592
"xloc": [
66593
"default-mobile.handlebars->11->709",
66561
- "default.handlebars->39->2769"
66594
+ "default.handlebars->39->2773"
66595
]
66596
},
66597
{
@@ -66711,7 +66744,7 @@
66744
"zh-chs": "已验证",
66745
"zh-cht": "已驗證",
66746
"xloc": [
66714
- "default.handlebars->39->2612"
66747
+ "default.handlebars->39->2616"
66748
]
66749
},
66750
{
@@ -66764,7 +66797,7 @@
66797
"xloc": [
66798
"default-mobile.handlebars->11->87",
66799
"default.handlebars->39->1461",
66767
- "default.handlebars->39->2335"
66800
+ "default.handlebars->39->2339"
66801
]
66802
},
66803
{
@@ -66898,7 +66931,7 @@
66931
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
66932
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
66933
"xloc": [
66901
- "default.handlebars->39->2883"
66934
+ "default.handlebars->39->2887"
66935
]
66936
},
66937
{
@@ -67046,7 +67079,7 @@
67079
"zh-chs": "查看所有事件",
67080
"zh-cht": "查看所有事件",
67081
"xloc": [
67049
- "default.handlebars->39->2411"
67082
+ "default.handlebars->39->2415"
67083
]
67084
},
67085
{
@@ -67092,8 +67125,8 @@
67125
"zh-chs": "查看变更日志",
67126
"zh-cht": "查看變更日誌",
67127
"xloc": [
67095
- "default.handlebars->39->2886",
67096
- "default.handlebars->39->2888"
67128
+ "default.handlebars->39->2890",
67129
+ "default.handlebars->39->2892"
67130
]
67131
},
67132
{
@@ -67168,7 +67201,7 @@
67201
"zh-chs": "查看有关此用户的注释",
67202
"zh-cht": "查看有關此用戶的註釋",
67203
"xloc": [
67171
- "default.handlebars->39->2574"
67204
+ "default.handlebars->39->2578"
67205
]
67206
},
67207
{
@@ -67217,7 +67250,7 @@
67250
"tr": "Bu kullanıcı için önceki girişleri görüntüle",
67251
"zh-chs": "查看此用户以前的登录",
67252
"xloc": [
67220
- "default.handlebars->39->2587"
67253
+ "default.handlebars->39->2591"
67254
]
67255
},
67256
{
@@ -67726,8 +67759,8 @@
67759
"zh-chs": "网络服务器",
67760
"zh-cht": "網絡伺服器",
67761
"xloc": [
67729
- "default.handlebars->39->2866",
67730
- "default.handlebars->39->2867"
67762
+ "default.handlebars->39->2870",
67763
+ "default.handlebars->39->2871"
67764
]
67765
},
67766
{
@@ -67751,7 +67784,7 @@
67784
"tr": "Web Sunucusu HTTP Başlıkları",
67785
"zh-chs": "Web 服务器 HTTP 标头",
67786
"xloc": [
67754
- "default.handlebars->39->2870"
67787
+ "default.handlebars->39->2874"
67788
]
67789
},
67790
{
@@ -67776,7 +67809,7 @@
67809
"zh-chs": "Web服务器请求",
67810
"zh-cht": "Web伺服器請求",
67811
"xloc": [
67779
- "default.handlebars->39->2868"
67812
+ "default.handlebars->39->2872"
67813
]
67814
},
67815
{
@@ -67801,7 +67834,7 @@
67834
"zh-chs": "Web套接字中继",
67835
"zh-cht": "Web插座中繼",
67836
"xloc": [
67804
- "default.handlebars->39->2869"
67837
+ "default.handlebars->39->2873"
67838
]
67839
},
67840
{
@@ -67826,7 +67859,7 @@
67859
"zh-chs": "网络RDP",
67860
"zh-cht": "網絡RDP",
67861
"xloc": [
67829
- "default.handlebars->39->2735",
67862
+ "default.handlebars->39->2739",
67863
"default.handlebars->39->905",
67864
"default.handlebars->contextMenu->cxwebrdp"
67865
]
@@ -67847,7 +67880,7 @@
67880
"ru": "Web-SFTP",
67881
"tr": "Web-SFTP",
67882
"xloc": [
67850
- "default.handlebars->39->2737"
67883
+ "default.handlebars->39->2741"
67884
]
67885
},
67886
{
@@ -67871,7 +67904,7 @@
67904
"tr": "Web-SSH",
67905
"zh-chs": "网络SSH",
67906
"xloc": [
67874
- "default.handlebars->39->2736",
67907
+ "default.handlebars->39->2740",
67908
"default.handlebars->39->907",
67909
"default.handlebars->contextMenu->cxwebssh"
67910
]
@@ -67897,7 +67930,7 @@
67930
"tr": "Web-VNC",
67931
"zh-chs": "网络VNC",
67932
"xloc": [
67900
- "default.handlebars->39->2738",
67933
+ "default.handlebars->39->2742",
67934
"default.handlebars->39->903",
67935
"default.handlebars->contextMenu->cxwebvnc"
67936
]
@@ -67923,7 +67956,7 @@
67956
"tr": "WebRDP",
67957
"zh-chs": "网络RDP",
67958
"xloc": [
67926
- "default.handlebars->39->2834"
67959
+ "default.handlebars->39->2838"
67960
]
67961
},
67962
{
@@ -67947,7 +67980,7 @@
67980
"tr": "WebSSH",
67981
"zh-chs": "网络SSH",
67982
"xloc": [
67950
- "default.handlebars->39->2835"
67983
+ "default.handlebars->39->2839"
67984
]
67985
},
67986
{
@@ -67990,7 +68023,7 @@
68023
"tr": "WebVNC",
68024
"zh-chs": "网络VNC",
68025
"xloc": [
67993
- "default.handlebars->39->2836"
68026
+ "default.handlebars->39->2840"
68027
]
68028
},
68029
{
@@ -68233,7 +68266,7 @@
68266
"zh-chs": "下次登录时将更改。",
68267
"zh-cht": "下次登入時將更改。",
68268
"xloc": [
68236
- "default.handlebars->39->2544"
68269
+ "default.handlebars->39->2548"
68270
]
68271
},
68272
{
@@ -70041,7 +70074,7 @@
70074
"zh-chs": "\\\\'",
70075
"zh-cht": "\\\\'",
70076
"xloc": [
70044
- "default.handlebars->39->2884"
70077
+ "default.handlebars->39->2888"
70078
]
70079
},
70080
{
@@ -70703,8 +70736,8 @@
70736
"zh-chs": "eventslist.csv",
70737
"zh-cht": "eventslist.csv",
70738
"xloc": [
70706
- "default.handlebars->39->2303",
70707
- "default.handlebars->39->2308"
70739
+ "default.handlebars->39->2307",
70740
+ "default.handlebars->39->2312"
70741
]
70742
},
70743
{
@@ -70729,8 +70762,8 @@
70762
"zh-chs": "eventslist.json",
70763
"zh-cht": "eventslist.json",
70764
"xloc": [
70732
- "default.handlebars->39->2305",
70733
- "default.handlebars->39->2309"
70765
+ "default.handlebars->39->2309",
70766
+ "default.handlebars->39->2313"
70767
]
70768
},
70769
{
@@ -70805,8 +70838,8 @@
70838
"zh-chs": "免费",
70839
"zh-cht": "免費",
70840
"xloc": [
70808
- "default.handlebars->39->2821",
70809
- "default.handlebars->39->2824"
70841
+ "default.handlebars->39->2825",
70842
+ "default.handlebars->39->2828"
70843
]
70844
},
70845
{
@@ -71071,7 +71104,7 @@
71104
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
71105
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
71106
"xloc": [
71074
- "default.handlebars->39->2375"
71107
+ "default.handlebars->39->2379"
71108
]
71109
},
71110
{
@@ -71287,7 +71320,7 @@
71320
"zh-chs": "k max,默认为空白",
71321
"zh-cht": "k max,默認為空白",
71322
"xloc": [
71290
- "default.handlebars->39->2403"
71323
+ "default.handlebars->39->2407"
71324
]
71325
},
71326
{
@@ -71914,7 +71947,7 @@
71947
"zh-chs": "servertrace.csv",
71948
"zh-cht": "servertrace.csv",
71949
"xloc": [
71917
- "default.handlebars->39->2878"
71950
+ "default.handlebars->39->2882"
71951
]
71952
},
71953
{
@@ -72016,7 +72049,7 @@
72049
"zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
72050
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
72051
"xloc": [
72019
- "default.handlebars->39->2853"
72052
+ "default.handlebars->39->2857"
72053
]
72054
},
72055
{
@@ -72041,7 +72074,7 @@
72074
"zh-chs": "时间,来源,信息",
72075
"zh-cht": "時間,來源,訊息",
72076
"xloc": [
72044
- "default.handlebars->39->2877"
72077
+ "default.handlebars->39->2881"
72078
]
72079
},
72080
{
@@ -72088,8 +72121,8 @@
72121
"zh-chs": "总计",
72122
"zh-cht": "總",
72123
"xloc": [
72091
- "default.handlebars->39->2822",
72092
- "default.handlebars->39->2825"
72124
+ "default.handlebars->39->2826",
72125
+ "default.handlebars->39->2829"
72126
]
72127
},
72128
{
@@ -72216,8 +72249,8 @@
72249
"zh-chs": "userlist.csv",
72250
"zh-cht": "userlist.csv",
72251
"xloc": [
72219
- "default.handlebars->39->2371",
72220
- "default.handlebars->39->2376"
72252
+ "default.handlebars->39->2375",
72253
+ "default.handlebars->39->2380"
72254
]
72255
},
72256
{
@@ -72242,8 +72275,8 @@
72275
"zh-chs": "userlist.json",
72276
"zh-cht": "userlist.json",
72277
"xloc": [
72245
- "default.handlebars->39->2373",
72246
- "default.handlebars->39->2377"
72278
+ "default.handlebars->39->2377",
72279
+ "default.handlebars->39->2381"
72280
]
72281
},
72282
{
@@ -72268,7 +72301,7 @@
72301
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
72302
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
72303
"xloc": [
72271
- "default.handlebars->39->2307"
72304
+ "default.handlebars->39->2311"
72305
]
72306
},
72307
{
@@ -72533,7 +72566,7 @@
72566
"xloc": [
72567
"default.handlebars->39->2098",
72568
"default.handlebars->39->2103",
72536
- "default.handlebars->39->2670"
72569
+ "default.handlebars->39->2674"
72570
]
72571
},
72572
{
@@ -72656,7 +72689,7 @@
72689
"zh-chs": "{0}个活跃会话",
72690
"zh-cht": "{0}個活躍節",
72691
"xloc": [
72659
- "default.handlebars->39->2590"
72692
+ "default.handlebars->39->2594"
72693
]
72694
},
72695
{
@@ -72709,7 +72742,7 @@
72742
"xloc": [
72743
"default-mobile.handlebars->11->143",
72744
"default.handlebars->39->2113",
72712
- "default.handlebars->39->2691",
72745
+ "default.handlebars->39->2695",
72746
"download.handlebars->3->2",
72747
"download2.handlebars->5->2",
72748
"sharing.handlebars->11->97"
@@ -72858,7 +72891,7 @@
72891
"zh-chs": "{0}个群组",
72892
"zh-cht": "{0}個群組",
72893
"xloc": [
72861
- "default.handlebars->39->2549"
72894
+ "default.handlebars->39->2553"
72895
]
72896
},
72897
{
@@ -73091,7 +73124,7 @@
73124
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
73125
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
73126
"xloc": [
73094
- "default.handlebars->39->2317"
73127
+ "default.handlebars->39->2321"
73128
]
73129
},
73130
{
@@ -73490,7 +73523,7 @@
73523
"default-mobile.handlebars->11->212",
73524
"default-mobile.handlebars->11->216",
73525
"default-mobile.handlebars->11->220",
73493
- "default.handlebars->39->2321",
73526
+ "default.handlebars->39->2325",
73527
"default.handlebars->39->384",
73528
"default.handlebars->39->387",
73529
"default.handlebars->39->391",