Completed first version of account picture support.
Ylian Saint-Hilaire committed
Mar 19, 2021 at 14:49 UTC
de96c4f0658a14c855d4693b863f55db8111bebd
5 files changed
+1576
-1509
meshuser.js
+10
-6
@@ -1439,7 +1439,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
1439
case 'events':
1440
{
1441
// User filtered events
1442
- if ((command.user != null) && ((user.siteadmin & 2) != 0)) { // SITERIGHT_MANAGEUSERS
1442
+ if ((command.user != null) && ((user.siteadmin & SITERIGHT_MANAGEUSERS) != 0)) {
1443
// TODO: Add the meshes command.user has access to (???)
1444
var filter = ['user/' + domain.id + '/' + command.user];
1445
@@ -2200,18 +2200,22 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2200
}
2201
case 'updateUserImage':
2202
{
2203
- var chguser = parent.users[user._id], flags = 0, change = 0;
2203
+ var uid = user._id;
2204
+ if ((typeof command.userid == 'string') && ((user.siteadmin & SITERIGHT_MANAGEUSERS) != 0)) { uid = command.userid; }
2205
+
2206
+ var chguser = parent.users[uid], flags = 0, change = 0;
2207
if (chguser == null) break;
2208
if (typeof chguser.flags == 'number') { flags = chguser.flags; }
2209
2210
if (command.image == 0) {
2211
// Delete the image
2209
- db.Remove('im' + user._id);
2212
+ db.Remove('im' + uid);
2213
if ((flags & 1) != 0) { flags -= 1; change = 1; }
2214
} else if ((typeof command.image == 'string') && (command.image.length < 600000) && ((command.image.startsWith('data:image/png;base64,') || (command.image.startsWith('data:image/jpeg;base64,'))))) {
2215
// Save the new image
2213
- db.Set({ _id: 'im' + user._id, image: command.image });
2214
- if ((flags & 1) == 0) { flags += 1; change = 1; }
2216
+ db.Set({ _id: 'im' + uid, image: command.image });
2217
+ if ((flags & 1) == 0) { flags += 1; }
2218
+ change = 1;
2219
}
2220
2221
// Update the user if needed
@@ -2222,7 +2226,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
2226
// Event the change
2227
var targets = ['*', 'server-users', user._id, chguser._id];
2228
if (allTargetGroups) { for (var i in allTargetGroups) { targets.push('server-users:' + i); } }
2225
- var event = { etype: 'user', userid: user._id, username: user.name, account: parent.CloneSafeUser(chguser), action: 'accountchange', msgid: 66, msgArgs: [chguser.name], msg: 'Account changed: ' + chguser.name, domain: domain.id };
2229
+ var event = { etype: 'user', userid: uid, username: chguser.name, account: parent.CloneSafeUser(chguser), action: 'accountchange', msgid: 66, msgArgs: [chguser.name], msg: 'Account changed: ' + chguser.name, domain: domain.id, accountImageChange: 1 };
2230
if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come.
2231
parent.parent.DispatchEvent(targets, obj, event);
2232
}
public/styles/style.css
+14
-5
@@ -973,12 +973,21 @@ NoMeshesPanel img {
973
cursor: pointer;
974
}
975
976
-#p2AccountImage {
977
- width: 128px;
978
- height: 128px;
979
- margin-bottom: 10px;
980
- margin-right: 20px;
976
+#p2AccountImageFrame {
977
float: right;
978
+ text-align: center;
979
+ margin-bottom: 10px;
980
+ margin-right: 10px;
981
+ margin-top: 7px;
982
+}
983
+
984
+#p2AccountImage, #p2AccountImage2, #MainUserImageEx {
985
+ width: 200px;
986
+ height: 200px;
987
+ border-radius: 8px;
988
+ cursor: pointer;
989
+ margin: 8px;
990
+ box-shadow: 0px 0px 7px #000;
991
}
992
993
.p2AccountActions {
translate/translate.json
+1498
-1477
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1483",
21
- "default.handlebars->31->1485"
20
+ "default.handlebars->31->1486",
21
+ "default.handlebars->31->1488"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1396"
207
+ "default.handlebars->31->1399"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1560",
228
- "default.handlebars->31->2043"
227
+ "default.handlebars->31->1563",
228
+ "default.handlebars->31->2046"
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->1529",
435
+ "default.handlebars->31->1532",
436
"default.handlebars->31->333"
437
]
438
},
@@ -507,8 +507,8 @@
507
"zh-chs": ",",
508
"zh-cht": ",",
509
"xloc": [
510
- "default-mobile.handlebars->11->577",
511
- "default.handlebars->31->1631"
510
+ "default-mobile.handlebars->11->579",
511
+ "default.handlebars->31->1634"
512
]
513
},
514
{
@@ -549,7 +549,7 @@
549
"zh-chs": ",MQTT在线",
550
"zh-cht": ",MQTT在線",
551
"xloc": [
552
- "default-mobile.handlebars->11->494",
552
+ "default-mobile.handlebars->11->496",
553
"default.handlebars->31->1134"
554
]
555
},
@@ -635,8 +635,8 @@
635
"zh-chs": ",WebRTC",
636
"zh-cht": ",WebRTC",
637
"xloc": [
638
- "default-mobile.handlebars->11->334",
639
- "default-mobile.handlebars->11->368",
638
+ "default-mobile.handlebars->11->336",
639
+ "default-mobile.handlebars->11->370",
640
"default.handlebars->31->923",
641
"default.handlebars->31->985",
642
"default.handlebars->31->997",
@@ -826,10 +826,10 @@
826
"zh-cht": "...",
827
"xloc": [
828
"default-mobile.handlebars->11->130",
829
- "default-mobile.handlebars->11->370",
829
+ "default-mobile.handlebars->11->372",
830
"default.handlebars->31->1003",
831
- "default.handlebars->31->1683",
832
- "default.handlebars->31->2206"
831
+ "default.handlebars->31->1686",
832
+ "default.handlebars->31->2209"
833
]
834
},
835
{
@@ -886,7 +886,7 @@
886
"zh-chs": "1个活跃时段",
887
"zh-cht": "1個活躍時段",
888
"xloc": [
889
- "default.handlebars->31->2116"
889
+ "default.handlebars->31->2119"
890
]
891
},
892
{
@@ -907,8 +907,8 @@
907
"zh-cht": "1個位元組",
908
"xloc": [
909
"default-mobile.handlebars->11->140",
910
- "default-mobile.handlebars->11->620",
911
- "default.handlebars->31->1707",
910
+ "default-mobile.handlebars->11->622",
911
+ "default.handlebars->31->1710",
912
"download.handlebars->3->1",
913
"download2.handlebars->5->1"
914
]
@@ -973,7 +973,7 @@
973
"zh-chs": "1组",
974
"zh-cht": "1群",
975
"xloc": [
976
- "default.handlebars->31->2077"
976
+ "default.handlebars->31->2080"
977
]
978
},
979
{
@@ -1077,7 +1077,7 @@
1077
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1078
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1079
"xloc": [
1080
- "default.handlebars->31->1867"
1080
+ "default.handlebars->31->1870"
1081
]
1082
},
1083
{
@@ -1143,7 +1143,7 @@
1143
"default-mobile.handlebars->11->202",
1144
"default-mobile.handlebars->11->205",
1145
"default-mobile.handlebars->11->208",
1146
- "default.handlebars->31->1871",
1146
+ "default.handlebars->31->1874",
1147
"default.handlebars->31->277",
1148
"default.handlebars->31->280",
1149
"default.handlebars->31->283",
@@ -1626,7 +1626,14 @@
1626
"zh-chs": "2FA备份代码已清除",
1627
"zh-cht": "2FA備份代碼已清除",
1628
"xloc": [
1629
- "default.handlebars->31->1818"
1629
+ "default.handlebars->31->1821"
1630
+ ]
1631
+ },
1632
+ {
1633
+ "en": "2d",
1634
+ "xloc": [
1635
+ "default.handlebars->31->1153",
1636
+ "default.handlebars->31->1154"
1637
]
1638
},
1639
{
@@ -1646,8 +1653,8 @@
1653
"zh-chs": "启用第二因素身份验证",
1654
"zh-cht": "啟用第二因素身份驗證",
1655
"xloc": [
1649
- "default.handlebars->31->1884",
1650
- "default.handlebars->31->2099"
1656
+ "default.handlebars->31->1887",
1657
+ "default.handlebars->31->2102"
1658
]
1659
},
1660
{
@@ -1683,7 +1690,7 @@
1690
"pt": "3",
1691
"ru": "3",
1692
"xloc": [
1686
- "default-mobile.handlebars->11->396"
1693
+ "default-mobile.handlebars->11->398"
1694
]
1695
},
1696
{
@@ -2515,7 +2522,7 @@
2522
"zh-cht": "ACM",
2523
"xloc": [
2524
"default-mobile.handlebars->11->266",
2518
- "default.handlebars->31->1499",
2525
+ "default.handlebars->31->1502",
2526
"default.handlebars->31->615"
2527
]
2528
},
@@ -2684,8 +2691,8 @@
2691
"nl": "Anti-virus",
2692
"fr": "Antivirus",
2693
"xloc": [
2687
- "default-mobile.handlebars->11->406",
2694
"default-mobile.handlebars->11->408",
2695
+ "default-mobile.handlebars->11->410",
2696
"default.handlebars->31->634",
2697
"default.handlebars->31->636"
2698
]
@@ -2707,7 +2714,7 @@
2714
"zh-chs": "拒绝访问",
2715
"zh-cht": "拒絕存取",
2716
"xloc": [
2710
- "default-mobile.handlebars->11->495",
2717
+ "default-mobile.handlebars->11->497",
2718
"default.handlebars->31->1135"
2719
]
2720
},
@@ -2750,7 +2757,7 @@
2757
"zh-chs": "访问服务器档案",
2758
"zh-cht": "存取伺服器檔案",
2759
"xloc": [
2753
- "default.handlebars->31->2049"
2760
+ "default.handlebars->31->2052"
2761
]
2762
},
2763
{
@@ -2839,9 +2846,9 @@
2846
"default-mobile.handlebars->11->241",
2847
"default-mobile.handlebars->11->243",
2848
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2842
- "default.handlebars->31->1405",
2843
- "default.handlebars->31->1407",
2844
- "default.handlebars->31->2322",
2849
+ "default.handlebars->31->1408",
2850
+ "default.handlebars->31->1410",
2851
+ "default.handlebars->31->2325",
2852
"default.handlebars->31->584",
2853
"default.handlebars->31->586"
2854
]
@@ -2851,8 +2858,8 @@
2858
"nl": "Account instellingen",
2859
"fr": "Paramètres du compte",
2860
"xloc": [
2854
- "default-mobile.handlebars->11->588",
2855
- "default.handlebars->31->2214"
2861
+ "default-mobile.handlebars->11->590",
2862
+ "default.handlebars->31->2217"
2863
]
2864
},
2865
{
@@ -2913,7 +2920,7 @@
2920
"zh-chs": "帐户已更改:{0}",
2921
"zh-cht": "帳戶已更改:{0}",
2922
"xloc": [
2916
- "default.handlebars->31->1791"
2923
+ "default.handlebars->31->1794"
2924
]
2925
},
2926
{
@@ -2933,7 +2940,7 @@
2940
"zh-chs": "创建帐户,电子邮件为{0}",
2941
"zh-cht": "創建帳戶,電子郵件為{0}",
2942
"xloc": [
2936
- "default.handlebars->31->1790"
2943
+ "default.handlebars->31->1793"
2944
]
2945
},
2946
{
@@ -2953,7 +2960,7 @@
2960
"zh-chs": "创建帐户,用户名是{0}",
2961
"zh-cht": "帳戶已創建,用戶名是{0}",
2962
"xloc": [
2956
- "default.handlebars->31->1789"
2963
+ "default.handlebars->31->1792"
2964
]
2965
},
2966
{
@@ -2973,8 +2980,8 @@
2980
"zh-chs": "帐户已被锁定",
2981
"zh-cht": "帳戶已被鎖定",
2982
"xloc": [
2976
- "default.handlebars->31->1886",
2977
- "default.handlebars->31->2046"
2983
+ "default.handlebars->31->1889",
2984
+ "default.handlebars->31->2049"
2985
]
2986
},
2987
{
@@ -2994,8 +3001,8 @@
3001
"zh-chs": "达到帐户限制。",
3002
"zh-cht": "達到帳戶限制。",
3003
"xloc": [
2997
- "default-mobile.handlebars->11->600",
2998
- "default.handlebars->31->2226",
3004
+ "default-mobile.handlebars->11->602",
3005
+ "default.handlebars->31->2229",
3006
"login-mobile.handlebars->5->6",
3007
"login.handlebars->5->6",
3008
"login2.handlebars->7->7"
@@ -3040,7 +3047,7 @@
3047
"zh-chs": "帐号登录",
3048
"zh-cht": "帳號登錄",
3049
"xloc": [
3043
- "default.handlebars->31->1726"
3050
+ "default.handlebars->31->1729"
3051
]
3052
},
3053
{
@@ -3048,7 +3055,7 @@
3055
"nl": "Account aanmelding van {0}, {1}, {2}",
3056
"fr": "Connexion de {0}, {1}, {2}",
3057
"xloc": [
3051
- "default.handlebars->31->1832"
3058
+ "default.handlebars->31->1835"
3059
]
3060
},
3061
{
@@ -3068,7 +3075,7 @@
3075
"zh-chs": "帐户登出",
3076
"zh-cht": "帳戶登出",
3077
"xloc": [
3071
- "default.handlebars->31->1727"
3078
+ "default.handlebars->31->1730"
3079
]
3080
},
3081
{
@@ -3110,7 +3117,7 @@
3117
"zh-chs": "帐户密码已更改:{0}",
3118
"zh-cht": "帳戶密碼已更改:{0}",
3119
"xloc": [
3113
- "default.handlebars->31->1799"
3120
+ "default.handlebars->31->1802"
3121
]
3122
},
3123
{
@@ -3130,7 +3137,7 @@
3137
"zh-chs": "帐户已删除",
3138
"zh-cht": "帳戶已刪除",
3139
"xloc": [
3133
- "default.handlebars->31->1788"
3140
+ "default.handlebars->31->1791"
3141
]
3142
},
3143
{
@@ -3170,7 +3177,7 @@
3177
"zh-chs": "指令",
3178
"zh-cht": "指令",
3179
"xloc": [
3173
- "default-mobile.handlebars->11->501",
3180
+ "default-mobile.handlebars->11->503",
3181
"default.handlebars->31->1141",
3182
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3183
]
@@ -3299,7 +3306,7 @@
3306
"zh-chs": "如果ACM失败,则激活到CCM",
3307
"zh-cht": "如果ACM失敗,則激活到CCM",
3308
"xloc": [
3302
- "default.handlebars->31->1520"
3309
+ "default.handlebars->31->1523"
3310
]
3311
},
3312
{
@@ -3321,7 +3328,7 @@
3328
"xloc": [
3329
"default-mobile.handlebars->11->261",
3330
"default-mobile.handlebars->11->263",
3324
- "default-mobile.handlebars->11->457",
3331
+ "default-mobile.handlebars->11->459",
3332
"default.handlebars->31->1096",
3333
"default.handlebars->31->608",
3334
"default.handlebars->31->610"
@@ -3389,7 +3396,7 @@
3396
"fr": "Ajouter",
3397
"nl": "Toevoegen",
3398
"xloc": [
3392
- "default-mobile.handlebars->11->361",
3399
+ "default-mobile.handlebars->11->363",
3400
"default.handlebars->31->954"
3401
]
3402
},
@@ -3410,7 +3417,7 @@
3417
"zh-chs": "添加代理",
3418
"zh-cht": "新增代理",
3419
"xloc": [
3413
- "default.handlebars->31->1495",
3420
+ "default.handlebars->31->1498",
3421
"default.handlebars->31->310"
3422
]
3423
},
@@ -3448,8 +3455,8 @@
3455
"zh-chs": "添加设备",
3456
"zh-cht": "新增裝置",
3457
"xloc": [
3451
- "default.handlebars->31->2023",
3452
- "default.handlebars->31->2153"
3458
+ "default.handlebars->31->2026",
3459
+ "default.handlebars->31->2156"
3460
]
3461
},
3462
{
@@ -3489,9 +3496,9 @@
3496
"zh-chs": "添加设备组",
3497
"zh-cht": "新增裝置群",
3498
"xloc": [
3492
- "default.handlebars->31->1595",
3493
- "default.handlebars->31->2017",
3494
- "default.handlebars->31->2141",
3499
+ "default.handlebars->31->1598",
3500
+ "default.handlebars->31->2020",
3501
+ "default.handlebars->31->2144",
3502
"default.handlebars->31->247"
3503
]
3504
},
@@ -3512,7 +3519,7 @@
3519
"zh-chs": "添加设备组权限",
3520
"zh-cht": "新增裝置群權限",
3521
"xloc": [
3515
- "default.handlebars->31->1592"
3522
+ "default.handlebars->31->1595"
3523
]
3524
},
3525
{
@@ -3532,8 +3539,8 @@
3539
"zh-chs": "添加设备权限",
3540
"zh-cht": "新增裝置權限",
3541
"xloc": [
3535
- "default.handlebars->31->1597",
3536
- "default.handlebars->31->1599"
3542
+ "default.handlebars->31->1600",
3543
+ "default.handlebars->31->1602"
3544
]
3545
},
3546
{
@@ -3630,7 +3637,7 @@
3637
"zh-chs": "添加成员身份",
3638
"zh-cht": "新增成員身份",
3639
"xloc": [
3633
- "default.handlebars->31->2173"
3640
+ "default.handlebars->31->2176"
3641
]
3642
},
3643
{
@@ -3670,8 +3677,8 @@
3677
"zh-chs": "添加安全密钥",
3678
"zh-cht": "新增安全密鑰",
3679
"xloc": [
3673
- "default.handlebars->31->1172",
3674
- "default.handlebars->31->1173",
3680
+ "default.handlebars->31->1175",
3681
+ "default.handlebars->31->1176",
3682
"default.handlebars->31->164",
3683
"default.handlebars->31->166",
3684
"default.handlebars->31->169",
@@ -3695,7 +3702,7 @@
3702
"zh-chs": "添加用户",
3703
"zh-cht": "新增用戶",
3704
"xloc": [
3698
- "default-mobile.handlebars->11->517",
3705
+ "default-mobile.handlebars->11->519",
3706
"default.handlebars->31->725"
3707
]
3708
},
@@ -3716,7 +3723,7 @@
3723
"zh-chs": "添加用户设备权限",
3724
"zh-cht": "新增用戶裝置權限",
3725
"xloc": [
3719
- "default.handlebars->31->1602"
3726
+ "default.handlebars->31->1605"
3727
]
3728
},
3729
{
@@ -3736,9 +3743,9 @@
3743
"zh-chs": "添加用户组",
3744
"zh-cht": "新增用戶群",
3745
"xloc": [
3739
- "default.handlebars->31->1491",
3740
- "default.handlebars->31->1594",
3741
- "default.handlebars->31->2147",
3746
+ "default.handlebars->31->1494",
3747
+ "default.handlebars->31->1597",
3748
+ "default.handlebars->31->2150",
3749
"default.handlebars->31->726"
3750
]
3751
},
@@ -3759,7 +3766,7 @@
3766
"zh-chs": "添加用户组设备权限",
3767
"zh-cht": "新增用戶群裝置權限",
3768
"xloc": [
3762
- "default.handlebars->31->1604"
3769
+ "default.handlebars->31->1607"
3770
]
3771
},
3772
{
@@ -3779,7 +3786,7 @@
3786
"zh-chs": "将用户添加到设备组",
3787
"zh-cht": "將用戶新增到裝置群",
3788
"xloc": [
3782
- "default-mobile.handlebars->11->553"
3789
+ "default-mobile.handlebars->11->555"
3790
]
3791
},
3792
{
@@ -3816,8 +3823,8 @@
3823
"zh-chs": "添加用户",
3824
"zh-cht": "新增用戶",
3825
"xloc": [
3819
- "default.handlebars->31->1490",
3820
- "default.handlebars->31->2012"
3826
+ "default.handlebars->31->1493",
3827
+ "default.handlebars->31->2015"
3828
]
3829
},
3830
{
@@ -3837,7 +3844,7 @@
3844
"zh-chs": "将用户添加到设备组",
3845
"zh-cht": "將用戶新增到裝置群",
3846
"xloc": [
3840
- "default.handlebars->31->1591"
3847
+ "default.handlebars->31->1594"
3848
]
3849
},
3850
{
@@ -3857,7 +3864,7 @@
3864
"zh-chs": "将用户添加到用户组",
3865
"zh-cht": "將用戶新增到用戶群",
3866
"xloc": [
3860
- "default.handlebars->31->2045"
3867
+ "default.handlebars->31->2048"
3868
]
3869
},
3870
{
@@ -3974,7 +3981,7 @@
3981
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3982
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3983
"xloc": [
3977
- "default.handlebars->31->1494",
3984
+ "default.handlebars->31->1497",
3985
"default.handlebars->31->309"
3986
]
3987
},
@@ -4035,7 +4042,7 @@
4042
"zh-chs": "添加了身份验证应用程序",
4043
"zh-cht": "添加了身份驗證應用程序",
4044
"xloc": [
4038
- "default.handlebars->31->1815"
4045
+ "default.handlebars->31->1818"
4046
]
4047
},
4048
{
@@ -4055,7 +4062,7 @@
4062
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4063
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4064
"xloc": [
4058
- "default.handlebars->31->1826"
4065
+ "default.handlebars->31->1829"
4066
]
4067
},
4068
{
@@ -4075,8 +4082,8 @@
4082
"zh-chs": "已将设备{0}添加到设备组{1}",
4083
"zh-cht": "已將設備{0}添加到設備組{1}",
4084
"xloc": [
4078
- "default.handlebars->31->1782",
4079
- "default.handlebars->31->1809"
4085
+ "default.handlebars->31->1785",
4086
+ "default.handlebars->31->1812"
4087
]
4088
},
4089
{
@@ -4096,7 +4103,7 @@
4103
"zh-chs": "添加了安全密钥",
4104
"zh-cht": "添加了安全密鑰",
4105
"xloc": [
4099
- "default.handlebars->31->1820"
4106
+ "default.handlebars->31->1823"
4107
]
4108
},
4109
{
@@ -4116,7 +4123,7 @@
4123
"zh-chs": "已将用户组{0}添加到设备组{1}",
4124
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4125
"xloc": [
4119
- "default.handlebars->31->1793"
4126
+ "default.handlebars->31->1796"
4127
]
4128
},
4129
{
@@ -4136,8 +4143,8 @@
4143
"zh-chs": "已将用户{0}添加到用户组{1}",
4144
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4145
"xloc": [
4139
- "default.handlebars->31->1796",
4140
- "default.handlebars->31->1805"
4146
+ "default.handlebars->31->1799",
4147
+ "default.handlebars->31->1808"
4148
]
4149
},
4150
{
@@ -4197,7 +4204,7 @@
4204
"zh-chs": "管理员控制模式(ACM)",
4205
"zh-cht": "管理員控制模式(ACM)",
4206
"xloc": [
4200
- "default-mobile.handlebars->11->459",
4207
+ "default-mobile.handlebars->11->461",
4208
"default.handlebars->31->1098"
4209
]
4210
},
@@ -4218,7 +4225,7 @@
4225
"zh-chs": "管理员凭证",
4226
"zh-cht": "管理員憑證",
4227
"xloc": [
4221
- "default-mobile.handlebars->11->465",
4228
+ "default-mobile.handlebars->11->467",
4229
"default.handlebars->31->1104"
4230
]
4231
},
@@ -4260,7 +4267,7 @@
4267
"zh-chs": "管理领域",
4268
"zh-cht": "管理領域",
4269
"xloc": [
4263
- "default.handlebars->31->2081"
4270
+ "default.handlebars->31->2084"
4271
]
4272
},
4273
{
@@ -4301,7 +4308,7 @@
4308
"zh-chs": "管理领域",
4309
"zh-cht": "管理領域",
4310
"xloc": [
4304
- "default.handlebars->31->1949"
4311
+ "default.handlebars->31->1952"
4312
]
4313
},
4314
{
@@ -4321,7 +4328,7 @@
4328
"zh-chs": "管理员",
4329
"zh-cht": "管理員",
4330
"xloc": [
4324
- "default.handlebars->31->1878"
4331
+ "default.handlebars->31->1881"
4332
]
4333
},
4334
{
@@ -4341,7 +4348,7 @@
4348
"zh-chs": "南非文",
4349
"zh-cht": "南非文",
4350
"xloc": [
4344
- "default.handlebars->31->1175"
4351
+ "default.handlebars->31->1178"
4352
]
4353
},
4354
{
@@ -4366,8 +4373,8 @@
4373
"default-mobile.handlebars->11->258",
4374
"default-mobile.handlebars->11->280",
4375
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4369
- "default.handlebars->31->1658",
4370
- "default.handlebars->31->1671",
4376
+ "default.handlebars->31->1661",
4377
+ "default.handlebars->31->1674",
4378
"default.handlebars->31->263",
4379
"default.handlebars->31->455",
4380
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -4390,8 +4397,8 @@
4397
"zh-chs": "代理+英特尔AMT",
4398
"zh-cht": "代理+Intel® AMT",
4399
"xloc": [
4393
- "default.handlebars->31->1660",
4394
- "default.handlebars->31->1673"
4400
+ "default.handlebars->31->1663",
4401
+ "default.handlebars->31->1676"
4402
]
4403
},
4404
{
@@ -4432,8 +4439,8 @@
4439
"zh-chs": "代理控制台",
4440
"zh-cht": "代理控制台",
4441
"xloc": [
4435
- "default-mobile.handlebars->11->559",
4436
- "default.handlebars->31->1612"
4442
+ "default-mobile.handlebars->11->561",
4443
+ "default.handlebars->31->1615"
4444
]
4445
},
4446
{
@@ -4453,7 +4460,7 @@
4460
"zh-chs": "代理错误计数器",
4461
"zh-cht": "代理錯誤計數器",
4462
"xloc": [
4456
- "default.handlebars->31->2251"
4463
+ "default.handlebars->31->2254"
4464
]
4465
},
4466
{
@@ -4556,7 +4563,7 @@
4563
"zh-chs": "代理时段",
4564
"zh-cht": "代理時段",
4565
"xloc": [
4559
- "default.handlebars->31->2267"
4566
+ "default.handlebars->31->2270"
4567
]
4568
},
4569
{
@@ -4597,7 +4604,7 @@
4604
"zh-chs": "代理类型",
4605
"zh-cht": "代理類型",
4606
"xloc": [
4600
- "default.handlebars->31->1669",
4607
+ "default.handlebars->31->1672",
4608
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4609
]
4610
},
@@ -4618,7 +4625,7 @@
4625
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4626
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4627
"xloc": [
4621
- "default.handlebars->31->1779"
4628
+ "default.handlebars->31->1782"
4629
]
4630
},
4631
{
@@ -4680,7 +4687,7 @@
4687
"zh-chs": "代理离线",
4688
"zh-cht": "代理離線",
4689
"xloc": [
4683
- "default-mobile.handlebars->11->493",
4690
+ "default-mobile.handlebars->11->495",
4691
"default.handlebars->31->1133"
4692
]
4693
},
@@ -4701,7 +4708,7 @@
4708
"zh-chs": "代理在线",
4709
"zh-cht": "代理在線",
4710
"xloc": [
4704
- "default-mobile.handlebars->11->492",
4711
+ "default-mobile.handlebars->11->494",
4712
"default.handlebars->31->1132"
4713
]
4714
},
@@ -4743,7 +4750,7 @@
4750
"zh-chs": "代理",
4751
"zh-cht": "代理",
4752
"xloc": [
4746
- "default.handlebars->31->2283"
4753
+ "default.handlebars->31->2286"
4754
]
4755
},
4756
{
@@ -4763,7 +4770,7 @@
4770
"zh-chs": "阿尔巴尼亚文",
4771
"zh-cht": "阿爾巴尼亞文",
4772
"xloc": [
4766
- "default.handlebars->31->1176"
4773
+ "default.handlebars->31->1179"
4774
]
4775
},
4776
{
@@ -4784,8 +4791,8 @@
4791
"zh-cht": "所有",
4792
"xloc": [
4793
"default-mobile.handlebars->11->139",
4787
- "default-mobile.handlebars->11->371",
4794
"default-mobile.handlebars->11->373",
4795
+ "default-mobile.handlebars->11->375",
4796
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4797
]
4798
},
@@ -4806,7 +4813,7 @@
4813
"zh-chs": "全部可用",
4814
"zh-cht": "全部可用",
4815
"xloc": [
4809
- "default.handlebars->31->1841"
4816
+ "default.handlebars->31->1844"
4817
]
4818
},
4819
{
@@ -4846,7 +4853,7 @@
4853
"zh-chs": "所有事件",
4854
"zh-cht": "所有事件",
4855
"xloc": [
4849
- "default.handlebars->31->1839"
4856
+ "default.handlebars->31->1842"
4857
]
4858
},
4859
{
@@ -4888,8 +4895,8 @@
4895
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4896
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4897
"xloc": [
4891
- "default.handlebars->31->1558",
4892
- "default.handlebars->31->2042"
4898
+ "default.handlebars->31->1561",
4899
+ "default.handlebars->31->2045"
4900
]
4901
},
4902
{
@@ -4909,7 +4916,7 @@
4916
"zh-chs": "允许用户管理此设备。",
4917
"zh-cht": "允許用戶管理此裝置。",
4918
"xloc": [
4912
- "default.handlebars->31->1559"
4919
+ "default.handlebars->31->1562"
4920
]
4921
},
4922
{
@@ -4946,8 +4953,8 @@
4953
"fr": "Alt",
4954
"nl": "Alt",
4955
"xloc": [
4949
- "default-mobile.handlebars->11->354",
4950
- "default-mobile.handlebars->11->358",
4956
+ "default-mobile.handlebars->11->356",
4957
+ "default-mobile.handlebars->11->360",
4958
"default.handlebars->31->947",
4959
"default.handlebars->31->951"
4960
]
@@ -5053,9 +5060,9 @@
5060
"zh-chs": "一直通知",
5061
"zh-cht": "一直通知",
5062
"xloc": [
5056
- "default.handlebars->31->1470",
5057
- "default.handlebars->31->2003",
5058
- "default.handlebars->31->2090",
5063
+ "default.handlebars->31->1473",
5064
+ "default.handlebars->31->2006",
5065
+ "default.handlebars->31->2093",
5066
"default.handlebars->31->659"
5067
]
5068
},
@@ -5076,9 +5083,9 @@
5083
"zh-chs": "一直提示",
5084
"zh-cht": "一直提示",
5085
"xloc": [
5079
- "default.handlebars->31->1471",
5080
- "default.handlebars->31->2004",
5081
- "default.handlebars->31->2091",
5086
+ "default.handlebars->31->1474",
5087
+ "default.handlebars->31->2007",
5088
+ "default.handlebars->31->2094",
5089
"default.handlebars->31->660"
5090
]
5091
},
@@ -5196,7 +5203,7 @@
5203
"nl": "Android installatie",
5204
"fr": "Installation pour Android",
5205
"xloc": [
5199
- "default-mobile.handlebars->11->533"
5206
+ "default-mobile.handlebars->11->535"
5207
]
5208
},
5209
{
@@ -5225,8 +5232,8 @@
5232
"nl": "Anti-virus niet actief",
5233
"fr": "Antivirus désactivé",
5234
"xloc": [
5228
- "default.handlebars->31->1662",
5229
- "default.handlebars->31->1676"
5235
+ "default.handlebars->31->1665",
5236
+ "default.handlebars->31->1679"
5237
]
5238
},
5239
{
@@ -5246,7 +5253,7 @@
5253
"zh-chs": "杀毒软件",
5254
"zh-cht": "防毒軟體",
5255
"xloc": [
5249
- "default-mobile.handlebars->11->422",
5256
+ "default-mobile.handlebars->11->424",
5257
"default.handlebars->31->650"
5258
]
5259
},
@@ -5368,7 +5375,7 @@
5375
"zh-chs": "阿拉伯文(阿尔及利亚)",
5376
"zh-cht": "阿拉伯文(阿爾及利亞)",
5377
"xloc": [
5371
- "default.handlebars->31->1178"
5378
+ "default.handlebars->31->1181"
5379
]
5380
},
5381
{
@@ -5388,7 +5395,7 @@
5395
"zh-chs": "阿拉伯文(巴林)",
5396
"zh-cht": "阿拉伯文(巴林)",
5397
"xloc": [
5391
- "default.handlebars->31->1179"
5398
+ "default.handlebars->31->1182"
5399
]
5400
},
5401
{
@@ -5408,7 +5415,7 @@
5415
"zh-chs": "阿拉伯文(埃及)",
5416
"zh-cht": "阿拉伯文(埃及)",
5417
"xloc": [
5411
- "default.handlebars->31->1180"
5418
+ "default.handlebars->31->1183"
5419
]
5420
},
5421
{
@@ -5428,7 +5435,7 @@
5435
"zh-chs": "阿拉伯文(伊拉克)",
5436
"zh-cht": "阿拉伯文(伊拉克)",
5437
"xloc": [
5431
- "default.handlebars->31->1181"
5438
+ "default.handlebars->31->1184"
5439
]
5440
},
5441
{
@@ -5448,7 +5455,7 @@
5455
"zh-chs": "阿拉伯文(约旦)",
5456
"zh-cht": "阿拉伯文(約旦)",
5457
"xloc": [
5451
- "default.handlebars->31->1182"
5458
+ "default.handlebars->31->1185"
5459
]
5460
},
5461
{
@@ -5468,7 +5475,7 @@
5475
"zh-chs": "阿拉伯文(科威特)",
5476
"zh-cht": "阿拉伯文(科威特)",
5477
"xloc": [
5471
- "default.handlebars->31->1183"
5478
+ "default.handlebars->31->1186"
5479
]
5480
},
5481
{
@@ -5488,7 +5495,7 @@
5495
"zh-chs": "阿拉伯文(黎巴嫩)",
5496
"zh-cht": "阿拉伯文(黎巴嫩)",
5497
"xloc": [
5491
- "default.handlebars->31->1184"
5498
+ "default.handlebars->31->1187"
5499
]
5500
},
5501
{
@@ -5508,7 +5515,7 @@
5515
"zh-chs": "阿拉伯文(利比亚)",
5516
"zh-cht": "阿拉伯文(利比亞)",
5517
"xloc": [
5511
- "default.handlebars->31->1185"
5518
+ "default.handlebars->31->1188"
5519
]
5520
},
5521
{
@@ -5528,7 +5535,7 @@
5535
"zh-chs": "阿拉伯文(摩洛哥)",
5536
"zh-cht": "阿拉伯文(摩洛哥)",
5537
"xloc": [
5531
- "default.handlebars->31->1186"
5538
+ "default.handlebars->31->1189"
5539
]
5540
},
5541
{
@@ -5548,7 +5555,7 @@
5555
"zh-chs": "阿拉伯文(阿曼)",
5556
"zh-cht": "阿拉伯文(阿曼)",
5557
"xloc": [
5551
- "default.handlebars->31->1187"
5558
+ "default.handlebars->31->1190"
5559
]
5560
},
5561
{
@@ -5568,7 +5575,7 @@
5575
"zh-chs": "阿拉伯文(卡塔尔)",
5576
"zh-cht": "阿拉伯文(卡塔爾)",
5577
"xloc": [
5571
- "default.handlebars->31->1188"
5578
+ "default.handlebars->31->1191"
5579
]
5580
},
5581
{
@@ -5588,7 +5595,7 @@
5595
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5596
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5597
"xloc": [
5591
- "default.handlebars->31->1189"
5598
+ "default.handlebars->31->1192"
5599
]
5600
},
5601
{
@@ -5608,7 +5615,7 @@
5615
"zh-chs": "阿拉伯文(标准)",
5616
"zh-cht": "阿拉伯文(標準)",
5617
"xloc": [
5611
- "default.handlebars->31->1177"
5618
+ "default.handlebars->31->1180"
5619
]
5620
},
5621
{
@@ -5628,7 +5635,7 @@
5635
"zh-chs": "阿拉伯文(叙利亚)",
5636
"zh-cht": "阿拉伯文(敘利亞)",
5637
"xloc": [
5631
- "default.handlebars->31->1190"
5638
+ "default.handlebars->31->1193"
5639
]
5640
},
5641
{
@@ -5648,7 +5655,7 @@
5655
"zh-chs": "阿拉伯文(突尼斯)",
5656
"zh-cht": "阿拉伯文(突尼斯)",
5657
"xloc": [
5651
- "default.handlebars->31->1191"
5658
+ "default.handlebars->31->1194"
5659
]
5660
},
5661
{
@@ -5668,7 +5675,7 @@
5675
"zh-chs": "阿拉伯文(阿联酋)",
5676
"zh-cht": "阿拉伯文(阿聯酋)",
5677
"xloc": [
5671
- "default.handlebars->31->1192"
5678
+ "default.handlebars->31->1195"
5679
]
5680
},
5681
{
@@ -5688,7 +5695,7 @@
5695
"zh-chs": "阿拉伯文(也门)",
5696
"zh-cht": "阿拉伯文(也門)",
5697
"xloc": [
5691
- "default.handlebars->31->1193"
5698
+ "default.handlebars->31->1196"
5699
]
5700
},
5701
{
@@ -5708,7 +5715,7 @@
5715
"zh-chs": "阿拉贡文",
5716
"zh-cht": "阿拉貢文",
5717
"xloc": [
5711
- "default.handlebars->31->1194"
5718
+ "default.handlebars->31->1197"
5719
]
5720
},
5721
{
@@ -5728,7 +5735,7 @@
5735
"zh-chs": "架构",
5736
"zh-cht": "結構",
5737
"xloc": [
5731
- "default-mobile.handlebars->11->405",
5738
+ "default-mobile.handlebars->11->407",
5739
"default.handlebars->31->1051"
5740
]
5741
},
@@ -5769,8 +5776,8 @@
5776
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5777
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5778
"xloc": [
5772
- "default-mobile.handlebars->11->524",
5773
- "default.handlebars->31->1534"
5779
+ "default-mobile.handlebars->11->526",
5780
+ "default.handlebars->31->1537"
5781
]
5782
},
5783
{
@@ -5850,7 +5857,7 @@
5857
"zh-chs": "您确定要{0}插件吗:{1}",
5858
"zh-cht": "你確定要{0}外掛嗎:{1}",
5859
"xloc": [
5853
- "default.handlebars->31->2331"
5860
+ "default.handlebars->31->2334"
5861
]
5862
},
5863
{
@@ -5870,7 +5877,7 @@
5877
"zh-chs": "亚美尼亚文",
5878
"zh-cht": "亞美尼亞文",
5879
"xloc": [
5873
- "default.handlebars->31->1195"
5880
+ "default.handlebars->31->1198"
5881
]
5882
},
5883
{
@@ -5930,7 +5937,7 @@
5937
"zh-chs": "阿萨姆文",
5938
"zh-cht": "阿薩姆文",
5939
"xloc": [
5933
- "default.handlebars->31->1196"
5940
+ "default.handlebars->31->1199"
5941
]
5942
},
5943
{
@@ -5950,7 +5957,7 @@
5957
"zh-chs": "阿斯图里亚斯文",
5958
"zh-cht": "阿斯圖里亞斯文",
5959
"xloc": [
5953
- "default.handlebars->31->1197"
5960
+ "default.handlebars->31->1200"
5961
]
5962
},
5963
{
@@ -5970,7 +5977,7 @@
5977
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5978
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5979
"xloc": [
5973
- "default.handlebars->31->1748"
5980
+ "default.handlebars->31->1751"
5981
]
5982
},
5983
{
@@ -5990,7 +5997,7 @@
5997
"zh-chs": "认证软件",
5998
"zh-cht": "認證軟體",
5999
"xloc": [
5993
- "default.handlebars->31->2094"
6000
+ "default.handlebars->31->2097"
6001
]
6002
},
6003
{
@@ -6014,8 +6021,8 @@
6021
"default-mobile.handlebars->11->63",
6022
"default-mobile.handlebars->11->93",
6023
"default-mobile.handlebars->11->95",
6017
- "default.handlebars->31->1161",
6018
- "default.handlebars->31->1163",
6024
+ "default.handlebars->31->1164",
6025
+ "default.handlebars->31->1166",
6026
"default.handlebars->31->140",
6027
"default.handlebars->31->145"
6028
]
@@ -6097,7 +6104,7 @@
6104
"zh-chs": "自动删除",
6105
"zh-cht": "自動刪除",
6106
"xloc": [
6100
- "default.handlebars->31->1457"
6107
+ "default.handlebars->31->1460"
6108
]
6109
},
6110
{
@@ -6141,7 +6148,7 @@
6148
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6149
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6150
"xloc": [
6144
- "default.handlebars->31->1829"
6151
+ "default.handlebars->31->1832"
6152
]
6153
},
6154
{
@@ -6181,7 +6188,7 @@
6188
"zh-chs": "可用內存",
6189
"zh-cht": "可用內存",
6190
"xloc": [
6184
- "default.handlebars->31->2276"
6191
+ "default.handlebars->31->2279"
6192
]
6193
},
6194
{
@@ -6201,7 +6208,7 @@
6208
"zh-chs": "阿塞拜疆文",
6209
"zh-cht": "阿塞拜疆文",
6210
"xloc": [
6204
- "default.handlebars->31->1198"
6211
+ "default.handlebars->31->1201"
6212
]
6213
},
6214
{
@@ -6209,9 +6216,9 @@
6216
"nl": "Uitgeschakeld",
6217
"fr": "Désactivé",
6218
"xloc": [
6212
- "default-mobile.handlebars->11->409",
6213
- "default-mobile.handlebars->11->413",
6214
- "default-mobile.handlebars->11->417",
6219
+ "default-mobile.handlebars->11->411",
6220
+ "default-mobile.handlebars->11->415",
6221
+ "default-mobile.handlebars->11->419",
6222
"default.handlebars->31->637",
6223
"default.handlebars->31->641",
6224
"default.handlebars->31->645"
@@ -6234,7 +6241,7 @@
6241
"zh-chs": "的BIOS",
6242
"zh-cht": "的BIOS",
6243
"xloc": [
6237
- "default-mobile.handlebars->11->471",
6244
+ "default-mobile.handlebars->11->473",
6245
"default.handlebars->31->1110"
6246
]
6247
},
@@ -6318,7 +6325,7 @@
6325
"fr": "Backspace",
6326
"nl": "BackSpace",
6327
"xloc": [
6321
- "default-mobile.handlebars->11->337",
6328
+ "default-mobile.handlebars->11->339",
6329
"default.handlebars->31->930"
6330
]
6331
},
@@ -6359,8 +6366,8 @@
6366
"zh-chs": "背景与互动",
6367
"zh-cht": "背景與互動",
6368
"xloc": [
6362
- "default.handlebars->31->1641",
6363
- "default.handlebars->31->1648",
6369
+ "default.handlebars->31->1644",
6370
+ "default.handlebars->31->1651",
6371
"default.handlebars->31->363",
6372
"default.handlebars->31->377"
6373
]
@@ -6382,8 +6389,8 @@
6389
"zh-chs": "仅背景",
6390
"zh-cht": "僅背景",
6391
"xloc": [
6385
- "default.handlebars->31->1642",
6386
- "default.handlebars->31->1649",
6392
+ "default.handlebars->31->1645",
6393
+ "default.handlebars->31->1652",
6394
"default.handlebars->31->364",
6395
"default.handlebars->31->378",
6396
"default.handlebars->31->393"
@@ -6427,7 +6434,7 @@
6434
"zh-chs": "备用码",
6435
"zh-cht": "備用碼",
6436
"xloc": [
6430
- "default.handlebars->31->2096"
6437
+ "default.handlebars->31->2099"
6438
]
6439
},
6440
{
@@ -6447,7 +6454,7 @@
6454
"zh-chs": "错误的签名",
6455
"zh-cht": "錯誤的簽名",
6456
"xloc": [
6450
- "default.handlebars->31->2258"
6457
+ "default.handlebars->31->2261"
6458
]
6459
},
6460
{
@@ -6467,7 +6474,7 @@
6474
"zh-chs": "错误的网络证书",
6475
"zh-cht": "錯誤的網絡憑證",
6476
"xloc": [
6470
- "default.handlebars->31->2257"
6477
+ "default.handlebars->31->2260"
6478
]
6479
},
6480
{
@@ -6487,7 +6494,7 @@
6494
"zh-chs": "巴斯克",
6495
"zh-cht": "巴斯克",
6496
"xloc": [
6490
- "default.handlebars->31->1199"
6497
+ "default.handlebars->31->1202"
6498
]
6499
},
6500
{
@@ -6547,7 +6554,7 @@
6554
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6555
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6556
"xloc": [
6550
- "default.handlebars->31->1828"
6557
+ "default.handlebars->31->1831"
6558
]
6559
},
6560
{
@@ -6567,7 +6574,7 @@
6574
"zh-chs": "白俄罗斯文",
6575
"zh-cht": "白俄羅斯文",
6576
"xloc": [
6570
- "default.handlebars->31->1201"
6577
+ "default.handlebars->31->1204"
6578
]
6579
},
6580
{
@@ -6587,7 +6594,7 @@
6594
"zh-chs": "孟加拉",
6595
"zh-cht": "孟加拉",
6596
"xloc": [
6590
- "default.handlebars->31->1202"
6597
+ "default.handlebars->31->1205"
6598
]
6599
},
6600
{
@@ -6618,7 +6625,7 @@
6625
"nl": "Bootloader",
6626
"fr": "Chargeur de démarrage",
6627
"xloc": [
6621
- "default-mobile.handlebars->11->435",
6628
+ "default-mobile.handlebars->11->437",
6629
"default.handlebars->31->1064"
6630
]
6631
},
@@ -6639,7 +6646,7 @@
6646
"zh-chs": "波斯尼亚文",
6647
"zh-cht": "波斯尼亞文",
6648
"xloc": [
6642
- "default.handlebars->31->1203"
6649
+ "default.handlebars->31->1206"
6650
]
6651
},
6652
{
@@ -6659,7 +6666,7 @@
6666
"zh-chs": "布列塔尼",
6667
"zh-cht": "布列塔尼",
6668
"xloc": [
6662
- "default.handlebars->31->1204"
6669
+ "default.handlebars->31->1207"
6670
]
6671
},
6672
{
@@ -6679,7 +6686,7 @@
6686
"zh-chs": "广播",
6687
"zh-cht": "廣播",
6688
"xloc": [
6682
- "default.handlebars->31->2010",
6689
+ "default.handlebars->31->2013",
6690
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6691
]
6692
},
@@ -6700,7 +6707,7 @@
6707
"zh-chs": "广播消息",
6708
"zh-cht": "廣播消息",
6709
"xloc": [
6703
- "default.handlebars->31->1931"
6710
+ "default.handlebars->31->1934"
6711
]
6712
},
6713
{
@@ -6720,7 +6727,7 @@
6727
"zh-chs": "向所有连接的用户广播消息。",
6728
"zh-cht": "向所有連接的用戶廣播消息。",
6729
"xloc": [
6723
- "default.handlebars->31->1926"
6730
+ "default.handlebars->31->1929"
6731
]
6732
},
6733
{
@@ -6749,7 +6756,7 @@
6756
"zh-chs": "保加利亚文",
6757
"zh-cht": "保加利亞文",
6758
"xloc": [
6752
- "default.handlebars->31->1200"
6759
+ "default.handlebars->31->1203"
6760
]
6761
},
6762
{
@@ -6769,7 +6776,7 @@
6776
"zh-chs": "缅甸文",
6777
"zh-cht": "緬甸文",
6778
"xloc": [
6772
- "default.handlebars->31->1205"
6779
+ "default.handlebars->31->1208"
6780
]
6781
},
6782
{
@@ -6810,7 +6817,7 @@
6817
"zh-chs": "CCM模式",
6818
"zh-cht": "CCM模式",
6819
"xloc": [
6813
- "default.handlebars->31->1517"
6820
+ "default.handlebars->31->1520"
6821
]
6822
},
6823
{
@@ -6852,7 +6859,7 @@
6859
"zh-chs": "CIRA服务器",
6860
"zh-cht": "CIRA伺服器",
6861
"xloc": [
6855
- "default.handlebars->31->2315"
6862
+ "default.handlebars->31->2318"
6863
]
6864
},
6865
{
@@ -6872,7 +6879,7 @@
6879
"zh-chs": "CIRA服务器命令",
6880
"zh-cht": "CIRA伺服器指令",
6881
"xloc": [
6875
- "default.handlebars->31->2316"
6882
+ "default.handlebars->31->2319"
6883
]
6884
},
6885
{
@@ -6892,7 +6899,7 @@
6899
"zh-chs": "CIRA设置",
6900
"zh-cht": "CIRA設置",
6901
"xloc": [
6895
- "default.handlebars->31->1525"
6902
+ "default.handlebars->31->1528"
6903
]
6904
},
6905
{
@@ -6912,7 +6919,7 @@
6919
"zh-chs": "CPU",
6920
"zh-cht": "CPU",
6921
"xloc": [
6915
- "default-mobile.handlebars->11->477",
6922
+ "default-mobile.handlebars->11->479",
6923
"default.handlebars->31->1116"
6924
]
6925
},
@@ -6933,7 +6940,7 @@
6940
"zh-chs": "CPU负载",
6941
"zh-cht": "CPU負載",
6942
"xloc": [
6936
- "default.handlebars->31->2272"
6943
+ "default.handlebars->31->2275"
6944
]
6945
},
6946
{
@@ -6953,7 +6960,7 @@
6960
"zh-chs": "最近15分钟的CPU负载",
6961
"zh-cht": "最近15分鐘的CPU負載",
6962
"xloc": [
6956
- "default.handlebars->31->2275"
6963
+ "default.handlebars->31->2278"
6964
]
6965
},
6966
{
@@ -6973,7 +6980,7 @@
6980
"zh-chs": "最近5分钟的CPU负载",
6981
"zh-cht": "最近5分鐘的CPU負載",
6982
"xloc": [
6976
- "default.handlebars->31->2274"
6983
+ "default.handlebars->31->2277"
6984
]
6985
},
6986
{
@@ -6993,7 +7000,7 @@
7000
"zh-chs": "最近一分钟的CPU负载",
7001
"zh-cht": "最近一分鐘的CPU負載",
7002
"xloc": [
6996
- "default.handlebars->31->2273"
7003
+ "default.handlebars->31->2276"
7004
]
7005
},
7006
{
@@ -7038,7 +7045,7 @@
7045
"zh-chs": "CSV",
7046
"zh-cht": "CSV",
7047
"xloc": [
7041
- "default.handlebars->31->1849"
7048
+ "default.handlebars->31->1852"
7049
]
7050
},
7051
{
@@ -7058,8 +7065,8 @@
7065
"zh-chs": "CSV格式",
7066
"zh-cht": "CSV格式",
7067
"xloc": [
7061
- "default.handlebars->31->1853",
7062
- "default.handlebars->31->1918",
7068
+ "default.handlebars->31->1856",
7069
+ "default.handlebars->31->1921",
7070
"default.handlebars->31->523"
7071
]
7072
},
@@ -7097,7 +7104,7 @@
7104
"zh-chs": "呼叫错误",
7105
"zh-cht": "呼叫錯誤",
7106
"xloc": [
7100
- "default.handlebars->31->2332"
7107
+ "default.handlebars->31->2335"
7108
]
7109
},
7110
{
@@ -7120,8 +7127,8 @@
7127
"agent-translations.json",
7128
"default-mobile.handlebars->11->104",
7129
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7123
- "default.handlebars->31->1435",
7124
- "default.handlebars->31->2321",
7130
+ "default.handlebars->31->1438",
7131
+ "default.handlebars->31->2324",
7132
"default.handlebars->container->dialog->idx_dlgButtonBar",
7133
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7134
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7149,9 +7156,9 @@
7156
"zh-chs": "容量",
7157
"zh-cht": "容量",
7158
"xloc": [
7152
- "default-mobile.handlebars->11->482",
7153
- "default-mobile.handlebars->11->487",
7159
+ "default-mobile.handlebars->11->484",
7160
"default-mobile.handlebars->11->489",
7161
+ "default-mobile.handlebars->11->491",
7162
"default.handlebars->31->1121",
7163
"default.handlebars->31->1126",
7164
"default.handlebars->31->1128"
@@ -7174,7 +7181,7 @@
7181
"zh-chs": "容量/速度",
7182
"zh-cht": "容量/速度",
7183
"xloc": [
7177
- "default-mobile.handlebars->11->480",
7184
+ "default-mobile.handlebars->11->482",
7185
"default.handlebars->31->1119"
7186
]
7187
},
@@ -7195,7 +7202,7 @@
7202
"zh-chs": "加泰罗尼亚文",
7203
"zh-cht": "加泰羅尼亞文",
7204
"xloc": [
7198
- "default.handlebars->31->1206"
7205
+ "default.handlebars->31->1209"
7206
]
7207
},
7208
{
@@ -7235,7 +7242,7 @@
7242
"zh-chs": "查莫罗",
7243
"zh-cht": "查莫羅",
7244
"xloc": [
7238
- "default.handlebars->31->1207"
7245
+ "default.handlebars->31->1210"
7246
]
7247
},
7248
{
@@ -7277,7 +7284,7 @@
7284
"zh-chs": "更改{0}的电邮",
7285
"zh-cht": "更改{0}的電郵",
7286
"xloc": [
7280
- "default.handlebars->31->2128"
7287
+ "default.handlebars->31->2131"
7288
]
7289
},
7290
{
@@ -7320,8 +7327,8 @@
7327
"zh-cht": "更改密碼",
7328
"xloc": [
7329
"default-mobile.handlebars->11->112",
7323
- "default.handlebars->31->1402",
7324
- "default.handlebars->31->2113"
7330
+ "default.handlebars->31->1405",
7331
+ "default.handlebars->31->2116"
7332
]
7333
},
7334
{
@@ -7341,7 +7348,7 @@
7348
"zh-chs": "更改{0}的密码",
7349
"zh-cht": "更改{0}的密碼",
7350
"xloc": [
7344
- "default.handlebars->31->2137"
7351
+ "default.handlebars->31->2140"
7352
]
7353
},
7354
{
@@ -7361,7 +7368,7 @@
7368
"zh-chs": "更改{0}的真实名称",
7369
"zh-cht": "更改{0}的真實名稱",
7370
"xloc": [
7364
- "default.handlebars->31->2123"
7371
+ "default.handlebars->31->2126"
7372
]
7373
},
7374
{
@@ -7385,6 +7392,12 @@
7392
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->accountChangeEmailAddressSpan->0"
7393
]
7394
},
7395
+ {
7396
+ "en": "Change image",
7397
+ "xloc": [
7398
+ "default.handlebars->container->column_l->p2->p2info->p2AccountImageFrame->3->0"
7399
+ ]
7400
+ },
7401
{
7402
"cs": "Změnit heslo",
7403
"de": "Passwort ändern",
@@ -7443,7 +7456,7 @@
7456
"zh-chs": "更改该用户的密码",
7457
"zh-cht": "更改該用戶的密碼",
7458
"xloc": [
7446
- "default.handlebars->31->2112"
7459
+ "default.handlebars->31->2115"
7460
]
7461
},
7462
{
@@ -7483,7 +7496,7 @@
7496
"zh-chs": "在此处更改您的帐户电邮地址。",
7497
"zh-cht": "在此處更改你的帳戶電郵地址。",
7498
"xloc": [
7486
- "default.handlebars->31->1389"
7499
+ "default.handlebars->31->1392"
7500
]
7501
},
7502
{
@@ -7503,7 +7516,7 @@
7516
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7517
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7518
"xloc": [
7506
- "default.handlebars->31->1395"
7519
+ "default.handlebars->31->1398"
7520
]
7521
},
7522
{
@@ -7523,7 +7536,7 @@
7536
"zh-chs": "更改帐户凭据",
7537
"zh-cht": "帳戶憑證已更改",
7538
"xloc": [
7526
- "default.handlebars->31->1800"
7539
+ "default.handlebars->31->1803"
7540
]
7541
},
7542
{
@@ -7543,7 +7556,7 @@
7556
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7557
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7558
"xloc": [
7546
- "default.handlebars->31->1784"
7559
+ "default.handlebars->31->1787"
7560
]
7561
},
7562
{
@@ -7563,7 +7576,7 @@
7576
"zh-chs": "语言从{1}更改为{2}",
7577
"zh-cht": "語言從{1}更改為{2}",
7578
"xloc": [
7566
- "default.handlebars->31->1728"
7579
+ "default.handlebars->31->1731"
7580
]
7581
},
7582
{
@@ -7583,8 +7596,8 @@
7596
"zh-chs": "已更改{0}的用户设备权限",
7597
"zh-cht": "已更改{0}的用戶設備權限",
7598
"xloc": [
7586
- "default.handlebars->31->1786",
7587
- "default.handlebars->31->1807"
7599
+ "default.handlebars->31->1789",
7600
+ "default.handlebars->31->1810"
7601
]
7602
},
7603
{
@@ -7604,7 +7617,7 @@
7617
"zh-chs": "更改语言将需要刷新页面。",
7618
"zh-cht": "更改語言將需要刷新頁面。",
7619
"xloc": [
7607
- "default.handlebars->31->1374"
7620
+ "default.handlebars->31->1377"
7621
]
7622
},
7623
{
@@ -7624,9 +7637,9 @@
7637
"zh-chs": "聊天",
7638
"zh-cht": "聊天",
7639
"xloc": [
7627
- "default.handlebars->31->1870",
7628
- "default.handlebars->31->2108",
7629
- "default.handlebars->31->2109",
7640
+ "default.handlebars->31->1873",
7641
+ "default.handlebars->31->2111",
7642
+ "default.handlebars->31->2112",
7643
"default.handlebars->31->685",
7644
"default.handlebars->31->757",
7645
"default.handlebars->31->779"
@@ -7649,10 +7662,10 @@
7662
"zh-chs": "聊天并通知",
7663
"zh-cht": "聊天並通知",
7664
"xloc": [
7652
- "default-mobile.handlebars->11->549",
7653
- "default-mobile.handlebars->11->569",
7654
- "default.handlebars->31->1587",
7655
- "default.handlebars->31->1623"
7665
+ "default-mobile.handlebars->11->551",
7666
+ "default-mobile.handlebars->11->571",
7667
+ "default.handlebars->31->1590",
7668
+ "default.handlebars->31->1626"
7669
]
7670
},
7671
{
@@ -7660,8 +7673,8 @@
7673
"nl": "Chatverzoek, klik hier om te accepteren.",
7674
"fr": "Demande de discussion, cliquez ici pour accepter.",
7675
"xloc": [
7663
- "default-mobile.handlebars->11->601",
7664
- "default.handlebars->31->2227"
7676
+ "default-mobile.handlebars->11->603",
7677
+ "default.handlebars->31->2230"
7678
]
7679
},
7680
{
@@ -7701,7 +7714,7 @@
7714
"zh-chs": "车臣",
7715
"zh-cht": "車臣",
7716
"xloc": [
7704
- "default.handlebars->31->1208"
7717
+ "default.handlebars->31->1211"
7718
]
7719
},
7720
{
@@ -7801,8 +7814,8 @@
7814
"zh-chs": "检查...",
7815
"zh-cht": "檢查...",
7816
"xloc": [
7804
- "default.handlebars->31->1174",
7805
- "default.handlebars->31->2326"
7817
+ "default.handlebars->31->1177",
7818
+ "default.handlebars->31->2329"
7819
]
7820
},
7821
{
@@ -7822,7 +7835,7 @@
7835
"zh-chs": "中文",
7836
"zh-cht": "中文",
7837
"xloc": [
7825
- "default.handlebars->31->1209"
7838
+ "default.handlebars->31->1212"
7839
]
7840
},
7841
{
@@ -7842,7 +7855,7 @@
7855
"zh-chs": "中文(香港)",
7856
"zh-cht": "中文(香港)",
7857
"xloc": [
7845
- "default.handlebars->31->1210"
7858
+ "default.handlebars->31->1213"
7859
]
7860
},
7861
{
@@ -7862,7 +7875,7 @@
7875
"zh-chs": "中文(中国)",
7876
"zh-cht": "中文(中國)",
7877
"xloc": [
7865
- "default.handlebars->31->1211"
7878
+ "default.handlebars->31->1214"
7879
]
7880
},
7881
{
@@ -7882,7 +7895,7 @@
7895
"zh-chs": "简体中文",
7896
"zh-cht": "簡體中文",
7897
"xloc": [
7885
- "default.handlebars->31->1371"
7898
+ "default.handlebars->31->1374"
7899
]
7900
},
7901
{
@@ -7902,7 +7915,7 @@
7915
"zh-chs": "中文(新加坡)",
7916
"zh-cht": "中文(新加坡)",
7917
"xloc": [
7905
- "default.handlebars->31->1212"
7918
+ "default.handlebars->31->1215"
7919
]
7920
},
7921
{
@@ -7922,7 +7935,7 @@
7935
"zh-chs": "中文(台湾)",
7936
"zh-cht": "中文(台灣)",
7937
"xloc": [
7925
- "default.handlebars->31->1213"
7938
+ "default.handlebars->31->1216"
7939
]
7940
},
7941
{
@@ -7942,7 +7955,7 @@
7955
"zh-chs": "繁体中文",
7956
"zh-cht": "繁體中文",
7957
"xloc": [
7945
- "default.handlebars->31->1372"
7958
+ "default.handlebars->31->1375"
7959
]
7960
},
7961
{
@@ -7983,7 +7996,7 @@
7996
"zh-chs": "楚瓦什",
7997
"zh-cht": "楚瓦什",
7998
"xloc": [
7986
- "default.handlebars->31->1214"
7999
+ "default.handlebars->31->1217"
8000
]
8001
},
8002
{
@@ -8021,17 +8034,17 @@
8034
"zh-cht": "清除",
8035
"xloc": [
8036
"default-mobile.handlebars->11->154",
8024
- "default-mobile.handlebars->11->389",
8037
"default-mobile.handlebars->11->391",
8038
"default-mobile.handlebars->11->393",
8039
"default-mobile.handlebars->11->395",
8040
+ "default-mobile.handlebars->11->397",
8041
"default-mobile.handlebars->11->70",
8042
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8043
"default.handlebars->31->1028",
8044
"default.handlebars->31->1030",
8045
"default.handlebars->31->1032",
8046
"default.handlebars->31->1034",
8034
- "default.handlebars->31->1722",
8047
+ "default.handlebars->31->1725",
8048
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8049
"default.handlebars->container->column_l->p41->3->1",
8050
"messenger.handlebars->xbottom->1->1->0->5"
@@ -8089,8 +8102,8 @@
8102
"zh-chs": "全部清除",
8103
"zh-cht": "全部清除",
8104
"xloc": [
8092
- "default-mobile.handlebars->11->584",
8093
- "default.handlebars->31->2210"
8105
+ "default-mobile.handlebars->11->586",
8106
+ "default.handlebars->31->2213"
8107
]
8108
},
8109
{
@@ -8131,7 +8144,7 @@
8144
"zh-chs": "清除核心",
8145
"zh-cht": "清除核心",
8146
"xloc": [
8134
- "default-mobile.handlebars->11->503",
8147
+ "default-mobile.handlebars->11->505",
8148
"default.handlebars->31->1143"
8149
]
8150
},
@@ -8172,8 +8185,8 @@
8185
"zh-chs": "清除此通知",
8186
"zh-cht": "清除此通知",
8187
"xloc": [
8175
- "default-mobile.handlebars->11->583",
8176
- "default.handlebars->31->2209"
8188
+ "default-mobile.handlebars->11->585",
8189
+ "default.handlebars->31->2212"
8190
]
8191
},
8192
{
@@ -8233,8 +8246,8 @@
8246
"zh-chs": "单击此处编辑设备组名称",
8247
"zh-cht": "單擊此處編輯裝置群名稱",
8248
"xloc": [
8236
- "default.handlebars->31->1446",
8237
- "default.handlebars->31->1667"
8249
+ "default.handlebars->31->1449",
8250
+ "default.handlebars->31->1670"
8251
]
8252
},
8253
{
@@ -8274,7 +8287,7 @@
8287
"zh-chs": "单击此处编辑用户组名称",
8288
"zh-cht": "單擊此處編輯用戶群名稱",
8289
"xloc": [
8277
- "default.handlebars->31->1987"
8290
+ "default.handlebars->31->1990"
8291
]
8292
},
8293
{
@@ -8345,7 +8358,7 @@
8358
"zh-cht": "單擊確定將驗證電郵發送到:",
8359
"xloc": [
8360
"default-mobile.handlebars->11->97",
8348
- "default.handlebars->31->1386"
8361
+ "default.handlebars->31->1389"
8362
]
8363
},
8364
{
@@ -8406,7 +8419,7 @@
8419
"zh-chs": "客户端控制模式(CCM)",
8420
"zh-cht": "客戶端控制模式(CCM)",
8421
"xloc": [
8409
- "default-mobile.handlebars->11->458",
8422
+ "default-mobile.handlebars->11->460",
8423
"default.handlebars->31->1097"
8424
]
8425
},
@@ -8427,7 +8440,7 @@
8440
"zh-chs": "客户编号",
8441
"zh-cht": "客戶編號",
8442
"xloc": [
8430
- "default.handlebars->31->1428"
8443
+ "default.handlebars->31->1431"
8444
]
8445
},
8446
{
@@ -8447,7 +8460,7 @@
8460
"zh-chs": "客户端启动的远程访问",
8461
"zh-cht": "客戶端啟動的遠程訪問",
8462
"xloc": [
8450
- "default.handlebars->31->1524"
8463
+ "default.handlebars->31->1527"
8464
]
8465
},
8466
{
@@ -8467,7 +8480,7 @@
8480
"zh-chs": "客户机密",
8481
"zh-cht": "客戶機密",
8482
"xloc": [
8470
- "default.handlebars->31->1429"
8483
+ "default.handlebars->31->1432"
8484
]
8485
},
8486
{
@@ -8512,7 +8525,7 @@
8525
"default.handlebars->31->1005",
8526
"default.handlebars->31->152",
8527
"default.handlebars->31->160",
8515
- "default.handlebars->31->2320",
8528
+ "default.handlebars->31->2323",
8529
"default.handlebars->31->972"
8530
]
8531
},
@@ -8533,7 +8546,7 @@
8546
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8547
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8548
"xloc": [
8536
- "default.handlebars->31->1733"
8549
+ "default.handlebars->31->1736"
8550
]
8551
},
8552
{
@@ -8655,8 +8668,8 @@
8668
"zh-chs": "指令",
8669
"zh-cht": "指令",
8670
"xloc": [
8658
- "default-mobile.handlebars->11->571",
8659
- "default.handlebars->31->1625",
8671
+ "default-mobile.handlebars->11->573",
8672
+ "default.handlebars->31->1628",
8673
"default.handlebars->31->759",
8674
"default.handlebars->31->781"
8675
]
@@ -8678,8 +8691,8 @@
8691
"zh-chs": "通用设备组",
8692
"zh-cht": "通用裝置群",
8693
"xloc": [
8681
- "default.handlebars->31->2018",
8682
- "default.handlebars->31->2142"
8694
+ "default.handlebars->31->2021",
8695
+ "default.handlebars->31->2145"
8696
]
8697
},
8698
{
@@ -8699,8 +8712,8 @@
8712
"zh-chs": "通用设备",
8713
"zh-cht": "通用裝置",
8714
"xloc": [
8702
- "default.handlebars->31->2024",
8703
- "default.handlebars->31->2154"
8715
+ "default.handlebars->31->2027",
8716
+ "default.handlebars->31->2157"
8717
]
8718
},
8719
{
@@ -8708,7 +8721,7 @@
8721
"nl": "Compileer tijd",
8722
"fr": "Temps de compilation",
8723
"xloc": [
8711
- "default-mobile.handlebars->11->431",
8724
+ "default-mobile.handlebars->11->433",
8725
"default.handlebars->31->1060"
8726
]
8727
},
@@ -8749,13 +8762,13 @@
8762
"zh-chs": "确认",
8763
"zh-cht": "確認",
8764
"xloc": [
8752
- "default-mobile.handlebars->11->321",
8753
- "default-mobile.handlebars->11->525",
8754
- "default.handlebars->31->1535",
8755
- "default.handlebars->31->1898",
8756
- "default.handlebars->31->1977",
8757
- "default.handlebars->31->2038",
8758
- "default.handlebars->31->2140",
8765
+ "default-mobile.handlebars->11->323",
8766
+ "default-mobile.handlebars->11->527",
8767
+ "default.handlebars->31->1538",
8768
+ "default.handlebars->31->1901",
8769
+ "default.handlebars->31->1980",
8770
+ "default.handlebars->31->2041",
8771
+ "default.handlebars->31->2143",
8772
"default.handlebars->31->487",
8773
"default.handlebars->31->858",
8774
"default.handlebars->31->867"
@@ -8778,7 +8791,7 @@
8791
"zh-chs": "确认将1个副本复制到此位置?",
8792
"zh-cht": "確認將1個副本複製到此位置?",
8793
"xloc": [
8781
- "default-mobile.handlebars->11->384",
8794
+ "default-mobile.handlebars->11->386",
8795
"default.handlebars->31->1023"
8796
]
8797
},
@@ -8819,7 +8832,7 @@
8832
"zh-chs": "确认{0}个条目的副本到此位置?",
8833
"zh-cht": "確認{0}個條目的副本到此位置?",
8834
"xloc": [
8822
- "default-mobile.handlebars->11->383"
8835
+ "default-mobile.handlebars->11->385"
8836
]
8837
},
8838
{
@@ -8839,7 +8852,7 @@
8852
"zh-chs": "确认删除选定的帐户?",
8853
"zh-cht": "確認刪除所選帳戶?",
8854
"xloc": [
8842
- "default.handlebars->31->1897"
8855
+ "default.handlebars->31->1900"
8856
]
8857
},
8858
{
@@ -8879,7 +8892,7 @@
8892
"zh-chs": "确认删除选定的用户组?",
8893
"zh-cht": "確認刪除所選用戶群?",
8894
"xloc": [
8882
- "default.handlebars->31->1976"
8895
+ "default.handlebars->31->1979"
8896
]
8897
},
8898
{
@@ -8899,7 +8912,7 @@
8912
"zh-chs": "确认删除用户{0}?",
8913
"zh-cht": "確認刪除用戶{0}?",
8914
"xloc": [
8902
- "default.handlebars->31->2139"
8915
+ "default.handlebars->31->2142"
8916
]
8917
},
8918
{
@@ -8919,7 +8932,7 @@
8932
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8933
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8934
"xloc": [
8922
- "default.handlebars->31->2041"
8935
+ "default.handlebars->31->2044"
8936
]
8937
},
8938
{
@@ -8939,7 +8952,7 @@
8952
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8953
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8954
"xloc": [
8942
- "default.handlebars->31->2171"
8955
+ "default.handlebars->31->2174"
8956
]
8957
},
8958
{
@@ -8959,7 +8972,7 @@
8972
"zh-chs": "确认将1个条目移动到此位置?",
8973
"zh-cht": "確認將1個條目移動到此位置?",
8974
"xloc": [
8962
- "default-mobile.handlebars->11->386",
8975
+ "default-mobile.handlebars->11->388",
8976
"default.handlebars->31->1025"
8977
]
8978
},
@@ -9000,7 +9013,7 @@
9013
"zh-chs": "确认将{0}个条目移到该位置?",
9014
"zh-cht": "確認將{0}個條目移到該位置?",
9015
"xloc": [
9003
- "default-mobile.handlebars->11->385"
9016
+ "default-mobile.handlebars->11->387"
9017
]
9018
},
9019
{
@@ -9020,7 +9033,7 @@
9033
"zh-chs": "确认覆盖?",
9034
"zh-cht": "確認覆蓋?",
9035
"xloc": [
9023
- "default.handlebars->31->1716"
9036
+ "default.handlebars->31->1719"
9037
]
9038
},
9039
{
@@ -9040,8 +9053,8 @@
9053
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9054
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9055
"xloc": [
9043
- "default.handlebars->31->2031",
9044
- "default.handlebars->31->2162"
9056
+ "default.handlebars->31->2034",
9057
+ "default.handlebars->31->2165"
9058
]
9059
},
9060
{
@@ -9061,8 +9074,8 @@
9074
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9075
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9076
"xloc": [
9064
- "default.handlebars->31->2033",
9065
- "default.handlebars->31->2175"
9077
+ "default.handlebars->31->2036",
9078
+ "default.handlebars->31->2178"
9079
]
9080
},
9081
{
@@ -9082,7 +9095,7 @@
9095
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9096
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9097
"xloc": [
9085
- "default.handlebars->31->2164"
9098
+ "default.handlebars->31->2167"
9099
]
9100
},
9101
{
@@ -9102,7 +9115,7 @@
9115
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9116
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9117
"xloc": [
9105
- "default.handlebars->31->2167"
9118
+ "default.handlebars->31->2170"
9119
]
9120
},
9121
{
@@ -9122,8 +9135,8 @@
9135
"zh-chs": "确认删除访问权限?",
9136
"zh-cht": "確認刪除訪問權限?",
9137
"xloc": [
9125
- "default.handlebars->31->2165",
9126
- "default.handlebars->31->2168"
9138
+ "default.handlebars->31->2168",
9139
+ "default.handlebars->31->2171"
9140
]
9141
},
9142
{
@@ -9144,7 +9157,7 @@
9157
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9158
"xloc": [
9159
"default-mobile.handlebars->11->96",
9147
- "default.handlebars->31->1164"
9160
+ "default.handlebars->31->1167"
9161
]
9162
},
9163
{
@@ -9181,7 +9194,7 @@
9194
"zh-chs": "确认删除设备共享“{0}”?",
9195
"zh-cht": "確認刪除設備共享“{0}”?",
9196
"xloc": [
9184
- "default.handlebars->31->2160"
9197
+ "default.handlebars->31->2163"
9198
]
9199
},
9200
{
@@ -9235,7 +9248,7 @@
9248
"zh-chs": "确认删除用户“ {0} ”的权限?",
9249
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9250
"xloc": [
9238
- "default.handlebars->31->1634"
9251
+ "default.handlebars->31->1637"
9252
]
9253
},
9254
{
@@ -9255,7 +9268,7 @@
9268
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9269
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9270
"xloc": [
9258
- "default.handlebars->31->1636"
9271
+ "default.handlebars->31->1639"
9272
]
9273
},
9274
{
@@ -9292,7 +9305,7 @@
9305
"zh-chs": "确认删除用户{0}?",
9306
"zh-cht": "確認刪除用戶{0}?",
9307
"xloc": [
9295
- "default-mobile.handlebars->11->580"
9308
+ "default-mobile.handlebars->11->582"
9309
]
9310
},
9311
{
@@ -9313,7 +9326,7 @@
9326
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9327
"xloc": [
9328
"default-mobile.handlebars->11->149",
9316
- "default.handlebars->31->1717"
9329
+ "default.handlebars->31->1720"
9330
]
9331
},
9332
{
@@ -9334,10 +9347,10 @@
9347
"zh-cht": "連接",
9348
"xloc": [
9349
"agent-translations.json",
9337
- "default-mobile.handlebars->11->366",
9350
+ "default-mobile.handlebars->11->368",
9351
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9352
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9340
- "default.handlebars->31->1474",
9353
+ "default.handlebars->31->1477",
9354
"default.handlebars->31->995",
9355
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9356
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -9386,7 +9399,7 @@
9399
"zh-chs": "连接到服务器",
9400
"zh-cht": "連接到伺服器",
9401
"xloc": [
9389
- "default.handlebars->31->1528"
9402
+ "default.handlebars->31->1531"
9403
]
9404
},
9405
{
@@ -9508,7 +9521,7 @@
9521
"zh-chs": "已连接的英特尔®AMT",
9522
"zh-cht": "已連接的Intel® AMT",
9523
"xloc": [
9511
- "default.handlebars->31->2263"
9524
+ "default.handlebars->31->2266"
9525
]
9526
},
9527
{
@@ -9528,7 +9541,7 @@
9541
"zh-chs": "已连接的用户",
9542
"zh-cht": "已连接的用户",
9543
"xloc": [
9531
- "default.handlebars->31->2268"
9544
+ "default.handlebars->31->2271"
9545
]
9546
},
9547
{
@@ -9548,7 +9561,7 @@
9561
"zh-chs": "现在已连接",
9562
"zh-cht": "現在已連接",
9563
"xloc": [
9551
- "default-mobile.handlebars->11->426",
9564
+ "default-mobile.handlebars->11->428",
9565
"default.handlebars->31->1055"
9566
]
9567
},
@@ -9590,7 +9603,7 @@
9603
"zh-cht": "正在連線...",
9604
"xloc": [
9605
"default-mobile.handlebars->11->2",
9593
- "default-mobile.handlebars->11->402",
9606
+ "default-mobile.handlebars->11->404",
9607
"default-mobile.handlebars->11->48",
9608
"default.handlebars->31->1046",
9609
"default.handlebars->31->253",
@@ -9619,7 +9632,7 @@
9632
"zh-chs": "连接数量",
9633
"zh-cht": "連接數量",
9634
"xloc": [
9622
- "default.handlebars->31->2282"
9635
+ "default.handlebars->31->2285"
9636
]
9637
},
9638
{
@@ -9639,7 +9652,7 @@
9652
"zh-chs": "连接转发器",
9653
"zh-cht": "連接轉發器",
9654
"xloc": [
9642
- "default.handlebars->31->2314"
9655
+ "default.handlebars->31->2317"
9656
]
9657
},
9658
{
@@ -9700,7 +9713,7 @@
9713
"zh-cht": "連接性",
9714
"xloc": [
9715
"default-mobile.handlebars->11->285",
9703
- "default.handlebars->31->1674",
9716
+ "default.handlebars->31->1677",
9717
"default.handlebars->31->244",
9718
"default.handlebars->31->673",
9719
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -9790,7 +9803,7 @@
9803
"zh-chs": "Cookie编码器",
9804
"zh-cht": "Cookie編碼器",
9805
"xloc": [
9793
- "default.handlebars->31->2298"
9806
+ "default.handlebars->31->2301"
9807
]
9808
},
9809
{
@@ -9947,8 +9960,8 @@
9960
"zh-chs": "复制连结到剪贴板",
9961
"zh-cht": "複製連結到剪貼板",
9962
"xloc": [
9950
- "default.handlebars->31->1685",
9951
- "default.handlebars->31->1704",
9963
+ "default.handlebars->31->1688",
9964
+ "default.handlebars->31->1707",
9965
"default.handlebars->31->215",
9966
"default.handlebars->31->380"
9967
]
@@ -10053,7 +10066,7 @@
10066
"zh-chs": "复制:“{0}”到“{1}”",
10067
"zh-cht": "複製:“{0}”到“{1}”",
10068
"xloc": [
10056
- "default.handlebars->31->1776"
10069
+ "default.handlebars->31->1779"
10070
]
10071
},
10072
{
@@ -10199,7 +10212,7 @@
10212
"zh-chs": "核心服务器",
10213
"zh-cht": "核心伺服器",
10214
"xloc": [
10202
- "default.handlebars->31->2297"
10215
+ "default.handlebars->31->2300"
10216
]
10217
},
10218
{
@@ -10219,7 +10232,7 @@
10232
"zh-chs": "科西嘉文",
10233
"zh-cht": "科西嘉文",
10234
"xloc": [
10222
- "default.handlebars->31->1215"
10235
+ "default.handlebars->31->1218"
10236
]
10237
},
10238
{
@@ -10239,7 +10252,7 @@
10252
"zh-chs": "创建帐号",
10253
"zh-cht": "創建帳號",
10254
"xloc": [
10242
- "default.handlebars->31->1945",
10255
+ "default.handlebars->31->1948",
10256
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10257
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10258
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10282,7 +10295,7 @@
10295
"zh-chs": "创建用户组",
10296
"zh-cht": "創建用戶群",
10297
"xloc": [
10285
- "default.handlebars->31->1984"
10298
+ "default.handlebars->31->1987"
10299
]
10300
},
10301
{
@@ -10322,7 +10335,7 @@
10335
"zh-chs": "使用以下选项创建一个新的设备组。",
10336
"zh-cht": "使用以下選項創建一個新的裝置群。",
10337
"xloc": [
10325
- "default.handlebars->31->1409"
10338
+ "default.handlebars->31->1412"
10339
]
10340
},
10341
{
@@ -10382,7 +10395,7 @@
10395
"zh-chs": "创建文件夹:“{0}”",
10396
"zh-cht": "創建文件夾:“{0}”",
10397
"xloc": [
10385
- "default.handlebars->31->1769"
10398
+ "default.handlebars->31->1772"
10399
]
10400
},
10401
{
@@ -10402,7 +10415,7 @@
10415
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10416
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10417
"xloc": [
10405
- "default.handlebars->31->1909"
10418
+ "default.handlebars->31->1912"
10419
]
10420
},
10421
{
@@ -10444,7 +10457,7 @@
10457
"zh-chs": "创建的设备组:{0}",
10458
"zh-cht": "創建的設備組:{0}",
10459
"xloc": [
10447
- "default.handlebars->31->1780"
10460
+ "default.handlebars->31->1783"
10461
]
10462
},
10463
{
@@ -10518,7 +10531,7 @@
10531
"zh-chs": "创建",
10532
"zh-cht": "創建",
10533
"xloc": [
10521
- "default.handlebars->31->2070"
10534
+ "default.handlebars->31->2073"
10535
]
10536
},
10537
{
@@ -10538,7 +10551,7 @@
10551
"zh-chs": "创建时间",
10552
"zh-cht": "創作時間",
10553
"xloc": [
10541
- "default.handlebars->31->1456"
10554
+ "default.handlebars->31->1459"
10555
]
10556
},
10557
{
@@ -10580,8 +10593,8 @@
10593
"zh-chs": "创建者",
10594
"zh-cht": "創作者",
10595
"xloc": [
10583
- "default.handlebars->31->1454",
10584
- "default.handlebars->31->1455"
10596
+ "default.handlebars->31->1457",
10597
+ "default.handlebars->31->1458"
10598
]
10599
},
10600
{
@@ -10601,7 +10614,7 @@
10614
"zh-chs": "证书",
10615
"zh-cht": "證書",
10616
"xloc": [
10604
- "default.handlebars->31->1426"
10617
+ "default.handlebars->31->1429"
10618
]
10619
},
10620
{
@@ -10621,7 +10634,7 @@
10634
"zh-chs": "克里语",
10635
"zh-cht": "克里語",
10636
"xloc": [
10624
- "default.handlebars->31->1216"
10637
+ "default.handlebars->31->1219"
10638
]
10639
},
10640
{
@@ -10641,7 +10654,7 @@
10654
"zh-chs": "克罗地亚文",
10655
"zh-cht": "克羅地亞文",
10656
"xloc": [
10644
- "default.handlebars->31->1217"
10657
+ "default.handlebars->31->1220"
10658
]
10659
},
10660
{
@@ -10703,8 +10716,8 @@
10716
"zh-chs": "Ctrl",
10717
"zh-cht": "Ctrl",
10718
"xloc": [
10706
- "default-mobile.handlebars->11->355",
10707
- "default-mobile.handlebars->11->359",
10719
+ "default-mobile.handlebars->11->357",
10720
+ "default-mobile.handlebars->11->361",
10721
"default.handlebars->31->57",
10722
"default.handlebars->31->948",
10723
"default.handlebars->31->952",
@@ -10815,8 +10828,8 @@
10828
"nl": "Huidig wachtwoord is niet correct.",
10829
"fr": "Le mot de passe actuel n'est pas correct.",
10830
"xloc": [
10818
- "default-mobile.handlebars->11->611",
10819
- "default.handlebars->31->2237"
10831
+ "default-mobile.handlebars->11->613",
10832
+ "default.handlebars->31->2240"
10833
]
10834
},
10835
{
@@ -10824,7 +10837,7 @@
10837
"nl": "Aanpassen",
10838
"fr": "Personnaliser",
10839
"xloc": [
10827
- "default-mobile.handlebars->11->336"
10840
+ "default-mobile.handlebars->11->338"
10841
]
10842
},
10843
{
@@ -10875,7 +10888,7 @@
10888
"zh-chs": "捷克文",
10889
"zh-cht": "捷克文",
10890
"xloc": [
10878
- "default.handlebars->31->1218"
10891
+ "default.handlebars->31->1221"
10892
]
10893
},
10894
{
@@ -10915,7 +10928,7 @@
10928
"zh-chs": "丹麦文",
10929
"zh-cht": "丹麥文",
10930
"xloc": [
10918
- "default.handlebars->31->1219"
10931
+ "default.handlebars->31->1222"
10932
]
10933
},
10934
{
@@ -10965,7 +10978,7 @@
10978
"zh-chs": "日期和时间",
10979
"zh-cht": "日期和時間",
10980
"xloc": [
10968
- "default.handlebars->31->1377"
10981
+ "default.handlebars->31->1380"
10982
]
10983
},
10984
{
@@ -10985,7 +10998,7 @@
10998
"zh-chs": "天",
10999
"zh-cht": "天",
11000
"xloc": [
10988
- "default-mobile.handlebars->11->311",
11001
+ "default-mobile.handlebars->11->313",
11002
"default.handlebars->31->842"
11003
]
11004
},
@@ -11006,7 +11019,7 @@
11019
"zh-chs": "停用",
11020
"zh-cht": "停用",
11021
"xloc": [
11009
- "default.handlebars->31->1507"
11022
+ "default.handlebars->31->1510"
11023
]
11024
},
11025
{
@@ -11026,7 +11039,7 @@
11039
"zh-chs": "如果设置停用CCM",
11040
"zh-cht": "如果設置停用CCM",
11041
"xloc": [
11029
- "default.handlebars->31->1519"
11042
+ "default.handlebars->31->1522"
11043
]
11044
},
11045
{
@@ -11084,10 +11097,10 @@
11097
"zh-chs": "默认",
11098
"zh-cht": "默認",
11099
"xloc": [
11087
- "default.handlebars->31->1932",
11088
- "default.handlebars->31->1980",
11089
- "default.handlebars->31->1991",
11090
- "default.handlebars->31->2059"
11100
+ "default.handlebars->31->1935",
11101
+ "default.handlebars->31->1983",
11102
+ "default.handlebars->31->1994",
11103
+ "default.handlebars->31->2062"
11104
]
11105
},
11106
{
@@ -11095,7 +11108,7 @@
11108
"fr": "Suppr",
11109
"nl": "Del",
11110
"xloc": [
11098
- "default-mobile.handlebars->11->343",
11111
+ "default-mobile.handlebars->11->345",
11112
"default.handlebars->31->936"
11113
]
11114
},
@@ -11117,11 +11130,11 @@
11130
"zh-cht": "刪除",
11131
"xloc": [
11132
"default-mobile.handlebars->11->144",
11120
- "default-mobile.handlebars->11->376",
11133
+ "default-mobile.handlebars->11->378",
11134
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11135
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11136
"default.handlebars->31->1014",
11124
- "default.handlebars->31->1711",
11137
+ "default.handlebars->31->1714",
11138
"default.handlebars->31->562",
11139
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11140
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -11151,7 +11164,7 @@
11164
"zh-cht": "刪除帳戶",
11165
"xloc": [
11166
"default-mobile.handlebars->11->106",
11154
- "default.handlebars->31->1394"
11167
+ "default.handlebars->31->1397"
11168
]
11169
},
11170
{
@@ -11171,7 +11184,7 @@
11184
"zh-chs": "删除帐户",
11185
"zh-cht": "刪除帳戶",
11186
"xloc": [
11174
- "default.handlebars->31->1899"
11187
+ "default.handlebars->31->1902"
11188
]
11189
},
11190
{
@@ -11212,10 +11225,10 @@
11225
"zh-chs": "删除群组",
11226
"zh-cht": "刪除群組",
11227
"xloc": [
11215
- "default-mobile.handlebars->11->523",
11216
- "default-mobile.handlebars->11->526",
11217
- "default.handlebars->31->1503",
11218
- "default.handlebars->31->1536"
11228
+ "default-mobile.handlebars->11->525",
11229
+ "default-mobile.handlebars->11->528",
11230
+ "default.handlebars->31->1506",
11231
+ "default.handlebars->31->1539"
11232
]
11233
},
11234
{
@@ -11235,7 +11248,7 @@
11248
"zh-chs": "删除节点",
11249
"zh-cht": "刪除節點",
11250
"xloc": [
11238
- "default-mobile.handlebars->11->319",
11251
+ "default-mobile.handlebars->11->321",
11252
"default.handlebars->31->868"
11253
]
11254
},
@@ -11276,7 +11289,7 @@
11289
"zh-chs": "删除用户",
11290
"zh-cht": "刪除用戶",
11291
"xloc": [
11279
- "default.handlebars->31->2111"
11292
+ "default.handlebars->31->2114"
11293
]
11294
},
11295
{
@@ -11296,8 +11309,8 @@
11309
"zh-chs": "删除用户群组",
11310
"zh-cht": "刪除用戶群組",
11311
"xloc": [
11299
- "default.handlebars->31->2029",
11300
- "default.handlebars->31->2039"
11312
+ "default.handlebars->31->2032",
11313
+ "default.handlebars->31->2042"
11314
]
11315
},
11316
{
@@ -11317,7 +11330,7 @@
11330
"zh-chs": "删除用户群组",
11331
"zh-cht": "刪除用戶群組",
11332
"xloc": [
11320
- "default.handlebars->31->1978"
11333
+ "default.handlebars->31->1981"
11334
]
11335
},
11336
{
@@ -11337,7 +11350,7 @@
11350
"zh-chs": "删除用户{0}",
11351
"zh-cht": "刪除用戶{0}",
11352
"xloc": [
11340
- "default.handlebars->31->2138"
11353
+ "default.handlebars->31->2141"
11354
]
11355
},
11356
{
@@ -11358,7 +11371,7 @@
11371
"zh-cht": "刪除帳戶",
11372
"xloc": [
11373
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11361
- "default.handlebars->31->1895",
11374
+ "default.handlebars->31->1898",
11375
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11376
]
11377
},
@@ -11399,7 +11412,7 @@
11412
"zh-chs": "删除群组",
11413
"zh-cht": "刪除群組",
11414
"xloc": [
11402
- "default.handlebars->31->1974"
11415
+ "default.handlebars->31->1977"
11416
]
11417
},
11418
{
@@ -11439,7 +11452,7 @@
11452
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11453
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11454
"xloc": [
11442
- "default.handlebars->31->1771"
11455
+ "default.handlebars->31->1774"
11456
]
11457
},
11458
{
@@ -11460,9 +11473,9 @@
11473
"zh-cht": "刪除所選項目?",
11474
"xloc": [
11475
"default-mobile.handlebars->11->146",
11463
- "default-mobile.handlebars->11->378",
11476
+ "default-mobile.handlebars->11->380",
11477
"default.handlebars->31->1016",
11465
- "default.handlebars->31->1713"
11478
+ "default.handlebars->31->1716"
11479
]
11480
},
11481
{
@@ -11482,7 +11495,7 @@
11495
"zh-chs": "删除用户群组{0}?",
11496
"zh-cht": "刪除用戶群組{0}?",
11497
"xloc": [
11485
- "default.handlebars->31->2037"
11498
+ "default.handlebars->31->2040"
11499
]
11500
},
11501
{
@@ -11503,9 +11516,9 @@
11516
"zh-cht": "刪除{0}個所選項目?",
11517
"xloc": [
11518
"default-mobile.handlebars->11->145",
11506
- "default-mobile.handlebars->11->377",
11519
+ "default-mobile.handlebars->11->379",
11520
"default.handlebars->31->1015",
11508
- "default.handlebars->31->1712"
11521
+ "default.handlebars->31->1715"
11522
]
11523
},
11524
{
@@ -11525,7 +11538,7 @@
11538
"zh-chs": "删除{0}?",
11539
"zh-cht": "刪除{0}?",
11540
"xloc": [
11528
- "default-mobile.handlebars->11->320"
11541
+ "default-mobile.handlebars->11->322"
11542
]
11543
},
11544
{
@@ -11545,7 +11558,7 @@
11558
"zh-chs": "删除:“{0}”",
11559
"zh-cht": "刪除:“{0}”",
11560
"xloc": [
11548
- "default.handlebars->31->1770"
11561
+ "default.handlebars->31->1773"
11562
]
11563
},
11564
{
@@ -11565,7 +11578,7 @@
11578
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11579
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11580
"xloc": [
11568
- "default.handlebars->31->1772"
11581
+ "default.handlebars->31->1775"
11582
]
11583
},
11584
{
@@ -11585,7 +11598,7 @@
11598
"zh-chs": "被拒绝",
11599
"zh-cht": "被拒絕",
11600
"xloc": [
11588
- "default-mobile.handlebars->11->330",
11601
+ "default-mobile.handlebars->11->332",
11602
"default.handlebars->31->911",
11603
"desktop.handlebars->3->7",
11604
"terminal.handlebars->3->11"
@@ -11680,19 +11693,19 @@
11693
"default-mobile.handlebars->11->123",
11694
"default-mobile.handlebars->11->255",
11695
"default-mobile.handlebars->11->256",
11683
- "default-mobile.handlebars->11->325",
11684
- "default-mobile.handlebars->11->439",
11685
- "default-mobile.handlebars->11->514",
11686
- "default-mobile.handlebars->11->528",
11696
+ "default-mobile.handlebars->11->327",
11697
+ "default-mobile.handlebars->11->441",
11698
+ "default-mobile.handlebars->11->516",
11699
+ "default-mobile.handlebars->11->530",
11700
"default.handlebars->31->1068",
11701
"default.handlebars->31->1078",
11689
- "default.handlebars->31->1414",
11690
- "default.handlebars->31->1451",
11691
- "default.handlebars->31->1538",
11692
- "default.handlebars->31->1983",
11693
- "default.handlebars->31->1993",
11694
- "default.handlebars->31->1994",
11695
- "default.handlebars->31->2035",
11702
+ "default.handlebars->31->1417",
11703
+ "default.handlebars->31->1454",
11704
+ "default.handlebars->31->1541",
11705
+ "default.handlebars->31->1986",
11706
+ "default.handlebars->31->1996",
11707
+ "default.handlebars->31->1997",
11708
+ "default.handlebars->31->2038",
11709
"default.handlebars->31->603",
11710
"default.handlebars->31->604",
11711
"default.handlebars->31->906",
@@ -11735,8 +11748,8 @@
11748
"zh-cht": "桌面",
11749
"xloc": [
11750
"default-mobile.handlebars->11->297",
11738
- "default.handlebars->31->1544",
11739
- "default.handlebars->31->2187",
11751
+ "default.handlebars->31->1547",
11752
+ "default.handlebars->31->2190",
11753
"default.handlebars->31->568",
11754
"default.handlebars->31->738",
11755
"default.handlebars->31->794",
@@ -11783,9 +11796,9 @@
11796
"zh-chs": "桌面通知",
11797
"zh-cht": "桌面通知",
11798
"xloc": [
11786
- "default.handlebars->31->1465",
11787
- "default.handlebars->31->1998",
11788
- "default.handlebars->31->2085",
11799
+ "default.handlebars->31->1468",
11800
+ "default.handlebars->31->2001",
11801
+ "default.handlebars->31->2088",
11802
"default.handlebars->31->654"
11803
]
11804
},
@@ -11806,9 +11819,9 @@
11819
"zh-chs": "桌面提示",
11820
"zh-cht": "桌面提示",
11821
"xloc": [
11809
- "default.handlebars->31->1464",
11810
- "default.handlebars->31->1997",
11811
- "default.handlebars->31->2084",
11822
+ "default.handlebars->31->1467",
11823
+ "default.handlebars->31->2000",
11824
+ "default.handlebars->31->2087",
11825
"default.handlebars->31->653"
11826
]
11827
},
@@ -11829,9 +11842,9 @@
11842
"zh-chs": "桌面提示+工具栏",
11843
"zh-cht": "桌面提示+工具欄",
11844
"xloc": [
11832
- "default.handlebars->31->1462",
11833
- "default.handlebars->31->1995",
11834
- "default.handlebars->31->2082",
11845
+ "default.handlebars->31->1465",
11846
+ "default.handlebars->31->1998",
11847
+ "default.handlebars->31->2085",
11848
"default.handlebars->31->651"
11849
]
11850
},
@@ -11894,9 +11907,9 @@
11907
"zh-chs": "桌面工具栏",
11908
"zh-cht": "桌面工具欄",
11909
"xloc": [
11897
- "default.handlebars->31->1463",
11898
- "default.handlebars->31->1996",
11899
- "default.handlebars->31->2083",
11910
+ "default.handlebars->31->1466",
11911
+ "default.handlebars->31->1999",
11912
+ "default.handlebars->31->2086",
11913
"default.handlebars->31->652"
11914
]
11915
},
@@ -12015,11 +12028,11 @@
12028
"zh-chs": "设备",
12029
"zh-cht": "裝置",
12030
"xloc": [
12018
- "default-mobile.handlebars->11->434",
12031
+ "default-mobile.handlebars->11->436",
12032
"default.handlebars->31->1063",
12020
- "default.handlebars->31->1567",
12033
+ "default.handlebars->31->1570",
12034
"default.handlebars->31->201",
12022
- "default.handlebars->31->2157",
12035
+ "default.handlebars->31->2160",
12036
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12037
]
12038
},
@@ -12041,7 +12054,7 @@
12054
"zh-cht": "裝置指令",
12055
"xloc": [
12056
"default-mobile.handlebars->11->308",
12044
- "default-mobile.handlebars->11->309",
12057
+ "default-mobile.handlebars->11->311",
12058
"default.handlebars->31->832"
12059
]
12060
},
@@ -12083,16 +12096,16 @@
12096
"zh-cht": "裝置群",
12097
"xloc": [
12098
"agent-translations.json",
12086
- "default-mobile.handlebars->11->589",
12087
- "default.handlebars->31->1562",
12099
+ "default-mobile.handlebars->11->591",
12100
"default.handlebars->31->1565",
12089
- "default.handlebars->31->1566",
12090
- "default.handlebars->31->1846",
12091
- "default.handlebars->31->2021",
12092
- "default.handlebars->31->2027",
12093
- "default.handlebars->31->2145",
12094
- "default.handlebars->31->2196",
12095
- "default.handlebars->31->2215"
12101
+ "default.handlebars->31->1568",
12102
+ "default.handlebars->31->1569",
12103
+ "default.handlebars->31->1849",
12104
+ "default.handlebars->31->2024",
12105
+ "default.handlebars->31->2030",
12106
+ "default.handlebars->31->2148",
12107
+ "default.handlebars->31->2199",
12108
+ "default.handlebars->31->2218"
12109
]
12110
},
12111
{
@@ -12112,8 +12125,8 @@
12125
"zh-chs": "设备组用户",
12126
"zh-cht": "裝置群用戶",
12127
"xloc": [
12115
- "default-mobile.handlebars->11->578",
12116
- "default.handlebars->31->1632"
12128
+ "default-mobile.handlebars->11->580",
12129
+ "default.handlebars->31->1635"
12130
]
12131
},
12132
{
@@ -12134,11 +12147,11 @@
12147
"zh-cht": "裝置群",
12148
"xloc": [
12149
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
12137
- "default.handlebars->31->1862",
12138
- "default.handlebars->31->1968",
12139
- "default.handlebars->31->2008",
12140
- "default.handlebars->31->2079",
12141
- "default.handlebars->31->2266",
12150
+ "default.handlebars->31->1865",
12151
+ "default.handlebars->31->1971",
12152
+ "default.handlebars->31->2011",
12153
+ "default.handlebars->31->2082",
12154
+ "default.handlebars->31->2269",
12155
"default.handlebars->container->column_l->p2->p2info->7"
12156
]
12157
},
@@ -12219,8 +12232,8 @@
12232
"zh-chs": "设备名称",
12233
"zh-cht": "裝置名稱",
12234
"xloc": [
12222
- "default-mobile.handlebars->11->323",
12223
- "default.handlebars->31->2195",
12235
+ "default-mobile.handlebars->11->325",
12236
+ "default.handlebars->31->2198",
12237
"default.handlebars->31->314",
12238
"default.handlebars->31->904",
12239
"player.handlebars->3->9"
@@ -12252,7 +12265,7 @@
12265
"nl": "Apparaat koppelingslink",
12266
"fr": "Lien de jumelage de l'appareil",
12267
"xloc": [
12255
- "default-mobile.handlebars->11->532"
12268
+ "default-mobile.handlebars->11->534"
12269
]
12270
},
12271
{
@@ -12329,8 +12342,8 @@
12342
"zh-chs": "设备连接。",
12343
"zh-cht": "裝置連接。",
12344
"xloc": [
12332
- "default.handlebars->31->1382",
12333
- "default.handlebars->31->1653"
12345
+ "default.handlebars->31->1385",
12346
+ "default.handlebars->31->1656"
12347
]
12348
},
12349
{
@@ -12350,8 +12363,8 @@
12363
"zh-chs": "设备断开连接。",
12364
"zh-cht": "裝置斷開連接。",
12365
"xloc": [
12353
- "default.handlebars->31->1383",
12354
- "default.handlebars->31->1654"
12366
+ "default.handlebars->31->1386",
12367
+ "default.handlebars->31->1657"
12368
]
12369
},
12370
{
@@ -12371,7 +12384,7 @@
12384
"zh-chs": "创建的设备组:{0}",
12385
"zh-cht": "設備組已創建:{0}",
12386
"xloc": [
12374
- "default.handlebars->31->1801"
12387
+ "default.handlebars->31->1804"
12388
]
12389
},
12390
{
@@ -12391,7 +12404,7 @@
12404
"zh-chs": "设备组已删除:{0}",
12405
"zh-cht": "設備組已刪除:{0}",
12406
"xloc": [
12394
- "default.handlebars->31->1802"
12407
+ "default.handlebars->31->1805"
12408
]
12409
},
12410
{
@@ -12411,7 +12424,7 @@
12424
"zh-chs": "设备组成员身份已更改:{0}",
12425
"zh-cht": "設備組成員身份已更改:{0}",
12426
"xloc": [
12414
- "default.handlebars->31->1803"
12427
+ "default.handlebars->31->1806"
12428
]
12429
},
12430
{
@@ -12431,6 +12444,7 @@
12444
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12445
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12446
"xloc": [
12447
+ "default-mobile.handlebars->11->309",
12448
"default.handlebars->31->786"
12449
]
12450
},
@@ -12451,7 +12465,7 @@
12465
"zh-chs": "设备组通知已更改",
12466
"zh-cht": "設備組通知已更改",
12467
"xloc": [
12454
- "default.handlebars->31->1798"
12468
+ "default.handlebars->31->1801"
12469
]
12470
},
12471
{
@@ -12471,7 +12485,7 @@
12485
"zh-chs": "未删除的设备组:{0}",
12486
"zh-cht": "未刪除的設備組:{0}",
12487
"xloc": [
12474
- "default.handlebars->31->1781"
12488
+ "default.handlebars->31->1784"
12489
]
12490
},
12491
{
@@ -12850,7 +12864,7 @@
12864
{
12865
"en": "Device requested Intel(R) AMT ACM TLS activation, FQDN: {0}",
12866
"xloc": [
12853
- "default.handlebars->31->1836"
12867
+ "default.handlebars->31->1839"
12868
]
12869
},
12870
{
@@ -12870,7 +12884,7 @@
12884
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12885
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12886
"xloc": [
12873
- "default.handlebars->31->1783"
12887
+ "default.handlebars->31->1786"
12888
]
12889
},
12890
{
@@ -12907,8 +12921,8 @@
12921
"zh-chs": "设备",
12922
"zh-cht": "裝置",
12923
"xloc": [
12910
- "default.handlebars->31->1969",
12911
- "default.handlebars->31->2009"
12924
+ "default.handlebars->31->1972",
12925
+ "default.handlebars->31->2012"
12926
]
12927
},
12928
{
@@ -12928,7 +12942,7 @@
12942
"zh-chs": "已禁用",
12943
"zh-cht": "已禁用",
12944
"xloc": [
12931
- "default-mobile.handlebars->11->419",
12945
+ "default-mobile.handlebars->11->421",
12946
"default.handlebars->31->647"
12947
]
12948
},
@@ -12949,7 +12963,7 @@
12963
"zh-chs": "禁用的电子邮件两因素身份验证",
12964
"zh-cht": "禁用的電子郵件兩因素身份驗證",
12965
"xloc": [
12952
- "default.handlebars->31->1814"
12966
+ "default.handlebars->31->1817"
12967
]
12968
},
12969
{
@@ -12970,9 +12984,9 @@
12984
"zh-cht": "斷線",
12985
"xloc": [
12986
"agent-translations.json",
12973
- "default-mobile.handlebars->11->367",
12987
+ "default-mobile.handlebars->11->369",
12988
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12975
- "default.handlebars->31->1475",
12989
+ "default.handlebars->31->1478",
12990
"default.handlebars->31->996",
12991
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12992
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -13133,7 +13147,7 @@
13147
"zh-chs": "显示设备组名称",
13148
"zh-cht": "顯示裝置群名稱",
13149
"xloc": [
13136
- "default.handlebars->31->1381"
13150
+ "default.handlebars->31->1384"
13151
]
13152
},
13153
{
@@ -13173,7 +13187,7 @@
13187
"zh-chs": "显示公共连结",
13188
"zh-cht": "顯示公共鏈結",
13189
"xloc": [
13176
- "default.handlebars->31->1684"
13190
+ "default.handlebars->31->1687"
13191
]
13192
},
13193
{
@@ -13201,7 +13215,7 @@
13215
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13216
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13217
"xloc": [
13204
- "default.handlebars->31->1743"
13218
+ "default.handlebars->31->1746"
13219
]
13220
},
13221
{
@@ -13221,7 +13235,7 @@
13235
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13236
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13237
"xloc": [
13224
- "default.handlebars->31->1751"
13238
+ "default.handlebars->31->1754"
13239
]
13240
},
13241
{
@@ -13241,8 +13255,8 @@
13255
"zh-chs": "什么都不做",
13256
"zh-cht": "什麼都不做",
13257
"xloc": [
13244
- "default.handlebars->31->1522",
13245
- "default.handlebars->31->1526"
13258
+ "default.handlebars->31->1525",
13259
+ "default.handlebars->31->1529"
13260
]
13261
},
13262
{
@@ -13262,10 +13276,10 @@
13276
"zh-chs": "域",
13277
"zh-cht": "域",
13278
"xloc": [
13265
- "default.handlebars->31->1933",
13266
- "default.handlebars->31->1981",
13267
- "default.handlebars->31->1990",
13268
- "default.handlebars->31->2058",
13279
+ "default.handlebars->31->1936",
13280
+ "default.handlebars->31->1984",
13281
+ "default.handlebars->31->1993",
13282
+ "default.handlebars->31->2061",
13283
"mstsc.handlebars->main->1->3->1->2->1->0",
13284
"mstsc.handlebars->main->1->3->1->2->3"
13285
]
@@ -13287,7 +13301,7 @@
13301
"zh-chs": "请勿更改,如果设置请保留CCM",
13302
"zh-cht": "請勿更改,如果設置請保留CCM",
13303
"xloc": [
13290
- "default.handlebars->31->1518"
13304
+ "default.handlebars->31->1521"
13305
]
13306
},
13307
{
@@ -13324,7 +13338,7 @@
13338
"zh-chs": "不要连接到服务器",
13339
"zh-cht": "不要連接到伺服器",
13340
"xloc": [
13327
- "default.handlebars->31->1527"
13341
+ "default.handlebars->31->1530"
13342
]
13343
},
13344
{
@@ -13388,7 +13402,7 @@
13402
"fr": "Bas",
13403
"nl": "Omlaag",
13404
"xloc": [
13391
- "default-mobile.handlebars->11->351",
13405
+ "default-mobile.handlebars->11->353",
13406
"default.handlebars->31->944"
13407
]
13408
},
@@ -13452,7 +13466,7 @@
13466
"zh-chs": "下载档案",
13467
"zh-cht": "下載檔案",
13468
"xloc": [
13455
- "default-mobile.handlebars->11->397",
13469
+ "default-mobile.handlebars->11->399",
13470
"default.handlebars->31->1035"
13471
]
13472
},
@@ -13553,7 +13567,7 @@
13567
"zh-chs": "下载报告",
13568
"zh-cht": "下載報告",
13569
"xloc": [
13556
- "default.handlebars->31->1851",
13570
+ "default.handlebars->31->1854",
13571
"default.handlebars->container->column_l->p3->3->1->0->3"
13572
]
13573
},
@@ -13762,7 +13776,7 @@
13776
"zh-chs": "使用以下一种档案格式下载事件列表。",
13777
"zh-cht": "使用以下一種檔案格式下載事件列表。",
13778
"xloc": [
13765
- "default.handlebars->31->1852"
13779
+ "default.handlebars->31->1855"
13780
]
13781
},
13782
{
@@ -13782,7 +13796,7 @@
13796
"zh-chs": "使用以下一种档案格式下载用户列表。",
13797
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
13798
"xloc": [
13785
- "default.handlebars->31->1917"
13799
+ "default.handlebars->31->1920"
13800
]
13801
},
13802
{
@@ -13863,7 +13877,7 @@
13877
"zh-chs": "下载:“{0}”",
13878
"zh-cht": "下載:“{0}”",
13879
"xloc": [
13866
- "default.handlebars->31->1774"
13880
+ "default.handlebars->31->1777"
13881
]
13882
},
13883
{
@@ -13871,7 +13885,7 @@
13885
"nl": "Download: \\\"{0}\\\", Grootte: {1}",
13886
"fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
13887
"xloc": [
13874
- "default.handlebars->31->1831"
13888
+ "default.handlebars->31->1834"
13889
]
13890
},
13891
{
@@ -13911,7 +13925,7 @@
13925
"zh-chs": "代理重复",
13926
"zh-cht": "代理重複",
13927
"xloc": [
13914
- "default.handlebars->31->2262"
13928
+ "default.handlebars->31->2265"
13929
]
13930
},
13931
{
@@ -13951,7 +13965,7 @@
13965
"zh-chs": "复制用户组",
13966
"zh-cht": "複製用戶群",
13967
"xloc": [
13954
- "default.handlebars->31->1985"
13968
+ "default.handlebars->31->1988"
13969
]
13970
},
13971
{
@@ -13988,8 +14002,8 @@
14002
"zh-chs": "持续时间",
14003
"zh-cht": "持續時間",
14004
"xloc": [
13991
- "default.handlebars->31->2181",
13992
- "default.handlebars->31->2201",
14005
+ "default.handlebars->31->2184",
14006
+ "default.handlebars->31->2204",
14007
"player.handlebars->3->2"
14008
]
14009
},
@@ -14027,7 +14041,7 @@
14041
"zh-chs": "荷兰文(比利时)",
14042
"zh-cht": "荷蘭文(比利時)",
14043
"xloc": [
14030
- "default.handlebars->31->1221"
14044
+ "default.handlebars->31->1224"
14045
]
14046
},
14047
{
@@ -14047,7 +14061,7 @@
14061
"zh-chs": "荷兰文(标准)",
14062
"zh-cht": "荷蘭文(標準)",
14063
"xloc": [
14050
- "default.handlebars->31->1220"
14064
+ "default.handlebars->31->1223"
14065
]
14066
},
14067
{
@@ -14335,7 +14349,7 @@
14349
"zh-chs": "编辑设备",
14350
"zh-cht": "編輯裝置",
14351
"xloc": [
14338
- "default-mobile.handlebars->11->328",
14352
+ "default-mobile.handlebars->11->330",
14353
"default.handlebars->31->909"
14354
]
14355
},
@@ -14356,13 +14370,13 @@
14370
"zh-chs": "编辑设备组",
14371
"zh-cht": "編輯裝置群",
14372
"xloc": [
14359
- "default-mobile.handlebars->11->529",
14360
- "default-mobile.handlebars->11->535",
14361
- "default-mobile.handlebars->11->555",
14362
- "default.handlebars->31->1539",
14363
- "default.handlebars->31->1571",
14364
- "default.handlebars->31->1596",
14365
- "default.handlebars->31->1608"
14373
+ "default-mobile.handlebars->11->531",
14374
+ "default-mobile.handlebars->11->537",
14375
+ "default-mobile.handlebars->11->557",
14376
+ "default.handlebars->31->1542",
14377
+ "default.handlebars->31->1574",
14378
+ "default.handlebars->31->1599",
14379
+ "default.handlebars->31->1611"
14380
]
14381
},
14382
{
@@ -14382,7 +14396,7 @@
14396
"zh-chs": "编辑设备组功能",
14397
"zh-cht": "編輯裝置群功能",
14398
"xloc": [
14385
- "default.handlebars->31->1557"
14399
+ "default.handlebars->31->1560"
14400
]
14401
},
14402
{
@@ -14402,8 +14416,8 @@
14416
"zh-chs": "编辑设备组权限",
14417
"zh-cht": "編輯裝置群權限",
14418
"xloc": [
14405
- "default.handlebars->31->1593",
14406
- "default.handlebars->31->1605"
14419
+ "default.handlebars->31->1596",
14420
+ "default.handlebars->31->1608"
14421
]
14422
},
14423
{
@@ -14423,7 +14437,7 @@
14437
"zh-chs": "编辑设备组用户同意",
14438
"zh-cht": "編輯裝置群用戶同意",
14439
"xloc": [
14426
- "default.handlebars->31->1540"
14440
+ "default.handlebars->31->1543"
14441
]
14442
},
14443
{
@@ -14443,8 +14457,8 @@
14457
"zh-chs": "编辑设备笔记",
14458
"zh-cht": "編輯裝置筆記",
14459
"xloc": [
14446
- "default-mobile.handlebars->11->547",
14447
- "default.handlebars->31->1585"
14460
+ "default-mobile.handlebars->11->549",
14461
+ "default.handlebars->31->1588"
14462
]
14463
},
14464
{
@@ -14464,8 +14478,8 @@
14478
"zh-chs": "编辑设备权限",
14479
"zh-cht": "編輯裝置權限",
14480
"xloc": [
14467
- "default.handlebars->31->1598",
14468
- "default.handlebars->31->1600"
14481
+ "default.handlebars->31->1601",
14482
+ "default.handlebars->31->1603"
14483
]
14484
},
14485
{
@@ -14505,7 +14519,7 @@
14519
"zh-chs": "编辑设备用户同意",
14520
"zh-cht": "編輯裝置用戶同意",
14521
"xloc": [
14508
- "default.handlebars->31->1542"
14522
+ "default.handlebars->31->1545"
14523
]
14524
},
14525
{
@@ -14548,7 +14562,7 @@
14562
"default-mobile.handlebars->11->269",
14563
"default-mobile.handlebars->11->274",
14564
"default-mobile.handlebars->11->275",
14551
- "default-mobile.handlebars->11->318",
14565
+ "default-mobile.handlebars->11->320",
14566
"default.handlebars->31->618",
14567
"default.handlebars->31->623",
14568
"default.handlebars->31->624",
@@ -14572,8 +14586,8 @@
14586
"zh-chs": "编辑笔记",
14587
"zh-cht": "編輯筆記",
14588
"xloc": [
14575
- "default-mobile.handlebars->11->562",
14576
- "default.handlebars->31->1615"
14589
+ "default-mobile.handlebars->11->564",
14590
+ "default.handlebars->31->1618"
14591
]
14592
},
14593
{
@@ -14593,7 +14607,7 @@
14607
"zh-chs": "编辑用户同意",
14608
"zh-cht": "編輯用戶同意",
14609
"xloc": [
14596
- "default.handlebars->31->1541"
14610
+ "default.handlebars->31->1544"
14611
]
14612
},
14613
{
@@ -14613,7 +14627,7 @@
14627
"zh-chs": "编辑用户设备组权限",
14628
"zh-cht": "編輯用戶裝置群權限",
14629
"xloc": [
14616
- "default.handlebars->31->1606"
14630
+ "default.handlebars->31->1609"
14631
]
14632
},
14633
{
@@ -14633,7 +14647,7 @@
14647
"zh-chs": "编辑用户设备权限",
14648
"zh-cht": "編輯用戶裝置權限",
14649
"xloc": [
14636
- "default.handlebars->31->1601"
14650
+ "default.handlebars->31->1604"
14651
]
14652
},
14653
{
@@ -14653,7 +14667,7 @@
14667
"zh-chs": "编辑用户组",
14668
"zh-cht": "編輯用戶群",
14669
"xloc": [
14656
- "default.handlebars->31->2036"
14670
+ "default.handlebars->31->2039"
14671
]
14672
},
14673
{
@@ -14673,7 +14687,7 @@
14687
"zh-chs": "编辑用户组设备权限",
14688
"zh-cht": "編輯用戶群裝置權限",
14689
"xloc": [
14676
- "default.handlebars->31->1603"
14690
+ "default.handlebars->31->1606"
14691
]
14692
},
14693
{
@@ -14693,7 +14707,7 @@
14707
"zh-chs": "编辑用户组用户同意",
14708
"zh-cht": "編輯用戶組用戶同意",
14709
"xloc": [
14696
- "default.handlebars->31->1543"
14710
+ "default.handlebars->31->1546"
14711
]
14712
},
14713
{
@@ -14775,11 +14789,11 @@
14789
"zh-cht": "電郵",
14790
"xloc": [
14791
"default-mobile.handlebars->11->100",
14778
- "default.handlebars->31->1935",
14779
- "default.handlebars->31->2062",
14780
- "default.handlebars->31->2064",
14781
- "default.handlebars->31->2104",
14782
- "default.handlebars->31->2124",
14792
+ "default.handlebars->31->1938",
14793
+ "default.handlebars->31->2065",
14794
+ "default.handlebars->31->2067",
14795
+ "default.handlebars->31->2107",
14796
+ "default.handlebars->31->2127",
14797
"default.handlebars->31->347",
14798
"login-mobile.handlebars->5->42",
14799
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14812,7 +14826,7 @@
14826
"zh-cht": "電郵地址變更",
14827
"xloc": [
14828
"default-mobile.handlebars->11->101",
14815
- "default.handlebars->31->1390"
14829
+ "default.handlebars->31->1393"
14830
]
14831
},
14832
{
@@ -14833,7 +14847,7 @@
14847
"zh-cht": "電郵認證",
14848
"xloc": [
14849
"default-mobile.handlebars->11->90",
14836
- "default.handlebars->31->1158"
14850
+ "default.handlebars->31->1161"
14851
]
14852
},
14853
{
@@ -14893,7 +14907,7 @@
14907
"zh-cht": "電郵驗證",
14908
"xloc": [
14909
"default-mobile.handlebars->11->99",
14896
- "default.handlebars->31->1388"
14910
+ "default.handlebars->31->1391"
14911
]
14912
},
14913
{
@@ -14933,7 +14947,7 @@
14947
"zh-chs": "电邮未验证",
14948
"zh-cht": "電郵未驗證",
14949
"xloc": [
14936
- "default.handlebars->31->1881"
14950
+ "default.handlebars->31->1884"
14951
]
14952
},
14953
{
@@ -14953,8 +14967,8 @@
14967
"zh-chs": "电子邮件已验证",
14968
"zh-cht": "電子郵件已驗證",
14969
"xloc": [
14956
- "default.handlebars->31->1882",
14957
- "default.handlebars->31->2056"
14970
+ "default.handlebars->31->1885",
14971
+ "default.handlebars->31->2059"
14972
]
14973
},
14974
{
@@ -14974,7 +14988,7 @@
14988
"zh-chs": "电邮已验证。",
14989
"zh-cht": "電郵已驗證。",
14990
"xloc": [
14977
- "default.handlebars->31->1941"
14991
+ "default.handlebars->31->1944"
14992
]
14993
},
14994
{
@@ -14994,7 +15008,7 @@
15008
"zh-chs": "电邮未验证",
15009
"zh-cht": "電郵未驗證",
15010
"xloc": [
14997
- "default.handlebars->31->2057"
15011
+ "default.handlebars->31->2060"
15012
]
15013
},
15014
{
@@ -15014,8 +15028,8 @@
15028
"zh-chs": "电邮已发送。",
15029
"zh-cht": "電郵已發送。",
15030
"xloc": [
15017
- "default-mobile.handlebars->11->604",
15018
- "default.handlebars->31->2230",
15031
+ "default-mobile.handlebars->11->606",
15032
+ "default.handlebars->31->2233",
15033
"login-mobile.handlebars->5->2",
15034
"login.handlebars->5->2",
15035
"login2.handlebars->7->3"
@@ -15060,7 +15074,7 @@
15074
"zh-chs": "已通过电邮验证,并且需要重置密码。",
15075
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15076
"xloc": [
15063
- "default.handlebars->31->1942"
15077
+ "default.handlebars->31->1945"
15078
]
15079
},
15080
{
@@ -15084,7 +15098,7 @@
15098
"en": "Email/SMS/Push Traffic",
15099
"nl": "Email/SMS/Push verkeer",
15100
"xloc": [
15087
- "default.handlebars->31->2306"
15101
+ "default.handlebars->31->2309"
15102
]
15103
},
15104
{
@@ -15130,7 +15144,7 @@
15144
"zh-chs": "启用邀请代码",
15145
"zh-cht": "啟用邀請代碼",
15146
"xloc": [
15133
- "default.handlebars->31->1638"
15147
+ "default.handlebars->31->1641"
15148
]
15149
},
15150
{
@@ -15171,7 +15185,7 @@
15185
"zh-cht": "啟用電郵二因子鑑別。",
15186
"xloc": [
15187
"default-mobile.handlebars->11->92",
15174
- "default.handlebars->31->1160"
15188
+ "default.handlebars->31->1163"
15189
]
15190
},
15191
{
@@ -15211,7 +15225,7 @@
15225
"zh-chs": "已启用",
15226
"zh-cht": "已啟用",
15227
"xloc": [
15214
- "default.handlebars->31->2203"
15228
+ "default.handlebars->31->2206"
15229
]
15230
},
15231
{
@@ -15231,7 +15245,7 @@
15245
"zh-chs": "启用电子邮件两因素身份验证",
15246
"zh-cht": "啟用電子郵件兩因素身份驗證",
15247
"xloc": [
15234
- "default.handlebars->31->1813"
15248
+ "default.handlebars->31->1816"
15249
]
15250
},
15251
{
@@ -15259,7 +15273,7 @@
15273
"fr": "Fin",
15274
"nl": "End",
15275
"xloc": [
15262
- "default-mobile.handlebars->11->345",
15276
+ "default-mobile.handlebars->11->347",
15277
"default.handlebars->31->938"
15278
]
15279
},
@@ -15280,7 +15294,7 @@
15294
"zh-chs": "时间结束",
15295
"zh-cht": "時間結束",
15296
"xloc": [
15283
- "default.handlebars->31->2200"
15297
+ "default.handlebars->31->2203"
15298
]
15299
},
15300
{
@@ -15300,7 +15314,7 @@
15314
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15315
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15316
"xloc": [
15303
- "default.handlebars->31->1736"
15317
+ "default.handlebars->31->1739"
15318
]
15319
},
15320
{
@@ -15320,7 +15334,7 @@
15334
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15335
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15336
"xloc": [
15323
- "default.handlebars->31->1737"
15337
+ "default.handlebars->31->1740"
15338
]
15339
},
15340
{
@@ -15340,7 +15354,7 @@
15354
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15355
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15356
"xloc": [
15343
- "default.handlebars->31->1734"
15357
+ "default.handlebars->31->1737"
15358
]
15359
},
15360
{
@@ -15360,7 +15374,7 @@
15374
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15375
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15376
"xloc": [
15363
- "default.handlebars->31->1735"
15377
+ "default.handlebars->31->1738"
15378
]
15379
},
15380
{
@@ -15380,7 +15394,7 @@
15394
"zh-chs": "英文",
15395
"zh-cht": "英文",
15396
"xloc": [
15383
- "default.handlebars->31->1222"
15397
+ "default.handlebars->31->1225"
15398
]
15399
},
15400
{
@@ -15400,7 +15414,7 @@
15414
"zh-chs": "英文(澳洲)",
15415
"zh-cht": "英文(澳洲)",
15416
"xloc": [
15403
- "default.handlebars->31->1223"
15417
+ "default.handlebars->31->1226"
15418
]
15419
},
15420
{
@@ -15420,7 +15434,7 @@
15434
"zh-chs": "英文(伯利茲)",
15435
"zh-cht": "英文(伯利茲)",
15436
"xloc": [
15423
- "default.handlebars->31->1224"
15437
+ "default.handlebars->31->1227"
15438
]
15439
},
15440
{
@@ -15440,7 +15454,7 @@
15454
"zh-chs": "英文(加拿大)",
15455
"zh-cht": "英文(加拿大)",
15456
"xloc": [
15443
- "default.handlebars->31->1225"
15457
+ "default.handlebars->31->1228"
15458
]
15459
},
15460
{
@@ -15460,7 +15474,7 @@
15474
"zh-chs": "英文(爱尔兰)",
15475
"zh-cht": "英文(愛爾蘭)",
15476
"xloc": [
15463
- "default.handlebars->31->1226"
15477
+ "default.handlebars->31->1229"
15478
]
15479
},
15480
{
@@ -15480,7 +15494,7 @@
15494
"zh-chs": "英文(牙买加)",
15495
"zh-cht": "英文(牙買加)",
15496
"xloc": [
15483
- "default.handlebars->31->1227"
15497
+ "default.handlebars->31->1230"
15498
]
15499
},
15500
{
@@ -15500,7 +15514,7 @@
15514
"zh-chs": "英文(纽西兰)",
15515
"zh-cht": "英文(紐西蘭)",
15516
"xloc": [
15503
- "default.handlebars->31->1228"
15517
+ "default.handlebars->31->1231"
15518
]
15519
},
15520
{
@@ -15520,7 +15534,7 @@
15534
"zh-chs": "英文(菲律宾)",
15535
"zh-cht": "英文(菲律賓)",
15536
"xloc": [
15523
- "default.handlebars->31->1229"
15537
+ "default.handlebars->31->1232"
15538
]
15539
},
15540
{
@@ -15540,7 +15554,7 @@
15554
"zh-chs": "英语(南非)",
15555
"zh-cht": "英語(南非)",
15556
"xloc": [
15543
- "default.handlebars->31->1230"
15557
+ "default.handlebars->31->1233"
15558
]
15559
},
15560
{
@@ -15560,7 +15574,7 @@
15574
"zh-chs": "英文(特立尼达和多巴哥)",
15575
"zh-cht": "英文(特立尼達和多巴哥)",
15576
"xloc": [
15563
- "default.handlebars->31->1231"
15577
+ "default.handlebars->31->1234"
15578
]
15579
},
15580
{
@@ -15580,7 +15594,7 @@
15594
"zh-chs": "英文(英国)",
15595
"zh-cht": "英文(英國)",
15596
"xloc": [
15583
- "default.handlebars->31->1232"
15597
+ "default.handlebars->31->1235"
15598
]
15599
},
15600
{
@@ -15600,7 +15614,7 @@
15614
"zh-chs": "美国英文",
15615
"zh-cht": "美國英語",
15616
"xloc": [
15603
- "default.handlebars->31->1233"
15617
+ "default.handlebars->31->1236"
15618
]
15619
},
15620
{
@@ -15620,7 +15634,7 @@
15634
"zh-chs": "英文(津巴布韦)",
15635
"zh-cht": "英文(津巴布韋)",
15636
"xloc": [
15623
- "default.handlebars->31->1234"
15637
+ "default.handlebars->31->1237"
15638
]
15639
},
15640
{
@@ -15640,10 +15654,10 @@
15654
"zh-chs": "输入",
15655
"zh-cht": "輸入",
15656
"xloc": [
15643
- "default-mobile.handlebars->11->339",
15657
+ "default-mobile.handlebars->11->341",
15658
"default.handlebars->31->1008",
15645
- "default.handlebars->31->1416",
15646
- "default.handlebars->31->1417",
15659
+ "default.handlebars->31->1419",
15660
+ "default.handlebars->31->1420",
15661
"default.handlebars->31->932"
15662
]
15663
},
@@ -15664,7 +15678,7 @@
15678
"zh-chs": "输入管理领域名称的逗号分隔列表。",
15679
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15680
"xloc": [
15667
- "default.handlebars->31->1946"
15681
+ "default.handlebars->31->1949"
15682
]
15683
},
15684
{
@@ -15786,7 +15800,7 @@
15800
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15801
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15802
"xloc": [
15789
- "default.handlebars->31->1155"
15803
+ "default.handlebars->31->1158"
15804
]
15805
},
15806
{
@@ -15814,8 +15828,8 @@
15828
"nl": "Fout, uitnodigingscode \\\"{0}\\\" al in gebruik.",
15829
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15830
"xloc": [
15817
- "default-mobile.handlebars->11->612",
15818
- "default.handlebars->31->2238"
15831
+ "default-mobile.handlebars->11->614",
15832
+ "default.handlebars->31->2241"
15833
]
15834
},
15835
{
@@ -15823,8 +15837,8 @@
15837
"nl": "Fout, wachtwoord niet gewijzigd.",
15838
"fr": "Erreur, mot de passe non modifié.",
15839
"xloc": [
15826
- "default-mobile.handlebars->11->609",
15827
- "default.handlebars->31->2235"
15840
+ "default-mobile.handlebars->11->611",
15841
+ "default.handlebars->31->2238"
15842
]
15843
},
15844
{
@@ -15832,8 +15846,8 @@
15846
"nl": "Fout, het is niet mogelijk om naar algemeen gebruikt wachtwoord te veranderen.",
15847
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15848
"xloc": [
15835
- "default-mobile.handlebars->11->608",
15836
- "default.handlebars->31->2234"
15849
+ "default-mobile.handlebars->11->610",
15850
+ "default.handlebars->31->2237"
15851
]
15852
},
15853
{
@@ -15841,8 +15855,8 @@
15855
"nl": "Fout, kan niet wijzigen naar eerder gebruikt wachtwoord.",
15856
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15857
"xloc": [
15844
- "default-mobile.handlebars->11->607",
15845
- "default.handlebars->31->2233"
15858
+ "default-mobile.handlebars->11->609",
15859
+ "default.handlebars->31->2236"
15860
]
15861
},
15862
{
@@ -15870,7 +15884,7 @@
15884
"fr": "Echap",
15885
"nl": "Escape",
15886
"xloc": [
15873
- "default-mobile.handlebars->11->340",
15887
+ "default-mobile.handlebars->11->342",
15888
"default.handlebars->31->933"
15889
]
15890
},
@@ -15891,7 +15905,7 @@
15905
"zh-chs": "世界文",
15906
"zh-cht": "世界語",
15907
"xloc": [
15894
- "default.handlebars->31->1235"
15908
+ "default.handlebars->31->1238"
15909
]
15910
},
15911
{
@@ -15911,7 +15925,7 @@
15925
"zh-chs": "爱沙尼亚文",
15926
"zh-cht": "愛沙尼亞語",
15927
"xloc": [
15914
- "default.handlebars->31->1236"
15928
+ "default.handlebars->31->1239"
15929
]
15930
},
15931
{
@@ -15951,7 +15965,7 @@
15965
"zh-chs": "事件列表输出",
15966
"zh-cht": "事件列表輸出",
15967
"xloc": [
15954
- "default.handlebars->31->1857"
15968
+ "default.handlebars->31->1860"
15969
]
15970
},
15971
{
@@ -16181,7 +16195,7 @@
16195
"zh-chs": "外部",
16196
"zh-cht": "外部",
16197
"xloc": [
16184
- "default.handlebars->31->2289"
16198
+ "default.handlebars->31->2292"
16199
]
16200
},
16201
{
@@ -16221,7 +16235,7 @@
16235
"zh-chs": "FYRO马其顿语",
16236
"zh-cht": "FYRO馬其頓語",
16237
"xloc": [
16224
- "default.handlebars->31->1286"
16238
+ "default.handlebars->31->1289"
16239
]
16240
},
16241
{
@@ -16241,7 +16255,7 @@
16255
"zh-chs": "法罗语",
16256
"zh-cht": "法羅語",
16257
"xloc": [
16244
- "default.handlebars->31->1237"
16258
+ "default.handlebars->31->1240"
16259
]
16260
},
16261
{
@@ -16269,8 +16283,8 @@
16283
"nl": "E-mailadres kan niet worden gewijzigd, een ander account gebruikt al: {0}.",
16284
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16285
"xloc": [
16272
- "default-mobile.handlebars->11->603",
16273
- "default.handlebars->31->2229"
16286
+ "default-mobile.handlebars->11->605",
16287
+ "default.handlebars->31->2232"
16288
]
16289
},
16290
{
@@ -16290,7 +16304,7 @@
16304
"zh-chs": "本地用户拒绝后无法启动远程桌面",
16305
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16306
"xloc": [
16293
- "default.handlebars->31->1759"
16307
+ "default.handlebars->31->1762"
16308
]
16309
},
16310
{
@@ -16310,7 +16324,7 @@
16324
"zh-chs": "本地用户拒绝后无法启动远程文件",
16325
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16326
"xloc": [
16313
- "default.handlebars->31->1766"
16327
+ "default.handlebars->31->1769"
16328
]
16329
},
16330
{
@@ -16330,7 +16344,7 @@
16344
"zh-chs": "无法启动远程终端接合{0}({1})",
16345
"zh-cht": "無法啟動遠程終端接合{0}({1})",
16346
"xloc": [
16333
- "default-mobile.handlebars->11->331",
16347
+ "default-mobile.handlebars->11->333",
16348
"default.handlebars->31->912",
16349
"desktop.handlebars->3->8",
16350
"terminal.handlebars->3->12"
@@ -16353,7 +16367,7 @@
16367
"zh-chs": "波斯文(波斯文)",
16368
"zh-cht": "波斯語(波斯語)",
16369
"xloc": [
16356
- "default.handlebars->31->1238"
16370
+ "default.handlebars->31->1241"
16371
]
16372
},
16373
{
@@ -16395,7 +16409,7 @@
16409
"zh-chs": "功能",
16410
"zh-cht": "功能",
16411
"xloc": [
16398
- "default.handlebars->31->1461"
16412
+ "default.handlebars->31->1464"
16413
]
16414
},
16415
{
@@ -16415,7 +16429,7 @@
16429
"zh-chs": "斐济",
16430
"zh-cht": "斐濟",
16431
"xloc": [
16418
- "default.handlebars->31->1239"
16432
+ "default.handlebars->31->1242"
16433
]
16434
},
16435
{
@@ -16455,7 +16469,7 @@
16469
"zh-chs": "档案编辑器",
16470
"zh-cht": "檔案編輯器",
16471
"xloc": [
16458
- "default-mobile.handlebars->11->381",
16472
+ "default-mobile.handlebars->11->383",
16473
"default.handlebars->31->1019",
16474
"default.handlebars->31->560"
16475
]
@@ -16556,8 +16570,8 @@
16570
"xloc": [
16571
"default-mobile.handlebars->11->201",
16572
"default-mobile.handlebars->11->298",
16559
- "default.handlebars->31->1551",
16560
- "default.handlebars->31->2188",
16573
+ "default.handlebars->31->1554",
16574
+ "default.handlebars->31->2191",
16575
"default.handlebars->31->285",
16576
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16577
"default.handlebars->contextMenu->cxfiles"
@@ -16600,9 +16614,9 @@
16614
"zh-chs": "档案通知",
16615
"zh-cht": "檔案通知",
16616
"xloc": [
16603
- "default.handlebars->31->1469",
16604
- "default.handlebars->31->2002",
16605
- "default.handlebars->31->2089",
16617
+ "default.handlebars->31->1472",
16618
+ "default.handlebars->31->2005",
16619
+ "default.handlebars->31->2092",
16620
"default.handlebars->31->658"
16621
]
16622
},
@@ -16623,9 +16637,9 @@
16637
"zh-chs": "档案提示",
16638
"zh-cht": "檔案提示",
16639
"xloc": [
16626
- "default.handlebars->31->1468",
16627
- "default.handlebars->31->2001",
16628
- "default.handlebars->31->2088",
16640
+ "default.handlebars->31->1471",
16641
+ "default.handlebars->31->2004",
16642
+ "default.handlebars->31->2091",
16643
"default.handlebars->31->657"
16644
]
16645
},
@@ -16710,7 +16724,7 @@
16724
"zh-chs": "录制会话已完成,{0}秒",
16725
"zh-cht": "錄製會話已完成,{0}秒",
16726
"xloc": [
16713
- "default.handlebars->31->1732"
16727
+ "default.handlebars->31->1735"
16728
]
16729
},
16730
{
@@ -16730,7 +16744,7 @@
16744
"zh-chs": "芬兰",
16745
"zh-cht": "芬蘭",
16746
"xloc": [
16733
- "default.handlebars->31->1240"
16747
+ "default.handlebars->31->1243"
16748
]
16749
},
16750
{
@@ -16738,8 +16752,8 @@
16752
"nl": "Firewall",
16753
"fr": "Parefeu",
16754
"xloc": [
16741
- "default-mobile.handlebars->11->414",
16755
"default-mobile.handlebars->11->416",
16756
+ "default-mobile.handlebars->11->418",
16757
"default.handlebars->31->642",
16758
"default.handlebars->31->644"
16759
]
@@ -16749,8 +16763,8 @@
16763
"nl": "Firewall niet actief",
16764
"fr": "Pare-feu désactivé",
16765
"xloc": [
16752
- "default.handlebars->31->1664",
16753
- "default.handlebars->31->1678"
16766
+ "default.handlebars->31->1667",
16767
+ "default.handlebars->31->1681"
16768
]
16769
},
16770
{
@@ -16940,8 +16954,8 @@
16954
"zh-chs": "下次登录时强制重置密码。",
16955
"zh-cht": "下次登入時強制重置密碼。",
16956
"xloc": [
16943
- "default.handlebars->31->1940",
16944
- "default.handlebars->31->2135"
16957
+ "default.handlebars->31->1943",
16958
+ "default.handlebars->31->2138"
16959
]
16960
},
16961
{
@@ -17024,7 +17038,7 @@
17038
"zh-chs": "格式化",
17039
"zh-cht": "格式化",
17040
"xloc": [
17027
- "default.handlebars->31->1848"
17041
+ "default.handlebars->31->1851"
17042
]
17043
},
17044
{
@@ -17065,8 +17079,8 @@
17079
"zh-chs": "自由",
17080
"zh-cht": "自由",
17081
"xloc": [
17068
- "default.handlebars->31->2247",
17069
- "default.handlebars->31->2249"
17082
+ "default.handlebars->31->2250",
17083
+ "default.handlebars->31->2252"
17084
]
17085
},
17086
{
@@ -17107,7 +17121,7 @@
17121
"zh-chs": "法文(比利时)",
17122
"zh-cht": "法語(比利時)",
17123
"xloc": [
17110
- "default.handlebars->31->1242"
17124
+ "default.handlebars->31->1245"
17125
]
17126
},
17127
{
@@ -17127,7 +17141,7 @@
17141
"zh-chs": "法文(加拿大)",
17142
"zh-cht": "法語(加拿大)",
17143
"xloc": [
17130
- "default.handlebars->31->1243"
17144
+ "default.handlebars->31->1246"
17145
]
17146
},
17147
{
@@ -17147,7 +17161,7 @@
17161
"zh-chs": "法文(法国)",
17162
"zh-cht": "法語(法國)",
17163
"xloc": [
17150
- "default.handlebars->31->1244"
17164
+ "default.handlebars->31->1247"
17165
]
17166
},
17167
{
@@ -17167,7 +17181,7 @@
17181
"zh-chs": "法文(卢森堡)",
17182
"zh-cht": "法語(盧森堡)",
17183
"xloc": [
17170
- "default.handlebars->31->1245"
17184
+ "default.handlebars->31->1248"
17185
]
17186
},
17187
{
@@ -17187,7 +17201,7 @@
17201
"zh-chs": "法文(摩纳哥)",
17202
"zh-cht": "法語(摩納哥)",
17203
"xloc": [
17190
- "default.handlebars->31->1246"
17204
+ "default.handlebars->31->1249"
17205
]
17206
},
17207
{
@@ -17207,7 +17221,7 @@
17221
"zh-chs": "法文(标准)",
17222
"zh-cht": "法語(標準)",
17223
"xloc": [
17210
- "default.handlebars->31->1241"
17224
+ "default.handlebars->31->1244"
17225
]
17226
},
17227
{
@@ -17227,7 +17241,7 @@
17241
"zh-chs": "法文(瑞士)",
17242
"zh-cht": "法語(瑞士)",
17243
"xloc": [
17230
- "default.handlebars->31->1247"
17244
+ "default.handlebars->31->1250"
17245
]
17246
},
17247
{
@@ -17247,7 +17261,7 @@
17261
"zh-chs": "弗里斯兰文",
17262
"zh-cht": "弗里斯蘭語",
17263
"xloc": [
17250
- "default.handlebars->31->1248"
17264
+ "default.handlebars->31->1251"
17265
]
17266
},
17267
{
@@ -17267,7 +17281,7 @@
17281
"zh-chs": "弗留利",
17282
"zh-cht": "弗留利",
17283
"xloc": [
17270
- "default.handlebars->31->1249"
17284
+ "default.handlebars->31->1252"
17285
]
17286
},
17287
{
@@ -17288,12 +17302,12 @@
17302
"zh-cht": "完整管理員",
17303
"xloc": [
17304
"default-mobile.handlebars->11->127",
17291
- "default-mobile.handlebars->11->521",
17292
- "default-mobile.handlebars->11->534",
17293
- "default-mobile.handlebars->11->554",
17294
- "default.handlebars->31->1423",
17295
- "default.handlebars->31->1570",
17296
- "default.handlebars->31->1952"
17305
+ "default-mobile.handlebars->11->523",
17306
+ "default-mobile.handlebars->11->536",
17307
+ "default-mobile.handlebars->11->556",
17308
+ "default.handlebars->31->1426",
17309
+ "default.handlebars->31->1573",
17310
+ "default.handlebars->31->1955"
17311
]
17312
},
17313
{
@@ -17313,7 +17327,7 @@
17327
"zh-chs": "完整管理员(保留所有权利)",
17328
"zh-cht": "完整管理員(保留所有權利)",
17329
"xloc": [
17316
- "default.handlebars->31->1607"
17330
+ "default.handlebars->31->1610"
17331
]
17332
},
17333
{
@@ -17432,7 +17446,7 @@
17446
"zh-chs": "完整管理员",
17447
"zh-cht": "完整管理員",
17448
"xloc": [
17435
- "default.handlebars->31->2050"
17449
+ "default.handlebars->31->2053"
17450
]
17451
},
17452
{
@@ -17452,8 +17466,8 @@
17466
"zh-chs": "全自动的",
17467
"zh-cht": "全自動的",
17468
"xloc": [
17455
- "default.handlebars->31->1486",
17456
- "default.handlebars->31->1509"
17469
+ "default.handlebars->31->1489",
17470
+ "default.handlebars->31->1512"
17471
]
17472
},
17473
{
@@ -17473,7 +17487,7 @@
17487
"zh-chs": "GPU",
17488
"zh-cht": "GPU",
17489
"xloc": [
17476
- "default-mobile.handlebars->11->478",
17490
+ "default-mobile.handlebars->11->480",
17491
"default.handlebars->31->1117"
17492
]
17493
},
@@ -17494,7 +17508,7 @@
17508
"zh-chs": "盖尔文(爱尔兰)",
17509
"zh-cht": "蓋爾語(愛爾蘭)",
17510
"xloc": [
17497
- "default.handlebars->31->1251"
17511
+ "default.handlebars->31->1254"
17512
]
17513
},
17514
{
@@ -17514,7 +17528,7 @@
17528
"zh-chs": "盖尔文(苏格兰文)",
17529
"zh-cht": "蓋爾語(蘇格蘭語)",
17530
"xloc": [
17517
- "default.handlebars->31->1250"
17531
+ "default.handlebars->31->1253"
17532
]
17533
},
17534
{
@@ -17534,7 +17548,7 @@
17548
"zh-chs": "加拉契文",
17549
"zh-cht": "加拉契語",
17550
"xloc": [
17537
- "default.handlebars->31->1252"
17551
+ "default.handlebars->31->1255"
17552
]
17553
},
17554
{
@@ -17660,7 +17674,7 @@
17674
"zh-chs": "格鲁吉亚文",
17675
"zh-cht": "格魯吉亞文",
17676
"xloc": [
17663
- "default.handlebars->31->1253"
17677
+ "default.handlebars->31->1256"
17678
]
17679
},
17680
{
@@ -17680,7 +17694,7 @@
17694
"zh-chs": "德文(奥地利)",
17695
"zh-cht": "德語(奧地利)",
17696
"xloc": [
17683
- "default.handlebars->31->1255"
17697
+ "default.handlebars->31->1258"
17698
]
17699
},
17700
{
@@ -17700,7 +17714,7 @@
17714
"zh-chs": "德文(德国)",
17715
"zh-cht": "德文(德國)",
17716
"xloc": [
17703
- "default.handlebars->31->1256"
17717
+ "default.handlebars->31->1259"
17718
]
17719
},
17720
{
@@ -17720,7 +17734,7 @@
17734
"zh-chs": "德文(列支敦士登)",
17735
"zh-cht": "德文(列支敦士登)",
17736
"xloc": [
17723
- "default.handlebars->31->1257"
17737
+ "default.handlebars->31->1260"
17738
]
17739
},
17740
{
@@ -17740,7 +17754,7 @@
17754
"zh-chs": "德文(卢森堡)",
17755
"zh-cht": "德語(盧森堡)",
17756
"xloc": [
17743
- "default.handlebars->31->1258"
17757
+ "default.handlebars->31->1261"
17758
]
17759
},
17760
{
@@ -17760,7 +17774,7 @@
17774
"zh-chs": "德文(标准)",
17775
"zh-cht": "德語(標準)",
17776
"xloc": [
17763
- "default.handlebars->31->1254"
17777
+ "default.handlebars->31->1257"
17778
]
17779
},
17780
{
@@ -17780,7 +17794,7 @@
17794
"zh-chs": "德文(瑞士)",
17795
"zh-cht": "德文(瑞士)",
17796
"xloc": [
17783
- "default.handlebars->31->1259"
17797
+ "default.handlebars->31->1262"
17798
]
17799
},
17800
{
@@ -17841,7 +17855,7 @@
17855
"zh-chs": "正在获取剪贴板内容,{0}个字节",
17856
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
17857
"xloc": [
17844
- "default.handlebars->31->1746"
17858
+ "default.handlebars->31->1749"
17859
]
17860
},
17861
{
@@ -17903,7 +17917,7 @@
17917
"zh-chs": "好",
17918
"zh-cht": "好",
17919
"xloc": [
17906
- "default.handlebars->31->1419"
17920
+ "default.handlebars->31->1422"
17921
]
17922
},
17923
{
@@ -17948,8 +17962,8 @@
17962
"zh-chs": "Google云端硬盘备份",
17963
"zh-cht": "Google雲端硬盤備份",
17964
"xloc": [
17951
- "default.handlebars->31->1430",
17965
"default.handlebars->31->1433",
17966
+ "default.handlebars->31->1436",
17967
"default.handlebars->31->224"
17968
]
17969
},
@@ -17970,7 +17984,7 @@
17984
"zh-chs": "Google云端硬盘控制台",
17985
"zh-cht": "Google雲端硬盤控制台",
17986
"xloc": [
17973
- "default.handlebars->31->1427"
17987
+ "default.handlebars->31->1430"
17988
]
17989
},
17990
{
@@ -18010,7 +18024,7 @@
18024
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
18025
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
18026
"xloc": [
18013
- "default.handlebars->31->1431"
18027
+ "default.handlebars->31->1434"
18028
]
18029
},
18030
{
@@ -18038,7 +18052,7 @@
18052
"zh-chs": "希腊文",
18053
"zh-cht": "希臘文",
18054
"xloc": [
18041
- "default.handlebars->31->1260"
18055
+ "default.handlebars->31->1263"
18056
]
18057
},
18058
{
@@ -18080,8 +18094,8 @@
18094
"zh-chs": "集体指令",
18095
"zh-cht": "集體指令",
18096
"xloc": [
18083
- "default.handlebars->31->1896",
18084
- "default.handlebars->31->1975",
18097
+ "default.handlebars->31->1899",
18098
+ "default.handlebars->31->1978",
18099
"default.handlebars->31->485",
18100
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
18101
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -18105,7 +18119,7 @@
18119
"zh-chs": "通过...分组",
18120
"zh-cht": "通過...分群",
18121
"xloc": [
18108
- "default.handlebars->31->1844"
18122
+ "default.handlebars->31->1847"
18123
]
18124
},
18125
{
@@ -18125,7 +18139,7 @@
18139
"zh-chs": "组标识符",
18140
"zh-cht": "群標識符",
18141
"xloc": [
18128
- "default.handlebars->31->1992"
18142
+ "default.handlebars->31->1995"
18143
]
18144
},
18145
{
@@ -18145,7 +18159,7 @@
18159
"zh-chs": "群组成员",
18160
"zh-cht": "群組成員",
18161
"xloc": [
18148
- "default.handlebars->31->2013"
18162
+ "default.handlebars->31->2016"
18163
]
18164
},
18165
{
@@ -18165,7 +18179,7 @@
18179
"zh-chs": "用户{0}的群组权限。",
18180
"zh-cht": "用戶{0}的群組權限。",
18181
"xloc": [
18168
- "default.handlebars->31->1569"
18182
+ "default.handlebars->31->1572"
18183
]
18184
},
18185
{
@@ -18185,7 +18199,7 @@
18199
"zh-chs": "{0}的群组权限。",
18200
"zh-cht": "{0}的群組權限。",
18201
"xloc": [
18188
- "default.handlebars->31->1568"
18202
+ "default.handlebars->31->1571"
18203
]
18204
},
18205
{
@@ -18225,7 +18239,7 @@
18239
"zh-chs": "组1,组2,组3",
18240
"zh-cht": "群1,群2,群3",
18241
"xloc": [
18228
- "default-mobile.handlebars->11->327"
18242
+ "default-mobile.handlebars->11->329"
18243
]
18244
},
18245
{
@@ -18281,7 +18295,7 @@
18295
"en": "Guest Sharing",
18296
"nl": "Gastdeling",
18297
"xloc": [
18284
- "default.handlebars->31->1577"
18298
+ "default.handlebars->31->1580"
18299
]
18300
},
18301
{
@@ -18301,7 +18315,7 @@
18315
"zh-chs": "古久拉提",
18316
"zh-cht": "古久拉提",
18317
"xloc": [
18304
- "default.handlebars->31->1261"
18318
+ "default.handlebars->31->1264"
18319
]
18320
},
18321
{
@@ -18344,7 +18358,7 @@
18358
"zh-chs": "海地文",
18359
"zh-cht": "海地文",
18360
"xloc": [
18347
- "default.handlebars->31->1262"
18361
+ "default.handlebars->31->1265"
18362
]
18363
},
18364
{
@@ -18384,7 +18398,7 @@
18398
"zh-chs": "强行断开代理",
18399
"zh-cht": "強行斷開代理",
18400
"xloc": [
18387
- "default-mobile.handlebars->11->508",
18401
+ "default-mobile.handlebars->11->510",
18402
"default.handlebars->31->1148"
18403
]
18404
},
@@ -18405,7 +18419,7 @@
18419
"zh-chs": "堆总数",
18420
"zh-cht": "堆總數",
18421
"xloc": [
18408
- "default.handlebars->31->2291"
18422
+ "default.handlebars->31->2294"
18423
]
18424
},
18425
{
@@ -18425,7 +18439,7 @@
18439
"zh-chs": "堆使用",
18440
"zh-cht": "堆使用",
18441
"xloc": [
18428
- "default.handlebars->31->2290"
18442
+ "default.handlebars->31->2293"
18443
]
18444
},
18445
{
@@ -18445,7 +18459,7 @@
18459
"zh-chs": "希伯来文",
18460
"zh-cht": "希伯來文",
18461
"xloc": [
18448
- "default.handlebars->31->1263"
18462
+ "default.handlebars->31->1266"
18463
]
18464
},
18465
{
@@ -18506,7 +18520,7 @@
18520
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
18521
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
18522
"xloc": [
18509
- "default.handlebars->31->1823"
18523
+ "default.handlebars->31->1826"
18524
]
18525
},
18526
{
@@ -18567,7 +18581,7 @@
18581
"zh-chs": "帮助翻译MeshCentral",
18582
"zh-cht": "幫助翻譯MeshCentral",
18583
"xloc": [
18570
- "default.handlebars->31->1378"
18584
+ "default.handlebars->31->1381"
18585
]
18586
},
18587
{
@@ -18671,7 +18685,7 @@
18685
"zh-chs": "印地文",
18686
"zh-cht": "印地文",
18687
"xloc": [
18674
- "default.handlebars->31->1264"
18688
+ "default.handlebars->31->1267"
18689
]
18690
},
18691
{
@@ -18708,7 +18722,7 @@
18722
"zh-chs": "保存1个条目进行复制",
18723
"zh-cht": "保存1個項目進行複製",
18724
"xloc": [
18711
- "default-mobile.handlebars->11->390",
18725
+ "default-mobile.handlebars->11->392",
18726
"default.handlebars->31->1029"
18727
]
18728
},
@@ -18729,7 +18743,7 @@
18743
"zh-chs": "保存1个项目进行移动",
18744
"zh-cht": "保存1個項目進行移動",
18745
"xloc": [
18732
- "default-mobile.handlebars->11->394",
18746
+ "default-mobile.handlebars->11->396",
18747
"default.handlebars->31->1033"
18748
]
18749
},
@@ -18750,7 +18764,7 @@
18764
"zh-chs": "保存{0}个条目进行复制",
18765
"zh-cht": "保留{0}個項目進行複製",
18766
"xloc": [
18753
- "default-mobile.handlebars->11->388",
18767
+ "default-mobile.handlebars->11->390",
18768
"default.handlebars->31->1027"
18769
]
18770
},
@@ -18771,7 +18785,7 @@
18785
"zh-chs": "保存{0}个条目以进行移动",
18786
"zh-cht": "保存{0}個項目以進行移動",
18787
"xloc": [
18774
- "default-mobile.handlebars->11->392",
18788
+ "default-mobile.handlebars->11->394",
18789
"default.handlebars->31->1031"
18790
]
18791
},
@@ -18793,7 +18807,7 @@
18807
"zh-cht": "保存{0}項目{1}給{2}",
18808
"xloc": [
18809
"default-mobile.handlebars->11->151",
18796
- "default.handlebars->31->1719"
18810
+ "default.handlebars->31->1722"
18811
]
18812
},
18813
{
@@ -18801,7 +18815,7 @@
18815
"fr": "Home",
18816
"nl": "Home",
18817
"xloc": [
18804
- "default-mobile.handlebars->11->344",
18818
+ "default-mobile.handlebars->11->346",
18819
"default.handlebars->31->937"
18820
]
18821
},
@@ -18825,8 +18839,8 @@
18839
"default-mobile.handlebars->11->250",
18840
"default-mobile.handlebars->11->251",
18841
"default-mobile.handlebars->11->253",
18828
- "default-mobile.handlebars->11->324",
18829
- "default-mobile.handlebars->11->437",
18842
+ "default-mobile.handlebars->11->326",
18843
+ "default-mobile.handlebars->11->439",
18844
"default.handlebars->31->1066",
18845
"default.handlebars->31->315",
18846
"default.handlebars->31->600",
@@ -18850,7 +18864,7 @@
18864
"zh-chs": "主机名同步",
18865
"zh-cht": "主機名同步",
18866
"xloc": [
18853
- "default.handlebars->31->1458"
18867
+ "default.handlebars->31->1461"
18868
]
18869
},
18870
{
@@ -18870,7 +18884,7 @@
18884
"zh-chs": "匈牙利文",
18885
"zh-cht": "匈牙利文",
18886
"xloc": [
18873
- "default.handlebars->31->1265"
18887
+ "default.handlebars->31->1268"
18888
]
18889
},
18890
{
@@ -18977,8 +18991,8 @@
18991
"zh-chs": "IPv4层",
18992
"zh-cht": "IPv4層",
18993
"xloc": [
18980
- "default-mobile.handlebars->11->444",
18994
"default-mobile.handlebars->11->446",
18995
+ "default-mobile.handlebars->11->448",
18996
"default.handlebars->31->1073",
18997
"default.handlebars->31->1075",
18998
"default.handlebars->31->1083",
@@ -19065,8 +19079,8 @@
19079
"zh-chs": "IPv6层",
19080
"zh-cht": "IPv6層",
19081
"xloc": [
19068
- "default-mobile.handlebars->11->448",
19082
"default-mobile.handlebars->11->450",
19083
+ "default-mobile.handlebars->11->452",
19084
"default.handlebars->31->1087",
19085
"default.handlebars->31->1089"
19086
]
@@ -19148,7 +19162,7 @@
19162
"zh-chs": "冰岛文",
19163
"zh-cht": "冰島文",
19164
"xloc": [
19151
- "default.handlebars->31->1266"
19165
+ "default.handlebars->31->1269"
19166
]
19167
},
19168
{
@@ -19168,7 +19182,7 @@
19182
"zh-chs": "图标选择",
19183
"zh-cht": "圖符選擇",
19184
"xloc": [
19171
- "default-mobile.handlebars->11->322",
19185
+ "default-mobile.handlebars->11->324",
19186
"default.handlebars->31->903"
19187
]
19188
},
@@ -19189,8 +19203,8 @@
19203
"zh-chs": "识别码",
19204
"zh-cht": "識別符",
19205
"xloc": [
19192
- "default-mobile.handlebars->11->436",
19193
- "default-mobile.handlebars->11->476",
19206
+ "default-mobile.handlebars->11->438",
19207
+ "default-mobile.handlebars->11->478",
19208
"default.handlebars->31->1065",
19209
"default.handlebars->31->1115"
19210
]
@@ -19212,7 +19226,7 @@
19226
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
19227
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
19228
"xloc": [
19215
- "default.handlebars->31->1523"
19229
+ "default.handlebars->31->1526"
19230
]
19231
},
19232
{
@@ -19381,7 +19395,7 @@
19395
"zh-chs": "印度尼西亚文",
19396
"zh-cht": "印度尼西亞文",
19397
"xloc": [
19384
- "default.handlebars->31->1267"
19398
+ "default.handlebars->31->1270"
19399
]
19400
},
19401
{
@@ -19451,7 +19465,7 @@
19465
"fr": "Insérer",
19466
"nl": "Insert",
19467
"xloc": [
19454
- "default-mobile.handlebars->11->342",
19468
+ "default-mobile.handlebars->11->344",
19469
"default.handlebars->31->935"
19470
]
19471
},
@@ -19554,7 +19568,7 @@
19568
"nl": "Installeren on dit apparaat",
19569
"fr": "Installer sur cet appareil",
19570
"xloc": [
19557
- "default-mobile.handlebars->11->518"
19571
+ "default-mobile.handlebars->11->520"
19572
]
19573
},
19574
{
@@ -19562,7 +19576,7 @@
19576
"nl": "Installeer de MeshCentral Agent op uw Android apparaat. Na installatie klikt u op de koppelingslink om uw apparaat met deze server te verbinden.",
19577
"fr": "Installez l'agent MeshCentral sur votre appareil android puis cliquez sur ce lien pour le connecter au serveur.",
19578
"xloc": [
19565
- "default-mobile.handlebars->11->530"
19579
+ "default-mobile.handlebars->11->532"
19580
]
19581
},
19582
{
@@ -19582,8 +19596,8 @@
19596
"zh-chs": "安装类型",
19597
"zh-cht": "安裝方式",
19598
"xloc": [
19585
- "default.handlebars->31->1640",
19586
- "default.handlebars->31->1647",
19599
+ "default.handlebars->31->1643",
19600
+ "default.handlebars->31->1650",
19601
"default.handlebars->31->362",
19602
"default.handlebars->31->376",
19603
"default.handlebars->31->391"
@@ -19629,7 +19643,7 @@
19643
"zh-chs": "英特尔AMT",
19644
"zh-cht": "英特爾AMT",
19645
"xloc": [
19632
- "default.handlebars->31->2287"
19646
+ "default.handlebars->31->2290"
19647
]
19648
},
19649
{
@@ -19637,7 +19651,7 @@
19651
"fr": "Gestionnaire Intel AMT",
19652
"nl": "Intel AMT beheerder",
19653
"xloc": [
19640
- "default.handlebars->31->2313"
19654
+ "default.handlebars->31->2316"
19655
]
19656
},
19657
{
@@ -19681,11 +19695,11 @@
19695
"default-mobile.handlebars->11->235",
19696
"default-mobile.handlebars->11->277",
19697
"default-mobile.handlebars->11->282",
19684
- "default.handlebars->31->1476",
19685
- "default.handlebars->31->1487",
19686
- "default.handlebars->31->1659",
19687
- "default.handlebars->31->1672",
19688
- "default.handlebars->31->2312",
19698
+ "default.handlebars->31->1479",
19699
+ "default.handlebars->31->1490",
19700
+ "default.handlebars->31->1662",
19701
+ "default.handlebars->31->1675",
19702
+ "default.handlebars->31->2315",
19703
"default.handlebars->31->570",
19704
"default.handlebars->31->628",
19705
"default.handlebars->31->668"
@@ -19855,7 +19869,7 @@
19869
"zh-chs": "英特尔®AMT政策",
19870
"zh-cht": "Intel® AMT政策",
19871
"xloc": [
19858
- "default.handlebars->31->1510"
19872
+ "default.handlebars->31->1513"
19873
]
19874
},
19875
{
@@ -19875,7 +19889,7 @@
19889
"zh-chs": "英特尔®AMT重定向",
19890
"zh-cht": "Intel® AMT重定向",
19891
"xloc": [
19878
- "default.handlebars->31->2190",
19892
+ "default.handlebars->31->2193",
19893
"player.handlebars->3->14"
19894
]
19895
},
@@ -19916,7 +19930,7 @@
19930
"zh-chs": "英特尔®AMT WSMAN",
19931
"zh-cht": "Intle® AMT WSMAN",
19932
"xloc": [
19919
- "default.handlebars->31->2189",
19933
+ "default.handlebars->31->2192",
19934
"player.handlebars->3->13"
19935
]
19936
},
@@ -19976,8 +19990,8 @@
19990
"zh-chs": "英特尔®AMT桌面和串行事件。",
19991
"zh-cht": "Intel® AMT桌面和串行事件。",
19992
"xloc": [
19979
- "default.handlebars->31->1384",
19980
- "default.handlebars->31->1655"
19993
+ "default.handlebars->31->1387",
19994
+ "default.handlebars->31->1658"
19995
]
19996
},
19997
{
@@ -20162,9 +20176,9 @@
20176
"zh-chs": "仅限英特尔®AMT,无代理",
20177
"zh-cht": "僅限Intel® AMT,無代理",
20178
"xloc": [
20165
- "default-mobile.handlebars->11->511",
20166
- "default.handlebars->31->1413",
20167
- "default.handlebars->31->1448"
20179
+ "default-mobile.handlebars->11->513",
20180
+ "default.handlebars->31->1416",
20181
+ "default.handlebars->31->1451"
20182
]
20183
},
20184
{
@@ -20241,7 +20255,7 @@
20255
"zh-chs": "英特尔®主动管理技术(英特尔®AMT)",
20256
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
20257
"xloc": [
20244
- "default-mobile.handlebars->11->468",
20258
+ "default-mobile.handlebars->11->470",
20259
"default.handlebars->31->1107"
20260
]
20261
},
@@ -20468,8 +20482,8 @@
20482
"zh-chs": "仅限互动",
20483
"zh-cht": "僅限互動",
20484
"xloc": [
20471
- "default.handlebars->31->1643",
20472
- "default.handlebars->31->1650",
20485
+ "default.handlebars->31->1646",
20486
+ "default.handlebars->31->1653",
20487
"default.handlebars->31->365",
20488
"default.handlebars->31->379",
20489
"default.handlebars->31->394"
@@ -20512,7 +20526,7 @@
20526
"zh-chs": "因纽特文",
20527
"zh-cht": "因紐特文",
20528
"xloc": [
20515
- "default.handlebars->31->1268"
20529
+ "default.handlebars->31->1271"
20530
]
20531
},
20532
{
@@ -20562,7 +20576,7 @@
20576
"zh-chs": "无效的设备组类型",
20577
"zh-cht": "無效的裝置群類型",
20578
"xloc": [
20565
- "default.handlebars->31->2261"
20579
+ "default.handlebars->31->2264"
20580
]
20581
},
20582
{
@@ -20582,7 +20596,7 @@
20596
"zh-chs": "无效的JSON",
20597
"zh-cht": "無效的JSON",
20598
"xloc": [
20585
- "default.handlebars->31->2255"
20599
+ "default.handlebars->31->2258"
20600
]
20601
},
20602
{
@@ -20602,8 +20616,8 @@
20616
"zh-chs": "无效的JSON档案格式。",
20617
"zh-cht": "無效的JSON檔案格式。",
20618
"xloc": [
20605
- "default.handlebars->31->1914",
20606
- "default.handlebars->31->1916"
20619
+ "default.handlebars->31->1917",
20620
+ "default.handlebars->31->1919"
20621
]
20622
},
20623
{
@@ -20623,7 +20637,7 @@
20637
"zh-chs": "无效的JSON档案:{0}。",
20638
"zh-cht": "無效的JSON檔案:{0}。",
20639
"xloc": [
20626
- "default.handlebars->31->1912"
20640
+ "default.handlebars->31->1915"
20641
]
20642
},
20643
{
@@ -20643,7 +20657,7 @@
20657
"zh-chs": "无效的PKCS签名",
20658
"zh-cht": "無效的PKCS簽名",
20659
"xloc": [
20646
- "default.handlebars->31->2253"
20660
+ "default.handlebars->31->2256"
20661
]
20662
},
20663
{
@@ -20663,7 +20677,7 @@
20677
"zh-chs": "無效的RSA密碼",
20678
"zh-cht": "無效的RSA密碼",
20679
"xloc": [
20666
- "default.handlebars->31->2254"
20680
+ "default.handlebars->31->2257"
20681
]
20682
},
20683
{
@@ -20671,8 +20685,8 @@
20685
"nl": "Ongeldig SMS bericht",
20686
"fr": "Message SMS non valide",
20687
"xloc": [
20674
- "default-mobile.handlebars->11->615",
20675
- "default.handlebars->31->2241"
20688
+ "default-mobile.handlebars->11->617",
20689
+ "default.handlebars->31->2244"
20690
]
20691
},
20692
{
@@ -20702,8 +20716,8 @@
20716
"nl": "Ongeldig domein",
20717
"fr": "Domaine non valide",
20718
"xloc": [
20705
- "default-mobile.handlebars->11->595",
20706
- "default.handlebars->31->2221"
20719
+ "default-mobile.handlebars->11->597",
20720
+ "default.handlebars->31->2224"
20721
]
20722
},
20723
{
@@ -20711,8 +20725,8 @@
20725
"nl": "Ongeldig email",
20726
"fr": "Email invalide",
20727
"xloc": [
20714
- "default-mobile.handlebars->11->594",
20715
- "default.handlebars->31->2220"
20728
+ "default-mobile.handlebars->11->596",
20729
+ "default.handlebars->31->2223"
20730
]
20731
},
20732
{
@@ -20783,9 +20797,9 @@
20797
"nl": "Ongeldig wachtwoord",
20798
"fr": "Mot de passe incorrect",
20799
"xloc": [
20786
- "default-mobile.handlebars->11->593",
20800
+ "default-mobile.handlebars->11->595",
20801
"default-mobile.handlebars->11->77",
20788
- "default.handlebars->31->2219",
20802
+ "default.handlebars->31->2222",
20803
"default.handlebars->31->229"
20804
]
20805
},
@@ -20794,8 +20808,8 @@
20808
"nl": "Ongeldige sitemachtigingen",
20809
"fr": "Autorisations de site non valides",
20810
"xloc": [
20797
- "default-mobile.handlebars->11->596",
20798
- "default.handlebars->31->2222"
20811
+ "default-mobile.handlebars->11->598",
20812
+ "default.handlebars->31->2225"
20813
]
20814
},
20815
{
@@ -20825,7 +20839,7 @@
20839
"nl": "Ongeldige inlog poging {0}, {1}, {2}",
20840
"fr": "Tentative de connexion invalide de {0}, {1}, {2}",
20841
"xloc": [
20828
- "default.handlebars->31->1835"
20842
+ "default.handlebars->31->1838"
20843
]
20844
},
20845
{
@@ -20833,8 +20847,8 @@
20847
"nl": "Ongeldige gebruikersnaam",
20848
"fr": "Nom d'utilisateur invalide",
20849
"xloc": [
20836
- "default-mobile.handlebars->11->592",
20837
- "default.handlebars->31->2218"
20850
+ "default-mobile.handlebars->11->594",
20851
+ "default.handlebars->31->2221"
20852
]
20853
},
20854
{
@@ -20854,7 +20868,7 @@
20868
"zh-chs": "使电邮无效",
20869
"zh-cht": "使電郵無效",
20870
"xloc": [
20857
- "default.handlebars->31->1890"
20871
+ "default.handlebars->31->1893"
20872
]
20873
},
20874
{
@@ -20931,7 +20945,7 @@
20945
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
20946
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
20947
"xloc": [
20934
- "default.handlebars->31->1645"
20948
+ "default.handlebars->31->1648"
20949
]
20950
},
20951
{
@@ -20971,7 +20985,7 @@
20985
"zh-chs": "邀请",
20986
"zh-cht": "邀請",
20987
"xloc": [
20974
- "default.handlebars->31->1497",
20988
+ "default.handlebars->31->1500",
20989
"default.handlebars->31->312",
20990
"default.handlebars->31->381"
20991
]
@@ -20993,13 +21007,13 @@
21007
"zh-chs": "邀请码",
21008
"zh-cht": "邀請碼",
21009
"xloc": [
20996
- "default-mobile.handlebars->11->590",
20997
- "default.handlebars->31->1480",
20998
- "default.handlebars->31->1639",
20999
- "default.handlebars->31->1644",
21000
- "default.handlebars->31->1646",
21001
- "default.handlebars->31->1651",
21002
- "default.handlebars->31->2216"
21010
+ "default-mobile.handlebars->11->592",
21011
+ "default.handlebars->31->1483",
21012
+ "default.handlebars->31->1642",
21013
+ "default.handlebars->31->1647",
21014
+ "default.handlebars->31->1649",
21015
+ "default.handlebars->31->1654",
21016
+ "default.handlebars->31->2219"
21017
]
21018
},
21019
{
@@ -21039,7 +21053,7 @@
21053
"zh-chs": "邀请某人在该设备组上安装网格代理。",
21054
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
21055
"xloc": [
21042
- "default.handlebars->31->1496",
21056
+ "default.handlebars->31->1499",
21057
"default.handlebars->31->311"
21058
]
21059
},
@@ -21080,7 +21094,7 @@
21094
"zh-chs": "爱尔兰文",
21095
"zh-cht": "愛爾蘭文",
21096
"xloc": [
21083
- "default.handlebars->31->1269"
21097
+ "default.handlebars->31->1272"
21098
]
21099
},
21100
{
@@ -21100,7 +21114,7 @@
21114
"zh-chs": "意大利文(标准)",
21115
"zh-cht": "意大利文(標準)",
21116
"xloc": [
21103
- "default.handlebars->31->1270"
21117
+ "default.handlebars->31->1273"
21118
]
21119
},
21120
{
@@ -21120,7 +21134,7 @@
21134
"zh-chs": "意大利文(瑞士)",
21135
"zh-cht": "義大利文(瑞士)",
21136
"xloc": [
21123
- "default.handlebars->31->1271"
21137
+ "default.handlebars->31->1274"
21138
]
21139
},
21140
{
@@ -21140,7 +21154,7 @@
21154
"zh-chs": "JSON",
21155
"zh-cht": "JSON",
21156
"xloc": [
21143
- "default.handlebars->31->1850"
21157
+ "default.handlebars->31->1853"
21158
]
21159
},
21160
{
@@ -21160,8 +21174,8 @@
21174
"zh-chs": "JSON格式",
21175
"zh-cht": "JSON格式",
21176
"xloc": [
21163
- "default.handlebars->31->1855",
21164
- "default.handlebars->31->1920",
21177
+ "default.handlebars->31->1858",
21178
+ "default.handlebars->31->1923",
21179
"default.handlebars->31->525"
21180
]
21181
},
@@ -21182,7 +21196,7 @@
21196
"zh-chs": "日文",
21197
"zh-cht": "日文",
21198
"xloc": [
21185
- "default.handlebars->31->1272"
21199
+ "default.handlebars->31->1275"
21200
]
21201
},
21202
{
@@ -21202,7 +21216,7 @@
21216
"zh-chs": "已加入桌面Multiplex会话",
21217
"zh-cht": "已加入桌面Multiplex會話",
21218
"xloc": [
21205
- "default.handlebars->31->1729"
21219
+ "default.handlebars->31->1732"
21220
]
21221
},
21222
{
@@ -21222,7 +21236,7 @@
21236
"zh-chs": "卡纳达文",
21237
"zh-cht": "卡納達文",
21238
"xloc": [
21225
- "default.handlebars->31->1273"
21239
+ "default.handlebars->31->1276"
21240
]
21241
},
21242
{
@@ -21242,7 +21256,7 @@
21256
"zh-chs": "克什米尔文",
21257
"zh-cht": "克什米爾文",
21258
"xloc": [
21245
- "default.handlebars->31->1274"
21259
+ "default.handlebars->31->1277"
21260
]
21261
},
This file is too large to show in full.
views/default.handlebars
+45
-20
@@ -342,8 +342,10 @@
342
<div id=p2 style="display:none">
343
<div id="p2title"><h1>My Account</h1></div>
344
<div id="p2info" style="overflow-y:auto">
345
- <!--<img id="p2AccountImage" alt="" loading="lazy" width="128" height="128" onclick="account_manageImage()" src="images/clipboard-128.png" />-->
346
- <img id="p2AccountImage" alt="" loading="lazy" width="128" height="128" style="border-radius:8px;cursor:pointer;box-shadow: 0px 0px 7px #000;margin-top:7px" onclick="account_manageImage()" src="userimage.ashx" />
345
+ <div id="p2AccountImageFrame">
346
+ <img id="p2AccountImage" alt="" loading="lazy" width="128" height="128" onclick="account_manageImage(0)" src="images/user-256.png" />
347
+ <div><a onclick="account_manageImage(0)">Change image</a></div>
348
+ </div>
349
<div id="p2AccountSecurity" style="display:none">
350
<p><strong>Account security</strong></p>
351
<div style="margin-left:25px">
@@ -957,10 +959,11 @@
959
<td style=width:20px></td>
960
<td style=width:200px;position:relative valign=top>
961
<img id="p30userAuthServiceLogo" loading="lazy" style="display:none" class=userAuthStrategyLogo width=64 height=64>
960
- <picture id=MainUserImage style=border-width:0px;height:200px;width:200px;float:right>
962
+ <picture id=MainUserImage style="display:none;border-width:0px;height:200px;width:200px;float:right" onclick="account_manageImage(1)">
963
<source type="image/webp" width=200 height=200 srcset="images/webp/user-256.webp" />
964
<img alt="" width=200 height=200 src=images/user-256.png />
965
</picture>
966
+ <img id=MainUserImageEx alt="" width=200 height=200 src=images/user-256.png onclick="account_manageImage(1)" />
967
<div style="width:100%;text-align:center"><strong><span id=MainUserState></span></strong></div>
968
</td>
969
</tr>
@@ -1929,6 +1932,14 @@
1932
if (((siteRights & 8) == 0) && (xxcurrentView == 5)) { setDialogMode(0); go(1); }
1933
if (currentNode != null) { gotoDevice(currentNode._id, xxcurrentView, true); }
1934
1935
+ // Update user image
1936
+ if ((userinfo.flags != null) && (userinfo.flags & 1)) {
1937
+ if (userinfo.accountImageRnd == null) { userinfo.accountImageRnd = Math.floor(Math.random() * 9999999999); }
1938
+ Q('p2AccountImage').src = 'userimage.ashx?rnd=' + userinfo.accountImageRnd;
1939
+ } else {
1940
+ Q('p2AccountImage').src = 'images/user-256.png';
1941
+ }
1942
+
1943
// Update user management state
1944
if ((userinfo.siteadmin & 2) != 0) {
1945
// We are user administrator
@@ -2671,10 +2682,15 @@
2682
if (userinfo._id == message.event.account._id) {
2683
var newsiteadmin = message.event.account.siteadmin?message.event.account.siteadmin:0;
2684
var oldsiteadmin = userinfo.siteadmin?userinfo.siteadmin:0;
2685
+ var newflags = message.event.account.flags?message.event.account.flags:0;
2686
+ var oldflags = userinfo.flags?userinfo.flags:0;
2687
if ((message.event.account.quota != userinfo.quota) || (((userinfo.siteadmin & 8) == 0) && ((message.event.account.siteadmin & 8) != 0))) { meshserver.send({ action: 'files' }); }
2688
var oldgroups = userinfo.groups;
2689
userinfo = message.event.account;
2677
- if (oldsiteadmin != newsiteadmin) updateSiteAdmin();
2690
+ if ((oldsiteadmin != newsiteadmin) || (message.event.accountImageChange == 1)) { // If the site admin permission or user image has changed...
2691
+ if (message.event.accountImageChange == 1) { userinfo.accountImageRnd = Math.floor(Math.random() * 9999999999); }
2692
+ updateSiteAdmin();
2693
+ }
2694
updateSelf();
2695
2696
if ((userinfo.siteadmin & 2) != 0) {
@@ -9676,20 +9692,19 @@
9692
meshserver.send({ action: 'previousLogins' });
9693
}
9694
9679
- function account_manageImage() {
9695
+ function account_manageImage(mode) {
9696
if (xxdialogMode) return;
9697
+ var user = (mode == 0)?userinfo:currentUser;
9698
var x = '<input id=p2file type=file style=width:100% accept="image/*" onchange=account_manageImageEx()><div style=width:100%><canvas id=p2canvas width=256 height=256 style="width:256px;height:256px;margin-left:60px;margin-top:8px;border-radius:16px;box-shadow: 0px 0px 15px #000" onclick=account_canvasClick() /></div>';
9682
- setDialogMode(2, "Manage Account Image", 7, account_manageImageEx2, x);
9699
+ setDialogMode(2, "Manage Account Image", 7, account_manageImageEx2, x, user._id);
9700
var ctx = Q('p2canvas').getContext("2d");
9684
- if ((userinfo.flags != null) && (userinfo.flags & 1)) {
9685
- var myImg = new Image();
9686
- myImg.onload = function() { ctx.drawImage(myImg, 0, 0); };
9687
- myImg.src = 'userimage.ashx';
9688
- } else {
9689
- ctx.fillStyle = "#CCC";
9690
- ctx.fillRect(0, 0, 256, 256);
9691
- }
9692
- QE('idx_dlgDeleteButton', (userinfo.flags != null) && (userinfo.flags & 1));
9701
+ if (user.accountImageRnd == null) { user.accountImageRnd = Math.floor(Math.random() * 9999999999); }
9702
+ var arg = '';
9703
+ if (mode == 1) { arg = '&id=' + user._id.split('/')[2]; }
9704
+ var myImg = new Image();
9705
+ myImg.onload = function() { ctx.drawImage(myImg, 0, 0); };
9706
+ myImg.src = ((user.flags != null) && (user.flags & 1))?('userimage.ashx?rnd=' + user.accountImageRnd + arg):'images/user-256.png';
9707
+ QE('idx_dlgDeleteButton', (user.flags != null) && (user.flags & 1));
9708
QE('idx_dlgOkButton', false);
9709
}
9710
@@ -9712,9 +9727,9 @@
9727
img.src = URL.createObjectURL(file);
9728
}
9729
9715
- function account_manageImageEx2(b, t) {
9730
+ function account_manageImageEx2(b, userid) {
9731
// Send updated image, or 0 if we pressed the delete button
9717
- meshserver.send({ action: 'updateUserImage', image: (b == 2)?0:Q('p2canvas').toDataURL('image/jpeg', 0.8) });
9732
+ meshserver.send({ action: 'updateUserImage', userid: userid, image: (b == 2)?0:Q('p2canvas').toDataURL('image/jpeg', 0.8) });
9733
//meshserver.send({ action: 'updateUserImage', image: (b == 2)?0:Q('p2canvas').toDataURL('image/png', 0.8) });
9734
}
9735
@@ -12885,9 +12900,19 @@
12900
var self = (user._id == userinfo._id), activeSessions = 0;
12901
if (wssessions != null && wssessions[user._id]) { activeSessions = wssessions[user._id]; }
12902
12888
- // Change user grayscale
12889
- Q('MainUserImage').classList.remove('gray');
12890
- if (activeSessions == 0) { Q('MainUserImage').classList.add('gray'); }
12903
+ // Update account picture
12904
+ if ((user.flags != null) && (user.flags & 1)) {
12905
+ QV('MainUserImage', false);
12906
+ QV('MainUserImageEx', true);
12907
+ if (user.accountImageRnd == null) { user.accountImageRnd = Math.floor(Math.random() * 9999999999); }
12908
+ Q('MainUserImageEx').src = 'userimage.ashx?id=' + (user._id.split('/')[2]) + '&rnd=' + user.accountImageRnd;
12909
+ } else {
12910
+ // Change user grayscale
12911
+ Q('MainUserImage').classList.remove('gray');
12912
+ if (activeSessions == 0) { Q('MainUserImage').classList.add('gray'); }
12913
+ QV('MainUserImage', true);
12914
+ QV('MainUserImageEx', false);
12915
+ }
12916
12917
// Add user auth strategy
12918
var shortuserid = user._id.split('/')[2];
webserver.js
+9
-1
@@ -1876,14 +1876,22 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1876
const domain = getDomain(req);
1877
if (domain == null) { parent.debug('web', 'handleUserImageRequest: failed checks.'); res.sendStatus(404); return; }
1878
if ((req.session == null) || (req.session.userid == null)) { parent.debug('web', 'handleUserImageRequest: failed checks 2.'); res.sendStatus(404); return; }
1879
- obj.db.Get('im' + req.session.userid, function (err, docs) {
1879
+ var imageUserId = req.session.userid;
1880
+ if ((req.query.id != null)) {
1881
+ var user = obj.users[req.session.userid];
1882
+ if ((user == null) || (user.siteadmin == null) && ((user.siteadmin & 2) == 0)) { res.sendStatus(404); return; }
1883
+ imageUserId = 'user/' + domain.id + '/' + req.query.id;
1884
+ }
1885
+ obj.db.Get('im' + imageUserId, function (err, docs) {
1886
if ((err != null) || (docs == null) || (docs.length != 1) || (typeof docs[0].image != 'string')) { res.sendStatus(404); return; }
1887
var imagebase64 = docs[0].image;
1888
if (imagebase64.startsWith('data:image/png;base64,')) {
1889
res.set('Content-Type', 'image/png');
1890
+ res.set({ 'Cache-Control': 'no-store' });
1891
res.send(Buffer.from(imagebase64.substring(22), 'base64'));
1892
} else if (imagebase64.startsWith('data:image/jpeg;base64,')) {
1893
res.set('Content-Type', 'image/jpeg');
1894
+ res.set({ 'Cache-Control': 'no-store' });
1895
res.send(Buffer.from(imagebase64.substring(23), 'base64'));
1896
} else {
1897
res.sendStatus(404);