Added personal notes.
Ylian Saint-Hilaire committed
Mar 25, 2021 at 13:28 UTC
a53b030345257dd939f4b4915d5fae0b3952cc17
11 files changed
+1635
-1540
MeshCentralServer.njsproj
+1
-1
@@ -553,7 +553,7 @@
553
<Content Include="translate\translate.json" />
554
<Content Include="views\agentinvite.handlebars" />
555
<Content Include="views\default-mobile.handlebars" />
556
- <Content Include="views\default.handlebars" />
556
+ <Content Include="views\default2.handlebars" />
557
<Content Include="views\desktop.handlebars" />
558
<Content Include="views\download.handlebars" />
559
<Content Include="views\download2.handlebars" />
agents/MeshCmd-signed.exe
Binary files a/agents/MeshCmd-signed.exe and b/agents/MeshCmd-signed.exe differ
agents/MeshCmd64-signed.exe
Binary files a/agents/MeshCmd64-signed.exe and b/agents/MeshCmd64-signed.exe differ
meshuser.js
+21
-5
@@ -1782,9 +1782,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1782
}
1783
}
1784
1785
- db.Remove('ws' + deluser._id); // Remove user web state
1786
- db.Remove('nt' + deluser._id); // Remove notes for this user
1787
- db.Remove('im' + deluser._id); // Remove image for this user
1785
+ db.Remove('ws' + deluser._id); // Remove user web state
1786
+ db.Remove('nt' + deluser._id); // Remove notes for this user
1787
+ db.Remove('ntp' + deluser._id); // Remove personal notes for this user
1788
+ db.Remove('im' + deluser._id); // Remove image for this user
1789
1790
// Delete all files on the server for this account
1791
try {
@@ -4289,7 +4290,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4290
var splitid = command.id.split('/');
4291
if ((splitid.length != 3) || (splitid[1] != domain.id)) return; // Invalid domain, operation only valid for current domain
4292
var idtype = splitid[0];
4292
- if ((idtype != 'user') && (idtype != 'mesh') && (idtype != 'node')) return;
4293
+ if ((idtype != 'puser') && (idtype != 'user') && (idtype != 'mesh') && (idtype != 'node')) return;
4294
4295
if (idtype == 'node') {
4296
// Get the node and the rights for this node
@@ -4328,6 +4329,13 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4329
if ((user.groups != null) && (user.groups.length > 0) && ((chguser.groups == null) || (findOne(chguser.groups, user.groups) == false))) break;
4330
db.Set({ _id: 'nt' + command.id, type: 'note', value: command.notes }); // Set the note for this user
4331
}
4332
+ } else if (idtype == 'puser') {
4333
+ // Set the user's personal note, starts with 'ntp' + userid.
4334
+ if (common.validateString(command.notes, 1) == false) {
4335
+ db.Remove('ntp' + user._id); // Delete the note for this node
4336
+ } else {
4337
+ db.Set({ _id: 'ntp' + user._id, type: 'note', value: command.notes }); // Set the note for this user
4338
+ }
4339
}
4340
4341
break;
@@ -4761,7 +4769,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4769
var splitid = command.id.split('/');
4770
if ((splitid.length != 3) || (splitid[1] != domain.id)) return; // Invalid domain, operation only valid for current domain
4771
var idtype = splitid[0];
4764
- if ((idtype != 'user') && (idtype != 'mesh') && (idtype != 'node')) return;
4772
+ if ((idtype != 'puser') && (idtype != 'user') && (idtype != 'mesh') && (idtype != 'node')) return;
4773
4774
if (idtype == 'node') {
4775
// Get the node and the rights for this node
@@ -4799,6 +4807,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4807
ws.send(JSON.stringify({ action: 'getNotes', id: command.id, notes: notes[0].value }));
4808
} catch (ex) { }
4809
});
4810
+ } else if (idtype == 'puser') {
4811
+ // Get personal note, starts with 'ntp' + userid
4812
+ db.Get('ntp' + user._id, function (err, notes) {
4813
+ try {
4814
+ if ((notes == null) || (notes.length != 1)) { ws.send(JSON.stringify({ action: 'getNotes', id: command.id, notes: null })); return; }
4815
+ ws.send(JSON.stringify({ action: 'getNotes', id: command.id, notes: notes[0].value }));
4816
+ } catch (ex) { }
4817
+ });
4818
}
4819
4820
break;
public/images/views.png
Binary files a/public/images/views.png and b/public/images/views.png differ
public/styles/style.css
+7
@@ -2995,6 +2995,13 @@ a {
2995
width: 28px;
2996
}
2997
2998
+.uiSelector6 {
2999
+ margin: 2px;
3000
+ background: url(../images/views.png) -392px 0px;
3001
+ height: 28px;
3002
+ width: 28px;
3003
+}
3004
+
3005
.backButton {
3006
width: 32px;
3007
height: 32px;
translate/translate.js
+21
-16
@@ -357,22 +357,27 @@ function startEx(argv) {
357
if (outname.endsWith('.handlebars') >= 0) { inFile = inFile.split('{{{pluginHandler}}}').join('"{{{pluginHandler}}}"'); }
358
if (outname.endsWith('.js')) { inFile = '<script>' + inFile + '</script>'; }
359
360
- var minifiedOut = minify(inFile, {
361
- collapseBooleanAttributes: true,
362
- collapseInlineTagWhitespace: false, // This is not good.
363
- collapseWhitespace: true,
364
- minifyCSS: true,
365
- minifyJS: true,
366
- removeComments: true,
367
- removeOptionalTags: true,
368
- removeEmptyAttributes: true,
369
- removeAttributeQuotes: true,
370
- removeRedundantAttributes: true,
371
- removeScriptTypeAttributes: true,
372
- removeTagWhitespace: true,
373
- preserveLineBreaks: false,
374
- useShortDoctype: true
375
- });
360
+ var minifiedOut = null;
361
+ try {
362
+ minifiedOut = minify(inFile, {
363
+ collapseBooleanAttributes: true,
364
+ collapseInlineTagWhitespace: false, // This is not good.
365
+ collapseWhitespace: true,
366
+ minifyCSS: true,
367
+ minifyJS: true,
368
+ removeComments: true,
369
+ removeOptionalTags: true,
370
+ removeEmptyAttributes: true,
371
+ removeAttributeQuotes: true,
372
+ removeRedundantAttributes: true,
373
+ removeScriptTypeAttributes: true,
374
+ removeTagWhitespace: true,
375
+ preserveLineBreaks: false,
376
+ useShortDoctype: true
377
+ });
378
+ } catch (ex) {
379
+ console.log(ex);
380
+ }
381
382
// Perform minification post-processing
383
if (outname.endsWith('.js')) { minifiedOut = minifiedOut.substring(8, minifiedOut.length - 9); }
translate/translate.json
+1566
-1510
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1486",
21
- "default.handlebars->31->1488"
20
+ "default.handlebars->31->1495",
21
+ "default.handlebars->31->1497"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1399"
207
+ "default.handlebars->31->1408"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1563",
228
- "default.handlebars->31->2046"
227
+ "default.handlebars->31->1572",
228
+ "default.handlebars->31->2055"
229
]
230
},
231
{
@@ -432,7 +432,7 @@
432
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434
"xloc": [
435
- "default.handlebars->31->1532",
435
+ "default.handlebars->31->1541",
436
"default.handlebars->31->333"
437
]
438
},
@@ -508,7 +508,7 @@
508
"zh-cht": ",",
509
"xloc": [
510
"default-mobile.handlebars->11->580",
511
- "default.handlebars->31->1634"
511
+ "default.handlebars->31->1643"
512
]
513
},
514
{
@@ -550,7 +550,7 @@
550
"zh-cht": ",MQTT在線",
551
"xloc": [
552
"default-mobile.handlebars->11->497",
553
- "default.handlebars->31->1136"
553
+ "default.handlebars->31->1145"
554
]
555
},
556
{
@@ -598,7 +598,7 @@
598
"zh-chs": ",软体KVM",
599
"zh-cht": ",軟體KVM",
600
"xloc": [
601
- "default.handlebars->31->918",
601
+ "default.handlebars->31->927",
602
"desktop.handlebars->3->12"
603
]
604
},
@@ -637,9 +637,9 @@
637
"xloc": [
638
"default-mobile.handlebars->11->337",
639
"default-mobile.handlebars->11->371",
640
- "default.handlebars->31->925",
641
- "default.handlebars->31->987",
642
- "default.handlebars->31->999",
640
+ "default.handlebars->31->1008",
641
+ "default.handlebars->31->934",
642
+ "default.handlebars->31->996",
643
"desktop.handlebars->3->19",
644
"terminal.handlebars->3->9",
645
"xterm.handlebars->9->6"
@@ -762,7 +762,7 @@
762
"zh-chs": ",{0}观看",
763
"zh-cht": ",{0}觀看",
764
"xloc": [
765
- "default.handlebars->31->919",
765
+ "default.handlebars->31->928",
766
"desktop.handlebars->3->13"
767
]
768
},
@@ -827,9 +827,9 @@
827
"xloc": [
828
"default-mobile.handlebars->11->131",
829
"default-mobile.handlebars->11->373",
830
- "default.handlebars->31->1005",
831
- "default.handlebars->31->1686",
832
- "default.handlebars->31->2209"
830
+ "default.handlebars->31->1014",
831
+ "default.handlebars->31->1695",
832
+ "default.handlebars->31->2218"
833
]
834
},
835
{
@@ -886,7 +886,7 @@
886
"zh-chs": "1个活跃时段",
887
"zh-cht": "1個活躍時段",
888
"xloc": [
889
- "default.handlebars->31->2119"
889
+ "default.handlebars->31->2128"
890
]
891
},
892
{
@@ -908,7 +908,7 @@
908
"xloc": [
909
"default-mobile.handlebars->11->141",
910
"default-mobile.handlebars->11->623",
911
- "default.handlebars->31->1710",
911
+ "default.handlebars->31->1719",
912
"download.handlebars->3->1",
913
"download2.handlebars->5->1"
914
]
@@ -930,7 +930,7 @@
930
"zh-chs": "1条连接",
931
"zh-cht": "1位聯絡文",
932
"xloc": [
933
- "default.handlebars->31->921",
933
+ "default.handlebars->31->930",
934
"desktop.handlebars->3->15"
935
]
936
},
@@ -973,7 +973,7 @@
973
"zh-chs": "1组",
974
"zh-cht": "1群",
975
"xloc": [
976
- "default.handlebars->31->2080"
976
+ "default.handlebars->31->2089"
977
]
978
},
979
{
@@ -1077,7 +1077,7 @@
1077
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1078
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1079
"xloc": [
1080
- "default.handlebars->31->1870"
1080
+ "default.handlebars->31->1879"
1081
]
1082
},
1083
{
@@ -1143,7 +1143,7 @@
1143
"default-mobile.handlebars->11->203",
1144
"default-mobile.handlebars->11->206",
1145
"default-mobile.handlebars->11->209",
1146
- "default.handlebars->31->1874",
1146
+ "default.handlebars->31->1883",
1147
"default.handlebars->31->277",
1148
"default.handlebars->31->280",
1149
"default.handlebars->31->283",
@@ -1626,7 +1626,7 @@
1626
"zh-chs": "2FA备份代码已清除",
1627
"zh-cht": "2FA備份代碼已清除",
1628
"xloc": [
1629
- "default.handlebars->31->1821"
1629
+ "default.handlebars->31->1830"
1630
]
1631
},
1632
{
@@ -1646,8 +1646,8 @@
1646
"zh-chs": "启用第二因素身份验证",
1647
"zh-cht": "啟用第二因素身份驗證",
1648
"xloc": [
1649
- "default.handlebars->31->1887",
1650
- "default.handlebars->31->2102"
1649
+ "default.handlebars->31->1896",
1650
+ "default.handlebars->31->2111"
1651
]
1652
},
1653
{
@@ -2218,7 +2218,7 @@
2218
"zh-chs": "7天电源状态",
2219
"zh-cht": "7天電源狀態",
2220
"xloc": [
2221
- "default.handlebars->31->846"
2221
+ "default.handlebars->31->855"
2222
]
2223
},
2224
{
@@ -2515,7 +2515,7 @@
2515
"zh-cht": "ACM",
2516
"xloc": [
2517
"default-mobile.handlebars->11->267",
2518
- "default.handlebars->31->1502",
2518
+ "default.handlebars->31->1511",
2519
"default.handlebars->31->615"
2520
]
2521
},
@@ -2708,7 +2708,7 @@
2708
"zh-cht": "拒絕存取",
2709
"xloc": [
2710
"default-mobile.handlebars->11->498",
2711
- "default.handlebars->31->1137"
2711
+ "default.handlebars->31->1146"
2712
]
2713
},
2714
{
@@ -2750,7 +2750,7 @@
2750
"zh-chs": "访问服务器档案",
2751
"zh-cht": "存取伺服器檔案",
2752
"xloc": [
2753
- "default.handlebars->31->2052"
2753
+ "default.handlebars->31->2061"
2754
]
2755
},
2756
{
@@ -2839,9 +2839,9 @@
2839
"default-mobile.handlebars->11->242",
2840
"default-mobile.handlebars->11->244",
2841
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
2842
- "default.handlebars->31->1408",
2843
- "default.handlebars->31->1410",
2844
- "default.handlebars->31->2325",
2842
+ "default.handlebars->31->1417",
2843
+ "default.handlebars->31->1419",
2844
+ "default.handlebars->31->2334",
2845
"default.handlebars->31->584",
2846
"default.handlebars->31->586"
2847
]
@@ -2852,7 +2852,7 @@
2852
"fr": "Paramètres du compte",
2853
"xloc": [
2854
"default-mobile.handlebars->11->591",
2855
- "default.handlebars->31->2217"
2855
+ "default.handlebars->31->2226"
2856
]
2857
},
2858
{
@@ -2913,7 +2913,7 @@
2913
"zh-chs": "帐户已更改:{0}",
2914
"zh-cht": "帳戶已更改:{0}",
2915
"xloc": [
2916
- "default.handlebars->31->1794"
2916
+ "default.handlebars->31->1803"
2917
]
2918
},
2919
{
@@ -2933,7 +2933,7 @@
2933
"zh-chs": "创建帐户,电子邮件为{0}",
2934
"zh-cht": "創建帳戶,電子郵件為{0}",
2935
"xloc": [
2936
- "default.handlebars->31->1793"
2936
+ "default.handlebars->31->1802"
2937
]
2938
},
2939
{
@@ -2953,7 +2953,7 @@
2953
"zh-chs": "创建帐户,用户名是{0}",
2954
"zh-cht": "帳戶已創建,用戶名是{0}",
2955
"xloc": [
2956
- "default.handlebars->31->1792"
2956
+ "default.handlebars->31->1801"
2957
]
2958
},
2959
{
@@ -2973,8 +2973,8 @@
2973
"zh-chs": "帐户已被锁定",
2974
"zh-cht": "帳戶已被鎖定",
2975
"xloc": [
2976
- "default.handlebars->31->1889",
2977
- "default.handlebars->31->2049"
2976
+ "default.handlebars->31->1898",
2977
+ "default.handlebars->31->2058"
2978
]
2979
},
2980
{
@@ -2995,7 +2995,7 @@
2995
"zh-cht": "達到帳戶限制。",
2996
"xloc": [
2997
"default-mobile.handlebars->11->603",
2998
- "default.handlebars->31->2229",
2998
+ "default.handlebars->31->2238",
2999
"login-mobile.handlebars->5->6",
3000
"login.handlebars->5->6",
3001
"login2.handlebars->7->7"
@@ -3040,7 +3040,7 @@
3040
"zh-chs": "帐号登录",
3041
"zh-cht": "帳號登錄",
3042
"xloc": [
3043
- "default.handlebars->31->1729"
3043
+ "default.handlebars->31->1738"
3044
]
3045
},
3046
{
@@ -3048,7 +3048,7 @@
3048
"nl": "Account aanmelding van {0}, {1}, {2}",
3049
"fr": "Connexion de {0}, {1}, {2}",
3050
"xloc": [
3051
- "default.handlebars->31->1835"
3051
+ "default.handlebars->31->1844"
3052
]
3053
},
3054
{
@@ -3068,7 +3068,7 @@
3068
"zh-chs": "帐户登出",
3069
"zh-cht": "帳戶登出",
3070
"xloc": [
3071
- "default.handlebars->31->1730"
3071
+ "default.handlebars->31->1739"
3072
]
3073
},
3074
{
@@ -3110,7 +3110,7 @@
3110
"zh-chs": "帐户密码已更改:{0}",
3111
"zh-cht": "帳戶密碼已更改:{0}",
3112
"xloc": [
3113
- "default.handlebars->31->1802"
3113
+ "default.handlebars->31->1811"
3114
]
3115
},
3116
{
@@ -3130,7 +3130,7 @@
3130
"zh-chs": "帐户已删除",
3131
"zh-cht": "帳戶已刪除",
3132
"xloc": [
3133
- "default.handlebars->31->1791"
3133
+ "default.handlebars->31->1800"
3134
]
3135
},
3136
{
@@ -3171,7 +3171,7 @@
3171
"zh-cht": "指令",
3172
"xloc": [
3173
"default-mobile.handlebars->11->504",
3174
- "default.handlebars->31->1143",
3174
+ "default.handlebars->31->1152",
3175
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3176
]
3177
},
@@ -3192,8 +3192,8 @@
3192
"zh-chs": "动作档案",
3193
"zh-cht": "動作檔案",
3194
"xloc": [
3195
- "default.handlebars->31->892",
3196
- "default.handlebars->31->894"
3195
+ "default.handlebars->31->901",
3196
+ "default.handlebars->31->903"
3197
]
3198
},
3199
{
@@ -3299,7 +3299,7 @@
3299
"zh-chs": "如果ACM失败,则激活到CCM",
3300
"zh-cht": "如果ACM失敗,則激活到CCM",
3301
"xloc": [
3302
- "default.handlebars->31->1523"
3302
+ "default.handlebars->31->1532"
3303
]
3304
},
3305
{
@@ -3322,7 +3322,7 @@
3322
"default-mobile.handlebars->11->262",
3323
"default-mobile.handlebars->11->264",
3324
"default-mobile.handlebars->11->460",
3325
- "default.handlebars->31->1098",
3325
+ "default.handlebars->31->1107",
3326
"default.handlebars->31->608",
3327
"default.handlebars->31->610"
3328
]
@@ -3390,7 +3390,7 @@
3390
"nl": "Toevoegen",
3391
"xloc": [
3392
"default-mobile.handlebars->11->364",
3393
- "default.handlebars->31->956"
3393
+ "default.handlebars->31->965"
3394
]
3395
},
3396
{
@@ -3410,7 +3410,7 @@
3410
"zh-chs": "添加代理",
3411
"zh-cht": "新增代理",
3412
"xloc": [
3413
- "default.handlebars->31->1498",
3413
+ "default.handlebars->31->1507",
3414
"default.handlebars->31->310"
3415
]
3416
},
@@ -3448,8 +3448,8 @@
3448
"zh-chs": "添加设备",
3449
"zh-cht": "新增裝置",
3450
"xloc": [
3451
- "default.handlebars->31->2026",
3452
- "default.handlebars->31->2156"
3451
+ "default.handlebars->31->2035",
3452
+ "default.handlebars->31->2165"
3453
]
3454
},
3455
{
@@ -3489,9 +3489,9 @@
3489
"zh-chs": "添加设备组",
3490
"zh-cht": "新增裝置群",
3491
"xloc": [
3492
- "default.handlebars->31->1598",
3493
- "default.handlebars->31->2020",
3494
- "default.handlebars->31->2144",
3492
+ "default.handlebars->31->1607",
3493
+ "default.handlebars->31->2029",
3494
+ "default.handlebars->31->2153",
3495
"default.handlebars->31->247"
3496
]
3497
},
@@ -3512,7 +3512,7 @@
3512
"zh-chs": "添加设备组权限",
3513
"zh-cht": "新增裝置群權限",
3514
"xloc": [
3515
- "default.handlebars->31->1595"
3515
+ "default.handlebars->31->1604"
3516
]
3517
},
3518
{
@@ -3532,8 +3532,8 @@
3532
"zh-chs": "添加设备权限",
3533
"zh-cht": "新增裝置權限",
3534
"xloc": [
3535
- "default.handlebars->31->1600",
3536
- "default.handlebars->31->1602"
3535
+ "default.handlebars->31->1609",
3536
+ "default.handlebars->31->1611"
3537
]
3538
},
3539
{
@@ -3630,7 +3630,7 @@
3630
"zh-chs": "添加成员身份",
3631
"zh-cht": "新增成員身份",
3632
"xloc": [
3633
- "default.handlebars->31->2176"
3633
+ "default.handlebars->31->2185"
3634
]
3635
},
3636
{
@@ -3670,8 +3670,8 @@
3670
"zh-chs": "添加安全密钥",
3671
"zh-cht": "新增安全密鑰",
3672
"xloc": [
3673
- "default.handlebars->31->1175",
3674
- "default.handlebars->31->1176",
3673
+ "default.handlebars->31->1184",
3674
+ "default.handlebars->31->1185",
3675
"default.handlebars->31->164",
3676
"default.handlebars->31->166",
3677
"default.handlebars->31->169",
@@ -3716,7 +3716,7 @@
3716
"zh-chs": "添加用户设备权限",
3717
"zh-cht": "新增用戶裝置權限",
3718
"xloc": [
3719
- "default.handlebars->31->1605"
3719
+ "default.handlebars->31->1614"
3720
]
3721
},
3722
{
@@ -3736,9 +3736,9 @@
3736
"zh-chs": "添加用户组",
3737
"zh-cht": "新增用戶群",
3738
"xloc": [
3739
- "default.handlebars->31->1494",
3740
- "default.handlebars->31->1597",
3741
- "default.handlebars->31->2150",
3739
+ "default.handlebars->31->1503",
3740
+ "default.handlebars->31->1606",
3741
+ "default.handlebars->31->2159",
3742
"default.handlebars->31->726"
3743
]
3744
},
@@ -3759,7 +3759,7 @@
3759
"zh-chs": "添加用户组设备权限",
3760
"zh-cht": "新增用戶群裝置權限",
3761
"xloc": [
3762
- "default.handlebars->31->1607"
3762
+ "default.handlebars->31->1616"
3763
]
3764
},
3765
{
@@ -3816,8 +3816,8 @@
3816
"zh-chs": "添加用户",
3817
"zh-cht": "新增用戶",
3818
"xloc": [
3819
- "default.handlebars->31->1493",
3820
- "default.handlebars->31->2015"
3819
+ "default.handlebars->31->1502",
3820
+ "default.handlebars->31->2024"
3821
]
3822
},
3823
{
@@ -3837,7 +3837,7 @@
3837
"zh-chs": "将用户添加到设备组",
3838
"zh-cht": "將用戶新增到裝置群",
3839
"xloc": [
3840
- "default.handlebars->31->1594"
3840
+ "default.handlebars->31->1603"
3841
]
3842
},
3843
{
@@ -3857,7 +3857,7 @@
3857
"zh-chs": "将用户添加到用户组",
3858
"zh-cht": "將用戶新增到用戶群",
3859
"xloc": [
3860
- "default.handlebars->31->2048"
3860
+ "default.handlebars->31->2057"
3861
]
3862
},
3863
{
@@ -3974,7 +3974,7 @@
3974
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3975
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3976
"xloc": [
3977
- "default.handlebars->31->1497",
3977
+ "default.handlebars->31->1506",
3978
"default.handlebars->31->309"
3979
]
3980
},
@@ -4035,7 +4035,7 @@
4035
"zh-chs": "添加了身份验证应用程序",
4036
"zh-cht": "添加了身份驗證應用程序",
4037
"xloc": [
4038
- "default.handlebars->31->1818"
4038
+ "default.handlebars->31->1827"
4039
]
4040
},
4041
{
@@ -4055,7 +4055,7 @@
4055
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4056
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4057
"xloc": [
4058
- "default.handlebars->31->1829"
4058
+ "default.handlebars->31->1838"
4059
]
4060
},
4061
{
@@ -4075,8 +4075,8 @@
4075
"zh-chs": "已将设备{0}添加到设备组{1}",
4076
"zh-cht": "已將設備{0}添加到設備組{1}",
4077
"xloc": [
4078
- "default.handlebars->31->1785",
4079
- "default.handlebars->31->1812"
4078
+ "default.handlebars->31->1794",
4079
+ "default.handlebars->31->1821"
4080
]
4081
},
4082
{
@@ -4096,7 +4096,7 @@
4096
"zh-chs": "添加了安全密钥",
4097
"zh-cht": "添加了安全密鑰",
4098
"xloc": [
4099
- "default.handlebars->31->1823"
4099
+ "default.handlebars->31->1832"
4100
]
4101
},
4102
{
@@ -4116,7 +4116,7 @@
4116
"zh-chs": "已将用户组{0}添加到设备组{1}",
4117
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4118
"xloc": [
4119
- "default.handlebars->31->1796"
4119
+ "default.handlebars->31->1805"
4120
]
4121
},
4122
{
@@ -4136,8 +4136,8 @@
4136
"zh-chs": "已将用户{0}添加到用户组{1}",
4137
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4138
"xloc": [
4139
- "default.handlebars->31->1799",
4140
- "default.handlebars->31->1808"
4139
+ "default.handlebars->31->1808",
4140
+ "default.handlebars->31->1817"
4141
]
4142
},
4143
{
@@ -4198,7 +4198,7 @@
4198
"zh-cht": "管理員控制模式(ACM)",
4199
"xloc": [
4200
"default-mobile.handlebars->11->462",
4201
- "default.handlebars->31->1100"
4201
+ "default.handlebars->31->1109"
4202
]
4203
},
4204
{
@@ -4219,7 +4219,7 @@
4219
"zh-cht": "管理員憑證",
4220
"xloc": [
4221
"default-mobile.handlebars->11->468",
4222
- "default.handlebars->31->1106"
4222
+ "default.handlebars->31->1115"
4223
]
4224
},
4225
{
@@ -4260,7 +4260,7 @@
4260
"zh-chs": "管理领域",
4261
"zh-cht": "管理領域",
4262
"xloc": [
4263
- "default.handlebars->31->2084"
4263
+ "default.handlebars->31->2093"
4264
]
4265
},
4266
{
@@ -4301,7 +4301,7 @@
4301
"zh-chs": "管理领域",
4302
"zh-cht": "管理領域",
4303
"xloc": [
4304
- "default.handlebars->31->1952"
4304
+ "default.handlebars->31->1961"
4305
]
4306
},
4307
{
@@ -4321,7 +4321,7 @@
4321
"zh-chs": "管理员",
4322
"zh-cht": "管理員",
4323
"xloc": [
4324
- "default.handlebars->31->1881"
4324
+ "default.handlebars->31->1890"
4325
]
4326
},
4327
{
@@ -4341,7 +4341,7 @@
4341
"zh-chs": "南非文",
4342
"zh-cht": "南非文",
4343
"xloc": [
4344
- "default.handlebars->31->1178"
4344
+ "default.handlebars->31->1187"
4345
]
4346
},
4347
{
@@ -4366,8 +4366,8 @@
4366
"default-mobile.handlebars->11->259",
4367
"default-mobile.handlebars->11->281",
4368
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4369
- "default.handlebars->31->1661",
4370
- "default.handlebars->31->1674",
4369
+ "default.handlebars->31->1670",
4370
+ "default.handlebars->31->1683",
4371
"default.handlebars->31->263",
4372
"default.handlebars->31->455",
4373
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -4390,8 +4390,8 @@
4390
"zh-chs": "代理+英特尔AMT",
4391
"zh-cht": "代理+Intel® AMT",
4392
"xloc": [
4393
- "default.handlebars->31->1663",
4394
- "default.handlebars->31->1676"
4393
+ "default.handlebars->31->1672",
4394
+ "default.handlebars->31->1685"
4395
]
4396
},
4397
{
@@ -4433,7 +4433,7 @@
4433
"zh-cht": "代理控制台",
4434
"xloc": [
4435
"default-mobile.handlebars->11->562",
4436
- "default.handlebars->31->1615"
4436
+ "default.handlebars->31->1624"
4437
]
4438
},
4439
{
@@ -4453,7 +4453,7 @@
4453
"zh-chs": "代理错误计数器",
4454
"zh-cht": "代理錯誤計數器",
4455
"xloc": [
4456
- "default.handlebars->31->2254"
4456
+ "default.handlebars->31->2263"
4457
]
4458
},
4459
{
@@ -4556,7 +4556,7 @@
4556
"zh-chs": "代理时段",
4557
"zh-cht": "代理時段",
4558
"xloc": [
4559
- "default.handlebars->31->2270"
4559
+ "default.handlebars->31->2279"
4560
]
4561
},
4562
{
@@ -4597,7 +4597,7 @@
4597
"zh-chs": "代理类型",
4598
"zh-cht": "代理類型",
4599
"xloc": [
4600
- "default.handlebars->31->1672",
4600
+ "default.handlebars->31->1681",
4601
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4602
]
4603
},
@@ -4618,7 +4618,7 @@
4618
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4619
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4620
"xloc": [
4621
- "default.handlebars->31->1782"
4621
+ "default.handlebars->31->1791"
4622
]
4623
},
4624
{
@@ -4681,7 +4681,7 @@
4681
"zh-cht": "代理離線",
4682
"xloc": [
4683
"default-mobile.handlebars->11->496",
4684
- "default.handlebars->31->1135"
4684
+ "default.handlebars->31->1144"
4685
]
4686
},
4687
{
@@ -4702,7 +4702,7 @@
4702
"zh-cht": "代理在線",
4703
"xloc": [
4704
"default-mobile.handlebars->11->495",
4705
- "default.handlebars->31->1134"
4705
+ "default.handlebars->31->1143"
4706
]
4707
},
4708
{
@@ -4743,7 +4743,7 @@
4743
"zh-chs": "代理",
4744
"zh-cht": "代理",
4745
"xloc": [
4746
- "default.handlebars->31->2286"
4746
+ "default.handlebars->31->2295"
4747
]
4748
},
4749
{
@@ -4763,7 +4763,7 @@
4763
"zh-chs": "阿尔巴尼亚文",
4764
"zh-cht": "阿爾巴尼亞文",
4765
"xloc": [
4766
- "default.handlebars->31->1179"
4766
+ "default.handlebars->31->1188"
4767
]
4768
},
4769
{
@@ -4806,7 +4806,7 @@
4806
"zh-chs": "全部可用",
4807
"zh-cht": "全部可用",
4808
"xloc": [
4809
- "default.handlebars->31->1844"
4809
+ "default.handlebars->31->1853"
4810
]
4811
},
4812
{
@@ -4826,7 +4826,7 @@
4826
"zh-chs": "所有显示",
4827
"zh-cht": "所有顯示",
4828
"xloc": [
4829
- "default.handlebars->31->981"
4829
+ "default.handlebars->31->990"
4830
]
4831
},
4832
{
@@ -4846,7 +4846,7 @@
4846
"zh-chs": "所有事件",
4847
"zh-cht": "所有事件",
4848
"xloc": [
4849
- "default.handlebars->31->1842"
4849
+ "default.handlebars->31->1851"
4850
]
4851
},
4852
{
@@ -4866,9 +4866,9 @@
4866
"zh-chs": "全部聚焦",
4867
"zh-cht": "全部聚焦",
4868
"xloc": [
4869
- "default.handlebars->31->926",
4870
- "default.handlebars->31->928",
4871
- "default.handlebars->31->929"
4869
+ "default.handlebars->31->935",
4870
+ "default.handlebars->31->937",
4871
+ "default.handlebars->31->938"
4872
]
4873
},
4874
{
@@ -4888,8 +4888,8 @@
4888
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4889
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4890
"xloc": [
4891
- "default.handlebars->31->1561",
4892
- "default.handlebars->31->2045"
4891
+ "default.handlebars->31->1570",
4892
+ "default.handlebars->31->2054"
4893
]
4894
},
4895
{
@@ -4909,7 +4909,7 @@
4909
"zh-chs": "允许用户管理此设备。",
4910
"zh-cht": "允許用戶管理此裝置。",
4911
"xloc": [
4912
- "default.handlebars->31->1562"
4912
+ "default.handlebars->31->1571"
4913
]
4914
},
4915
{
@@ -4948,8 +4948,8 @@
4948
"xloc": [
4949
"default-mobile.handlebars->11->357",
4950
"default-mobile.handlebars->11->361",
4951
- "default.handlebars->31->949",
4952
- "default.handlebars->31->953"
4951
+ "default.handlebars->31->958",
4952
+ "default.handlebars->31->962"
4953
]
4954
},
4955
{
@@ -5011,7 +5011,7 @@
5011
"zh-chs": "备用(F10 = ESC + 0)",
5012
"zh-cht": "備用(F10 = ESC + 0)",
5013
"xloc": [
5014
- "default.handlebars->31->992",
5014
+ "default.handlebars->31->1001",
5015
"terminal.handlebars->3->19"
5016
]
5017
},
@@ -5053,9 +5053,9 @@
5053
"zh-chs": "一直通知",
5054
"zh-cht": "一直通知",
5055
"xloc": [
5056
- "default.handlebars->31->1473",
5057
- "default.handlebars->31->2006",
5058
- "default.handlebars->31->2093",
5056
+ "default.handlebars->31->1482",
5057
+ "default.handlebars->31->2015",
5058
+ "default.handlebars->31->2102",
5059
"default.handlebars->31->659"
5060
]
5061
},
@@ -5076,9 +5076,9 @@
5076
"zh-chs": "一直提示",
5077
"zh-cht": "一直提示",
5078
"xloc": [
5079
- "default.handlebars->31->1474",
5080
- "default.handlebars->31->2007",
5081
- "default.handlebars->31->2094",
5079
+ "default.handlebars->31->1483",
5080
+ "default.handlebars->31->2016",
5081
+ "default.handlebars->31->2103",
5082
"default.handlebars->31->660"
5083
]
5084
},
@@ -5225,8 +5225,8 @@
5225
"nl": "Anti-virus niet actief",
5226
"fr": "Antivirus désactivé",
5227
"xloc": [
5228
- "default.handlebars->31->1665",
5229
- "default.handlebars->31->1679"
5228
+ "default.handlebars->31->1674",
5229
+ "default.handlebars->31->1688"
5230
]
5231
},
5232
{
@@ -5368,7 +5368,7 @@
5368
"zh-chs": "阿拉伯文(阿尔及利亚)",
5369
"zh-cht": "阿拉伯文(阿爾及利亞)",
5370
"xloc": [
5371
- "default.handlebars->31->1181"
5371
+ "default.handlebars->31->1190"
5372
]
5373
},
5374
{
@@ -5388,7 +5388,7 @@
5388
"zh-chs": "阿拉伯文(巴林)",
5389
"zh-cht": "阿拉伯文(巴林)",
5390
"xloc": [
5391
- "default.handlebars->31->1182"
5391
+ "default.handlebars->31->1191"
5392
]
5393
},
5394
{
@@ -5408,7 +5408,7 @@
5408
"zh-chs": "阿拉伯文(埃及)",
5409
"zh-cht": "阿拉伯文(埃及)",
5410
"xloc": [
5411
- "default.handlebars->31->1183"
5411
+ "default.handlebars->31->1192"
5412
]
5413
},
5414
{
@@ -5428,7 +5428,7 @@
5428
"zh-chs": "阿拉伯文(伊拉克)",
5429
"zh-cht": "阿拉伯文(伊拉克)",
5430
"xloc": [
5431
- "default.handlebars->31->1184"
5431
+ "default.handlebars->31->1193"
5432
]
5433
},
5434
{
@@ -5448,7 +5448,7 @@
5448
"zh-chs": "阿拉伯文(约旦)",
5449
"zh-cht": "阿拉伯文(約旦)",
5450
"xloc": [
5451
- "default.handlebars->31->1185"
5451
+ "default.handlebars->31->1194"
5452
]
5453
},
5454
{
@@ -5468,7 +5468,7 @@
5468
"zh-chs": "阿拉伯文(科威特)",
5469
"zh-cht": "阿拉伯文(科威特)",
5470
"xloc": [
5471
- "default.handlebars->31->1186"
5471
+ "default.handlebars->31->1195"
5472
]
5473
},
5474
{
@@ -5488,7 +5488,7 @@
5488
"zh-chs": "阿拉伯文(黎巴嫩)",
5489
"zh-cht": "阿拉伯文(黎巴嫩)",
5490
"xloc": [
5491
- "default.handlebars->31->1187"
5491
+ "default.handlebars->31->1196"
5492
]
5493
},
5494
{
@@ -5508,7 +5508,7 @@
5508
"zh-chs": "阿拉伯文(利比亚)",
5509
"zh-cht": "阿拉伯文(利比亞)",
5510
"xloc": [
5511
- "default.handlebars->31->1188"
5511
+ "default.handlebars->31->1197"
5512
]
5513
},
5514
{
@@ -5528,7 +5528,7 @@
5528
"zh-chs": "阿拉伯文(摩洛哥)",
5529
"zh-cht": "阿拉伯文(摩洛哥)",
5530
"xloc": [
5531
- "default.handlebars->31->1189"
5531
+ "default.handlebars->31->1198"
5532
]
5533
},
5534
{
@@ -5548,7 +5548,7 @@
5548
"zh-chs": "阿拉伯文(阿曼)",
5549
"zh-cht": "阿拉伯文(阿曼)",
5550
"xloc": [
5551
- "default.handlebars->31->1190"
5551
+ "default.handlebars->31->1199"
5552
]
5553
},
5554
{
@@ -5568,7 +5568,7 @@
5568
"zh-chs": "阿拉伯文(卡塔尔)",
5569
"zh-cht": "阿拉伯文(卡塔爾)",
5570
"xloc": [
5571
- "default.handlebars->31->1191"
5571
+ "default.handlebars->31->1200"
5572
]
5573
},
5574
{
@@ -5588,7 +5588,7 @@
5588
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5589
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5590
"xloc": [
5591
- "default.handlebars->31->1192"
5591
+ "default.handlebars->31->1201"
5592
]
5593
},
5594
{
@@ -5608,7 +5608,7 @@
5608
"zh-chs": "阿拉伯文(标准)",
5609
"zh-cht": "阿拉伯文(標準)",
5610
"xloc": [
5611
- "default.handlebars->31->1180"
5611
+ "default.handlebars->31->1189"
5612
]
5613
},
5614
{
@@ -5628,7 +5628,7 @@
5628
"zh-chs": "阿拉伯文(叙利亚)",
5629
"zh-cht": "阿拉伯文(敘利亞)",
5630
"xloc": [
5631
- "default.handlebars->31->1193"
5631
+ "default.handlebars->31->1202"
5632
]
5633
},
5634
{
@@ -5648,7 +5648,7 @@
5648
"zh-chs": "阿拉伯文(突尼斯)",
5649
"zh-cht": "阿拉伯文(突尼斯)",
5650
"xloc": [
5651
- "default.handlebars->31->1194"
5651
+ "default.handlebars->31->1203"
5652
]
5653
},
5654
{
@@ -5668,7 +5668,7 @@
5668
"zh-chs": "阿拉伯文(阿联酋)",
5669
"zh-cht": "阿拉伯文(阿聯酋)",
5670
"xloc": [
5671
- "default.handlebars->31->1195"
5671
+ "default.handlebars->31->1204"
5672
]
5673
},
5674
{
@@ -5688,7 +5688,7 @@
5688
"zh-chs": "阿拉伯文(也门)",
5689
"zh-cht": "阿拉伯文(也門)",
5690
"xloc": [
5691
- "default.handlebars->31->1196"
5691
+ "default.handlebars->31->1205"
5692
]
5693
},
5694
{
@@ -5708,7 +5708,7 @@
5708
"zh-chs": "阿拉贡文",
5709
"zh-cht": "阿拉貢文",
5710
"xloc": [
5711
- "default.handlebars->31->1197"
5711
+ "default.handlebars->31->1206"
5712
]
5713
},
5714
{
@@ -5729,7 +5729,7 @@
5729
"zh-cht": "結構",
5730
"xloc": [
5731
"default-mobile.handlebars->11->408",
5732
- "default.handlebars->31->1053"
5732
+ "default.handlebars->31->1062"
5733
]
5734
},
5735
{
@@ -5770,7 +5770,7 @@
5770
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5771
"xloc": [
5772
"default-mobile.handlebars->11->527",
5773
- "default.handlebars->31->1537"
5773
+ "default.handlebars->31->1546"
5774
]
5775
},
5776
{
@@ -5790,7 +5790,7 @@
5790
"zh-chs": "您确定要删除节点{0}吗?",
5791
"zh-cht": "你確定要刪除節點{0}嗎?",
5792
"xloc": [
5793
- "default.handlebars->31->868"
5793
+ "default.handlebars->31->877"
5794
]
5795
},
5796
{
@@ -5810,7 +5810,7 @@
5810
"zh-chs": "您确定要卸载所选代理吗?",
5811
"zh-cht": "你確定要卸載所選代理嗎?",
5812
"xloc": [
5813
- "default.handlebars->31->857"
5813
+ "default.handlebars->31->866"
5814
]
5815
},
5816
{
@@ -5830,7 +5830,7 @@
5830
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5831
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5832
"xloc": [
5833
- "default.handlebars->31->856"
5833
+ "default.handlebars->31->865"
5834
]
5835
},
5836
{
@@ -5850,7 +5850,7 @@
5850
"zh-chs": "您确定要{0}插件吗:{1}",
5851
"zh-cht": "你確定要{0}外掛嗎:{1}",
5852
"xloc": [
5853
- "default.handlebars->31->2334"
5853
+ "default.handlebars->31->2343"
5854
]
5855
},
5856
{
@@ -5870,7 +5870,7 @@
5870
"zh-chs": "亚美尼亚文",
5871
"zh-cht": "亞美尼亞文",
5872
"xloc": [
5873
- "default.handlebars->31->1198"
5873
+ "default.handlebars->31->1207"
5874
]
5875
},
5876
{
@@ -5930,7 +5930,7 @@
5930
"zh-chs": "阿萨姆文",
5931
"zh-cht": "阿薩姆文",
5932
"xloc": [
5933
- "default.handlebars->31->1199"
5933
+ "default.handlebars->31->1208"
5934
]
5935
},
5936
{
@@ -5950,7 +5950,7 @@
5950
"zh-chs": "阿斯图里亚斯文",
5951
"zh-cht": "阿斯圖里亞斯文",
5952
"xloc": [
5953
- "default.handlebars->31->1200"
5953
+ "default.handlebars->31->1209"
5954
]
5955
},
5956
{
@@ -5970,7 +5970,7 @@
5970
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5971
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5972
"xloc": [
5973
- "default.handlebars->31->1751"
5973
+ "default.handlebars->31->1760"
5974
]
5975
},
5976
{
@@ -5990,7 +5990,7 @@
5990
"zh-chs": "认证软件",
5991
"zh-cht": "認證軟體",
5992
"xloc": [
5993
- "default.handlebars->31->2097"
5993
+ "default.handlebars->31->2106"
5994
]
5995
},
5996
{
@@ -6014,8 +6014,8 @@
6014
"default-mobile.handlebars->11->63",
6015
"default-mobile.handlebars->11->94",
6016
"default-mobile.handlebars->11->96",
6017
- "default.handlebars->31->1164",
6018
- "default.handlebars->31->1166",
6017
+ "default.handlebars->31->1173",
6018
+ "default.handlebars->31->1175",
6019
"default.handlebars->31->140",
6020
"default.handlebars->31->145"
6021
]
@@ -6097,7 +6097,7 @@
6097
"zh-chs": "自动删除",
6098
"zh-cht": "自動刪除",
6099
"xloc": [
6100
- "default.handlebars->31->1460"
6100
+ "default.handlebars->31->1469"
6101
]
6102
},
6103
{
@@ -6141,7 +6141,7 @@
6141
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6142
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6143
"xloc": [
6144
- "default.handlebars->31->1832"
6144
+ "default.handlebars->31->1841"
6145
]
6146
},
6147
{
@@ -6181,7 +6181,7 @@
6181
"zh-chs": "可用內存",
6182
"zh-cht": "可用內存",
6183
"xloc": [
6184
- "default.handlebars->31->2279"
6184
+ "default.handlebars->31->2288"
6185
]
6186
},
6187
{
@@ -6201,7 +6201,7 @@
6201
"zh-chs": "阿塞拜疆文",
6202
"zh-cht": "阿塞拜疆文",
6203
"xloc": [
6204
- "default.handlebars->31->1201"
6204
+ "default.handlebars->31->1210"
6205
]
6206
},
6207
{
@@ -6235,7 +6235,7 @@
6235
"zh-cht": "的BIOS",
6236
"xloc": [
6237
"default-mobile.handlebars->11->474",
6238
- "default.handlebars->31->1112"
6238
+ "default.handlebars->31->1121"
6239
]
6240
},
6241
{
@@ -6319,7 +6319,7 @@
6319
"nl": "BackSpace",
6320
"xloc": [
6321
"default-mobile.handlebars->11->340",
6322
- "default.handlebars->31->932"
6322
+ "default.handlebars->31->941"
6323
]
6324
},
6325
{
@@ -6359,8 +6359,8 @@
6359
"zh-chs": "背景与互动",
6360
"zh-cht": "背景與互動",
6361
"xloc": [
6362
- "default.handlebars->31->1644",
6363
- "default.handlebars->31->1651",
6362
+ "default.handlebars->31->1653",
6363
+ "default.handlebars->31->1660",
6364
"default.handlebars->31->363",
6365
"default.handlebars->31->377"
6366
]
@@ -6382,8 +6382,8 @@
6382
"zh-chs": "仅背景",
6383
"zh-cht": "僅背景",
6384
"xloc": [
6385
- "default.handlebars->31->1645",
6386
- "default.handlebars->31->1652",
6385
+ "default.handlebars->31->1654",
6386
+ "default.handlebars->31->1661",
6387
"default.handlebars->31->364",
6388
"default.handlebars->31->378",
6389
"default.handlebars->31->393"
@@ -6427,7 +6427,7 @@
6427
"zh-chs": "备用码",
6428
"zh-cht": "備用碼",
6429
"xloc": [
6430
- "default.handlebars->31->2099"
6430
+ "default.handlebars->31->2108"
6431
]
6432
},
6433
{
@@ -6447,7 +6447,7 @@
6447
"zh-chs": "错误的签名",
6448
"zh-cht": "錯誤的簽名",
6449
"xloc": [
6450
- "default.handlebars->31->2261"
6450
+ "default.handlebars->31->2270"
6451
]
6452
},
6453
{
@@ -6467,7 +6467,7 @@
6467
"zh-chs": "错误的网络证书",
6468
"zh-cht": "錯誤的網絡憑證",
6469
"xloc": [
6470
- "default.handlebars->31->2260"
6470
+ "default.handlebars->31->2269"
6471
]
6472
},
6473
{
@@ -6487,7 +6487,7 @@
6487
"zh-chs": "巴斯克",
6488
"zh-cht": "巴斯克",
6489
"xloc": [
6490
- "default.handlebars->31->1202"
6490
+ "default.handlebars->31->1211"
6491
]
6492
},
6493
{
@@ -6547,7 +6547,7 @@
6547
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6548
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6549
"xloc": [
6550
- "default.handlebars->31->1831"
6550
+ "default.handlebars->31->1840"
6551
]
6552
},
6553
{
@@ -6567,7 +6567,7 @@
6567
"zh-chs": "白俄罗斯文",
6568
"zh-cht": "白俄羅斯文",
6569
"xloc": [
6570
- "default.handlebars->31->1204"
6570
+ "default.handlebars->31->1213"
6571
]
6572
},
6573
{
@@ -6587,7 +6587,7 @@
6587
"zh-chs": "孟加拉",
6588
"zh-cht": "孟加拉",
6589
"xloc": [
6590
- "default.handlebars->31->1205"
6590
+ "default.handlebars->31->1214"
6591
]
6592
},
6593
{
@@ -6619,7 +6619,7 @@
6619
"fr": "Chargeur de démarrage",
6620
"xloc": [
6621
"default-mobile.handlebars->11->438",
6622
- "default.handlebars->31->1066"
6622
+ "default.handlebars->31->1075"
6623
]
6624
},
6625
{
@@ -6639,7 +6639,7 @@
6639
"zh-chs": "波斯尼亚文",
6640
"zh-cht": "波斯尼亞文",
6641
"xloc": [
6642
- "default.handlebars->31->1206"
6642
+ "default.handlebars->31->1215"
6643
]
6644
},
6645
{
@@ -6659,7 +6659,7 @@
6659
"zh-chs": "布列塔尼",
6660
"zh-cht": "布列塔尼",
6661
"xloc": [
6662
- "default.handlebars->31->1207"
6662
+ "default.handlebars->31->1216"
6663
]
6664
},
6665
{
@@ -6679,7 +6679,7 @@
6679
"zh-chs": "广播",
6680
"zh-cht": "廣播",
6681
"xloc": [
6682
- "default.handlebars->31->2013",
6682
+ "default.handlebars->31->2022",
6683
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6684
]
6685
},
@@ -6700,7 +6700,7 @@
6700
"zh-chs": "广播消息",
6701
"zh-cht": "廣播消息",
6702
"xloc": [
6703
- "default.handlebars->31->1934"
6703
+ "default.handlebars->31->1943"
6704
]
6705
},
6706
{
@@ -6720,7 +6720,7 @@
6720
"zh-chs": "向所有连接的用户广播消息。",
6721
"zh-cht": "向所有連接的用戶廣播消息。",
6722
"xloc": [
6723
- "default.handlebars->31->1929"
6723
+ "default.handlebars->31->1938"
6724
]
6725
},
6726
{
@@ -6749,7 +6749,7 @@
6749
"zh-chs": "保加利亚文",
6750
"zh-cht": "保加利亞文",
6751
"xloc": [
6752
- "default.handlebars->31->1203"
6752
+ "default.handlebars->31->1212"
6753
]
6754
},
6755
{
@@ -6769,7 +6769,7 @@
6769
"zh-chs": "缅甸文",
6770
"zh-cht": "緬甸文",
6771
"xloc": [
6772
- "default.handlebars->31->1208"
6772
+ "default.handlebars->31->1217"
6773
]
6774
},
6775
{
@@ -6810,7 +6810,7 @@
6810
"zh-chs": "CCM模式",
6811
"zh-cht": "CCM模式",
6812
"xloc": [
6813
- "default.handlebars->31->1520"
6813
+ "default.handlebars->31->1529"
6814
]
6815
},
6816
{
@@ -6852,7 +6852,7 @@
6852
"zh-chs": "CIRA服务器",
6853
"zh-cht": "CIRA伺服器",
6854
"xloc": [
6855
- "default.handlebars->31->2318"
6855
+ "default.handlebars->31->2327"
6856
]
6857
},
6858
{
@@ -6872,7 +6872,7 @@
6872
"zh-chs": "CIRA服务器命令",
6873
"zh-cht": "CIRA伺服器指令",
6874
"xloc": [
6875
- "default.handlebars->31->2319"
6875
+ "default.handlebars->31->2328"
6876
]
6877
},
6878
{
@@ -6892,7 +6892,7 @@
6892
"zh-chs": "CIRA设置",
6893
"zh-cht": "CIRA設置",
6894
"xloc": [
6895
- "default.handlebars->31->1528"
6895
+ "default.handlebars->31->1537"
6896
]
6897
},
6898
{
@@ -6913,7 +6913,7 @@
6913
"zh-cht": "CPU",
6914
"xloc": [
6915
"default-mobile.handlebars->11->480",
6916
- "default.handlebars->31->1118"
6916
+ "default.handlebars->31->1127"
6917
]
6918
},
6919
{
@@ -6933,7 +6933,7 @@
6933
"zh-chs": "CPU负载",
6934
"zh-cht": "CPU負載",
6935
"xloc": [
6936
- "default.handlebars->31->2275"
6936
+ "default.handlebars->31->2284"
6937
]
6938
},
6939
{
@@ -6953,7 +6953,7 @@
6953
"zh-chs": "最近15分钟的CPU负载",
6954
"zh-cht": "最近15分鐘的CPU負載",
6955
"xloc": [
6956
- "default.handlebars->31->2278"
6956
+ "default.handlebars->31->2287"
6957
]
6958
},
6959
{
@@ -6973,7 +6973,7 @@
6973
"zh-chs": "最近5分钟的CPU负载",
6974
"zh-cht": "最近5分鐘的CPU負載",
6975
"xloc": [
6976
- "default.handlebars->31->2277"
6976
+ "default.handlebars->31->2286"
6977
]
6978
},
6979
{
@@ -6993,7 +6993,7 @@
6993
"zh-chs": "最近一分钟的CPU负载",
6994
"zh-cht": "最近一分鐘的CPU負載",
6995
"xloc": [
6996
- "default.handlebars->31->2276"
6996
+ "default.handlebars->31->2285"
6997
]
6998
},
6999
{
@@ -7013,7 +7013,7 @@
7013
"zh-chs": "CR+LF",
7014
"zh-cht": "CR+LF",
7015
"xloc": [
7016
- "default.handlebars->31->985",
7016
+ "default.handlebars->31->1003",
7017
"default.handlebars->31->994",
7018
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7019
"terminal.handlebars->3->21",
@@ -7038,7 +7038,7 @@
7038
"zh-chs": "CSV",
7039
"zh-cht": "CSV",
7040
"xloc": [
7041
- "default.handlebars->31->1852"
7041
+ "default.handlebars->31->1861"
7042
]
7043
},
7044
{
@@ -7058,8 +7058,8 @@
7058
"zh-chs": "CSV格式",
7059
"zh-cht": "CSV格式",
7060
"xloc": [
7061
- "default.handlebars->31->1856",
7062
- "default.handlebars->31->1921",
7061
+ "default.handlebars->31->1865",
7062
+ "default.handlebars->31->1930",
7063
"default.handlebars->31->523"
7064
]
7065
},
@@ -7097,7 +7097,7 @@
7097
"zh-chs": "呼叫错误",
7098
"zh-cht": "呼叫錯誤",
7099
"xloc": [
7100
- "default.handlebars->31->2335"
7100
+ "default.handlebars->31->2344"
7101
]
7102
},
7103
{
@@ -7120,8 +7120,8 @@
7120
"agent-translations.json",
7121
"default-mobile.handlebars->11->105",
7122
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7123
- "default.handlebars->31->1438",
7124
- "default.handlebars->31->2324",
7123
+ "default.handlebars->31->1447",
7124
+ "default.handlebars->31->2333",
7125
"default.handlebars->container->dialog->idx_dlgButtonBar",
7126
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7127
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7152,9 +7152,9 @@
7152
"default-mobile.handlebars->11->485",
7153
"default-mobile.handlebars->11->490",
7154
"default-mobile.handlebars->11->492",
7155
- "default.handlebars->31->1123",
7156
- "default.handlebars->31->1128",
7157
- "default.handlebars->31->1130"
7155
+ "default.handlebars->31->1132",
7156
+ "default.handlebars->31->1137",
7157
+ "default.handlebars->31->1139"
7158
]
7159
},
7160
{
@@ -7175,7 +7175,7 @@
7175
"zh-cht": "容量/速度",
7176
"xloc": [
7177
"default-mobile.handlebars->11->483",
7178
- "default.handlebars->31->1121"
7178
+ "default.handlebars->31->1130"
7179
]
7180
},
7181
{
@@ -7195,7 +7195,7 @@
7195
"zh-chs": "加泰罗尼亚文",
7196
"zh-cht": "加泰羅尼亞文",
7197
"xloc": [
7198
- "default.handlebars->31->1209"
7198
+ "default.handlebars->31->1218"
7199
]
7200
},
7201
{
@@ -7235,7 +7235,7 @@
7235
"zh-chs": "查莫罗",
7236
"zh-cht": "查莫羅",
7237
"xloc": [
7238
- "default.handlebars->31->1210"
7238
+ "default.handlebars->31->1219"
7239
]
7240
},
7241
{
@@ -7277,7 +7277,7 @@
7277
"zh-chs": "更改{0}的电邮",
7278
"zh-cht": "更改{0}的電郵",
7279
"xloc": [
7280
- "default.handlebars->31->2131"
7280
+ "default.handlebars->31->2140"
7281
]
7282
},
7283
{
@@ -7298,8 +7298,8 @@
7298
"zh-cht": "更改群",
7299
"xloc": [
7300
"default.handlebars->31->690",
7301
- "default.handlebars->31->865",
7302
- "default.handlebars->31->866"
7301
+ "default.handlebars->31->874",
7302
+ "default.handlebars->31->875"
7303
]
7304
},
7305
{
@@ -7320,8 +7320,8 @@
7320
"zh-cht": "更改密碼",
7321
"xloc": [
7322
"default-mobile.handlebars->11->113",
7323
- "default.handlebars->31->1405",
7324
- "default.handlebars->31->2116"
7323
+ "default.handlebars->31->1414",
7324
+ "default.handlebars->31->2125"
7325
]
7326
},
7327
{
@@ -7341,7 +7341,7 @@
7341
"zh-chs": "更改{0}的密码",
7342
"zh-cht": "更改{0}的密碼",
7343
"xloc": [
7344
- "default.handlebars->31->2140"
7344
+ "default.handlebars->31->2149"
7345
]
7346
},
7347
{
@@ -7361,7 +7361,7 @@
7361
"zh-chs": "更改{0}的真实名称",
7362
"zh-cht": "更改{0}的真實名稱",
7363
"xloc": [
7364
- "default.handlebars->31->2126"
7364
+ "default.handlebars->31->2135"
7365
]
7366
},
7367
{
@@ -7450,7 +7450,7 @@
7450
"zh-chs": "更改该用户的密码",
7451
"zh-cht": "更改該用戶的密碼",
7452
"xloc": [
7453
- "default.handlebars->31->2115"
7453
+ "default.handlebars->31->2124"
7454
]
7455
},
7456
{
@@ -7490,7 +7490,7 @@
7490
"zh-chs": "在此处更改您的帐户电邮地址。",
7491
"zh-cht": "在此處更改你的帳戶電郵地址。",
7492
"xloc": [
7493
- "default.handlebars->31->1392"
7493
+ "default.handlebars->31->1401"
7494
]
7495
},
7496
{
@@ -7510,7 +7510,7 @@
7510
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7511
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7512
"xloc": [
7513
- "default.handlebars->31->1398"
7513
+ "default.handlebars->31->1407"
7514
]
7515
},
7516
{
@@ -7530,7 +7530,7 @@
7530
"zh-chs": "更改帐户凭据",
7531
"zh-cht": "帳戶憑證已更改",
7532
"xloc": [
7533
- "default.handlebars->31->1803"
7533
+ "default.handlebars->31->1812"
7534
]
7535
},
7536
{
@@ -7550,7 +7550,7 @@
7550
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7551
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7552
"xloc": [
7553
- "default.handlebars->31->1787"
7553
+ "default.handlebars->31->1796"
7554
]
7555
},
7556
{
@@ -7570,7 +7570,7 @@
7570
"zh-chs": "语言从{1}更改为{2}",
7571
"zh-cht": "語言從{1}更改為{2}",
7572
"xloc": [
7573
- "default.handlebars->31->1731"
7573
+ "default.handlebars->31->1740"
7574
]
7575
},
7576
{
@@ -7590,8 +7590,8 @@
7590
"zh-chs": "已更改{0}的用户设备权限",
7591
"zh-cht": "已更改{0}的用戶設備權限",
7592
"xloc": [
7593
- "default.handlebars->31->1789",
7594
- "default.handlebars->31->1810"
7593
+ "default.handlebars->31->1798",
7594
+ "default.handlebars->31->1819"
7595
]
7596
},
7597
{
@@ -7611,7 +7611,7 @@
7611
"zh-chs": "更改语言将需要刷新页面。",
7612
"zh-cht": "更改語言將需要刷新頁面。",
7613
"xloc": [
7614
- "default.handlebars->31->1377"
7614
+ "default.handlebars->31->1386"
7615
]
7616
},
7617
{
@@ -7631,9 +7631,9 @@
7631
"zh-chs": "聊天",
7632
"zh-cht": "聊天",
7633
"xloc": [
7634
- "default.handlebars->31->1873",
7635
- "default.handlebars->31->2111",
7636
- "default.handlebars->31->2112",
7634
+ "default.handlebars->31->1882",
7635
+ "default.handlebars->31->2120",
7636
+ "default.handlebars->31->2121",
7637
"default.handlebars->31->685",
7638
"default.handlebars->31->757",
7639
"default.handlebars->31->779"
@@ -7658,8 +7658,8 @@
7658
"xloc": [
7659
"default-mobile.handlebars->11->552",
7660
"default-mobile.handlebars->11->572",
7661
- "default.handlebars->31->1590",
7662
- "default.handlebars->31->1626"
7661
+ "default.handlebars->31->1599",
7662
+ "default.handlebars->31->1635"
7663
]
7664
},
7665
{
@@ -7668,7 +7668,7 @@
7668
"fr": "Demande de discussion, cliquez ici pour accepter.",
7669
"xloc": [
7670
"default-mobile.handlebars->11->604",
7671
- "default.handlebars->31->2230"
7671
+ "default.handlebars->31->2239"
7672
]
7673
},
7674
{
@@ -7708,7 +7708,7 @@
7708
"zh-chs": "车臣",
7709
"zh-cht": "車臣",
7710
"xloc": [
7711
- "default.handlebars->31->1211"
7711
+ "default.handlebars->31->1220"
7712
]
7713
},
7714
{
@@ -7808,8 +7808,8 @@
7808
"zh-chs": "检查...",
7809
"zh-cht": "檢查...",
7810
"xloc": [
7811
- "default.handlebars->31->1177",
7812
- "default.handlebars->31->2329"
7811
+ "default.handlebars->31->1186",
7812
+ "default.handlebars->31->2338"
7813
]
7814
},
7815
{
@@ -7829,7 +7829,7 @@
7829
"zh-chs": "中文",
7830
"zh-cht": "中文",
7831
"xloc": [
7832
- "default.handlebars->31->1212"
7832
+ "default.handlebars->31->1221"
7833
]
7834
},
7835
{
@@ -7849,7 +7849,7 @@
7849
"zh-chs": "中文(香港)",
7850
"zh-cht": "中文(香港)",
7851
"xloc": [
7852
- "default.handlebars->31->1213"
7852
+ "default.handlebars->31->1222"
7853
]
7854
},
7855
{
@@ -7869,7 +7869,7 @@
7869
"zh-chs": "中文(中国)",
7870
"zh-cht": "中文(中國)",
7871
"xloc": [
7872
- "default.handlebars->31->1214"
7872
+ "default.handlebars->31->1223"
7873
]
7874
},
7875
{
@@ -7889,7 +7889,7 @@
7889
"zh-chs": "简体中文",
7890
"zh-cht": "簡體中文",
7891
"xloc": [
7892
- "default.handlebars->31->1374"
7892
+ "default.handlebars->31->1383"
7893
]
7894
},
7895
{
@@ -7909,7 +7909,7 @@
7909
"zh-chs": "中文(新加坡)",
7910
"zh-cht": "中文(新加坡)",
7911
"xloc": [
7912
- "default.handlebars->31->1215"
7912
+ "default.handlebars->31->1224"
7913
]
7914
},
7915
{
@@ -7929,7 +7929,7 @@
7929
"zh-chs": "中文(台湾)",
7930
"zh-cht": "中文(台灣)",
7931
"xloc": [
7932
- "default.handlebars->31->1216"
7932
+ "default.handlebars->31->1225"
7933
]
7934
},
7935
{
@@ -7949,7 +7949,7 @@
7949
"zh-chs": "繁体中文",
7950
"zh-cht": "繁體中文",
7951
"xloc": [
7952
- "default.handlebars->31->1375"
7952
+ "default.handlebars->31->1384"
7953
]
7954
},
7955
{
@@ -7990,7 +7990,7 @@
7990
"zh-chs": "楚瓦什",
7991
"zh-cht": "楚瓦什",
7992
"xloc": [
7993
- "default.handlebars->31->1217"
7993
+ "default.handlebars->31->1226"
7994
]
7995
},
7996
{
@@ -8034,11 +8034,11 @@
8034
"default-mobile.handlebars->11->398",
8035
"default-mobile.handlebars->11->70",
8036
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8037
- "default.handlebars->31->1030",
8038
- "default.handlebars->31->1032",
8039
- "default.handlebars->31->1034",
8040
- "default.handlebars->31->1036",
8041
- "default.handlebars->31->1725",
8037
+ "default.handlebars->31->1039",
8038
+ "default.handlebars->31->1041",
8039
+ "default.handlebars->31->1043",
8040
+ "default.handlebars->31->1045",
8041
+ "default.handlebars->31->1734",
8042
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8043
"default.handlebars->container->column_l->p41->3->1",
8044
"messenger.handlebars->xbottom->1->1->0->5"
@@ -8097,7 +8097,7 @@
8097
"zh-cht": "全部清除",
8098
"xloc": [
8099
"default-mobile.handlebars->11->587",
8100
- "default.handlebars->31->2213"
8100
+ "default.handlebars->31->2222"
8101
]
8102
},
8103
{
@@ -8139,7 +8139,7 @@
8139
"zh-cht": "清除核心",
8140
"xloc": [
8141
"default-mobile.handlebars->11->506",
8142
- "default.handlebars->31->1145"
8142
+ "default.handlebars->31->1154"
8143
]
8144
},
8145
{
@@ -8180,7 +8180,7 @@
8180
"zh-cht": "清除此通知",
8181
"xloc": [
8182
"default-mobile.handlebars->11->586",
8183
- "default.handlebars->31->2212"
8183
+ "default.handlebars->31->2221"
8184
]
8185
},
8186
{
@@ -8240,8 +8240,8 @@
8240
"zh-chs": "单击此处编辑设备组名称",
8241
"zh-cht": "單擊此處編輯裝置群名稱",
8242
"xloc": [
8243
- "default.handlebars->31->1449",
8244
- "default.handlebars->31->1670"
8243
+ "default.handlebars->31->1458",
8244
+ "default.handlebars->31->1679"
8245
]
8246
},
8247
{
@@ -8281,7 +8281,7 @@
8281
"zh-chs": "单击此处编辑用户组名称",
8282
"zh-cht": "單擊此處編輯用戶群名稱",
8283
"xloc": [
8284
- "default.handlebars->31->1990"
8284
+ "default.handlebars->31->1999"
8285
]
8286
},
8287
{
@@ -8352,7 +8352,7 @@
8352
"zh-cht": "單擊確定將驗證電郵發送到:",
8353
"xloc": [
8354
"default-mobile.handlebars->11->98",
8355
- "default.handlebars->31->1389"
8355
+ "default.handlebars->31->1398"
8356
]
8357
},
8358
{
@@ -8414,7 +8414,7 @@
8414
"zh-cht": "客戶端控制模式(CCM)",
8415
"xloc": [
8416
"default-mobile.handlebars->11->461",
8417
- "default.handlebars->31->1099"
8417
+ "default.handlebars->31->1108"
8418
]
8419
},
8420
{
@@ -8434,7 +8434,7 @@
8434
"zh-chs": "客户编号",
8435
"zh-cht": "客戶編號",
8436
"xloc": [
8437
- "default.handlebars->31->1431"
8437
+ "default.handlebars->31->1440"
8438
]
8439
},
8440
{
@@ -8454,7 +8454,7 @@
8454
"zh-chs": "客户端启动的远程访问",
8455
"zh-cht": "客戶端啟動的遠程訪問",
8456
"xloc": [
8457
- "default.handlebars->31->1527"
8457
+ "default.handlebars->31->1536"
8458
]
8459
},
8460
{
@@ -8474,7 +8474,7 @@
8474
"zh-chs": "客户机密",
8475
"zh-cht": "客戶機密",
8476
"xloc": [
8477
- "default.handlebars->31->1432"
8477
+ "default.handlebars->31->1441"
8478
]
8479
},
8480
{
@@ -8516,11 +8516,11 @@
8516
"zh-cht": "關",
8517
"xloc": [
8518
"default-mobile.handlebars->11->68",
8519
- "default.handlebars->31->1007",
8519
+ "default.handlebars->31->1016",
8520
"default.handlebars->31->152",
8521
"default.handlebars->31->160",
8522
- "default.handlebars->31->2323",
8523
- "default.handlebars->31->974"
8522
+ "default.handlebars->31->2332",
8523
+ "default.handlebars->31->983"
8524
]
8525
},
8526
{
@@ -8540,7 +8540,7 @@
8540
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8541
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8542
"xloc": [
8543
- "default.handlebars->31->1736"
8543
+ "default.handlebars->31->1745"
8544
]
8545
},
8546
{
@@ -8663,7 +8663,7 @@
8663
"zh-cht": "指令",
8664
"xloc": [
8665
"default-mobile.handlebars->11->574",
8666
- "default.handlebars->31->1628",
8666
+ "default.handlebars->31->1637",
8667
"default.handlebars->31->759",
8668
"default.handlebars->31->781"
8669
]
@@ -8685,8 +8685,8 @@
8685
"zh-chs": "通用设备组",
8686
"zh-cht": "通用裝置群",
8687
"xloc": [
8688
- "default.handlebars->31->2021",
8689
- "default.handlebars->31->2145"
8688
+ "default.handlebars->31->2030",
8689
+ "default.handlebars->31->2154"
8690
]
8691
},
8692
{
@@ -8706,8 +8706,8 @@
8706
"zh-chs": "通用设备",
8707
"zh-cht": "通用裝置",
8708
"xloc": [
8709
- "default.handlebars->31->2027",
8710
- "default.handlebars->31->2157"
8709
+ "default.handlebars->31->2036",
8710
+ "default.handlebars->31->2166"
8711
]
8712
},
8713
{
@@ -8716,7 +8716,7 @@
8716
"fr": "Temps de compilation",
8717
"xloc": [
8718
"default-mobile.handlebars->11->434",
8719
- "default.handlebars->31->1062"
8719
+ "default.handlebars->31->1071"
8720
]
8721
},
8722
{
@@ -8736,7 +8736,7 @@
8736
"zh-chs": "压缩档案...",
8737
"zh-cht": "壓縮檔案...",
8738
"xloc": [
8739
- "default.handlebars->31->1002"
8739
+ "default.handlebars->31->1011"
8740
]
8741
},
8742
{
@@ -8758,14 +8758,14 @@
8758
"xloc": [
8759
"default-mobile.handlebars->11->324",
8760
"default-mobile.handlebars->11->528",
8761
- "default.handlebars->31->1538",
8762
- "default.handlebars->31->1901",
8763
- "default.handlebars->31->1980",
8764
- "default.handlebars->31->2041",
8765
- "default.handlebars->31->2143",
8761
+ "default.handlebars->31->1547",
8762
+ "default.handlebars->31->1910",
8763
+ "default.handlebars->31->1989",
8764
+ "default.handlebars->31->2050",
8765
+ "default.handlebars->31->2152",
8766
"default.handlebars->31->487",
8767
- "default.handlebars->31->860",
8768
- "default.handlebars->31->869"
8767
+ "default.handlebars->31->869",
8768
+ "default.handlebars->31->878"
8769
]
8770
},
8771
{
@@ -8786,7 +8786,7 @@
8786
"zh-cht": "確認將1個副本複製到此位置?",
8787
"xloc": [
8788
"default-mobile.handlebars->11->387",
8789
- "default.handlebars->31->1025"
8789
+ "default.handlebars->31->1034"
8790
]
8791
},
8792
{
@@ -8806,7 +8806,7 @@
8806
"zh-chs": "确认{0}个条目的复制到此位置?",
8807
"zh-cht": "確認{0}個條目的複製到此位置?",
8808
"xloc": [
8809
- "default.handlebars->31->1024"
8809
+ "default.handlebars->31->1033"
8810
]
8811
},
8812
{
@@ -8846,7 +8846,7 @@
8846
"zh-chs": "确认删除选定的帐户?",
8847
"zh-cht": "確認刪除所選帳戶?",
8848
"xloc": [
8849
- "default.handlebars->31->1900"
8849
+ "default.handlebars->31->1909"
8850
]
8851
},
8852
{
@@ -8886,7 +8886,7 @@
8886
"zh-chs": "确认删除选定的用户组?",
8887
"zh-cht": "確認刪除所選用戶群?",
8888
"xloc": [
8889
- "default.handlebars->31->1979"
8889
+ "default.handlebars->31->1988"
8890
]
8891
},
8892
{
@@ -8906,7 +8906,7 @@
8906
"zh-chs": "确认删除用户{0}?",
8907
"zh-cht": "確認刪除用戶{0}?",
8908
"xloc": [
8909
- "default.handlebars->31->2142"
8909
+ "default.handlebars->31->2151"
8910
]
8911
},
8912
{
@@ -8926,7 +8926,7 @@
8926
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8927
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8928
"xloc": [
8929
- "default.handlebars->31->2044"
8929
+ "default.handlebars->31->2053"
8930
]
8931
},
8932
{
@@ -8946,7 +8946,7 @@
8946
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8947
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8948
"xloc": [
8949
- "default.handlebars->31->2174"
8949
+ "default.handlebars->31->2183"
8950
]
8951
},
8952
{
@@ -8967,7 +8967,7 @@
8967
"zh-cht": "確認將1個條目移動到此位置?",
8968
"xloc": [
8969
"default-mobile.handlebars->11->389",
8970
- "default.handlebars->31->1027"
8970
+ "default.handlebars->31->1036"
8971
]
8972
},
8973
{
@@ -8987,7 +8987,7 @@
8987
"zh-chs": "确认将{0}个条目移到此位置?",
8988
"zh-cht": "確認將{0}個條目移到該位置?",
8989
"xloc": [
8990
- "default.handlebars->31->1026"
8990
+ "default.handlebars->31->1035"
8991
]
8992
},
8993
{
@@ -9027,7 +9027,7 @@
9027
"zh-chs": "确认覆盖?",
9028
"zh-cht": "確認覆蓋?",
9029
"xloc": [
9030
- "default.handlebars->31->1719"
9030
+ "default.handlebars->31->1728"
9031
]
9032
},
9033
{
@@ -9047,8 +9047,8 @@
9047
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9048
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9049
"xloc": [
9050
- "default.handlebars->31->2034",
9051
- "default.handlebars->31->2165"
9050
+ "default.handlebars->31->2043",
9051
+ "default.handlebars->31->2174"
9052
]
9053
},
9054
{
@@ -9068,8 +9068,8 @@
9068
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9069
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9070
"xloc": [
9071
- "default.handlebars->31->2036",
9072
- "default.handlebars->31->2178"
9071
+ "default.handlebars->31->2045",
9072
+ "default.handlebars->31->2187"
9073
]
9074
},
9075
{
@@ -9089,7 +9089,7 @@
9089
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9090
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9091
"xloc": [
9092
- "default.handlebars->31->2167"
9092
+ "default.handlebars->31->2176"
9093
]
9094
},
9095
{
@@ -9109,7 +9109,7 @@
9109
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9110
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9111
"xloc": [
9112
- "default.handlebars->31->2170"
9112
+ "default.handlebars->31->2179"
9113
]
9114
},
9115
{
@@ -9129,8 +9129,8 @@
9129
"zh-chs": "确认删除访问权限?",
9130
"zh-cht": "確認刪除訪問權限?",
9131
"xloc": [
9132
- "default.handlebars->31->2168",
9133
- "default.handlebars->31->2171"
9132
+ "default.handlebars->31->2177",
9133
+ "default.handlebars->31->2180"
9134
]
9135
},
9136
{
@@ -9151,7 +9151,7 @@
9151
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9152
"xloc": [
9153
"default-mobile.handlebars->11->97",
9154
- "default.handlebars->31->1167"
9154
+ "default.handlebars->31->1176"
9155
]
9156
},
9157
{
@@ -9188,7 +9188,7 @@
9188
"zh-chs": "确认删除设备共享“{0}”?",
9189
"zh-cht": "確認刪除設備共享“{0}”?",
9190
"xloc": [
9191
- "default.handlebars->31->2163"
9191
+ "default.handlebars->31->2172"
9192
]
9193
},
9194
{
@@ -9242,7 +9242,7 @@
9242
"zh-chs": "确认删除用户“ {0} ”的权限?",
9243
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9244
"xloc": [
9245
- "default.handlebars->31->1637"
9245
+ "default.handlebars->31->1646"
9246
]
9247
},
9248
{
@@ -9262,7 +9262,7 @@
9262
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9263
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9264
"xloc": [
9265
- "default.handlebars->31->1639"
9265
+ "default.handlebars->31->1648"
9266
]
9267
},
9268
{
@@ -9320,7 +9320,7 @@
9320
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9321
"xloc": [
9322
"default-mobile.handlebars->11->150",
9323
- "default.handlebars->31->1720"
9323
+ "default.handlebars->31->1729"
9324
]
9325
},
9326
{
@@ -9344,8 +9344,8 @@
9344
"default-mobile.handlebars->11->369",
9345
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9346
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9347
- "default.handlebars->31->1477",
9348
- "default.handlebars->31->997",
9347
+ "default.handlebars->31->1006",
9348
+ "default.handlebars->31->1486",
9349
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9350
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9351
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9393,7 +9393,7 @@
9393
"zh-chs": "连接到服务器",
9394
"zh-cht": "連接到伺服器",
9395
"xloc": [
9396
- "default.handlebars->31->1531"
9396
+ "default.handlebars->31->1540"
9397
]
9398
},
9399
{
@@ -9515,7 +9515,7 @@
9515
"zh-chs": "已连接的英特尔®AMT",
9516
"zh-cht": "已連接的Intel® AMT",
9517
"xloc": [
9518
- "default.handlebars->31->2266"
9518
+ "default.handlebars->31->2275"
9519
]
9520
},
9521
{
@@ -9535,7 +9535,7 @@
9535
"zh-chs": "已连接的用户",
9536
"zh-cht": "已连接的用户",
9537
"xloc": [
9538
- "default.handlebars->31->2271"
9538
+ "default.handlebars->31->2280"
9539
]
9540
},
9541
{
@@ -9556,7 +9556,7 @@
9556
"zh-cht": "現在已連接",
9557
"xloc": [
9558
"default-mobile.handlebars->11->429",
9559
- "default.handlebars->31->1057"
9559
+ "default.handlebars->31->1066"
9560
]
9561
},
9562
{
@@ -9599,7 +9599,7 @@
9599
"default-mobile.handlebars->11->2",
9600
"default-mobile.handlebars->11->405",
9601
"default-mobile.handlebars->11->48",
9602
- "default.handlebars->31->1048",
9602
+ "default.handlebars->31->1057",
9603
"default.handlebars->31->253",
9604
"default.handlebars->31->256",
9605
"default.handlebars->31->300",
@@ -9626,7 +9626,7 @@
9626
"zh-chs": "连接数量",
9627
"zh-cht": "連接數量",
9628
"xloc": [
9629
- "default.handlebars->31->2285"
9629
+ "default.handlebars->31->2294"
9630
]
9631
},
9632
{
@@ -9646,7 +9646,7 @@
9646
"zh-chs": "连接转发器",
9647
"zh-cht": "連接轉發器",
9648
"xloc": [
9649
- "default.handlebars->31->2317"
9649
+ "default.handlebars->31->2326"
9650
]
9651
},
9652
{
@@ -9707,7 +9707,7 @@
9707
"zh-cht": "連接性",
9708
"xloc": [
9709
"default-mobile.handlebars->11->286",
9710
- "default.handlebars->31->1677",
9710
+ "default.handlebars->31->1686",
9711
"default.handlebars->31->244",
9712
"default.handlebars->31->673",
9713
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -9797,7 +9797,7 @@
9797
"zh-chs": "Cookie编码器",
9798
"zh-cht": "Cookie編碼器",
9799
"xloc": [
9800
- "default.handlebars->31->2301"
9800
+ "default.handlebars->31->2310"
9801
]
9802
},
9803
{
@@ -9954,8 +9954,8 @@
9954
"zh-chs": "复制连结到剪贴板",
9955
"zh-cht": "複製連結到剪貼板",
9956
"xloc": [
9957
- "default.handlebars->31->1688",
9958
- "default.handlebars->31->1707",
9957
+ "default.handlebars->31->1697",
9958
+ "default.handlebars->31->1716",
9959
"default.handlebars->31->215",
9960
"default.handlebars->31->380"
9961
]
@@ -10060,7 +10060,7 @@
10060
"zh-chs": "复制:“{0}”到“{1}”",
10061
"zh-cht": "複製:“{0}”到“{1}”",
10062
"xloc": [
10063
- "default.handlebars->31->1779"
10063
+ "default.handlebars->31->1788"
10064
]
10065
},
10066
{
@@ -10206,7 +10206,7 @@
10206
"zh-chs": "核心服务器",
10207
"zh-cht": "核心伺服器",
10208
"xloc": [
10209
- "default.handlebars->31->2300"
10209
+ "default.handlebars->31->2309"
10210
]
10211
},
10212
{
@@ -10226,7 +10226,7 @@
10226
"zh-chs": "科西嘉文",
10227
"zh-cht": "科西嘉文",
10228
"xloc": [
10229
- "default.handlebars->31->1218"
10229
+ "default.handlebars->31->1227"
10230
]
10231
},
10232
{
@@ -10246,7 +10246,7 @@
10246
"zh-chs": "创建帐号",
10247
"zh-cht": "創建帳號",
10248
"xloc": [
10249
- "default.handlebars->31->1948",
10249
+ "default.handlebars->31->1957",
10250
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10251
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10252
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10289,7 +10289,7 @@
10289
"zh-chs": "创建用户组",
10290
"zh-cht": "創建用戶群",
10291
"xloc": [
10292
- "default.handlebars->31->1987"
10292
+ "default.handlebars->31->1996"
10293
]
10294
},
10295
{
@@ -10329,7 +10329,7 @@
10329
"zh-chs": "使用以下选项创建一个新的设备组。",
10330
"zh-cht": "使用以下選項創建一個新的裝置群。",
10331
"xloc": [
10332
- "default.handlebars->31->1412"
10332
+ "default.handlebars->31->1421"
10333
]
10334
},
10335
{
@@ -10389,7 +10389,7 @@
10389
"zh-chs": "创建文件夹:“{0}”",
10390
"zh-cht": "創建文件夾:“{0}”",
10391
"xloc": [
10392
- "default.handlebars->31->1772"
10392
+ "default.handlebars->31->1781"
10393
]
10394
},
10395
{
@@ -10409,7 +10409,7 @@
10409
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10410
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10411
"xloc": [
10412
- "default.handlebars->31->1912"
10412
+ "default.handlebars->31->1921"
10413
]
10414
},
10415
{
@@ -10451,7 +10451,7 @@
10451
"zh-chs": "创建的设备组:{0}",
10452
"zh-cht": "創建的設備組:{0}",
10453
"xloc": [
10454
- "default.handlebars->31->1783"
10454
+ "default.handlebars->31->1792"
10455
]
10456
},
10457
{
@@ -10525,7 +10525,7 @@
10525
"zh-chs": "创建",
10526
"zh-cht": "創建",
10527
"xloc": [
10528
- "default.handlebars->31->2073"
10528
+ "default.handlebars->31->2082"
10529
]
10530
},
10531
{
@@ -10545,7 +10545,7 @@
10545
"zh-chs": "创建时间",
10546
"zh-cht": "創作時間",
10547
"xloc": [
10548
- "default.handlebars->31->1459"
10548
+ "default.handlebars->31->1468"
10549
]
10550
},
10551
{
@@ -10587,8 +10587,8 @@
10587
"zh-chs": "创建者",
10588
"zh-cht": "創作者",
10589
"xloc": [
10590
- "default.handlebars->31->1457",
10591
- "default.handlebars->31->1458"
10590
+ "default.handlebars->31->1466",
10591
+ "default.handlebars->31->1467"
10592
]
10593
},
10594
{
@@ -10608,7 +10608,7 @@
10608
"zh-chs": "证书",
10609
"zh-cht": "證書",
10610
"xloc": [
10611
- "default.handlebars->31->1429"
10611
+ "default.handlebars->31->1438"
10612
]
10613
},
10614
{
@@ -10628,7 +10628,7 @@
10628
"zh-chs": "克里语",
10629
"zh-cht": "克里語",
10630
"xloc": [
10631
- "default.handlebars->31->1219"
10631
+ "default.handlebars->31->1228"
10632
]
10633
},
10634
{
@@ -10648,7 +10648,7 @@
10648
"zh-chs": "克罗地亚文",
10649
"zh-cht": "克羅地亞文",
10650
"xloc": [
10651
- "default.handlebars->31->1220"
10651
+ "default.handlebars->31->1229"
10652
]
10653
},
10654
{
@@ -10713,8 +10713,8 @@
10713
"default-mobile.handlebars->11->358",
10714
"default-mobile.handlebars->11->362",
10715
"default.handlebars->31->57",
10716
- "default.handlebars->31->950",
10717
- "default.handlebars->31->954",
10716
+ "default.handlebars->31->959",
10717
+ "default.handlebars->31->963",
10718
"terminal.handlebars->3->6"
10719
]
10720
},
@@ -10823,7 +10823,7 @@
10823
"fr": "Le mot de passe actuel n'est pas correct.",
10824
"xloc": [
10825
"default-mobile.handlebars->11->614",
10826
- "default.handlebars->31->2240"
10826
+ "default.handlebars->31->2249"
10827
]
10828
},
10829
{
@@ -10882,7 +10882,7 @@
10882
"zh-chs": "捷克文",
10883
"zh-cht": "捷克文",
10884
"xloc": [
10885
- "default.handlebars->31->1221"
10885
+ "default.handlebars->31->1230"
10886
]
10887
},
10888
{
@@ -10922,7 +10922,7 @@
10922
"zh-chs": "丹麦文",
10923
"zh-cht": "丹麥文",
10924
"xloc": [
10925
- "default.handlebars->31->1222"
10925
+ "default.handlebars->31->1231"
10926
]
10927
},
10928
{
@@ -10951,7 +10951,7 @@
10951
"zh-chs": "数据通道",
10952
"zh-cht": "數據通道",
10953
"xloc": [
10954
- "default.handlebars->31->917",
10954
+ "default.handlebars->31->926",
10955
"desktop.handlebars->3->11"
10956
]
10957
},
@@ -10972,7 +10972,7 @@
10972
"zh-chs": "日期和时间",
10973
"zh-cht": "日期和時間",
10974
"xloc": [
10975
- "default.handlebars->31->1380"
10975
+ "default.handlebars->31->1389"
10976
]
10977
},
10978
{
@@ -10993,7 +10993,7 @@
10993
"zh-cht": "天",
10994
"xloc": [
10995
"default-mobile.handlebars->11->314",
10996
- "default.handlebars->31->844"
10996
+ "default.handlebars->31->853"
10997
]
10998
},
10999
{
@@ -11013,7 +11013,7 @@
11013
"zh-chs": "停用",
11014
"zh-cht": "停用",
11015
"xloc": [
11016
- "default.handlebars->31->1510"
11016
+ "default.handlebars->31->1519"
11017
]
11018
},
11019
{
@@ -11033,7 +11033,7 @@
11033
"zh-chs": "如果设置停用CCM",
11034
"zh-cht": "如果設置停用CCM",
11035
"xloc": [
11036
- "default.handlebars->31->1522"
11036
+ "default.handlebars->31->1531"
11037
]
11038
},
11039
{
@@ -11091,10 +11091,10 @@
11091
"zh-chs": "默认",
11092
"zh-cht": "默認",
11093
"xloc": [
11094
- "default.handlebars->31->1935",
11095
- "default.handlebars->31->1983",
11096
- "default.handlebars->31->1994",
11097
- "default.handlebars->31->2062"
11094
+ "default.handlebars->31->1944",
11095
+ "default.handlebars->31->1992",
11096
+ "default.handlebars->31->2003",
11097
+ "default.handlebars->31->2071"
11098
]
11099
},
11100
{
@@ -11103,7 +11103,7 @@
11103
"nl": "Del",
11104
"xloc": [
11105
"default-mobile.handlebars->11->346",
11106
- "default.handlebars->31->938"
11106
+ "default.handlebars->31->947"
11107
]
11108
},
11109
{
@@ -11128,8 +11128,8 @@
11128
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11129
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11130
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
11131
- "default.handlebars->31->1016",
11132
- "default.handlebars->31->1714",
11131
+ "default.handlebars->31->1025",
11132
+ "default.handlebars->31->1723",
11133
"default.handlebars->31->562",
11134
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11135
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -11159,7 +11159,7 @@
11159
"zh-cht": "刪除帳戶",
11160
"xloc": [
11161
"default-mobile.handlebars->11->107",
11162
- "default.handlebars->31->1397"
11162
+ "default.handlebars->31->1406"
11163
]
11164
},
11165
{
@@ -11179,7 +11179,7 @@
11179
"zh-chs": "删除帐户",
11180
"zh-cht": "刪除帳戶",
11181
"xloc": [
11182
- "default.handlebars->31->1902"
11182
+ "default.handlebars->31->1911"
11183
]
11184
},
11185
{
@@ -11222,8 +11222,8 @@
11222
"xloc": [
11223
"default-mobile.handlebars->11->526",
11224
"default-mobile.handlebars->11->529",
11225
- "default.handlebars->31->1506",
11226
- "default.handlebars->31->1539"
11225
+ "default.handlebars->31->1515",
11226
+ "default.handlebars->31->1548"
11227
]
11228
},
11229
{
@@ -11244,7 +11244,7 @@
11244
"zh-cht": "刪除節點",
11245
"xloc": [
11246
"default-mobile.handlebars->11->322",
11247
- "default.handlebars->31->870"
11247
+ "default.handlebars->31->879"
11248
]
11249
},
11250
{
@@ -11284,7 +11284,7 @@
11284
"zh-chs": "删除用户",
11285
"zh-cht": "刪除用戶",
11286
"xloc": [
11287
- "default.handlebars->31->2114"
11287
+ "default.handlebars->31->2123"
11288
]
11289
},
11290
{
@@ -11304,8 +11304,8 @@
11304
"zh-chs": "删除用户群组",
11305
"zh-cht": "刪除用戶群組",
11306
"xloc": [
11307
- "default.handlebars->31->2032",
11308
- "default.handlebars->31->2042"
11307
+ "default.handlebars->31->2041",
11308
+ "default.handlebars->31->2051"
11309
]
11310
},
11311
{
@@ -11325,7 +11325,7 @@
11325
"zh-chs": "删除用户群组",
11326
"zh-cht": "刪除用戶群組",
11327
"xloc": [
11328
- "default.handlebars->31->1981"
11328
+ "default.handlebars->31->1990"
11329
]
11330
},
11331
{
@@ -11345,7 +11345,7 @@
11345
"zh-chs": "删除用户{0}",
11346
"zh-cht": "刪除用戶{0}",
11347
"xloc": [
11348
- "default.handlebars->31->2141"
11348
+ "default.handlebars->31->2150"
11349
]
11350
},
11351
{
@@ -11366,7 +11366,7 @@
11366
"zh-cht": "刪除帳戶",
11367
"xloc": [
11368
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
11369
- "default.handlebars->31->1898",
11369
+ "default.handlebars->31->1907",
11370
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11371
]
11372
},
@@ -11407,7 +11407,7 @@
11407
"zh-chs": "删除群组",
11408
"zh-cht": "刪除群組",
11409
"xloc": [
11410
- "default.handlebars->31->1977"
11410
+ "default.handlebars->31->1986"
11411
]
11412
},
11413
{
@@ -11447,7 +11447,7 @@
11447
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11448
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11449
"xloc": [
11450
- "default.handlebars->31->1774"
11450
+ "default.handlebars->31->1783"
11451
]
11452
},
11453
{
@@ -11469,8 +11469,8 @@
11469
"xloc": [
11470
"default-mobile.handlebars->11->147",
11471
"default-mobile.handlebars->11->381",
11472
- "default.handlebars->31->1018",
11473
- "default.handlebars->31->1716"
11472
+ "default.handlebars->31->1027",
11473
+ "default.handlebars->31->1725"
11474
]
11475
},
11476
{
@@ -11490,7 +11490,7 @@
11490
"zh-chs": "删除用户群组{0}?",
11491
"zh-cht": "刪除用戶群組{0}?",
11492
"xloc": [
11493
- "default.handlebars->31->2040"
11493
+ "default.handlebars->31->2049"
11494
]
11495
},
11496
{
@@ -11512,8 +11512,8 @@
11512
"xloc": [
11513
"default-mobile.handlebars->11->146",
11514
"default-mobile.handlebars->11->380",
11515
- "default.handlebars->31->1017",
11516
- "default.handlebars->31->1715"
11515
+ "default.handlebars->31->1026",
11516
+ "default.handlebars->31->1724"
11517
]
11518
},
11519
{
@@ -11553,7 +11553,7 @@
11553
"zh-chs": "删除:“{0}”",
11554
"zh-cht": "刪除:“{0}”",
11555
"xloc": [
11556
- "default.handlebars->31->1773"
11556
+ "default.handlebars->31->1782"
11557
]
11558
},
11559
{
@@ -11573,7 +11573,7 @@
11573
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11574
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11575
"xloc": [
11576
- "default.handlebars->31->1775"
11576
+ "default.handlebars->31->1784"
11577
]
11578
},
11579
{
@@ -11594,7 +11594,7 @@
11594
"zh-cht": "被拒絕",
11595
"xloc": [
11596
"default-mobile.handlebars->11->333",
11597
- "default.handlebars->31->913",
11597
+ "default.handlebars->31->922",
11598
"desktop.handlebars->3->7",
11599
"terminal.handlebars->3->11"
11600
]
@@ -11692,18 +11692,18 @@
11692
"default-mobile.handlebars->11->442",
11693
"default-mobile.handlebars->11->517",
11694
"default-mobile.handlebars->11->531",
11695
- "default.handlebars->31->1070",
11696
- "default.handlebars->31->1080",
11697
- "default.handlebars->31->1417",
11698
- "default.handlebars->31->1454",
11699
- "default.handlebars->31->1541",
11700
- "default.handlebars->31->1986",
11701
- "default.handlebars->31->1996",
11702
- "default.handlebars->31->1997",
11703
- "default.handlebars->31->2038",
11695
+ "default.handlebars->31->1079",
11696
+ "default.handlebars->31->1089",
11697
+ "default.handlebars->31->1426",
11698
+ "default.handlebars->31->1463",
11699
+ "default.handlebars->31->1550",
11700
+ "default.handlebars->31->1995",
11701
+ "default.handlebars->31->2005",
11702
+ "default.handlebars->31->2006",
11703
+ "default.handlebars->31->2047",
11704
"default.handlebars->31->603",
11705
"default.handlebars->31->604",
11706
- "default.handlebars->31->908",
11706
+ "default.handlebars->31->917",
11707
"default.handlebars->31->92",
11708
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11709
]
@@ -11743,12 +11743,12 @@
11743
"zh-cht": "桌面",
11744
"xloc": [
11745
"default-mobile.handlebars->11->298",
11746
- "default.handlebars->31->1547",
11747
- "default.handlebars->31->2190",
11746
+ "default.handlebars->31->1556",
11747
+ "default.handlebars->31->2199",
11748
"default.handlebars->31->568",
11749
"default.handlebars->31->738",
11750
"default.handlebars->31->794",
11751
- "default.handlebars->31->980",
11751
+ "default.handlebars->31->989",
11752
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11753
"default.handlebars->contextMenu->cxdesktop",
11754
"desktop.handlebars->3->23"
@@ -11791,9 +11791,9 @@
11791
"zh-chs": "桌面通知",
11792
"zh-cht": "桌面通知",
11793
"xloc": [
11794
- "default.handlebars->31->1468",
11795
- "default.handlebars->31->2001",
11796
- "default.handlebars->31->2088",
11794
+ "default.handlebars->31->1477",
11795
+ "default.handlebars->31->2010",
11796
+ "default.handlebars->31->2097",
11797
"default.handlebars->31->654"
11798
]
11799
},
@@ -11814,9 +11814,9 @@
11814
"zh-chs": "桌面提示",
11815
"zh-cht": "桌面提示",
11816
"xloc": [
11817
- "default.handlebars->31->1467",
11818
- "default.handlebars->31->2000",
11819
- "default.handlebars->31->2087",
11817
+ "default.handlebars->31->1476",
11818
+ "default.handlebars->31->2009",
11819
+ "default.handlebars->31->2096",
11820
"default.handlebars->31->653"
11821
]
11822
},
@@ -11837,9 +11837,9 @@
11837
"zh-chs": "桌面提示+工具栏",
11838
"zh-cht": "桌面提示+工具欄",
11839
"xloc": [
11840
- "default.handlebars->31->1465",
11841
- "default.handlebars->31->1998",
11842
- "default.handlebars->31->2085",
11840
+ "default.handlebars->31->1474",
11841
+ "default.handlebars->31->2007",
11842
+ "default.handlebars->31->2094",
11843
"default.handlebars->31->651"
11844
]
11845
},
@@ -11902,9 +11902,9 @@
11902
"zh-chs": "桌面工具栏",
11903
"zh-cht": "桌面工具欄",
11904
"xloc": [
11905
- "default.handlebars->31->1466",
11906
- "default.handlebars->31->1999",
11907
- "default.handlebars->31->2086",
11905
+ "default.handlebars->31->1475",
11906
+ "default.handlebars->31->2008",
11907
+ "default.handlebars->31->2095",
11908
"default.handlebars->31->652"
11909
]
11910
},
@@ -11933,7 +11933,7 @@
11933
"zh-chs": "桌面时段",
11934
"zh-cht": "桌面時段",
11935
"xloc": [
11936
- "default.handlebars->31->979"
11936
+ "default.handlebars->31->988"
11937
]
11938
},
11939
{
@@ -12025,10 +12025,10 @@
12025
"zh-cht": "裝置",
12026
"xloc": [
12027
"default-mobile.handlebars->11->437",
12028
- "default.handlebars->31->1065",
12029
- "default.handlebars->31->1570",
12028
+ "default.handlebars->31->1074",
12029
+ "default.handlebars->31->1579",
12030
"default.handlebars->31->201",
12031
- "default.handlebars->31->2160",
12031
+ "default.handlebars->31->2169",
12032
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12033
]
12034
},
@@ -12051,7 +12051,7 @@
12051
"xloc": [
12052
"default-mobile.handlebars->11->309",
12053
"default-mobile.handlebars->11->312",
12054
- "default.handlebars->31->833"
12054
+ "default.handlebars->31->836"
12055
]
12056
},
12057
{
@@ -12093,15 +12093,15 @@
12093
"xloc": [
12094
"agent-translations.json",
12095
"default-mobile.handlebars->11->592",
12096
- "default.handlebars->31->1565",
12097
- "default.handlebars->31->1568",
12098
- "default.handlebars->31->1569",
12099
- "default.handlebars->31->1849",
12100
- "default.handlebars->31->2024",
12101
- "default.handlebars->31->2030",
12102
- "default.handlebars->31->2148",
12103
- "default.handlebars->31->2199",
12104
- "default.handlebars->31->2218"
12096
+ "default.handlebars->31->1574",
12097
+ "default.handlebars->31->1577",
12098
+ "default.handlebars->31->1578",
12099
+ "default.handlebars->31->1858",
12100
+ "default.handlebars->31->2033",
12101
+ "default.handlebars->31->2039",
12102
+ "default.handlebars->31->2157",
12103
+ "default.handlebars->31->2208",
12104
+ "default.handlebars->31->2227"
12105
]
12106
},
12107
{
@@ -12122,7 +12122,7 @@
12122
"zh-cht": "裝置群用戶",
12123
"xloc": [
12124
"default-mobile.handlebars->11->581",
12125
- "default.handlebars->31->1635"
12125
+ "default.handlebars->31->1644"
12126
]
12127
},
12128
{
@@ -12143,11 +12143,11 @@
12143
"zh-cht": "裝置群",
12144
"xloc": [
12145
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
12146
- "default.handlebars->31->1865",
12147
- "default.handlebars->31->1971",
12148
- "default.handlebars->31->2011",
12149
- "default.handlebars->31->2082",
12150
- "default.handlebars->31->2269",
12146
+ "default.handlebars->31->1874",
12147
+ "default.handlebars->31->1980",
12148
+ "default.handlebars->31->2020",
12149
+ "default.handlebars->31->2091",
12150
+ "default.handlebars->31->2278",
12151
"default.handlebars->container->column_l->p2->p2info->7"
12152
]
12153
},
@@ -12188,7 +12188,7 @@
12188
"zh-chs": "设备位置",
12189
"zh-cht": "裝置位置",
12190
"xloc": [
12191
- "default.handlebars->31->871"
12191
+ "default.handlebars->31->880"
12192
]
12193
},
12194
{
@@ -12229,9 +12229,9 @@
12229
"zh-cht": "裝置名稱",
12230
"xloc": [
12231
"default-mobile.handlebars->11->326",
12232
- "default.handlebars->31->2198",
12232
+ "default.handlebars->31->2207",
12233
"default.handlebars->31->314",
12234
- "default.handlebars->31->906",
12234
+ "default.handlebars->31->915",
12235
"player.handlebars->3->9"
12236
]
12237
},
@@ -12338,8 +12338,8 @@
12338
"zh-chs": "设备连接。",
12339
"zh-cht": "裝置連接。",
12340
"xloc": [
12341
- "default.handlebars->31->1385",
12342
- "default.handlebars->31->1656"
12341
+ "default.handlebars->31->1394",
12342
+ "default.handlebars->31->1665"
12343
]
12344
},
12345
{
@@ -12359,8 +12359,8 @@
12359
"zh-chs": "设备断开连接。",
12360
"zh-cht": "裝置斷開連接。",
12361
"xloc": [
12362
- "default.handlebars->31->1386",
12363
- "default.handlebars->31->1657"
12362
+ "default.handlebars->31->1395",
12363
+ "default.handlebars->31->1666"
12364
]
12365
},
12366
{
@@ -12380,7 +12380,7 @@
12380
"zh-chs": "创建的设备组:{0}",
12381
"zh-cht": "設備組已創建:{0}",
12382
"xloc": [
12383
- "default.handlebars->31->1804"
12383
+ "default.handlebars->31->1813"
12384
]
12385
},
12386
{
@@ -12400,7 +12400,7 @@
12400
"zh-chs": "设备组已删除:{0}",
12401
"zh-cht": "設備組已刪除:{0}",
12402
"xloc": [
12403
- "default.handlebars->31->1805"
12403
+ "default.handlebars->31->1814"
12404
]
12405
},
12406
{
@@ -12420,7 +12420,7 @@
12420
"zh-chs": "设备组成员身份已更改:{0}",
12421
"zh-cht": "設備組成員身份已更改:{0}",
12422
"xloc": [
12423
- "default.handlebars->31->1806"
12423
+ "default.handlebars->31->1815"
12424
]
12425
},
12426
{
@@ -12461,7 +12461,7 @@
12461
"zh-chs": "设备组通知已更改",
12462
"zh-cht": "設備組通知已更改",
12463
"xloc": [
12464
- "default.handlebars->31->1801"
12464
+ "default.handlebars->31->1810"
12465
]
12466
},
12467
{
@@ -12481,7 +12481,7 @@
12481
"zh-chs": "未删除的设备组:{0}",
12482
"zh-cht": "未刪除的設備組:{0}",
12483
"xloc": [
12484
- "default.handlebars->31->1784"
12484
+ "default.handlebars->31->1793"
12485
]
12486
},
12487
{
@@ -12861,7 +12861,7 @@
12861
"en": "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}",
12862
"nl": "Apparaat verzocht om Intel (R) AMT ACM TLS-activering, FQDN: {0}",
12863
"xloc": [
12864
- "default.handlebars->31->1839"
12864
+ "default.handlebars->31->1848"
12865
]
12866
},
12867
{
@@ -12881,7 +12881,7 @@
12881
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12882
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12883
"xloc": [
12884
- "default.handlebars->31->1786"
12884
+ "default.handlebars->31->1795"
12885
]
12886
},
12887
{
@@ -12918,8 +12918,8 @@
12918
"zh-chs": "设备",
12919
"zh-cht": "裝置",
12920
"xloc": [
12921
- "default.handlebars->31->1972",
12922
- "default.handlebars->31->2012"
12921
+ "default.handlebars->31->1981",
12922
+ "default.handlebars->31->2021"
12923
]
12924
},
12925
{
@@ -12960,7 +12960,7 @@
12960
"zh-chs": "禁用的电子邮件两因素身份验证",
12961
"zh-cht": "禁用的電子郵件兩因素身份驗證",
12962
"xloc": [
12963
- "default.handlebars->31->1817"
12963
+ "default.handlebars->31->1826"
12964
]
12965
},
12966
{
@@ -12983,8 +12983,8 @@
12983
"agent-translations.json",
12984
"default-mobile.handlebars->11->370",
12985
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12986
- "default.handlebars->31->1478",
12987
- "default.handlebars->31->998",
12986
+ "default.handlebars->31->1007",
12987
+ "default.handlebars->31->1487",
12988
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12989
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
12990
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -13144,7 +13144,7 @@
13144
"zh-chs": "显示设备组名称",
13145
"zh-cht": "顯示裝置群名稱",
13146
"xloc": [
13147
- "default.handlebars->31->1384"
13147
+ "default.handlebars->31->1393"
13148
]
13149
},
13150
{
@@ -13164,7 +13164,7 @@
13164
"zh-chs": "显示名称",
13165
"zh-cht": "顯示名稱",
13166
"xloc": [
13167
- "default.handlebars->31->965"
13167
+ "default.handlebars->31->974"
13168
]
13169
},
13170
{
@@ -13184,7 +13184,7 @@
13184
"zh-chs": "显示公共连结",
13185
"zh-cht": "顯示公共鏈結",
13186
"xloc": [
13187
- "default.handlebars->31->1687"
13187
+ "default.handlebars->31->1696"
13188
]
13189
},
13190
{
@@ -13192,7 +13192,7 @@
13192
"nl": "Scherm {0}",
13193
"fr": "Affichage {0}",
13194
"xloc": [
13195
- "default.handlebars->31->982"
13195
+ "default.handlebars->31->991"
13196
]
13197
},
13198
{
@@ -13212,7 +13212,7 @@
13212
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13213
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13214
"xloc": [
13215
- "default.handlebars->31->1746"
13215
+ "default.handlebars->31->1755"
13216
]
13217
},
13218
{
@@ -13232,7 +13232,7 @@
13232
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13233
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13234
"xloc": [
13235
- "default.handlebars->31->1754"
13235
+ "default.handlebars->31->1763"
13236
]
13237
},
13238
{
@@ -13252,8 +13252,8 @@
13252
"zh-chs": "什么都不做",
13253
"zh-cht": "什麼都不做",
13254
"xloc": [
13255
- "default.handlebars->31->1525",
13256
- "default.handlebars->31->1529"
13255
+ "default.handlebars->31->1534",
13256
+ "default.handlebars->31->1538"
13257
]
13258
},
13259
{
@@ -13273,10 +13273,10 @@
13273
"zh-chs": "域",
13274
"zh-cht": "域",
13275
"xloc": [
13276
- "default.handlebars->31->1936",
13277
- "default.handlebars->31->1984",
13276
+ "default.handlebars->31->1945",
13277
"default.handlebars->31->1993",
13279
- "default.handlebars->31->2061",
13278
+ "default.handlebars->31->2002",
13279
+ "default.handlebars->31->2070",
13280
"mstsc.handlebars->main->1->3->1->2->1->0",
13281
"mstsc.handlebars->main->1->3->1->2->3"
13282
]
@@ -13298,7 +13298,7 @@
13298
"zh-chs": "请勿更改,如果设置请保留CCM",
13299
"zh-cht": "請勿更改,如果設置請保留CCM",
13300
"xloc": [
13301
- "default.handlebars->31->1521"
13301
+ "default.handlebars->31->1530"
13302
]
13303
},
13304
{
@@ -13335,7 +13335,7 @@
13335
"zh-chs": "不要连接到服务器",
13336
"zh-cht": "不要連接到伺服器",
13337
"xloc": [
13338
- "default.handlebars->31->1530"
13338
+ "default.handlebars->31->1539"
13339
]
13340
},
13341
{
@@ -13400,7 +13400,7 @@
13400
"nl": "Omlaag",
13401
"xloc": [
13402
"default-mobile.handlebars->11->354",
13403
- "default.handlebars->31->946"
13403
+ "default.handlebars->31->955"
13404
]
13405
},
13406
{
@@ -13464,7 +13464,7 @@
13464
"zh-cht": "下載檔案",
13465
"xloc": [
13466
"default-mobile.handlebars->11->400",
13467
- "default.handlebars->31->1037"
13467
+ "default.handlebars->31->1046"
13468
]
13469
},
13470
{
@@ -13504,7 +13504,7 @@
13504
"zh-chs": "下载MeshCmd",
13505
"zh-cht": "下載MeshCmd",
13506
"xloc": [
13507
- "default.handlebars->31->896"
13507
+ "default.handlebars->31->905"
13508
]
13509
},
13510
{
@@ -13564,7 +13564,7 @@
13564
"zh-chs": "下载报告",
13565
"zh-cht": "下載報告",
13566
"xloc": [
13567
- "default.handlebars->31->1854",
13567
+ "default.handlebars->31->1863",
13568
"default.handlebars->container->column_l->p3->3->1->0->3"
13569
]
13570
},
@@ -13585,7 +13585,7 @@
13585
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
13586
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
13587
"xloc": [
13588
- "default.handlebars->31->889"
13588
+ "default.handlebars->31->898"
13589
]
13590
},
13591
{
@@ -13665,7 +13665,7 @@
13665
"zh-chs": "下载电源事件",
13666
"zh-cht": "下載電源事件",
13667
"xloc": [
13668
- "default.handlebars->31->845"
13668
+ "default.handlebars->31->854"
13669
]
13670
},
13671
{
@@ -13773,7 +13773,7 @@
13773
"zh-chs": "使用以下一种档案格式下载事件列表。",
13774
"zh-cht": "使用以下一種檔案格式下載事件列表。",
13775
"xloc": [
13776
- "default.handlebars->31->1855"
13776
+ "default.handlebars->31->1864"
13777
]
13778
},
13779
{
@@ -13793,7 +13793,7 @@
13793
"zh-chs": "使用以下一种档案格式下载用户列表。",
13794
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
13795
"xloc": [
13796
- "default.handlebars->31->1920"
13796
+ "default.handlebars->31->1929"
13797
]
13798
},
13799
{
@@ -13874,7 +13874,7 @@
13874
"zh-chs": "下载:“{0}”",
13875
"zh-cht": "下載:“{0}”",
13876
"xloc": [
13877
- "default.handlebars->31->1777"
13877
+ "default.handlebars->31->1786"
13878
]
13879
},
13880
{
@@ -13882,7 +13882,7 @@
13882
"nl": "Download: \\\"{0}\\\", Grootte: {1}",
13883
"fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13884
"xloc": [
13885
- "default.handlebars->31->1834"
13885
+ "default.handlebars->31->1843"
13886
]
13887
},
13888
{
@@ -13922,7 +13922,7 @@
13922
"zh-chs": "代理重复",
13923
"zh-cht": "代理重複",
13924
"xloc": [
13925
- "default.handlebars->31->2265"
13925
+ "default.handlebars->31->2274"
13926
]
13927
},
13928
{
@@ -13962,7 +13962,7 @@
13962
"zh-chs": "复制用户组",
13963
"zh-cht": "複製用戶群",
13964
"xloc": [
13965
- "default.handlebars->31->1988"
13965
+ "default.handlebars->31->1997"
13966
]
13967
},
13968
{
@@ -13999,8 +13999,8 @@
13999
"zh-chs": "持续时间",
14000
"zh-cht": "持續時間",
14001
"xloc": [
14002
- "default.handlebars->31->2184",
14003
- "default.handlebars->31->2204",
14002
+ "default.handlebars->31->2193",
14003
+ "default.handlebars->31->2213",
14004
"player.handlebars->3->2"
14005
]
14006
},
@@ -14038,7 +14038,7 @@
14038
"zh-chs": "荷兰文(比利时)",
14039
"zh-cht": "荷蘭文(比利時)",
14040
"xloc": [
14041
- "default.handlebars->31->1224"
14041
+ "default.handlebars->31->1233"
14042
]
14043
},
14044
{
@@ -14058,7 +14058,7 @@
14058
"zh-chs": "荷兰文(标准)",
14059
"zh-cht": "荷蘭文(標準)",
14060
"xloc": [
14061
- "default.handlebars->31->1223"
14061
+ "default.handlebars->31->1232"
14062
]
14063
},
14064
{
@@ -14347,7 +14347,7 @@
14347
"zh-cht": "編輯裝置",
14348
"xloc": [
14349
"default-mobile.handlebars->11->331",
14350
- "default.handlebars->31->911"
14350
+ "default.handlebars->31->920"
14351
]
14352
},
14353
{
@@ -14370,10 +14370,10 @@
14370
"default-mobile.handlebars->11->532",
14371
"default-mobile.handlebars->11->538",
14372
"default-mobile.handlebars->11->558",
14373
- "default.handlebars->31->1542",
14374
- "default.handlebars->31->1574",
14375
- "default.handlebars->31->1599",
14376
- "default.handlebars->31->1611"
14373
+ "default.handlebars->31->1551",
14374
+ "default.handlebars->31->1583",
14375
+ "default.handlebars->31->1608",
14376
+ "default.handlebars->31->1620"
14377
]
14378
},
14379
{
@@ -14393,7 +14393,7 @@
14393
"zh-chs": "编辑设备组功能",
14394
"zh-cht": "編輯裝置群功能",
14395
"xloc": [
14396
- "default.handlebars->31->1560"
14396
+ "default.handlebars->31->1569"
14397
]
14398
},
14399
{
@@ -14413,8 +14413,8 @@
14413
"zh-chs": "编辑设备组权限",
14414
"zh-cht": "編輯裝置群權限",
14415
"xloc": [
14416
- "default.handlebars->31->1596",
14417
- "default.handlebars->31->1608"
14416
+ "default.handlebars->31->1605",
14417
+ "default.handlebars->31->1617"
14418
]
14419
},
14420
{
@@ -14434,7 +14434,7 @@
14434
"zh-chs": "编辑设备组用户同意",
14435
"zh-cht": "編輯裝置群用戶同意",
14436
"xloc": [
14437
- "default.handlebars->31->1543"
14437
+ "default.handlebars->31->1552"
14438
]
14439
},
14440
{
@@ -14455,7 +14455,7 @@
14455
"zh-cht": "編輯裝置筆記",
14456
"xloc": [
14457
"default-mobile.handlebars->11->550",
14458
- "default.handlebars->31->1588"
14458
+ "default.handlebars->31->1597"
14459
]
14460
},
14461
{
@@ -14475,8 +14475,8 @@
14475
"zh-chs": "编辑设备权限",
14476
"zh-cht": "編輯裝置權限",
14477
"xloc": [
14478
- "default.handlebars->31->1601",
14479
- "default.handlebars->31->1603"
14478
+ "default.handlebars->31->1610",
14479
+ "default.handlebars->31->1612"
14480
]
14481
},
14482
{
@@ -14516,7 +14516,7 @@
14516
"zh-chs": "编辑设备用户同意",
14517
"zh-cht": "編輯裝置用戶同意",
14518
"xloc": [
14519
- "default.handlebars->31->1545"
14519
+ "default.handlebars->31->1554"
14520
]
14521
},
14522
{
@@ -14563,7 +14563,7 @@
14563
"default.handlebars->31->618",
14564
"default.handlebars->31->623",
14565
"default.handlebars->31->624",
14566
- "default.handlebars->31->852"
14566
+ "default.handlebars->31->861"
14567
]
14568
},
14569
{
@@ -14584,7 +14584,7 @@
14584
"zh-cht": "編輯筆記",
14585
"xloc": [
14586
"default-mobile.handlebars->11->565",
14587
- "default.handlebars->31->1618"
14587
+ "default.handlebars->31->1627"
14588
]
14589
},
14590
{
@@ -14604,7 +14604,7 @@
14604
"zh-chs": "编辑用户同意",
14605
"zh-cht": "編輯用戶同意",
14606
"xloc": [
14607
- "default.handlebars->31->1544"
14607
+ "default.handlebars->31->1553"
14608
]
14609
},
14610
{
@@ -14624,7 +14624,7 @@
14624
"zh-chs": "编辑用户设备组权限",
14625
"zh-cht": "編輯用戶裝置群權限",
14626
"xloc": [
14627
- "default.handlebars->31->1609"
14627
+ "default.handlebars->31->1618"
14628
]
14629
},
14630
{
@@ -14644,7 +14644,7 @@
14644
"zh-chs": "编辑用户设备权限",
14645
"zh-cht": "編輯用戶裝置權限",
14646
"xloc": [
14647
- "default.handlebars->31->1604"
14647
+ "default.handlebars->31->1613"
14648
]
14649
},
14650
{
@@ -14664,7 +14664,7 @@
14664
"zh-chs": "编辑用户组",
14665
"zh-cht": "編輯用戶群",
14666
"xloc": [
14667
- "default.handlebars->31->2039"
14667
+ "default.handlebars->31->2048"
14668
]
14669
},
14670
{
@@ -14684,7 +14684,7 @@
14684
"zh-chs": "编辑用户组设备权限",
14685
"zh-cht": "編輯用戶群裝置權限",
14686
"xloc": [
14687
- "default.handlebars->31->1606"
14687
+ "default.handlebars->31->1615"
14688
]
14689
},
14690
{
@@ -14704,7 +14704,7 @@
14704
"zh-chs": "编辑用户组用户同意",
14705
"zh-cht": "編輯用戶組用戶同意",
14706
"xloc": [
14707
- "default.handlebars->31->1546"
14707
+ "default.handlebars->31->1555"
14708
]
14709
},
14710
{
@@ -14786,11 +14786,11 @@
14786
"zh-cht": "電郵",
14787
"xloc": [
14788
"default-mobile.handlebars->11->101",
14789
- "default.handlebars->31->1938",
14790
- "default.handlebars->31->2065",
14791
- "default.handlebars->31->2067",
14792
- "default.handlebars->31->2107",
14793
- "default.handlebars->31->2127",
14789
+ "default.handlebars->31->1947",
14790
+ "default.handlebars->31->2074",
14791
+ "default.handlebars->31->2076",
14792
+ "default.handlebars->31->2116",
14793
+ "default.handlebars->31->2136",
14794
"default.handlebars->31->347",
14795
"login-mobile.handlebars->5->42",
14796
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14823,7 +14823,7 @@
14823
"zh-cht": "電郵地址變更",
14824
"xloc": [
14825
"default-mobile.handlebars->11->102",
14826
- "default.handlebars->31->1393"
14826
+ "default.handlebars->31->1402"
14827
]
14828
},
14829
{
@@ -14844,7 +14844,7 @@
14844
"zh-cht": "電郵認證",
14845
"xloc": [
14846
"default-mobile.handlebars->11->91",
14847
- "default.handlebars->31->1161"
14847
+ "default.handlebars->31->1170"
14848
]
14849
},
14850
{
@@ -14904,7 +14904,7 @@
14904
"zh-cht": "電郵驗證",
14905
"xloc": [
14906
"default-mobile.handlebars->11->100",
14907
- "default.handlebars->31->1391"
14907
+ "default.handlebars->31->1400"
14908
]
14909
},
14910
{
@@ -14944,7 +14944,7 @@
14944
"zh-chs": "电邮未验证",
14945
"zh-cht": "電郵未驗證",
14946
"xloc": [
14947
- "default.handlebars->31->1884"
14947
+ "default.handlebars->31->1893"
14948
]
14949
},
14950
{
@@ -14964,8 +14964,8 @@
14964
"zh-chs": "电子邮件已验证",
14965
"zh-cht": "電子郵件已驗證",
14966
"xloc": [
14967
- "default.handlebars->31->1885",
14968
- "default.handlebars->31->2059"
14967
+ "default.handlebars->31->1894",
14968
+ "default.handlebars->31->2068"
14969
]
14970
},
14971
{
@@ -14985,7 +14985,7 @@
14985
"zh-chs": "电邮已验证。",
14986
"zh-cht": "電郵已驗證。",
14987
"xloc": [
14988
- "default.handlebars->31->1944"
14988
+ "default.handlebars->31->1953"
14989
]
14990
},
14991
{
@@ -15005,7 +15005,7 @@
15005
"zh-chs": "电邮未验证",
15006
"zh-cht": "電郵未驗證",
15007
"xloc": [
15008
- "default.handlebars->31->2060"
15008
+ "default.handlebars->31->2069"
15009
]
15010
},
15011
{
@@ -15026,7 +15026,7 @@
15026
"zh-cht": "電郵已發送。",
15027
"xloc": [
15028
"default-mobile.handlebars->11->607",
15029
- "default.handlebars->31->2233",
15029
+ "default.handlebars->31->2242",
15030
"login-mobile.handlebars->5->2",
15031
"login.handlebars->5->2",
15032
"login2.handlebars->7->3"
@@ -15071,7 +15071,7 @@
15071
"zh-chs": "已通过电邮验证,并且需要重置密码。",
15072
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15073
"xloc": [
15074
- "default.handlebars->31->1945"
15074
+ "default.handlebars->31->1954"
15075
]
15076
},
15077
{
@@ -15095,7 +15095,7 @@
15095
"en": "Email/SMS/Push Traffic",
15096
"nl": "Email/SMS/Push verkeer",
15097
"xloc": [
15098
- "default.handlebars->31->2309"
15098
+ "default.handlebars->31->2318"
15099
]
15100
},
15101
{
@@ -15141,7 +15141,7 @@
15141
"zh-chs": "启用邀请代码",
15142
"zh-cht": "啟用邀請代碼",
15143
"xloc": [
15144
- "default.handlebars->31->1641"
15144
+ "default.handlebars->31->1650"
15145
]
15146
},
15147
{
@@ -15182,7 +15182,7 @@
15182
"zh-cht": "啟用電郵二因子鑑別。",
15183
"xloc": [
15184
"default-mobile.handlebars->11->93",
15185
- "default.handlebars->31->1163"
15185
+ "default.handlebars->31->1172"
15186
]
15187
},
15188
{
@@ -15222,7 +15222,7 @@
15222
"zh-chs": "已启用",
15223
"zh-cht": "已啟用",
15224
"xloc": [
15225
- "default.handlebars->31->2206"
15225
+ "default.handlebars->31->2215"
15226
]
15227
},
15228
{
@@ -15242,7 +15242,7 @@
15242
"zh-chs": "启用电子邮件两因素身份验证",
15243
"zh-cht": "啟用電子郵件兩因素身份驗證",
15244
"xloc": [
15245
- "default.handlebars->31->1816"
15245
+ "default.handlebars->31->1825"
15246
]
15247
},
15248
{
@@ -15271,7 +15271,7 @@
15271
"nl": "End",
15272
"xloc": [
15273
"default-mobile.handlebars->11->348",
15274
- "default.handlebars->31->940"
15274
+ "default.handlebars->31->949"
15275
]
15276
},
15277
{
@@ -15291,7 +15291,7 @@
15291
"zh-chs": "时间结束",
15292
"zh-cht": "時間結束",
15293
"xloc": [
15294
- "default.handlebars->31->2203"
15294
+ "default.handlebars->31->2212"
15295
]
15296
},
15297
{
@@ -15311,7 +15311,7 @@
15311
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15312
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15313
"xloc": [
15314
- "default.handlebars->31->1739"
15314
+ "default.handlebars->31->1748"
15315
]
15316
},
15317
{
@@ -15331,7 +15331,7 @@
15331
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15332
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15333
"xloc": [
15334
- "default.handlebars->31->1740"
15334
+ "default.handlebars->31->1749"
15335
]
15336
},
15337
{
@@ -15351,7 +15351,7 @@
15351
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15352
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15353
"xloc": [
15354
- "default.handlebars->31->1737"
15354
+ "default.handlebars->31->1746"
15355
]
15356
},
15357
{
@@ -15371,7 +15371,7 @@
15371
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15372
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15373
"xloc": [
15374
- "default.handlebars->31->1738"
15374
+ "default.handlebars->31->1747"
15375
]
15376
},
15377
{
@@ -15391,7 +15391,7 @@
15391
"zh-chs": "英文",
15392
"zh-cht": "英文",
15393
"xloc": [
15394
- "default.handlebars->31->1225"
15394
+ "default.handlebars->31->1234"
15395
]
15396
},
15397
{
@@ -15411,7 +15411,7 @@
15411
"zh-chs": "英文(澳洲)",
15412
"zh-cht": "英文(澳洲)",
15413
"xloc": [
15414
- "default.handlebars->31->1226"
15414
+ "default.handlebars->31->1235"
15415
]
15416
},
15417
{
@@ -15431,7 +15431,7 @@
15431
"zh-chs": "英文(伯利茲)",
15432
"zh-cht": "英文(伯利茲)",
15433
"xloc": [
15434
- "default.handlebars->31->1227"
15434
+ "default.handlebars->31->1236"
15435
]
15436
},
15437
{
@@ -15451,7 +15451,7 @@
15451
"zh-chs": "英文(加拿大)",
15452
"zh-cht": "英文(加拿大)",
15453
"xloc": [
15454
- "default.handlebars->31->1228"
15454
+ "default.handlebars->31->1237"
15455
]
15456
},
15457
{
@@ -15471,7 +15471,7 @@
15471
"zh-chs": "英文(爱尔兰)",
15472
"zh-cht": "英文(愛爾蘭)",
15473
"xloc": [
15474
- "default.handlebars->31->1229"
15474
+ "default.handlebars->31->1238"
15475
]
15476
},
15477
{
@@ -15491,7 +15491,7 @@
15491
"zh-chs": "英文(牙买加)",
15492
"zh-cht": "英文(牙買加)",
15493
"xloc": [
15494
- "default.handlebars->31->1230"
15494
+ "default.handlebars->31->1239"
15495
]
15496
},
15497
{
@@ -15511,7 +15511,7 @@
15511
"zh-chs": "英文(纽西兰)",
15512
"zh-cht": "英文(紐西蘭)",
15513
"xloc": [
15514
- "default.handlebars->31->1231"
15514
+ "default.handlebars->31->1240"
15515
]
15516
},
15517
{
@@ -15531,7 +15531,7 @@
15531
"zh-chs": "英文(菲律宾)",
15532
"zh-cht": "英文(菲律賓)",
15533
"xloc": [
15534
- "default.handlebars->31->1232"
15534
+ "default.handlebars->31->1241"
15535
]
15536
},
15537
{
@@ -15551,7 +15551,7 @@
15551
"zh-chs": "英语(南非)",
15552
"zh-cht": "英語(南非)",
15553
"xloc": [
15554
- "default.handlebars->31->1233"
15554
+ "default.handlebars->31->1242"
15555
]
15556
},
15557
{
@@ -15571,7 +15571,7 @@
15571
"zh-chs": "英文(特立尼达和多巴哥)",
15572
"zh-cht": "英文(特立尼達和多巴哥)",
15573
"xloc": [
15574
- "default.handlebars->31->1234"
15574
+ "default.handlebars->31->1243"
15575
]
15576
},
15577
{
@@ -15591,7 +15591,7 @@
15591
"zh-chs": "英文(英国)",
15592
"zh-cht": "英文(英國)",
15593
"xloc": [
15594
- "default.handlebars->31->1235"
15594
+ "default.handlebars->31->1244"
15595
]
15596
},
15597
{
@@ -15611,7 +15611,7 @@
15611
"zh-chs": "美国英文",
15612
"zh-cht": "美國英語",
15613
"xloc": [
15614
- "default.handlebars->31->1236"
15614
+ "default.handlebars->31->1245"
15615
]
15616
},
15617
{
@@ -15631,7 +15631,7 @@
15631
"zh-chs": "英文(津巴布韦)",
15632
"zh-cht": "英文(津巴布韋)",
15633
"xloc": [
15634
- "default.handlebars->31->1237"
15634
+ "default.handlebars->31->1246"
15635
]
15636
},
15637
{
@@ -15652,10 +15652,10 @@
15652
"zh-cht": "輸入",
15653
"xloc": [
15654
"default-mobile.handlebars->11->342",
15655
- "default.handlebars->31->1010",
15656
- "default.handlebars->31->1419",
15657
- "default.handlebars->31->1420",
15658
- "default.handlebars->31->934"
15655
+ "default.handlebars->31->1019",
15656
+ "default.handlebars->31->1428",
15657
+ "default.handlebars->31->1429",
15658
+ "default.handlebars->31->943"
15659
]
15660
},
15661
{
@@ -15675,7 +15675,7 @@
15675
"zh-chs": "输入管理领域名称的逗号分隔列表。",
15676
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15677
"xloc": [
15678
- "default.handlebars->31->1949"
15678
+ "default.handlebars->31->1958"
15679
]
15680
},
15681
{
@@ -15735,7 +15735,7 @@
15735
"zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
15736
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
15737
"xloc": [
15738
- "default.handlebars->31->959"
15738
+ "default.handlebars->31->968"
15739
]
15740
},
15741
{
@@ -15797,7 +15797,7 @@
15797
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15798
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15799
"xloc": [
15800
- "default.handlebars->31->1158"
15800
+ "default.handlebars->31->1167"
15801
]
15802
},
15803
{
@@ -15826,7 +15826,7 @@
15826
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15827
"xloc": [
15828
"default-mobile.handlebars->11->615",
15829
- "default.handlebars->31->2241"
15829
+ "default.handlebars->31->2250"
15830
]
15831
},
15832
{
@@ -15835,7 +15835,7 @@
15835
"fr": "Erreur, mot de passe non modifié.",
15836
"xloc": [
15837
"default-mobile.handlebars->11->612",
15838
- "default.handlebars->31->2238"
15838
+ "default.handlebars->31->2247"
15839
]
15840
},
15841
{
@@ -15844,7 +15844,7 @@
15844
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15845
"xloc": [
15846
"default-mobile.handlebars->11->611",
15847
- "default.handlebars->31->2237"
15847
+ "default.handlebars->31->2246"
15848
]
15849
},
15850
{
@@ -15853,7 +15853,7 @@
15853
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15854
"xloc": [
15855
"default-mobile.handlebars->11->610",
15856
- "default.handlebars->31->2236"
15856
+ "default.handlebars->31->2245"
15857
]
15858
},
15859
{
@@ -15882,7 +15882,7 @@
15882
"nl": "Escape",
15883
"xloc": [
15884
"default-mobile.handlebars->11->343",
15885
- "default.handlebars->31->935"
15885
+ "default.handlebars->31->944"
15886
]
15887
},
15888
{
@@ -15902,7 +15902,7 @@
15902
"zh-chs": "世界文",
15903
"zh-cht": "世界語",
15904
"xloc": [
15905
- "default.handlebars->31->1238"
15905
+ "default.handlebars->31->1247"
15906
]
15907
},
15908
{
@@ -15922,7 +15922,7 @@
15922
"zh-chs": "爱沙尼亚文",
15923
"zh-cht": "愛沙尼亞語",
15924
"xloc": [
15925
- "default.handlebars->31->1239"
15925
+ "default.handlebars->31->1248"
15926
]
15927
},
15928
{
@@ -15942,7 +15942,7 @@
15942
"zh-chs": "事件详情",
15943
"zh-cht": "事件詳情",
15944
"xloc": [
15945
- "default.handlebars->31->1050"
15945
+ "default.handlebars->31->1059"
15946
]
15947
},
15948
{
@@ -15962,7 +15962,7 @@
15962
"zh-chs": "事件列表输出",
15963
"zh-cht": "事件列表輸出",
15964
"xloc": [
15965
- "default.handlebars->31->1860"
15965
+ "default.handlebars->31->1869"
15966
]
15967
},
15968
{
@@ -16150,7 +16150,7 @@
16150
"zh-chs": "扩充式ASCII",
16151
"zh-cht": "擴充式ASCII",
16152
"xloc": [
16153
- "default.handlebars->31->989",
16153
+ "default.handlebars->31->998",
16154
"terminal.handlebars->3->16"
16155
]
16156
},
@@ -16192,7 +16192,7 @@
16192
"zh-chs": "外部",
16193
"zh-cht": "外部",
16194
"xloc": [
16195
- "default.handlebars->31->2292"
16195
+ "default.handlebars->31->2301"
16196
]
16197
},
16198
{
@@ -16232,7 +16232,7 @@
16232
"zh-chs": "FYRO马其顿语",
16233
"zh-cht": "FYRO馬其頓語",
16234
"xloc": [
16235
- "default.handlebars->31->1289"
16235
+ "default.handlebars->31->1298"
16236
]
16237
},
16238
{
@@ -16252,7 +16252,7 @@
16252
"zh-chs": "法罗语",
16253
"zh-cht": "法羅語",
16254
"xloc": [
16255
- "default.handlebars->31->1240"
16255
+ "default.handlebars->31->1249"
16256
]
16257
},
16258
{
@@ -16281,7 +16281,7 @@
16281
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16282
"xloc": [
16283
"default-mobile.handlebars->11->606",
16284
- "default.handlebars->31->2232"
16284
+ "default.handlebars->31->2241"
16285
]
16286
},
16287
{
@@ -16301,7 +16301,7 @@
16301
"zh-chs": "本地用户拒绝后无法启动远程桌面",
16302
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16303
"xloc": [
16304
- "default.handlebars->31->1762"
16304
+ "default.handlebars->31->1771"
16305
]
16306
},
16307
{
@@ -16321,7 +16321,7 @@
16321
"zh-chs": "本地用户拒绝后无法启动远程文件",
16322
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16323
"xloc": [
16324
- "default.handlebars->31->1769"
16324
+ "default.handlebars->31->1778"
16325
]
16326
},
16327
{
@@ -16342,7 +16342,7 @@
16342
"zh-cht": "無法啟動遠程終端接合{0}({1})",
16343
"xloc": [
16344
"default-mobile.handlebars->11->334",
16345
- "default.handlebars->31->914",
16345
+ "default.handlebars->31->923",
16346
"desktop.handlebars->3->8",
16347
"terminal.handlebars->3->12"
16348
]
@@ -16364,7 +16364,7 @@
16364
"zh-chs": "波斯文(波斯文)",
16365
"zh-cht": "波斯語(波斯語)",
16366
"xloc": [
16367
- "default.handlebars->31->1241"
16367
+ "default.handlebars->31->1250"
16368
]
16369
},
16370
{
@@ -16406,7 +16406,7 @@
16406
"zh-chs": "功能",
16407
"zh-cht": "功能",
16408
"xloc": [
16409
- "default.handlebars->31->1464"
16409
+ "default.handlebars->31->1473"
16410
]
16411
},
16412
{
@@ -16426,7 +16426,7 @@
16426
"zh-chs": "斐济",
16427
"zh-cht": "斐濟",
16428
"xloc": [
16429
- "default.handlebars->31->1242"
16429
+ "default.handlebars->31->1251"
16430
]
16431
},
16432
{
@@ -16467,7 +16467,7 @@
16467
"zh-cht": "檔案編輯器",
16468
"xloc": [
16469
"default-mobile.handlebars->11->384",
16470
- "default.handlebars->31->1021",
16470
+ "default.handlebars->31->1030",
16471
"default.handlebars->31->560"
16472
]
16473
},
@@ -16504,8 +16504,8 @@
16504
"zh-chs": "档案操作",
16505
"zh-cht": "檔案操作",
16506
"xloc": [
16507
- "default.handlebars->31->1001",
16508
- "default.handlebars->31->1003"
16507
+ "default.handlebars->31->1010",
16508
+ "default.handlebars->31->1012"
16509
]
16510
},
16511
{
@@ -16545,7 +16545,7 @@
16545
"zh-chs": "文件系统驱动",
16546
"zh-cht": "FileSystemDriver",
16547
"xloc": [
16548
- "default.handlebars->31->968"
16548
+ "default.handlebars->31->977"
16549
]
16550
},
16551
{
@@ -16567,8 +16567,8 @@
16567
"xloc": [
16568
"default-mobile.handlebars->11->202",
16569
"default-mobile.handlebars->11->299",
16570
- "default.handlebars->31->1554",
16571
- "default.handlebars->31->2191",
16570
+ "default.handlebars->31->1563",
16571
+ "default.handlebars->31->2200",
16572
"default.handlebars->31->285",
16573
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16574
"default.handlebars->contextMenu->cxfiles"
@@ -16611,9 +16611,9 @@
16611
"zh-chs": "档案通知",
16612
"zh-cht": "檔案通知",
16613
"xloc": [
16614
- "default.handlebars->31->1472",
16615
- "default.handlebars->31->2005",
16616
- "default.handlebars->31->2092",
16614
+ "default.handlebars->31->1481",
16615
+ "default.handlebars->31->2014",
16616
+ "default.handlebars->31->2101",
16617
"default.handlebars->31->658"
16618
]
16619
},
@@ -16634,9 +16634,9 @@
16634
"zh-chs": "档案提示",
16635
"zh-cht": "檔案提示",
16636
"xloc": [
16637
- "default.handlebars->31->1471",
16638
- "default.handlebars->31->2004",
16639
- "default.handlebars->31->2091",
16637
+ "default.handlebars->31->1480",
16638
+ "default.handlebars->31->2013",
16639
+ "default.handlebars->31->2100",
16640
"default.handlebars->31->657"
16641
]
16642
},
@@ -16658,7 +16658,7 @@
16658
"zh-cht": "過濾",
16659
"xloc": [
16660
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
16661
- "default.handlebars->31->1006",
16661
+ "default.handlebars->31->1015",
16662
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
16663
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
16664
"default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -16701,7 +16701,7 @@
16701
"zh-chs": "查找文件",
16702
"zh-cht": "查找文件",
16703
"xloc": [
16704
- "default.handlebars->31->1009"
16704
+ "default.handlebars->31->1018"
16705
]
16706
},
16707
{
@@ -16721,7 +16721,7 @@
16721
"zh-chs": "录制会话已完成,{0}秒",
16722
"zh-cht": "錄製會話已完成,{0}秒",
16723
"xloc": [
16724
- "default.handlebars->31->1735"
16724
+ "default.handlebars->31->1744"
16725
]
16726
},
16727
{
@@ -16741,7 +16741,7 @@
16741
"zh-chs": "芬兰",
16742
"zh-cht": "芬蘭",
16743
"xloc": [
16744
- "default.handlebars->31->1243"
16744
+ "default.handlebars->31->1252"
16745
]
16746
},
16747
{
@@ -16760,8 +16760,8 @@
16760
"nl": "Firewall niet actief",
16761
"fr": "Pare-feu désactivé",
16762
"xloc": [
16763
- "default.handlebars->31->1667",
16764
- "default.handlebars->31->1681"
16763
+ "default.handlebars->31->1676",
16764
+ "default.handlebars->31->1690"
16765
]
16766
},
16767
{
@@ -16782,7 +16782,7 @@
16782
"zh-cht": "固定寬度接口",
16783
"xloc": [
16784
"agentinvite.handlebars->container->topbar->uiMenuButton->uiMenu",
16785
- "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu",
16785
+ "default.handlebars->container->topbar->1->1->uiMenuButton->uiMenu->1->1->0->1",
16786
"error404.handlebars->container->topbar->uiMenuButton->uiMenu",
16787
"invite.handlebars->container->topbar->uiMenuButton->uiMenu",
16788
"login.handlebars->container->topbar->uiMenuButton->uiMenu",
@@ -16951,8 +16951,8 @@
16951
"zh-chs": "下次登录时强制重置密码。",
16952
"zh-cht": "下次登入時強制重置密碼。",
16953
"xloc": [
16954
- "default.handlebars->31->1943",
16955
- "default.handlebars->31->2138"
16954
+ "default.handlebars->31->1952",
16955
+ "default.handlebars->31->2147"
16956
]
16957
},
16958
{
@@ -17035,7 +17035,7 @@
17035
"zh-chs": "格式化",
17036
"zh-cht": "格式化",
17037
"xloc": [
17038
- "default.handlebars->31->1851"
17038
+ "default.handlebars->31->1860"
17039
]
17040
},
17041
{
@@ -17076,8 +17076,8 @@
17076
"zh-chs": "自由",
17077
"zh-cht": "自由",
17078
"xloc": [
17079
- "default.handlebars->31->2250",
17080
- "default.handlebars->31->2252"
17079
+ "default.handlebars->31->2259",
17080
+ "default.handlebars->31->2261"
17081
]
17082
},
17083
{
@@ -17118,7 +17118,7 @@
17118
"zh-chs": "法文(比利时)",
17119
"zh-cht": "法語(比利時)",
17120
"xloc": [
17121
- "default.handlebars->31->1245"
17121
+ "default.handlebars->31->1254"
17122
]
17123
},
17124
{
@@ -17138,7 +17138,7 @@
17138
"zh-chs": "法文(加拿大)",
17139
"zh-cht": "法語(加拿大)",
17140
"xloc": [
17141
- "default.handlebars->31->1246"
17141
+ "default.handlebars->31->1255"
17142
]
17143
},
17144
{
@@ -17158,7 +17158,7 @@
17158
"zh-chs": "法文(法国)",
17159
"zh-cht": "法語(法國)",
17160
"xloc": [
17161
- "default.handlebars->31->1247"
17161
+ "default.handlebars->31->1256"
17162
]
17163
},
17164
{
@@ -17178,7 +17178,7 @@
17178
"zh-chs": "法文(卢森堡)",
17179
"zh-cht": "法語(盧森堡)",
17180
"xloc": [
17181
- "default.handlebars->31->1248"
17181
+ "default.handlebars->31->1257"
17182
]
17183
},
17184
{
@@ -17198,7 +17198,7 @@
17198
"zh-chs": "法文(摩纳哥)",
17199
"zh-cht": "法語(摩納哥)",
17200
"xloc": [
17201
- "default.handlebars->31->1249"
17201
+ "default.handlebars->31->1258"
17202
]
17203
},
17204
{
@@ -17218,7 +17218,7 @@
17218
"zh-chs": "法文(标准)",
17219
"zh-cht": "法語(標準)",
17220
"xloc": [
17221
- "default.handlebars->31->1244"
17221
+ "default.handlebars->31->1253"
17222
]
17223
},
17224
{
@@ -17238,7 +17238,7 @@
17238
"zh-chs": "法文(瑞士)",
17239
"zh-cht": "法語(瑞士)",
17240
"xloc": [
17241
- "default.handlebars->31->1250"
17241
+ "default.handlebars->31->1259"
17242
]
17243
},
17244
{
@@ -17258,7 +17258,7 @@
17258
"zh-chs": "弗里斯兰文",
17259
"zh-cht": "弗里斯蘭語",
17260
"xloc": [
17261
- "default.handlebars->31->1251"
17261
+ "default.handlebars->31->1260"
17262
]
17263
},
17264
{
@@ -17278,7 +17278,7 @@
17278
"zh-chs": "弗留利",
17279
"zh-cht": "弗留利",
17280
"xloc": [
17281
- "default.handlebars->31->1252"
17281
+ "default.handlebars->31->1261"
17282
]
17283
},
17284
{
@@ -17302,9 +17302,9 @@
17302
"default-mobile.handlebars->11->524",
17303
"default-mobile.handlebars->11->537",
17304
"default-mobile.handlebars->11->557",
17305
- "default.handlebars->31->1426",
17306
- "default.handlebars->31->1573",
17307
- "default.handlebars->31->1955"
17305
+ "default.handlebars->31->1435",
17306
+ "default.handlebars->31->1582",
17307
+ "default.handlebars->31->1964"
17308
]
17309
},
17310
{
@@ -17324,7 +17324,7 @@
17324
"zh-chs": "完整管理员(保留所有权利)",
17325
"zh-cht": "完整管理員(保留所有權利)",
17326
"xloc": [
17327
- "default.handlebars->31->1610"
17327
+ "default.handlebars->31->1619"
17328
]
17329
},
17330
{
@@ -17443,7 +17443,7 @@
17443
"zh-chs": "完整管理员",
17444
"zh-cht": "完整管理員",
17445
"xloc": [
17446
- "default.handlebars->31->2053"
17446
+ "default.handlebars->31->2062"
17447
]
17448
},
17449
{
@@ -17463,8 +17463,8 @@
17463
"zh-chs": "全自动的",
17464
"zh-cht": "全自動的",
17465
"xloc": [
17466
- "default.handlebars->31->1489",
17467
- "default.handlebars->31->1512"
17466
+ "default.handlebars->31->1498",
17467
+ "default.handlebars->31->1521"
17468
]
17469
},
17470
{
@@ -17485,7 +17485,7 @@
17485
"zh-cht": "GPU",
17486
"xloc": [
17487
"default-mobile.handlebars->11->481",
17488
- "default.handlebars->31->1119"
17488
+ "default.handlebars->31->1128"
17489
]
17490
},
17491
{
@@ -17505,7 +17505,7 @@
17505
"zh-chs": "盖尔文(爱尔兰)",
17506
"zh-cht": "蓋爾語(愛爾蘭)",
17507
"xloc": [
17508
- "default.handlebars->31->1254"
17508
+ "default.handlebars->31->1263"
17509
]
17510
},
17511
{
@@ -17525,7 +17525,7 @@
17525
"zh-chs": "盖尔文(苏格兰文)",
17526
"zh-cht": "蓋爾語(蘇格蘭語)",
17527
"xloc": [
17528
- "default.handlebars->31->1253"
17528
+ "default.handlebars->31->1262"
17529
]
17530
},
17531
{
@@ -17545,7 +17545,7 @@
17545
"zh-chs": "加拉契文",
17546
"zh-cht": "加拉契語",
17547
"xloc": [
17548
- "default.handlebars->31->1255"
17548
+ "default.handlebars->31->1264"
17549
]
17550
},
17551
{
@@ -17671,7 +17671,7 @@
17671
"zh-chs": "格鲁吉亚文",
17672
"zh-cht": "格魯吉亞文",
17673
"xloc": [
17674
- "default.handlebars->31->1256"
17674
+ "default.handlebars->31->1265"
17675
]
17676
},
17677
{
@@ -17691,7 +17691,7 @@
17691
"zh-chs": "德文(奥地利)",
17692
"zh-cht": "德語(奧地利)",
17693
"xloc": [
17694
- "default.handlebars->31->1258"
17694
+ "default.handlebars->31->1267"
17695
]
17696
},
17697
{
@@ -17711,7 +17711,7 @@
17711
"zh-chs": "德文(德国)",
17712
"zh-cht": "德文(德國)",
17713
"xloc": [
17714
- "default.handlebars->31->1259"
17714
+ "default.handlebars->31->1268"
17715
]
17716
},
17717
{
@@ -17731,7 +17731,7 @@
17731
"zh-chs": "德文(列支敦士登)",
17732
"zh-cht": "德文(列支敦士登)",
17733
"xloc": [
17734
- "default.handlebars->31->1260"
17734
+ "default.handlebars->31->1269"
17735
]
17736
},
17737
{
@@ -17751,7 +17751,7 @@
17751
"zh-chs": "德文(卢森堡)",
17752
"zh-cht": "德語(盧森堡)",
17753
"xloc": [
17754
- "default.handlebars->31->1261"
17754
+ "default.handlebars->31->1270"
17755
]
17756
},
17757
{
@@ -17771,7 +17771,7 @@
17771
"zh-chs": "德文(标准)",
17772
"zh-cht": "德語(標準)",
17773
"xloc": [
17774
- "default.handlebars->31->1257"
17774
+ "default.handlebars->31->1266"
17775
]
17776
},
17777
{
@@ -17791,7 +17791,7 @@
17791
"zh-chs": "德文(瑞士)",
17792
"zh-cht": "德文(瑞士)",
17793
"xloc": [
17794
- "default.handlebars->31->1262"
17794
+ "default.handlebars->31->1271"
17795
]
17796
},
17797
{
@@ -17852,7 +17852,7 @@
17852
"zh-chs": "正在获取剪贴板内容,{0}个字节",
17853
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
17854
"xloc": [
17855
- "default.handlebars->31->1749"
17855
+ "default.handlebars->31->1758"
17856
]
17857
},
17858
{
@@ -17914,7 +17914,7 @@
17914
"zh-chs": "好",
17915
"zh-cht": "好",
17916
"xloc": [
17917
- "default.handlebars->31->1422"
17917
+ "default.handlebars->31->1431"
17918
]
17919
},
17920
{
@@ -17959,8 +17959,8 @@
17959
"zh-chs": "Google云端硬盘备份",
17960
"zh-cht": "Google雲端硬盤備份",
17961
"xloc": [
17962
- "default.handlebars->31->1433",
17963
- "default.handlebars->31->1436",
17962
+ "default.handlebars->31->1442",
17963
+ "default.handlebars->31->1445",
17964
"default.handlebars->31->224"
17965
]
17966
},
@@ -17981,7 +17981,7 @@
17981
"zh-chs": "Google云端硬盘控制台",
17982
"zh-cht": "Google雲端硬盤控制台",
17983
"xloc": [
17984
- "default.handlebars->31->1430"
17984
+ "default.handlebars->31->1439"
17985
]
17986
},
17987
{
@@ -18021,7 +18021,7 @@
18021
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
18022
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
18023
"xloc": [
18024
- "default.handlebars->31->1434"
18024
+ "default.handlebars->31->1443"
18025
]
18026
},
18027
{
@@ -18049,7 +18049,7 @@
18049
"zh-chs": "希腊文",
18050
"zh-cht": "希臘文",
18051
"xloc": [
18052
- "default.handlebars->31->1263"
18052
+ "default.handlebars->31->1272"
18053
]
18054
},
18055
{
@@ -18091,8 +18091,8 @@
18091
"zh-chs": "集体指令",
18092
"zh-cht": "集體指令",
18093
"xloc": [
18094
- "default.handlebars->31->1899",
18095
- "default.handlebars->31->1978",
18094
+ "default.handlebars->31->1908",
18095
+ "default.handlebars->31->1987",
18096
"default.handlebars->31->485",
18097
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
18098
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -18116,7 +18116,7 @@
18116
"zh-chs": "通过...分组",
18117
"zh-cht": "通過...分群",
18118
"xloc": [
18119
- "default.handlebars->31->1847"
18119
+ "default.handlebars->31->1856"
18120
]
18121
},
18122
{
@@ -18136,7 +18136,7 @@
18136
"zh-chs": "组标识符",
18137
"zh-cht": "群標識符",
18138
"xloc": [
18139
- "default.handlebars->31->1995"
18139
+ "default.handlebars->31->2004"
18140
]
18141
},
18142
{
@@ -18156,7 +18156,7 @@
18156
"zh-chs": "群组成员",
18157
"zh-cht": "群組成員",
18158
"xloc": [
18159
- "default.handlebars->31->2016"
18159
+ "default.handlebars->31->2025"
18160
]
18161
},
18162
{
@@ -18176,7 +18176,7 @@
18176
"zh-chs": "用户{0}的群组权限。",
18177
"zh-cht": "用戶{0}的群組權限。",
18178
"xloc": [
18179
- "default.handlebars->31->1572"
18179
+ "default.handlebars->31->1581"
18180
]
18181
},
18182
{
@@ -18196,7 +18196,7 @@
18196
"zh-chs": "{0}的群组权限。",
18197
"zh-cht": "{0}的群組權限。",
18198
"xloc": [
18199
- "default.handlebars->31->1571"
18199
+ "default.handlebars->31->1580"
18200
]
18201
},
18202
{
@@ -18292,7 +18292,7 @@
18292
"en": "Guest Sharing",
18293
"nl": "Gastdeling",
18294
"xloc": [
18295
- "default.handlebars->31->1580"
18295
+ "default.handlebars->31->1589"
18296
]
18297
},
18298
{
@@ -18312,7 +18312,7 @@
18312
"zh-chs": "古久拉提",
18313
"zh-cht": "古久拉提",
18314
"xloc": [
18315
- "default.handlebars->31->1264"
18315
+ "default.handlebars->31->1273"
18316
]
18317
},
18318
{
@@ -18355,7 +18355,7 @@
18355
"zh-chs": "海地文",
18356
"zh-cht": "海地文",
18357
"xloc": [
18358
- "default.handlebars->31->1265"
18358
+ "default.handlebars->31->1274"
18359
]
18360
},
18361
{
@@ -18396,7 +18396,7 @@
18396
"zh-cht": "強行斷開代理",
18397
"xloc": [
18398
"default-mobile.handlebars->11->511",
18399
- "default.handlebars->31->1150"
18399
+ "default.handlebars->31->1159"
18400
]
18401
},
18402
{
@@ -18416,7 +18416,7 @@
18416
"zh-chs": "堆总数",
18417
"zh-cht": "堆總數",
18418
"xloc": [
18419
- "default.handlebars->31->2294"
18419
+ "default.handlebars->31->2303"
18420
]
18421
},
18422
{
@@ -18436,7 +18436,7 @@
18436
"zh-chs": "堆使用",
18437
"zh-cht": "堆使用",
18438
"xloc": [
18439
- "default.handlebars->31->2293"
18439
+ "default.handlebars->31->2302"
18440
]
18441
},
18442
{
@@ -18456,7 +18456,7 @@
18456
"zh-chs": "希伯来文",
18457
"zh-cht": "希伯來文",
18458
"xloc": [
18459
- "default.handlebars->31->1266"
18459
+ "default.handlebars->31->1275"
18460
]
18461
},
18462
{
@@ -18517,7 +18517,7 @@
18517
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
18518
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
18519
"xloc": [
18520
- "default.handlebars->31->1826"
18520
+ "default.handlebars->31->1835"
18521
]
18522
},
18523
{
@@ -18578,7 +18578,7 @@
18578
"zh-chs": "帮助翻译MeshCentral",
18579
"zh-cht": "幫助翻譯MeshCentral",
18580
"xloc": [
18581
- "default.handlebars->31->1381"
18581
+ "default.handlebars->31->1390"
18582
]
18583
},
18584
{
@@ -18682,7 +18682,7 @@
18682
"zh-chs": "印地文",
18683
"zh-cht": "印地文",
18684
"xloc": [
18685
- "default.handlebars->31->1267"
18685
+ "default.handlebars->31->1276"
18686
]
18687
},
18688
{
@@ -18720,7 +18720,7 @@
18720
"zh-cht": "保存1個項目進行複製",
18721
"xloc": [
18722
"default-mobile.handlebars->11->393",
18723
- "default.handlebars->31->1031"
18723
+ "default.handlebars->31->1040"
18724
]
18725
},
18726
{
@@ -18741,7 +18741,7 @@
18741
"zh-cht": "保存1個項目進行移動",
18742
"xloc": [
18743
"default-mobile.handlebars->11->397",
18744
- "default.handlebars->31->1035"
18744
+ "default.handlebars->31->1044"
18745
]
18746
},
18747
{
@@ -18762,7 +18762,7 @@
18762
"zh-cht": "保留{0}個項目進行複製",
18763
"xloc": [
18764
"default-mobile.handlebars->11->391",
18765
- "default.handlebars->31->1029"
18765
+ "default.handlebars->31->1038"
18766
]
18767
},
18768
{
@@ -18783,7 +18783,7 @@
18783
"zh-cht": "保存{0}個項目以進行移動",
18784
"xloc": [
18785
"default-mobile.handlebars->11->395",
18786
- "default.handlebars->31->1033"
18786
+ "default.handlebars->31->1042"
18787
]
18788
},
18789
{
@@ -18804,7 +18804,7 @@
18804
"zh-cht": "保存{0}項目{1}給{2}",
18805
"xloc": [
18806
"default-mobile.handlebars->11->152",
18807
- "default.handlebars->31->1722"
18807
+ "default.handlebars->31->1731"
18808
]
18809
},
18810
{
@@ -18813,7 +18813,7 @@
18813
"nl": "Home",
18814
"xloc": [
18815
"default-mobile.handlebars->11->347",
18816
- "default.handlebars->31->939"
18816
+ "default.handlebars->31->948"
18817
]
18818
},
18819
{
@@ -18838,10 +18838,10 @@
18838
"default-mobile.handlebars->11->254",
18839
"default-mobile.handlebars->11->327",
18840
"default-mobile.handlebars->11->440",
18841
- "default.handlebars->31->1068",
18841
+ "default.handlebars->31->1077",
18842
"default.handlebars->31->315",
18843
"default.handlebars->31->600",
18844
- "default.handlebars->31->907"
18844
+ "default.handlebars->31->916"
18845
]
18846
},
18847
{
@@ -18861,7 +18861,7 @@
18861
"zh-chs": "主机名同步",
18862
"zh-cht": "主機名同步",
18863
"xloc": [
18864
- "default.handlebars->31->1461"
18864
+ "default.handlebars->31->1470"
18865
]
18866
},
18867
{
@@ -18881,7 +18881,7 @@
18881
"zh-chs": "匈牙利文",
18882
"zh-cht": "匈牙利文",
18883
"xloc": [
18884
- "default.handlebars->31->1268"
18884
+ "default.handlebars->31->1277"
18885
]
18886
},
18887
{
@@ -18944,9 +18944,9 @@
18944
"zh-chs": "IP:{0}",
18945
"zh-cht": "IP:{0}",
18946
"xloc": [
18947
- "default.handlebars->31->1078",
18948
- "default.handlebars->31->1088",
18949
- "default.handlebars->31->1092"
18947
+ "default.handlebars->31->1087",
18948
+ "default.handlebars->31->1097",
18949
+ "default.handlebars->31->1101"
18950
]
18951
},
18952
{
@@ -18966,9 +18966,9 @@
18966
"zh-chs": "IP:{0},掩码:{1},网关:{2}",
18967
"zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
18968
"xloc": [
18969
- "default.handlebars->31->1076",
18970
- "default.handlebars->31->1086",
18971
- "default.handlebars->31->1090"
18969
+ "default.handlebars->31->1085",
18970
+ "default.handlebars->31->1095",
18971
+ "default.handlebars->31->1099"
18972
]
18973
},
18974
{
@@ -18990,10 +18990,10 @@
18990
"xloc": [
18991
"default-mobile.handlebars->11->447",
18992
"default-mobile.handlebars->11->449",
18993
- "default.handlebars->31->1075",
18994
- "default.handlebars->31->1077",
18995
- "default.handlebars->31->1085",
18996
- "default.handlebars->31->1087"
18993
+ "default.handlebars->31->1084",
18994
+ "default.handlebars->31->1086",
18995
+ "default.handlebars->31->1094",
18996
+ "default.handlebars->31->1096"
18997
]
18998
},
18999
{
@@ -19078,8 +19078,8 @@
19078
"xloc": [
19079
"default-mobile.handlebars->11->451",
19080
"default-mobile.handlebars->11->453",
19081
- "default.handlebars->31->1089",
19082
- "default.handlebars->31->1091"
19081
+ "default.handlebars->31->1098",
19082
+ "default.handlebars->31->1100"
19083
]
19084
},
19085
{
@@ -19159,7 +19159,7 @@
19159
"zh-chs": "冰岛文",
19160
"zh-cht": "冰島文",
19161
"xloc": [
19162
- "default.handlebars->31->1269"
19162
+ "default.handlebars->31->1278"
19163
]
19164
},
19165
{
@@ -19180,7 +19180,7 @@
19180
"zh-cht": "圖符選擇",
19181
"xloc": [
19182
"default-mobile.handlebars->11->325",
19183
- "default.handlebars->31->905"
19183
+ "default.handlebars->31->914"
19184
]
19185
},
19186
{
@@ -19202,8 +19202,8 @@
19202
"xloc": [
19203
"default-mobile.handlebars->11->439",
19204
"default-mobile.handlebars->11->479",
19205
- "default.handlebars->31->1067",
19206
- "default.handlebars->31->1117"
19205
+ "default.handlebars->31->1076",
19206
+ "default.handlebars->31->1126"
19207
]
19208
},
19209
{
@@ -19223,7 +19223,7 @@
19223
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
19224
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
19225
"xloc": [
19226
- "default.handlebars->31->1526"
19226
+ "default.handlebars->31->1535"
19227
]
19228
},
19229
{
@@ -19392,7 +19392,7 @@
19392
"zh-chs": "印度尼西亚文",
19393
"zh-cht": "印度尼西亞文",
19394
"xloc": [
19395
- "default.handlebars->31->1270"
19395
+ "default.handlebars->31->1279"
19396
]
19397
},
19398
{
@@ -19463,7 +19463,7 @@
19463
"nl": "Insert",
19464
"xloc": [
19465
"default-mobile.handlebars->11->345",
19466
- "default.handlebars->31->937"
19466
+ "default.handlebars->31->946"
19467
]
19468
},
19469
{
@@ -19593,8 +19593,8 @@
19593
"zh-chs": "安装类型",
19594
"zh-cht": "安裝方式",
19595
"xloc": [
19596
- "default.handlebars->31->1643",
19597
- "default.handlebars->31->1650",
19596
+ "default.handlebars->31->1652",
19597
+ "default.handlebars->31->1659",
19598
"default.handlebars->31->362",
19599
"default.handlebars->31->376",
19600
"default.handlebars->31->391"
@@ -19617,7 +19617,7 @@
19617
"zh-chs": "英特尔(F10 = ESC + [OM)",
19618
"zh-cht": "Intel(F10 = ESC + [OM)",
19619
"xloc": [
19620
- "default.handlebars->31->991",
19620
+ "default.handlebars->31->1000",
19621
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
19622
"terminal.handlebars->3->18",
19623
"terminal.handlebars->p12->9->1->terminalSettingsButtons"
@@ -19640,7 +19640,7 @@
19640
"zh-chs": "英特尔AMT",
19641
"zh-cht": "英特爾AMT",
19642
"xloc": [
19643
- "default.handlebars->31->2290"
19643
+ "default.handlebars->31->2299"
19644
]
19645
},
19646
{
@@ -19648,7 +19648,7 @@
19648
"fr": "Gestionnaire Intel AMT",
19649
"nl": "Intel AMT beheerder",
19650
"xloc": [
19651
- "default.handlebars->31->2316"
19651
+ "default.handlebars->31->2325"
19652
]
19653
},
19654
{
@@ -19668,7 +19668,7 @@
19668
"zh-chs": "英特尔ASCII",
19669
"zh-cht": "Intel ASCII",
19670
"xloc": [
19671
- "default.handlebars->31->990",
19671
+ "default.handlebars->31->999",
19672
"terminal.handlebars->3->17"
19673
]
19674
},
@@ -19692,11 +19692,11 @@
19692
"default-mobile.handlebars->11->236",
19693
"default-mobile.handlebars->11->278",
19694
"default-mobile.handlebars->11->283",
19695
- "default.handlebars->31->1479",
19696
- "default.handlebars->31->1490",
19697
- "default.handlebars->31->1662",
19698
- "default.handlebars->31->1675",
19699
- "default.handlebars->31->2315",
19695
+ "default.handlebars->31->1488",
19696
+ "default.handlebars->31->1499",
19697
+ "default.handlebars->31->1671",
19698
+ "default.handlebars->31->1684",
19699
+ "default.handlebars->31->2324",
19700
"default.handlebars->31->570",
19701
"default.handlebars->31->628",
19702
"default.handlebars->31->668"
@@ -19852,8 +19852,8 @@
19852
{
19853
"en": "Intel® AMT One Click Recovery",
19854
"xloc": [
19855
- "default.handlebars->31->829",
19856
- "default.handlebars->31->842"
19855
+ "default.handlebars->31->832",
19856
+ "default.handlebars->31->845"
19857
]
19858
},
19859
{
@@ -19873,7 +19873,27 @@
19873
"zh-chs": "英特尔®AMT政策",
19874
"zh-cht": "Intel® AMT政策",
19875
"xloc": [
19876
- "default.handlebars->31->1513"
19876
+ "default.handlebars->31->1522"
19877
+ ]
19878
+ },
19879
+ {
19880
+ "en": "Intel® AMT Power Operation",
19881
+ "xloc": [
19882
+ "default.handlebars->31->846",
19883
+ "default.handlebars->31->848",
19884
+ "default.handlebars->31->850"
19885
+ ]
19886
+ },
19887
+ {
19888
+ "en": "Intel® AMT Power off",
19889
+ "xloc": [
19890
+ "default.handlebars->31->831"
19891
+ ]
19892
+ },
19893
+ {
19894
+ "en": "Intel® AMT Power on",
19895
+ "xloc": [
19896
+ "default.handlebars->31->830"
19897
]
19898
},
19899
{
@@ -19893,10 +19913,16 @@
19913
"zh-chs": "英特尔®AMT重定向",
19914
"zh-cht": "Intel® AMT重定向",
19915
"xloc": [
19896
- "default.handlebars->31->2193",
19916
+ "default.handlebars->31->2202",
19917
"player.handlebars->3->14"
19918
]
19919
},
19920
+ {
19921
+ "en": "Intel® AMT Reset",
19922
+ "xloc": [
19923
+ "default.handlebars->31->829"
19924
+ ]
19925
+ },
19926
{
19927
"cs": "Intel® AMT štítek",
19928
"de": "Intel® AMT Kennzeichen",
@@ -19934,7 +19960,7 @@
19960
"zh-chs": "英特尔®AMT WSMAN",
19961
"zh-cht": "Intle® AMT WSMAN",
19962
"xloc": [
19937
- "default.handlebars->31->2192",
19963
+ "default.handlebars->31->2201",
19964
"player.handlebars->3->13"
19965
]
19966
},
@@ -19994,8 +20020,8 @@
20020
"zh-chs": "英特尔®AMT桌面和串行事件。",
20021
"zh-cht": "Intel® AMT桌面和串行事件。",
20022
"xloc": [
19997
- "default.handlebars->31->1387",
19998
- "default.handlebars->31->1658"
20023
+ "default.handlebars->31->1396",
20024
+ "default.handlebars->31->1667"
20025
]
20026
},
20027
{
@@ -20181,8 +20207,8 @@
20207
"zh-cht": "僅限Intel® AMT,無代理",
20208
"xloc": [
20209
"default-mobile.handlebars->11->514",
20184
- "default.handlebars->31->1416",
20185
- "default.handlebars->31->1451"
20210
+ "default.handlebars->31->1425",
20211
+ "default.handlebars->31->1460"
20212
]
20213
},
20214
{
@@ -20260,7 +20286,7 @@
20286
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
20287
"xloc": [
20288
"default-mobile.handlebars->11->471",
20263
- "default.handlebars->31->1109"
20289
+ "default.handlebars->31->1118"
20290
]
20291
},
20292
{
@@ -20466,7 +20492,7 @@
20492
"zh-chs": "互动",
20493
"zh-cht": "互動",
20494
"xloc": [
20469
- "default.handlebars->31->969"
20495
+ "default.handlebars->31->978"
20496
]
20497
},
20498
{
@@ -20486,8 +20512,8 @@
20512
"zh-chs": "仅限互动",
20513
"zh-cht": "僅限互動",
20514
"xloc": [
20489
- "default.handlebars->31->1646",
20490
- "default.handlebars->31->1653",
20515
+ "default.handlebars->31->1655",
20516
+ "default.handlebars->31->1662",
20517
"default.handlebars->31->365",
20518
"default.handlebars->31->379",
20519
"default.handlebars->31->394"
@@ -20530,7 +20556,7 @@
20556
"zh-chs": "因纽特文",
20557
"zh-cht": "因紐特文",
20558
"xloc": [
20533
- "default.handlebars->31->1271"
20559
+ "default.handlebars->31->1280"
20560
]
20561
},
20562
{
@@ -20580,7 +20606,7 @@
20606
"zh-chs": "无效的设备组类型",
20607
"zh-cht": "無效的裝置群類型",
20608
"xloc": [
20583
- "default.handlebars->31->2264"
20609
+ "default.handlebars->31->2273"
20610
]
20611
},
20612
{
@@ -20600,7 +20626,7 @@
20626
"zh-chs": "无效的JSON",
20627
"zh-cht": "無效的JSON",
20628
"xloc": [
20603
- "default.handlebars->31->2258"
20629
+ "default.handlebars->31->2267"
20630
]
20631
},
20632
{
@@ -20620,8 +20646,8 @@
20646
"zh-chs": "无效的JSON档案格式。",
20647
"zh-cht": "無效的JSON檔案格式。",
20648
"xloc": [
20623
- "default.handlebars->31->1917",
20624
- "default.handlebars->31->1919"
20649
+ "default.handlebars->31->1926",
20650
+ "default.handlebars->31->1928"
20651
]
20652
},
20653
{
@@ -20641,7 +20667,7 @@
20667
"zh-chs": "无效的JSON档案:{0}。",
20668
"zh-cht": "無效的JSON檔案:{0}。",
20669
"xloc": [
20644
- "default.handlebars->31->1915"
20670
+ "default.handlebars->31->1924"
20671
]
20672
},
20673
{
@@ -20661,7 +20687,7 @@
20687
"zh-chs": "无效的PKCS签名",
20688
"zh-cht": "無效的PKCS簽名",
20689
"xloc": [
20664
- "default.handlebars->31->2256"
20690
+ "default.handlebars->31->2265"
20691
]
20692
},
20693
{
@@ -20681,7 +20707,7 @@
20707
"zh-chs": "無效的RSA密碼",
20708
"zh-cht": "無效的RSA密碼",
20709
"xloc": [
20684
- "default.handlebars->31->2257"
20710
+ "default.handlebars->31->2266"
20711
]
20712
},
20713
{
@@ -20690,7 +20716,7 @@
20716
"fr": "Message SMS non valide",
20717
"xloc": [
20718
"default-mobile.handlebars->11->618",
20693
- "default.handlebars->31->2244"
20719
+ "default.handlebars->31->2253"
20720
]
20721
},
20722
{
@@ -20721,7 +20747,7 @@
20747
"fr": "Domaine non valide",
20748
"xloc": [
20749
"default-mobile.handlebars->11->598",
20724
- "default.handlebars->31->2224"
20750
+ "default.handlebars->31->2233"
20751
]
20752
},
20753
{
@@ -20730,7 +20756,7 @@
20756
"fr": "Email invalide",
20757
"xloc": [
20758
"default-mobile.handlebars->11->597",
20733
- "default.handlebars->31->2223"
20759
+ "default.handlebars->31->2232"
20760
]
20761
},
20762
{
@@ -20803,7 +20829,7 @@
20829
"xloc": [
20830
"default-mobile.handlebars->11->596",
20831
"default-mobile.handlebars->11->77",
20806
- "default.handlebars->31->2222",
20832
+ "default.handlebars->31->2231",
20833
"default.handlebars->31->229"
20834
]
20835
},
@@ -20813,7 +20839,7 @@
20839
"fr": "Autorisations de site non valides",
20840
"xloc": [
20841
"default-mobile.handlebars->11->599",
20816
- "default.handlebars->31->2225"
20842
+ "default.handlebars->31->2234"
20843
]
20844
},
20845
{
@@ -20843,7 +20869,7 @@
20869
"nl": "Ongeldige inlog poging {0}, {1}, {2}",
20870
"fr": "Tentative de connexion invalide de {0}, {1}, {2}",
20871
"xloc": [
20846
- "default.handlebars->31->1838"
20872
+ "default.handlebars->31->1847"
20873
]
20874
},
20875
{
@@ -20852,7 +20878,7 @@
20878
"fr": "Nom d'utilisateur invalide",
20879
"xloc": [
20880
"default-mobile.handlebars->11->595",
20855
- "default.handlebars->31->2221"
20881
+ "default.handlebars->31->2230"
20882
]
20883
},
20884
{
@@ -20872,7 +20898,7 @@
20898
"zh-chs": "使电邮无效",
20899
"zh-cht": "使電郵無效",
20900
"xloc": [
20875
- "default.handlebars->31->1893"
20901
+ "default.handlebars->31->1902"
20902
]
20903
},
20904
{
@@ -20949,7 +20975,7 @@
20975
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
20976
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
20977
"xloc": [
20952
- "default.handlebars->31->1648"
20978
+ "default.handlebars->31->1657"
20979
]
20980
},
20981
{
@@ -20989,7 +21015,7 @@
21015
"zh-chs": "邀请",
This file is too large to show in full.
views/default-mobile.handlebars
+1
@@ -707,6 +707,7 @@
707
<div style="margin-top:5px"><a onclick="account_showChangePassword()" style="cursor:pointer">Change password</a><span id="p2nextPasswordUpdateTime"></span></div>
708
<div style="margin-top:5px"><a onclick="account_showDeleteAccount()" style="cursor:pointer">Delete account</a></div>
709
<div style="margin-top:5px"><a onclick="toggleNightMode()" style="cursor:pointer">Set dark mode</a></div>
710
+ <div style="margin-top:5px"><a onclick="showNotes(false,encodeURIComponentEx('p'+userinfo._id))" style="cursor:pointer">Personal notes</a></div>
711
</div>
712
<br style=clear:both />
713
</div>
views/default.handlebars
+14
-5
@@ -146,11 +146,20 @@
146
<div tabindex=0 id=uiMenuButton title="User interface selection" onclick="showUserInterfaceSelectMenu()" onkeypress="if (event.key == 'Enter') showUserInterfaceSelectMenu()">
147
♦
148
<div id=uiMenu style="display:none">
149
- <div tabindex=0 id=uiViewButton1 class=uiSelector onclick=userInterfaceSelectMenu(1) title="Left bar interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(1)"><div class="uiSelector1"></div></div>
150
- <div tabindex=0 id=uiViewButton2 class=uiSelector onclick=userInterfaceSelectMenu(2) title="Top bar interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(2)"><div class="uiSelector2"></div></div>
151
- <div tabindex=0 id=uiViewButton3 class=uiSelector onclick=userInterfaceSelectMenu(3) title="Fixed width interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(3)"><div class="uiSelector3"></div></div>
152
- <div tabindex=0 id=uiViewButton4 class=uiSelector onclick=toggleNightMode() title="Toggle night mode" onkeypress="if (event.key == 'Enter') toggleNightMode()"><div class="uiSelector4"></div></div>
153
- <div tabindex=0 id=uiViewButton5 class=uiSelector onclick=toggleFooterBarMode() title="Toggle footer bar" onkeypress="if (event.key == 'Enter') toggleFooterBarMode()"><div class="uiSelector5"></div></div>
149
+ <table>
150
+ <tr>
151
+ <td>
152
+ <div tabindex=0 id=uiViewButton1 class=uiSelector onclick=userInterfaceSelectMenu(1) title="Left bar interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(1)"><div class="uiSelector1"></div></div>
153
+ <div tabindex=0 id=uiViewButton2 class=uiSelector onclick=userInterfaceSelectMenu(2) title="Top bar interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(2)"><div class="uiSelector2"></div></div>
154
+ <div tabindex=0 id=uiViewButton3 class=uiSelector onclick=userInterfaceSelectMenu(3) title="Fixed width interface" onkeypress="if (event.key == 'Enter') userInterfaceSelectMenu(3)"><div class="uiSelector3"></div></div>
155
+ </td>
156
+ <td>
157
+ <div tabindex=0 id=uiViewButton6 class=uiSelector onclick="showNotes(false,encodeURIComponentEx('p'+userinfo._id))" title="Personal Notes" onkeypress="if (event.key == 'Enter') showNotes(false,'p'+encodeURIComponentEx(userinfo._id))"><div class="uiSelector6"></div></div>
158
+ <div tabindex=0 id=uiViewButton4 class=uiSelector onclick=toggleNightMode() title="Toggle night mode" onkeypress="if (event.key == 'Enter') toggleNightMode()"><div class="uiSelector4"></div></div>
159
+ <div tabindex=0 id=uiViewButton5 class=uiSelector onclick=toggleFooterBarMode() title="Toggle footer bar" onkeypress="if (event.key == 'Enter') toggleFooterBarMode()"><div class="uiSelector5"></div></div>
160
+ </td>
161
+ </tr>
162
+ </table>
163
</div>
164
</div>
165
<table id=MainMenuSpan cellpadding=0 cellspacing=0 class=style1>
webserver.js
+4
-3
@@ -1976,9 +1976,10 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1976
}
1977
}
1978
1979
- obj.db.Remove('ws' + deluser._id); // Remove user web state
1980
- obj.db.Remove('nt' + deluser._id); // Remove notes for this user
1981
- obj.db.Remove('im' + deluser._id); // Remove image for this user
1979
+ obj.db.Remove('ws' + deluser._id); // Remove user web state
1980
+ obj.db.Remove('nt' + deluser._id); // Remove notes for this user
1981
+ obj.db.Remove('ntp' + deluser._id); // Remove personal notes for this user
1982
+ obj.db.Remove('im' + deluser._id); // Remove image for this user
1983
1984
// Remove the user
1985
obj.db.Remove(deluser._id);