Updated French translation.
Ylian Saint-Hilaire committed
May 21, 2021 at 14:12 UTC
e240d6da7d1e1729701d43ed0cec72eedb3b9142
6 files changed
+2209
-2116
apprelays.js
-1
@@ -404,7 +404,6 @@ module.exports.CreateSshTerminalRelay = function (parent, db, ws, req, domain, u
404
405
// Save SSH credentials into device
406
function saveSshCredentials() {
407
- console.log('Save SSH credentials', obj.username, obj.password, obj.nodeid);
407
parent.parent.db.Get(obj.nodeid, function (err, nodes) {
408
if ((err != null) || (nodes == null) || (nodes.length != 1)) return;
409
const node = nodes[0];
meshuser.js
+7
@@ -708,6 +708,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
708
// Remove push messaging token if present
709
if (docs[i].pmt != null) { docs[i].pmt = 1; }
710
711
+ // Remove SSH credentials if present
712
+ if (docs[i].ssh != null) { docs[i].ssh = 1; }
713
+
714
// Remove Intel AMT credential if present
715
if (docs[i].intelamt != null) {
716
if (docs[i].intelamt.pass != null) { docs[i].intelamt.pass = 1; }
@@ -4213,6 +4216,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4216
}
4217
}
4218
4219
+ if ((typeof command.ssh == 'number') && (command.ssh == 0)) {
4220
+ if (node.ssh != null) { delete node.ssh; change = 1; changes.push('ssh'); } // Delete the SSH cendentials
4221
+ }
4222
+
4223
if (domain.geolocation && command.userloc && ((node.userloc == null) || (command.userloc[0] != node.userloc[0]) || (command.userloc[1] != node.userloc[1]))) {
4224
change = 1;
4225
if ((command.userloc.length == 0) && (node.userloc)) {
public/scripts/common-0.0.1-min.js
+1
-1
@@ -1 +1 @@
1
-function Q(n){return null==document.getElementById(n)&&console.log("Invalid element: "+n),document.getElementById(n)}function QS(n){try{return Q(n).style}catch(n){}}function QE(n,t){try{Q(n).disabled=!t}catch(n){}}function QV(n,t){try{QS(n).display=t?"":"none"}catch(n){}}function QA(n,t){Q(n).innerHTML+=t}function QH(n,t){Q(n).innerHTML=t}function QC(n){try{return Q(n).classList}catch(n){}}function inputBoxFocus(n){Q(n).focus();var t=Q(n).value;Q(n).value="",Q(n).value=t}function ReadShort(n,t){return(n.charCodeAt(t)<<8)+n.charCodeAt(t+1)}function ReadShortX(n,t){return(n.charCodeAt(t+1)<<8)+n.charCodeAt(t)}function ReadInt(n,t){return 16777216*n.charCodeAt(t)+(n.charCodeAt(t+1)<<16)+(n.charCodeAt(t+2)<<8)+n.charCodeAt(t+3)}function ReadSInt(n,t){return(n.charCodeAt(t)<<24)+(n.charCodeAt(t+1)<<16)+(n.charCodeAt(t+2)<<8)+n.charCodeAt(t+3)}function ReadIntX(n,t){return 16777216*n.charCodeAt(t+3)+(n.charCodeAt(t+2)<<16)+(n.charCodeAt(t+1)<<8)+n.charCodeAt(t)}function ShortToStr(n){return String.fromCharCode(n>>8&255,255&n)}function ShortToStrX(n){return String.fromCharCode(255&n,n>>8&255)}function IntToStr(n){return String.fromCharCode(n>>24&255,n>>16&255,n>>8&255,255&n)}function IntToStrX(n){return String.fromCharCode(255&n,n>>8&255,n>>16&255,n>>24&255)}function MakeToArray(n){return n&&null!=n&&"object"!=typeof n?[n]:n}function SplitArray(n){return n.split(",")}function Clone(n){return JSON.parse(JSON.stringify(n))}function EscapeHtml(n){return"string"==typeof n?n.replace(/&/g,"&").replace(/>/g,">").replace(/</g,"<").replace(/"/g,""").replace(/'/g,"'"):"boolean"==typeof n||"number"==typeof n?n:void 0}function EscapeHtmlBreaks(n){return"string"==typeof n?n.replace(/&/g,"&").replace(/>/g,">").replace(/</g,"<").replace(/"/g,""").replace(/'/g,"'").replace(/\r/g,"<br />").replace(/\n/g,"").replace(/\t/g," "):"boolean"==typeof n||"number"==typeof n?n:void 0}function ArrayElementMove(n,t,e){n.splice(e,0,n.splice(t,1)[0])}function ObjectToStringEx(n,t){var e="";if(0!=n&&(!n||null==n))return"(Null)";if(n instanceof Array)for(var r in n)e+="<br />"+gap(t)+"Item #"+r+": "+ObjectToStringEx(n[r],t+1);else if(n instanceof Object)for(var r in n)e+="<br />"+gap(t)+r+" = "+ObjectToStringEx(n[r],t+1);else e+=EscapeHtml(n);return e}function ObjectToStringEx2(n,t){var e="";if(0!=n&&(!n||null==n))return"(Null)";if(n instanceof Array)for(var r in n)e+="\r\n"+gap2(t)+"Item #"+r+": "+ObjectToStringEx2(n[r],t+1);else if(n instanceof Object)for(var r in n)e+="\r\n"+gap2(t)+r+" = "+ObjectToStringEx2(n[r],t+1);else e+=EscapeHtml(n);return e}function gap(n){for(var t="",e=0;e<4*n;e++)t+=" ";return t}function gap2(n){for(var t="",e=0;e<4*n;e++)t+=" ";return t}function ObjectToString(n){return ObjectToStringEx(n,0)}function ObjectToString2(n){return ObjectToStringEx2(n,0)}function hex2rstr(n){if("string"!=typeof n||0==n.length)return"";for(var t,e="",r=(""+n).match(/../g);t=r.shift();)e+=String.fromCharCode("0x"+t);return e}function char2hex(n){return(n+256).toString(16).substr(-2).toUpperCase()}function rstr2hex(n){for(var t="",e=0;e<n.length;e++)t+=char2hex(n.charCodeAt(e));return t}function encode_utf8(n){return unescape(encodeURIComponent(n))}function decode_utf8(n){return decodeURIComponent(escape(n))}function data2blob(n){for(var t=new Array(n.length),e=0;e<n.length;e++)t[e]=n.charCodeAt(e);return new Blob([new Uint8Array(t)])}function utf2blob(n){for(var t=[],e=unescape(encodeURIComponent(n)),r=0;r<e.length;r++)t.push(e.charCodeAt(r));return new Blob([new Uint8Array(t)])}function random(n){return Math.floor(Math.random()*n)}function trademarks(n){return n.replace(/\(R\)/g,"®").replace(/\(TM\)/g,"™")}function zeroPad(n,t){n="00000000"+n;return n.substr(n.length-(t=null==t?2:t))}function isAlphaNumeric(n){return"number"==typeof n||null!=n.match(/^[A-Za-z0-9]+$/)}function isSafeString(n){return"string"==typeof n&&-1==n.indexOf("<")&&-1==n.indexOf(">")&&-1==n.indexOf("&")&&-1==n.indexOf('"')&&-1==n.indexOf("'")&&-1==n.indexOf("+")&&-1==n.indexOf("(")&&-1==n.indexOf(")")&&-1==n.indexOf("#")&&-1==n.indexOf("%")&&-1==n.indexOf(":")}function isSafeString2(n){return"string"==typeof n&&-1==n.indexOf("<")&&-1==n.indexOf(">")&&-1==n.indexOf("&")&&-1==n.indexOf('"')&&-1==n.indexOf("'")&&-1==n.indexOf("+")&&-1==n.indexOf("(")&&-1==n.indexOf(")")&&-1==n.indexOf("#")&&-1==n.indexOf("%")}function parseUriArgs(){var n,t=window.document.location.href,e={},r=(t=t.endsWith("#")?t.substring(0,t.length-1):t).split(/[\?&|]/);for(n in r.splice(0,1),r){var o,i=r[n],c=i.indexOf("=");e[o=i.substring(0,c)]=i.substring(c+1),isSafeString(e[o])?(c=parseInt(e[o]))==e[o]&&(e[o]=c):delete e[o]}return e}String.prototype.startsWith||(String.prototype.startsWith=function(n){return 0===this.lastIndexOf(n,0)}),String.prototype.endsWith||(String.prototype.endsWith=function(n){return-1!==this.indexOf(n,this.length-n.length)})
\ No newline at end of file
1
+function Q(n){return document.getElementById(n)}function QS(n){try{return Q(n).style}catch(n){}}function QE(n,t){try{Q(n).disabled=!t}catch(n){}}function QV(n,t){try{QS(n).display=t?"":"none"}catch(n){}}function QA(n,t){Q(n).innerHTML+=t}function QH(n,t){Q(n).innerHTML=t}function QC(n){try{return Q(n).classList}catch(n){}}function inputBoxFocus(n){Q(n).focus();var t=Q(n).value;Q(n).value="",Q(n).value=t}function ReadShort(n,t){return(n.charCodeAt(t)<<8)+n.charCodeAt(t+1)}function ReadShortX(n,t){return(n.charCodeAt(t+1)<<8)+n.charCodeAt(t)}function ReadInt(n,t){return 16777216*n.charCodeAt(t)+(n.charCodeAt(t+1)<<16)+(n.charCodeAt(t+2)<<8)+n.charCodeAt(t+3)}function ReadSInt(n,t){return(n.charCodeAt(t)<<24)+(n.charCodeAt(t+1)<<16)+(n.charCodeAt(t+2)<<8)+n.charCodeAt(t+3)}function ReadIntX(n,t){return 16777216*n.charCodeAt(t+3)+(n.charCodeAt(t+2)<<16)+(n.charCodeAt(t+1)<<8)+n.charCodeAt(t)}function ShortToStr(n){return String.fromCharCode(n>>8&255,255&n)}function ShortToStrX(n){return String.fromCharCode(255&n,n>>8&255)}function IntToStr(n){return String.fromCharCode(n>>24&255,n>>16&255,n>>8&255,255&n)}function IntToStrX(n){return String.fromCharCode(255&n,n>>8&255,n>>16&255,n>>24&255)}function MakeToArray(n){return n&&null!=n&&"object"!=typeof n?[n]:n}function SplitArray(n){return n.split(",")}function Clone(n){return JSON.parse(JSON.stringify(n))}function EscapeHtml(n){return"string"==typeof n?n.replace(/&/g,"&").replace(/>/g,">").replace(/</g,"<").replace(/"/g,""").replace(/'/g,"'"):"boolean"==typeof n||"number"==typeof n?n:void 0}function EscapeHtmlBreaks(n){return"string"==typeof n?n.replace(/&/g,"&").replace(/>/g,">").replace(/</g,"<").replace(/"/g,""").replace(/'/g,"'").replace(/\r/g,"<br />").replace(/\n/g,"").replace(/\t/g," "):"boolean"==typeof n||"number"==typeof n?n:void 0}function ArrayElementMove(n,t,r){n.splice(r,0,n.splice(t,1)[0])}function ObjectToStringEx(n,t){var r="";if(0!=n&&(!n||null==n))return"(Null)";if(n instanceof Array)for(var e in n)r+="<br />"+gap(t)+"Item #"+e+": "+ObjectToStringEx(n[e],t+1);else if(n instanceof Object)for(var e in n)r+="<br />"+gap(t)+e+" = "+ObjectToStringEx(n[e],t+1);else r+=EscapeHtml(n);return r}function ObjectToStringEx2(n,t){var r="";if(0!=n&&(!n||null==n))return"(Null)";if(n instanceof Array)for(var e in n)r+="\r\n"+gap2(t)+"Item #"+e+": "+ObjectToStringEx2(n[e],t+1);else if(n instanceof Object)for(var e in n)r+="\r\n"+gap2(t)+e+" = "+ObjectToStringEx2(n[e],t+1);else r+=EscapeHtml(n);return r}function gap(n){for(var t="",r=0;r<4*n;r++)t+=" ";return t}function gap2(n){for(var t="",r=0;r<4*n;r++)t+=" ";return t}function ObjectToString(n){return ObjectToStringEx(n,0)}function ObjectToString2(n){return ObjectToStringEx2(n,0)}function hex2rstr(n){if("string"!=typeof n||0==n.length)return"";for(var t,r="",e=(""+n).match(/../g);t=e.shift();)r+=String.fromCharCode("0x"+t);return r}function char2hex(n){return(n+256).toString(16).substr(-2).toUpperCase()}function rstr2hex(n){for(var t="",r=0;r<n.length;r++)t+=char2hex(n.charCodeAt(r));return t}function encode_utf8(n){return unescape(encodeURIComponent(n))}function decode_utf8(n){return decodeURIComponent(escape(n))}function data2blob(n){for(var t=new Array(n.length),r=0;r<n.length;r++)t[r]=n.charCodeAt(r);return new Blob([new Uint8Array(t)])}function utf2blob(n){for(var t=[],r=unescape(encodeURIComponent(n)),e=0;e<r.length;e++)t.push(r.charCodeAt(e));return new Blob([new Uint8Array(t)])}function random(n){return Math.floor(Math.random()*n)}function trademarks(n){return n.replace(/\(R\)/g,"®").replace(/\(TM\)/g,"™")}function zeroPad(n,t){n="00000000"+n;return n.substr(n.length-(t=null==t?2:t))}function isAlphaNumeric(n){return"number"==typeof n||null!=n.match(/^[A-Za-z0-9]+$/)}function isSafeString(n){return"string"==typeof n&&-1==n.indexOf("<")&&-1==n.indexOf(">")&&-1==n.indexOf("&")&&-1==n.indexOf('"')&&-1==n.indexOf("'")&&-1==n.indexOf("+")&&-1==n.indexOf("(")&&-1==n.indexOf(")")&&-1==n.indexOf("#")&&-1==n.indexOf("%")&&-1==n.indexOf(":")}function isSafeString2(n){return"string"==typeof n&&-1==n.indexOf("<")&&-1==n.indexOf(">")&&-1==n.indexOf("&")&&-1==n.indexOf('"')&&-1==n.indexOf("'")&&-1==n.indexOf("+")&&-1==n.indexOf("(")&&-1==n.indexOf(")")&&-1==n.indexOf("#")&&-1==n.indexOf("%")}function parseUriArgs(){var n,t=window.document.location.href,r={},e=(t=t.endsWith("#")?t.substring(0,t.length-1):t).split(/[\?&|]/);for(n in e.splice(0,1),e){var o,i=e[n],c=i.indexOf("=");r[o=i.substring(0,c)]=i.substring(c+1),isSafeString(r[o])?(c=parseInt(r[o]))==r[o]&&(r[o]=c):delete r[o]}return r}String.prototype.startsWith||(String.prototype.startsWith=function(n){return 0===this.lastIndexOf(n,0)}),String.prototype.endsWith||(String.prototype.endsWith=function(n){return-1!==this.indexOf(n,this.length-n.length)})
\ No newline at end of file
translate/translate.json
+2173
-2113
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->33->1618",
21
- "default.handlebars->33->1620"
20
+ "default.handlebars->33->1628",
21
+ "default.handlebars->33->1630"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->33->1519"
207
+ "default.handlebars->33->1529"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->33->1697",
228
- "default.handlebars->33->2185"
227
+ "default.handlebars->33->1707",
228
+ "default.handlebars->33->2195"
229
]
230
},
231
{
@@ -430,7 +430,7 @@
430
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
431
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
432
"xloc": [
433
- "default.handlebars->33->1666",
433
+ "default.handlebars->33->1676",
434
"default.handlebars->33->376"
435
]
436
},
@@ -505,8 +505,8 @@
505
"zh-chs": ",",
506
"zh-cht": ",",
507
"xloc": [
508
- "default-mobile.handlebars->11->611",
509
- "default.handlebars->33->1768"
508
+ "default-mobile.handlebars->11->621",
509
+ "default.handlebars->33->1778"
510
]
511
},
512
{
@@ -555,8 +555,8 @@
555
"zh-chs": ",MQTT在线",
556
"zh-cht": ",MQTT在線",
557
"xloc": [
558
- "default-mobile.handlebars->11->528",
559
- "default.handlebars->33->1229"
558
+ "default-mobile.handlebars->11->538",
559
+ "default.handlebars->33->1239"
560
]
561
},
562
{
@@ -565,7 +565,7 @@
565
"nl": ", Geen toestemming",
566
"de": ", keine Zustimmung",
567
"xloc": [
568
- "default.handlebars->33->805"
568
+ "default.handlebars->33->809"
569
]
570
},
571
{
@@ -585,7 +585,7 @@
585
"zh-chs": ",提示同意",
586
"zh-cht": ",提示同意",
587
"xloc": [
588
- "default.handlebars->33->806"
588
+ "default.handlebars->33->810"
589
]
590
},
591
{
@@ -605,7 +605,7 @@
605
"zh-chs": ",软体KVM",
606
"zh-cht": ",軟體KVM",
607
"xloc": [
608
- "default.handlebars->33->1007",
608
+ "default.handlebars->33->1013",
609
"sharing.handlebars->11->12"
610
]
611
},
@@ -614,7 +614,7 @@
614
"fr": ", barre d'outils",
615
"nl": ", Werkbalk",
616
"xloc": [
617
- "default.handlebars->33->807"
617
+ "default.handlebars->33->811"
618
]
619
},
620
{
@@ -623,7 +623,7 @@
623
"fr": ", Visualisation seulement",
624
"de": ", nur ansehen",
625
"xloc": [
626
- "default.handlebars->33->804"
626
+ "default.handlebars->33->808"
627
]
628
},
629
{
@@ -643,12 +643,12 @@
643
"zh-chs": ",WebRTC",
644
"zh-cht": ",WebRTC",
645
"xloc": [
646
- "default-mobile.handlebars->11->360",
647
- "default-mobile.handlebars->11->395",
648
- "default-mobile.handlebars->11->402",
649
- "default.handlebars->33->1014",
650
- "default.handlebars->33->1077",
651
- "default.handlebars->33->1092",
646
+ "default-mobile.handlebars->11->366",
647
+ "default-mobile.handlebars->11->401",
648
+ "default-mobile.handlebars->11->412",
649
+ "default.handlebars->33->1020",
650
+ "default.handlebars->33->1083",
651
+ "default.handlebars->33->1102",
652
"sharing.handlebars->11->19",
653
"sharing.handlebars->11->27",
654
"sharing.handlebars->11->44",
@@ -772,7 +772,7 @@
772
"zh-chs": ",{0}观看",
773
"zh-cht": ",{0}觀看",
774
"xloc": [
775
- "default.handlebars->33->1008",
775
+ "default.handlebars->33->1014",
776
"sharing.handlebars->11->13"
777
]
778
},
@@ -838,10 +838,10 @@
838
"zh-cht": "...",
839
"xloc": [
840
"default-mobile.handlebars->11->132",
841
- "default-mobile.handlebars->11->404",
842
- "default.handlebars->33->1098",
843
- "default.handlebars->33->1820",
844
- "default.handlebars->33->2354",
841
+ "default-mobile.handlebars->11->414",
842
+ "default.handlebars->33->1108",
843
+ "default.handlebars->33->1830",
844
+ "default.handlebars->33->2364",
845
"sharing.handlebars->11->50"
846
]
847
},
@@ -899,7 +899,7 @@
899
"zh-chs": "1个活跃时段",
900
"zh-cht": "1個活躍時段",
901
"xloc": [
902
- "default.handlebars->33->2258"
902
+ "default.handlebars->33->2268"
903
]
904
},
905
{
@@ -920,8 +920,8 @@
920
"zh-cht": "1個位元組",
921
"xloc": [
922
"default-mobile.handlebars->11->142",
923
- "default-mobile.handlebars->11->654",
924
- "default.handlebars->33->1844",
923
+ "default-mobile.handlebars->11->664",
924
+ "default.handlebars->33->1854",
925
"download.handlebars->3->1",
926
"download2.handlebars->5->1",
927
"sharing.handlebars->11->96"
@@ -944,7 +944,7 @@
944
"zh-chs": "1条连接",
945
"zh-cht": "1位聯絡文",
946
"xloc": [
947
- "default.handlebars->33->1010",
947
+ "default.handlebars->33->1016",
948
"sharing.handlebars->11->15"
949
]
950
},
@@ -987,7 +987,7 @@
987
"zh-chs": "1组",
988
"zh-cht": "1群",
989
"xloc": [
990
- "default.handlebars->33->2219"
990
+ "default.handlebars->33->2229"
991
]
992
},
993
{
@@ -1029,8 +1029,8 @@
1029
"zh-chs": "1分钟",
1030
"zh-cht": "1分鐘",
1031
"xloc": [
1032
- "default.handlebars->33->1485",
1033
- "default.handlebars->33->872"
1032
+ "default.handlebars->33->1495",
1033
+ "default.handlebars->33->876"
1034
]
1035
},
1036
{
@@ -1092,7 +1092,7 @@
1092
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1093
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1094
"xloc": [
1095
- "default.handlebars->33->2009"
1095
+ "default.handlebars->33->2019"
1096
]
1097
},
1098
{
@@ -1120,8 +1120,8 @@
1120
"nl": "1 seconde",
1121
"fr": "1 seconde",
1122
"xloc": [
1123
- "default-mobile.handlebars->11->314",
1124
- "default.handlebars->33->900"
1123
+ "default-mobile.handlebars->11->318",
1124
+ "default.handlebars->33->904"
1125
]
1126
},
1127
{
@@ -1167,7 +1167,7 @@
1167
"default-mobile.handlebars->11->204",
1168
"default-mobile.handlebars->11->207",
1169
"default-mobile.handlebars->11->210",
1170
- "default.handlebars->33->2013",
1170
+ "default.handlebars->33->2023",
1171
"default.handlebars->33->309",
1172
"default.handlebars->33->312",
1173
"default.handlebars->33->315",
@@ -1299,8 +1299,8 @@
1299
"zh-chs": "10分钟",
1300
"zh-cht": "10分鐘",
1301
"xloc": [
1302
- "default.handlebars->33->1487",
1303
- "default.handlebars->33->874"
1302
+ "default.handlebars->33->1497",
1303
+ "default.handlebars->33->878"
1304
]
1305
},
1306
{
@@ -1308,8 +1308,8 @@
1308
"nl": "10 seconden",
1309
"fr": "10 secondes",
1310
"xloc": [
1311
- "default-mobile.handlebars->11->316",
1312
- "default.handlebars->33->902"
1311
+ "default-mobile.handlebars->11->320",
1312
+ "default.handlebars->33->906"
1313
]
1314
},
1315
{
@@ -1392,8 +1392,8 @@
1392
"zh-chs": "12小时",
1393
"zh-cht": "12小時",
1394
"xloc": [
1395
- "default.handlebars->33->1495",
1396
- "default.handlebars->33->882"
1395
+ "default.handlebars->33->1505",
1396
+ "default.handlebars->33->886"
1397
]
1398
},
1399
{
@@ -1435,8 +1435,8 @@
1435
"zh-chs": "15分钟",
1436
"zh-cht": "15分鐘",
1437
"xloc": [
1438
- "default.handlebars->33->1488",
1439
- "default.handlebars->33->875"
1438
+ "default.handlebars->33->1498",
1439
+ "default.handlebars->33->879"
1440
]
1441
},
1442
{
@@ -1456,8 +1456,8 @@
1456
"zh-chs": "16小时",
1457
"zh-cht": "16小時",
1458
"xloc": [
1459
- "default.handlebars->33->1496",
1460
- "default.handlebars->33->883"
1459
+ "default.handlebars->33->1506",
1460
+ "default.handlebars->33->887"
1461
]
1462
},
1463
{
@@ -1477,8 +1477,8 @@
1477
"zh-chs": "2天",
1478
"zh-cht": "2天",
1479
"xloc": [
1480
- "default.handlebars->33->1498",
1481
- "default.handlebars->33->885"
1480
+ "default.handlebars->33->1508",
1481
+ "default.handlebars->33->889"
1482
]
1483
},
1484
{
@@ -1498,8 +1498,8 @@
1498
"zh-chs": "2小时",
1499
"zh-cht": "2小時",
1500
"xloc": [
1501
- "default.handlebars->33->1492",
1502
- "default.handlebars->33->879"
1501
+ "default.handlebars->33->1502",
1502
+ "default.handlebars->33->883"
1503
]
1504
},
1505
{
@@ -1603,8 +1603,8 @@
1603
"zh-chs": "24小时",
1604
"zh-cht": "24小時",
1605
"xloc": [
1606
- "default.handlebars->33->1497",
1607
- "default.handlebars->33->884"
1606
+ "default.handlebars->33->1507",
1607
+ "default.handlebars->33->888"
1608
]
1609
},
1610
{
@@ -1666,7 +1666,7 @@
1666
"zh-chs": "2FA备份代码已清除",
1667
"zh-cht": "2FA備份代碼已清除",
1668
"xloc": [
1669
- "default.handlebars->33->1955"
1669
+ "default.handlebars->33->1965"
1670
]
1671
},
1672
{
@@ -1686,8 +1686,8 @@
1686
"zh-chs": "启用第二因素身份验证",
1687
"zh-cht": "啟用第二因素身份驗證",
1688
"xloc": [
1689
- "default.handlebars->33->2026",
1690
- "default.handlebars->33->2241"
1689
+ "default.handlebars->33->2036",
1690
+ "default.handlebars->33->2251"
1691
]
1692
},
1693
{
@@ -1723,7 +1723,7 @@
1723
"pt": "3",
1724
"ru": "3",
1725
"xloc": [
1726
- "default-mobile.handlebars->11->430"
1726
+ "default-mobile.handlebars->11->440"
1727
]
1728
},
1729
{
@@ -1806,8 +1806,8 @@
1806
"zh-chs": "30分钟",
1807
"zh-cht": "30分鐘",
1808
"xloc": [
1809
- "default.handlebars->33->1489",
1810
- "default.handlebars->33->876"
1809
+ "default.handlebars->33->1499",
1810
+ "default.handlebars->33->880"
1811
]
1812
},
1813
{
@@ -1870,8 +1870,8 @@
1870
"zh-chs": "4天",
1871
"zh-cht": "4天",
1872
"xloc": [
1873
- "default.handlebars->33->1499",
1874
- "default.handlebars->33->886"
1873
+ "default.handlebars->33->1509",
1874
+ "default.handlebars->33->890"
1875
]
1876
},
1877
{
@@ -1891,8 +1891,8 @@
1891
"zh-chs": "4个小时",
1892
"zh-cht": "4個小時",
1893
"xloc": [
1894
- "default.handlebars->33->1493",
1895
- "default.handlebars->33->880"
1894
+ "default.handlebars->33->1503",
1895
+ "default.handlebars->33->884"
1896
]
1897
},
1898
{
@@ -1975,8 +1975,8 @@
1975
"zh-chs": "45分钟",
1976
"zh-cht": "45分鐘",
1977
"xloc": [
1978
- "default.handlebars->33->1490",
1979
- "default.handlebars->33->877"
1978
+ "default.handlebars->33->1500",
1979
+ "default.handlebars->33->881"
1980
]
1981
},
1982
{
@@ -2016,8 +2016,8 @@
2016
"zh-chs": "5分钟",
2017
"zh-cht": "5分鐘",
2018
"xloc": [
2019
- "default.handlebars->33->1486",
2020
- "default.handlebars->33->873"
2019
+ "default.handlebars->33->1496",
2020
+ "default.handlebars->33->877"
2021
]
2022
},
2023
{
@@ -2025,8 +2025,8 @@
2025
"nl": "5 seconden",
2026
"fr": "5 secondes",
2027
"xloc": [
2028
- "default-mobile.handlebars->11->315",
2029
- "default.handlebars->33->901"
2028
+ "default-mobile.handlebars->11->319",
2029
+ "default.handlebars->33->905"
2030
]
2031
},
2032
{
@@ -2152,8 +2152,8 @@
2152
"zh-chs": "60分钟",
2153
"zh-cht": "60分鐘",
2154
"xloc": [
2155
- "default.handlebars->33->1491",
2156
- "default.handlebars->33->878"
2155
+ "default.handlebars->33->1501",
2156
+ "default.handlebars->33->882"
2157
]
2158
},
2159
{
@@ -2273,7 +2273,7 @@
2273
"zh-chs": "7天电源状态",
2274
"zh-cht": "7天電源狀態",
2275
"xloc": [
2276
- "default.handlebars->33->935"
2276
+ "default.handlebars->33->939"
2277
]
2278
},
2279
{
@@ -2336,10 +2336,10 @@
2336
"zh-chs": "8小時",
2337
"zh-cht": "8小時",
2338
"xloc": [
2339
- "default.handlebars->33->1494",
2339
+ "default.handlebars->33->1504",
2340
"default.handlebars->33->400",
2341
"default.handlebars->33->414",
2342
- "default.handlebars->33->881"
2342
+ "default.handlebars->33->885"
2343
]
2344
},
2345
{
@@ -2571,7 +2571,7 @@
2571
"zh-cht": "ACM",
2572
"xloc": [
2573
"default-mobile.handlebars->11->274",
2574
- "default.handlebars->33->1634",
2574
+ "default.handlebars->33->1644",
2575
"default.handlebars->33->673"
2576
]
2577
},
@@ -2635,7 +2635,7 @@
2635
"nl": "AMT-OS",
2636
"fr": "AMT-OS",
2637
"xloc": [
2638
- "default.handlebars->33->2432"
2638
+ "default.handlebars->33->2442"
2639
]
2640
},
2641
{
@@ -2748,8 +2748,8 @@
2748
"nl": "Anti-virus",
2749
"fr": "Antivirus",
2750
"xloc": [
2751
- "default-mobile.handlebars->11->440",
2752
- "default-mobile.handlebars->11->442",
2751
+ "default-mobile.handlebars->11->450",
2752
+ "default-mobile.handlebars->11->452",
2753
"default.handlebars->33->692",
2754
"default.handlebars->33->694"
2755
]
@@ -2771,8 +2771,8 @@
2771
"zh-chs": "拒绝访问",
2772
"zh-cht": "拒絕存取",
2773
"xloc": [
2774
- "default-mobile.handlebars->11->529",
2775
- "default.handlebars->33->1230"
2774
+ "default-mobile.handlebars->11->539",
2775
+ "default.handlebars->33->1240"
2776
]
2777
},
2778
{
@@ -2822,7 +2822,7 @@
2822
"zh-chs": "访问服务器档案",
2823
"zh-cht": "存取伺服器檔案",
2824
"xloc": [
2825
- "default.handlebars->33->2191"
2825
+ "default.handlebars->33->2201"
2826
]
2827
},
2828
{
@@ -2911,9 +2911,9 @@
2911
"default-mobile.handlebars->11->243",
2912
"default-mobile.handlebars->11->245",
2913
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
2914
- "default.handlebars->33->1528",
2915
- "default.handlebars->33->1530",
2916
- "default.handlebars->33->2483",
2914
+ "default.handlebars->33->1538",
2915
+ "default.handlebars->33->1540",
2916
+ "default.handlebars->33->2493",
2917
"default.handlebars->33->635",
2918
"default.handlebars->33->637"
2919
]
@@ -2924,8 +2924,8 @@
2924
"fr": "Paramètres du compte",
2925
"de": "Konto Einstellungen",
2926
"xloc": [
2927
- "default-mobile.handlebars->11->622",
2928
- "default.handlebars->33->2362"
2927
+ "default-mobile.handlebars->11->632",
2928
+ "default.handlebars->33->2372"
2929
]
2930
},
2931
{
@@ -2986,7 +2986,7 @@
2986
"zh-chs": "帐户已更改:{0}",
2987
"zh-cht": "帳戶已更改:{0}",
2988
"xloc": [
2989
- "default.handlebars->33->1928"
2989
+ "default.handlebars->33->1938"
2990
]
2991
},
2992
{
@@ -3006,7 +3006,7 @@
3006
"zh-chs": "创建帐户,电子邮件为{0}",
3007
"zh-cht": "創建帳戶,電子郵件為{0}",
3008
"xloc": [
3009
- "default.handlebars->33->1927"
3009
+ "default.handlebars->33->1937"
3010
]
3011
},
3012
{
@@ -3026,7 +3026,7 @@
3026
"zh-chs": "创建帐户,用户名是{0}",
3027
"zh-cht": "帳戶已創建,用戶名是{0}",
3028
"xloc": [
3029
- "default.handlebars->33->1926"
3029
+ "default.handlebars->33->1936"
3030
]
3031
},
3032
{
@@ -3046,8 +3046,8 @@
3046
"zh-chs": "帐户已被锁定",
3047
"zh-cht": "帳戶已被鎖定",
3048
"xloc": [
3049
- "default.handlebars->33->2028",
3050
- "default.handlebars->33->2188"
3049
+ "default.handlebars->33->2038",
3050
+ "default.handlebars->33->2198"
3051
]
3052
},
3053
{
@@ -3067,8 +3067,8 @@
3067
"zh-chs": "达到帐户限制。",
3068
"zh-cht": "達到帳戶限制。",
3069
"xloc": [
3070
- "default-mobile.handlebars->11->634",
3071
- "default.handlebars->33->2374",
3070
+ "default-mobile.handlebars->11->644",
3071
+ "default.handlebars->33->2384",
3072
"login-mobile.handlebars->5->6",
3073
"login.handlebars->5->6",
3074
"login2.handlebars->7->8"
@@ -3113,7 +3113,7 @@
3113
"zh-chs": "帐号登录",
3114
"zh-cht": "帳號登錄",
3115
"xloc": [
3116
- "default.handlebars->33->1863"
3116
+ "default.handlebars->33->1873"
3117
]
3118
},
3119
{
@@ -3122,7 +3122,7 @@
3122
"fr": "Connexion de {0}, {1}, {2}",
3123
"de": "Konto Login von {0}, {1}, {2}",
3124
"xloc": [
3125
- "default.handlebars->33->1969"
3125
+ "default.handlebars->33->1979"
3126
]
3127
},
3128
{
@@ -3142,7 +3142,7 @@
3142
"zh-chs": "帐户登出",
3143
"zh-cht": "帳戶登出",
3144
"xloc": [
3145
- "default.handlebars->33->1864"
3145
+ "default.handlebars->33->1874"
3146
]
3147
},
3148
{
@@ -3184,7 +3184,7 @@
3184
"zh-chs": "帐户密码已更改:{0}",
3185
"zh-cht": "帳戶密碼已更改:{0}",
3186
"xloc": [
3187
- "default.handlebars->33->1936"
3187
+ "default.handlebars->33->1946"
3188
]
3189
},
3190
{
@@ -3204,7 +3204,7 @@
3204
"zh-chs": "帐户已删除",
3205
"zh-cht": "帳戶已刪除",
3206
"xloc": [
3207
- "default.handlebars->33->1925"
3207
+ "default.handlebars->33->1935"
3208
]
3209
},
3210
{
@@ -3244,8 +3244,8 @@
3244
"zh-chs": "指令",
3245
"zh-cht": "指令",
3246
"xloc": [
3247
- "default-mobile.handlebars->11->535",
3248
- "default.handlebars->33->1236",
3247
+ "default-mobile.handlebars->11->545",
3248
+ "default.handlebars->33->1246",
3249
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3250
]
3251
},
@@ -3266,8 +3266,8 @@
3266
"zh-chs": "动作档案",
3267
"zh-cht": "動作檔案",
3268
"xloc": [
3269
- "default.handlebars->33->981",
3270
- "default.handlebars->33->983"
3269
+ "default.handlebars->33->985",
3270
+ "default.handlebars->33->987"
3271
]
3272
},
3273
{
@@ -3287,11 +3287,11 @@
3287
"zh-chs": "动作",
3288
"zh-cht": "動作",
3289
"xloc": [
3290
- "default-mobile.handlebars->11->297",
3290
+ "default-mobile.handlebars->11->301",
3291
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3292
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3293
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
3294
- "default.handlebars->33->735",
3294
+ "default.handlebars->33->739",
3295
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3296
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3297
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3374,7 +3374,7 @@
3374
"zh-chs": "如果ACM失败,则激活到CCM",
3375
"zh-cht": "如果ACM失敗,則激活到CCM",
3376
"xloc": [
3377
- "default.handlebars->33->1657"
3377
+ "default.handlebars->33->1667"
3378
]
3379
},
3380
{
@@ -3396,8 +3396,8 @@
3396
"xloc": [
3397
"default-mobile.handlebars->11->269",
3398
"default-mobile.handlebars->11->271",
3399
- "default-mobile.handlebars->11->491",
3400
- "default.handlebars->33->1191",
3399
+ "default-mobile.handlebars->11->501",
3400
+ "default.handlebars->33->1201",
3401
"default.handlebars->33->666",
3402
"default.handlebars->33->668"
3403
]
@@ -3439,7 +3439,7 @@
3439
"zh-chs": "主动设备共享",
3440
"zh-cht": "主動設備共享",
3441
"xloc": [
3442
- "default.handlebars->33->793"
3442
+ "default.handlebars->33->797"
3443
]
3444
},
3445
{
@@ -3447,7 +3447,7 @@
3447
"nl": "Actieve login-tokens",
3448
"fr": "Jetons de connexion actifs",
3449
"xloc": [
3450
- "default.handlebars->33->1549"
3450
+ "default.handlebars->33->1559"
3451
]
3452
},
3453
{
@@ -3473,8 +3473,8 @@
3473
"nl": "Toevoegen",
3474
"de": "hinzufügen",
3475
"xloc": [
3476
- "default-mobile.handlebars->11->387",
3477
- "default.handlebars->33->1045"
3476
+ "default-mobile.handlebars->11->393",
3477
+ "default.handlebars->33->1051"
3478
]
3479
},
3480
{
@@ -3494,7 +3494,7 @@
3494
"zh-chs": "添加代理",
3495
"zh-cht": "新增代理",
3496
"xloc": [
3497
- "default.handlebars->33->1630",
3497
+ "default.handlebars->33->1640",
3498
"default.handlebars->33->342"
3499
]
3500
},
@@ -3532,8 +3532,8 @@
3532
"zh-chs": "添加设备",
3533
"zh-cht": "新增裝置",
3534
"xloc": [
3535
- "default.handlebars->33->2165",
3536
- "default.handlebars->33->2295",
3535
+ "default.handlebars->33->2175",
3536
+ "default.handlebars->33->2305",
3537
"default.handlebars->33->346"
3538
]
3539
},
@@ -3554,7 +3554,7 @@
3554
"zh-chs": "添加设备日志",
3555
"zh-cht": "新增裝置日誌",
3556
"xloc": [
3557
- "default.handlebars->33->849"
3557
+ "default.handlebars->33->853"
3558
]
3559
},
3560
{
@@ -3574,9 +3574,9 @@
3574
"zh-chs": "添加设备组",
3575
"zh-cht": "新增裝置群",
3576
"xloc": [
3577
- "default.handlebars->33->1732",
3578
- "default.handlebars->33->2159",
3579
- "default.handlebars->33->2283",
3577
+ "default.handlebars->33->1742",
3578
+ "default.handlebars->33->2169",
3579
+ "default.handlebars->33->2293",
3580
"default.handlebars->33->276"
3581
]
3582
},
@@ -3597,7 +3597,7 @@
3597
"zh-chs": "添加设备组权限",
3598
"zh-cht": "新增裝置群權限",
3599
"xloc": [
3600
- "default.handlebars->33->1729"
3600
+ "default.handlebars->33->1739"
3601
]
3602
},
3603
{
@@ -3617,8 +3617,8 @@
3617
"zh-chs": "添加设备权限",
3618
"zh-cht": "新增裝置權限",
3619
"xloc": [
3620
- "default.handlebars->33->1734",
3621
- "default.handlebars->33->1736"
3620
+ "default.handlebars->33->1744",
3621
+ "default.handlebars->33->1746"
3622
]
3623
},
3624
{
@@ -3715,7 +3715,7 @@
3715
"zh-chs": "添加成员身份",
3716
"zh-cht": "新增成員身份",
3717
"xloc": [
3718
- "default.handlebars->33->2315"
3718
+ "default.handlebars->33->2325"
3719
]
3720
},
3721
{
@@ -3755,8 +3755,8 @@
3755
"zh-chs": "添加安全密钥",
3756
"zh-cht": "新增安全密鑰",
3757
"xloc": [
3758
- "default.handlebars->33->1275",
3759
- "default.handlebars->33->1276",
3758
+ "default.handlebars->33->1285",
3759
+ "default.handlebars->33->1286",
3760
"default.handlebars->33->167",
3761
"default.handlebars->33->169",
3762
"default.handlebars->33->172",
@@ -3780,8 +3780,8 @@
3780
"zh-chs": "添加用户",
3781
"zh-cht": "新增用戶",
3782
"xloc": [
3783
- "default-mobile.handlebars->11->551",
3784
- "default.handlebars->33->785"
3783
+ "default-mobile.handlebars->11->561",
3784
+ "default.handlebars->33->789"
3785
]
3786
},
3787
{
@@ -3801,7 +3801,7 @@
3801
"zh-chs": "添加用户设备权限",
3802
"zh-cht": "新增用戶裝置權限",
3803
"xloc": [
3804
- "default.handlebars->33->1739"
3804
+ "default.handlebars->33->1749"
3805
]
3806
},
3807
{
@@ -3821,10 +3821,10 @@
3821
"zh-chs": "添加用户组",
3822
"zh-cht": "新增用戶群",
3823
"xloc": [
3824
- "default.handlebars->33->1626",
3825
- "default.handlebars->33->1731",
3826
- "default.handlebars->33->2289",
3827
- "default.handlebars->33->786"
3824
+ "default.handlebars->33->1636",
3825
+ "default.handlebars->33->1741",
3826
+ "default.handlebars->33->2299",
3827
+ "default.handlebars->33->790"
3828
]
3829
},
3830
{
@@ -3844,7 +3844,7 @@
3844
"zh-chs": "添加用户组设备权限",
3845
"zh-cht": "新增用戶群裝置權限",
3846
"xloc": [
3847
- "default.handlebars->33->1741"
3847
+ "default.handlebars->33->1751"
3848
]
3849
},
3850
{
@@ -3864,7 +3864,7 @@
3864
"zh-chs": "将用户添加到设备组",
3865
"zh-cht": "將用戶新增到裝置群",
3866
"xloc": [
3867
- "default-mobile.handlebars->11->587"
3867
+ "default-mobile.handlebars->11->597"
3868
]
3869
},
3870
{
@@ -3901,8 +3901,8 @@
3901
"zh-chs": "添加用户",
3902
"zh-cht": "新增用戶",
3903
"xloc": [
3904
- "default.handlebars->33->1625",
3905
- "default.handlebars->33->2154"
3904
+ "default.handlebars->33->1635",
3905
+ "default.handlebars->33->2164"
3906
]
3907
},
3908
{
@@ -3922,7 +3922,7 @@
3922
"zh-chs": "将用户添加到设备组",
3923
"zh-cht": "將用戶新增到裝置群",
3924
"xloc": [
3925
- "default.handlebars->33->1728"
3925
+ "default.handlebars->33->1738"
3926
]
3927
},
3928
{
@@ -3942,7 +3942,7 @@
3942
"zh-chs": "将用户添加到用户组",
3943
"zh-cht": "將用戶新增到用戶群",
3944
"xloc": [
3945
- "default.handlebars->33->2187"
3945
+ "default.handlebars->33->2197"
3946
]
3947
},
3948
{
@@ -4067,7 +4067,7 @@
4067
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
4068
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
4069
"xloc": [
4070
- "default.handlebars->33->1629",
4070
+ "default.handlebars->33->1639",
4071
"default.handlebars->33->341"
4072
]
4073
},
@@ -4144,7 +4144,7 @@
4144
"zh-chs": "添加了身份验证应用程序",
4145
"zh-cht": "添加了身份驗證應用程序",
4146
"xloc": [
4147
- "default.handlebars->33->1952"
4147
+ "default.handlebars->33->1962"
4148
]
4149
},
4150
{
@@ -4164,7 +4164,7 @@
4164
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4165
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4166
"xloc": [
4167
- "default.handlebars->33->1963"
4167
+ "default.handlebars->33->1973"
4168
]
4169
},
4170
{
@@ -4184,8 +4184,8 @@
4184
"zh-chs": "已将设备{0}添加到设备组{1}",
4185
"zh-cht": "已將設備{0}添加到設備組{1}",
4186
"xloc": [
4187
- "default.handlebars->33->1919",
4188
- "default.handlebars->33->1946"
4187
+ "default.handlebars->33->1929",
4188
+ "default.handlebars->33->1956"
4189
]
4190
},
4191
{
@@ -4193,7 +4193,7 @@
4193
"nl": "Inlogtoken toegevoegd",
4194
"fr": "Jeton de connexion ajouté",
4195
"xloc": [
4196
- "default.handlebars->33->1977"
4196
+ "default.handlebars->33->1987"
4197
]
4198
},
4199
{
@@ -4201,7 +4201,7 @@
4201
"nl": "Verificatie apparaat voor pushmeldingen toegevoegd",
4202
"fr": "Appareil d'authentification par notification ajouté",
4203
"xloc": [
4204
- "default.handlebars->33->1975"
4204
+ "default.handlebars->33->1985"
4205
]
4206
},
4207
{
@@ -4221,7 +4221,7 @@
4221
"zh-chs": "添加了安全密钥",
4222
"zh-cht": "添加了安全密鑰",
4223
"xloc": [
4224
- "default.handlebars->33->1957"
4224
+ "default.handlebars->33->1967"
4225
]
4226
},
4227
{
@@ -4241,7 +4241,7 @@
4241
"zh-chs": "已将用户组{0}添加到设备组{1}",
4242
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4243
"xloc": [
4244
- "default.handlebars->33->1930"
4244
+ "default.handlebars->33->1940"
4245
]
4246
},
4247
{
@@ -4261,8 +4261,8 @@
4261
"zh-chs": "已将用户{0}添加到用户组{1}",
4262
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4263
"xloc": [
4264
- "default.handlebars->33->1933",
4265
- "default.handlebars->33->1942"
4264
+ "default.handlebars->33->1943",
4265
+ "default.handlebars->33->1952"
4266
]
4267
},
4268
{
@@ -4322,8 +4322,8 @@
4322
"zh-chs": "管理员控制模式(ACM)",
4323
"zh-cht": "管理員控制模式(ACM)",
4324
"xloc": [
4325
- "default-mobile.handlebars->11->493",
4326
- "default.handlebars->33->1193"
4325
+ "default-mobile.handlebars->11->503",
4326
+ "default.handlebars->33->1203"
4327
]
4328
},
4329
{
@@ -4343,8 +4343,8 @@
4343
"zh-chs": "管理员凭证",
4344
"zh-cht": "管理員憑證",
4345
"xloc": [
4346
- "default-mobile.handlebars->11->499",
4347
- "default.handlebars->33->1199"
4346
+ "default-mobile.handlebars->11->509",
4347
+ "default.handlebars->33->1209"
4348
]
4349
},
4350
{
@@ -4385,7 +4385,7 @@
4385
"zh-chs": "管理领域",
4386
"zh-cht": "管理領域",
4387
"xloc": [
4388
- "default.handlebars->33->2223"
4388
+ "default.handlebars->33->2233"
4389
]
4390
},
4391
{
@@ -4426,7 +4426,7 @@
4426
"zh-chs": "管理领域",
4427
"zh-cht": "管理領域",
4428
"xloc": [
4429
- "default.handlebars->33->2091"
4429
+ "default.handlebars->33->2101"
4430
]
4431
},
4432
{
@@ -4446,7 +4446,7 @@
4446
"zh-chs": "管理员",
4447
"zh-cht": "管理員",
4448
"xloc": [
4449
- "default.handlebars->33->2020"
4449
+ "default.handlebars->33->2030"
4450
]
4451
},
4452
{
@@ -4466,7 +4466,7 @@
4466
"zh-chs": "南非文",
4467
"zh-cht": "南非文",
4468
"xloc": [
4469
- "default.handlebars->33->1278"
4469
+ "default.handlebars->33->1288"
4470
]
4471
},
4472
{
@@ -4490,9 +4490,9 @@
4490
"default-mobile.handlebars->11->235",
4491
"default-mobile.handlebars->11->288",
4492
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
4493
- "default.handlebars->33->1795",
4494
- "default.handlebars->33->1808",
4495
- "default.handlebars->33->2430",
4493
+ "default.handlebars->33->1805",
4494
+ "default.handlebars->33->1818",
4495
+ "default.handlebars->33->2440",
4496
"default.handlebars->33->292",
4497
"default.handlebars->33->503",
4498
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -4515,8 +4515,8 @@
4515
"zh-chs": "代理+英特尔AMT",
4516
"zh-cht": "代理+Intel® AMT",
4517
"xloc": [
4518
- "default.handlebars->33->1797",
4519
- "default.handlebars->33->1810"
4518
+ "default.handlebars->33->1807",
4519
+ "default.handlebars->33->1820"
4520
]
4521
},
4522
{
@@ -4557,8 +4557,8 @@
4557
"zh-chs": "代理控制台",
4558
"zh-cht": "代理控制台",
4559
"xloc": [
4560
- "default-mobile.handlebars->11->593",
4561
- "default.handlebars->33->1749"
4560
+ "default-mobile.handlebars->11->603",
4561
+ "default.handlebars->33->1759"
4562
]
4563
},
4564
{
@@ -4578,7 +4578,7 @@
4578
"zh-chs": "代理错误计数器",
4579
"zh-cht": "代理錯誤計數器",
4580
"xloc": [
4581
- "default.handlebars->33->2399"
4581
+ "default.handlebars->33->2409"
4582
]
4583
},
4584
{
@@ -4690,7 +4690,7 @@
4690
"zh-chs": "代理时段",
4691
"zh-cht": "代理時段",
4692
"xloc": [
4693
- "default.handlebars->33->2415"
4693
+ "default.handlebars->33->2425"
4694
]
4695
},
4696
{
@@ -4731,7 +4731,7 @@
4731
"zh-chs": "代理类型",
4732
"zh-cht": "代理類型",
4733
"xloc": [
4734
- "default.handlebars->33->1806",
4734
+ "default.handlebars->33->1816",
4735
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
4736
]
4737
},
@@ -4752,7 +4752,7 @@
4752
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4753
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4754
"xloc": [
4755
- "default.handlebars->33->1916"
4755
+ "default.handlebars->33->1926"
4756
]
4757
},
4758
{
@@ -4773,8 +4773,8 @@
4773
"zh-cht": "代理已連接",
4774
"xloc": [
4775
"default.handlebars->33->181",
4776
- "default.handlebars->33->776",
4777
- "default.handlebars->33->777"
4776
+ "default.handlebars->33->780",
4777
+ "default.handlebars->33->781"
4778
]
4779
},
4780
{
@@ -4814,8 +4814,8 @@
4814
"zh-chs": "代理离线",
4815
"zh-cht": "代理離線",
4816
"xloc": [
4817
- "default-mobile.handlebars->11->527",
4818
- "default.handlebars->33->1228"
4817
+ "default-mobile.handlebars->11->537",
4818
+ "default.handlebars->33->1238"
4819
]
4820
},
4821
{
@@ -4835,8 +4835,8 @@
4835
"zh-chs": "代理在线",
4836
"zh-cht": "代理在線",
4837
"xloc": [
4838
- "default-mobile.handlebars->11->526",
4839
- "default.handlebars->33->1227"
4838
+ "default-mobile.handlebars->11->536",
4839
+ "default.handlebars->33->1237"
4840
]
4841
},
4842
{
@@ -4857,7 +4857,7 @@
4857
"zh-cht": "代理在特權降低的遠程設備上運行。",
4858
"xloc": [
4859
"default.handlebars->33->179",
4860
- "default.handlebars->33->774"
4860
+ "default.handlebars->33->778"
4861
]
4862
},
4863
{
@@ -4877,7 +4877,7 @@
4877
"zh-chs": "代理",
4878
"zh-cht": "代理",
4879
"xloc": [
4880
- "default.handlebars->33->2443"
4880
+ "default.handlebars->33->2453"
4881
]
4882
},
4883
{
@@ -4897,7 +4897,7 @@
4897
"zh-chs": "阿尔巴尼亚文",
4898
"zh-cht": "阿爾巴尼亞文",
4899
"xloc": [
4900
- "default.handlebars->33->1279"
4900
+ "default.handlebars->33->1289"
4901
]
4902
},
4903
{
@@ -4918,8 +4918,8 @@
4918
"zh-cht": "所有",
4919
"xloc": [
4920
"default-mobile.handlebars->11->141",
4921
- "default-mobile.handlebars->11->405",
4922
- "default-mobile.handlebars->11->407",
4921
+ "default-mobile.handlebars->11->415",
4922
+ "default-mobile.handlebars->11->417",
4923
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4924
]
4925
},
@@ -4940,7 +4940,7 @@
4940
"zh-chs": "全部可用",
4941
"zh-cht": "全部可用",
4942
"xloc": [
4943
- "default.handlebars->33->1983"
4943
+ "default.handlebars->33->1993"
4944
]
4945
},
4946
{
@@ -4960,7 +4960,7 @@
4960
"zh-chs": "所有显示",
4961
"zh-cht": "所有顯示",
4962
"xloc": [
4963
- "default.handlebars->33->1070"
4963
+ "default.handlebars->33->1076"
4964
]
4965
},
4966
{
@@ -4980,7 +4980,7 @@
4980
"zh-chs": "所有事件",
4981
"zh-cht": "所有事件",
4982
"xloc": [
4983
- "default.handlebars->33->1981"
4983
+ "default.handlebars->33->1991"
4984
]
4985
},
4986
{
@@ -5000,9 +5000,9 @@
5000
"zh-chs": "全部聚焦",
5001
"zh-cht": "全部聚焦",
5002
"xloc": [
5003
- "default.handlebars->33->1015",
5004
- "default.handlebars->33->1017",
5005
- "default.handlebars->33->1018"
5003
+ "default.handlebars->33->1021",
5004
+ "default.handlebars->33->1023",
5005
+ "default.handlebars->33->1024"
5006
]
5007
},
5008
{
@@ -5022,8 +5022,8 @@
5022
"zh-chs": "允许用户管理此设备组和该组中的设备。",
5023
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
5024
"xloc": [
5025
- "default.handlebars->33->1695",
5026
- "default.handlebars->33->2184"
5025
+ "default.handlebars->33->1705",
5026
+ "default.handlebars->33->2194"
5027
]
5028
},
5029
{
@@ -5043,7 +5043,7 @@
5043
"zh-chs": "允许用户管理此设备。",
5044
"zh-cht": "允許用戶管理此裝置。",
5045
"xloc": [
5046
- "default.handlebars->33->1696"
5046
+ "default.handlebars->33->1706"
5047
]
5048
},
5049
{
@@ -5081,10 +5081,10 @@
5081
"fr": "Alt",
5082
"nl": "Alt",
5083
"xloc": [
5084
- "default-mobile.handlebars->11->380",
5085
- "default-mobile.handlebars->11->384",
5086
- "default.handlebars->33->1038",
5087
- "default.handlebars->33->1042"
5084
+ "default-mobile.handlebars->11->386",
5085
+ "default-mobile.handlebars->11->390",
5086
+ "default.handlebars->33->1044",
5087
+ "default.handlebars->33->1048"
5088
]
5089
},
5090
{
@@ -5146,7 +5146,7 @@
5146
"zh-chs": "备用(F10 = ESC + 0)",
5147
"zh-cht": "備用(F10 = ESC + 0)",
5148
"xloc": [
5149
- "default.handlebars->33->1085",
5149
+ "default.handlebars->33->1095",
5150
"sharing.handlebars->11->37"
5151
]
5152
},
@@ -5189,9 +5189,9 @@
5189
"zh-chs": "一直通知",
5190
"zh-cht": "一直通知",
5191
"xloc": [
5192
- "default.handlebars->33->1605",
5193
- "default.handlebars->33->2145",
5194
- "default.handlebars->33->2232",
5192
+ "default.handlebars->33->1615",
5193
+ "default.handlebars->33->2155",
5194
+ "default.handlebars->33->2242",
5195
"default.handlebars->33->717"
5196
]
5197
},
@@ -5212,9 +5212,9 @@
5212
"zh-chs": "一直提示",
5213
"zh-cht": "一直提示",
5214
"xloc": [
5215
- "default.handlebars->33->1606",
5216
- "default.handlebars->33->2146",
5217
- "default.handlebars->33->2233",
5215
+ "default.handlebars->33->1616",
5216
+ "default.handlebars->33->2156",
5217
+ "default.handlebars->33->2243",
5218
"default.handlebars->33->718"
5219
]
5220
},
@@ -5332,7 +5332,7 @@
5332
"nl": "Android installatie",
5333
"fr": "Installation pour Android",
5334
"xloc": [
5335
- "default-mobile.handlebars->11->567"
5335
+ "default-mobile.handlebars->11->577"
5336
]
5337
},
5338
{
@@ -5362,8 +5362,8 @@
5362
"fr": "Antivirus désactivé",
5363
"de": "Anti-virus ist nicht aktiv",
5364
"xloc": [
5365
- "default.handlebars->33->1799",
5366
- "default.handlebars->33->1813"
5365
+ "default.handlebars->33->1809",
5366
+ "default.handlebars->33->1823"
5367
]
5368
},
5369
{
@@ -5383,7 +5383,7 @@
5383
"zh-chs": "杀毒软件",
5384
"zh-cht": "防毒軟體",
5385
"xloc": [
5386
- "default-mobile.handlebars->11->456",
5386
+ "default-mobile.handlebars->11->466",
5387
"default.handlebars->33->708"
5388
]
5389
},
@@ -5505,7 +5505,7 @@
5505
"zh-chs": "阿拉伯文(阿尔及利亚)",
5506
"zh-cht": "阿拉伯文(阿爾及利亞)",
5507
"xloc": [
5508
- "default.handlebars->33->1281"
5508
+ "default.handlebars->33->1291"
5509
]
5510
},
5511
{
@@ -5525,7 +5525,7 @@
5525
"zh-chs": "阿拉伯文(巴林)",
5526
"zh-cht": "阿拉伯文(巴林)",
5527
"xloc": [
5528
- "default.handlebars->33->1282"
5528
+ "default.handlebars->33->1292"
5529
]
5530
},
5531
{
@@ -5545,7 +5545,7 @@
5545
"zh-chs": "阿拉伯文(埃及)",
5546
"zh-cht": "阿拉伯文(埃及)",
5547
"xloc": [
5548
- "default.handlebars->33->1283"
5548
+ "default.handlebars->33->1293"
5549
]
5550
},
5551
{
@@ -5565,7 +5565,7 @@
5565
"zh-chs": "阿拉伯文(伊拉克)",
5566
"zh-cht": "阿拉伯文(伊拉克)",
5567
"xloc": [
5568
- "default.handlebars->33->1284"
5568
+ "default.handlebars->33->1294"
5569
]
5570
},
5571
{
@@ -5585,7 +5585,7 @@
5585
"zh-chs": "阿拉伯文(约旦)",
5586
"zh-cht": "阿拉伯文(約旦)",
5587
"xloc": [
5588
- "default.handlebars->33->1285"
5588
+ "default.handlebars->33->1295"
5589
]
5590
},
5591
{
@@ -5605,7 +5605,7 @@
5605
"zh-chs": "阿拉伯文(科威特)",
5606
"zh-cht": "阿拉伯文(科威特)",
5607
"xloc": [
5608
- "default.handlebars->33->1286"
5608
+ "default.handlebars->33->1296"
5609
]
5610
},
5611
{
@@ -5625,7 +5625,7 @@
5625
"zh-chs": "阿拉伯文(黎巴嫩)",
5626
"zh-cht": "阿拉伯文(黎巴嫩)",
5627
"xloc": [
5628
- "default.handlebars->33->1287"
5628
+ "default.handlebars->33->1297"
5629
]
5630
},
5631
{
@@ -5645,7 +5645,7 @@
5645
"zh-chs": "阿拉伯文(利比亚)",
5646
"zh-cht": "阿拉伯文(利比亞)",
5647
"xloc": [
5648
- "default.handlebars->33->1288"
5648
+ "default.handlebars->33->1298"
5649
]
5650
},
5651
{
@@ -5665,7 +5665,7 @@
5665
"zh-chs": "阿拉伯文(摩洛哥)",
5666
"zh-cht": "阿拉伯文(摩洛哥)",
5667
"xloc": [
5668
- "default.handlebars->33->1289"
5668
+ "default.handlebars->33->1299"
5669
]
5670
},
5671
{
@@ -5685,7 +5685,7 @@
5685
"zh-chs": "阿拉伯文(阿曼)",
5686
"zh-cht": "阿拉伯文(阿曼)",
5687
"xloc": [
5688
- "default.handlebars->33->1290"
5688
+ "default.handlebars->33->1300"
5689
]
5690
},
5691
{
@@ -5705,7 +5705,7 @@
5705
"zh-chs": "阿拉伯文(卡塔尔)",
5706
"zh-cht": "阿拉伯文(卡塔爾)",
5707
"xloc": [
5708
- "default.handlebars->33->1291"
5708
+ "default.handlebars->33->1301"
5709
]
5710
},
5711
{
@@ -5725,7 +5725,7 @@
5725
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5726
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5727
"xloc": [
5728
- "default.handlebars->33->1292"
5728
+ "default.handlebars->33->1302"
5729
]
5730
},
5731
{
@@ -5745,7 +5745,7 @@
5745
"zh-chs": "阿拉伯文(标准)",
5746
"zh-cht": "阿拉伯文(標準)",
5747
"xloc": [
5748
- "default.handlebars->33->1280"
5748
+ "default.handlebars->33->1290"
5749
]
5750
},
5751
{
@@ -5765,7 +5765,7 @@
5765
"zh-chs": "阿拉伯文(叙利亚)",
5766
"zh-cht": "阿拉伯文(敘利亞)",
5767
"xloc": [
5768
- "default.handlebars->33->1293"
5768
+ "default.handlebars->33->1303"
5769
]
5770
},
5771
{
@@ -5785,7 +5785,7 @@
5785
"zh-chs": "阿拉伯文(突尼斯)",
5786
"zh-cht": "阿拉伯文(突尼斯)",
5787
"xloc": [
5788
- "default.handlebars->33->1294"
5788
+ "default.handlebars->33->1304"
5789
]
5790
},
5791
{
@@ -5805,7 +5805,7 @@
5805
"zh-chs": "阿拉伯文(阿联酋)",
5806
"zh-cht": "阿拉伯文(阿聯酋)",
5807
"xloc": [
5808
- "default.handlebars->33->1295"
5808
+ "default.handlebars->33->1305"
5809
]
5810
},
5811
{
@@ -5825,7 +5825,7 @@
5825
"zh-chs": "阿拉伯文(也门)",
5826
"zh-cht": "阿拉伯文(也門)",
5827
"xloc": [
5828
- "default.handlebars->33->1296"
5828
+ "default.handlebars->33->1306"
5829
]
5830
},
5831
{
@@ -5845,7 +5845,7 @@
5845
"zh-chs": "阿拉贡文",
5846
"zh-cht": "阿拉貢文",
5847
"xloc": [
5848
- "default.handlebars->33->1297"
5848
+ "default.handlebars->33->1307"
5849
]
5850
},
5851
{
@@ -5865,8 +5865,8 @@
5865
"zh-chs": "架构",
5866
"zh-cht": "結構",
5867
"xloc": [
5868
- "default-mobile.handlebars->11->439",
5869
- "default.handlebars->33->1146"
5868
+ "default-mobile.handlebars->11->449",
5869
+ "default.handlebars->33->1156"
5870
]
5871
},
5872
{
@@ -5906,8 +5906,8 @@
5906
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5907
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5908
"xloc": [
5909
- "default-mobile.handlebars->11->558",
5910
- "default.handlebars->33->1671"
5909
+ "default-mobile.handlebars->11->568",
5910
+ "default.handlebars->33->1681"
5911
]
5912
},
5913
{
@@ -5927,7 +5927,7 @@
5927
"zh-chs": "您确定要删除节点{0}吗?",
5928
"zh-cht": "你確定要刪除節點{0}嗎?",
5929
"xloc": [
5930
- "default.handlebars->33->957"
5930
+ "default.handlebars->33->961"
5931
]
5932
},
5933
{
@@ -5947,7 +5947,7 @@
5947
"zh-chs": "您确定要卸载所选代理吗?",
5948
"zh-cht": "你確定要卸載所選代理嗎?",
5949
"xloc": [
5950
- "default.handlebars->33->946"
5950
+ "default.handlebars->33->950"
5951
]
5952
},
5953
{
@@ -5967,7 +5967,7 @@
5967
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5968
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5969
"xloc": [
5970
- "default.handlebars->33->945"
5970
+ "default.handlebars->33->949"
5971
]
5972
},
5973
{
@@ -5987,7 +5987,7 @@
5987
"zh-chs": "您确定要{0}插件吗:{1}",
5988
"zh-cht": "你確定要{0}外掛嗎:{1}",
5989
"xloc": [
5990
- "default.handlebars->33->2492"
5990
+ "default.handlebars->33->2502"
5991
]
5992
},
5993
{
@@ -6007,7 +6007,7 @@
6007
"zh-chs": "亚美尼亚文",
6008
"zh-cht": "亞美尼亞文",
6009
"xloc": [
6010
- "default.handlebars->33->1298"
6010
+ "default.handlebars->33->1308"
6011
]
6012
},
6013
{
@@ -6067,11 +6067,12 @@
6067
"zh-chs": "阿萨姆文",
6068
"zh-cht": "阿薩姆文",
6069
"xloc": [
6070
- "default.handlebars->33->1299"
6070
+ "default.handlebars->33->1309"
6071
]
6072
},
6073
{
6074
"en": "Assistant",
6075
+ "fr": "Assistant",
6076
"xloc": [
6077
"agentinvite.handlebars->container->column_l->5->1->tandrotab",
6078
"agentinvite.handlebars->container->column_l->5->assistab->1"
@@ -6080,6 +6081,7 @@
6081
{
6082
"en": "Assistant (Windows)",
6083
"nl": "Assistant (Windows)",
6084
+ "fr": "Assistant (Windows)",
6085
"xloc": [
6086
"default-mobile.handlebars->11->40",
6087
"default.handlebars->33->47"
@@ -6088,12 +6090,14 @@
6090
{
6091
"en": "Assistant for Windows (.exe)",
6092
"nl": "Assistant voor Windows (.exe)",
6093
+ "fr": "Assistant pour Windows (.exe)",
6094
"xloc": [
6095
"default.handlebars->33->461"
6096
]
6097
},
6098
{
6099
"en": "Assistant is a Windows system tray tool that can be used when help is needed. This is not an agent that runs in the background of the managed computer, instead, it's a tool that connects to the server only when requested.",
6100
+ "fr": "Assistant est un outil Windows vous permettant de demander de l'assistance quand vous en avez besoin. Une fois installé, il est disponible dans la barre des tâches. Assistant se connecte au serveur uniquement le temps des demandes d'assistance. La connexion n'est donc pas permanente.",
6101
"xloc": [
6102
"agentinvite.handlebars->container->column_l->5->assistab->3->3"
6103
]
@@ -6115,7 +6119,7 @@
6119
"zh-chs": "阿斯图里亚斯文",
6120
"zh-cht": "阿斯圖里亞斯文",
6121
"xloc": [
6118
- "default.handlebars->33->1300"
6122
+ "default.handlebars->33->1310"
6123
]
6124
},
6125
{
@@ -6135,7 +6139,7 @@
6139
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
6140
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
6141
"xloc": [
6138
- "default.handlebars->33->1885"
6142
+ "default.handlebars->33->1895"
6143
]
6144
},
6145
{
@@ -6143,8 +6147,8 @@
6147
"nl": "Authenticatie",
6148
"fr": "Authentification",
6149
"xloc": [
6146
- "default-mobile.handlebars->11->398",
6147
- "default.handlebars->33->1080",
6150
+ "default-mobile.handlebars->11->405",
6151
+ "default.handlebars->33->1087",
6152
"ssh.handlebars->3->7",
6153
"ssh.handlebars->3->8"
6154
]
@@ -6166,7 +6170,7 @@
6170
"zh-chs": "认证软件",
6171
"zh-cht": "認證軟體",
6172
"xloc": [
6169
- "default.handlebars->33->2236"
6173
+ "default.handlebars->33->2246"
6174
]
6175
},
6176
{
@@ -6174,9 +6178,16 @@
6178
"nl": "Verificatieapparaat",
6179
"fr": "Dispositif d'authentification",
6180
"xloc": [
6177
- "default.handlebars->33->1261",
6178
- "default.handlebars->33->1263",
6179
- "default.handlebars->33->1267"
6181
+ "default.handlebars->33->1271",
6182
+ "default.handlebars->33->1273",
6183
+ "default.handlebars->33->1277"
6184
+ ]
6185
+ },
6186
+ {
6187
+ "en": "Authentication Error",
6188
+ "xloc": [
6189
+ "default-mobile.handlebars->11->406",
6190
+ "default.handlebars->33->1088"
6191
]
6192
},
6193
{
@@ -6200,8 +6211,8 @@
6211
"default-mobile.handlebars->11->64",
6212
"default-mobile.handlebars->11->95",
6213
"default-mobile.handlebars->11->97",
6203
- "default.handlebars->33->1257",
6204
- "default.handlebars->33->1259",
6214
+ "default.handlebars->33->1267",
6215
+ "default.handlebars->33->1269",
6216
"default.handlebars->33->143",
6217
"default.handlebars->33->148"
6218
]
@@ -6283,7 +6294,7 @@
6294
"zh-chs": "自动删除",
6295
"zh-cht": "自動刪除",
6296
"xloc": [
6286
- "default.handlebars->33->1592"
6297
+ "default.handlebars->33->1602"
6298
]
6299
},
6300
{
@@ -6327,7 +6338,7 @@
6338
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6339
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6340
"xloc": [
6330
- "default.handlebars->33->1966"
6341
+ "default.handlebars->33->1976"
6342
]
6343
},
6344
{
@@ -6367,7 +6378,7 @@
6378
"zh-chs": "可用內存",
6379
"zh-cht": "可用內存",
6380
"xloc": [
6370
- "default.handlebars->33->2424"
6381
+ "default.handlebars->33->2434"
6382
]
6383
},
6384
{
@@ -6387,7 +6398,7 @@
6398
"zh-chs": "阿塞拜疆文",
6399
"zh-cht": "阿塞拜疆文",
6400
"xloc": [
6390
- "default.handlebars->33->1301"
6401
+ "default.handlebars->33->1311"
6402
]
6403
},
6404
{
@@ -6396,9 +6407,9 @@
6407
"fr": "Désactivé",
6408
"de": "SCHLECHT",
6409
"xloc": [
6399
- "default-mobile.handlebars->11->443",
6400
- "default-mobile.handlebars->11->447",
6401
- "default-mobile.handlebars->11->451",
6410
+ "default-mobile.handlebars->11->453",
6411
+ "default-mobile.handlebars->11->457",
6412
+ "default-mobile.handlebars->11->461",
6413
"default.handlebars->33->695",
6414
"default.handlebars->33->699",
6415
"default.handlebars->33->703"
@@ -6421,8 +6432,8 @@
6432
"zh-chs": "的BIOS",
6433
"zh-cht": "的BIOS",
6434
"xloc": [
6424
- "default-mobile.handlebars->11->505",
6425
- "default.handlebars->33->1205"
6435
+ "default-mobile.handlebars->11->515",
6436
+ "default.handlebars->33->1215"
6437
]
6438
},
6439
{
@@ -6507,8 +6518,8 @@
6518
"nl": "BackSpace",
6519
"de": "Rücktaste",
6520
"xloc": [
6510
- "default-mobile.handlebars->11->363",
6511
- "default.handlebars->33->1021"
6521
+ "default-mobile.handlebars->11->369",
6522
+ "default.handlebars->33->1027"
6523
]
6524
},
6525
{
@@ -6548,8 +6559,8 @@
6559
"zh-chs": "背景与互动",
6560
"zh-cht": "背景與互動",
6561
"xloc": [
6551
- "default.handlebars->33->1778",
6552
- "default.handlebars->33->1785",
6562
+ "default.handlebars->33->1788",
6563
+ "default.handlebars->33->1795",
6564
"default.handlebars->33->406",
6565
"default.handlebars->33->420"
6566
]
@@ -6571,8 +6582,8 @@
6582
"zh-chs": "仅背景",
6583
"zh-cht": "僅背景",
6584
"xloc": [
6574
- "default.handlebars->33->1779",
6575
- "default.handlebars->33->1786",
6585
+ "default.handlebars->33->1789",
6586
+ "default.handlebars->33->1796",
6587
"default.handlebars->33->407",
6588
"default.handlebars->33->421",
6589
"default.handlebars->33->437"
@@ -6616,7 +6627,7 @@
6627
"zh-chs": "备用码",
6628
"zh-cht": "備用碼",
6629
"xloc": [
6619
- "default.handlebars->33->2238"
6630
+ "default.handlebars->33->2248"
6631
]
6632
},
6633
{
@@ -6636,7 +6647,7 @@
6647
"zh-chs": "错误的签名",
6648
"zh-cht": "錯誤的簽名",
6649
"xloc": [
6639
- "default.handlebars->33->2406"
6650
+ "default.handlebars->33->2416"
6651
]
6652
},
6653
{
@@ -6656,7 +6667,7 @@
6667
"zh-chs": "错误的网络证书",
6668
"zh-cht": "錯誤的網絡憑證",
6669
"xloc": [
6659
- "default.handlebars->33->2405"
6670
+ "default.handlebars->33->2415"
6671
]
6672
},
6673
{
@@ -6676,7 +6687,7 @@
6687
"zh-chs": "巴斯克",
6688
"zh-cht": "巴斯克",
6689
"xloc": [
6679
- "default.handlebars->33->1302"
6690
+ "default.handlebars->33->1312"
6691
]
6692
},
6693
{
@@ -6736,7 +6747,7 @@
6747
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6748
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6749
"xloc": [
6739
- "default.handlebars->33->1965"
6750
+ "default.handlebars->33->1975"
6751
]
6752
},
6753
{
@@ -6756,7 +6767,7 @@
6767
"zh-chs": "白俄罗斯文",
6768
"zh-cht": "白俄羅斯文",
6769
"xloc": [
6759
- "default.handlebars->33->1304"
6770
+ "default.handlebars->33->1314"
6771
]
6772
},
6773
{
@@ -6776,7 +6787,7 @@
6787
"zh-chs": "孟加拉",
6788
"zh-cht": "孟加拉",
6789
"xloc": [
6779
- "default.handlebars->33->1305"
6790
+ "default.handlebars->33->1315"
6791
]
6792
},
6793
{
@@ -6807,8 +6818,8 @@
6818
"nl": "Bootloader",
6819
"fr": "Chargeur de démarrage",
6820
"xloc": [
6810
- "default-mobile.handlebars->11->469",
6811
- "default.handlebars->33->1159"
6821
+ "default-mobile.handlebars->11->479",
6822
+ "default.handlebars->33->1169"
6823
]
6824
},
6825
{
@@ -6828,7 +6839,7 @@
6839
"zh-chs": "波斯尼亚文",
6840
"zh-cht": "波斯尼亞文",
6841
"xloc": [
6831
- "default.handlebars->33->1306"
6842
+ "default.handlebars->33->1316"
6843
]
6844
},
6845
{
@@ -6848,7 +6859,7 @@
6859
"zh-chs": "布列塔尼",
6860
"zh-cht": "布列塔尼",
6861
"xloc": [
6851
- "default.handlebars->33->1307"
6862
+ "default.handlebars->33->1317"
6863
]
6864
},
6865
{
@@ -6868,7 +6879,7 @@
6879
"zh-chs": "广播",
6880
"zh-cht": "廣播",
6881
"xloc": [
6871
- "default.handlebars->33->2152",
6882
+ "default.handlebars->33->2162",
6883
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6884
]
6885
},
@@ -6889,7 +6900,7 @@
6900
"zh-chs": "广播消息",
6901
"zh-cht": "廣播消息",
6902
"xloc": [
6892
- "default.handlebars->33->2073"
6903
+ "default.handlebars->33->2083"
6904
]
6905
},
6906
{
@@ -6909,7 +6920,7 @@
6920
"zh-chs": "向所有连接的用户广播消息。",
6921
"zh-cht": "向所有連接的用戶廣播消息。",
6922
"xloc": [
6912
- "default.handlebars->33->2068"
6923
+ "default.handlebars->33->2078"
6924
]
6925
},
6926
{
@@ -6939,7 +6950,7 @@
6950
"zh-chs": "保加利亚文",
6951
"zh-cht": "保加利亞文",
6952
"xloc": [
6942
- "default.handlebars->33->1303"
6953
+ "default.handlebars->33->1313"
6954
]
6955
},
6956
{
@@ -6959,7 +6970,7 @@
6970
"zh-chs": "缅甸文",
6971
"zh-cht": "緬甸文",
6972
"xloc": [
6962
- "default.handlebars->33->1308"
6973
+ "default.handlebars->33->1318"
6974
]
6975
},
6976
{
@@ -7000,7 +7011,7 @@
7011
"zh-chs": "CCM模式",
7012
"zh-cht": "CCM模式",
7013
"xloc": [
7003
- "default.handlebars->33->1654"
7014
+ "default.handlebars->33->1664"
7015
]
7016
},
7017
{
@@ -7021,7 +7032,7 @@
7032
"zh-cht": "CIRA",
7033
"xloc": [
7034
"default-mobile.handlebars->11->236",
7024
- "default.handlebars->33->2431",
7035
+ "default.handlebars->33->2441",
7036
"default.handlebars->33->294",
7037
"default.handlebars->33->505"
7038
]
@@ -7043,7 +7054,7 @@
7054
"zh-chs": "CIRA服务器",
7055
"zh-cht": "CIRA伺服器",
7056
"xloc": [
7046
- "default.handlebars->33->2476"
7057
+ "default.handlebars->33->2486"
7058
]
7059
},
7060
{
@@ -7063,7 +7074,7 @@
7074
"zh-chs": "CIRA服务器命令",
7075
"zh-cht": "CIRA伺服器指令",
7076
"xloc": [
7066
- "default.handlebars->33->2477"
7077
+ "default.handlebars->33->2487"
7078
]
7079
},
7080
{
@@ -7083,7 +7094,7 @@
7094
"zh-chs": "CIRA设置",
7095
"zh-cht": "CIRA設置",
7096
"xloc": [
7086
- "default.handlebars->33->1662"
7097
+ "default.handlebars->33->1672"
7098
]
7099
},
7100
{
@@ -7103,8 +7114,8 @@
7114
"zh-chs": "CPU",
7115
"zh-cht": "CPU",
7116
"xloc": [
7106
- "default-mobile.handlebars->11->511",
7107
- "default.handlebars->33->1211"
7117
+ "default-mobile.handlebars->11->521",
7118
+ "default.handlebars->33->1221"
7119
]
7120
},
7121
{
@@ -7124,7 +7135,7 @@
7135
"zh-chs": "CPU负载",
7136
"zh-cht": "CPU負載",
7137
"xloc": [
7127
- "default.handlebars->33->2420"
7138
+ "default.handlebars->33->2430"
7139
]
7140
},
7141
{
@@ -7144,7 +7155,7 @@
7155
"zh-chs": "最近15分钟的CPU负载",
7156
"zh-cht": "最近15分鐘的CPU負載",
7157
"xloc": [
7147
- "default.handlebars->33->2423"
7158
+ "default.handlebars->33->2433"
7159
]
7160
},
7161
{
@@ -7164,7 +7175,7 @@
7175
"zh-chs": "最近5分钟的CPU负载",
7176
"zh-cht": "最近5分鐘的CPU負載",
7177
"xloc": [
7167
- "default.handlebars->33->2422"
7178
+ "default.handlebars->33->2432"
7179
]
7180
},
7181
{
@@ -7184,7 +7195,7 @@
7195
"zh-chs": "最近一分钟的CPU负载",
7196
"zh-cht": "最近一分鐘的CPU負載",
7197
"xloc": [
7187
- "default.handlebars->33->2421"
7198
+ "default.handlebars->33->2431"
7199
]
7200
},
7201
{
@@ -7204,8 +7215,8 @@
7215
"zh-chs": "CR+LF",
7216
"zh-cht": "CR+LF",
7217
"xloc": [
7207
- "default.handlebars->33->1075",
7208
- "default.handlebars->33->1087",
7218
+ "default.handlebars->33->1081",
7219
+ "default.handlebars->33->1097",
7220
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
7221
"sharing.handlebars->11->25",
7222
"sharing.handlebars->11->39",
@@ -7229,7 +7240,7 @@
7240
"zh-chs": "CSV",
7241
"zh-cht": "CSV",
7242
"xloc": [
7232
- "default.handlebars->33->1991"
7243
+ "default.handlebars->33->2001"
7244
]
7245
},
7246
{
@@ -7249,8 +7260,8 @@
7260
"zh-chs": "CSV格式",
7261
"zh-cht": "CSV格式",
7262
"xloc": [
7252
- "default.handlebars->33->1995",
7253
- "default.handlebars->33->2060",
7263
+ "default.handlebars->33->2005",
7264
+ "default.handlebars->33->2070",
7265
"default.handlebars->33->571"
7266
]
7267
},
@@ -7288,7 +7299,7 @@
7299
"zh-chs": "呼叫错误",
7300
"zh-cht": "呼叫錯誤",
7301
"xloc": [
7291
- "default.handlebars->33->2493"
7302
+ "default.handlebars->33->2503"
7303
]
7304
},
7305
{
@@ -7311,8 +7322,8 @@
7322
"agent-translations.json",
7323
"default-mobile.handlebars->11->106",
7324
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7314
- "default.handlebars->33->1569",
7315
- "default.handlebars->33->2482",
7325
+ "default.handlebars->33->1579",
7326
+ "default.handlebars->33->2492",
7327
"default.handlebars->container->dialog->idx_dlgButtonBar",
7328
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
7329
"login.handlebars->dialog->idx_dlgButtonBar",
@@ -7340,12 +7351,12 @@
7351
"zh-chs": "容量",
7352
"zh-cht": "容量",
7353
"xloc": [
7343
- "default-mobile.handlebars->11->516",
7344
- "default-mobile.handlebars->11->521",
7345
- "default-mobile.handlebars->11->523",
7346
- "default.handlebars->33->1216",
7347
- "default.handlebars->33->1221",
7348
- "default.handlebars->33->1223"
7354
+ "default-mobile.handlebars->11->526",
7355
+ "default-mobile.handlebars->11->531",
7356
+ "default-mobile.handlebars->11->533",
7357
+ "default.handlebars->33->1226",
7358
+ "default.handlebars->33->1231",
7359
+ "default.handlebars->33->1233"
7360
]
7361
},
7362
{
@@ -7365,8 +7376,8 @@
7376
"zh-chs": "容量/速度",
7377
"zh-cht": "容量/速度",
7378
"xloc": [
7368
- "default-mobile.handlebars->11->514",
7369
- "default.handlebars->33->1214"
7379
+ "default-mobile.handlebars->11->524",
7380
+ "default.handlebars->33->1224"
7381
]
7382
},
7383
{
@@ -7386,7 +7397,7 @@
7397
"zh-chs": "加泰罗尼亚文",
7398
"zh-cht": "加泰羅尼亞文",
7399
"xloc": [
7389
- "default.handlebars->33->1309"
7400
+ "default.handlebars->33->1319"
7401
]
7402
},
7403
{
@@ -7436,7 +7447,7 @@
7447
"zh-chs": "查莫罗",
7448
"zh-cht": "查莫羅",
7449
"xloc": [
7439
- "default.handlebars->33->1310"
7450
+ "default.handlebars->33->1320"
7451
]
7452
},
7453
{
@@ -7478,7 +7489,7 @@
7489
"zh-chs": "更改{0}的电邮",
7490
"zh-cht": "更改{0}的電郵",
7491
"xloc": [
7481
- "default.handlebars->33->2270"
7492
+ "default.handlebars->33->2280"
7493
]
7494
},
7495
{
@@ -7498,9 +7509,9 @@
7509
"zh-chs": "更改组",
7510
"zh-cht": "更改群",
7511
"xloc": [
7501
- "default.handlebars->33->748",
7502
- "default.handlebars->33->954",
7503
- "default.handlebars->33->955"
7512
+ "default.handlebars->33->752",
7513
+ "default.handlebars->33->958",
7514
+ "default.handlebars->33->959"
7515
]
7516
},
7517
{
@@ -7521,8 +7532,8 @@
7532
"zh-cht": "更改密碼",
7533
"xloc": [
7534
"default-mobile.handlebars->11->114",
7524
- "default.handlebars->33->1525",
7525
- "default.handlebars->33->2255"
7535
+ "default.handlebars->33->1535",
7536
+ "default.handlebars->33->2265"
7537
]
7538
},
7539
{
@@ -7542,7 +7553,7 @@
7553
"zh-chs": "更改{0}的密码",
7554
"zh-cht": "更改{0}的密碼",
7555
"xloc": [
7545
- "default.handlebars->33->2279"
7556
+ "default.handlebars->33->2289"
7557
]
7558
},
7559
{
@@ -7562,7 +7573,7 @@
7573
"zh-chs": "更改{0}的真实名称",
7574
"zh-cht": "更改{0}的真實名稱",
7575
"xloc": [
7565
- "default.handlebars->33->2265"
7576
+ "default.handlebars->33->2275"
7577
]
7578
},
7579
{
@@ -7654,7 +7665,7 @@
7665
"zh-chs": "更改该用户的密码",
7666
"zh-cht": "更改該用戶的密碼",
7667
"xloc": [
7657
- "default.handlebars->33->2254"
7668
+ "default.handlebars->33->2264"
7669
]
7670
},
7671
{
@@ -7694,7 +7705,7 @@
7705
"zh-chs": "在此处更改您的帐户电邮地址。",
7706
"zh-cht": "在此處更改你的帳戶電郵地址。",
7707
"xloc": [
7697
- "default.handlebars->33->1512"
7708
+ "default.handlebars->33->1522"
7709
]
7710
},
7711
{
@@ -7714,7 +7725,7 @@
7725
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7726
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7727
"xloc": [
7717
- "default.handlebars->33->1518"
7728
+ "default.handlebars->33->1528"
7729
]
7730
},
7731
{
@@ -7734,7 +7745,7 @@
7745
"zh-chs": "更改帐户凭据",
7746
"zh-cht": "帳戶憑證已更改",
7747
"xloc": [
7737
- "default.handlebars->33->1937"
7748
+ "default.handlebars->33->1947"
7749
]
7750
},
7751
{
@@ -7754,7 +7765,7 @@
7765
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7766
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7767
"xloc": [
7757
- "default.handlebars->33->1921"
7768
+ "default.handlebars->33->1931"
7769
]
7770
},
7771
{
@@ -7774,7 +7785,7 @@
7785
"zh-chs": "语言从{1}更改为{2}",
7786
"zh-cht": "語言從{1}更改為{2}",
7787
"xloc": [
7777
- "default.handlebars->33->1865"
7788
+ "default.handlebars->33->1875"
7789
]
7790
},
7791
{
@@ -7794,8 +7805,8 @@
7805
"zh-chs": "已更改{0}的用户设备权限",
7806
"zh-cht": "已更改{0}的用戶設備權限",
7807
"xloc": [
7797
- "default.handlebars->33->1923",
7798
- "default.handlebars->33->1944"
7808
+ "default.handlebars->33->1933",
7809
+ "default.handlebars->33->1954"
7810
]
7811
},
7812
{
@@ -7815,7 +7826,7 @@
7826
"zh-chs": "更改语言将需要刷新页面。",
7827
"zh-cht": "更改語言將需要刷新頁面。",
7828
"xloc": [
7818
- "default.handlebars->33->1477"
7829
+ "default.handlebars->33->1487"
7830
]
7831
},
7832
{
@@ -7835,12 +7846,12 @@
7846
"zh-chs": "聊天",
7847
"zh-cht": "聊天",
7848
"xloc": [
7838
- "default.handlebars->33->2012",
7839
- "default.handlebars->33->2250",
7840
- "default.handlebars->33->2251",
7841
- "default.handlebars->33->743",
7842
- "default.handlebars->33->822",
7843
- "default.handlebars->33->844"
7849
+ "default.handlebars->33->2022",
7850
+ "default.handlebars->33->2260",
7851
+ "default.handlebars->33->2261",
7852
+ "default.handlebars->33->747",
7853
+ "default.handlebars->33->826",
7854
+ "default.handlebars->33->848"
7855
]
7856
},
7857
{
@@ -7860,10 +7871,10 @@
7871
"zh-chs": "聊天并通知",
7872
"zh-cht": "聊天並通知",
7873
"xloc": [
7863
- "default-mobile.handlebars->11->583",
7864
- "default-mobile.handlebars->11->603",
7865
- "default.handlebars->33->1724",
7866
- "default.handlebars->33->1760"
7874
+ "default-mobile.handlebars->11->593",
7875
+ "default-mobile.handlebars->11->613",
7876
+ "default.handlebars->33->1734",
7877
+ "default.handlebars->33->1770"
7878
]
7879
},
7880
{
@@ -7872,8 +7883,8 @@
7883
"fr": "Demande de discussion, cliquez ici pour accepter.",
7884
"de": "Chat Anfrage, Drücke hier zum annehmen.",
7885
"xloc": [
7875
- "default-mobile.handlebars->11->635",
7876
- "default.handlebars->33->2375"
7886
+ "default-mobile.handlebars->11->645",
7887
+ "default.handlebars->33->2385"
7888
]
7889
},
7890
{
@@ -7913,7 +7924,7 @@
7924
"zh-chs": "车臣",
7925
"zh-cht": "車臣",
7926
"xloc": [
7916
- "default.handlebars->33->1311"
7927
+ "default.handlebars->33->1321"
7928
]
7929
},
7930
{
@@ -8013,8 +8024,8 @@
8024
"zh-chs": "检查...",
8025
"zh-cht": "檢查...",
8026
"xloc": [
8016
- "default.handlebars->33->1277",
8017
- "default.handlebars->33->2487"
8027
+ "default.handlebars->33->1287",
8028
+ "default.handlebars->33->2497"
8029
]
8030
},
8031
{
@@ -8034,7 +8045,7 @@
8045
"zh-chs": "中文",
8046
"zh-cht": "中文",
8047
"xloc": [
8037
- "default.handlebars->33->1312"
8048
+ "default.handlebars->33->1322"
8049
]
8050
},
8051
{
@@ -8054,7 +8065,7 @@
8065
"zh-chs": "中文(香港)",
8066
"zh-cht": "中文(香港)",
8067
"xloc": [
8057
- "default.handlebars->33->1313"
8068
+ "default.handlebars->33->1323"
8069
]
8070
},
8071
{
@@ -8074,7 +8085,7 @@
8085
"zh-chs": "中文(中国)",
8086
"zh-cht": "中文(中國)",
8087
"xloc": [
8077
- "default.handlebars->33->1314"
8088
+ "default.handlebars->33->1324"
8089
]
8090
},
8091
{
@@ -8094,7 +8105,7 @@
8105
"zh-chs": "简体中文",
8106
"zh-cht": "簡體中文",
8107
"xloc": [
8097
- "default.handlebars->33->1474"
8108
+ "default.handlebars->33->1484"
8109
]
8110
},
8111
{
@@ -8114,7 +8125,7 @@
8125
"zh-chs": "中文(新加坡)",
8126
"zh-cht": "中文(新加坡)",
8127
"xloc": [
8117
- "default.handlebars->33->1315"
8128
+ "default.handlebars->33->1325"
8129
]
8130
},
8131
{
@@ -8134,7 +8145,7 @@
8145
"zh-chs": "中文(台湾)",
8146
"zh-cht": "中文(台灣)",
8147
"xloc": [
8137
- "default.handlebars->33->1316"
8148
+ "default.handlebars->33->1326"
8149
]
8150
},
8151
{
@@ -8154,7 +8165,7 @@
8165
"zh-chs": "繁体中文",
8166
"zh-cht": "繁體中文",
8167
"xloc": [
8157
- "default.handlebars->33->1475"
8168
+ "default.handlebars->33->1485"
8169
]
8170
},
8171
{
@@ -8195,7 +8206,7 @@
8206
"zh-chs": "楚瓦什",
8207
"zh-cht": "楚瓦什",
8208
"xloc": [
8198
- "default.handlebars->33->1317"
8209
+ "default.handlebars->33->1327"
8210
]
8211
},
8212
{
@@ -8233,17 +8244,17 @@
8244
"zh-cht": "清除",
8245
"xloc": [
8246
"default-mobile.handlebars->11->156",
8236
- "default-mobile.handlebars->11->423",
8237
- "default-mobile.handlebars->11->425",
8238
- "default-mobile.handlebars->11->427",
8239
- "default-mobile.handlebars->11->429",
8247
+ "default-mobile.handlebars->11->433",
8248
+ "default-mobile.handlebars->11->435",
8249
+ "default-mobile.handlebars->11->437",
8250
+ "default-mobile.handlebars->11->439",
8251
"default-mobile.handlebars->11->71",
8252
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
8242
- "default.handlebars->33->1123",
8243
- "default.handlebars->33->1125",
8244
- "default.handlebars->33->1127",
8245
- "default.handlebars->33->1129",
8246
- "default.handlebars->33->1859",
8253
+ "default.handlebars->33->1133",
8254
+ "default.handlebars->33->1135",
8255
+ "default.handlebars->33->1137",
8256
+ "default.handlebars->33->1139",
8257
+ "default.handlebars->33->1869",
8258
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
8259
"default.handlebars->container->column_l->p41->3->1",
8260
"messenger.handlebars->xbottom->1->1->0->5",
@@ -8253,6 +8264,13 @@
8264
"sharing.handlebars->11->81"
8265
]
8266
},
8267
+ {
8268
+ "en": "Clear SSH credentials?",
8269
+ "xloc": [
8270
+ "default-mobile.handlebars->11->354",
8271
+ "default.handlebars->33->1000"
8272
+ ]
8273
+ },
8274
{
8275
"cs": "Vymazat tokeny",
8276
"de": "Token löschen",
@@ -8309,8 +8327,8 @@
8327
"zh-chs": "全部清除",
8328
"zh-cht": "全部清除",
8329
"xloc": [
8312
- "default-mobile.handlebars->11->618",
8313
- "default.handlebars->33->2358"
8330
+ "default-mobile.handlebars->11->628",
8331
+ "default.handlebars->33->2368"
8332
]
8333
},
8334
{
@@ -8351,8 +8369,8 @@
8369
"zh-chs": "清除核心",
8370
"zh-cht": "清除核心",
8371
"xloc": [
8354
- "default-mobile.handlebars->11->537",
8355
- "default.handlebars->33->1238"
8372
+ "default-mobile.handlebars->11->547",
8373
+ "default.handlebars->33->1248"
8374
]
8375
},
8376
{
@@ -8392,8 +8410,8 @@
8410
"zh-chs": "清除此通知",
8411
"zh-cht": "清除此通知",
8412
"xloc": [
8395
- "default-mobile.handlebars->11->617",
8396
- "default.handlebars->33->2357"
8413
+ "default-mobile.handlebars->11->627",
8414
+ "default.handlebars->33->2367"
8415
]
8416
},
8417
{
@@ -8453,8 +8471,8 @@
8471
"zh-chs": "单击此处编辑设备组名称",
8472
"zh-cht": "單擊此處編輯裝置群名稱",
8473
"xloc": [
8456
- "default.handlebars->33->1580",
8457
- "default.handlebars->33->1804"
8474
+ "default.handlebars->33->1590",
8475
+ "default.handlebars->33->1814"
8476
]
8477
},
8478
{
@@ -8494,7 +8512,7 @@
8512
"zh-chs": "单击此处编辑用户组名称",
8513
"zh-cht": "單擊此處編輯用戶群名稱",
8514
"xloc": [
8497
- "default.handlebars->33->2129"
8515
+ "default.handlebars->33->2139"
8516
]
8517
},
8518
{
@@ -8566,7 +8584,7 @@
8584
"zh-cht": "單擊確定將驗證電郵發送到:",
8585
"xloc": [
8586
"default-mobile.handlebars->11->99",
8569
- "default.handlebars->33->1509"
8587
+ "default.handlebars->33->1519"
8588
]
8589
},
8590
{
@@ -8627,8 +8645,8 @@
8645
"zh-chs": "客户端控制模式(CCM)",
8646
"zh-cht": "客戶端控制模式(CCM)",
8647
"xloc": [
8630
- "default-mobile.handlebars->11->492",
8631
- "default.handlebars->33->1192"
8648
+ "default-mobile.handlebars->11->502",
8649
+ "default.handlebars->33->1202"
8650
]
8651
},
8652
{
@@ -8648,7 +8666,7 @@
8666
"zh-chs": "客户编号",
8667
"zh-cht": "客戶編號",
8668
"xloc": [
8651
- "default.handlebars->33->1562"
8669
+ "default.handlebars->33->1572"
8670
]
8671
},
8672
{
@@ -8668,7 +8686,7 @@
8686
"zh-chs": "客户端启动的远程访问",
8687
"zh-cht": "客戶端啟動的遠程訪問",
8688
"xloc": [
8671
- "default.handlebars->33->1661"
8689
+ "default.handlebars->33->1671"
8690
]
8691
},
8692
{
@@ -8688,7 +8706,7 @@
8706
"zh-chs": "客户机密",
8707
"zh-cht": "客戶機密",
8708
"xloc": [
8691
- "default.handlebars->33->1563"
8709
+ "default.handlebars->33->1573"
8710
]
8711
},
8712
{
@@ -8730,11 +8748,11 @@
8748
"zh-cht": "關",
8749
"xloc": [
8750
"default-mobile.handlebars->11->69",
8733
- "default.handlebars->33->1063",
8734
- "default.handlebars->33->1100",
8751
+ "default.handlebars->33->1069",
8752
+ "default.handlebars->33->1110",
8753
"default.handlebars->33->155",
8754
"default.handlebars->33->163",
8737
- "default.handlebars->33->2481",
8755
+ "default.handlebars->33->2491",
8756
"sharing.handlebars->11->52"
8757
]
8758
},
@@ -8755,7 +8773,7 @@
8773
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8774
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8775
"xloc": [
8758
- "default.handlebars->33->1870"
8776
+ "default.handlebars->33->1880"
8777
]
8778
},
8779
{
@@ -8879,10 +8897,10 @@
8897
"zh-chs": "指令",
8898
"zh-cht": "指令",
8899
"xloc": [
8882
- "default-mobile.handlebars->11->605",
8883
- "default.handlebars->33->1762",
8884
- "default.handlebars->33->824",
8885
- "default.handlebars->33->846"
8900
+ "default-mobile.handlebars->11->615",
8901
+ "default.handlebars->33->1772",
8902
+ "default.handlebars->33->828",
8903
+ "default.handlebars->33->850"
8904
]
8905
},
8906
{
@@ -8902,8 +8920,8 @@
8920
"zh-chs": "通用设备组",
8921
"zh-cht": "通用裝置群",
8922
"xloc": [
8905
- "default.handlebars->33->2160",
8906
- "default.handlebars->33->2284"
8923
+ "default.handlebars->33->2170",
8924
+ "default.handlebars->33->2294"
8925
]
8926
},
8927
{
@@ -8923,8 +8941,8 @@
8941
"zh-chs": "通用设备",
8942
"zh-cht": "通用裝置",
8943
"xloc": [
8926
- "default.handlebars->33->2166",
8927
- "default.handlebars->33->2296"
8944
+ "default.handlebars->33->2176",
8945
+ "default.handlebars->33->2306"
8946
]
8947
},
8948
{
@@ -8934,8 +8952,8 @@
8952
"de": "Kompilierungszeit",
8953
"es": "Fecha de compilación",
8954
"xloc": [
8937
- "default-mobile.handlebars->11->465",
8938
- "default.handlebars->33->1155"
8955
+ "default-mobile.handlebars->11->475",
8956
+ "default.handlebars->33->1165"
8957
]
8958
},
8959
{
@@ -8955,7 +8973,7 @@
8973
"zh-chs": "压缩档案...",
8974
"zh-cht": "壓縮檔案...",
8975
"xloc": [
8958
- "default.handlebars->33->1095",
8976
+ "default.handlebars->33->1105",
8977
"sharing.handlebars->11->47"
8978
]
8979
},
@@ -8976,16 +8994,16 @@
8994
"zh-chs": "确认",
8995
"zh-cht": "確認",
8996
"xloc": [
8979
- "default-mobile.handlebars->11->347",
8980
- "default-mobile.handlebars->11->559",
8981
- "default.handlebars->33->1672",
8982
- "default.handlebars->33->2040",
8983
- "default.handlebars->33->2119",
8984
- "default.handlebars->33->2180",
8985
- "default.handlebars->33->2282",
8997
+ "default-mobile.handlebars->11->351",
8998
+ "default-mobile.handlebars->11->569",
8999
+ "default.handlebars->33->1682",
9000
+ "default.handlebars->33->2050",
9001
+ "default.handlebars->33->2129",
9002
+ "default.handlebars->33->2190",
9003
+ "default.handlebars->33->2292",
9004
"default.handlebars->33->535",
8987
- "default.handlebars->33->949",
8988
- "default.handlebars->33->958"
9005
+ "default.handlebars->33->953",
9006
+ "default.handlebars->33->962"
9007
]
9008
},
9009
{
@@ -9005,8 +9023,8 @@
9023
"zh-chs": "确认将1个副本复制到此位置?",
9024
"zh-cht": "確認將1個副本複製到此位置?",
9025
"xloc": [
9008
- "default-mobile.handlebars->11->418",
9009
- "default.handlebars->33->1118",
9026
+ "default-mobile.handlebars->11->428",
9027
+ "default.handlebars->33->1128",
9028
"sharing.handlebars->11->70"
9029
]
9030
},
@@ -9027,7 +9045,7 @@
9045
"zh-chs": "确认{0}个条目的复制到此位置?",
9046
"zh-cht": "確認{0}個條目的複製到此位置?",
9047
"xloc": [
9030
- "default.handlebars->33->1117",
9048
+ "default.handlebars->33->1127",
9049
"sharing.handlebars->11->69"
9050
]
9051
},
@@ -9048,7 +9066,7 @@
9066
"zh-chs": "确认{0}个条目的副本到此位置?",
9067
"zh-cht": "確認{0}個條目的副本到此位置?",
9068
"xloc": [
9051
- "default-mobile.handlebars->11->417"
9069
+ "default-mobile.handlebars->11->427"
9070
]
9071
},
9072
{
@@ -9068,7 +9086,7 @@
9086
"zh-chs": "确认删除选定的帐户?",
9087
"zh-cht": "確認刪除所選帳戶?",
9088
"xloc": [
9071
- "default.handlebars->33->2039"
9089
+ "default.handlebars->33->2049"
9090
]
9091
},
9092
{
@@ -9108,7 +9126,7 @@
9126
"zh-chs": "确认删除选定的用户组?",
9127
"zh-cht": "確認刪除所選用戶群?",
9128
"xloc": [
9111
- "default.handlebars->33->2118"
9129
+ "default.handlebars->33->2128"
9130
]
9131
},
9132
{
@@ -9128,7 +9146,7 @@
9146
"zh-chs": "确认删除用户{0}?",
9147
"zh-cht": "確認刪除用戶{0}?",
9148
"xloc": [
9131
- "default.handlebars->33->2281"
9149
+ "default.handlebars->33->2291"
9150
]
9151
},
9152
{
@@ -9148,7 +9166,7 @@
9166
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
9167
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
9168
"xloc": [
9151
- "default.handlebars->33->2183"
9169
+ "default.handlebars->33->2193"
9170
]
9171
},
9172
{
@@ -9168,7 +9186,7 @@
9186
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
9187
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
9188
"xloc": [
9171
- "default.handlebars->33->2313"
9189
+ "default.handlebars->33->2323"
9190
]
9191
},
9192
{
@@ -9188,8 +9206,8 @@
9206
"zh-chs": "确认将1个条目移动到此位置?",
9207
"zh-cht": "確認將1個條目移動到此位置?",
9208
"xloc": [
9191
- "default-mobile.handlebars->11->420",
9192
- "default.handlebars->33->1120",
9209
+ "default-mobile.handlebars->11->430",
9210
+ "default.handlebars->33->1130",
9211
"sharing.handlebars->11->72"
9212
]
9213
},
@@ -9210,7 +9228,7 @@
9228
"zh-chs": "确认将{0}个条目移到此位置?",
9229
"zh-cht": "確認將{0}個條目移到該位置?",
9230
"xloc": [
9213
- "default.handlebars->33->1119",
9231
+ "default.handlebars->33->1129",
9232
"sharing.handlebars->11->71"
9233
]
9234
},
@@ -9231,7 +9249,7 @@
9249
"zh-chs": "确认将{0}个条目移到该位置?",
9250
"zh-cht": "確認將{0}個條目移到該位置?",
9251
"xloc": [
9234
- "default-mobile.handlebars->11->419"
9252
+ "default-mobile.handlebars->11->429"
9253
]
9254
},
9255
{
@@ -9251,7 +9269,7 @@
9269
"zh-chs": "确认覆盖?",
9270
"zh-cht": "確認覆蓋?",
9271
"xloc": [
9254
- "default.handlebars->33->1853"
9272
+ "default.handlebars->33->1863"
9273
]
9274
},
9275
{
@@ -9271,8 +9289,8 @@
9289
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
9290
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
9291
"xloc": [
9274
- "default.handlebars->33->2173",
9275
- "default.handlebars->33->2304"
9292
+ "default.handlebars->33->2183",
9293
+ "default.handlebars->33->2314"
9294
]
9295
},
9296
{
@@ -9292,8 +9310,8 @@
9310
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
9311
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
9312
"xloc": [
9295
- "default.handlebars->33->2175",
9296
- "default.handlebars->33->2317"
9313
+ "default.handlebars->33->2185",
9314
+ "default.handlebars->33->2327"
9315
]
9316
},
9317
{
@@ -9313,7 +9331,7 @@
9331
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
9332
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
9333
"xloc": [
9316
- "default.handlebars->33->2306"
9334
+ "default.handlebars->33->2316"
9335
]
9336
},
9337
{
@@ -9333,7 +9351,7 @@
9351
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
9352
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
9353
"xloc": [
9336
- "default.handlebars->33->2309"
9354
+ "default.handlebars->33->2319"
9355
]
9356
},
9357
{
@@ -9353,8 +9371,8 @@
9371
"zh-chs": "确认删除访问权限?",
9372
"zh-cht": "確認刪除訪問權限?",
9373
"xloc": [
9356
- "default.handlebars->33->2307",
9357
- "default.handlebars->33->2310"
9374
+ "default.handlebars->33->2317",
9375
+ "default.handlebars->33->2320"
9376
]
9377
},
9378
{
@@ -9375,7 +9393,7 @@
9393
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9394
"xloc": [
9395
"default-mobile.handlebars->11->98",
9378
- "default.handlebars->33->1260"
9396
+ "default.handlebars->33->1270"
9397
]
9398
},
9399
{
@@ -9412,7 +9430,7 @@
9430
"zh-chs": "确认删除设备共享“{0}”?",
9431
"zh-cht": "確認刪除設備共享“{0}”?",
9432
"xloc": [
9415
- "default.handlebars->33->2302"
9433
+ "default.handlebars->33->2312"
9434
]
9435
},
9436
{
@@ -9454,7 +9472,7 @@
9472
"nl": "Verwijderen van push-authenticatieapparaat bevestigen?",
9473
"fr": "Supprimer le dispositif d'authentification (push) ?",
9474
"xloc": [
9457
- "default.handlebars->33->1262"
9475
+ "default.handlebars->33->1272"
9476
]
9477
},
9478
{
@@ -9474,7 +9492,7 @@
9492
"zh-chs": "确认删除用户“ {0} ”的权限?",
9493
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9494
"xloc": [
9477
- "default.handlebars->33->1771"
9495
+ "default.handlebars->33->1781"
9496
]
9497
},
9498
{
@@ -9494,7 +9512,7 @@
9512
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9513
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9514
"xloc": [
9497
- "default.handlebars->33->1773"
9515
+ "default.handlebars->33->1783"
9516
]
9517
},
9518
{
@@ -9502,7 +9520,7 @@
9520
"nl": "Bevestig de verwijdering van dit inlogtoken?",
9521
"fr": "Supprimer ce jeton de connexion ?",
9522
"xloc": [
9505
- "default.handlebars->33->1555"
9523
+ "default.handlebars->33->1565"
9524
]
9525
},
9526
{
@@ -9539,7 +9557,7 @@
9557
"zh-chs": "确认删除用户{0}?",
9558
"zh-cht": "確認刪除用戶{0}?",
9559
"xloc": [
9542
- "default-mobile.handlebars->11->614"
9560
+ "default-mobile.handlebars->11->624"
9561
]
9562
},
9563
{
@@ -9560,7 +9578,7 @@
9578
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9579
"xloc": [
9580
"default-mobile.handlebars->11->151",
9563
- "default.handlebars->33->1854"
9581
+ "default.handlebars->33->1864"
9582
]
9583
},
9584
{
@@ -9581,12 +9599,12 @@
9599
"zh-cht": "連接",
9600
"xloc": [
9601
"agent-translations.json",
9584
- "default-mobile.handlebars->11->400",
9602
+ "default-mobile.handlebars->11->410",
9603
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9604
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9605
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
9588
- "default.handlebars->33->1090",
9589
- "default.handlebars->33->1609",
9606
+ "default.handlebars->33->1100",
9607
+ "default.handlebars->33->1619",
9608
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9609
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9610
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9637,7 +9655,7 @@
9655
"zh-chs": "连接到服务器",
9656
"zh-cht": "連接到伺服器",
9657
"xloc": [
9640
- "default.handlebars->33->1665"
9658
+ "default.handlebars->33->1675"
9659
]
9660
},
9661
{
@@ -9759,7 +9777,7 @@
9777
"zh-chs": "已连接的英特尔®AMT",
9778
"zh-cht": "已連接的Intel® AMT",
9779
"xloc": [
9762
- "default.handlebars->33->2411"
9780
+ "default.handlebars->33->2421"
9781
]
9782
},
9783
{
@@ -9779,7 +9797,7 @@
9797
"zh-chs": "已连接的用户",
9798
"zh-cht": "已连接的用户",
9799
"xloc": [
9782
- "default.handlebars->33->2416"
9800
+ "default.handlebars->33->2426"
9801
]
9802
},
9803
{
@@ -9799,8 +9817,8 @@
9817
"zh-chs": "现在已连接",
9818
"zh-cht": "現在已連接",
9819
"xloc": [
9802
- "default-mobile.handlebars->11->460",
9803
- "default.handlebars->33->1150"
9820
+ "default-mobile.handlebars->11->470",
9821
+ "default.handlebars->33->1160"
9822
]
9823
},
9824
{
@@ -9841,9 +9859,9 @@
9859
"zh-cht": "正在連線...",
9860
"xloc": [
9861
"default-mobile.handlebars->11->2",
9844
- "default-mobile.handlebars->11->436",
9862
+ "default-mobile.handlebars->11->446",
9863
"default-mobile.handlebars->11->48",
9846
- "default.handlebars->33->1141",
9864
+ "default.handlebars->33->1151",
9865
"default.handlebars->33->282",
9866
"default.handlebars->33->285",
9867
"default.handlebars->33->332",
@@ -9871,7 +9889,7 @@
9889
"zh-chs": "连接数量",
9890
"zh-cht": "連接數量",
9891
"xloc": [
9874
- "default.handlebars->33->2442"
9892
+ "default.handlebars->33->2452"
9893
]
9894
},
9895
{
@@ -9899,7 +9917,7 @@
9917
"zh-chs": "连接转发器",
9918
"zh-cht": "連接轉發器",
9919
"xloc": [
9902
- "default.handlebars->33->2475"
9920
+ "default.handlebars->33->2485"
9921
]
9922
},
9923
{
@@ -9960,7 +9978,7 @@
9978
"zh-cht": "連接性",
9979
"xloc": [
9980
"default-mobile.handlebars->11->293",
9963
- "default.handlebars->33->1811",
9981
+ "default.handlebars->33->1821",
9982
"default.handlebars->33->273",
9983
"default.handlebars->33->731",
9984
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -9983,9 +10001,9 @@
10001
"zh-chs": "控制台",
10002
"zh-cht": "控制台",
10003
"xloc": [
9986
- "default-mobile.handlebars->11->309",
9987
- "default.handlebars->33->817",
9988
- "default.handlebars->33->839",
10004
+ "default-mobile.handlebars->11->313",
10005
+ "default.handlebars->33->821",
10006
+ "default.handlebars->33->843",
10007
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
10008
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
10009
"default.handlebars->contextMenu->cxconsole"
@@ -10028,8 +10046,8 @@
10046
"zh-chs": "控制",
10047
"zh-cht": "控制",
10048
"xloc": [
10031
- "default.handlebars->33->816",
10032
- "default.handlebars->33->838",
10049
+ "default.handlebars->33->820",
10050
+ "default.handlebars->33->842",
10051
"messenger.handlebars->remoteImage->3->2"
10052
]
10053
},
@@ -10050,7 +10068,7 @@
10068
"zh-chs": "Cookie编码器",
10069
"zh-cht": "Cookie編碼器",
10070
"xloc": [
10053
- "default.handlebars->33->2459"
10071
+ "default.handlebars->33->2469"
10072
]
10073
},
10074
{
@@ -10102,6 +10120,7 @@
10120
{
10121
"en": "Copy URL to clipboard",
10122
"nl": "Kopieer URL naar het klembord",
10123
+ "fr": "Copier l'URL dans le presse-papier ",
10124
"xloc": [
10125
"default.handlebars->33->462"
10126
]
@@ -10215,8 +10234,8 @@
10234
"zh-chs": "复制连结到剪贴板",
10235
"zh-cht": "複製連結到剪貼板",
10236
"xloc": [
10218
- "default.handlebars->33->1822",
10219
- "default.handlebars->33->1841",
10237
+ "default.handlebars->33->1832",
10238
+ "default.handlebars->33->1851",
10239
"default.handlebars->33->223",
10240
"default.handlebars->33->245",
10241
"default.handlebars->33->247",
@@ -10323,7 +10342,7 @@
10342
"zh-chs": "复制:“{0}”到“{1}”",
10343
"zh-cht": "複製:“{0}”到“{1}”",
10344
"xloc": [
10326
- "default.handlebars->33->1913"
10345
+ "default.handlebars->33->1923"
10346
]
10347
},
10348
{
@@ -10469,7 +10488,7 @@
10488
"zh-chs": "核心服务器",
10489
"zh-cht": "核心伺服器",
10490
"xloc": [
10472
- "default.handlebars->33->2458"
10491
+ "default.handlebars->33->2468"
10492
]
10493
},
10494
{
@@ -10489,7 +10508,7 @@
10508
"zh-chs": "科西嘉文",
10509
"zh-cht": "科西嘉文",
10510
"xloc": [
10492
- "default.handlebars->33->1318"
10511
+ "default.handlebars->33->1328"
10512
]
10513
},
10514
{
@@ -10509,7 +10528,7 @@
10528
"zh-chs": "创建帐号",
10529
"zh-cht": "創建帳號",
10530
"xloc": [
10512
- "default.handlebars->33->2087",
10531
+ "default.handlebars->33->2097",
10532
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10533
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10534
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10541,7 +10560,7 @@
10560
"fr": "Créer un jeton de connexion",
10561
"es": "Crear Token de inicio de sesión",
10562
"xloc": [
10544
- "default.handlebars->33->1502",
10563
+ "default.handlebars->33->1512",
10564
"default.handlebars->33->248"
10565
]
10566
},
@@ -10562,7 +10581,7 @@
10581
"zh-chs": "创建用户组",
10582
"zh-cht": "創建用戶群",
10583
"xloc": [
10565
- "default.handlebars->33->2126"
10584
+ "default.handlebars->33->2136"
10585
]
10586
},
10587
{
@@ -10582,7 +10601,7 @@
10601
"zh-chs": "创建连结以与访客共享此设备",
10602
"zh-cht": "創建鏈結以與訪客共享此裝置",
10603
"xloc": [
10585
- "default.handlebars->33->746"
10604
+ "default.handlebars->33->750"
10605
]
10606
},
10607
{
@@ -10602,7 +10621,7 @@
10621
"zh-chs": "使用以下选项创建一个新的设备组。",
10622
"zh-cht": "使用以下選項創建一個新的裝置群。",
10623
"xloc": [
10605
- "default.handlebars->33->1532"
10624
+ "default.handlebars->33->1542"
10625
]
10626
},
10627
{
@@ -10630,7 +10649,7 @@
10649
"nl": "Maak een tijdelijke gebruikersnaam en wachtwoord aan die kunnen worden gebruikt als alternatieve login voor uw account. Dit is handig om tools of andere services toegang te geven tot uw account.",
10650
"fr": "Créer des identifiants temporaires pour se connecter à votre compte. Utile pour permettre à des outils ou services de se connecter à votre compte.",
10651
"xloc": [
10633
- "default.handlebars->33->1483"
10652
+ "default.handlebars->33->1493"
10653
]
10654
},
10655
{
@@ -10670,7 +10689,7 @@
10689
"zh-chs": "创建文件夹:“{0}”",
10690
"zh-cht": "創建文件夾:“{0}”",
10691
"xloc": [
10673
- "default.handlebars->33->1906"
10692
+ "default.handlebars->33->1916"
10693
]
10694
},
10695
{
@@ -10698,7 +10717,7 @@
10717
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10718
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10719
"xloc": [
10701
- "default.handlebars->33->2051"
10720
+ "default.handlebars->33->2061"
10721
]
10722
},
10723
{
@@ -10740,7 +10759,7 @@
10759
"zh-chs": "创建的设备组:{0}",
10760
"zh-cht": "創建的設備組:{0}",
10761
"xloc": [
10743
- "default.handlebars->33->1917"
10762
+ "default.handlebars->33->1927"
10763
]
10764
},
10765
{
@@ -10760,7 +10779,7 @@
10779
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10780
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10781
"xloc": [
10763
- "default.handlebars->33->862"
10782
+ "default.handlebars->33->866"
10783
]
10784
},
10785
{
@@ -10814,7 +10833,7 @@
10833
"zh-chs": "创建",
10834
"zh-cht": "創建",
10835
"xloc": [
10817
- "default.handlebars->33->2212"
10836
+ "default.handlebars->33->2222"
10837
]
10838
},
10839
{
@@ -10834,7 +10853,7 @@
10853
"zh-chs": "创建时间",
10854
"zh-cht": "創作時間",
10855
"xloc": [
10837
- "default.handlebars->33->1591"
10856
+ "default.handlebars->33->1601"
10857
]
10858
},
10859
{
@@ -10876,8 +10895,8 @@
10895
"zh-chs": "创建者",
10896
"zh-cht": "創作者",
10897
"xloc": [
10879
- "default.handlebars->33->1589",
10880
- "default.handlebars->33->1590"
10898
+ "default.handlebars->33->1599",
10899
+ "default.handlebars->33->1600"
10900
]
10901
},
10902
{
@@ -10897,7 +10916,11 @@
10916
"zh-chs": "证书",
10917
"zh-cht": "證書",
10918
"xloc": [
10900
- "default.handlebars->33->1560"
10919
+ "default-mobile.handlebars->11->297",
10920
+ "default-mobile.handlebars->11->299",
10921
+ "default.handlebars->33->1570",
10922
+ "default.handlebars->33->735",
10923
+ "default.handlebars->33->737"
10924
]
10925
},
10926
{
@@ -10917,7 +10940,7 @@
10940
"zh-chs": "克里语",
10941
"zh-cht": "克里語",
10942
"xloc": [
10920
- "default.handlebars->33->1319"
10943
+ "default.handlebars->33->1329"
10944
]
10945
},
10946
{
@@ -10937,7 +10960,7 @@
10960
"zh-chs": "克罗地亚文",
10961
"zh-cht": "克羅地亞文",
10962
"xloc": [
10940
- "default.handlebars->33->1320"
10963
+ "default.handlebars->33->1330"
10964
]
10965
},
10966
{
@@ -10999,10 +11022,10 @@
11022
"zh-chs": "Ctrl",
11023
"zh-cht": "Ctrl",
11024
"xloc": [
11002
- "default-mobile.handlebars->11->381",
11003
- "default-mobile.handlebars->11->385",
11004
- "default.handlebars->33->1039",
11005
- "default.handlebars->33->1043",
11025
+ "default-mobile.handlebars->11->387",
11026
+ "default-mobile.handlebars->11->391",
11027
+ "default.handlebars->33->1045",
11028
+ "default.handlebars->33->1049",
11029
"default.handlebars->33->57",
11030
"sharing.handlebars->11->24"
11031
]
@@ -11012,7 +11035,7 @@
11035
"nl": "Ctrl + ",
11036
"fr": "Ctrl + ",
11037
"xloc": [
11015
- "default-mobile.handlebars->11->399"
11038
+ "default-mobile.handlebars->11->409"
11039
]
11040
},
11041
{
@@ -11120,8 +11143,8 @@
11143
"fr": "Le mot de passe actuel n'est pas correct.",
11144
"de": "Aktuelles Password nicht in korrekt.",
11145
"xloc": [
11123
- "default-mobile.handlebars->11->645",
11124
- "default.handlebars->33->2385"
11146
+ "default-mobile.handlebars->11->655",
11147
+ "default.handlebars->33->2395"
11148
]
11149
},
11150
{
@@ -11130,7 +11153,7 @@
11153
"fr": "Personnaliser",
11154
"de": "Anpassen",
11155
"xloc": [
11133
- "default-mobile.handlebars->11->362"
11156
+ "default-mobile.handlebars->11->368"
11157
]
11158
},
11159
{
@@ -11183,7 +11206,7 @@
11206
"zh-chs": "捷克文",
11207
"zh-cht": "捷克文",
11208
"xloc": [
11186
- "default.handlebars->33->1321"
11209
+ "default.handlebars->33->1331"
11210
]
11211
},
11212
{
@@ -11223,7 +11246,7 @@
11246
"zh-chs": "丹麦文",
11247
"zh-cht": "丹麥文",
11248
"xloc": [
11226
- "default.handlebars->33->1322"
11249
+ "default.handlebars->33->1332"
11250
]
11251
},
11252
{
@@ -11253,7 +11276,7 @@
11276
"zh-chs": "数据通道",
11277
"zh-cht": "數據通道",
11278
"xloc": [
11256
- "default.handlebars->33->1006",
11279
+ "default.handlebars->33->1012",
11280
"sharing.handlebars->11->11"
11281
]
11282
},
@@ -11274,7 +11297,7 @@
11297
"zh-chs": "日期和时间",
11298
"zh-cht": "日期和時間",
11299
"xloc": [
11277
- "default.handlebars->33->1480"
11300
+ "default.handlebars->33->1490"
11301
]
11302
},
11303
{
@@ -11294,8 +11317,8 @@
11317
"zh-chs": "天",
11318
"zh-cht": "天",
11319
"xloc": [
11297
- "default-mobile.handlebars->11->337",
11298
- "default.handlebars->33->933"
11320
+ "default-mobile.handlebars->11->341",
11321
+ "default.handlebars->33->937"
11322
]
11323
},
11324
{
@@ -11315,7 +11338,7 @@
11338
"zh-chs": "停用",
11339
"zh-cht": "停用",
11340
"xloc": [
11318
- "default.handlebars->33->1644"
11341
+ "default.handlebars->33->1654"
11342
]
11343
},
11344
{
@@ -11335,7 +11358,7 @@
11358
"zh-chs": "如果设置停用CCM",
11359
"zh-cht": "如果設置停用CCM",
11360
"xloc": [
11338
- "default.handlebars->33->1656"
11361
+ "default.handlebars->33->1666"
11362
]
11363
},
11364
{
@@ -11393,10 +11416,10 @@
11416
"zh-chs": "默认",
11417
"zh-cht": "默認",
11418
"xloc": [
11396
- "default.handlebars->33->2074",
11397
- "default.handlebars->33->2122",
11398
- "default.handlebars->33->2133",
11399
- "default.handlebars->33->2201"
11419
+ "default.handlebars->33->2084",
11420
+ "default.handlebars->33->2132",
11421
+ "default.handlebars->33->2143",
11422
+ "default.handlebars->33->2211"
11423
]
11424
},
11425
{
@@ -11405,8 +11428,8 @@
11428
"nl": "Del",
11429
"de": "Löschen",
11430
"xloc": [
11408
- "default-mobile.handlebars->11->369",
11409
- "default.handlebars->33->1027"
11431
+ "default-mobile.handlebars->11->375",
11432
+ "default.handlebars->33->1033"
11433
]
11434
},
11435
{
@@ -11427,12 +11450,12 @@
11450
"zh-cht": "刪除",
11451
"xloc": [
11452
"default-mobile.handlebars->11->146",
11430
- "default-mobile.handlebars->11->410",
11453
+ "default-mobile.handlebars->11->420",
11454
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
11455
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
11456
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
11434
- "default.handlebars->33->1109",
11435
- "default.handlebars->33->1848",
11457
+ "default.handlebars->33->1119",
11458
+ "default.handlebars->33->1858",
11459
"default.handlebars->33->613",
11460
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
11461
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -11464,7 +11487,7 @@
11487
"zh-cht": "刪除帳戶",
11488
"xloc": [
11489
"default-mobile.handlebars->11->108",
11467
- "default.handlebars->33->1517"
11490
+ "default.handlebars->33->1527"
11491
]
11492
},
11493
{
@@ -11484,7 +11507,7 @@
11507
"zh-chs": "删除帐户",
11508
"zh-cht": "刪除帳戶",
11509
"xloc": [
11487
- "default.handlebars->33->2041"
11510
+ "default.handlebars->33->2051"
11511
]
11512
},
11513
{
@@ -11504,8 +11527,8 @@
11527
"zh-chs": "删除设备",
11528
"zh-cht": "刪除裝置",
11529
"xloc": [
11507
- "default-mobile.handlebars->11->298",
11508
- "default.handlebars->33->750"
11530
+ "default-mobile.handlebars->11->302",
11531
+ "default.handlebars->33->754"
11532
]
11533
},
11534
{
@@ -11525,11 +11548,11 @@
11548
"zh-chs": "删除群组",
11549
"zh-cht": "刪除群組",
11550
"xloc": [
11528
- "default-mobile.handlebars->11->557",
11529
- "default-mobile.handlebars->11->560",
11530
- "default.handlebars->33->1639",
11531
- "default.handlebars->33->1640",
11532
- "default.handlebars->33->1673"
11551
+ "default-mobile.handlebars->11->567",
11552
+ "default-mobile.handlebars->11->570",
11553
+ "default.handlebars->33->1649",
11554
+ "default.handlebars->33->1650",
11555
+ "default.handlebars->33->1683"
11556
]
11557
},
11558
{
@@ -11549,8 +11572,8 @@
11572
"zh-chs": "删除节点",
11573
"zh-cht": "刪除節點",
11574
"xloc": [
11552
- "default-mobile.handlebars->11->345",
11553
- "default.handlebars->33->959"
11575
+ "default-mobile.handlebars->11->349",
11576
+ "default.handlebars->33->963"
11577
]
11578
},
11579
{
@@ -11590,7 +11613,7 @@
11613
"zh-chs": "删除用户",
11614
"zh-cht": "刪除用戶",
11615
"xloc": [
11593
- "default.handlebars->33->2253"
11616
+ "default.handlebars->33->2263"
11617
]
11618
},
11619
{
@@ -11610,8 +11633,8 @@
11633
"zh-chs": "删除用户群组",
11634
"zh-cht": "刪除用戶群組",
11635
"xloc": [
11613
- "default.handlebars->33->2171",
11614
- "default.handlebars->33->2181"
11636
+ "default.handlebars->33->2181",
11637
+ "default.handlebars->33->2191"
11638
]
11639
},
11640
{
@@ -11631,7 +11654,7 @@
11654
"zh-chs": "删除用户群组",
11655
"zh-cht": "刪除用戶群組",
11656
"xloc": [
11634
- "default.handlebars->33->2120"
11657
+ "default.handlebars->33->2130"
11658
]
11659
},
11660
{
@@ -11651,7 +11674,7 @@
11674
"zh-chs": "删除用户{0}",
11675
"zh-cht": "刪除用戶{0}",
11676
"xloc": [
11654
- "default.handlebars->33->2280"
11677
+ "default.handlebars->33->2290"
11678
]
11679
},
11680
{
@@ -11672,7 +11695,7 @@
11695
"zh-cht": "刪除帳戶",
11696
"xloc": [
11697
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
11675
- "default.handlebars->33->2037",
11698
+ "default.handlebars->33->2047",
11699
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11700
]
11701
},
@@ -11713,7 +11736,7 @@
11736
"zh-chs": "删除群组",
11737
"zh-cht": "刪除群組",
11738
"xloc": [
11716
- "default.handlebars->33->2116"
11739
+ "default.handlebars->33->2126"
11740
]
11741
},
11742
{
@@ -11753,7 +11776,7 @@
11776
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11777
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11778
"xloc": [
11756
- "default.handlebars->33->1908"
11779
+ "default.handlebars->33->1918"
11780
]
11781
},
11782
{
@@ -11774,9 +11797,9 @@
11797
"zh-cht": "刪除所選項目?",
11798
"xloc": [
11799
"default-mobile.handlebars->11->148",
11777
- "default-mobile.handlebars->11->412",
11778
- "default.handlebars->33->1111",
11779
- "default.handlebars->33->1850",
11800
+ "default-mobile.handlebars->11->422",
11801
+ "default.handlebars->33->1121",
11802
+ "default.handlebars->33->1860",
11803
"sharing.handlebars->11->63"
11804
]
11805
},
@@ -11797,7 +11820,7 @@
11820
"zh-chs": "删除用户群组{0}?",
11821
"zh-cht": "刪除用戶群組{0}?",
11822
"xloc": [
11800
- "default.handlebars->33->2179"
11823
+ "default.handlebars->33->2189"
11824
]
11825
},
11826
{
@@ -11818,9 +11841,9 @@
11841
"zh-cht": "刪除{0}個所選項目?",
11842
"xloc": [
11843
"default-mobile.handlebars->11->147",
11821
- "default-mobile.handlebars->11->411",
11822
- "default.handlebars->33->1110",
11823
- "default.handlebars->33->1849",
11844
+ "default-mobile.handlebars->11->421",
11845
+ "default.handlebars->33->1120",
11846
+ "default.handlebars->33->1859",
11847
"sharing.handlebars->11->62"
11848
]
11849
},
@@ -11841,7 +11864,7 @@
11864
"zh-chs": "删除{0}?",
11865
"zh-cht": "刪除{0}?",
11866
"xloc": [
11844
- "default-mobile.handlebars->11->346"
11867
+ "default-mobile.handlebars->11->350"
11868
]
11869
},
11870
{
@@ -11861,7 +11884,7 @@
11884
"zh-chs": "删除:“{0}”",
11885
"zh-cht": "刪除:“{0}”",
11886
"xloc": [
11864
- "default.handlebars->33->1907"
11887
+ "default.handlebars->33->1917"
11888
]
11889
},
11890
{
@@ -11881,7 +11904,7 @@
11904
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11905
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11906
"xloc": [
11884
- "default.handlebars->33->1909"
11907
+ "default.handlebars->33->1919"
11908
]
11909
},
11910
{
@@ -11901,8 +11924,8 @@
11924
"zh-chs": "被拒绝",
11925
"zh-cht": "被拒絕",
11926
"xloc": [
11904
- "default-mobile.handlebars->11->356",
11905
- "default.handlebars->33->1002",
11927
+ "default-mobile.handlebars->11->362",
11928
+ "default.handlebars->33->1008",
11929
"sharing.handlebars->11->29",
11930
"sharing.handlebars->11->7"
11931
]
@@ -11999,23 +12022,23 @@
12022
"default-mobile.handlebars->11->125",
12023
"default-mobile.handlebars->11->257",
12024
"default-mobile.handlebars->11->258",
12002
- "default-mobile.handlebars->11->351",
12003
- "default-mobile.handlebars->11->473",
12004
- "default-mobile.handlebars->11->548",
12005
- "default-mobile.handlebars->11->562",
12006
- "default.handlebars->33->1163",
12025
+ "default-mobile.handlebars->11->357",
12026
+ "default-mobile.handlebars->11->483",
12027
+ "default-mobile.handlebars->11->558",
12028
+ "default-mobile.handlebars->11->572",
12029
+ "default.handlebars->33->1003",
12030
"default.handlebars->33->1173",
12008
- "default.handlebars->33->1538",
12009
- "default.handlebars->33->1586",
12010
- "default.handlebars->33->1675",
12011
- "default.handlebars->33->2125",
12031
+ "default.handlebars->33->1183",
12032
+ "default.handlebars->33->1548",
12033
+ "default.handlebars->33->1596",
12034
+ "default.handlebars->33->1685",
12035
"default.handlebars->33->2135",
12013
- "default.handlebars->33->2136",
12014
- "default.handlebars->33->2177",
12036
+ "default.handlebars->33->2145",
12037
+ "default.handlebars->33->2146",
12038
+ "default.handlebars->33->2187",
12039
"default.handlebars->33->654",
12040
"default.handlebars->33->655",
12041
"default.handlebars->33->95",
12018
- "default.handlebars->33->997",
12042
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
12043
]
12044
},
@@ -12053,14 +12076,14 @@
12076
"zh-chs": "桌面",
12077
"zh-cht": "桌面",
12078
"xloc": [
12056
- "default-mobile.handlebars->11->305",
12057
- "default.handlebars->33->1069",
12058
- "default.handlebars->33->1681",
12059
- "default.handlebars->33->2335",
12060
- "default.handlebars->33->2436",
12079
+ "default-mobile.handlebars->11->309",
12080
+ "default.handlebars->33->1075",
12081
+ "default.handlebars->33->1691",
12082
+ "default.handlebars->33->2345",
12083
+ "default.handlebars->33->2446",
12084
"default.handlebars->33->619",
12062
- "default.handlebars->33->797",
12063
- "default.handlebars->33->864",
12085
+ "default.handlebars->33->801",
12086
+ "default.handlebars->33->868",
12087
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
12088
"default.handlebars->contextMenu->cxdesktop",
12089
"sharing.handlebars->11->23",
@@ -12072,8 +12095,8 @@
12095
"nl": "Desktop + Bestanden",
12096
"fr": "Bureau + Fichiers",
12097
"xloc": [
12075
- "default.handlebars->33->801",
12076
- "default.handlebars->33->867"
12098
+ "default.handlebars->33->805",
12099
+ "default.handlebars->33->871"
12100
]
12101
},
12102
{
@@ -12081,7 +12104,7 @@
12104
"nl": "Desktop + Terminal",
12105
"fr": "Bureau + Terminal",
12106
"xloc": [
12084
- "default.handlebars->33->798"
12107
+ "default.handlebars->33->802"
12108
]
12109
},
12110
{
@@ -12089,8 +12112,8 @@
12112
"nl": "Desktop + Terminal + Bestanden",
12113
"fr": "Bureau + Terminal + Fichiers",
12114
"xloc": [
12092
- "default.handlebars->33->802",
12093
- "default.handlebars->33->869"
12115
+ "default.handlebars->33->806",
12116
+ "default.handlebars->33->873"
12117
]
12118
},
12119
{
@@ -12118,7 +12141,7 @@
12141
"nl": "Desktop Multiplex",
12142
"fr": "Bureau multiplexé",
12143
"xloc": [
12121
- "default.handlebars->33->2441"
12144
+ "default.handlebars->33->2451"
12145
]
12146
},
12147
{
@@ -12138,9 +12161,9 @@
12161
"zh-chs": "桌面通知",
12162
"zh-cht": "桌面通知",
12163
"xloc": [
12141
- "default.handlebars->33->1600",
12142
- "default.handlebars->33->2140",
12143
- "default.handlebars->33->2227",
12164
+ "default.handlebars->33->1610",
12165
+ "default.handlebars->33->2150",
12166
+ "default.handlebars->33->2237",
12167
"default.handlebars->33->712"
12168
]
12169
},
@@ -12161,9 +12184,9 @@
12184
"zh-chs": "桌面提示",
12185
"zh-cht": "桌面提示",
12186
"xloc": [
12164
- "default.handlebars->33->1599",
12165
- "default.handlebars->33->2139",
12166
- "default.handlebars->33->2226",
12187
+ "default.handlebars->33->1609",
12188
+ "default.handlebars->33->2149",
12189
+ "default.handlebars->33->2236",
12190
"default.handlebars->33->711"
12191
]
12192
},
@@ -12184,9 +12207,9 @@
12207
"zh-chs": "桌面提示+工具栏",
12208
"zh-cht": "桌面提示+工具欄",
12209
"xloc": [
12187
- "default.handlebars->33->1597",
12188
- "default.handlebars->33->2137",
12189
- "default.handlebars->33->2224",
12210
+ "default.handlebars->33->1607",
12211
+ "default.handlebars->33->2147",
12212
+ "default.handlebars->33->2234",
12213
"default.handlebars->33->709"
12214
]
12215
},
@@ -12195,7 +12218,7 @@
12218
"nl": "Desktop sessie",
12219
"fr": "Session de bureau",
12220
"xloc": [
12198
- "default.handlebars->33->2328"
12221
+ "default.handlebars->33->2338"
12222
]
12223
},
12224
{
@@ -12257,9 +12280,9 @@
12280
"zh-chs": "桌面工具栏",
12281
"zh-cht": "桌面工具欄",
12282
"xloc": [
12260
- "default.handlebars->33->1598",
12261
- "default.handlebars->33->2138",
12262
- "default.handlebars->33->2225",
12283
+ "default.handlebars->33->1608",
12284
+ "default.handlebars->33->2148",
12285
+ "default.handlebars->33->2235",
12286
"default.handlebars->33->710"
12287
]
12288
},
@@ -12269,7 +12292,7 @@
12292
"fr": "Bureau en visualisation seulement",
12293
"de": "Desktop, nur Ansehen",
12294
"xloc": [
12272
- "default.handlebars->33->870"
12295
+ "default.handlebars->33->874"
12296
]
12297
},
12298
{
@@ -12289,7 +12312,7 @@
12312
"zh-chs": "桌面时段",
12313
"zh-cht": "桌面時段",
12314
"xloc": [
12292
- "default.handlebars->33->1068"
12315
+ "default.handlebars->33->1074"
12316
]
12317
},
12318
{
@@ -12340,7 +12363,7 @@
12363
"zh-chs": "细节",
12364
"zh-cht": "細節",
12365
"xloc": [
12343
- "default-mobile.handlebars->11->308",
12366
+ "default-mobile.handlebars->11->312",
12367
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
12368
"default.handlebars->contextMenu->cxdetails"
12369
]
@@ -12382,12 +12405,12 @@
12405
"zh-chs": "设备",
12406
"zh-cht": "裝置",
12407
"xloc": [
12385
- "default-mobile.handlebars->11->468",
12386
- "default.handlebars->33->1158",
12387
- "default.handlebars->33->1266",
12388
- "default.handlebars->33->1704",
12408
+ "default-mobile.handlebars->11->478",
12409
+ "default.handlebars->33->1168",
12410
+ "default.handlebars->33->1276",
12411
+ "default.handlebars->33->1714",
12412
"default.handlebars->33->204",
12390
- "default.handlebars->33->2299",
12413
+ "default.handlebars->33->2309",
12414
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
12415
]
12416
},
@@ -12408,9 +12431,9 @@
12431
"zh-chs": "设备指令",
12432
"zh-cht": "裝置指令",
12433
"xloc": [
12411
- "default-mobile.handlebars->11->326",
12412
- "default-mobile.handlebars->11->335",
12413
- "default.handlebars->33->916"
12434
+ "default-mobile.handlebars->11->330",
12435
+ "default-mobile.handlebars->11->339",
12436
+ "default.handlebars->33->920"
12437
]
12438
},
12439
{
@@ -12460,16 +12483,16 @@
12483
"zh-cht": "裝置群",
12484
"xloc": [
12485
"agent-translations.json",
12463
- "default-mobile.handlebars->11->623",
12464
- "default.handlebars->33->1699",
12465
- "default.handlebars->33->1702",
12466
- "default.handlebars->33->1703",
12467
- "default.handlebars->33->1988",
12468
- "default.handlebars->33->2163",
12469
- "default.handlebars->33->2169",
12470
- "default.handlebars->33->2287",
12471
- "default.handlebars->33->2344",
12472
- "default.handlebars->33->2363"
12486
+ "default-mobile.handlebars->11->633",
12487
+ "default.handlebars->33->1709",
12488
+ "default.handlebars->33->1712",
12489
+ "default.handlebars->33->1713",
12490
+ "default.handlebars->33->1998",
12491
+ "default.handlebars->33->2173",
12492
+ "default.handlebars->33->2179",
12493
+ "default.handlebars->33->2297",
12494
+ "default.handlebars->33->2354",
12495
+ "default.handlebars->33->2373"
12496
]
12497
},
12498
{
@@ -12489,8 +12512,8 @@
12512
"zh-chs": "设备组用户",
12513
"zh-cht": "裝置群用戶",
12514
"xloc": [
12492
- "default-mobile.handlebars->11->612",
12493
- "default.handlebars->33->1769"
12515
+ "default-mobile.handlebars->11->622",
12516
+ "default.handlebars->33->1779"
12517
]
12518
},
12519
{
@@ -12511,11 +12534,11 @@
12534
"zh-cht": "裝置群",
12535
"xloc": [
12536
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
12514
- "default.handlebars->33->2004",
12515
- "default.handlebars->33->2110",
12516
- "default.handlebars->33->2150",
12517
- "default.handlebars->33->2221",
12518
- "default.handlebars->33->2414",
12537
+ "default.handlebars->33->2014",
12538
+ "default.handlebars->33->2120",
12539
+ "default.handlebars->33->2160",
12540
+ "default.handlebars->33->2231",
12541
+ "default.handlebars->33->2424",
12542
"default.handlebars->container->column_l->p2->p2info->9"
12543
]
12544
},
@@ -12556,7 +12579,7 @@
12579
"zh-chs": "设备位置",
12580
"zh-cht": "裝置位置",
12581
"xloc": [
12559
- "default.handlebars->33->960"
12582
+ "default.handlebars->33->964"
12583
]
12584
},
12585
{
@@ -12576,7 +12599,7 @@
12599
"zh-chs": "设备消息",
12600
"zh-cht": "裝置訊息",
12601
"xloc": [
12579
- "default.handlebars->33->854"
12602
+ "default.handlebars->33->858"
12603
]
12604
},
12605
{
@@ -12596,11 +12619,11 @@
12619
"zh-chs": "设备名称",
12620
"zh-cht": "裝置名稱",
12621
"xloc": [
12599
- "default-mobile.handlebars->11->349",
12600
- "default.handlebars->33->2343",
12622
+ "default-mobile.handlebars->11->355",
12623
+ "default.handlebars->33->1001",
12624
+ "default.handlebars->33->2353",
12625
"default.handlebars->33->348",
12626
"default.handlebars->33->357",
12603
- "default.handlebars->33->995",
12627
"player.handlebars->3->9"
12628
]
12629
},
@@ -12622,7 +12645,7 @@
12645
"zh-cht": "裝置通知",
12646
"xloc": [
12647
"default.handlebars->33->557",
12625
- "default.handlebars->33->859"
12648
+ "default.handlebars->33->863"
12649
]
12650
},
12651
{
@@ -12631,7 +12654,7 @@
12654
"fr": "Lien de jumelage de l'appareil",
12655
"de": "Gerät Verbindungs-Link",
12656
"xloc": [
12634
- "default-mobile.handlebars->11->566"
12657
+ "default-mobile.handlebars->11->576"
12658
]
12659
},
12660
{
@@ -12668,7 +12691,7 @@
12691
"zh-chs": "设备共享链接",
12692
"zh-cht": "設備共享鏈接",
12693
"xloc": [
12671
- "default.handlebars->33->794"
12694
+ "default.handlebars->33->798"
12695
]
12696
},
12697
{
@@ -12688,12 +12711,13 @@
12711
"zh-chs": "设备提示",
12712
"zh-cht": "裝置吐司",
12713
"xloc": [
12691
- "default-mobile.handlebars->11->303"
12714
+ "default-mobile.handlebars->11->307"
12715
]
12716
},
12717
{
12718
"en": "Device Type",
12719
"nl": "Apparaatsoort",
12720
+ "fr": "Type d'appareil",
12721
"xloc": [
12722
"default-mobile.handlebars->11->259",
12723
"default-mobile.handlebars->11->261",
@@ -12728,8 +12752,8 @@
12752
"zh-chs": "设备连接。",
12753
"zh-cht": "裝置連接。",
12754
"xloc": [
12731
- "default.handlebars->33->1505",
12732
- "default.handlebars->33->1790"
12755
+ "default.handlebars->33->1515",
12756
+ "default.handlebars->33->1800"
12757
]
12758
},
12759
{
@@ -12749,8 +12773,8 @@
12773
"zh-chs": "设备断开连接。",
12774
"zh-cht": "裝置斷開連接。",
12775
"xloc": [
12752
- "default.handlebars->33->1506",
12753
- "default.handlebars->33->1791"
12776
+ "default.handlebars->33->1516",
12777
+ "default.handlebars->33->1801"
12778
]
12779
},
12780
{
@@ -12770,7 +12794,7 @@
12794
"zh-chs": "创建的设备组:{0}",
12795
"zh-cht": "設備組已創建:{0}",
12796
"xloc": [
12773
- "default.handlebars->33->1938"
12797
+ "default.handlebars->33->1948"
12798
]
12799
},
12800
{
@@ -12790,7 +12814,7 @@
12814
"zh-chs": "设备组已删除:{0}",
12815
"zh-cht": "設備組已刪除:{0}",
12816
"xloc": [
12793
- "default.handlebars->33->1939"
12817
+ "default.handlebars->33->1949"
12818
]
12819
},
12820
{
@@ -12810,7 +12834,7 @@
12834
"zh-chs": "设备组成员身份已更改:{0}",
12835
"zh-cht": "設備組成員身份已更改:{0}",
12836
"xloc": [
12813
- "default.handlebars->33->1940"
12837
+ "default.handlebars->33->1950"
12838
]
12839
},
12840
{
@@ -12830,8 +12854,8 @@
12854
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12855
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12856
"xloc": [
12833
- "default-mobile.handlebars->11->333",
12834
- "default.handlebars->33->851"
12857
+ "default-mobile.handlebars->11->337",
12858
+ "default.handlebars->33->855"
12859
]
12860
},
12861
{
@@ -12851,7 +12875,7 @@
12875
"zh-chs": "设备组通知已更改",
12876
"zh-cht": "設備組通知已更改",
12877
"xloc": [
12854
- "default.handlebars->33->1935"
12878
+ "default.handlebars->33->1945"
12879
]
12880
},
12881
{
@@ -12871,7 +12895,7 @@
12895
"zh-chs": "未删除的设备组:{0}",
12896
"zh-cht": "未刪除的設備組:{0}",
12897
"xloc": [
12874
- "default.handlebars->33->1918"
12898
+ "default.handlebars->33->1928"
12899
]
12900
},
12901
{
@@ -13253,7 +13277,7 @@
13277
"fr": "L'appareil a demandé l'activation d'Intel (R) AMT ACM TLS, nom de domaine complet: {0} ",
13278
"de": "Gerät angefordert Intel(R) AMT ACM TLS activation, FQDN: {0}",
13279
"xloc": [
13256
- "default.handlebars->33->1973"
13280
+ "default.handlebars->33->1983"
13281
]
13282
},
13283
{
@@ -13273,7 +13297,7 @@
13297
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
13298
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
13299
"xloc": [
13276
- "default.handlebars->33->1920"
13300
+ "default.handlebars->33->1930"
13301
]
13302
},
13303
{
@@ -13310,9 +13334,9 @@
13334
"zh-chs": "设备",
13335
"zh-cht": "裝置",
13336
"xloc": [
13313
- "default.handlebars->33->1638",
13314
- "default.handlebars->33->2111",
13315
- "default.handlebars->33->2151"
13337
+ "default.handlebars->33->1648",
13338
+ "default.handlebars->33->2121",
13339
+ "default.handlebars->33->2161"
13340
]
13341
},
13342
{
@@ -13332,7 +13356,7 @@
13356
"zh-chs": "已禁用",
13357
"zh-cht": "已禁用",
13358
"xloc": [
13335
- "default-mobile.handlebars->11->453",
13359
+ "default-mobile.handlebars->11->463",
13360
"default.handlebars->33->705"
13361
]
13362
},
@@ -13353,7 +13377,7 @@
13377
"zh-chs": "禁用的电子邮件两因素身份验证",
13378
"zh-cht": "禁用的電子郵件兩因素身份驗證",
13379
"xloc": [
13356
- "default.handlebars->33->1951"
13380
+ "default.handlebars->33->1961"
13381
]
13382
},
13383
{
@@ -13374,11 +13398,11 @@
13398
"zh-cht": "斷線",
13399
"xloc": [
13400
"agent-translations.json",
13377
- "default-mobile.handlebars->11->401",
13401
+ "default-mobile.handlebars->11->411",
13402
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
13403
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
13380
- "default.handlebars->33->1091",
13381
- "default.handlebars->33->1610",
13404
+ "default.handlebars->33->1101",
13405
+ "default.handlebars->33->1620",
13406
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
13407
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
13408
"sharing.handlebars->11->43",
@@ -13482,7 +13506,7 @@
13506
"zh-chs": "在远程设备上显示一个消息框。",
13507
"zh-cht": "在遠程裝置上顯示一個訊息框。",
13508
"xloc": [
13485
- "default.handlebars->33->855"
13509
+ "default.handlebars->33->859"
13510
]
13511
},
13512
{
@@ -13522,7 +13546,7 @@
13546
"zh-chs": "在远程设备上显示短信",
13547
"zh-cht": "在遠程裝置上顯示短信",
13548
"xloc": [
13525
- "default.handlebars->33->742"
13549
+ "default.handlebars->33->746"
13550
]
13551
},
13552
{
@@ -13542,7 +13566,7 @@
13566
"zh-chs": "显示设备组名称",
13567
"zh-cht": "顯示裝置群名稱",
13568
"xloc": [
13545
- "default.handlebars->33->1504"
13569
+ "default.handlebars->33->1514"
13570
]
13571
},
13572
{
@@ -13562,7 +13586,7 @@
13586
"zh-chs": "显示名称",
13587
"zh-cht": "顯示名稱",
13588
"xloc": [
13565
- "default.handlebars->33->1054"
13589
+ "default.handlebars->33->1060"
13590
]
13591
},
13592
{
@@ -13582,7 +13606,7 @@
13606
"zh-chs": "显示公共连结",
13607
"zh-cht": "顯示公共鏈結",
13608
"xloc": [
13585
- "default.handlebars->33->1821"
13609
+ "default.handlebars->33->1831"
13610
]
13611
},
13612
{
@@ -13590,7 +13614,7 @@
13614
"nl": "Scherm {0}",
13615
"fr": "Affichage {0}",
13616
"xloc": [
13593
- "default.handlebars->33->1071"
13617
+ "default.handlebars->33->1077"
13618
]
13619
},
13620
{
@@ -13610,7 +13634,7 @@
13634
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13635
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13636
"xloc": [
13613
- "default.handlebars->33->1880"
13637
+ "default.handlebars->33->1890"
13638
]
13639
},
13640
{
@@ -13630,7 +13654,7 @@
13654
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13655
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13656
"xloc": [
13633
- "default.handlebars->33->1888"
13657
+ "default.handlebars->33->1898"
13658
]
13659
},
13660
{
@@ -13650,8 +13674,8 @@
13674
"zh-chs": "什么都不做",
13675
"zh-cht": "什麼都不做",
13676
"xloc": [
13653
- "default.handlebars->33->1659",
13654
- "default.handlebars->33->1663"
13677
+ "default.handlebars->33->1669",
13678
+ "default.handlebars->33->1673"
13679
]
13680
},
13681
{
@@ -13671,10 +13695,10 @@
13695
"zh-chs": "域",
13696
"zh-cht": "域",
13697
"xloc": [
13674
- "default.handlebars->33->2075",
13675
- "default.handlebars->33->2123",
13676
- "default.handlebars->33->2132",
13677
- "default.handlebars->33->2200",
13698
+ "default.handlebars->33->2085",
13699
+ "default.handlebars->33->2133",
13700
+ "default.handlebars->33->2142",
13701
+ "default.handlebars->33->2210",
13702
"mstsc.handlebars->main->1->3->1->2->1->0",
13703
"mstsc.handlebars->main->1->3->1->2->3"
13704
]
@@ -13696,7 +13720,7 @@
13720
"zh-chs": "请勿更改,如果设置请保留CCM",
13721
"zh-cht": "請勿更改,如果設置請保留CCM",
13722
"xloc": [
13699
- "default.handlebars->33->1655"
13723
+ "default.handlebars->33->1665"
13724
]
13725
},
13726
{
@@ -13733,7 +13757,7 @@
13757
"zh-chs": "不要连接到服务器",
13758
"zh-cht": "不要連接到伺服器",
13759
"xloc": [
13736
- "default.handlebars->33->1664"
13760
+ "default.handlebars->33->1674"
13761
]
13762
},
13763
{
@@ -13798,8 +13822,8 @@
13822
"nl": "Omlaag",
13823
"de": "runter",
13824
"xloc": [
13801
- "default-mobile.handlebars->11->377",
13802
- "default.handlebars->33->1035"
13825
+ "default-mobile.handlebars->11->383",
13826
+ "default.handlebars->33->1041"
13827
]
13828
},
13829
{
@@ -13825,6 +13849,7 @@
13849
},
13850
{
13851
"en": "Download Assistant for Windows",
13852
+ "fr": "Télécharger \"Assistant\" pour Windows",
13853
"xloc": [
13854
"agentinvite.handlebars->container->column_l->5->assistab->3->5->assisturl"
13855
]
@@ -13868,8 +13893,8 @@
13893
"zh-chs": "下载档案",
13894
"zh-cht": "下載檔案",
13895
"xloc": [
13871
- "default-mobile.handlebars->11->431",
13872
- "default.handlebars->33->1130",
13896
+ "default-mobile.handlebars->11->441",
13897
+ "default.handlebars->33->1140",
13898
"sharing.handlebars->11->82"
13899
]
13900
},
@@ -13910,7 +13935,7 @@
13935
"zh-chs": "下载MeshCmd",
13936
"zh-cht": "下載MeshCmd",
13937
"xloc": [
13913
- "default.handlebars->33->985"
13938
+ "default.handlebars->33->989"
13939
]
13940
},
13941
{
@@ -13970,7 +13995,7 @@
13995
"zh-chs": "下载报告",
13996
"zh-cht": "下載報告",
13997
"xloc": [
13973
- "default.handlebars->33->1993",
13998
+ "default.handlebars->33->2003",
13999
"default.handlebars->container->column_l->p3->3->1->0->3"
14000
]
14001
},
@@ -13991,7 +14016,7 @@
14016
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
14017
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
14018
"xloc": [
13994
- "default.handlebars->33->978"
14019
+ "default.handlebars->33->982"
14020
]
14021
},
14022
{
@@ -14071,7 +14096,7 @@
14096
"zh-chs": "下载电源事件",
14097
"zh-cht": "下載電源事件",
14098
"xloc": [
14074
- "default.handlebars->33->934"
14099
+ "default.handlebars->33->938"
14100
]
14101
},
14102
{
@@ -14180,7 +14205,7 @@
14205
"zh-chs": "使用以下一种档案格式下载事件列表。",
14206
"zh-cht": "使用以下一種檔案格式下載事件列表。",
14207
"xloc": [
14183
- "default.handlebars->33->1994"
14208
+ "default.handlebars->33->2004"
14209
]
14210
},
14211
{
@@ -14200,7 +14225,7 @@
14225
"zh-chs": "使用以下一种档案格式下载用户列表。",
14226
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
14227
"xloc": [
14203
- "default.handlebars->33->2059"
14228
+ "default.handlebars->33->2069"
14229
]
14230
},
14231
{
@@ -14281,7 +14306,7 @@
14306
"zh-chs": "下载:“{0}”",
14307
"zh-cht": "下載:“{0}”",
14308
"xloc": [
14284
- "default.handlebars->33->1911"
14309
+ "default.handlebars->33->1921"
14310
]
14311
},
14312
{
@@ -14290,7 +14315,7 @@
14315
"fr": "Téléchargement : \\\"{0}\\\", Taille : {1}",
14316
"de": "Download: \\\"{0}\\\", Größe: {1}",
14317
"xloc": [
14293
- "default.handlebars->33->1968"
14318
+ "default.handlebars->33->1978"
14319
]
14320
},
14321
{
@@ -14330,7 +14355,7 @@
14355
"zh-chs": "代理重复",
14356
"zh-cht": "代理重複",
14357
"xloc": [
14333
- "default.handlebars->33->2410"
14358
+ "default.handlebars->33->2420"
14359
]
14360
},
14361
{
@@ -14370,7 +14395,7 @@
14395
"zh-chs": "复制用户组",
14396
"zh-cht": "複製用戶群",
14397
"xloc": [
14373
- "default.handlebars->33->2127"
14398
+ "default.handlebars->33->2137"
14399
]
14400
},
14401
{
@@ -14407,8 +14432,8 @@
14432
"zh-chs": "持续时间",
14433
"zh-cht": "持續時間",
14434
"xloc": [
14410
- "default.handlebars->33->2323",
14411
- "default.handlebars->33->2349",
14435
+ "default.handlebars->33->2333",
14436
+ "default.handlebars->33->2359",
14437
"player.handlebars->3->2"
14438
]
14439
},
@@ -14446,7 +14471,7 @@
14471
"zh-chs": "荷兰文(比利时)",
14472
"zh-cht": "荷蘭文(比利時)",
14473
"xloc": [
14449
- "default.handlebars->33->1324"
14474
+ "default.handlebars->33->1334"
14475
]
14476
},
14477
{
@@ -14466,7 +14491,7 @@
14491
"zh-chs": "荷兰文(标准)",
14492
"zh-cht": "荷蘭文(標準)",
14493
"xloc": [
14469
- "default.handlebars->33->1323"
14494
+ "default.handlebars->33->1333"
14495
]
14496
},
14497
{
@@ -14755,8 +14780,10 @@
14780
"zh-chs": "编辑设备",
14781
"zh-cht": "編輯裝置",
14782
"xloc": [
14758
- "default-mobile.handlebars->11->354",
14759
- "default.handlebars->33->1000"
14783
+ "default-mobile.handlebars->11->353",
14784
+ "default-mobile.handlebars->11->360",
14785
+ "default.handlebars->33->1006",
14786
+ "default.handlebars->33->999"
14787
]
14788
},
14789
{
@@ -14776,13 +14803,13 @@
14803
"zh-chs": "编辑设备组",
14804
"zh-cht": "編輯裝置群",
14805
"xloc": [
14779
- "default-mobile.handlebars->11->563",
14780
- "default-mobile.handlebars->11->569",
14781
- "default-mobile.handlebars->11->589",
14782
- "default.handlebars->33->1676",
14783
- "default.handlebars->33->1708",
14784
- "default.handlebars->33->1733",
14785
- "default.handlebars->33->1745"
14806
+ "default-mobile.handlebars->11->573",
14807
+ "default-mobile.handlebars->11->579",
14808
+ "default-mobile.handlebars->11->599",
14809
+ "default.handlebars->33->1686",
14810
+ "default.handlebars->33->1718",
14811
+ "default.handlebars->33->1743",
14812
+ "default.handlebars->33->1755"
14813
]
14814
},
14815
{
@@ -14802,7 +14829,7 @@
14829
"zh-chs": "编辑设备组功能",
14830
"zh-cht": "編輯裝置群功能",
14831
"xloc": [
14805
- "default.handlebars->33->1694"
14832
+ "default.handlebars->33->1704"
14833
]
14834
},
14835
{
@@ -14822,8 +14849,8 @@
14849
"zh-chs": "编辑设备组权限",
14850
"zh-cht": "編輯裝置群權限",
14851
"xloc": [
14825
- "default.handlebars->33->1730",
14826
- "default.handlebars->33->1742"
14852
+ "default.handlebars->33->1740",
14853
+ "default.handlebars->33->1752"
14854
]
14855
},
14856
{
@@ -14843,7 +14870,7 @@
14870
"zh-chs": "编辑设备组用户同意",
14871
"zh-cht": "編輯裝置群用戶同意",
14872
"xloc": [
14846
- "default.handlebars->33->1677"
14873
+ "default.handlebars->33->1687"
14874
]
14875
},
14876
{
@@ -14863,8 +14890,8 @@
14890
"zh-chs": "编辑设备笔记",
14891
"zh-cht": "編輯裝置筆記",
14892
"xloc": [
14866
- "default-mobile.handlebars->11->581",
14867
- "default.handlebars->33->1722"
14893
+ "default-mobile.handlebars->11->591",
14894
+ "default.handlebars->33->1732"
14895
]
14896
},
14897
{
@@ -14884,8 +14911,8 @@
14911
"zh-chs": "编辑设备权限",
14912
"zh-cht": "編輯裝置權限",
14913
"xloc": [
14887
- "default.handlebars->33->1735",
14888
- "default.handlebars->33->1737"
14914
+ "default.handlebars->33->1745",
14915
+ "default.handlebars->33->1747"
14916
]
14917
},
14918
{
@@ -14925,7 +14952,7 @@
14952
"zh-chs": "编辑设备用户同意",
14953
"zh-cht": "編輯裝置用戶同意",
14954
"xloc": [
14928
- "default.handlebars->33->1679"
14955
+ "default.handlebars->33->1689"
14956
]
14957
},
14958
{
@@ -14945,7 +14972,7 @@
14972
"zh-chs": "编辑群组",
14973
"zh-cht": "編輯群組",
14974
"xloc": [
14948
- "default.handlebars->33->828"
14975
+ "default.handlebars->33->832"
14976
]
14977
},
14978
{
@@ -14968,11 +14995,11 @@
14995
"default-mobile.handlebars->11->277",
14996
"default-mobile.handlebars->11->282",
14997
"default-mobile.handlebars->11->283",
14971
- "default-mobile.handlebars->11->344",
14998
+ "default-mobile.handlebars->11->348",
14999
"default.handlebars->33->676",
15000
"default.handlebars->33->681",
15001
"default.handlebars->33->682",
14975
- "default.handlebars->33->941"
15002
+ "default.handlebars->33->945"
15003
]
15004
},
15005
{
@@ -14992,8 +15019,8 @@
15019
"zh-chs": "编辑笔记",
15020
"zh-cht": "編輯筆記",
15021
"xloc": [
14995
- "default-mobile.handlebars->11->596",
14996
- "default.handlebars->33->1752"
15022
+ "default-mobile.handlebars->11->606",
15023
+ "default.handlebars->33->1762"
15024
]
15025
},
15026
{
@@ -15013,7 +15040,7 @@
15040
"zh-chs": "编辑用户同意",
15041
"zh-cht": "編輯用戶同意",
15042
"xloc": [
15016
- "default.handlebars->33->1678"
15043
+ "default.handlebars->33->1688"
15044
]
15045
},
15046
{
@@ -15033,7 +15060,7 @@
15060
"zh-chs": "编辑用户设备组权限",
15061
"zh-cht": "編輯用戶裝置群權限",
15062
"xloc": [
15036
- "default.handlebars->33->1743"
15063
+ "default.handlebars->33->1753"
15064
]
15065
},
15066
{
@@ -15053,7 +15080,7 @@
15080
"zh-chs": "编辑用户设备权限",
15081
"zh-cht": "編輯用戶裝置權限",
15082
"xloc": [
15056
- "default.handlebars->33->1738"
15083
+ "default.handlebars->33->1748"
15084
]
15085
},
15086
{
@@ -15073,7 +15100,7 @@
15100
"zh-chs": "编辑用户组",
15101
"zh-cht": "編輯用戶群",
15102
"xloc": [
15076
- "default.handlebars->33->2178"
15103
+ "default.handlebars->33->2188"
15104
]
15105
},
15106
{
@@ -15093,7 +15120,7 @@
15120
"zh-chs": "编辑用户组设备权限",
15121
"zh-cht": "編輯用戶群裝置權限",
15122
"xloc": [
15096
- "default.handlebars->33->1740"
15123
+ "default.handlebars->33->1750"
15124
]
15125
},
15126
{
@@ -15113,7 +15140,7 @@
15140
"zh-chs": "编辑用户组用户同意",
15141
"zh-cht": "編輯用戶組用戶同意",
15142
"xloc": [
15116
- "default.handlebars->33->1680"
15143
+ "default.handlebars->33->1690"
15144
]
15145
},
15146
{
@@ -15195,11 +15222,11 @@
15222
"zh-cht": "電郵",
15223
"xloc": [
15224
"default-mobile.handlebars->11->102",
15198
- "default.handlebars->33->2077",
15199
- "default.handlebars->33->2204",
15200
- "default.handlebars->33->2206",
15201
- "default.handlebars->33->2246",
15202
- "default.handlebars->33->2266",
15225
+ "default.handlebars->33->2087",
15226
+ "default.handlebars->33->2214",
15227
+ "default.handlebars->33->2216",
15228
+ "default.handlebars->33->2256",
15229
+ "default.handlebars->33->2276",
15230
"default.handlebars->33->390",
15231
"login-mobile.handlebars->5->42",
15232
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -15232,7 +15259,7 @@
15259
"zh-cht": "電郵地址變更",
15260
"xloc": [
15261
"default-mobile.handlebars->11->103",
15235
- "default.handlebars->33->1513"
15262
+ "default.handlebars->33->1523"
15263
]
15264
},
15265
{
@@ -15253,7 +15280,7 @@
15280
"zh-cht": "電郵認證",
15281
"xloc": [
15282
"default-mobile.handlebars->11->92",
15256
- "default.handlebars->33->1254"
15283
+ "default.handlebars->33->1264"
15284
]
15285
},
15286
{
@@ -15313,7 +15340,7 @@
15340
"zh-cht": "電郵驗證",
15341
"xloc": [
15342
"default-mobile.handlebars->11->101",
15316
- "default.handlebars->33->1511"
15343
+ "default.handlebars->33->1521"
15344
]
15345
},
15346
{
@@ -15353,7 +15380,7 @@
15380
"zh-chs": "电邮未验证",
15381
"zh-cht": "電郵未驗證",
15382
"xloc": [
15356
- "default.handlebars->33->2023"
15383
+ "default.handlebars->33->2033"
15384
]
15385
},
15386
{
@@ -15373,8 +15400,8 @@
15400
"zh-chs": "电子邮件已验证",
15401
"zh-cht": "電子郵件已驗證",
15402
"xloc": [
15376
- "default.handlebars->33->2024",
15377
- "default.handlebars->33->2198"
15403
+ "default.handlebars->33->2034",
15404
+ "default.handlebars->33->2208"
15405
]
15406
},
15407
{
@@ -15394,7 +15421,7 @@
15421
"zh-chs": "电邮已验证。",
15422
"zh-cht": "電郵已驗證。",
15423
"xloc": [
15397
- "default.handlebars->33->2083"
15424
+ "default.handlebars->33->2093"
15425
]
15426
},
15427
{
@@ -15414,7 +15441,7 @@
15441
"zh-chs": "电邮未验证",
15442
"zh-cht": "電郵未驗證",
15443
"xloc": [
15417
- "default.handlebars->33->2199"
15444
+ "default.handlebars->33->2209"
15445
]
15446
},
15447
{
@@ -15434,8 +15461,8 @@
15461
"zh-chs": "电邮已发送。",
15462
"zh-cht": "電郵已發送。",
15463
"xloc": [
15437
- "default-mobile.handlebars->11->638",
15438
- "default.handlebars->33->2378",
15464
+ "default-mobile.handlebars->11->648",
15465
+ "default.handlebars->33->2388",
15466
"login-mobile.handlebars->5->2",
15467
"login.handlebars->5->2",
15468
"login2.handlebars->7->3"
@@ -15480,7 +15507,7 @@
15507
"zh-chs": "已通过电邮验证,并且需要重置密码。",
15508
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
15509
"xloc": [
15483
- "default.handlebars->33->2084"
15510
+ "default.handlebars->33->2094"
15511
]
15512
},
15513
{
@@ -15506,7 +15533,7 @@
15533
"de": "Email/SMS/Push-Verkehr",
15534
"fr": "Traffic Email/SMS/Push",
15535
"xloc": [
15509
- "default.handlebars->33->2467"
15536
+ "default.handlebars->33->2477"
15537
]
15538
},
15539
{
@@ -15552,7 +15579,7 @@
15579
"zh-chs": "启用邀请代码",
15580
"zh-cht": "啟用邀請代碼",
15581
"xloc": [
15555
- "default.handlebars->33->1775"
15582
+ "default.handlebars->33->1785"
15583
]
15584
},
15585
{
@@ -15593,7 +15620,7 @@
15620
"zh-cht": "啟用電郵二因子鑑別。",
15621
"xloc": [
15622
"default-mobile.handlebars->11->94",
15596
- "default.handlebars->33->1256"
15623
+ "default.handlebars->33->1266"
15624
]
15625
},
15626
{
@@ -15633,7 +15660,7 @@
15660
"zh-chs": "已启用",
15661
"zh-cht": "已啟用",
15662
"xloc": [
15636
- "default.handlebars->33->2351"
15663
+ "default.handlebars->33->2361"
15664
]
15665
},
15666
{
@@ -15653,7 +15680,7 @@
15680
"zh-chs": "启用电子邮件两因素身份验证",
15681
"zh-cht": "啟用電子郵件兩因素身份驗證",
15682
"xloc": [
15656
- "default.handlebars->33->1950"
15683
+ "default.handlebars->33->1960"
15684
]
15685
},
15686
{
@@ -15682,8 +15709,8 @@
15709
"nl": "End",
15710
"de": "Ende",
15711
"xloc": [
15685
- "default-mobile.handlebars->11->371",
15686
- "default.handlebars->33->1029"
15712
+ "default-mobile.handlebars->11->377",
15713
+ "default.handlebars->33->1035"
15714
]
15715
},
15716
{
@@ -15703,7 +15730,7 @@
15730
"zh-chs": "时间结束",
15731
"zh-cht": "時間結束",
15732
"xloc": [
15706
- "default.handlebars->33->2348"
15733
+ "default.handlebars->33->2358"
15734
]
15735
},
15736
{
@@ -15723,7 +15750,7 @@
15750
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15751
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15752
"xloc": [
15726
- "default.handlebars->33->1873"
15753
+ "default.handlebars->33->1883"
15754
]
15755
},
15756
{
@@ -15743,7 +15770,7 @@
15770
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15771
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15772
"xloc": [
15746
- "default.handlebars->33->1874"
15773
+ "default.handlebars->33->1884"
15774
]
15775
},
15776
{
@@ -15751,7 +15778,7 @@
15778
"nl": "Beëindigde messengersessie \\\"{0}\\\" van {1} naar {2}, {3} second(s)",
15779
"fr": "Fin de la session de messagerie \\\"{0}\\\" de {1} à {2}, {3} seconde(s)",
15780
"xloc": [
15754
- "default.handlebars->33->1974"
15781
+ "default.handlebars->33->1984"
15782
]
15783
},
15784
{
@@ -15771,7 +15798,7 @@
15798
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15799
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15800
"xloc": [
15774
- "default.handlebars->33->1871"
15801
+ "default.handlebars->33->1881"
15802
]
15803
},
15804
{
@@ -15791,7 +15818,7 @@
15818
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15819
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15820
"xloc": [
15794
- "default.handlebars->33->1872"
15821
+ "default.handlebars->33->1882"
15822
]
15823
},
15824
{
@@ -15811,7 +15838,7 @@
15838
"zh-chs": "英文",
15839
"zh-cht": "英文",
15840
"xloc": [
15814
- "default.handlebars->33->1325"
15841
+ "default.handlebars->33->1335"
15842
]
15843
},
15844
{
@@ -15831,7 +15858,7 @@
15858
"zh-chs": "英文(澳洲)",
15859
"zh-cht": "英文(澳洲)",
15860
"xloc": [
15834
- "default.handlebars->33->1326"
15861
+ "default.handlebars->33->1336"
15862
]
15863
},
15864
{
@@ -15851,7 +15878,7 @@
15878
"zh-chs": "英文(伯利茲)",
15879
"zh-cht": "英文(伯利茲)",
15880
"xloc": [
15854
- "default.handlebars->33->1327"
15881
+ "default.handlebars->33->1337"
15882
]
15883
},
15884
{
@@ -15871,7 +15898,7 @@
15898
"zh-chs": "英文(加拿大)",
15899
"zh-cht": "英文(加拿大)",
15900
"xloc": [
15874
- "default.handlebars->33->1328"
15901
+ "default.handlebars->33->1338"
15902
]
15903
},
15904
{
@@ -15891,7 +15918,7 @@
15918
"zh-chs": "英文(爱尔兰)",
15919
"zh-cht": "英文(愛爾蘭)",
15920
"xloc": [
15894
- "default.handlebars->33->1329"
15921
+ "default.handlebars->33->1339"
15922
]
15923
},
15924
{
@@ -15911,7 +15938,7 @@
15938
"zh-chs": "英文(牙买加)",
15939
"zh-cht": "英文(牙買加)",
15940
"xloc": [
15914
- "default.handlebars->33->1330"
15941
+ "default.handlebars->33->1340"
15942
]
15943
},
15944
{
@@ -15931,7 +15958,7 @@
15958
"zh-chs": "英文(纽西兰)",
15959
"zh-cht": "英文(紐西蘭)",
15960
"xloc": [
15934
- "default.handlebars->33->1331"
15961
+ "default.handlebars->33->1341"
15962
]
15963
},
15964
{
@@ -15951,7 +15978,7 @@
15978
"zh-chs": "英文(菲律宾)",
15979
"zh-cht": "英文(菲律賓)",
15980
"xloc": [
15954
- "default.handlebars->33->1332"
15981
+ "default.handlebars->33->1342"
15982
]
15983
},
15984
{
@@ -15971,7 +15998,7 @@
15998
"zh-chs": "英语(南非)",
15999
"zh-cht": "英語(南非)",
16000
"xloc": [
15974
- "default.handlebars->33->1333"
16001
+ "default.handlebars->33->1343"
16002
]
16003
},
16004
{
@@ -15991,7 +16018,7 @@
16018
"zh-chs": "英文(特立尼达和多巴哥)",
16019
"zh-cht": "英文(特立尼達和多巴哥)",
16020
"xloc": [
15994
- "default.handlebars->33->1334"
16021
+ "default.handlebars->33->1344"
16022
]
16023
},
16024
{
@@ -16011,7 +16038,7 @@
16038
"zh-chs": "英文(英国)",
16039
"zh-cht": "英文(英國)",
16040
"xloc": [
16014
- "default.handlebars->33->1335"
16041
+ "default.handlebars->33->1345"
16042
]
16043
},
16044
{
@@ -16031,7 +16058,7 @@
16058
"zh-chs": "美国英文",
16059
"zh-cht": "美國英語",
16060
"xloc": [
16034
- "default.handlebars->33->1336"
16061
+ "default.handlebars->33->1346"
16062
]
16063
},
16064
{
@@ -16051,7 +16078,7 @@
16078
"zh-chs": "英文(津巴布韦)",
16079
"zh-cht": "英文(津巴布韋)",
16080
"xloc": [
16054
- "default.handlebars->33->1337"
16081
+ "default.handlebars->33->1347"
16082
]
16083
},
16084
{
@@ -16071,11 +16098,11 @@
16098
"zh-chs": "输入",
16099
"zh-cht": "輸入",
16100
"xloc": [
16074
- "default-mobile.handlebars->11->365",
16075
- "default.handlebars->33->1023",
16076
- "default.handlebars->33->1103",
16077
- "default.handlebars->33->1540",
16078
- "default.handlebars->33->1541",
16101
+ "default-mobile.handlebars->11->371",
16102
+ "default.handlebars->33->1029",
16103
+ "default.handlebars->33->1113",
16104
+ "default.handlebars->33->1550",
16105
+ "default.handlebars->33->1551",
16106
"sharing.handlebars->11->55"
16107
]
16108
},
@@ -16096,7 +16123,7 @@
16123
"zh-chs": "输入管理领域名称的逗号分隔列表。",
16124
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
16125
"xloc": [
16099
- "default.handlebars->33->2088"
16126
+ "default.handlebars->33->2098"
16127
]
16128
},
16129
{
@@ -16156,7 +16183,7 @@
16183
"zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
16184
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
16185
"xloc": [
16159
- "default.handlebars->33->1048"
16186
+ "default.handlebars->33->1054"
16187
]
16188
},
16189
{
@@ -16218,7 +16245,7 @@
16245
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
16246
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
16247
"xloc": [
16221
- "default.handlebars->33->1251"
16248
+ "default.handlebars->33->1261"
16249
]
16250
},
16251
{
@@ -16247,8 +16274,8 @@
16274
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
16275
"de": "Fehler, Einladungscode \\\"{0}\\\" wird bereits verwendet.",
16276
"xloc": [
16250
- "default-mobile.handlebars->11->646",
16251
- "default.handlebars->33->2386"
16277
+ "default-mobile.handlebars->11->656",
16278
+ "default.handlebars->33->2396"
16279
]
16280
},
16281
{
@@ -16257,8 +16284,8 @@
16284
"fr": "Erreur, mot de passe non modifié.",
16285
"de": "Fehler, Password wurde nicht geändert.",
16286
"xloc": [
16260
- "default-mobile.handlebars->11->643",
16261
- "default.handlebars->33->2383"
16287
+ "default-mobile.handlebars->11->653",
16288
+ "default.handlebars->33->2393"
16289
]
16290
},
16291
{
@@ -16267,8 +16294,8 @@
16294
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
16295
"de": "Fehler, kann nicht zu häufig verwendeten Passwörtern geändert werden.",
16296
"xloc": [
16270
- "default-mobile.handlebars->11->642",
16271
- "default.handlebars->33->2382"
16297
+ "default-mobile.handlebars->11->652",
16298
+ "default.handlebars->33->2392"
16299
]
16300
},
16301
{
@@ -16277,8 +16304,8 @@
16304
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
16305
"de": "Fehler, Änderung des zuvor verwendeten Kennworts nicht möglich.",
16306
"xloc": [
16280
- "default-mobile.handlebars->11->641",
16281
- "default.handlebars->33->2381"
16307
+ "default-mobile.handlebars->11->651",
16308
+ "default.handlebars->33->2391"
16309
]
16310
},
16311
{
@@ -16306,8 +16333,8 @@
16333
"fr": "Echap",
16334
"nl": "Escape",
16335
"xloc": [
16309
- "default-mobile.handlebars->11->366",
16310
- "default.handlebars->33->1024"
16336
+ "default-mobile.handlebars->11->372",
16337
+ "default.handlebars->33->1030"
16338
]
16339
},
16340
{
@@ -16327,7 +16354,7 @@
16354
"zh-chs": "世界文",
16355
"zh-cht": "世界語",
16356
"xloc": [
16330
- "default.handlebars->33->1338"
16357
+ "default.handlebars->33->1348"
16358
]
16359
},
16360
{
@@ -16347,7 +16374,7 @@
16374
"zh-chs": "爱沙尼亚文",
16375
"zh-cht": "愛沙尼亞語",
16376
"xloc": [
16350
- "default.handlebars->33->1339"
16377
+ "default.handlebars->33->1349"
16378
]
16379
},
16380
{
@@ -16367,7 +16394,7 @@
16394
"zh-chs": "事件详情",
16395
"zh-cht": "事件詳情",
16396
"xloc": [
16370
- "default.handlebars->33->1143"
16397
+ "default.handlebars->33->1153"
16398
]
16399
},
16400
{
@@ -16387,7 +16414,7 @@
16414
"zh-chs": "事件列表输出",
16415
"zh-cht": "事件列表輸出",
16416
"xloc": [
16390
- "default.handlebars->33->1999"
16417
+ "default.handlebars->33->2009"
16418
]
16419
},
16420
{
@@ -16502,9 +16529,9 @@
16529
"zh-chs": "到期时间",
16530
"zh-cht": "到期時間",
16531
"xloc": [
16505
- "default.handlebars->33->1501",
16532
+ "default.handlebars->33->1511",
16533
"default.handlebars->33->210",
16507
- "default.handlebars->33->890"
16534
+ "default.handlebars->33->894"
16535
]
16536
},
16537
{
@@ -16544,7 +16571,7 @@
16571
"zh-chs": "过期{0}",
16572
"zh-cht": "過期{0}",
16573
"xloc": [
16547
- "default.handlebars->33->1554",
16574
+ "default.handlebars->33->1564",
16575
"sharing.handlebars->11->95"
16576
]
16577
},
@@ -16585,7 +16612,7 @@
16612
"zh-chs": "扩充式ASCII",
16613
"zh-cht": "擴充式ASCII",
16614
"xloc": [
16588
- "default.handlebars->33->1082",
16615
+ "default.handlebars->33->1092",
16616
"sharing.handlebars->11->34"
16617
]
16618
},
@@ -16627,7 +16654,7 @@
16654
"zh-chs": "外部",
16655
"zh-cht": "外部",
16656
"xloc": [
16630
- "default.handlebars->33->2449"
16657
+ "default.handlebars->33->2459"
16658
]
16659
},
16660
{
@@ -16667,7 +16694,7 @@
16694
"zh-chs": "FYRO马其顿语",
16695
"zh-cht": "FYRO馬其頓語",
16696
"xloc": [
16670
- "default.handlebars->33->1389"
16697
+ "default.handlebars->33->1399"
16698
]
16699
},
16700
{
@@ -16687,7 +16714,7 @@
16714
"zh-chs": "法罗语",
16715
"zh-cht": "法羅語",
16716
"xloc": [
16690
- "default.handlebars->33->1340"
16717
+ "default.handlebars->33->1350"
16718
]
16719
},
16720
{
@@ -16716,8 +16743,8 @@
16743
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16744
"de": "Fehler beim ändern der E-Mail-Adresse, wird bereits von einem anderen Konto verwendet: {0}.",
16745
"xloc": [
16719
- "default-mobile.handlebars->11->637",
16720
- "default.handlebars->33->2377"
16746
+ "default-mobile.handlebars->11->647",
16747
+ "default.handlebars->33->2387"
16748
]
16749
},
16750
{
@@ -16745,7 +16772,7 @@
16772
"zh-chs": "本地用户拒绝后无法启动远程桌面",
16773
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16774
"xloc": [
16748
- "default.handlebars->33->1896"
16775
+ "default.handlebars->33->1906"
16776
]
16777
},
16778
{
@@ -16765,7 +16792,7 @@
16792
"zh-chs": "本地用户拒绝后无法启动远程文件",
16793
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16794
"xloc": [
16768
- "default.handlebars->33->1903"
16795
+ "default.handlebars->33->1913"
16796
]
16797
},
16798
{
@@ -16785,8 +16812,8 @@
16812
"zh-chs": "无法启动远程终端接合{0}({1})",
16813
"zh-cht": "無法啟動遠程終端接合{0}({1})",
16814
"xloc": [
16788
- "default-mobile.handlebars->11->357",
16789
- "default.handlebars->33->1003",
16815
+ "default-mobile.handlebars->11->363",
16816
+ "default.handlebars->33->1009",
16817
"sharing.handlebars->11->30",
16818
"sharing.handlebars->11->8"
16819
]
@@ -16808,7 +16835,7 @@
16835
"zh-chs": "波斯文(波斯文)",
16836
"zh-cht": "波斯語(波斯語)",
16837
"xloc": [
16811
- "default.handlebars->33->1341"
16838
+ "default.handlebars->33->1351"
16839
]
16840
},
16841
{
@@ -16850,7 +16877,7 @@
16877
"zh-chs": "功能",
16878
"zh-cht": "功能",
16879
"xloc": [
16853
- "default.handlebars->33->1596"
16880
+ "default.handlebars->33->1606"
16881
]
16882
},
16883
{
@@ -16870,7 +16897,7 @@
16897
"zh-chs": "斐济",
16898
"zh-cht": "斐濟",
16899
"xloc": [
16873
- "default.handlebars->33->1342"
16900
+ "default.handlebars->33->1352"
16901
]
16902
},
16903
{
@@ -16910,8 +16937,8 @@
16937
"zh-chs": "档案编辑器",
16938
"zh-cht": "檔案編輯器",
16939
"xloc": [
16913
- "default-mobile.handlebars->11->415",
16914
- "default.handlebars->33->1114",
16940
+ "default-mobile.handlebars->11->425",
16941
+ "default.handlebars->33->1124",
16942
"default.handlebars->33->611",
16943
"sharing.handlebars->11->66"
16944
]
@@ -16949,8 +16976,8 @@
16976
"zh-chs": "档案操作",
16977
"zh-cht": "檔案操作",
16978
"xloc": [
16952
- "default.handlebars->33->1094",
16953
- "default.handlebars->33->1096",
16979
+ "default.handlebars->33->1104",
16980
+ "default.handlebars->33->1106",
16981
"sharing.handlebars->11->46",
16982
"sharing.handlebars->11->48"
16983
]
@@ -16980,7 +17007,7 @@
This file is too large to show in full.
views/default-mobile.handlebars
+14
-1
@@ -1873,6 +1873,7 @@
1873
node.wifiloc = message.event.node.wifiloc;
1874
node.gpsloc = message.event.node.gpsloc;
1875
node.tags = message.event.node.tags;
1876
+ node.ssh = message.event.node.ssh;
1877
node.userloc = message.event.node.userloc;
1878
node.rdpport = message.event.node.rdpport;
1879
node.rfbport = message.event.node.rfbport;
@@ -3426,6 +3427,15 @@
3427
x += addDeviceAttribute("Tags", '<span style=color:black>' + groupingTags + '</span>');
3428
}
3429
3430
+ // SSH Credentials
3431
+ if (node.ssh != null) {
3432
+ if ((meshrights & 4) != 0) {
3433
+ x += addDeviceAttribute("Credentials", '<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
3434
+ } else {
3435
+ x += addDeviceAttribute("Credentials", "SSH");
3436
+ }
3437
+ }
3438
+
3439
x += '</table><br />';
3440
// Show action button, only show if we have permissions 4, 8, 64
3441
if (((meshrights & (4 + 8 + 64)) != 0) && (node.mtype != 3)) { x += '<input type=button value="' + "Actions" + '" onclick=deviceActionFunction() />'; }
@@ -3827,6 +3837,9 @@
3837
meshserver.send({ action: 'changedevice', nodeid: currentNode._id, icon: icon });
3838
}
3839
3840
+ function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); }
3841
+ function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); }
3842
+
3843
var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"];
3844
var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags'];
3845
var showEditNodeValueDialog_modes3 = ['', '', '', "Group1, Group2, Group3"];
@@ -4578,7 +4591,7 @@
4591
var x = '';
4592
x += addHtmlValue("Username", '<input id=dp2user style=width:190px maxlength=64 autocomplete=off onkeyup=sshAuthKeyUp(event) />');
4593
x += addHtmlValue("Password", '<input type=password id=dp2pass style=width:190px maxlength=64 autocomplete=off onkeyup=sshAuthKeyUp(event) />');
4581
- x += addHtmlValue('', '<label><input id=dp2keep type=checkbox>' + "Remember credentials" + '</label>');
4594
+ x += '<label><input id=dp2keep type=checkbox>' + "Remember credentials" + '</label>';
4595
setDialogMode(2, "Authentication", 11, sshConnectEx, x, 'ssh');
4596
setTimeout(sshAuthKeyUp, 50);
4597
}
views/default.handlebars
+14
@@ -2951,6 +2951,7 @@
2951
node.wifiloc = message.event.node.wifiloc;
2952
node.gpsloc = message.event.node.gpsloc;
2953
node.tags = message.event.node.tags;
2954
+ node.ssh = message.event.node.ssh;
2955
node.userloc = message.event.node.userloc;
2956
node.rdpport = message.event.node.rdpport;
2957
node.rfbport = message.event.node.rfbport;
@@ -6425,6 +6426,15 @@
6426
x += addDeviceAttribute("Tags", groupingTags);
6427
}
6428
6429
+ // SSH Credentials
6430
+ if (node.ssh != null) {
6431
+ if ((meshrights & 4) != 0) {
6432
+ x += addDeviceAttribute("Credentials", '<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
6433
+ } else {
6434
+ x += addDeviceAttribute("Credentials", "SSH");
6435
+ }
6436
+ }
6437
+
6438
x += '</table><br />';
6439
// Show action button, only show if we have permissions 4, 8, 64
6440
if (((meshrights & (4 + 8 + 64)) != 0) && (node.mtype != 3) && ((node.agent == null) || (node.agent.id != 34))) { x += '<input type=button value="' + "Actions" + '" title="' + "Perform power actions on the device" + '" onclick=deviceActionFunction() />'; }
@@ -6503,6 +6513,7 @@
6513
var r = serverinfo.devicemeshrouterlinks.extralinks[i], p = 0;
6514
if (doesDeviceMatchFilterTags(node, r.filter)) {
6515
if (typeof r.protocol == 'number') { p = r.protocol; } else if (r.protocol == 'http') { p = 1; } else if (r.protocol == 'https') { p = 2; } else if (r.protocol == 'rdp') { p = 3; } else if (r.protocol == 'ssh') { p = 4; } else if (r.protocol == 'scp') { p = 5; } else if (r.protocol == 'mcrdesktop') { p = 6; } else if (r.protocol == 'mcrfiles') { p = 7; }
6516
+ if (((p == 6) || (p == 7)) && (node.mtype != 2)) continue; // If this is not an agent device, don't show MeshCentral Router desktop/file links.
6517
x += '<a href=# onclick=p10MCRouter("' + node._id + '",' + p + ',' + r.port + (r.ip?(',\"' + r.ip + '\"'):',null') + ',' + (r.localport?r.localport:0) + ') title="' + "Requires installation of MeshCentral Router." + '">' + r.name + '</a> ';
6518
}
6519
}
@@ -7463,6 +7474,9 @@
7474
meshserver.send({ action: 'changedevice', nodeid: currentNode._id, icon: icon });
7475
}
7476
7477
+ function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); }
7478
+ function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); }
7479
+
7480
var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"];
7481
var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags'];
7482
var showEditNodeValueDialog_modes3 = ['', '', '', "Tag1, Tag2, Tag3"];