MeshCentral can now remember RDP credentials.

Ylian Saint-Hilaire committed Jun 29, 2021 at 17:13 UTC d4ecae73d92d9afe1ff6cf0f4dea7ce57596335d
8 files changed +2351 -2185
apprelays.js
+63 -6
@@ -74,17 +74,13 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
74 obj.relaySocket.on('end', function () { obj.close(); });
75 obj.relaySocket.on('error', function (err) { obj.close(); });
76
77 - // Decode the authentication cookie
78 - var cookie = parent.parent.decodeCookie(obj.infos.ip, parent.parent.loginCookieEncryptionKey);
79 - if (cookie == null) return;
80 -
77 // Setup the correct URL with domain and use TLS only if needed.
78 var options = { rejectUnauthorized: false };
79 if (domain.dns != null) { options.servername = domain.dns; }
80 var protocol = (args.tlsoffload) ? 'ws' : 'wss';
81 var domainadd = '';
82 if ((domain.dns == null) && (domain.id != '')) { domainadd = domain.id + '/' }
87 - var url = protocol + '://127.0.0.1:' + args.port + '/' + domainadd + ((cookie.lc == 1) ? 'local' : 'mesh') + 'relay.ashx?noping=1&p=10&auth=' + obj.infos.ip; // Protocol 10 is Web-RDP
83 + var url = protocol + '://127.0.0.1:' + args.port + '/' + domainadd + ((obj.cookie.lc == 1) ? 'local' : 'mesh') + 'relay.ashx?noping=1&p=10&auth=' + obj.infos.ip; // Protocol 10 is Web-RDP
84 parent.parent.debug('relay', 'RDP: Connection websocket to ' + url);
85 obj.wsClient = new WebSocket(url, options);
86 obj.wsClient.on('open', function () { parent.parent.debug('relay', 'RDP: Relay websocket open'); });
@@ -119,6 +115,7 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
115 locale: obj.infos.locale
116 }).on('connect', function () {
117 send(['rdp-connect']);
118 + if ((typeof obj.infos.options == 'object') && (obj.infos.options.savepass == true)) { saveRdpCredentials(); } // Save the credentials if needed
119 }).on('bitmap', function (bitmap) {
120 try { ws.send(bitmap.data); } catch (ex) { } // Send the bitmap data as binary
121 delete bitmap.data;
@@ -134,13 +131,70 @@ module.exports.CreateMstscRelay = function (parent, db, ws, req, args, domain) {
131 }
132 }
133
134 + // Save SSH credentials into device
135 + function saveRdpCredentials() {
136 + parent.parent.db.Get(obj.nodeid, function (err, nodes) {
137 + if ((err != null) || (nodes == null) || (nodes.length != 1)) return;
138 + const node = nodes[0];
139 + const changed = (node.rdp == null);
140 +
141 + // Check if credentials are the same
142 + if ((typeof node.rdp == 'object') && (node.rdp.d == obj.infos.domain) && (node.rdp.u == obj.infos.username) && (node.rdp.p == obj.infos.password)) return;
143 +
144 + // Save the credentials
145 + node.rdp = { d: obj.infos.domain, u: obj.infos.username, p: obj.infos.password };
146 + parent.parent.db.Set(node);
147 +
148 + // Event node change if needed
149 + if (changed) {
150 + // Event the node change
151 + var event = { etype: 'node', action: 'changenode', nodeid: obj.nodeid, domain: domain.id, userid: obj.userid, node: parent.CloneSafeNode(node), msg: "Changed RDP credentials" };
152 + if (parent.parent.db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the node. Another event will come.
153 + parent.parent.DispatchEvent(parent.CreateMeshDispatchTargets(node.meshid, [obj.nodeid]), obj, event);
154 + }
155 + });
156 + }
157 +
158 // When data is received from the web socket
159 // RDP default port is 3389
160 ws.on('message', function (msg) {
161 try {
162 msg = JSON.parse(msg);
163 switch (msg[0]) {
143 - case 'infos': { obj.infos = msg[1]; startTcpServer(); break; }
164 + case 'infos': {
165 + obj.infos = msg[1];
166 +
167 + // Decode the authentication cookie
168 + obj.cookie = parent.parent.decodeCookie(obj.infos.ip, parent.parent.loginCookieEncryptionKey);
169 + if ((obj.cookie == null) || (typeof obj.cookie.nodeid != 'string') || (typeof obj.cookie.userid != 'string')) return;
170 + obj.nodeid = obj.cookie.nodeid;
171 + obj.userid = obj.cookie.userid;
172 +
173 + // Check is you need to load server stored credentials
174 + if ((typeof obj.infos.options == 'object') && (obj.infos.options.useServerCreds == true)) {
175 + parent.parent.db.Get(obj.nodeid, function (err, nodes) {
176 + if ((err != null) || (nodes == null) || (nodes.length != 1)) return;
177 + const node = nodes[0];
178 +
179 + // Check if RDP credentials exist
180 + if ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string')) {
181 + obj.infos.domain = node.rdp.d;
182 + obj.infos.username = node.rdp.u;
183 + obj.infos.password = node.rdp.p;
184 + startTcpServer();
185 + } else {
186 + // No server credentials.
187 + obj.infos.domain = '';
188 + obj.infos.username = '';
189 + obj.infos.password = '';
190 + startTcpServer();
191 + }
192 + });
193 + } else {
194 + startTcpServer();
195 + }
196 + break;
197 + }
198 case 'mouse': { if (rdpClient) { rdpClient.sendPointerEvent(msg[1], msg[2], msg[3], msg[4]); } break; }
199 case 'wheel': { if (rdpClient) { rdpClient.sendWheelEvent(msg[1], msg[2], msg[3], msg[4]); } break; }
200 case 'scancode': { if (rdpClient) { rdpClient.sendKeyEventScancode(msg[1], msg[2]); } break; }
@@ -417,6 +471,9 @@ module.exports.CreateSshTerminalRelay = function (parent, db, ws, req, domain, u
471 const node = nodes[0];
472 const changed = (node.ssh == null);
473
474 + // Check if credentials are the same
475 + if ((typeof node.ssh == 'object') && (node.ssh.u == obj.username) && (node.ssh.p == obj.password)) return;
476 +
477 // Save the credentials
478 node.ssh = { u: obj.username, p: obj.password };
479 parent.parent.db.Set(node);
meshuser.js
+7
@@ -713,6 +713,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
713 // Remove SSH credentials if present
714 if (docs[i].ssh != null) { docs[i].ssh = 1; }
715
716 + // Remove RDP credentials if present
717 + if (docs[i].rdp != null) { docs[i].rdp = 1; }
718 +
719 // Remove Intel AMT credential if present
720 if (docs[i].intelamt != null) {
721 if (docs[i].intelamt.pass != null) { docs[i].intelamt.pass = 1; }
@@ -4275,6 +4278,10 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4278 if (node.ssh != null) { delete node.ssh; change = 1; changes.push('ssh'); } // Delete the SSH cendentials
4279 }
4280
4281 + if ((typeof command.rdp == 'number') && (command.rdp == 0)) {
4282 + if (node.rdp != null) { delete node.rdp; change = 1; changes.push('rdp'); } // Delete the RDP cendentials
4283 + }
4284 +
4285 if (domain.geolocation && command.userloc && ((node.userloc == null) || (command.userloc[0] != node.userloc[0]) || (command.userloc[1] != node.userloc[1]))) {
4286 change = 1;
4287 if ((command.userloc.length == 0) && (node.userloc)) {
public/mstsc/client.js
+2 -1
@@ -147,7 +147,7 @@
147 * @param password {string} session password
148 * @param next {function} asynchrone end callback
149 */
150 - connect : function (ip, domain, username, password, next) {
150 + connect : function (ip, domain, username, password, options, next) {
151 // Start connection
152 var self = this;
153 this.socket = new WebSocket('wss://' + window.location.host + '/mstscrelay.ashx');
@@ -164,6 +164,7 @@
164 domain: domain,
165 username: username,
166 password: password,
167 + options: options,
168 locale: Mstsc.locale()
169 }]));
170 };
translate/translate.json
+2200 -2164
@@ -19,8 +19,8 @@
19 "zh-chs": " + CIRA",
20 "zh-cht": " + CIRA",
21 "xloc": [
22 - "default.handlebars->35->1676",
23 - "default.handlebars->35->1678"
22 + "default.handlebars->35->1679",
23 + "default.handlebars->35->1681"
24 ]
25 },
26 {
@@ -235,7 +235,7 @@
235 "zh-chs": " 可以使用密码提示,但不建议使用。",
236 "zh-cht": " 可以使用密碼提示,但不建議使用。",
237 "xloc": [
238 - "default.handlebars->35->1577"
238 + "default.handlebars->35->1580"
239 ]
240 },
241 {
@@ -257,8 +257,8 @@
257 "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
258 "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
259 "xloc": [
260 - "default.handlebars->35->1755",
261 - "default.handlebars->35->2246"
260 + "default.handlebars->35->1758",
261 + "default.handlebars->35->2251"
262 ]
263 },
264 {
@@ -614,7 +614,7 @@
614 "zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
615 "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
616 "xloc": [
617 - "default.handlebars->35->1724",
617 + "default.handlebars->35->1727",
618 "default.handlebars->35->403"
619 ]
620 },
@@ -696,8 +696,8 @@
696 "zh-chs": ",",
697 "zh-cht": ",",
698 "xloc": [
699 - "default-mobile.handlebars->11->630",
700 - "default.handlebars->35->1826"
699 + "default-mobile.handlebars->11->633",
700 + "default.handlebars->35->1829"
701 ]
702 },
703 {
@@ -768,8 +768,8 @@
768 "zh-chs": ",MQTT在线",
769 "zh-cht": ",MQTT在線",
770 "xloc": [
771 - "default-mobile.handlebars->11->547",
772 - "default.handlebars->35->1287"
771 + "default-mobile.handlebars->11->550",
772 + "default.handlebars->35->1290"
773 ]
774 },
775 {
@@ -785,7 +785,7 @@
785 "sv": ", Inget samtycke",
786 "zh-chs": ", 不同意",
787 "xloc": [
788 - "default.handlebars->35->845"
788 + "default.handlebars->35->846"
789 ]
790 },
791 {
@@ -807,7 +807,7 @@
807 "zh-chs": ",提示同意",
808 "zh-cht": ",提示同意",
809 "xloc": [
810 - "default.handlebars->35->846"
810 + "default.handlebars->35->847"
811 ]
812 },
813 {
@@ -840,7 +840,7 @@
840 "zh-chs": ",软体KVM",
841 "zh-cht": ",軟體KVM",
842 "xloc": [
843 - "default.handlebars->35->1050",
843 + "default.handlebars->35->1053",
844 "sharing.handlebars->11->12"
845 ]
846 },
@@ -857,7 +857,7 @@
857 "sv": ", Verktygsfält",
858 "zh-chs": ", 工具栏",
859 "xloc": [
860 - "default.handlebars->35->847"
860 + "default.handlebars->35->848"
861 ]
862 },
863 {
@@ -872,7 +872,7 @@
872 "sv": ", Titta enbart",
873 "zh-chs": ", 只读",
874 "xloc": [
875 - "default.handlebars->35->844"
875 + "default.handlebars->35->845"
876 ]
877 },
878 {
@@ -894,12 +894,12 @@
894 "zh-chs": ",WebRTC",
895 "zh-cht": ",WebRTC",
896 "xloc": [
897 - "default-mobile.handlebars->11->366",
898 - "default-mobile.handlebars->11->401",
899 - "default-mobile.handlebars->11->412",
900 - "default.handlebars->35->1056",
901 - "default.handlebars->35->1121",
902 - "default.handlebars->35->1141",
897 + "default-mobile.handlebars->11->369",
898 + "default-mobile.handlebars->11->404",
899 + "default-mobile.handlebars->11->415",
900 + "default.handlebars->35->1059",
901 + "default.handlebars->35->1124",
902 + "default.handlebars->35->1144",
903 "sharing.handlebars->11->19",
904 "sharing.handlebars->11->27",
905 "sharing.handlebars->11->44",
@@ -1057,7 +1057,7 @@
1057 "zh-chs": ",{0}观看",
1058 "zh-cht": ",{0}觀看",
1059 "xloc": [
1060 - "default.handlebars->35->1051",
1060 + "default.handlebars->35->1054",
1061 "sharing.handlebars->11->13"
1062 ]
1063 },
@@ -1137,10 +1137,10 @@
1137 "zh-cht": "...",
1138 "xloc": [
1139 "default-mobile.handlebars->11->132",
1140 - "default-mobile.handlebars->11->422",
1141 - "default.handlebars->35->1155",
1142 - "default.handlebars->35->1878",
1143 - "default.handlebars->35->2415",
1140 + "default-mobile.handlebars->11->425",
1141 + "default.handlebars->35->1158",
1142 + "default.handlebars->35->1881",
1143 + "default.handlebars->35->2420",
1144 "sharing.handlebars->11->50"
1145 ]
1146 },
@@ -1225,7 +1225,7 @@
1225 "zh-chs": "1个活跃时段",
1226 "zh-cht": "1個活躍時段",
1227 "xloc": [
1228 - "default.handlebars->35->2319"
1228 + "default.handlebars->35->2324"
1229 ]
1230 },
1231 {
@@ -1248,8 +1248,8 @@
1248 "zh-cht": "1個位元組",
1249 "xloc": [
1250 "default-mobile.handlebars->11->142",
1251 - "default-mobile.handlebars->11->673",
1252 - "default.handlebars->35->1902",
1251 + "default-mobile.handlebars->11->676",
1252 + "default.handlebars->35->1905",
1253 "download.handlebars->3->1",
1254 "download2.handlebars->5->1",
1255 "sharing.handlebars->11->96"
@@ -1274,7 +1274,7 @@
1274 "zh-chs": "1条连接",
1275 "zh-cht": "1位聯絡文",
1276 "xloc": [
1277 - "default.handlebars->35->1053",
1277 + "default.handlebars->35->1056",
1278 "sharing.handlebars->11->15"
1279 ]
1280 },
@@ -1321,7 +1321,7 @@
1321 "zh-chs": "1组",
1322 "zh-cht": "1群",
1323 "xloc": [
1324 - "default.handlebars->35->2280"
1324 + "default.handlebars->35->2285"
1325 ]
1326 },
1327 {
@@ -1367,8 +1367,8 @@
1367 "zh-chs": "1分钟",
1368 "zh-cht": "1分鐘",
1369 "xloc": [
1370 - "default.handlebars->35->1543",
1371 - "default.handlebars->35->912"
1370 + "default.handlebars->35->1546",
1371 + "default.handlebars->35->913"
1372 ]
1373 },
1374 {
@@ -1436,7 +1436,7 @@
1436 "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1437 "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1438 "xloc": [
1439 - "default.handlebars->35->2070"
1439 + "default.handlebars->35->2075"
1440 ]
1441 },
1442 {
@@ -1495,8 +1495,8 @@
1495 "sv": "1 sekund",
1496 "zh-chs": "1秒",
1497 "xloc": [
1498 - "default-mobile.handlebars->11->318",
1499 - "default.handlebars->35->940"
1498 + "default-mobile.handlebars->11->319",
1499 + "default.handlebars->35->941"
1500 ]
1501 },
1502 {
@@ -1546,7 +1546,7 @@
1546 "default-mobile.handlebars->11->204",
1547 "default-mobile.handlebars->11->207",
1548 "default-mobile.handlebars->11->210",
1549 - "default.handlebars->35->2074",
1549 + "default.handlebars->35->2079",
1550 "default.handlebars->35->336",
1551 "default.handlebars->35->339",
1552 "default.handlebars->35->342",
@@ -1690,8 +1690,8 @@
1690 "zh-chs": "10分钟",
1691 "zh-cht": "10分鐘",
1692 "xloc": [
1693 - "default.handlebars->35->1545",
1694 - "default.handlebars->35->914"
1693 + "default.handlebars->35->1548",
1694 + "default.handlebars->35->915"
1695 ]
1696 },
1697 {
@@ -1706,8 +1706,8 @@
1706 "sv": "10 sekunder",
1707 "zh-chs": "10 秒",
1708 "xloc": [
1709 - "default-mobile.handlebars->11->320",
1710 - "default.handlebars->35->942"
1709 + "default-mobile.handlebars->11->321",
1710 + "default.handlebars->35->943"
1711 ]
1712 },
1713 {
@@ -1798,8 +1798,8 @@
1798 "zh-chs": "12小时",
1799 "zh-cht": "12小時",
1800 "xloc": [
1801 - "default.handlebars->35->1553",
1802 - "default.handlebars->35->922"
1801 + "default.handlebars->35->1556",
1802 + "default.handlebars->35->923"
1803 ]
1804 },
1805 {
@@ -1856,8 +1856,8 @@
1856 "zh-chs": "15分钟",
1857 "zh-cht": "15分鐘",
1858 "xloc": [
1859 - "default.handlebars->35->1546",
1860 - "default.handlebars->35->915"
1859 + "default.handlebars->35->1549",
1860 + "default.handlebars->35->916"
1861 ]
1862 },
1863 {
@@ -1879,8 +1879,8 @@
1879 "zh-chs": "16小时",
1880 "zh-cht": "16小時",
1881 "xloc": [
1882 - "default.handlebars->35->1554",
1883 - "default.handlebars->35->923"
1882 + "default.handlebars->35->1557",
1883 + "default.handlebars->35->924"
1884 ]
1885 },
1886 {
@@ -1902,8 +1902,8 @@
1902 "zh-chs": "2天",
1903 "zh-cht": "2天",
1904 "xloc": [
1905 - "default.handlebars->35->1556",
1906 - "default.handlebars->35->925"
1905 + "default.handlebars->35->1559",
1906 + "default.handlebars->35->926"
1907 ]
1908 },
1909 {
@@ -1925,8 +1925,8 @@
1925 "zh-chs": "2小时",
1926 "zh-cht": "2小時",
1927 "xloc": [
1928 - "default.handlebars->35->1550",
1929 - "default.handlebars->35->919"
1928 + "default.handlebars->35->1553",
1929 + "default.handlebars->35->920"
1930 ]
1931 },
1932 {
@@ -2040,8 +2040,8 @@
2040 "zh-chs": "24小时",
2041 "zh-cht": "24小時",
2042 "xloc": [
2043 - "default.handlebars->35->1555",
2044 - "default.handlebars->35->924"
2043 + "default.handlebars->35->1558",
2044 + "default.handlebars->35->925"
2045 ]
2046 },
2047 {
@@ -2109,7 +2109,7 @@
2109 "zh-chs": "2FA备份代码已清除",
2110 "zh-cht": "2FA備份代碼已清除",
2111 "xloc": [
2112 - "default.handlebars->35->2013"
2112 + "default.handlebars->35->2016"
2113 ]
2114 },
2115 {
@@ -2131,8 +2131,8 @@
2131 "zh-chs": "启用第二因素身份验证",
2132 "zh-cht": "啟用第二因素身份驗證",
2133 "xloc": [
2134 - "default.handlebars->35->2087",
2135 - "default.handlebars->35->2302"
2134 + "default.handlebars->35->2092",
2135 + "default.handlebars->35->2307"
2136 ]
2137 },
2138 {
@@ -2171,7 +2171,7 @@
2171 "pt": "3",
2172 "ru": "3",
2173 "xloc": [
2174 - "default-mobile.handlebars->11->449"
2174 + "default-mobile.handlebars->11->452"
2175 ]
2176 },
2177 {
@@ -2262,8 +2262,8 @@
2262 "zh-chs": "30分钟",
2263 "zh-cht": "30分鐘",
2264 "xloc": [
2265 - "default.handlebars->35->1547",
2266 - "default.handlebars->35->916"
2265 + "default.handlebars->35->1550",
2266 + "default.handlebars->35->917"
2267 ]
2268 },
2269 {
@@ -2332,8 +2332,8 @@
2332 "zh-chs": "4天",
2333 "zh-cht": "4天",
2334 "xloc": [
2335 - "default.handlebars->35->1557",
2336 - "default.handlebars->35->926"
2335 + "default.handlebars->35->1560",
2336 + "default.handlebars->35->927"
2337 ]
2338 },
2339 {
@@ -2355,8 +2355,8 @@
2355 "zh-chs": "4个小时",
2356 "zh-cht": "4個小時",
2357 "xloc": [
2358 - "default.handlebars->35->1551",
2359 - "default.handlebars->35->920"
2358 + "default.handlebars->35->1554",
2359 + "default.handlebars->35->921"
2360 ]
2361 },
2362 {
@@ -2447,8 +2447,8 @@
2447 "zh-chs": "45分钟",
2448 "zh-cht": "45分鐘",
2449 "xloc": [
2450 - "default.handlebars->35->1548",
2451 - "default.handlebars->35->917"
2450 + "default.handlebars->35->1551",
2451 + "default.handlebars->35->918"
2452 ]
2453 },
2454 {
@@ -2492,8 +2492,8 @@
2492 "zh-chs": "5分钟",
2493 "zh-cht": "5分鐘",
2494 "xloc": [
2495 - "default.handlebars->35->1544",
2496 - "default.handlebars->35->913"
2495 + "default.handlebars->35->1547",
2496 + "default.handlebars->35->914"
2497 ]
2498 },
2499 {
@@ -2508,8 +2508,8 @@
2508 "sv": "5 sekunder",
2509 "zh-chs": "5秒",
2510 "xloc": [
2511 - "default-mobile.handlebars->11->319",
2512 - "default.handlebars->35->941"
2511 + "default-mobile.handlebars->11->320",
2512 + "default.handlebars->35->942"
2513 ]
2514 },
2515 {
@@ -2647,8 +2647,8 @@
2647 "zh-chs": "60分钟",
2648 "zh-cht": "60分鐘",
2649 "xloc": [
2650 - "default.handlebars->35->1549",
2651 - "default.handlebars->35->918"
2650 + "default.handlebars->35->1552",
2651 + "default.handlebars->35->919"
2652 ]
2653 },
2654 {
@@ -2780,7 +2780,7 @@
2780 "zh-chs": "7天电源状态",
2781 "zh-cht": "7天電源狀態",
2782 "xloc": [
2783 - "default.handlebars->35->975"
2783 + "default.handlebars->35->976"
2784 ]
2785 },
2786 {
@@ -2849,10 +2849,10 @@
2849 "zh-chs": "8小時",
2850 "zh-cht": "8小時",
2851 "xloc": [
2852 - "default.handlebars->35->1552",
2852 + "default.handlebars->35->1555",
2853 "default.handlebars->35->427",
2854 "default.handlebars->35->441",
2855 - "default.handlebars->35->921"
2855 + "default.handlebars->35->922"
2856 ]
2857 },
2858 {
@@ -3087,7 +3087,7 @@
3087 "zh-cht": "ACM",
3088 "xloc": [
3089 "default-mobile.handlebars->11->274",
3090 - "default.handlebars->35->1692",
3090 + "default.handlebars->35->1695",
3091 "default.handlebars->35->709"
3092 ]
3093 },
@@ -3164,7 +3164,7 @@
3164 "sv": "AMT-OS",
3165 "zh-chs": "操作系统",
3166 "xloc": [
3167 - "default.handlebars->35->2493"
3167 + "default.handlebars->35->2498"
3168 ]
3169 },
3170 {
@@ -3293,8 +3293,8 @@
3293 "sv": "AV",
3294 "zh-chs": "影音",
3295 "xloc": [
3296 - "default-mobile.handlebars->11->459",
3297 - "default-mobile.handlebars->11->461",
3296 + "default-mobile.handlebars->11->462",
3297 + "default-mobile.handlebars->11->464",
3298 "default.handlebars->35->728",
3299 "default.handlebars->35->730"
3300 ]
@@ -3318,8 +3318,8 @@
3318 "zh-chs": "拒绝访问",
3319 "zh-cht": "拒絕存取",
3320 "xloc": [
3321 - "default-mobile.handlebars->11->548",
3322 - "default.handlebars->35->1288"
3321 + "default-mobile.handlebars->11->551",
3322 + "default.handlebars->35->1291"
3323 ]
3324 },
3325 {
@@ -3380,7 +3380,7 @@
3380 "zh-chs": "访问服务器档案",
3381 "zh-cht": "存取伺服器檔案",
3382 "xloc": [
3383 - "default.handlebars->35->2252"
3383 + "default.handlebars->35->2257"
3384 ]
3385 },
3386 {
@@ -3477,9 +3477,9 @@
3477 "default-mobile.handlebars->11->243",
3478 "default-mobile.handlebars->11->245",
3479 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
3480 - "default.handlebars->35->1586",
3481 - "default.handlebars->35->1588",
3482 - "default.handlebars->35->2546",
3480 + "default.handlebars->35->1589",
3481 + "default.handlebars->35->1591",
3482 + "default.handlebars->35->2551",
3483 "default.handlebars->35->671",
3484 "default.handlebars->35->673"
3485 ]
@@ -3497,8 +3497,8 @@
3497 "sv": "Kontoinställningar",
3498 "zh-chs": "帐号设定",
3499 "xloc": [
3500 - "default-mobile.handlebars->11->641",
3501 - "default.handlebars->35->2423"
3500 + "default-mobile.handlebars->11->644",
3501 + "default.handlebars->35->2428"
3502 ]
3503 },
3504 {
@@ -3565,7 +3565,7 @@
3565 "zh-chs": "帐户已更改:{0}",
3566 "zh-cht": "帳戶已更改:{0}",
3567 "xloc": [
3568 - "default.handlebars->35->1986"
3568 + "default.handlebars->35->1989"
3569 ]
3570 },
3571 {
@@ -3587,7 +3587,7 @@
3587 "zh-chs": "创建帐户,电子邮件为{0}",
3588 "zh-cht": "創建帳戶,電子郵件為{0}",
3589 "xloc": [
3590 - "default.handlebars->35->1985"
3590 + "default.handlebars->35->1988"
3591 ]
3592 },
3593 {
@@ -3609,7 +3609,7 @@
3609 "zh-chs": "创建帐户,用户名是{0}",
3610 "zh-cht": "帳戶已創建,用戶名是{0}",
3611 "xloc": [
3612 - "default.handlebars->35->1984"
3612 + "default.handlebars->35->1987"
3613 ]
3614 },
3615 {
@@ -3631,8 +3631,8 @@
3631 "zh-chs": "帐户已被锁定",
3632 "zh-cht": "帳戶已被鎖定",
3633 "xloc": [
3634 - "default.handlebars->35->2089",
3635 - "default.handlebars->35->2249"
3634 + "default.handlebars->35->2094",
3635 + "default.handlebars->35->2254"
3636 ]
3637 },
3638 {
@@ -3654,8 +3654,8 @@
3654 "zh-chs": "达到帐户限制。",
3655 "zh-cht": "達到帳戶限制。",
3656 "xloc": [
3657 - "default-mobile.handlebars->11->653",
3658 - "default.handlebars->35->2435",
3657 + "default-mobile.handlebars->11->656",
3658 + "default.handlebars->35->2440",
3659 "login-mobile.handlebars->5->6",
3660 "login.handlebars->5->6",
3661 "login2.handlebars->7->8"
@@ -3704,7 +3704,7 @@
3704 "zh-chs": "帐号登录",
3705 "zh-cht": "帳號登錄",
3706 "xloc": [
3707 - "default.handlebars->35->1921"
3707 + "default.handlebars->35->1924"
3708 ]
3709 },
3710 {
@@ -3719,7 +3719,7 @@
3719 "sv": "Kontoinloggning från {0}, {1}, {2}",
3720 "zh-chs": "来自 {0}、{1}、{2} 的帐户登录",
3721 "xloc": [
3722 - "default.handlebars->35->2027"
3722 + "default.handlebars->35->2030"
3723 ]
3724 },
3725 {
@@ -3741,7 +3741,7 @@
3741 "zh-chs": "帐户登出",
3742 "zh-cht": "帳戶登出",
3743 "xloc": [
3744 - "default.handlebars->35->1922"
3744 + "default.handlebars->35->1925"
3745 ]
3746 },
3747 {
@@ -3787,7 +3787,7 @@
3787 "zh-chs": "帐户密码已更改:{0}",
3788 "zh-cht": "帳戶密碼已更改:{0}",
3789 "xloc": [
3790 - "default.handlebars->35->1994"
3790 + "default.handlebars->35->1997"
3791 ]
3792 },
3793 {
@@ -3809,7 +3809,7 @@
3809 "zh-chs": "帐户已删除",
3810 "zh-cht": "帳戶已刪除",
3811 "xloc": [
3812 - "default.handlebars->35->1983"
3812 + "default.handlebars->35->1986"
3813 ]
3814 },
3815 {
@@ -3853,8 +3853,8 @@
3853 "zh-chs": "指令",
3854 "zh-cht": "指令",
3855 "xloc": [
3856 - "default-mobile.handlebars->11->554",
3857 - "default.handlebars->35->1294",
3856 + "default-mobile.handlebars->11->557",
3857 + "default.handlebars->35->1297",
3858 "default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3859 ]
3860 },
@@ -3877,8 +3877,8 @@
3877 "zh-chs": "动作档案",
3878 "zh-cht": "動作檔案",
3879 "xloc": [
3880 - "default.handlebars->35->1021",
3881 - "default.handlebars->35->1023"
3880 + "default.handlebars->35->1022",
3881 + "default.handlebars->35->1024"
3882 ]
3883 },
3884 {
@@ -3900,11 +3900,11 @@
3900 "zh-chs": "动作",
3901 "zh-cht": "動作",
3902 "xloc": [
3903 - "default-mobile.handlebars->11->301",
3903 + "default-mobile.handlebars->11->302",
3904 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3905 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3906 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
3907 - "default.handlebars->35->775",
3907 + "default.handlebars->35->776",
3908 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3909 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3910 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3995,7 +3995,7 @@
3995 "zh-chs": "如果ACM失败,则激活到CCM",
3996 "zh-cht": "如果ACM失敗,則激活到CCM",
3997 "xloc": [
3998 - "default.handlebars->35->1715"
3998 + "default.handlebars->35->1718"
3999 ]
4000 },
4001 {
@@ -4019,8 +4019,8 @@
4019 "xloc": [
4020 "default-mobile.handlebars->11->269",
4021 "default-mobile.handlebars->11->271",
4022 - "default-mobile.handlebars->11->510",
4023 - "default.handlebars->35->1249",
4022 + "default-mobile.handlebars->11->513",
4023 + "default.handlebars->35->1252",
4024 "default.handlebars->35->702",
4025 "default.handlebars->35->704"
4026 ]
@@ -4066,7 +4066,7 @@
4066 "zh-chs": "主动设备共享",
4067 "zh-cht": "主動設備共享",
4068 "xloc": [
4069 - "default.handlebars->35->833"
4069 + "default.handlebars->35->834"
4070 ]
4071 },
4072 {
@@ -4081,7 +4081,7 @@
4081 "sv": "Aktiva inloggningspengar",
4082 "zh-chs": "活动登录令牌",
4083 "xloc": [
4084 - "default.handlebars->35->1607"
4084 + "default.handlebars->35->1610"
4085 ]
4086 },
4087 {
@@ -4115,8 +4115,8 @@
4115 "sv": "Lägg till",
4116 "zh-chs": "添加",
4117 "xloc": [
4118 - "default-mobile.handlebars->11->393",
4119 - "default.handlebars->35->1087"
4118 + "default-mobile.handlebars->11->396",
4119 + "default.handlebars->35->1090"
4120 ]
4121 },
4122 {
@@ -4160,7 +4160,7 @@
4160 "zh-chs": "添加代理",
4161 "zh-cht": "新增代理",
4162 "xloc": [
4163 - "default.handlebars->35->1688",
4163 + "default.handlebars->35->1691",
4164 "default.handlebars->35->369"
4165 ]
4166 },
@@ -4202,8 +4202,8 @@
4202 "zh-chs": "添加设备",
4203 "zh-cht": "新增裝置",
4204 "xloc": [
4205 - "default.handlebars->35->2226",
4206 - "default.handlebars->35->2356",
4205 + "default.handlebars->35->2231",
4206 + "default.handlebars->35->2361",
4207 "default.handlebars->35->373"
4208 ]
4209 },
@@ -4226,7 +4226,7 @@
4226 "zh-chs": "添加设备日志",
4227 "zh-cht": "新增裝置日誌",
4228 "xloc": [
4229 - "default.handlebars->35->889"
4229 + "default.handlebars->35->890"
4230 ]
4231 },
4232 {
@@ -4248,9 +4248,9 @@
4248 "zh-chs": "添加设备组",
4249 "zh-cht": "新增裝置群",
4250 "xloc": [
4251 - "default.handlebars->35->1790",
4252 - "default.handlebars->35->2220",
4253 - "default.handlebars->35->2344",
4251 + "default.handlebars->35->1793",
4252 + "default.handlebars->35->2225",
4253 + "default.handlebars->35->2349",
4254 "default.handlebars->35->303"
4255 ]
4256 },
@@ -4273,7 +4273,7 @@
4273 "zh-chs": "添加设备组权限",
4274 "zh-cht": "新增裝置群權限",
4275 "xloc": [
4276 - "default.handlebars->35->1787"
4276 + "default.handlebars->35->1790"
4277 ]
4278 },
4279 {
@@ -4295,8 +4295,8 @@
4295 "zh-chs": "添加设备权限",
4296 "zh-cht": "新增裝置權限",
4297 "xloc": [
4298 - "default.handlebars->35->1792",
4299 - "default.handlebars->35->1794"
4298 + "default.handlebars->35->1795",
4299 + "default.handlebars->35->1797"
4300 ]
4301 },
4302 {
@@ -4414,7 +4414,7 @@
4414 "zh-chs": "添加成员身份",
4415 "zh-cht": "新增成員身份",
4416 "xloc": [
4417 - "default.handlebars->35->2376"
4417 + "default.handlebars->35->2381"
4418 ]
4419 },
4420 {
@@ -4469,8 +4469,8 @@
4469 "zh-chs": "添加安全密钥",
4470 "zh-cht": "新增安全密鑰",
4471 "xloc": [
4472 - "default.handlebars->35->1333",
4473 - "default.handlebars->35->1334",
4472 + "default.handlebars->35->1336",
4473 + "default.handlebars->35->1337",
4474 "default.handlebars->35->194",
4475 "default.handlebars->35->196",
4476 "default.handlebars->35->199",
@@ -4496,8 +4496,8 @@
4496 "zh-chs": "添加用户",
4497 "zh-cht": "新增用戶",
4498 "xloc": [
4499 - "default-mobile.handlebars->11->570",
4500 - "default.handlebars->35->825"
4499 + "default-mobile.handlebars->11->573",
4500 + "default.handlebars->35->826"
4501 ]
4502 },
4503 {
@@ -4519,7 +4519,7 @@
4519 "zh-chs": "添加用户设备权限",
4520 "zh-cht": "新增用戶裝置權限",
4521 "xloc": [
4522 - "default.handlebars->35->1797"
4522 + "default.handlebars->35->1800"
4523 ]
4524 },
4525 {
@@ -4541,10 +4541,10 @@
4541 "zh-chs": "添加用户组",
4542 "zh-cht": "新增用戶群",
4543 "xloc": [
4544 - "default.handlebars->35->1684",
4545 - "default.handlebars->35->1789",
4546 - "default.handlebars->35->2350",
4547 - "default.handlebars->35->826"
4544 + "default.handlebars->35->1687",
4545 + "default.handlebars->35->1792",
4546 + "default.handlebars->35->2355",
4547 + "default.handlebars->35->827"
4548 ]
4549 },
4550 {
@@ -4566,7 +4566,7 @@
4566 "zh-chs": "添加用户组设备权限",
4567 "zh-cht": "新增用戶群裝置權限",
4568 "xloc": [
4569 - "default.handlebars->35->1799"
4569 + "default.handlebars->35->1802"
4570 ]
4571 },
4572 {
@@ -4588,7 +4588,7 @@
4588 "zh-chs": "将用户添加到设备组",
4589 "zh-cht": "將用戶新增到裝置群",
4590 "xloc": [
4591 - "default-mobile.handlebars->11->606"
4591 + "default-mobile.handlebars->11->609"
4592 ]
4593 },
4594 {
@@ -4629,8 +4629,8 @@
4629 "zh-chs": "添加用户",
4630 "zh-cht": "新增用戶",
4631 "xloc": [
4632 - "default.handlebars->35->1683",
4633 - "default.handlebars->35->2215"
4632 + "default.handlebars->35->1686",
4633 + "default.handlebars->35->2220"
4634 ]
4635 },
4636 {
@@ -4652,7 +4652,7 @@
4652 "zh-chs": "将用户添加到设备组",
4653 "zh-cht": "將用戶新增到裝置群",
4654 "xloc": [
4655 - "default.handlebars->35->1786"
4655 + "default.handlebars->35->1789"
4656 ]
4657 },
4658 {
@@ -4674,7 +4674,7 @@
4674 "zh-chs": "将用户添加到用户组",
4675 "zh-cht": "將用戶新增到用戶群",
4676 "xloc": [
4677 - "default.handlebars->35->2248"
4677 + "default.handlebars->35->2253"
4678 ]
4679 },
4680 {
@@ -4818,7 +4818,7 @@
4818 "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
4819 "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
4820 "xloc": [
4821 - "default.handlebars->35->1687",
4821 + "default.handlebars->35->1690",
4822 "default.handlebars->35->368"
4823 ]
4824 },
@@ -4915,7 +4915,7 @@
4915 "zh-chs": "添加了身份验证应用程序",
4916 "zh-cht": "添加了身份驗證應用程序",
4917 "xloc": [
4918 - "default.handlebars->35->2010"
4918 + "default.handlebars->35->2013"
4919 ]
4920 },
4921 {
@@ -4937,7 +4937,7 @@
4937 "zh-chs": "已将设备共享{0}从{1}添加到{2}",
4938 "zh-cht": "已將設備共享{0}從{1}添加到{2}",
4939 "xloc": [
4940 - "default.handlebars->35->2021"
4940 + "default.handlebars->35->2024"
4941 ]
4942 },
4943 {
@@ -4959,8 +4959,8 @@
4959 "zh-chs": "已将设备{0}添加到设备组{1}",
4960 "zh-cht": "已將設備{0}添加到設備組{1}",
4961 "xloc": [
4962 - "default.handlebars->35->1977",
4963 - "default.handlebars->35->2004"
4962 + "default.handlebars->35->1980",
4963 + "default.handlebars->35->2007"
4964 ]
4965 },
4966 {
@@ -4975,7 +4975,7 @@
4975 "sv": "Lagt inloggningstoken",
4976 "zh-chs": "添加登录令牌",
4977 "xloc": [
4978 - "default.handlebars->35->2035"
4978 + "default.handlebars->35->2038"
4979 ]
4980 },
4981 {
@@ -4989,7 +4989,7 @@
4989 "sv": "Lagt till push-autentiseringsenhet",
4990 "zh-chs": "新增推送通知认证装置",
4991 "xloc": [
4992 - "default.handlebars->35->2033"
4992 + "default.handlebars->35->2036"
4993 ]
4994 },
4995 {
@@ -5011,7 +5011,7 @@
5011 "zh-chs": "添加了安全密钥",
5012 "zh-cht": "添加了安全密鑰",
5013 "xloc": [
5014 - "default.handlebars->35->2015"
5014 + "default.handlebars->35->2018"
5015 ]
5016 },
5017 {
@@ -5033,7 +5033,7 @@
5033 "zh-chs": "已将用户组{0}添加到设备组{1}",
5034 "zh-cht": "已將用戶組{0}添加到設備組{1}",
5035 "xloc": [
5036 - "default.handlebars->35->1988"
5036 + "default.handlebars->35->1991"
5037 ]
5038 },
5039 {
@@ -5055,8 +5055,8 @@
5055 "zh-chs": "已将用户{0}添加到用户组{1}",
5056 "zh-cht": "已將用戶{0}添加到用戶組{1}",
5057 "xloc": [
5058 - "default.handlebars->35->1991",
5059 - "default.handlebars->35->2000"
5058 + "default.handlebars->35->1994",
5059 + "default.handlebars->35->2003"
5060 ]
5061 },
5062 {
@@ -5122,8 +5122,8 @@
5122 "zh-chs": "管理员控制模式(ACM)",
5123 "zh-cht": "管理員控制模式(ACM)",
5124 "xloc": [
5125 - "default-mobile.handlebars->11->512",
5126 - "default.handlebars->35->1251"
5125 + "default-mobile.handlebars->11->515",
5126 + "default.handlebars->35->1254"
5127 ]
5128 },
5129 {
@@ -5145,8 +5145,8 @@
5145 "zh-chs": "管理员凭证",
5146 "zh-cht": "管理員憑證",
5147 "xloc": [
5148 - "default-mobile.handlebars->11->518",
5149 - "default.handlebars->35->1257"
5148 + "default-mobile.handlebars->11->521",
5149 + "default.handlebars->35->1260"
5150 ]
5151 },
5152 {
@@ -5191,7 +5191,7 @@
5191 "zh-chs": "管理领域",
5192 "zh-cht": "管理領域",
5193 "xloc": [
5194 - "default.handlebars->35->2284"
5194 + "default.handlebars->35->2289"
5195 ]
5196 },
5197 {
@@ -5236,7 +5236,7 @@
5236 "zh-chs": "管理领域",
5237 "zh-cht": "管理領域",
5238 "xloc": [
5239 - "default.handlebars->35->2152"
5239 + "default.handlebars->35->2157"
5240 ]
5241 },
5242 {
@@ -5258,7 +5258,7 @@
5258 "zh-chs": "管理员",
5259 "zh-cht": "管理員",
5260 "xloc": [
5261 - "default.handlebars->35->2081"
5261 + "default.handlebars->35->2086"
5262 ]
5263 },
5264 {
@@ -5280,7 +5280,7 @@
5280 "zh-chs": "南非文",
5281 "zh-cht": "南非文",
5282 "xloc": [
5283 - "default.handlebars->35->1336"
5283 + "default.handlebars->35->1339"
5284 ]
5285 },
5286 {
@@ -5306,9 +5306,9 @@
5306 "default-mobile.handlebars->11->235",
5307 "default-mobile.handlebars->11->288",
5308 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
5309 - "default.handlebars->35->1853",
5310 - "default.handlebars->35->1866",
5311 - "default.handlebars->35->2491",
5309 + "default.handlebars->35->1856",
5310 + "default.handlebars->35->1869",
5311 + "default.handlebars->35->2496",
5312 "default.handlebars->35->319",
5313 "default.handlebars->35->539",
5314 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1"
@@ -5333,8 +5333,8 @@
5333 "zh-chs": "代理+英特尔AMT",
5334 "zh-cht": "代理+Intel® AMT",
5335 "xloc": [
5336 - "default.handlebars->35->1855",
5337 - "default.handlebars->35->1868"
5336 + "default.handlebars->35->1858",
5337 + "default.handlebars->35->1871"
5338 ]
5339 },
5340 {
@@ -5379,8 +5379,8 @@
5379 "zh-chs": "代理控制台",
5380 "zh-cht": "代理控制台",
5381 "xloc": [
5382 - "default-mobile.handlebars->11->612",
5383 - "default.handlebars->35->1807"
5382 + "default-mobile.handlebars->11->615",
5383 + "default.handlebars->35->1810"
5384 ]
5385 },
5386 {
@@ -5402,7 +5402,7 @@
5402 "zh-chs": "代理错误计数器",
5403 "zh-cht": "代理錯誤計數器",
5404 "xloc": [
5405 - "default.handlebars->35->2460"
5405 + "default.handlebars->35->2465"
5406 ]
5407 },
5408 {
@@ -5534,7 +5534,7 @@
5534 "zh-chs": "代理时段",
5535 "zh-cht": "代理時段",
5536 "xloc": [
5537 - "default.handlebars->35->2476"
5537 + "default.handlebars->35->2481"
5538 ]
5539 },
5540 {
@@ -5590,7 +5590,7 @@
5590 "zh-chs": "代理类型",
5591 "zh-cht": "代理類型",
5592 "xloc": [
5593 - "default.handlebars->35->1864",
5593 + "default.handlebars->35->1867",
5594 "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
5595 ]
5596 },
@@ -5613,7 +5613,7 @@
5613 "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
5614 "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
5615 "xloc": [
5616 - "default.handlebars->35->1974"
5616 + "default.handlebars->35->1977"
5617 ]
5618 },
5619 {
@@ -5636,8 +5636,8 @@
5636 "zh-cht": "代理已連接",
5637 "xloc": [
5638 "default.handlebars->35->208",
5639 - "default.handlebars->35->816",
5640 - "default.handlebars->35->817"
5639 + "default.handlebars->35->817",
5640 + "default.handlebars->35->818"
5641 ]
5642 },
5643 {
@@ -5714,8 +5714,8 @@
5714 "zh-chs": "代理离线",
5715 "zh-cht": "代理離線",
5716 "xloc": [
5717 - "default-mobile.handlebars->11->546",
5718 - "default.handlebars->35->1286"
5717 + "default-mobile.handlebars->11->549",
5718 + "default.handlebars->35->1289"
5719 ]
5720 },
5721 {
@@ -5737,8 +5737,8 @@
5737 "zh-chs": "代理在线",
5738 "zh-cht": "代理在線",
5739 "xloc": [
5740 - "default-mobile.handlebars->11->545",
5741 - "default.handlebars->35->1285"
5740 + "default-mobile.handlebars->11->548",
5741 + "default.handlebars->35->1288"
5742 ]
5743 },
5744 {
@@ -5794,7 +5794,7 @@
5794 "zh-cht": "代理在特權降低的遠程設備上運行。",
5795 "xloc": [
5796 "default.handlebars->35->206",
5797 - "default.handlebars->35->814"
5797 + "default.handlebars->35->815"
5798 ]
5799 },
5800 {
@@ -5860,7 +5860,7 @@
5860 "zh-chs": "代理",
5861 "zh-cht": "代理",
5862 "xloc": [
5863 - "default.handlebars->35->2504"
5863 + "default.handlebars->35->2509"
5864 ]
5865 },
5866 {
@@ -5882,7 +5882,7 @@
5882 "zh-chs": "阿尔巴尼亚文",
5883 "zh-cht": "阿爾巴尼亞文",
5884 "xloc": [
5885 - "default.handlebars->35->1337"
5885 + "default.handlebars->35->1340"
5886 ]
5887 },
5888 {
@@ -5905,8 +5905,8 @@
5905 "zh-cht": "所有",
5906 "xloc": [
5907 "default-mobile.handlebars->11->141",
5908 - "default-mobile.handlebars->11->423",
5909 - "default-mobile.handlebars->11->425",
5908 + "default-mobile.handlebars->11->426",
5909 + "default-mobile.handlebars->11->428",
5910 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
5911 ]
5912 },
@@ -5929,7 +5929,7 @@
5929 "zh-chs": "全部可用",
5930 "zh-cht": "全部可用",
5931 "xloc": [
5932 - "default.handlebars->35->2044"
5932 + "default.handlebars->35->2049"
5933 ]
5934 },
5935 {
@@ -5951,7 +5951,7 @@
5951 "zh-chs": "所有显示",
5952 "zh-cht": "所有顯示",
5953 "xloc": [
5954 - "default.handlebars->35->1114"
5954 + "default.handlebars->35->1117"
5955 ]
5956 },
5957 {
@@ -5973,7 +5973,7 @@
5973 "zh-chs": "所有事件",
5974 "zh-cht": "所有事件",
5975 "xloc": [
5976 - "default.handlebars->35->2042"
5976 + "default.handlebars->35->2047"
5977 ]
5978 },
5979 {
@@ -5995,9 +5995,9 @@
5995 "zh-chs": "全部聚焦",
5996 "zh-cht": "全部聚焦",
5997 "xloc": [
5998 - "default.handlebars->35->1057",
5999 - "default.handlebars->35->1059",
6000 - "default.handlebars->35->1060"
5998 + "default.handlebars->35->1060",
5999 + "default.handlebars->35->1062",
6000 + "default.handlebars->35->1063"
6001 ]
6002 },
6003 {
@@ -6030,8 +6030,8 @@
6030 "zh-chs": "允许用户管理此设备组和该组中的设备。",
6031 "zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
6032 "xloc": [
6033 - "default.handlebars->35->1753",
6034 - "default.handlebars->35->2245"
6033 + "default.handlebars->35->1756",
6034 + "default.handlebars->35->2250"
6035 ]
6036 },
6037 {
@@ -6053,7 +6053,7 @@
6053 "zh-chs": "允许用户管理此设备。",
6054 "zh-cht": "允許用戶管理此裝置。",
6055 "xloc": [
6056 - "default.handlebars->35->1754"
6056 + "default.handlebars->35->1757"
6057 ]
6058 },
6059 {
@@ -6105,10 +6105,10 @@
6105 "sv": "Alt",
6106 "zh-chs": "替代",
6107 "xloc": [
6108 - "default-mobile.handlebars->11->386",
6109 - "default-mobile.handlebars->11->390",
6110 - "default.handlebars->35->1080",
6111 - "default.handlebars->35->1084"
6108 + "default-mobile.handlebars->11->389",
6109 + "default-mobile.handlebars->11->393",
6110 + "default.handlebars->35->1083",
6111 + "default.handlebars->35->1087"
6112 ]
6113 },
6114 {
@@ -6176,7 +6176,7 @@
6176 "zh-chs": "备用(F10 = ESC + 0)",
6177 "zh-cht": "備用(F10 = ESC + 0)",
6178 "xloc": [
6179 - "default.handlebars->35->1134",
6179 + "default.handlebars->35->1137",
6180 "sharing.handlebars->11->37"
6181 ]
6182 },
@@ -6234,9 +6234,9 @@
6234 "zh-chs": "一直通知",
6235 "zh-cht": "一直通知",
6236 "xloc": [
6237 - "default.handlebars->35->1663",
6238 - "default.handlebars->35->2206",
6239 - "default.handlebars->35->2293",
6237 + "default.handlebars->35->1666",
6238 + "default.handlebars->35->2211",
6239 + "default.handlebars->35->2298",
6240 "default.handlebars->35->753"
6241 ]
6242 },
@@ -6259,9 +6259,9 @@
6259 "zh-chs": "一直提示",
6260 "zh-cht": "一直提示",
6261 "xloc": [
6262 - "default.handlebars->35->1664",
6263 - "default.handlebars->35->2207",
6264 - "default.handlebars->35->2294",
6262 + "default.handlebars->35->1667",
6263 + "default.handlebars->35->2212",
6264 + "default.handlebars->35->2299",
6265 "default.handlebars->35->754"
6266 ]
6267 },
@@ -6413,7 +6413,7 @@
6413 "sv": "Android-installation",
6414 "zh-chs": "安卓安装",
6415 "xloc": [
6416 - "default-mobile.handlebars->11->586"
6416 + "default-mobile.handlebars->11->589"
6417 ]
6418 },
6419 {
@@ -6451,8 +6451,8 @@
6451 "sv": "Anti-virus inte aktivt",
6452 "zh-chs": "杀毒软件未激活",
6453 "xloc": [
6454 - "default.handlebars->35->1857",
6455 - "default.handlebars->35->1871"
6454 + "default.handlebars->35->1860",
6455 + "default.handlebars->35->1874"
6456 ]
6457 },
6458 {
@@ -6474,7 +6474,7 @@
6474 "zh-chs": "杀毒软件",
6475 "zh-cht": "防毒軟體",
6476 "xloc": [
6477 - "default-mobile.handlebars->11->475",
6477 + "default-mobile.handlebars->11->478",
6478 "default.handlebars->35->744"
6479 ]
6480 },
@@ -6670,7 +6670,7 @@
6670 "zh-chs": "阿拉伯文(阿尔及利亚)",
6671 "zh-cht": "阿拉伯文(阿爾及利亞)",
6672 "xloc": [
6673 - "default.handlebars->35->1339"
6673 + "default.handlebars->35->1342"
6674 ]
6675 },
6676 {
@@ -6692,7 +6692,7 @@
6692 "zh-chs": "阿拉伯文(巴林)",
6693 "zh-cht": "阿拉伯文(巴林)",
6694 "xloc": [
6695 - "default.handlebars->35->1340"
6695 + "default.handlebars->35->1343"
6696 ]
6697 },
6698 {
@@ -6714,7 +6714,7 @@
6714 "zh-chs": "阿拉伯文(埃及)",
6715 "zh-cht": "阿拉伯文(埃及)",
6716 "xloc": [
6717 - "default.handlebars->35->1341"
6717 + "default.handlebars->35->1344"
6718 ]
6719 },
6720 {
@@ -6736,7 +6736,7 @@
6736 "zh-chs": "阿拉伯文(伊拉克)",
6737 "zh-cht": "阿拉伯文(伊拉克)",
6738 "xloc": [
6739 - "default.handlebars->35->1342"
6739 + "default.handlebars->35->1345"
6740 ]
6741 },
6742 {
@@ -6758,7 +6758,7 @@
6758 "zh-chs": "阿拉伯文(约旦)",
6759 "zh-cht": "阿拉伯文(約旦)",
6760 "xloc": [
6761 - "default.handlebars->35->1343"
6761 + "default.handlebars->35->1346"
6762 ]
6763 },
6764 {
@@ -6780,7 +6780,7 @@
6780 "zh-chs": "阿拉伯文(科威特)",
6781 "zh-cht": "阿拉伯文(科威特)",
6782 "xloc": [
6783 - "default.handlebars->35->1344"
6783 + "default.handlebars->35->1347"
6784 ]
6785 },
6786 {
@@ -6802,7 +6802,7 @@
6802 "zh-chs": "阿拉伯文(黎巴嫩)",
6803 "zh-cht": "阿拉伯文(黎巴嫩)",
6804 "xloc": [
6805 - "default.handlebars->35->1345"
6805 + "default.handlebars->35->1348"
6806 ]
6807 },
6808 {
@@ -6824,7 +6824,7 @@
6824 "zh-chs": "阿拉伯文(利比亚)",
6825 "zh-cht": "阿拉伯文(利比亞)",
6826 "xloc": [
6827 - "default.handlebars->35->1346"
6827 + "default.handlebars->35->1349"
6828 ]
6829 },
6830 {
@@ -6846,7 +6846,7 @@
6846 "zh-chs": "阿拉伯文(摩洛哥)",
6847 "zh-cht": "阿拉伯文(摩洛哥)",
6848 "xloc": [
6849 - "default.handlebars->35->1347"
6849 + "default.handlebars->35->1350"
6850 ]
6851 },
6852 {
@@ -6868,7 +6868,7 @@
6868 "zh-chs": "阿拉伯文(阿曼)",
6869 "zh-cht": "阿拉伯文(阿曼)",
6870 "xloc": [
6871 - "default.handlebars->35->1348"
6871 + "default.handlebars->35->1351"
6872 ]
6873 },
6874 {
@@ -6890,7 +6890,7 @@
6890 "zh-chs": "阿拉伯文(卡塔尔)",
6891 "zh-cht": "阿拉伯文(卡塔爾)",
6892 "xloc": [
6893 - "default.handlebars->35->1349"
6893 + "default.handlebars->35->1352"
6894 ]
6895 },
6896 {
@@ -6912,7 +6912,7 @@
6912 "zh-chs": "阿拉伯文(沙特阿拉伯)",
6913 "zh-cht": "阿拉伯文(沙特阿拉伯)",
6914 "xloc": [
6915 - "default.handlebars->35->1350"
6915 + "default.handlebars->35->1353"
6916 ]
6917 },
6918 {
@@ -6934,7 +6934,7 @@
6934 "zh-chs": "阿拉伯文(标准)",
6935 "zh-cht": "阿拉伯文(標準)",
6936 "xloc": [
6937 - "default.handlebars->35->1338"
6937 + "default.handlebars->35->1341"
6938 ]
6939 },
6940 {
@@ -6956,7 +6956,7 @@
6956 "zh-chs": "阿拉伯文(叙利亚)",
6957 "zh-cht": "阿拉伯文(敘利亞)",
6958 "xloc": [
6959 - "default.handlebars->35->1351"
6959 + "default.handlebars->35->1354"
6960 ]
6961 },
6962 {
@@ -6978,7 +6978,7 @@
6978 "zh-chs": "阿拉伯文(突尼斯)",
6979 "zh-cht": "阿拉伯文(突尼斯)",
6980 "xloc": [
6981 - "default.handlebars->35->1352"
6981 + "default.handlebars->35->1355"
6982 ]
6983 },
6984 {
@@ -7000,7 +7000,7 @@
7000 "zh-chs": "阿拉伯文(阿联酋)",
7001 "zh-cht": "阿拉伯文(阿聯酋)",
7002 "xloc": [
7003 - "default.handlebars->35->1353"
7003 + "default.handlebars->35->1356"
7004 ]
7005 },
7006 {
@@ -7022,7 +7022,7 @@
7022 "zh-chs": "阿拉伯文(也门)",
7023 "zh-cht": "阿拉伯文(也門)",
7024 "xloc": [
7025 - "default.handlebars->35->1354"
7025 + "default.handlebars->35->1357"
7026 ]
7027 },
7028 {
@@ -7044,7 +7044,7 @@
7044 "zh-chs": "阿拉贡文",
7045 "zh-cht": "阿拉貢文",
7046 "xloc": [
7047 - "default.handlebars->35->1355"
7047 + "default.handlebars->35->1358"
7048 ]
7049 },
7050 {
@@ -7066,8 +7066,8 @@
7066 "zh-chs": "架构",
7067 "zh-cht": "結構",
7068 "xloc": [
7069 - "default-mobile.handlebars->11->458",
7070 - "default.handlebars->35->1204"
7069 + "default-mobile.handlebars->11->461",
7070 + "default.handlebars->35->1207"
7071 ]
7072 },
7073 {
@@ -7111,8 +7111,8 @@
7111 "zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
7112 "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
7113 "xloc": [
7114 - "default-mobile.handlebars->11->577",
7115 - "default.handlebars->35->1729"
7114 + "default-mobile.handlebars->11->580",
7115 + "default.handlebars->35->1732"
7116 ]
7117 },
7118 {
@@ -7134,7 +7134,7 @@
7134 "zh-chs": "您确定要删除节点{0}吗?",
7135 "zh-cht": "你確定要刪除節點{0}嗎?",
7136 "xloc": [
7137 - "default.handlebars->35->997"
7137 + "default.handlebars->35->998"
7138 ]
7139 },
7140 {
@@ -7156,7 +7156,7 @@
7156 "zh-chs": "您确定要卸载所选代理吗?",
7157 "zh-cht": "你確定要卸載所選代理嗎?",
7158 "xloc": [
7159 - "default.handlebars->35->986"
7159 + "default.handlebars->35->987"
7160 ]
7161 },
7162 {
@@ -7178,7 +7178,7 @@
7178 "zh-chs": "您确定要卸载所选的{0}代理吗?",
7179 "zh-cht": "你確定要卸載所選的{0}代理嗎?",
7180 "xloc": [
7181 - "default.handlebars->35->985"
7181 + "default.handlebars->35->986"
7182 ]
7183 },
7184 {
@@ -7200,7 +7200,7 @@
7200 "zh-chs": "您确定要{0}插件吗:{1}",
7201 "zh-cht": "你確定要{0}外掛嗎:{1}",
7202 "xloc": [
7203 - "default.handlebars->35->2555"
7203 + "default.handlebars->35->2560"
7204 ]
7205 },
7206 {
@@ -7222,7 +7222,7 @@
7222 "zh-chs": "亚美尼亚文",
7223 "zh-cht": "亞美尼亞文",
7224 "xloc": [
7225 - "default.handlebars->35->1356"
7225 + "default.handlebars->35->1359"
7226 ]
7227 },
7228 {
@@ -7288,7 +7288,7 @@
7288 "zh-chs": "阿萨姆文",
7289 "zh-cht": "阿薩姆文",
7290 "xloc": [
7291 - "default.handlebars->35->1357"
7291 + "default.handlebars->35->1360"
7292 ]
7293 },
7294 {
@@ -7384,7 +7384,7 @@
7384 "zh-chs": "阿斯图里亚斯文",
7385 "zh-cht": "阿斯圖里亞斯文",
7386 "xloc": [
7387 - "default.handlebars->35->1358"
7387 + "default.handlebars->35->1361"
7388 ]
7389 },
7390 {
@@ -7406,7 +7406,7 @@
7406 "zh-chs": "尝试激活英特尔(R)AMT ACM模式",
7407 "zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
7408 "xloc": [
7409 - "default.handlebars->35->1943"
7409 + "default.handlebars->35->1946"
7410 ]
7411 },
7412 {
@@ -7432,10 +7432,10 @@
7432 "sv": "Autentisering",
7433 "zh-chs": "验证",
7434 "xloc": [
7435 - "default-mobile.handlebars->11->405",
7436 - "default-mobile.handlebars->11->416",
7437 - "default.handlebars->35->1125",
7438 - "default.handlebars->35->1146",
7435 + "default-mobile.handlebars->11->408",
7436 + "default-mobile.handlebars->11->419",
7437 + "default.handlebars->35->1128",
7438 + "default.handlebars->35->1149",
7439 "ssh.handlebars->3->7",
7440 "ssh.handlebars->3->8"
7441 ]
@@ -7459,7 +7459,7 @@
7459 "zh-chs": "认证软件",
7460 "zh-cht": "認證軟體",
7461 "xloc": [
7462 - "default.handlebars->35->2297"
7462 + "default.handlebars->35->2302"
7463 ]
7464 },
7465 {
@@ -7474,9 +7474,9 @@
7474 "sv": "Autentiseringsenhet",
7475 "zh-chs": "认证设备",
7476 "xloc": [
7477 - "default.handlebars->35->1319",
7478 - "default.handlebars->35->1321",
7479 - "default.handlebars->35->1325"
7477 + "default.handlebars->35->1322",
7478 + "default.handlebars->35->1324",
7479 + "default.handlebars->35->1328"
7480 ]
7481 },
7482 {
@@ -7490,10 +7490,10 @@
7490 "sv": "Verifieringsfel",
7491 "zh-chs": "授权错误",
7492 "xloc": [
7493 - "default-mobile.handlebars->11->406",
7494 - "default-mobile.handlebars->11->417",
7495 - "default.handlebars->35->1127",
7496 - "default.handlebars->35->1147"
7493 + "default-mobile.handlebars->11->409",
7494 + "default-mobile.handlebars->11->420",
7495 + "default.handlebars->35->1130",
7496 + "default.handlebars->35->1150"
7497 ]
7498 },
7499 {
@@ -7519,8 +7519,8 @@
7519 "default-mobile.handlebars->11->64",
7520 "default-mobile.handlebars->11->95",
7521 "default-mobile.handlebars->11->97",
7522 - "default.handlebars->35->1315",
7523 - "default.handlebars->35->1317",
7522 + "default.handlebars->35->1318",
7523 + "default.handlebars->35->1320",
7524 "default.handlebars->35->170",
7525 "default.handlebars->35->175"
7526 ]
@@ -7610,7 +7610,7 @@
7610 "zh-chs": "自动删除",
7611 "zh-cht": "自動刪除",
7612 "xloc": [
7613 - "default.handlebars->35->1650"
7613 + "default.handlebars->35->1653"
7614 ]
7615 },
7616 {
@@ -7658,7 +7658,7 @@
7658 "zh-chs": "自动下载代理程序核心转储文件:“{0}”",
7659 "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
7660 "xloc": [
7661 - "default.handlebars->35->2024"
7661 + "default.handlebars->35->2027"
7662 ]
7663 },
7664 {
@@ -7709,7 +7709,7 @@
7709 "zh-chs": "可用內存",
7710 "zh-cht": "可用內存",
7711 "xloc": [
7712 - "default.handlebars->35->2485"
7712 + "default.handlebars->35->2490"
7713 ]
7714 },
7715 {
@@ -7731,7 +7731,7 @@
7731 "zh-chs": "阿塞拜疆文",
7732 "zh-cht": "阿塞拜疆文",
7733 "xloc": [
7734 - "default.handlebars->35->1359"
7734 + "default.handlebars->35->1362"
7735 ]
7736 },
7737 {
@@ -7746,9 +7746,9 @@
7746 "sv": "DÅLIG",
7747 "zh-chs": "坏的",
7748 "xloc": [
7749 - "default-mobile.handlebars->11->462",
7750 - "default-mobile.handlebars->11->466",
7751 - "default-mobile.handlebars->11->470",
7749 + "default-mobile.handlebars->11->465",
7750 + "default-mobile.handlebars->11->469",
7751 + "default-mobile.handlebars->11->473",
7752 "default.handlebars->35->731",
7753 "default.handlebars->35->735",
7754 "default.handlebars->35->739"
@@ -7773,8 +7773,8 @@
7773 "zh-chs": "的BIOS",
7774 "zh-cht": "的BIOS",
7775 "xloc": [
7776 - "default-mobile.handlebars->11->524",
7777 - "default.handlebars->35->1263"
7776 + "default-mobile.handlebars->11->527",
7777 + "default.handlebars->35->1266"
7778 ]
7779 },
7780 {
@@ -7869,8 +7869,8 @@
7869 "sv": "BackSpace",
7870 "zh-chs": "退格",
7871 "xloc": [
7872 - "default-mobile.handlebars->11->369",
7873 - "default.handlebars->35->1063"
7872 + "default-mobile.handlebars->11->372",
7873 + "default.handlebars->35->1066"
7874 ]
7875 },
7876 {
@@ -7914,8 +7914,8 @@
7914 "zh-chs": "背景与互动",
7915 "zh-cht": "背景與互動",
7916 "xloc": [
7917 - "default.handlebars->35->1836",
7918 - "default.handlebars->35->1843",
7917 + "default.handlebars->35->1839",
7918 + "default.handlebars->35->1846",
7919 "default.handlebars->35->433",
7920 "default.handlebars->35->447"
7921 ]
@@ -7939,8 +7939,8 @@
7939 "zh-chs": "仅背景",
7940 "zh-cht": "僅背景",
7941 "xloc": [
7942 - "default.handlebars->35->1837",
7943 - "default.handlebars->35->1844",
7942 + "default.handlebars->35->1840",
7943 + "default.handlebars->35->1847",
7944 "default.handlebars->35->434",
7945 "default.handlebars->35->448",
7946 "default.handlebars->35->464"
@@ -7988,7 +7988,7 @@
7988 "zh-chs": "备用码",
7989 "zh-cht": "備用碼",
7990 "xloc": [
7991 - "default.handlebars->35->2299"
7991 + "default.handlebars->35->2304"
7992 ]
7993 },
7994 {
@@ -8010,7 +8010,7 @@
8010 "zh-chs": "错误的签名",
8011 "zh-cht": "錯誤的簽名",
8012 "xloc": [
8013 - "default.handlebars->35->2467"
8013 + "default.handlebars->35->2472"
8014 ]
8015 },
8016 {
@@ -8032,7 +8032,7 @@
8032 "zh-chs": "错误的网络证书",
8033 "zh-cht": "錯誤的網絡憑證",
8034 "xloc": [
8035 - "default.handlebars->35->2466"
8035 + "default.handlebars->35->2471"
8036 ]
8037 },
8038 {
@@ -8054,7 +8054,7 @@
8054 "zh-chs": "巴斯克",
8055 "zh-cht": "巴斯克",
8056 "xloc": [
8057 - "default.handlebars->35->1360"
8057 + "default.handlebars->35->1363"
8058 ]
8059 },
8060 {
@@ -8120,7 +8120,7 @@
8120 "zh-chs": "将{0}个文件批量上传到文件夹{1}",
8121 "zh-cht": "將{0}個文件批量上傳到文件夾{1}",
8122 "xloc": [
8123 - "default.handlebars->35->2023"
8123 + "default.handlebars->35->2026"
8124 ]
8125 },
8126 {
@@ -8142,7 +8142,7 @@
8142 "zh-chs": "白俄罗斯文",
8143 "zh-cht": "白俄羅斯文",
8144 "xloc": [
8145 - "default.handlebars->35->1362"
8145 + "default.handlebars->35->1365"
8146 ]
8147 },
8148 {
@@ -8164,7 +8164,7 @@
8164 "zh-chs": "孟加拉",
8165 "zh-cht": "孟加拉",
8166 "xloc": [
8167 - "default.handlebars->35->1363"
8167 + "default.handlebars->35->1366"
8168 ]
8169 },
8170 {
@@ -8215,8 +8215,8 @@
8215 "sv": "Bootloader",
8216 "zh-chs": "引导加载程序",
8217 "xloc": [
8218 - "default-mobile.handlebars->11->488",
8219 - "default.handlebars->35->1217"
8218 + "default-mobile.handlebars->11->491",
8219 + "default.handlebars->35->1220"
8220 ]
8221 },
8222 {
@@ -8238,7 +8238,7 @@
8238 "zh-chs": "波斯尼亚文",
8239 "zh-cht": "波斯尼亞文",
8240 "xloc": [
8241 - "default.handlebars->35->1364"
8241 + "default.handlebars->35->1367"
8242 ]
8243 },
8244 {
@@ -8260,7 +8260,7 @@
8260 "zh-chs": "布列塔尼",
8261 "zh-cht": "布列塔尼",
8262 "xloc": [
8263 - "default.handlebars->35->1365"
8263 + "default.handlebars->35->1368"
8264 ]
8265 },
8266 {
@@ -8282,7 +8282,7 @@
8282 "zh-chs": "广播",
8283 "zh-cht": "廣播",
8284 "xloc": [
8285 - "default.handlebars->35->2213",
8285 + "default.handlebars->35->2218",
8286 "default.handlebars->container->column_l->p4->3->1->0->3->1"
8287 ]
8288 },
@@ -8305,7 +8305,7 @@
8305 "zh-chs": "广播消息",
8306 "zh-cht": "廣播消息",
8307 "xloc": [
8308 - "default.handlebars->35->2134"
8308 + "default.handlebars->35->2139"
8309 ]
8310 },
8311 {
@@ -8327,7 +8327,7 @@
8327 "zh-chs": "向所有连接的用户广播消息。",
8328 "zh-cht": "向所有連接的用戶廣播消息。",
8329 "xloc": [
8330 - "default.handlebars->35->2129"
8330 + "default.handlebars->35->2134"
8331 ]
8332 },
8333 {
@@ -8365,7 +8365,7 @@
8365 "zh-chs": "保加利亚文",
8366 "zh-cht": "保加利亞文",
8367 "xloc": [
8368 - "default.handlebars->35->1361"
8368 + "default.handlebars->35->1364"
8369 ]
8370 },
8371 {
@@ -8387,7 +8387,7 @@
8387 "zh-chs": "缅甸文",
8388 "zh-cht": "緬甸文",
8389 "xloc": [
8390 - "default.handlebars->35->1366"
8390 + "default.handlebars->35->1369"
8391 ]
8392 },
8393 {
@@ -8432,7 +8432,7 @@
8432 "zh-chs": "CCM模式",
8433 "zh-cht": "CCM模式",
8434 "xloc": [
8435 - "default.handlebars->35->1712"
8435 + "default.handlebars->35->1715"
8436 ]
8437 },
8438 {
@@ -8455,7 +8455,7 @@
8455 "zh-cht": "CIRA",
8456 "xloc": [
8457 "default-mobile.handlebars->11->236",
8458 - "default.handlebars->35->2492",
8458 + "default.handlebars->35->2497",
8459 "default.handlebars->35->321",
8460 "default.handlebars->35->541"
8461 ]
@@ -8479,7 +8479,7 @@
8479 "zh-chs": "CIRA服务器",
8480 "zh-cht": "CIRA伺服器",
8481 "xloc": [
8482 - "default.handlebars->35->2539"
8482 + "default.handlebars->35->2544"
8483 ]
8484 },
8485 {
@@ -8501,7 +8501,7 @@
8501 "zh-chs": "CIRA服务器命令",
8502 "zh-cht": "CIRA伺服器指令",
8503 "xloc": [
8504 - "default.handlebars->35->2540"
8504 + "default.handlebars->35->2545"
8505 ]
8506 },
8507 {
@@ -8523,7 +8523,7 @@
8523 "zh-chs": "CIRA设置",
8524 "zh-cht": "CIRA設置",
8525 "xloc": [
8526 - "default.handlebars->35->1720"
8526 + "default.handlebars->35->1723"
8527 ]
8528 },
8529 {
@@ -8545,9 +8545,9 @@
8545 "zh-chs": "CPU",
8546 "zh-cht": "CPU",
8547 "xloc": [
8548 - "default-mobile.handlebars->11->530",
8549 - "default.handlebars->35->1269",
8550 - "default.handlebars->35->2516",
8548 + "default-mobile.handlebars->11->533",
8549 + "default.handlebars->35->1272",
8550 + "default.handlebars->35->2521",
8551 "default.handlebars->container->column_l->p40->3->1->p40type->5"
8552 ]
8553 },
@@ -8570,7 +8570,7 @@
8570 "zh-chs": "CPU负载",
8571 "zh-cht": "CPU負載",
8572 "xloc": [
8573 - "default.handlebars->35->2481"
8573 + "default.handlebars->35->2486"
8574 ]
8575 },
8576 {
@@ -8592,7 +8592,7 @@
8592 "zh-chs": "最近15分钟的CPU负载",
8593 "zh-cht": "最近15分鐘的CPU負載",
8594 "xloc": [
8595 - "default.handlebars->35->2484"
8595 + "default.handlebars->35->2489"
8596 ]
8597 },
8598 {
@@ -8614,7 +8614,7 @@
8614 "zh-chs": "最近5分钟的CPU负载",
8615 "zh-cht": "最近5分鐘的CPU負載",
8616 "xloc": [
8617 - "default.handlebars->35->2483"
8617 + "default.handlebars->35->2488"
8618 ]
8619 },
8620 {
@@ -8636,7 +8636,7 @@
8636 "zh-chs": "最近一分钟的CPU负载",
8637 "zh-cht": "最近一分鐘的CPU負載",
8638 "xloc": [
8639 - "default.handlebars->35->2482"
8639 + "default.handlebars->35->2487"
8640 ]
8641 },
8642 {
@@ -8658,8 +8658,8 @@
8658 "zh-chs": "CR+LF",
8659 "zh-cht": "CR+LF",
8660 "xloc": [
8661 - "default.handlebars->35->1119",
8662 - "default.handlebars->35->1136",
8661 + "default.handlebars->35->1122",
8662 + "default.handlebars->35->1139",
8663 "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
8664 "sharing.handlebars->11->25",
8665 "sharing.handlebars->11->39",
@@ -8685,7 +8685,7 @@
8685 "zh-chs": "CSV",
8686 "zh-cht": "CSV",
8687 "xloc": [
8688 - "default.handlebars->35->2052"
8688 + "default.handlebars->35->2057"
8689 ]
8690 },
8691 {
@@ -8707,8 +8707,8 @@
8707 "zh-chs": "CSV格式",
8708 "zh-cht": "CSV格式",
8709 "xloc": [
8710 - "default.handlebars->35->2056",
8711 - "default.handlebars->35->2121",
8710 + "default.handlebars->35->2061",
8711 + "default.handlebars->35->2126",
8712 "default.handlebars->35->607"
8713 ]
8714 },
@@ -8750,7 +8750,7 @@
8750 "zh-chs": "呼叫错误",
8751 "zh-cht": "呼叫錯誤",
8752 "xloc": [
8753 - "default.handlebars->35->2556"
8753 + "default.handlebars->35->2561"
8754 ]
8755 },
8756 {
@@ -8775,8 +8775,8 @@
8775 "agent-translations.json",
8776 "default-mobile.handlebars->11->106",
8777 "default-mobile.handlebars->dialog->idx_dlgButtonBar",
8778 - "default.handlebars->35->1627",
8779 - "default.handlebars->35->2545",
8778 + "default.handlebars->35->1630",
8779 + "default.handlebars->35->2550",
8780 "default.handlebars->container->dialog->idx_dlgButtonBar",
8781 "login-mobile.handlebars->dialog->idx_dlgButtonBar",
8782 "login.handlebars->dialog->idx_dlgButtonBar",
@@ -8828,12 +8828,12 @@
8828 "zh-chs": "容量",
8829 "zh-cht": "容量",
8830 "xloc": [
8831 - "default-mobile.handlebars->11->535",
8832 - "default-mobile.handlebars->11->540",
8833 - "default-mobile.handlebars->11->542",
8834 - "default.handlebars->35->1274",
8835 - "default.handlebars->35->1279",
8836 - "default.handlebars->35->1281"
8831 + "default-mobile.handlebars->11->538",
8832 + "default-mobile.handlebars->11->543",
8833 + "default-mobile.handlebars->11->545",
8834 + "default.handlebars->35->1277",
8835 + "default.handlebars->35->1282",
8836 + "default.handlebars->35->1284"
8837 ]
8838 },
8839 {
@@ -8855,8 +8855,8 @@
8855 "zh-chs": "容量/速度",
8856 "zh-cht": "容量/速度",
8857 "xloc": [
8858 - "default-mobile.handlebars->11->533",
8859 - "default.handlebars->35->1272"
8858 + "default-mobile.handlebars->11->536",
8859 + "default.handlebars->35->1275"
8860 ]
8861 },
8862 {
@@ -8878,7 +8878,7 @@
8878 "zh-chs": "加泰罗尼亚文",
8879 "zh-cht": "加泰羅尼亞文",
8880 "xloc": [
8881 - "default.handlebars->35->1367"
8881 + "default.handlebars->35->1370"
8882 ]
8883 },
8884 {
@@ -8950,7 +8950,7 @@
8950 "zh-chs": "查莫罗",
8951 "zh-cht": "查莫羅",
8952 "xloc": [
8953 - "default.handlebars->35->1368"
8953 + "default.handlebars->35->1371"
8954 ]
8955 },
8956 {
@@ -8996,7 +8996,7 @@
8996 "zh-chs": "更改{0}的电邮",
8997 "zh-cht": "更改{0}的電郵",
8998 "xloc": [
8999 - "default.handlebars->35->2331"
8999 + "default.handlebars->35->2336"
9000 ]
9001 },
9002 {
@@ -9018,9 +9018,9 @@
9018 "zh-chs": "更改组",
9019 "zh-cht": "更改群",
9020 "xloc": [
9021 - "default.handlebars->35->788",
9022 - "default.handlebars->35->994",
9023 - "default.handlebars->35->995"
9021 + "default.handlebars->35->789",
9022 + "default.handlebars->35->995",
9023 + "default.handlebars->35->996"
9024 ]
9025 },
9026 {
@@ -9043,8 +9043,8 @@
9043 "zh-cht": "更改密碼",
9044 "xloc": [
9045 "default-mobile.handlebars->11->114",
9046 - "default.handlebars->35->1583",
9047 - "default.handlebars->35->2316"
9046 + "default.handlebars->35->1586",
9047 + "default.handlebars->35->2321"
9048 ]
9049 },
9050 {
@@ -9066,7 +9066,7 @@
9066 "zh-chs": "更改{0}的密码",
9067 "zh-cht": "更改{0}的密碼",
9068 "xloc": [
9069 - "default.handlebars->35->2340"
9069 + "default.handlebars->35->2345"
9070 ]
9071 },
9072 {
@@ -9088,7 +9088,7 @@
9088 "zh-chs": "更改{0}的真实名称",
9089 "zh-cht": "更改{0}的真實名稱",
9090 "xloc": [
9091 - "default.handlebars->35->2326"
9091 + "default.handlebars->35->2331"
9092 ]
9093 },
9094 {
@@ -9204,7 +9204,7 @@
9204 "zh-chs": "更改该用户的密码",
9205 "zh-cht": "更改該用戶的密碼",
9206 "xloc": [
9207 - "default.handlebars->35->2315"
9207 + "default.handlebars->35->2320"
9208 ]
9209 },
9210 {
@@ -9248,7 +9248,7 @@
9248 "zh-chs": "在此处更改您的帐户电邮地址。",
9249 "zh-cht": "在此處更改你的帳戶電郵地址。",
9250 "xloc": [
9251 - "default.handlebars->35->1570"
9251 + "default.handlebars->35->1573"
9252 ]
9253 },
9254 {
@@ -9270,7 +9270,7 @@
9270 "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
9271 "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
9272 "xloc": [
9273 - "default.handlebars->35->1576"
9273 + "default.handlebars->35->1579"
9274 ]
9275 },
9276 {
@@ -9292,7 +9292,7 @@
9292 "zh-chs": "更改帐户凭据",
9293 "zh-cht": "帳戶憑證已更改",
9294 "xloc": [
9295 - "default.handlebars->35->1995"
9295 + "default.handlebars->35->1998"
9296 ]
9297 },
9298 {
@@ -9314,7 +9314,7 @@
9314 "zh-chs": "{1}组中的设备{0}已更改:{2}",
9315 "zh-cht": "{1}組中的設備{0}已更改:{2}",
9316 "xloc": [
9317 - "default.handlebars->35->1979"
9317 + "default.handlebars->35->1982"
9318 ]
9319 },
9320 {
@@ -9336,7 +9336,7 @@
9336 "zh-chs": "语言从{1}更改为{2}",
9337 "zh-cht": "語言從{1}更改為{2}",
9338 "xloc": [
9339 - "default.handlebars->35->1923"
9339 + "default.handlebars->35->1926"
9340 ]
9341 },
9342 {
@@ -9358,8 +9358,8 @@
9358 "zh-chs": "已更改{0}的用户设备权限",
9359 "zh-cht": "已更改{0}的用戶設備權限",
9360 "xloc": [
9361 - "default.handlebars->35->1981",
9362 - "default.handlebars->35->2002"
9361 + "default.handlebars->35->1984",
9362 + "default.handlebars->35->2005"
9363 ]
9364 },
9365 {
@@ -9392,7 +9392,7 @@
9392 "zh-chs": "更改语言将需要刷新页面。",
9393 "zh-cht": "更改語言將需要刷新頁面。",
9394 "xloc": [
9395 - "default.handlebars->35->1535"
9395 + "default.handlebars->35->1538"
9396 ]
9397 },
9398 {
@@ -9414,12 +9414,12 @@
9414 "zh-chs": "聊天",
9415 "zh-cht": "聊天",
9416 "xloc": [
9417 - "default.handlebars->35->2073",
9418 - "default.handlebars->35->2311",
9419 - "default.handlebars->35->2312",
9420 - "default.handlebars->35->783",
9421 - "default.handlebars->35->862",
9422 - "default.handlebars->35->884"
9417 + "default.handlebars->35->2078",
9418 + "default.handlebars->35->2316",
9419 + "default.handlebars->35->2317",
9420 + "default.handlebars->35->784",
9421 + "default.handlebars->35->863",
9422 + "default.handlebars->35->885"
9423 ]
9424 },
9425 {
@@ -9441,10 +9441,10 @@
9441 "zh-chs": "聊天并通知",
9442 "zh-cht": "聊天並通知",
9443 "xloc": [
9444 - "default-mobile.handlebars->11->602",
9445 - "default-mobile.handlebars->11->622",
9446 - "default.handlebars->35->1782",
9447 - "default.handlebars->35->1818"
9444 + "default-mobile.handlebars->11->605",
9445 + "default-mobile.handlebars->11->625",
9446 + "default.handlebars->35->1785",
9447 + "default.handlebars->35->1821"
9448 ]
9449 },
9450 {
@@ -9460,8 +9460,8 @@
9460 "sv": "Chattförfrågan, klicka här för att acceptera.",
9461 "zh-chs": "聊天请求,点击这里接受。",
9462 "xloc": [
9463 - "default-mobile.handlebars->11->654",
9464 - "default.handlebars->35->2436"
9463 + "default-mobile.handlebars->11->657",
9464 + "default.handlebars->35->2441"
9465 ]
9466 },
9467 {
@@ -9505,7 +9505,7 @@
9505 "zh-chs": "车臣",
9506 "zh-cht": "車臣",
9507 "xloc": [
9508 - "default.handlebars->35->1369"
9508 + "default.handlebars->35->1372"
9509 ]
9510 },
9511 {
@@ -9615,8 +9615,8 @@
9615 "zh-chs": "检查...",
9616 "zh-cht": "檢查...",
9617 "xloc": [
9618 - "default.handlebars->35->1335",
9619 - "default.handlebars->35->2550"
9618 + "default.handlebars->35->1338",
9619 + "default.handlebars->35->2555"
9620 ]
9621 },
9622 {
@@ -9638,7 +9638,7 @@
9638 "zh-chs": "中文",
9639 "zh-cht": "中文",
9640 "xloc": [
9641 - "default.handlebars->35->1370"
9641 + "default.handlebars->35->1373"
9642 ]
9643 },
9644 {
@@ -9660,7 +9660,7 @@
9660 "zh-chs": "中文(香港)",
9661 "zh-cht": "中文(香港)",
9662 "xloc": [
9663 - "default.handlebars->35->1371"
9663 + "default.handlebars->35->1374"
9664 ]
9665 },
9666 {
@@ -9682,7 +9682,7 @@
9682 "zh-chs": "中文(中国)",
9683 "zh-cht": "中文(中國)",
9684 "xloc": [
9685 - "default.handlebars->35->1372"
9685 + "default.handlebars->35->1375"
9686 ]
9687 },
9688 {
@@ -9704,7 +9704,7 @@
9704 "zh-chs": "简体中文",
9705 "zh-cht": "簡體中文",
9706 "xloc": [
9707 - "default.handlebars->35->1532"
9707 + "default.handlebars->35->1535"
9708 ]
9709 },
9710 {
@@ -9726,7 +9726,7 @@
9726 "zh-chs": "中文(新加坡)",
9727 "zh-cht": "中文(新加坡)",
9728 "xloc": [
9729 - "default.handlebars->35->1373"
9729 + "default.handlebars->35->1376"
9730 ]
9731 },
9732 {
@@ -9748,7 +9748,7 @@
9748 "zh-chs": "中文(台湾)",
9749 "zh-cht": "中文(台灣)",
9750 "xloc": [
9751 - "default.handlebars->35->1374"
9751 + "default.handlebars->35->1377"
9752 ]
9753 },
9754 {
@@ -9770,7 +9770,7 @@
9770 "zh-chs": "繁体中文",
9771 "zh-cht": "繁體中文",
9772 "xloc": [
9773 - "default.handlebars->35->1533"
9773 + "default.handlebars->35->1536"
9774 ]
9775 },
9776 {
@@ -9815,7 +9815,7 @@
9815 "zh-chs": "楚瓦什",
9816 "zh-cht": "楚瓦什",
9817 "xloc": [
9818 - "default.handlebars->35->1375"
9818 + "default.handlebars->35->1378"
9819 ]
9820 },
9821 {
@@ -9857,17 +9857,17 @@
9857 "zh-cht": "清除",
9858 "xloc": [
9859 "default-mobile.handlebars->11->156",
9860 - "default-mobile.handlebars->11->442",
9861 - "default-mobile.handlebars->11->444",
9862 - "default-mobile.handlebars->11->446",
9863 - "default-mobile.handlebars->11->448",
9860 + "default-mobile.handlebars->11->445",
9861 + "default-mobile.handlebars->11->447",
9862 + "default-mobile.handlebars->11->449",
9863 + "default-mobile.handlebars->11->451",
9864 "default-mobile.handlebars->11->71",
9865 "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
9866 - "default.handlebars->35->1181",
9867 - "default.handlebars->35->1183",
9868 - "default.handlebars->35->1185",
9869 - "default.handlebars->35->1187",
9870 - "default.handlebars->35->1917",
9866 + "default.handlebars->35->1184",
9867 + "default.handlebars->35->1186",
9868 + "default.handlebars->35->1188",
9869 + "default.handlebars->35->1190",
9870 + "default.handlebars->35->1920",
9871 "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
9872 "default.handlebars->container->column_l->p41->3->1",
9873 "messenger.handlebars->xbottom->1->1->0->5",
@@ -9877,6 +9877,13 @@
9877 "sharing.handlebars->11->81"
9878 ]
9879 },
9880 + {
9881 + "en": "Clear RDP credentials?",
9882 + "xloc": [
9883 + "default-mobile.handlebars->11->357",
9884 + "default.handlebars->35->1039"
9885 + ]
9886 + },
9887 {
9888 "de": "SSH-Anmeldeinformationen löschen?",
9889 "en": "Clear SSH credentials?",
@@ -9889,8 +9896,8 @@
9896 "sv": "Rensa SSH-referenser?",
9897 "zh-chs": "清除 SSH 凭据?",
9898 "xloc": [
9892 - "default-mobile.handlebars->11->354",
9893 - "default.handlebars->35->1036"
9899 + "default-mobile.handlebars->11->355",
9900 + "default.handlebars->35->1037"
9901 ]
9902 },
9903 {
@@ -9965,8 +9972,8 @@
9972 "zh-chs": "全部清除",
9973 "zh-cht": "全部清除",
9974 "xloc": [
9968 - "default-mobile.handlebars->11->637",
9969 - "default.handlebars->35->2419"
9975 + "default-mobile.handlebars->11->640",
9976 + "default.handlebars->35->2424"
9977 ]
9978 },
9979 {
@@ -10011,8 +10018,8 @@
10018 "zh-chs": "清除核心",
10019 "zh-cht": "清除核心",
10020 "xloc": [
10014 - "default-mobile.handlebars->11->556",
10015 - "default.handlebars->35->1296"
10021 + "default-mobile.handlebars->11->559",
10022 + "default.handlebars->35->1299"
10023 ]
10024 },
10025 {
@@ -10056,8 +10063,8 @@
10063 "zh-chs": "清除此通知",
10064 "zh-cht": "清除此通知",
10065 "xloc": [
10059 - "default-mobile.handlebars->11->636",
10060 - "default.handlebars->35->2418"
10066 + "default-mobile.handlebars->11->639",
10067 + "default.handlebars->35->2423"
10068 ]
10069 },
10070 {
@@ -10123,8 +10130,8 @@
10130 "zh-chs": "单击此处编辑设备组名称",
10131 "zh-cht": "單擊此處編輯裝置群名稱",
10132 "xloc": [
10126 - "default.handlebars->35->1638",
10127 - "default.handlebars->35->1862"
10133 + "default.handlebars->35->1641",
10134 + "default.handlebars->35->1865"
10135 ]
10136 },
10137 {
@@ -10168,7 +10175,7 @@
10175 "zh-chs": "单击此处编辑用户组名称",
10176 "zh-cht": "單擊此處編輯用戶群名稱",
10177 "xloc": [
10171 - "default.handlebars->35->2190"
10178 + "default.handlebars->35->2195"
10179 ]
10180 },
10181 {
@@ -10264,7 +10271,7 @@
10271 "zh-cht": "單擊確定將驗證電郵發送到:",
10272 "xloc": [
10273 "default-mobile.handlebars->11->99",
10267 - "default.handlebars->35->1567"
10274 + "default.handlebars->35->1570"
10275 ]
10276 },
10277 {
@@ -10331,8 +10338,8 @@
10338 "zh-chs": "客户端控制模式(CCM)",
10339 "zh-cht": "客戶端控制模式(CCM)",
10340 "xloc": [
10334 - "default-mobile.handlebars->11->511",
10335 - "default.handlebars->35->1250"
10341 + "default-mobile.handlebars->11->514",
10342 + "default.handlebars->35->1253"
10343 ]
10344 },
10345 {
@@ -10354,7 +10361,7 @@
10361 "zh-chs": "客户编号",
10362 "zh-cht": "客戶編號",
10363 "xloc": [
10357 - "default.handlebars->35->1620"
10364 + "default.handlebars->35->1623"
10365 ]
10366 },
10367 {
@@ -10376,7 +10383,7 @@
10383 "zh-chs": "客户端启动的远程访问",
10384 "zh-cht": "客戶端啟動的遠程訪問",
10385 "xloc": [
10379 - "default.handlebars->35->1719"
10386 + "default.handlebars->35->1722"
10387 ]
10388 },
10389 {
@@ -10398,7 +10405,7 @@
10405 "zh-chs": "客户机密",
10406 "zh-cht": "客戶機密",
10407 "xloc": [
10401 - "default.handlebars->35->1621"
10408 + "default.handlebars->35->1624"
10409 ]
10410 },
10411 {
@@ -10444,11 +10451,11 @@
10451 "zh-cht": "關",
10452 "xloc": [
10453 "default-mobile.handlebars->11->69",
10447 - "default.handlebars->35->1107",
10448 - "default.handlebars->35->1157",
10454 + "default.handlebars->35->1110",
10455 + "default.handlebars->35->1160",
10456 "default.handlebars->35->182",
10457 "default.handlebars->35->190",
10451 - "default.handlebars->35->2544",
10458 + "default.handlebars->35->2549",
10459 "sharing.handlebars->11->52"
10460 ]
10461 },
@@ -10471,7 +10478,7 @@
10478 "zh-chs": "封闭式桌面多路复用会话,{0}秒",
10479 "zh-cht": "封閉式桌面多路復用會話,{0}秒",
10480 "xloc": [
10474 - "default.handlebars->35->1928"
10481 + "default.handlebars->35->1931"
10482 ]
10483 },
10484 {
@@ -10614,10 +10621,10 @@
10621 "zh-chs": "指令",
10622 "zh-cht": "指令",
10623 "xloc": [
10617 - "default-mobile.handlebars->11->624",
10618 - "default.handlebars->35->1820",
10619 - "default.handlebars->35->864",
10620 - "default.handlebars->35->886"
10624 + "default-mobile.handlebars->11->627",
10625 + "default.handlebars->35->1823",
10626 + "default.handlebars->35->865",
10627 + "default.handlebars->35->887"
10628 ]
10629 },
10630 {
@@ -10639,8 +10646,8 @@
10646 "zh-chs": "通用设备组",
10647 "zh-cht": "通用裝置群",
10648 "xloc": [
10642 - "default.handlebars->35->2221",
10643 - "default.handlebars->35->2345"
10649 + "default.handlebars->35->2226",
10650 + "default.handlebars->35->2350"
10651 ]
10652 },
10653 {
@@ -10662,8 +10669,8 @@
10669 "zh-chs": "通用设备",
10670 "zh-cht": "通用裝置",
10671 "xloc": [
10665 - "default.handlebars->35->2227",
10666 - "default.handlebars->35->2357"
10672 + "default.handlebars->35->2232",
10673 + "default.handlebars->35->2362"
10674 ]
10675 },
10676 {
@@ -10678,8 +10685,8 @@
10685 "sv": "Kompilera tid",
10686 "zh-chs": "编译时间",
10687 "xloc": [
10681 - "default-mobile.handlebars->11->484",
10682 - "default.handlebars->35->1213"
10688 + "default-mobile.handlebars->11->487",
10689 + "default.handlebars->35->1216"
10690 ]
10691 },
10692 {
@@ -10712,7 +10719,7 @@
10719 "zh-chs": "压缩档案...",
10720 "zh-cht": "壓縮檔案...",
10721 "xloc": [
10715 - "default.handlebars->35->1152",
10722 + "default.handlebars->35->1155",
10723 "sharing.handlebars->11->47"
10724 ]
10725 },
@@ -10746,16 +10753,16 @@
10753 "zh-chs": "确认",
10754 "zh-cht": "確認",
10755 "xloc": [
10749 - "default-mobile.handlebars->11->351",
10750 - "default-mobile.handlebars->11->578",
10751 - "default.handlebars->35->1730",
10752 - "default.handlebars->35->2101",
10753 - "default.handlebars->35->2180",
10754 - "default.handlebars->35->2241",
10755 - "default.handlebars->35->2343",
10756 + "default-mobile.handlebars->11->352",
10757 + "default-mobile.handlebars->11->581",
10758 + "default.handlebars->35->1733",
10759 + "default.handlebars->35->2106",
10760 + "default.handlebars->35->2185",
10761 + "default.handlebars->35->2246",
10762 + "default.handlebars->35->2348",
10763 "default.handlebars->35->571",
10757 - "default.handlebars->35->989",
10758 - "default.handlebars->35->998"
10764 + "default.handlebars->35->990",
10765 + "default.handlebars->35->999"
10766 ]
10767 },
10768 {
@@ -10788,8 +10795,8 @@
10795 "zh-chs": "确认将1个副本复制到此位置?",
10796 "zh-cht": "確認將1個副本複製到此位置?",
10797 "xloc": [
10791 - "default-mobile.handlebars->11->437",
10792 - "default.handlebars->35->1176",
10798 + "default-mobile.handlebars->11->440",
10799 + "default.handlebars->35->1179",
10800 "sharing.handlebars->11->70"
10801 ]
10802 },
@@ -10812,7 +10819,7 @@
10819 "zh-chs": "确认{0}个条目的复制到此位置?",
10820 "zh-cht": "確認{0}個條目的複製到此位置?",
10821 "xloc": [
10815 - "default.handlebars->35->1175",
10822 + "default.handlebars->35->1178",
10823 "sharing.handlebars->11->69"
10824 ]
10825 },
@@ -10835,7 +10842,7 @@
10842 "zh-chs": "确认{0}个条目的副本到此位置?",
10843 "zh-cht": "確認{0}個條目的副本到此位置?",
10844 "xloc": [
10838 - "default-mobile.handlebars->11->436"
10845 + "default-mobile.handlebars->11->439"
10846 ]
10847 },
10848 {
@@ -10857,7 +10864,7 @@
10864 "zh-chs": "确认删除选定的帐户?",
10865 "zh-cht": "確認刪除所選帳戶?",
10866 "xloc": [
10860 - "default.handlebars->35->2100"
10867 + "default.handlebars->35->2105"
10868 ]
10869 },
10870 {
@@ -10901,7 +10908,7 @@
10908 "zh-chs": "确认删除选定的用户组?",
10909 "zh-cht": "確認刪除所選用戶群?",
10910 "xloc": [
10904 - "default.handlebars->35->2179"
10911 + "default.handlebars->35->2184"
10912 ]
10913 },
10914 {
@@ -10923,7 +10930,7 @@
10930 "zh-chs": "确认删除用户{0}?",
10931 "zh-cht": "確認刪除用戶{0}?",
10932 "xloc": [
10926 - "default.handlebars->35->2342"
10933 + "default.handlebars->35->2347"
10934 ]
10935 },
10936 {
@@ -10945,7 +10952,7 @@
10952 "zh-chs": "确认删除用户“ {0} ”的成员身份?",
10953 "zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
10954 "xloc": [
10948 - "default.handlebars->35->2244"
10955 + "default.handlebars->35->2249"
10956 ]
10957 },
10958 {
@@ -10967,7 +10974,7 @@
10974 "zh-chs": "确认删除用户组“ {0} ”的成员身份?",
10975 "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
10976 "xloc": [
10970 - "default.handlebars->35->2374"
10977 + "default.handlebars->35->2379"
10978 ]
10979 },
10980 {
@@ -10989,8 +10996,8 @@
10996 "zh-chs": "确认将1个条目移动到此位置?",
10997 "zh-cht": "確認將1個條目移動到此位置?",
10998 "xloc": [
10992 - "default-mobile.handlebars->11->439",
10993 - "default.handlebars->35->1178",
10999 + "default-mobile.handlebars->11->442",
11000 + "default.handlebars->35->1181",
11001 "sharing.handlebars->11->72"
11002 ]
11003 },
@@ -11013,7 +11020,7 @@
11020 "zh-chs": "确认将{0}个条目移到此位置?",
11021 "zh-cht": "確認將{0}個條目移到該位置?",
11022 "xloc": [
11016 - "default.handlebars->35->1177",
11023 + "default.handlebars->35->1180",
11024 "sharing.handlebars->11->71"
11025 ]
11026 },
@@ -11036,7 +11043,7 @@
11043 "zh-chs": "确认将{0}个条目移到该位置?",
11044 "zh-cht": "確認將{0}個條目移到該位置?",
11045 "xloc": [
11039 - "default-mobile.handlebars->11->438"
11046 + "default-mobile.handlebars->11->441"
11047 ]
11048 },
11049 {
@@ -11058,7 +11065,7 @@
11065 "zh-chs": "确认覆盖?",
11066 "zh-cht": "確認覆蓋?",
11067 "xloc": [
11061 - "default.handlebars->35->1911"
11068 + "default.handlebars->35->1914"
11069 ]
11070 },
11071 {
@@ -11080,8 +11087,8 @@
11087 "zh-chs": "确认删除设备“ {0} ”的访问权限?",
11088 "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
11089 "xloc": [
11083 - "default.handlebars->35->2234",
11084 - "default.handlebars->35->2365"
11090 + "default.handlebars->35->2239",
11091 + "default.handlebars->35->2370"
11092 ]
11093 },
11094 {
@@ -11103,8 +11110,8 @@
11110 "zh-chs": "确认删除设备组“ {0} ”的访问权限?",
11111 "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
11112 "xloc": [
11106 - "default.handlebars->35->2236",
11107 - "default.handlebars->35->2378"
11113 + "default.handlebars->35->2241",
11114 + "default.handlebars->35->2383"
11115 ]
11116 },
11117 {
@@ -11126,7 +11133,7 @@
11133 "zh-chs": "确认删除用户“ {0} ”的访问权限?",
11134 "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
11135 "xloc": [
11129 - "default.handlebars->35->2367"
11136 + "default.handlebars->35->2372"
11137 ]
11138 },
11139 {
@@ -11148,7 +11155,7 @@
11155 "zh-chs": "确认删除用户组“ {0} ”的访问权限?",
11156 "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
11157 "xloc": [
11151 - "default.handlebars->35->2370"
11158 + "default.handlebars->35->2375"
11159 ]
11160 },
11161 {
@@ -11170,8 +11177,8 @@
11177 "zh-chs": "确认删除访问权限?",
11178 "zh-cht": "確認刪除訪問權限?",
11179 "xloc": [
11173 - "default.handlebars->35->2368",
11174 - "default.handlebars->35->2371"
11180 + "default.handlebars->35->2373",
11181 + "default.handlebars->35->2376"
11182 ]
11183 },
11184 {
@@ -11194,7 +11201,7 @@
11201 "zh-cht": "確認刪除身份驗證軟體兩步登入?",
11202 "xloc": [
11203 "default-mobile.handlebars->11->98",
11197 - "default.handlebars->35->1318"
11204 + "default.handlebars->35->1321"
11205 ]
11206 },
11207 {
@@ -11235,7 +11242,7 @@
11242 "zh-chs": "确认删除设备共享“{0}”?",
11243 "zh-cht": "確認刪除設備共享“{0}”?",
11244 "xloc": [
11238 - "default.handlebars->35->2363"
11245 + "default.handlebars->35->2368"
11246 ]
11247 },
11248 {
@@ -11287,7 +11294,7 @@
11294 "sv": "Bekräfta borttagning av push-autentiseringsenhet?",
11295 "zh-chs": "确认移除推送认证设备?",
11296 "xloc": [
11290 - "default.handlebars->35->1320"
11297 + "default.handlebars->35->1323"
11298 ]
11299 },
11300 {
@@ -11309,7 +11316,7 @@
11316 "zh-chs": "确认删除用户“ {0} ”的权限?",
11317 "zh-cht": "確認刪除用戶“ {0} ”的權限?",
11318 "xloc": [
11312 - "default.handlebars->35->1829"
11319 + "default.handlebars->35->1832"
11320 ]
11321 },
11322 {
@@ -11331,7 +11338,7 @@
11338 "zh-chs": "确认删除用户组“ {0} ”的权限?",
11339 "zh-cht": "確認刪除用戶群“ {0} ”的權限?",
11340 "xloc": [
11334 - "default.handlebars->35->1831"
11341 + "default.handlebars->35->1834"
11342 ]
11343 },
11344 {
@@ -11346,7 +11353,7 @@
11353 "sv": "Bekräfta borttagningen av denna inloggningsbricka?",
11354 "zh-chs": "确认删除此登录令牌?",
11355 "xloc": [
11349 - "default.handlebars->35->1613"
11356 + "default.handlebars->35->1616"
11357 ]
11358 },
11359 {
@@ -11387,7 +11394,7 @@
11394 "zh-chs": "确认删除用户{0}?",
11395 "zh-cht": "確認刪除用戶{0}?",
11396 "xloc": [
11390 - "default-mobile.handlebars->11->633"
11397 + "default-mobile.handlebars->11->636"
11398 ]
11399 },
11400 {
@@ -11410,7 +11417,7 @@
11417 "zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
11418 "xloc": [
11419 "default-mobile.handlebars->11->151",
11413 - "default.handlebars->35->1912"
11420 + "default.handlebars->35->1915"
11421 ]
11422 },
11423 {
@@ -11433,16 +11440,16 @@
11440 "zh-cht": "連接",
11441 "xloc": [
11442 "agent-translations.json",
11436 - "default-mobile.handlebars->11->410",
11443 + "default-mobile.handlebars->11->413",
11444 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
11445 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
11446 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
11440 - "default.handlebars->35->1139",
11441 - "default.handlebars->35->1667",
11447 + "default.handlebars->35->1142",
11448 + "default.handlebars->35->1670",
11449 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
11450 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
11451 "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
11445 - "mstsc.handlebars->main->1->3->1->8->1->0",
11452 + "mstsc.handlebars->main->1->3->1->12->1->0",
11453 "sharing.handlebars->11->42",
11454 "sharing.handlebars->p11->deskarea0->deskarea1->3->connectbutton1span",
11455 "sharing.handlebars->p12->5->3->connectbutton2span",
@@ -11504,7 +11511,7 @@
11511 "zh-chs": "连接到服务器",
11512 "zh-cht": "連接到伺服器",
11513 "xloc": [
11507 - "default.handlebars->35->1723"
11514 + "default.handlebars->35->1726"
11515 ]
11516 },
11517 {
@@ -11638,7 +11645,7 @@
11645 "zh-chs": "已连接的英特尔®AMT",
11646 "zh-cht": "已連接的Intel® AMT",
11647 "xloc": [
11641 - "default.handlebars->35->2472"
11648 + "default.handlebars->35->2477"
11649 ]
11650 },
11651 {
@@ -11660,7 +11667,7 @@
11667 "zh-chs": "已连接的用户",
11668 "zh-cht": "已连接的用户",
11669 "xloc": [
11663 - "default.handlebars->35->2477"
11670 + "default.handlebars->35->2482"
11671 ]
11672 },
11673 {
@@ -11682,8 +11689,8 @@
11689 "zh-chs": "现在已连接",
11690 "zh-cht": "現在已連接",
11691 "xloc": [
11685 - "default-mobile.handlebars->11->479",
11686 - "default.handlebars->35->1208"
11692 + "default-mobile.handlebars->11->482",
11693 + "default.handlebars->35->1211"
11694 ]
11695 },
11696 {
@@ -11750,9 +11757,9 @@
11757 "zh-cht": "正在連線...",
11758 "xloc": [
11759 "default-mobile.handlebars->11->2",
11753 - "default-mobile.handlebars->11->455",
11760 + "default-mobile.handlebars->11->458",
11761 "default-mobile.handlebars->11->48",
11755 - "default.handlebars->35->1199",
11762 + "default.handlebars->35->1202",
11763 "default.handlebars->35->309",
11764 "default.handlebars->35->312",
11765 "default.handlebars->35->359",
@@ -11793,7 +11800,7 @@
11800 "zh-chs": "连接数量",
11801 "zh-cht": "連接數量",
11802 "xloc": [
11796 - "default.handlebars->35->2503"
11803 + "default.handlebars->35->2508"
11804 ]
11805 },
11806 {
@@ -11808,9 +11815,9 @@
11815 "sv": "Anslutningsfel",
11816 "zh-chs": "连接错误",
11817 "xloc": [
11811 - "default-mobile.handlebars->11->418",
11812 - "default.handlebars->35->1126",
11813 - "default.handlebars->35->1148",
11818 + "default-mobile.handlebars->11->421",
11819 + "default.handlebars->35->1129",
11820 + "default.handlebars->35->1151",
11821 "login2.handlebars->7->32"
11822 ]
11823 },
@@ -11833,7 +11840,7 @@
11840 "zh-chs": "连接转发器",
11841 "zh-cht": "連接轉發器",
11842 "xloc": [
11836 - "default.handlebars->35->2538"
11843 + "default.handlebars->35->2543"
11844 ]
11845 },
11846 {
@@ -11900,7 +11907,7 @@
11907 "zh-cht": "連接性",
11908 "xloc": [
11909 "default-mobile.handlebars->11->293",
11903 - "default.handlebars->35->1869",
11910 + "default.handlebars->35->1872",
11911 "default.handlebars->35->300",
11912 "default.handlebars->35->767",
11913 "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
@@ -11925,9 +11932,9 @@
11932 "zh-chs": "控制台",
11933 "zh-cht": "控制台",
11934 "xloc": [
11928 - "default-mobile.handlebars->11->313",
11929 - "default.handlebars->35->857",
11930 - "default.handlebars->35->879",
11935 + "default-mobile.handlebars->11->314",
11936 + "default.handlebars->35->858",
11937 + "default.handlebars->35->880",
11938 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
11939 "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
11940 "default.handlebars->contextMenu->cxconsole"
@@ -11974,8 +11981,8 @@
11981 "zh-chs": "控制",
11982 "zh-cht": "控制",
11983 "xloc": [
11977 - "default.handlebars->35->856",
11978 - "default.handlebars->35->878",
11984 + "default.handlebars->35->857",
11985 + "default.handlebars->35->879",
11986 "messenger.handlebars->remoteImage->3->2"
11987 ]
11988 },
@@ -11998,7 +12005,7 @@
12005 "zh-chs": "Cookie编码器",
12006 "zh-cht": "Cookie編碼器",
12007 "xloc": [
12001 - "default.handlebars->35->2522"
12008 + "default.handlebars->35->2527"
12009 ]
12010 },
12011 {
@@ -12186,8 +12193,8 @@
12193 "zh-chs": "复制连结到剪贴板",
12194 "zh-cht": "複製連結到剪貼板",
12195 "xloc": [
12189 - "default.handlebars->35->1880",
12190 - "default.handlebars->35->1899",
12196 + "default.handlebars->35->1883",
12197 + "default.handlebars->35->1902",
12198 "default.handlebars->35->250",
12199 "default.handlebars->35->272",
12200 "default.handlebars->35->274",
@@ -12304,7 +12311,7 @@
12311 "zh-chs": "复制:“{0}”到“{1}”",
12312 "zh-cht": "複製:“{0}”到“{1}”",
12313 "xloc": [
12307 - "default.handlebars->35->1971"
12314 + "default.handlebars->35->1974"
12315 ]
12316 },
12317 {
@@ -12464,7 +12471,7 @@
12471 "zh-chs": "核心服务器",
12472 "zh-cht": "核心伺服器",
12473 "xloc": [
12467 - "default.handlebars->35->2521"
12474 + "default.handlebars->35->2526"
12475 ]
12476 },
12477 {
@@ -12486,7 +12493,7 @@
12493 "zh-chs": "科西嘉文",
12494 "zh-cht": "科西嘉文",
12495 "xloc": [
12489 - "default.handlebars->35->1376"
12496 + "default.handlebars->35->1379"
12497 ]
12498 },
12499 {
@@ -12519,7 +12526,7 @@
12526 "zh-chs": "创建帐号",
12527 "zh-cht": "創建帳號",
12528 "xloc": [
12522 - "default.handlebars->35->2148",
12529 + "default.handlebars->35->2153",
12530 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
12531 "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
12532 "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -12570,7 +12577,7 @@
12577 "sv": "Skapa inloggningstoken",
12578 "zh-chs": "创建登录令牌",
12579 "xloc": [
12573 - "default.handlebars->35->1560",
12580 + "default.handlebars->35->1563",
12581 "default.handlebars->35->275"
12582 ]
12583 },
@@ -12593,7 +12600,7 @@
12600 "zh-chs": "创建用户组",
12601 "zh-cht": "創建用戶群",
12602 "xloc": [
12596 - "default.handlebars->35->2187"
12603 + "default.handlebars->35->2192"
12604 ]
12605 },
12606 {
@@ -12615,7 +12622,7 @@
12622 "zh-chs": "创建连结以与访客共享此设备",
12623 "zh-cht": "創建鏈結以與訪客共享此裝置",
12624 "xloc": [
12618 - "default.handlebars->35->786"
12625 + "default.handlebars->35->787"
12626 ]
12627 },
12628 {
@@ -12637,7 +12644,7 @@
12644 "zh-chs": "使用以下选项创建一个新的设备组。",
12645 "zh-cht": "使用以下選項創建一個新的裝置群。",
12646 "xloc": [
12640 - "default.handlebars->35->1590"
12647 + "default.handlebars->35->1593"
12648 ]
12649 },
12650 {
@@ -12674,7 +12681,7 @@
12681 "sv": "Skapa ett tillfälligt användarnamn och lösenord som kan användas som alternativ inloggning till ditt konto. Detta är användbart för att låta verktyg eller andra tjänster komma åt ditt konto.",
12682 "zh-chs": "创建一个临时用户名和密码,可用作您帐户的替代登录名。这对于允许工具或其他服务访问您的帐户非常有用。",
12683 "xloc": [
12677 - "default.handlebars->35->1541"
12684 + "default.handlebars->35->1544"
12685 ]
12686 },
12687 {
@@ -12718,7 +12725,7 @@
12725 "zh-chs": "创建文件夹:“{0}”",
12726 "zh-cht": "創建文件夾:“{0}”",
12727 "xloc": [
12721 - "default.handlebars->35->1964"
12728 + "default.handlebars->35->1967"
12729 ]
12730 },
12731 {
@@ -12755,7 +12762,7 @@
12762 "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
12763 "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
12764 "xloc": [
12758 - "default.handlebars->35->2112"
12765 + "default.handlebars->35->2117"
12766 ]
12767 },
12768 {
@@ -12801,7 +12808,7 @@
12808 "zh-chs": "创建的设备组:{0}",
12809 "zh-cht": "創建的設備組:{0}",
12810 "xloc": [
12804 - "default.handlebars->35->1975"
12811 + "default.handlebars->35->1978"
12812 ]
12813 },
12814 {
@@ -12823,7 +12830,7 @@
12830 "zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
12831 "zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
12832 "xloc": [
12826 - "default.handlebars->35->902"
12833 + "default.handlebars->35->903"
12834 ]
12835 },
12836 {
@@ -12883,7 +12890,7 @@
12890 "zh-chs": "创建",
12891 "zh-cht": "創建",
12892 "xloc": [
12886 - "default.handlebars->35->2273"
12893 + "default.handlebars->35->2278"
12894 ]
12895 },
12896 {
@@ -12905,7 +12912,7 @@
12912 "zh-chs": "创建时间",
12913 "zh-cht": "創作時間",
12914 "xloc": [
12908 - "default.handlebars->35->1649"
12915 + "default.handlebars->35->1652"
12916 ]
12917 },
12918 {
@@ -12951,8 +12958,8 @@
12958 "zh-chs": "创建者",
12959 "zh-cht": "創作者",
12960 "xloc": [
12954 - "default.handlebars->35->1647",
12955 - "default.handlebars->35->1648"
12961 + "default.handlebars->35->1650",
12962 + "default.handlebars->35->1651"
12963 ]
12964 },
12965 {
@@ -12974,11 +12981,9 @@
12981 "zh-chs": "证书",
12982 "zh-cht": "證書",
12983 "xloc": [
12977 - "default-mobile.handlebars->11->297",
12978 - "default-mobile.handlebars->11->299",
12979 - "default.handlebars->35->1618",
12980 - "default.handlebars->35->771",
12981 - "default.handlebars->35->773"
12984 + "default-mobile.handlebars->11->301",
12985 + "default.handlebars->35->1621",
12986 + "default.handlebars->35->775"
12987 ]
12988 },
12989 {
@@ -13000,7 +13005,7 @@
13005 "zh-chs": "克里语",
13006 "zh-cht": "克里語",
13007 "xloc": [
13003 - "default.handlebars->35->1377"
13008 + "default.handlebars->35->1380"
13009 ]
13010 },
13011 {
@@ -13022,7 +13027,7 @@
13027 "zh-chs": "克罗地亚文",
13028 "zh-cht": "克羅地亞文",
13029 "xloc": [
13025 - "default.handlebars->35->1378"
13030 + "default.handlebars->35->1381"
13031 ]
13032 },
13033 {
@@ -13090,10 +13095,10 @@
13095 "zh-chs": "Ctrl",
13096 "zh-cht": "Ctrl",
13097 "xloc": [
13093 - "default-mobile.handlebars->11->387",
13094 - "default-mobile.handlebars->11->391",
13095 - "default.handlebars->35->1081",
13096 - "default.handlebars->35->1085",
13098 + "default-mobile.handlebars->11->390",
13099 + "default-mobile.handlebars->11->394",
13100 + "default.handlebars->35->1084",
13101 + "default.handlebars->35->1088",
13102 "default.handlebars->35->57",
13103 "sharing.handlebars->11->24"
13104 ]
@@ -13110,7 +13115,7 @@
13115 "sv": "Ctrl +",
13116 "zh-chs": "Ctrl +",
13117 "xloc": [
13113 - "default-mobile.handlebars->11->409"
13118 + "default-mobile.handlebars->11->412"
13119 ]
13120 },
13121 {
@@ -13235,8 +13240,8 @@
13240 "sv": "Nuvarande lösenord är inte korrekt.",
13241 "zh-chs": "当前密码不正确。",
13242 "xloc": [
13238 - "default-mobile.handlebars->11->664",
13239 - "default.handlebars->35->2446"
13243 + "default-mobile.handlebars->11->667",
13244 + "default.handlebars->35->2451"
13245 ]
13246 },
13247 {
@@ -13251,7 +13256,7 @@
13256 "sv": "Anpassa",
13257 "zh-chs": "定制",
13258 "xloc": [
13254 - "default-mobile.handlebars->11->368"
13259 + "default-mobile.handlebars->11->371"
13260 ]
13261 },
13262 {
@@ -13314,7 +13319,7 @@
13319 "zh-chs": "捷克文",
13320 "zh-cht": "捷克文",
13321 "xloc": [
13317 - "default.handlebars->35->1379"
13322 + "default.handlebars->35->1382"
13323 ]
13324 },
13325 {
@@ -13358,7 +13363,7 @@
13363 "zh-chs": "丹麦文",
13364 "zh-cht": "丹麥文",
13365 "xloc": [
13361 - "default.handlebars->35->1380"
13366 + "default.handlebars->35->1383"
13367 ]
13368 },
13369 {
@@ -13396,7 +13401,7 @@
13401 "zh-chs": "数据通道",
13402 "zh-cht": "數據通道",
13403 "xloc": [
13399 - "default.handlebars->35->1049",
13404 + "default.handlebars->35->1052",
13405 "sharing.handlebars->11->11"
13406 ]
13407 },
@@ -13419,7 +13424,7 @@
13424 "zh-chs": "日期和时间",
13425 "zh-cht": "日期和時間",
13426 "xloc": [
13422 - "default.handlebars->35->1538"
13427 + "default.handlebars->35->1541"
13428 ]
13429 },
13430 {
@@ -13441,8 +13446,8 @@
13446 "zh-chs": "天",
13447 "zh-cht": "天",
13448 "xloc": [
13444 - "default-mobile.handlebars->11->341",
13445 - "default.handlebars->35->973"
13449 + "default-mobile.handlebars->11->342",
13450 + "default.handlebars->35->974"
13451 ]
13452 },
13453 {
@@ -13464,7 +13469,7 @@
13469 "zh-chs": "停用",
13470 "zh-cht": "停用",
13471 "xloc": [
13467 - "default.handlebars->35->1702"
13472 + "default.handlebars->35->1705"
13473 ]
13474 },
13475 {
@@ -13486,7 +13491,7 @@
13491 "zh-chs": "如果设置停用CCM",
13492 "zh-cht": "如果設置停用CCM",
13493 "xloc": [
13489 - "default.handlebars->35->1714"
13494 + "default.handlebars->35->1717"
13495 ]
13496 },
13497 {
@@ -13550,10 +13555,10 @@
13555 "zh-chs": "默认",
13556 "zh-cht": "默認",
13557 "xloc": [
13553 - "default.handlebars->35->2135",
13554 - "default.handlebars->35->2183",
13555 - "default.handlebars->35->2194",
13556 - "default.handlebars->35->2262"
13558 + "default.handlebars->35->2140",
13559 + "default.handlebars->35->2188",
13560 + "default.handlebars->35->2199",
13561 + "default.handlebars->35->2267"
13562 ]
13563 },
13564 {
@@ -13568,8 +13573,8 @@
13573 "sv": "Del",
13574 "zh-chs": "德尔",
13575 "xloc": [
13571 - "default-mobile.handlebars->11->375",
13572 - "default.handlebars->35->1069"
13576 + "default-mobile.handlebars->11->378",
13577 + "default.handlebars->35->1072"
13578 ]
13579 },
13580 {
@@ -13592,12 +13597,12 @@
13597 "zh-cht": "刪除",
13598 "xloc": [
13599 "default-mobile.handlebars->11->146",
13595 - "default-mobile.handlebars->11->429",
13600 + "default-mobile.handlebars->11->432",
13601 "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
13602 "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
13603 "default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
13599 - "default.handlebars->35->1167",
13600 - "default.handlebars->35->1906",
13604 + "default.handlebars->35->1170",
13605 + "default.handlebars->35->1909",
13606 "default.handlebars->35->649",
13607 "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
13608 "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -13631,7 +13636,7 @@
13636 "zh-cht": "刪除帳戶",
13637 "xloc": [
13638 "default-mobile.handlebars->11->108",
13634 - "default.handlebars->35->1575"
13639 + "default.handlebars->35->1578"
13640 ]
13641 },
13642 {
@@ -13653,7 +13658,7 @@
13658 "zh-chs": "删除帐户",
13659 "zh-cht": "刪除帳戶",
13660 "xloc": [
13656 - "default.handlebars->35->2102"
13661 + "default.handlebars->35->2107"
13662 ]
13663 },
13664 {
@@ -13675,8 +13680,8 @@
13680 "zh-chs": "删除设备",
13681 "zh-cht": "刪除裝置",
13682 "xloc": [
13678 - "default-mobile.handlebars->11->302",
13679 - "default.handlebars->35->790"
13683 + "default-mobile.handlebars->11->303",
13684 + "default.handlebars->35->791"
13685 ]
13686 },
13687 {
@@ -13698,11 +13703,11 @@
13703 "zh-chs": "删除群组",
13704 "zh-cht": "刪除群組",
13705 "xloc": [
13701 - "default-mobile.handlebars->11->576",
13706 "default-mobile.handlebars->11->579",
13703 - "default.handlebars->35->1697",
13704 - "default.handlebars->35->1698",
13705 - "default.handlebars->35->1731"
13707 + "default-mobile.handlebars->11->582",
13708 + "default.handlebars->35->1700",
13709 + "default.handlebars->35->1701",
13710 + "default.handlebars->35->1734"
13711 ]
13712 },
13713 {
@@ -13724,8 +13729,8 @@
13729 "zh-chs": "删除节点",
13730 "zh-cht": "刪除節點",
13731 "xloc": [
13727 - "default-mobile.handlebars->11->349",
13728 - "default.handlebars->35->999"
13732 + "default-mobile.handlebars->11->350",
13733 + "default.handlebars->35->1000"
13734 ]
13735 },
13736 {
@@ -13769,7 +13774,7 @@
13774 "zh-chs": "删除用户",
13775 "zh-cht": "刪除用戶",
13776 "xloc": [
13772 - "default.handlebars->35->2314"
13777 + "default.handlebars->35->2319"
13778 ]
13779 },
13780 {
@@ -13791,8 +13796,8 @@
13796 "zh-chs": "删除用户群组",
13797 "zh-cht": "刪除用戶群組",
13798 "xloc": [
13794 - "default.handlebars->35->2232",
13795 - "default.handlebars->35->2242"
13799 + "default.handlebars->35->2237",
13800 + "default.handlebars->35->2247"
13801 ]
13802 },
13803 {
@@ -13814,7 +13819,7 @@
13819 "zh-chs": "删除用户群组",
13820 "zh-cht": "刪除用戶群組",
13821 "xloc": [
13817 - "default.handlebars->35->2181"
13822 + "default.handlebars->35->2186"
13823 ]
13824 },
13825 {
@@ -13836,7 +13841,7 @@
13841 "zh-chs": "删除用户{0}",
13842 "zh-cht": "刪除用戶{0}",
13843 "xloc": [
13839 - "default.handlebars->35->2341"
13844 + "default.handlebars->35->2346"
13845 ]
13846 },
13847 {
@@ -13859,7 +13864,7 @@
13864 "zh-cht": "刪除帳戶",
13865 "xloc": [
13866 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->9->0",
13862 - "default.handlebars->35->2098",
13867 + "default.handlebars->35->2103",
13868 "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
13869 ]
13870 },
@@ -13904,7 +13909,7 @@
13909 "zh-chs": "删除群组",
13910 "zh-cht": "刪除群組",
13911 "xloc": [
13907 - "default.handlebars->35->2177"
13912 + "default.handlebars->35->2182"
13913 ]
13914 },
13915 {
@@ -13948,7 +13953,7 @@
13953 "zh-chs": "递归删除:“{0}”,{1}个元素已删除",
13954 "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
13955 "xloc": [
13951 - "default.handlebars->35->1966"
13956 + "default.handlebars->35->1969"
13957 ]
13958 },
13959 {
@@ -13971,9 +13976,9 @@
13976 "zh-cht": "刪除所選項目?",
13977 "xloc": [
13978 "default-mobile.handlebars->11->148",
13974 - "default-mobile.handlebars->11->431",
13975 - "default.handlebars->35->1169",
13976 - "default.handlebars->35->1908",
13979 + "default-mobile.handlebars->11->434",
13980 + "default.handlebars->35->1172",
13981 + "default.handlebars->35->1911",
13982 "sharing.handlebars->11->63"
13983 ]
13984 },
@@ -13996,7 +14001,7 @@
14001 "zh-chs": "删除用户群组{0}?",
14002 "zh-cht": "刪除用戶群組{0}?",
14003 "xloc": [
13999 - "default.handlebars->35->2240"
14004 + "default.handlebars->35->2245"
14005 ]
14006 },
14007 {
@@ -14019,9 +14024,9 @@
14024 "zh-cht": "刪除{0}個所選項目?",
14025 "xloc": [
14026 "default-mobile.handlebars->11->147",
14022 - "default-mobile.handlebars->11->430",
14023 - "default.handlebars->35->1168",
14024 - "default.handlebars->35->1907",
14027 + "default-mobile.handlebars->11->433",
14028 + "default.handlebars->35->1171",
14029 + "default.handlebars->35->1910",
14030 "sharing.handlebars->11->62"
14031 ]
14032 },
@@ -14044,7 +14049,7 @@
14049 "zh-chs": "删除{0}?",
14050 "zh-cht": "刪除{0}?",
14051 "xloc": [
14047 - "default-mobile.handlebars->11->350"
14052 + "default-mobile.handlebars->11->351"
14053 ]
14054 },
14055 {
@@ -14066,7 +14071,7 @@
14071 "zh-chs": "删除:“{0}”",
14072 "zh-cht": "刪除:“{0}”",
14073 "xloc": [
14069 - "default.handlebars->35->1965"
14074 + "default.handlebars->35->1968"
14075 ]
14076 },
14077 {
@@ -14088,7 +14093,7 @@
14093 "zh-chs": "删除:“{0}”,{1}个元素已删除",
14094 "zh-cht": "刪除:“{0}”,已刪除{1}個元素",
14095 "xloc": [
14091 - "default.handlebars->35->1967"
14096 + "default.handlebars->35->1970"
14097 ]
14098 },
14099 {
@@ -14110,8 +14115,8 @@
14115 "zh-chs": "被拒绝",
14116 "zh-cht": "被拒絕",
14117 "xloc": [
14113 - "default-mobile.handlebars->11->362",
14114 - "default.handlebars->35->1044",
14118 + "default-mobile.handlebars->11->365",
14119 + "default.handlebars->35->1047",
14120 "sharing.handlebars->11->29",
14121 "sharing.handlebars->11->7"
14122 ]
@@ -14227,21 +14232,21 @@
14232 "default-mobile.handlebars->11->125",
14233 "default-mobile.handlebars->11->257",
14234 "default-mobile.handlebars->11->258",
14230 - "default-mobile.handlebars->11->357",
14231 - "default-mobile.handlebars->11->492",
14232 - "default-mobile.handlebars->11->567",
14233 - "default-mobile.handlebars->11->581",
14234 - "default.handlebars->35->1039",
14235 + "default-mobile.handlebars->11->360",
14236 + "default-mobile.handlebars->11->495",
14237 + "default-mobile.handlebars->11->570",
14238 + "default-mobile.handlebars->11->584",
14239 + "default.handlebars->35->1042",
14240 "default.handlebars->35->122",
14236 - "default.handlebars->35->1221",
14237 - "default.handlebars->35->1231",
14238 - "default.handlebars->35->1596",
14239 - "default.handlebars->35->1644",
14240 - "default.handlebars->35->1733",
14241 - "default.handlebars->35->2186",
14242 - "default.handlebars->35->2196",
14243 - "default.handlebars->35->2197",
14244 - "default.handlebars->35->2238",
14241 + "default.handlebars->35->1224",
14242 + "default.handlebars->35->1234",
14243 + "default.handlebars->35->1599",
14244 + "default.handlebars->35->1647",
14245 + "default.handlebars->35->1736",
14246 + "default.handlebars->35->2191",
14247 + "default.handlebars->35->2201",
14248 + "default.handlebars->35->2202",
14249 + "default.handlebars->35->2243",
14250 "default.handlebars->35->690",
14251 "default.handlebars->35->691",
14252 "default.handlebars->container->column_l->p42->p42tbl->1->0->3"
@@ -14285,14 +14290,14 @@
14290 "zh-chs": "桌面",
14291 "zh-cht": "桌面",
14292 "xloc": [
14288 - "default-mobile.handlebars->11->309",
14289 - "default.handlebars->35->1113",
14290 - "default.handlebars->35->1739",
14291 - "default.handlebars->35->2396",
14292 - "default.handlebars->35->2497",
14293 + "default-mobile.handlebars->11->310",
14294 + "default.handlebars->35->1116",
14295 + "default.handlebars->35->1742",
14296 + "default.handlebars->35->2401",
14297 + "default.handlebars->35->2502",
14298 "default.handlebars->35->655",
14294 - "default.handlebars->35->837",
14295 - "default.handlebars->35->904",
14299 + "default.handlebars->35->838",
14300 + "default.handlebars->35->905",
14301 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
14302 "default.handlebars->contextMenu->cxdesktop",
14303 "sharing.handlebars->11->23",
@@ -14311,8 +14316,8 @@
14316 "sv": "Desktop + Files",
14317 "zh-chs": "桌面 + 文件",
14318 "xloc": [
14314 - "default.handlebars->35->841",
14315 - "default.handlebars->35->907"
14319 + "default.handlebars->35->842",
14320 + "default.handlebars->35->908"
14321 ]
14322 },
14323 {
@@ -14327,7 +14332,7 @@
14332 "sv": "Desktop + Terminal",
14333 "zh-chs": "桌面 + 终端",
14334 "xloc": [
14330 - "default.handlebars->35->838"
14335 + "default.handlebars->35->839"
14336 ]
14337 },
14338 {
@@ -14342,8 +14347,8 @@
14347 "sv": "Desktop + Terminal + Files",
14348 "zh-chs": "桌面 + 终端 + 文件",
14349 "xloc": [
14345 - "default.handlebars->35->842",
14346 - "default.handlebars->35->909"
14350 + "default.handlebars->35->843",
14351 + "default.handlebars->35->910"
14352 ]
14353 },
14354 {
@@ -14379,7 +14384,7 @@
14384 "sv": "Desktop Multiplex",
14385 "zh-chs": "桌面复用",
14386 "xloc": [
14382 - "default.handlebars->35->2502"
14387 + "default.handlebars->35->2507"
14388 ]
14389 },
14390 {
@@ -14401,9 +14406,9 @@
14406 "zh-chs": "桌面通知",
14407 "zh-cht": "桌面通知",
14408 "xloc": [
14404 - "default.handlebars->35->1658",
14405 - "default.handlebars->35->2201",
14406 - "default.handlebars->35->2288",
14409 + "default.handlebars->35->1661",
14410 + "default.handlebars->35->2206",
14411 + "default.handlebars->35->2293",
14412 "default.handlebars->35->748"
14413 ]
14414 },
@@ -14426,9 +14431,9 @@
14431 "zh-chs": "桌面提示",
14432 "zh-cht": "桌面提示",
14433 "xloc": [
14429 - "default.handlebars->35->1657",
14430 - "default.handlebars->35->2200",
14431 - "default.handlebars->35->2287",
14434 + "default.handlebars->35->1660",
14435 + "default.handlebars->35->2205",
14436 + "default.handlebars->35->2292",
14437 "default.handlebars->35->747"
14438 ]
14439 },
@@ -14451,9 +14456,9 @@
14456 "zh-chs": "桌面提示+工具栏",
14457 "zh-cht": "桌面提示+工具欄",
14458 "xloc": [
14454 - "default.handlebars->35->1655",
14455 - "default.handlebars->35->2198",
14456 - "default.handlebars->35->2285",
14459 + "default.handlebars->35->1658",
14460 + "default.handlebars->35->2203",
14461 + "default.handlebars->35->2290",
14462 "default.handlebars->35->745"
14463 ]
14464 },
@@ -14469,7 +14474,7 @@
14474 "sv": "Skrivbordssession",
14475 "zh-chs": "桌面会话",
14476 "xloc": [
14472 - "default.handlebars->35->2389"
14477 + "default.handlebars->35->2394"
14478 ]
14479 },
14480 {
@@ -14548,9 +14553,9 @@
14553 "zh-chs": "桌面工具栏",
14554 "zh-cht": "桌面工具欄",
14555 "xloc": [
14551 - "default.handlebars->35->1656",
14552 - "default.handlebars->35->2199",
14553 - "default.handlebars->35->2286",
14556 + "default.handlebars->35->1659",
14557 + "default.handlebars->35->2204",
14558 + "default.handlebars->35->2291",
14559 "default.handlebars->35->746"
14560 ]
14561 },
@@ -14566,7 +14571,7 @@
14571 "sv": "Skrivbord, endast visa",
14572 "zh-chs": "桌面,仅查看",
14573 "xloc": [
14569 - "default.handlebars->35->910"
14574 + "default.handlebars->35->911"
14575 ]
14576 },
14577 {
@@ -14588,7 +14593,7 @@
14593 "zh-chs": "桌面时段",
14594 "zh-cht": "桌面時段",
14595 "xloc": [
14591 - "default.handlebars->35->1112"
14596 + "default.handlebars->35->1115"
14597 ]
14598 },
14599 {
@@ -14649,7 +14654,7 @@
14654 "zh-chs": "细节",
14655 "zh-cht": "細節",
14656 "xloc": [
14652 - "default-mobile.handlebars->11->312",
14657 + "default-mobile.handlebars->11->313",
14658 "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
14659 "default.handlebars->contextMenu->cxdetails"
14660 ]
@@ -14695,12 +14700,12 @@
14700 "zh-chs": "设备",
14701 "zh-cht": "裝置",
14702 "xloc": [
14698 - "default-mobile.handlebars->11->487",
14699 - "default.handlebars->35->1216",
14700 - "default.handlebars->35->1324",
14701 - "default.handlebars->35->1762",
14703 + "default-mobile.handlebars->11->490",
14704 + "default.handlebars->35->1219",
14705 + "default.handlebars->35->1327",
14706 + "default.handlebars->35->1765",
14707 "default.handlebars->35->231",
14703 - "default.handlebars->35->2360",
14708 + "default.handlebars->35->2365",
14709 "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
14710 ]
14711 },
@@ -14723,9 +14728,9 @@
14728 "zh-chs": "设备指令",
14729 "zh-cht": "裝置指令",
14730 "xloc": [
14726 - "default-mobile.handlebars->11->330",
14727 - "default-mobile.handlebars->11->339",
14728 - "default.handlebars->35->956"
14731 + "default-mobile.handlebars->11->331",
14732 + "default-mobile.handlebars->11->340",
14733 + "default.handlebars->35->957"
14734 ]
14735 },
14736 {
@@ -14785,16 +14790,16 @@
14790 "zh-cht": "裝置群",
14791 "xloc": [
14792 "agent-translations.json",
14788 - "default-mobile.handlebars->11->642",
14789 - "default.handlebars->35->1757",
14793 + "default-mobile.handlebars->11->645",
14794 "default.handlebars->35->1760",
14791 - "default.handlebars->35->1761",
14792 - "default.handlebars->35->2049",
14793 - "default.handlebars->35->2224",
14794 - "default.handlebars->35->2230",
14795 - "default.handlebars->35->2348",
14796 - "default.handlebars->35->2405",
14797 - "default.handlebars->35->2424"
14795 + "default.handlebars->35->1763",
14796 + "default.handlebars->35->1764",
14797 + "default.handlebars->35->2054",
14798 + "default.handlebars->35->2229",
14799 + "default.handlebars->35->2235",
14800 + "default.handlebars->35->2353",
14801 + "default.handlebars->35->2410",
14802 + "default.handlebars->35->2429"
14803 ]
14804 },
14805 {
@@ -14816,8 +14821,8 @@
14821 "zh-chs": "设备组用户",
14822 "zh-cht": "裝置群用戶",
14823 "xloc": [
14819 - "default-mobile.handlebars->11->631",
14820 - "default.handlebars->35->1827"
14824 + "default-mobile.handlebars->11->634",
14825 + "default.handlebars->35->1830"
14826 ]
14827 },
14828 {
@@ -14840,11 +14845,11 @@
14845 "zh-cht": "裝置群",
14846 "xloc": [
14847 "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
14843 - "default.handlebars->35->2065",
14844 - "default.handlebars->35->2171",
14845 - "default.handlebars->35->2211",
14846 - "default.handlebars->35->2282",
14847 - "default.handlebars->35->2475",
14848 + "default.handlebars->35->2070",
14849 + "default.handlebars->35->2176",
14850 + "default.handlebars->35->2216",
14851 + "default.handlebars->35->2287",
14852 + "default.handlebars->35->2480",
14853 "default.handlebars->container->column_l->p2->p2info->9"
14854 ]
14855 },
@@ -14889,7 +14894,7 @@
14894 "zh-chs": "设备位置",
14895 "zh-cht": "裝置位置",
14896 "xloc": [
14892 - "default.handlebars->35->1000"
14897 + "default.handlebars->35->1001"
14898 ]
14899 },
14900 {
@@ -14911,7 +14916,7 @@
14916 "zh-chs": "设备消息",
14917 "zh-cht": "裝置訊息",
14918 "xloc": [
14914 - "default.handlebars->35->894"
14919 + "default.handlebars->35->895"
14920 ]
14921 },
14922 {
@@ -14933,9 +14938,9 @@
14938 "zh-chs": "设备名称",
14939 "zh-cht": "裝置名稱",
14940 "xloc": [
14936 - "default-mobile.handlebars->11->355",
14937 - "default.handlebars->35->1037",
14938 - "default.handlebars->35->2404",
14941 + "default-mobile.handlebars->11->358",
14942 + "default.handlebars->35->1040",
14943 + "default.handlebars->35->2409",
14944 "default.handlebars->35->375",
14945 "default.handlebars->35->384",
14946 "player.handlebars->3->9"
@@ -14961,7 +14966,7 @@
14966 "zh-cht": "裝置通知",
14967 "xloc": [
14968 "default.handlebars->35->593",
14964 - "default.handlebars->35->899"
14969 + "default.handlebars->35->900"
14970 ]
14971 },
14972 {
@@ -14976,7 +14981,7 @@
14981 "sv": "Parningslänk för enhet",
14982 "zh-chs": "设备配对链接",
14983 "xloc": [
14979 - "default-mobile.handlebars->11->585"
14984 + "default-mobile.handlebars->11->588"
14985 ]
14986 },
14987 {
@@ -15028,7 +15033,7 @@
15033 "zh-chs": "设备共享链接",
15034 "zh-cht": "設備共享鏈接",
15035 "xloc": [
15031 - "default.handlebars->35->834"
15036 + "default.handlebars->35->835"
15037 ]
15038 },
15039 {
@@ -15061,7 +15066,7 @@
15066 "zh-chs": "设备提示",
15067 "zh-cht": "裝置吐司",
15068 "xloc": [
15064 - "default-mobile.handlebars->11->307"
15069 + "default-mobile.handlebars->11->308"
15070 ]
15071 },
15072 {
@@ -15117,8 +15122,8 @@
15122 "zh-chs": "设备连接。",
15123 "zh-cht": "裝置連接。",
15124 "xloc": [
15120 - "default.handlebars->35->1563",
15121 - "default.handlebars->35->1848"
15125 + "default.handlebars->35->1566",
15126 + "default.handlebars->35->1851"
15127 ]
15128 },
15129 {
@@ -15140,8 +15145,8 @@
15145 "zh-chs": "设备断开连接。",
15146 "zh-cht": "裝置斷開連接。",
15147 "xloc": [
15143 - "default.handlebars->35->1564",
15144 - "default.handlebars->35->1849"
15148 + "default.handlebars->35->1567",
15149 + "default.handlebars->35->1852"
15150 ]
15151 },
15152 {
@@ -15163,7 +15168,7 @@
15168 "zh-chs": "创建的设备组:{0}",
15169 "zh-cht": "設備組已創建:{0}",
15170 "xloc": [
15166 - "default.handlebars->35->1996"
15171 + "default.handlebars->35->1999"
15172 ]
15173 },
15174 {
@@ -15185,7 +15190,7 @@
15190 "zh-chs": "设备组已删除:{0}",
15191 "zh-cht": "設備組已刪除:{0}",
15192 "xloc": [
15188 - "default.handlebars->35->1997"
15193 + "default.handlebars->35->2000"
15194 ]
15195 },
15196 {
@@ -15207,7 +15212,7 @@
15212 "zh-chs": "设备组成员身份已更改:{0}",
15213 "zh-cht": "設備組成員身份已更改:{0}",
15214 "xloc": [
15210 - "default.handlebars->35->1998"
15215 + "default.handlebars->35->2001"
15216 ]
15217 },
15218 {
@@ -15229,8 +15234,8 @@
15234 "zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
15235 "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
15236 "xloc": [
15232 - "default-mobile.handlebars->11->337",
15233 - "default.handlebars->35->891"
15237 + "default-mobile.handlebars->11->338",
15238 + "default.handlebars->35->892"
15239 ]
15240 },
15241 {
@@ -15252,7 +15257,7 @@
15257 "zh-chs": "设备组通知已更改",
15258 "zh-cht": "設備組通知已更改",
15259 "xloc": [
15255 - "default.handlebars->35->1993"
15260 + "default.handlebars->35->1996"
15261 ]
15262 },
15263 {
@@ -15274,7 +15279,7 @@
15279 "zh-chs": "未删除的设备组:{0}",
15280 "zh-cht": "未刪除的設備組:{0}",
15281 "xloc": [
15277 - "default.handlebars->35->1976"
15282 + "default.handlebars->35->1979"
15283 ]
15284 },
15285 {
@@ -15698,7 +15703,7 @@
15703 "sv": "Enhet begärde Intel (R) AMT ACM TLS-aktivering, FQDN: {0}",
15704 "zh-chs": "设备请求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
15705 "xloc": [
15701 - "default.handlebars->35->2031"
15706 + "default.handlebars->35->2034"
15707 ]
15708 },
15709 {
@@ -15720,7 +15725,7 @@
15725 "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
15726 "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
15727 "xloc": [
15723 - "default.handlebars->35->1978"
15728 + "default.handlebars->35->1981"
15729 ]
15730 },
15731 {
@@ -15761,9 +15766,9 @@
15766 "zh-chs": "设备",
15767 "zh-cht": "裝置",
15768 "xloc": [
15764 - "default.handlebars->35->1696",
15765 - "default.handlebars->35->2172",
15766 - "default.handlebars->35->2212"
15769 + "default.handlebars->35->1699",
15770 + "default.handlebars->35->2177",
15771 + "default.handlebars->35->2217"
15772 ]
15773 },
15774 {
@@ -15796,7 +15801,7 @@
15801 "zh-chs": "已禁用",
15802 "zh-cht": "已禁用",
15803 "xloc": [
15799 - "default-mobile.handlebars->11->472",
15804 + "default-mobile.handlebars->11->475",
15805 "default.handlebars->35->741",
15806 "default.handlebars->35->95"
15807 ]
@@ -15820,7 +15825,7 @@
15825 "zh-chs": "禁用的电子邮件两因素身份验证",
15826 "zh-cht": "禁用的電子郵件兩因素身份驗證",
15827 "xloc": [
15823 - "default.handlebars->35->2009"
15828 + "default.handlebars->35->2012"
15829 ]
15830 },
15831 {
@@ -15843,11 +15848,11 @@
15848 "zh-cht": "斷線",
15849 "xloc": [
15850 "agent-translations.json",
15846 - "default-mobile.handlebars->11->411",
15851 + "default-mobile.handlebars->11->414",
15852 "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
15853 "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
15849 - "default.handlebars->35->1140",
15850 - "default.handlebars->35->1668",
15854 + "default.handlebars->35->1143",
15855 + "default.handlebars->35->1671",
15856 "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
15857 "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
15858 "sharing.handlebars->11->43",
@@ -15963,7 +15968,7 @@
15968 "zh-chs": "在远程设备上显示一个消息框。",
15969 "zh-cht": "在遠程裝置上顯示一個訊息框。",
15970 "xloc": [
15966 - "default.handlebars->35->895"
15971 + "default.handlebars->35->896"
15972 ]
15973 },
15974 {
@@ -16007,7 +16012,7 @@
16012 "zh-chs": "在远程设备上显示短信",
16013 "zh-cht": "在遠程裝置上顯示短信",
16014 "xloc": [
16010 - "default.handlebars->35->782"
16015 + "default.handlebars->35->783"
16016 ]
16017 },
16018 {
@@ -16040,7 +16045,7 @@
16045 "zh-chs": "显示设备组名称",
16046 "zh-cht": "顯示裝置群名稱",
16047 "xloc": [
16043 - "default.handlebars->35->1562"
16048 + "default.handlebars->35->1565"
16049 ]
16050 },
16051 {
@@ -16062,7 +16067,7 @@
16067 "zh-chs": "显示名称",
16068 "zh-cht": "顯示名稱",
16069 "xloc": [
16065 - "default.handlebars->35->1098"
16070 + "default.handlebars->35->1101"
16071 ]
16072 },
16073 {
@@ -16084,7 +16089,7 @@
16089 "zh-chs": "显示公共连结",
16090 "zh-cht": "顯示公共鏈結",
16091 "xloc": [
16087 - "default.handlebars->35->1879"
16092 + "default.handlebars->35->1882"
16093 ]
16094 },
16095 {
@@ -16099,7 +16104,7 @@
16104 "sv": "Visa {0}",
16105 "zh-chs": "显示{0}",
16106 "xloc": [
16102 - "default.handlebars->35->1115"
16107 + "default.handlebars->35->1118"
16108 ]
16109 },
16110 {
@@ -16121,7 +16126,7 @@
16126 "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
16127 "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
16128 "xloc": [
16124 - "default.handlebars->35->1938"
16129 + "default.handlebars->35->1941"
16130 ]
16131 },
16132 {
@@ -16143,7 +16148,7 @@
16148 "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
16149 "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
16150 "xloc": [
16146 - "default.handlebars->35->1946"
16151 + "default.handlebars->35->1949"
16152 ]
16153 },
16154 {
@@ -16165,8 +16170,8 @@
16170 "zh-chs": "什么都不做",
16171 "zh-cht": "什麼都不做",
16172 "xloc": [
16168 - "default.handlebars->35->1717",
16169 - "default.handlebars->35->1721"
16173 + "default.handlebars->35->1720",
16174 + "default.handlebars->35->1724"
16175 ]
16176 },
16177 {
@@ -16188,13 +16193,13 @@
16193 "zh-chs": "域",
16194 "zh-cht": "域",
16195 "xloc": [
16191 - "default.handlebars->35->2136",
16192 - "default.handlebars->35->2184",
16193 - "default.handlebars->35->2193",
16194 - "default.handlebars->35->2261",
16196 + "default.handlebars->35->2141",
16197 + "default.handlebars->35->2189",
16198 + "default.handlebars->35->2198",
16199 + "default.handlebars->35->2266",
16200 "default.handlebars->35->91",
16196 - "mstsc.handlebars->main->1->3->1->2->1->0",
16197 - "mstsc.handlebars->main->1->3->1->2->3"
16201 + "mstsc.handlebars->main->1->3->1->rowdomain->1->0",
16202 + "mstsc.handlebars->main->1->3->1->rowdomain->3"
16203 ]
16204 },
16205 {
@@ -16227,7 +16232,7 @@
16232 "zh-chs": "请勿更改,如果设置请保留CCM",
16233 "zh-cht": "請勿更改,如果設置請保留CCM",
16234 "xloc": [
16230 - "default.handlebars->35->1713"
16235 + "default.handlebars->35->1716"
16236 ]
16237 },
16238 {
@@ -16268,7 +16273,7 @@
16273 "zh-chs": "不要连接到服务器",
16274 "zh-cht": "不要連接到伺服器",
16275 "xloc": [
16271 - "default.handlebars->35->1722"
16276 + "default.handlebars->35->1725"
16277 ]
16278 },
16279 {
@@ -16356,8 +16361,8 @@
16361 "sv": "Ner",
16362 "zh-chs": "下",
16363 "xloc": [
16359 - "default-mobile.handlebars->11->383",
16360 - "default.handlebars->35->1077"
16364 + "default-mobile.handlebars->11->386",
16365 + "default.handlebars->35->1080"
16366 ]
16367 },
16368 {
@@ -16441,8 +16446,8 @@
16446 "zh-chs": "下载档案",
16447 "zh-cht": "下載檔案",
16448 "xloc": [
16444 - "default-mobile.handlebars->11->450",
16445 - "default.handlebars->35->1188",
16449 + "default-mobile.handlebars->11->453",
16450 + "default.handlebars->35->1191",
16451 "sharing.handlebars->11->82"
16452 ]
16453 },
@@ -16487,7 +16492,7 @@
16492 "zh-chs": "下载MeshCmd",
16493 "zh-cht": "下載MeshCmd",
16494 "xloc": [
16490 - "default.handlebars->35->1025"
16495 + "default.handlebars->35->1026"
16496 ]
16497 },
16498 {
@@ -16553,7 +16558,7 @@
16558 "zh-chs": "下载报告",
16559 "zh-cht": "下載報告",
16560 "xloc": [
16556 - "default.handlebars->35->2054",
16561 + "default.handlebars->35->2059",
16562 "default.handlebars->container->column_l->p3->3->1->0->3"
16563 ]
16564 },
@@ -16576,7 +16581,7 @@
16581 "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
16582 "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
16583 "xloc": [
16579 - "default.handlebars->35->1018"
16584 + "default.handlebars->35->1019"
16585 ]
16586 },
16587 {
@@ -16664,7 +16669,7 @@
16669 "zh-chs": "下载电源事件",
16670 "zh-cht": "下載電源事件",
16671 "xloc": [
16667 - "default.handlebars->35->974"
16672 + "default.handlebars->35->975"
16673 ]
16674 },
16675 {
@@ -16789,7 +16794,7 @@
16794 "zh-chs": "使用以下一种档案格式下载事件列表。",
16795 "zh-cht": "使用以下一種檔案格式下載事件列表。",
16796 "xloc": [
16792 - "default.handlebars->35->2055"
16797 + "default.handlebars->35->2060"
16798 ]
16799 },
16800 {
@@ -16811,7 +16816,7 @@
16816 "zh-chs": "使用以下一种档案格式下载用户列表。",
16817 "zh-cht": "使用以下一種檔案格式下載用戶列表。",
16818 "xloc": [
16814 - "default.handlebars->35->2120"
16819 + "default.handlebars->35->2125"
16820 ]
16821 },
16822 {
@@ -16900,7 +16905,7 @@
16905 "zh-chs": "下载:“{0}”",
16906 "zh-cht": "下載:“{0}”",
16907 "xloc": [
16903 - "default.handlebars->35->1969"
16908 + "default.handlebars->35->1972"
16909 ]
16910 },
16911 {
@@ -16915,7 +16920,7 @@
16920 "sv": "Hämta: \\\"{0}\\\", Storlek: {1}",
16921 "zh-chs": "下载:\\\"{0}\\\",大小:{1}",
16922 "xloc": [
16918 - "default.handlebars->35->2026"
16923 + "default.handlebars->35->2029"
16924 ]
16925 },
16926 {
@@ -16959,7 +16964,7 @@
16964 "zh-chs": "代理重复",
16965 "zh-cht": "代理重複",
16966 "xloc": [
16962 - "default.handlebars->35->2471"
16967 + "default.handlebars->35->2476"
16968 ]
16969 },
16970 {
@@ -17003,7 +17008,7 @@
17008 "zh-chs": "复制用户组",
17009 "zh-cht": "複製用戶群",
17010 "xloc": [
17006 - "default.handlebars->35->2188"
17011 + "default.handlebars->35->2193"
17012 ]
17013 },
17014 {
@@ -17044,8 +17049,8 @@
17049 "zh-chs": "持续时间",
17050 "zh-cht": "持續時間",
17051 "xloc": [
17047 - "default.handlebars->35->2384",
17048 - "default.handlebars->35->2410",
17052 + "default.handlebars->35->2389",
17053 + "default.handlebars->35->2415",
17054 "player.handlebars->3->2"
17055 ]
17056 },
@@ -17087,7 +17092,7 @@
17092 "zh-chs": "荷兰文(比利时)",
17093 "zh-cht": "荷蘭文(比利時)",
17094 "xloc": [
17090 - "default.handlebars->35->1382"
17095 + "default.handlebars->35->1385"
17096 ]
17097 },
17098 {
@@ -17109,7 +17114,7 @@
17114 "zh-chs": "荷兰文(标准)",
17115 "zh-cht": "荷蘭文(標準)",
17116 "xloc": [
17112 - "default.handlebars->35->1381"
17117 + "default.handlebars->35->1384"
17118 ]
17119 },
17120 {
@@ -17437,10 +17442,12 @@
17442 "zh-chs": "编辑设备",
17443 "zh-cht": "編輯裝置",
17444 "xloc": [
17440 - "default-mobile.handlebars->11->353",
17441 - "default-mobile.handlebars->11->360",
17442 - "default.handlebars->35->1035",
17443 - "default.handlebars->35->1042"
17445 + "default-mobile.handlebars->11->354",
17446 + "default-mobile.handlebars->11->356",
17447 + "default-mobile.handlebars->11->363",
17448 + "default.handlebars->35->1036",
17449 + "default.handlebars->35->1038",
17450 + "default.handlebars->35->1045"
17451 ]
17452 },
17453 {
@@ -17462,13 +17469,13 @@
17469 "zh-chs": "编辑设备组",
17470 "zh-cht": "編輯裝置群",
17471 "xloc": [
17465 - "default-mobile.handlebars->11->582",
17466 - "default-mobile.handlebars->11->588",
17467 - "default-mobile.handlebars->11->608",
17468 - "default.handlebars->35->1734",
17469 - "default.handlebars->35->1766",
17470 - "default.handlebars->35->1791",
17471 - "default.handlebars->35->1803"
17472 + "default-mobile.handlebars->11->585",
17473 + "default-mobile.handlebars->11->591",
17474 + "default-mobile.handlebars->11->611",
17475 + "default.handlebars->35->1737",
17476 + "default.handlebars->35->1769",
17477 + "default.handlebars->35->1794",
17478 + "default.handlebars->35->1806"
17479 ]
17480 },
17481 {
@@ -17490,7 +17497,7 @@
17497 "zh-chs": "编辑设备组功能",
17498 "zh-cht": "編輯裝置群功能",
17499 "xloc": [
17493 - "default.handlebars->35->1752"
17500 + "default.handlebars->35->1755"
17501 ]
17502 },
17503 {
@@ -17512,8 +17519,8 @@
17519 "zh-chs": "编辑设备组权限",
17520 "zh-cht": "編輯裝置群權限",
17521 "xloc": [
17515 - "default.handlebars->35->1788",
17516 - "default.handlebars->35->1800"
17522 + "default.handlebars->35->1791",
17523 + "default.handlebars->35->1803"
17524 ]
17525 },
17526 {
@@ -17535,7 +17542,7 @@
17542 "zh-chs": "编辑设备组用户同意",
17543 "zh-cht": "編輯裝置群用戶同意",
17544 "xloc": [
17538 - "default.handlebars->35->1735"
17545 + "default.handlebars->35->1738"
17546 ]
17547 },
17548 {
@@ -17557,8 +17564,8 @@
17564 "zh-chs": "编辑设备笔记",
17565 "zh-cht": "編輯裝置筆記",
17566 "xloc": [
17560 - "default-mobile.handlebars->11->600",
17561 - "default.handlebars->35->1780"
17567 + "default-mobile.handlebars->11->603",
17568 + "default.handlebars->35->1783"
17569 ]
17570 },
17571 {
@@ -17580,8 +17587,8 @@
17587 "zh-chs": "编辑设备权限",
17588 "zh-cht": "編輯裝置權限",
17589 "xloc": [
17583 - "default.handlebars->35->1793",
17584 - "default.handlebars->35->1795"
17590 + "default.handlebars->35->1796",
17591 + "default.handlebars->35->1798"
17592 ]
17593 },
17594 {
@@ -17625,7 +17632,7 @@
17632 "zh-chs": "编辑设备用户同意",
17633 "zh-cht": "編輯裝置用戶同意",
17634 "xloc": [
17628 - "default.handlebars->35->1737"
17635 + "default.handlebars->35->1740"
17636 ]
17637 },
17638 {
@@ -17647,7 +17654,7 @@
17654 "zh-chs": "编辑群组",
17655 "zh-cht": "編輯群組",
17656 "xloc": [
17650 - "default.handlebars->35->868"
17657 + "default.handlebars->35->869"
17658 ]
17659 },
17660 {
@@ -17672,11 +17679,11 @@
17679 "default-mobile.handlebars->11->277",
17680 "default-mobile.handlebars->11->282",
17681 "default-mobile.handlebars->11->283",
17675 - "default-mobile.handlebars->11->348",
17682 + "default-mobile.handlebars->11->349",
17683 "default.handlebars->35->712",
17684 "default.handlebars->35->717",
17685 "default.handlebars->35->718",
17679 - "default.handlebars->35->981"
17686 + "default.handlebars->35->982"
17687 ]
17688 },
17689 {
@@ -17698,8 +17705,8 @@
17705 "zh-chs": "编辑笔记",
17706 "zh-cht": "編輯筆記",
17707 "xloc": [
17701 - "default-mobile.handlebars->11->615",
17702 - "default.handlebars->35->1810"
17708 + "default-mobile.handlebars->11->618",
17709 + "default.handlebars->35->1813"
17710 ]
17711 },
17712 {
@@ -17721,7 +17728,7 @@
17728 "zh-chs": "编辑用户同意",
17729 "zh-cht": "編輯用戶同意",
17730 "xloc": [
17724 - "default.handlebars->35->1736"
17731 + "default.handlebars->35->1739"
17732 ]
17733 },
17734 {
@@ -17743,7 +17750,7 @@
17750 "zh-chs": "编辑用户设备组权限",
17751 "zh-cht": "編輯用戶裝置群權限",
17752 "xloc": [
17746 - "default.handlebars->35->1801"
17753 + "default.handlebars->35->1804"
17754 ]
17755 },
17756 {
@@ -17765,7 +17772,7 @@
17772 "zh-chs": "编辑用户设备权限",
17773 "zh-cht": "編輯用戶裝置權限",
17774 "xloc": [
17768 - "default.handlebars->35->1796"
17775 + "default.handlebars->35->1799"
17776 ]
17777 },
17778 {
@@ -17787,7 +17794,7 @@
17794 "zh-chs": "编辑用户组",
17795 "zh-cht": "編輯用戶群",
17796 "xloc": [
17790 - "default.handlebars->35->2239"
17797 + "default.handlebars->35->2244"
17798 ]
17799 },
17800 {
@@ -17809,7 +17816,7 @@
17816 "zh-chs": "编辑用户组设备权限",
17817 "zh-cht": "編輯用戶群裝置權限",
17818 "xloc": [
17812 - "default.handlebars->35->1798"
17819 + "default.handlebars->35->1801"
17820 ]
17821 },
17822 {
@@ -17831,7 +17838,7 @@
17838 "zh-chs": "编辑用户组用户同意",
17839 "zh-cht": "編輯用戶組用戶同意",
17840 "xloc": [
17834 - "default.handlebars->35->1738"
17841 + "default.handlebars->35->1741"
17842 ]
17843 },
17844 {
@@ -17921,11 +17928,11 @@
17928 "zh-cht": "電郵",
17929 "xloc": [
17930 "default-mobile.handlebars->11->102",
17924 - "default.handlebars->35->2138",
17925 - "default.handlebars->35->2265",
17926 - "default.handlebars->35->2267",
17927 - "default.handlebars->35->2307",
17928 - "default.handlebars->35->2327",
17931 + "default.handlebars->35->2143",
17932 + "default.handlebars->35->2270",
17933 + "default.handlebars->35->2272",
17934 + "default.handlebars->35->2312",
17935 + "default.handlebars->35->2332",
17936 "default.handlebars->35->417",
17937 "login-mobile.handlebars->5->42",
17938 "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -17960,7 +17967,7 @@
17967 "zh-cht": "電郵地址變更",
17968 "xloc": [
17969 "default-mobile.handlebars->11->103",
17963 - "default.handlebars->35->1571"
17970 + "default.handlebars->35->1574"
17971 ]
17972 },
17973 {
@@ -17983,7 +17990,7 @@
17990 "zh-cht": "電郵認證",
17991 "xloc": [
17992 "default-mobile.handlebars->11->92",
17986 - "default.handlebars->35->1312"
17993 + "default.handlebars->35->1315"
17994 ]
17995 },
17996 {
@@ -18049,7 +18056,7 @@
18056 "zh-cht": "電郵驗證",
18057 "xloc": [
18058 "default-mobile.handlebars->11->101",
18052 - "default.handlebars->35->1569"
18059 + "default.handlebars->35->1572"
18060 ]
18061 },
18062 {
@@ -18093,7 +18100,7 @@
18100 "zh-chs": "电邮未验证",
18101 "zh-cht": "電郵未驗證",
18102 "xloc": [
18096 - "default.handlebars->35->2084"
18103 + "default.handlebars->35->2089"
18104 ]
18105 },
18106 {
@@ -18115,8 +18122,8 @@
18122 "zh-chs": "电子邮件已验证",
18123 "zh-cht": "電子郵件已驗證",
18124 "xloc": [
18118 - "default.handlebars->35->2085",
18119 - "default.handlebars->35->2259"
18125 + "default.handlebars->35->2090",
18126 + "default.handlebars->35->2264"
18127 ]
18128 },
18129 {
@@ -18138,7 +18145,7 @@
18145 "zh-chs": "电邮已验证。",
18146 "zh-cht": "電郵已驗證。",
18147 "xloc": [
18141 - "default.handlebars->35->2144"
18148 + "default.handlebars->35->2149"
18149 ]
18150 },
18151 {
@@ -18160,7 +18167,7 @@
18167 "zh-chs": "电邮未验证",
18168 "zh-cht": "電郵未驗證",
18169 "xloc": [
18163 - "default.handlebars->35->2260"
18170 + "default.handlebars->35->2265"
18171 ]
18172 },
18173 {
@@ -18193,8 +18200,8 @@
18200 "zh-chs": "电邮已发送。",
18201 "zh-cht": "電郵已發送。",
18202 "xloc": [
18196 - "default-mobile.handlebars->11->657",
18197 - "default.handlebars->35->2439",
18203 + "default-mobile.handlebars->11->660",
18204 + "default.handlebars->35->2444",
18205 "login-mobile.handlebars->5->2",
18206 "login.handlebars->5->2",
18207 "login2.handlebars->7->3"
@@ -18254,7 +18261,7 @@
18261 "zh-chs": "已通过电邮验证,并且需要重置密码。",
18262 "zh-cht": "已通過電郵驗證,並且需要重置密碼。",
18263 "xloc": [
18257 - "default.handlebars->35->2145"
18264 + "default.handlebars->35->2150"
18265 ]
18266 },
18267 {
@@ -18288,7 +18295,7 @@
18295 "sv": "E-post / SMS / Push-trafik",
18296 "zh-chs": "电子邮件/短信/推送流量",
18297 "xloc": [
18291 - "default.handlebars->35->2530"
18298 + "default.handlebars->35->2535"
18299 ]
18300 },
18301 {
@@ -18338,7 +18345,7 @@
18345 "zh-chs": "启用邀请代码",
18346 "zh-cht": "啟用邀請代碼",
18347 "xloc": [
18341 - "default.handlebars->35->1833"
18348 + "default.handlebars->35->1836"
18349 ]
18350 },
18351 {
@@ -18383,7 +18390,7 @@
18390 "zh-cht": "啟用電郵二因子鑑別。",
18391 "xloc": [
18392 "default-mobile.handlebars->11->94",
18386 - "default.handlebars->35->1314"
18393 + "default.handlebars->35->1317"
18394 ]
18395 },
18396 {
@@ -18427,7 +18434,7 @@
18434 "zh-chs": "已启用",
18435 "zh-cht": "已啟用",
18436 "xloc": [
18430 - "default.handlebars->35->2412",
18437 + "default.handlebars->35->2417",
18438 "default.handlebars->35->94"
18439 ]
18440 },
@@ -18450,7 +18457,7 @@
18457 "zh-chs": "启用电子邮件两因素身份验证",
18458 "zh-cht": "啟用電子郵件兩因素身份驗證",
18459 "xloc": [
18453 - "default.handlebars->35->2008"
18460 + "default.handlebars->35->2011"
18461 ]
18462 },
18463 {
@@ -18487,8 +18494,8 @@
18494 "sv": "Slutet",
18495 "zh-chs": "结尾",
18496 "xloc": [
18490 - "default-mobile.handlebars->11->377",
18491 - "default.handlebars->35->1071"
18497 + "default-mobile.handlebars->11->380",
18498 + "default.handlebars->35->1074"
18499 ]
18500 },
18501 {
@@ -18510,7 +18517,7 @@
18517 "zh-chs": "时间结束",
18518 "zh-cht": "時間結束",
18519 "xloc": [
18513 - "default.handlebars->35->2409"
18520 + "default.handlebars->35->2414"
18521 ]
18522 },
18523 {
@@ -18532,7 +18539,7 @@
18539 "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
18540 "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
18541 "xloc": [
18535 - "default.handlebars->35->1931"
18542 + "default.handlebars->35->1934"
18543 ]
18544 },
18545 {
@@ -18554,7 +18561,13 @@
18561 "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
18562 "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
18563 "xloc": [
18557 - "default.handlebars->35->1932"
18564 + "default.handlebars->35->1935"
18565 + ]
18566 + },
18567 + {
18568 + "en": "Ended local relay session \\\"{0}\\\", protocol {1} to {2}, {3} second(s)",
18569 + "xloc": [
18570 + "default.handlebars->35->2044"
18571 ]
18572 },
18573 {
@@ -18569,7 +18582,7 @@
18582 "sv": "Avslutade messenger-session \\\"{0}\\\" från {1} till {2}, {3} sekund (er)",
18583 "zh-chs": "从 {1} 到 {2},{3} 秒结束了 Messenger 会话 \\\"{0}\\\"",
18584 "xloc": [
18572 - "default.handlebars->35->2032"
18585 + "default.handlebars->35->2035"
18586 ]
18587 },
18588 {
@@ -18591,7 +18604,7 @@
18604 "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
18605 "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
18606 "xloc": [
18594 - "default.handlebars->35->1929"
18607 + "default.handlebars->35->1932"
18608 ]
18609 },
18610 {
@@ -18613,7 +18626,7 @@
18626 "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
18627 "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
18628 "xloc": [
18616 - "default.handlebars->35->1930"
18629 + "default.handlebars->35->1933"
18630 ]
18631 },
18632 {
@@ -18635,7 +18648,7 @@
18648 "zh-chs": "英文",
18649 "zh-cht": "英文",
18650 "xloc": [
18638 - "default.handlebars->35->1383"
18651 + "default.handlebars->35->1386"
18652 ]
18653 },
18654 {
@@ -18657,7 +18670,7 @@
18670 "zh-chs": "英文(澳洲)",
18671 "zh-cht": "英文(澳洲)",
18672 "xloc": [
18660 - "default.handlebars->35->1384"
18673 + "default.handlebars->35->1387"
18674 ]
18675 },
18676 {
@@ -18679,7 +18692,7 @@
18692 "zh-chs": "英文(伯利茲)",
18693 "zh-cht": "英文(伯利茲)",
18694 "xloc": [
18682 - "default.handlebars->35->1385"
18695 + "default.handlebars->35->1388"
18696 ]
18697 },
18698 {
@@ -18701,7 +18714,7 @@
18714 "zh-chs": "英文(加拿大)",
18715 "zh-cht": "英文(加拿大)",
18716 "xloc": [
18704 - "default.handlebars->35->1386"
18717 + "default.handlebars->35->1389"
18718 ]
18719 },
18720 {
@@ -18723,7 +18736,7 @@
18736 "zh-chs": "英文(爱尔兰)",
18737 "zh-cht": "英文(愛爾蘭)",
18738 "xloc": [
18726 - "default.handlebars->35->1387"
18739 + "default.handlebars->35->1390"
18740 ]
18741 },
18742 {
@@ -18745,7 +18758,7 @@
18758 "zh-chs": "英文(牙买加)",
18759 "zh-cht": "英文(牙買加)",
18760 "xloc": [
18748 - "default.handlebars->35->1388"
18761 + "default.handlebars->35->1391"
18762 ]
18763 },
18764 {
@@ -18767,7 +18780,7 @@
18780 "zh-chs": "英文(纽西兰)",
18781 "zh-cht": "英文(紐西蘭)",
18782 "xloc": [
18770 - "default.handlebars->35->1389"
18783 + "default.handlebars->35->1392"
18784 ]
18785 },
18786 {
@@ -18789,7 +18802,7 @@
18802 "zh-chs": "英文(菲律宾)",
18803 "zh-cht": "英文(菲律賓)",
18804 "xloc": [
18792 - "default.handlebars->35->1390"
18805 + "default.handlebars->35->1393"
18806 ]
18807 },
18808 {
@@ -18811,7 +18824,7 @@
18824 "zh-chs": "英语(南非)",
18825 "zh-cht": "英語(南非)",
18826 "xloc": [
18814 - "default.handlebars->35->1391"
18827 + "default.handlebars->35->1394"
18828 ]
18829 },
18830 {
@@ -18833,7 +18846,7 @@
18846 "zh-chs": "英文(特立尼达和多巴哥)",
18847 "zh-cht": "英文(特立尼達和多巴哥)",
18848 "xloc": [
18836 - "default.handlebars->35->1392"
18849 + "default.handlebars->35->1395"
18850 ]
18851 },
18852 {
@@ -18855,7 +18868,7 @@
18868 "zh-chs": "英文(英国)",
18869 "zh-cht": "英文(英國)",
18870 "xloc": [
18858 - "default.handlebars->35->1393"
18871 + "default.handlebars->35->1396"
18872 ]
18873 },
18874 {
@@ -18877,7 +18890,7 @@
18890 "zh-chs": "美国英文",
18891 "zh-cht": "美國英語",
18892 "xloc": [
18880 - "default.handlebars->35->1394"
18893 + "default.handlebars->35->1397"
18894 ]
18895 },
18896 {
@@ -18899,7 +18912,7 @@
18912 "zh-chs": "英文(津巴布韦)",
18913 "zh-cht": "英文(津巴布韋)",
18914 "xloc": [
18902 - "default.handlebars->35->1395"
18915 + "default.handlebars->35->1398"
18916 ]
18917 },
18918 {
@@ -18932,11 +18945,11 @@
18945 "zh-chs": "输入",
18946 "zh-cht": "輸入",
18947 "xloc": [
18935 - "default-mobile.handlebars->11->371",
18936 - "default.handlebars->35->1065",
18937 - "default.handlebars->35->1160",
18938 - "default.handlebars->35->1598",
18939 - "default.handlebars->35->1599",
18948 + "default-mobile.handlebars->11->374",
18949 + "default.handlebars->35->1068",
18950 + "default.handlebars->35->1163",
18951 + "default.handlebars->35->1601",
18952 + "default.handlebars->35->1602",
18953 "sharing.handlebars->11->55"
18954 ]
18955 },
@@ -18959,7 +18972,7 @@
18972 "zh-chs": "输入管理领域名称的逗号分隔列表。",
18973 "zh-cht": "輸入管理領域名稱的逗號分隔列表。",
18974 "xloc": [
18962 - "default.handlebars->35->2149"
18975 + "default.handlebars->35->2154"
18976 ]
18977 },
18978 {
@@ -19036,7 +19049,7 @@
19049 "zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
19050 "zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
19051 "xloc": [
19039 - "default.handlebars->35->1090"
19052 + "default.handlebars->35->1093"
19053 ]
19054 },
19055 {
@@ -19126,7 +19139,7 @@
19139 "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
19140 "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
19141 "xloc": [
19129 - "default.handlebars->35->1309"
19142 + "default.handlebars->35->1312"
19143 ]
19144 },
19145 {
@@ -19175,8 +19188,8 @@
19188 "sv": "Fel, inbjudningskod \\\"{0}\\\" används redan.",
19189 "zh-chs": "错误,邀请码 \\\"{0}\\\" 已被使用。",
19190 "xloc": [
19178 - "default-mobile.handlebars->11->665",
19179 - "default.handlebars->35->2447"
19191 + "default-mobile.handlebars->11->668",
19192 + "default.handlebars->35->2452"
19193 ]
19194 },
19195 {
@@ -19192,8 +19205,8 @@
19205 "sv": "Fel, lösenordet har inte ändrats.",
19206 "zh-chs": "错误,密码未更改。",
19207 "xloc": [
19195 - "default-mobile.handlebars->11->662",
19196 - "default.handlebars->35->2444"
19208 + "default-mobile.handlebars->11->665",
19209 + "default.handlebars->35->2449"
19210 ]
19211 },
19212 {
@@ -19208,8 +19221,8 @@
19221 "sv": "Fel, det går inte att ändra till vanligt lösenord.",
19222 "zh-chs": "错误,无法更改为常用密码。",
19223 "xloc": [
19211 - "default-mobile.handlebars->11->661",
19212 - "default.handlebars->35->2443"
19224 + "default-mobile.handlebars->11->664",
19225 + "default.handlebars->35->2448"
19226 ]
19227 },
19228 {
@@ -19224,8 +19237,8 @@
19237 "sv": "Fel, kunde inte ändra till tidigare använt lösenord.",
19238 "zh-chs": "错误,无法更改为以前使用的密码。",
19239 "xloc": [
19227 - "default-mobile.handlebars->11->660",
19228 - "default.handlebars->35->2442"
19240 + "default-mobile.handlebars->11->663",
19241 + "default.handlebars->35->2447"
19242 ]
19243 },
19244 {
@@ -19262,8 +19275,8 @@
19275 "sv": "Fly",
19276 "zh-chs": "逃脱",
19277 "xloc": [
19265 - "default-mobile.handlebars->11->372",
19266 - "default.handlebars->35->1066"
19278 + "default-mobile.handlebars->11->375",
19279 + "default.handlebars->35->1069"
19280 ]
19281 },
19282 {
@@ -19285,7 +19298,7 @@
19298 "zh-chs": "世界文",
19299 "zh-cht": "世界語",
19300 "xloc": [
19288 - "default.handlebars->35->1396"
19301 + "default.handlebars->35->1399"
19302 ]
19303 },
19304 {
@@ -19307,7 +19320,7 @@
19320 "zh-chs": "爱沙尼亚文",
19321 "zh-cht": "愛沙尼亞語",
19322 "xloc": [
19310 - "default.handlebars->35->1397"
19323 + "default.handlebars->35->1400"
19324 ]
19325 },
19326 {
@@ -19340,7 +19353,7 @@
19353 "zh-chs": "事件详情",
19354 "zh-cht": "事件詳情",
19355 "xloc": [
19343 - "default.handlebars->35->1201"
19356 + "default.handlebars->35->1204"
19357 ]
19358 },
19359 {
@@ -19362,7 +19375,7 @@
19375 "zh-chs": "事件列表输出",
19376 "zh-cht": "事件列表輸出",
19377 "xloc": [
19365 - "default.handlebars->35->2060"
19378 + "default.handlebars->35->2065"
19379 ]
19380 },
19381 {
@@ -19494,9 +19507,9 @@
19507 "zh-chs": "到期时间",
19508 "zh-cht": "到期時間",
19509 "xloc": [
19497 - "default.handlebars->35->1559",
19510 + "default.handlebars->35->1562",
19511 "default.handlebars->35->237",
19499 - "default.handlebars->35->930"
19512 + "default.handlebars->35->931"
19513 ]
19514 },
19515 {
@@ -19540,7 +19553,7 @@
19553 "zh-chs": "过期{0}",
19554 "zh-cht": "過期{0}",
19555 "xloc": [
19543 - "default.handlebars->35->1612",
19556 + "default.handlebars->35->1615",
19557 "sharing.handlebars->11->95"
19558 ]
19559 },
@@ -19585,7 +19598,7 @@
19598 "zh-chs": "扩充式ASCII",
19599 "zh-cht": "擴充式ASCII",
19600 "xloc": [
19588 - "default.handlebars->35->1131",
19601 + "default.handlebars->35->1134",
19602 "sharing.handlebars->11->34"
19603 ]
19604 },
@@ -19631,7 +19644,7 @@
19644 "zh-chs": "外部",
19645 "zh-cht": "外部",
19646 "xloc": [
19634 - "default.handlebars->35->2510"
19647 + "default.handlebars->35->2515"
19648 ]
19649 },
19650 {
@@ -19675,7 +19688,7 @@
19688 "zh-chs": "FYRO马其顿语",
19689 "zh-cht": "FYRO馬其頓語",
19690 "xloc": [
19678 - "default.handlebars->35->1447"
19691 + "default.handlebars->35->1450"
19692 ]
19693 },
19694 {
@@ -19697,7 +19710,7 @@
19710 "zh-chs": "法罗语",
19711 "zh-cht": "法羅語",
19712 "xloc": [
19700 - "default.handlebars->35->1398"
19713 + "default.handlebars->35->1401"
19714 ]
19715 },
19716 {
@@ -19735,8 +19748,8 @@
19748 "sv": "Det gick inte att ändra e-postadress, ett annat konto som redan använder: {0}.",
19749 "zh-chs": "无法更改电子邮件地址,另一个帐户已在使用:{0}。",
19750 "xloc": [
19738 - "default-mobile.handlebars->11->656",
19739 - "default.handlebars->35->2438"
19751 + "default-mobile.handlebars->11->659",
19752 + "default.handlebars->35->2443"
19753 ]
19754 },
19755 {
@@ -19773,7 +19786,7 @@
19786 "zh-chs": "本地用户拒绝后无法启动远程桌面",
19787 "zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
19788 "xloc": [
19776 - "default.handlebars->35->1954"
19789 + "default.handlebars->35->1957"
19790 ]
19791 },
19792 {
@@ -19806,7 +19819,7 @@
19819 "zh-chs": "本地用户拒绝后无法启动远程文件",
19820 "zh-cht": "本地用戶拒絕後無法啟動遠程文件",
19821 "xloc": [
19809 - "default.handlebars->35->1961"
19822 + "default.handlebars->35->1964"
19823 ]
19824 },
19825 {
@@ -19839,8 +19852,8 @@
19852 "zh-chs": "无法启动远程终端接合{0}({1})",
19853 "zh-cht": "無法啟動遠程終端接合{0}({1})",
19854 "xloc": [
19842 - "default-mobile.handlebars->11->363",
19843 - "default.handlebars->35->1045",
19855 + "default-mobile.handlebars->11->366",
19856 + "default.handlebars->35->1048",
19857 "sharing.handlebars->11->30",
19858 "sharing.handlebars->11->8"
19859 ]
@@ -19864,7 +19877,7 @@
19877 "zh-chs": "波斯文(波斯文)",
19878 "zh-cht": "波斯語(波斯語)",
19879 "xloc": [
19867 - "default.handlebars->35->1399"
19880 + "default.handlebars->35->1402"
19881 ]
19882 },
19883 {
@@ -19910,7 +19923,7 @@
19923 "zh-chs": "功能",
19924 "zh-cht": "功能",
19925 "xloc": [
19913 - "default.handlebars->35->1654"
19926 + "default.handlebars->35->1657"
19927 ]
19928 },
19929 {
@@ -19932,7 +19945,7 @@
19945 "zh-chs": "斐济",
19946 "zh-cht": "斐濟",
19947 "xloc": [
19935 - "default.handlebars->35->1400"
19948 + "default.handlebars->35->1403"
19949 ]
19950 },
19951 {
@@ -19976,8 +19989,8 @@
19989 "zh-chs": "档案编辑器",
19990 "zh-cht": "檔案編輯器",
19991 "xloc": [
19979 - "default-mobile.handlebars->11->434",
19980 - "default.handlebars->35->1172",
19992 + "default-mobile.handlebars->11->437",
19993 + "default.handlebars->35->1175",
19994 "default.handlebars->35->647",
19995 "sharing.handlebars->11->66"
19996 ]
@@ -20019,8 +20032,8 @@
20032 "zh-chs": "档案操作",
20033 "zh-cht": "檔案操作",
20034 "xloc": [
20022 - "default.handlebars->35->1151",
20023 - "default.handlebars->35->1153",

This file is too large to show in full.

views/default-mobile.handlebars
+11 -4
@@ -1876,6 +1876,7 @@
1876 node.gpsloc = message.event.node.gpsloc;
1877 node.tags = message.event.node.tags;
1878 node.ssh = message.event.node.ssh;
1879 + node.rdp = message.event.node.rdp;
1880 node.userloc = message.event.node.userloc;
1881 node.rdpport = message.event.node.rdpport;
1882 node.rfbport = message.event.node.rfbport;
@@ -3430,13 +3431,17 @@
3431 x += addDeviceAttribute("Tags", '<span style=color:black>' + groupingTags + '</span>');
3432 }
3433
3433 - // SSH Credentials
3434 - if (node.ssh != null) {
3434 + // SSH & RDP Credentials
3435 + if ((node.ssh != null) || (node.rdp != null)) {
3436 + var y = [];
3437 if ((meshrights & 4) != 0) {
3436 - x += addDeviceAttribute("Credentials", '<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
3438 + if (node.ssh != null) { y.push('<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>'); }
3439 + if (node.rdp != null) { y.push('<span onclick=showClearRdpDialog(3) style=cursor:pointer>' + "RDP" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>'); }
3440 } else {
3438 - x += addDeviceAttribute("Credentials", "SSH");
3441 + if (node.ssh != null) { y.push("SSH"); }
3442 + if (node.rdp != null) { y.push("RDP"); }
3443 }
3444 + x += addDeviceAttribute("Credentials", y.join(', '));
3445 }
3446
3447 x += '</table><br />';
@@ -3842,6 +3847,8 @@
3847
3848 function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); }
3849 function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); }
3850 + function showClearRdpDialog() { setDialogMode(2, "Edit Device", 3, showClearRdpDialogEx, "Clear RDP credentials?"); }
3851 + function showClearRdpDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, rdp: 0 }); }
3852
3853 var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"];
3854 var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags'];
views/default.handlebars
+11 -4
@@ -3000,6 +3000,7 @@
3000 node.gpsloc = message.event.node.gpsloc;
3001 node.tags = message.event.node.tags;
3002 node.ssh = message.event.node.ssh;
3003 + node.rdp = message.event.node.rdp;
3004 node.userloc = message.event.node.userloc;
3005 node.rdpport = message.event.node.rdpport;
3006 node.rfbport = message.event.node.rfbport;
@@ -6506,13 +6507,17 @@
6507 x += addDeviceAttribute("Tags", groupingTags);
6508 }
6509
6509 - // SSH Credentials
6510 - if (node.ssh != null) {
6510 + // SSH & RDP Credentials
6511 + if ((node.ssh != null) || (node.rdp != null)) {
6512 + var y = [];
6513 if ((meshrights & 4) != 0) {
6512 - x += addDeviceAttribute("Credentials", '<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>');
6514 + if (node.ssh != null) { y.push('<span onclick=showClearSshDialog(3) style=cursor:pointer>' + "SSH" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>'); }
6515 + if (node.rdp != null) { y.push('<span onclick=showClearRdpDialog(3) style=cursor:pointer>' + "RDP" + ' <img class=hoverButton src="images/link5.png" width=10 height=10 /></span>'); }
6516 } else {
6514 - x += addDeviceAttribute("Credentials", "SSH");
6517 + if (node.ssh != null) { y.push("SSH"); }
6518 + if (node.rdp != null) { y.push("RDP"); }
6519 }
6520 + x += addDeviceAttribute("Credentials", y.join(', '));
6521 }
6522
6523 x += '</table><br />';
@@ -7558,6 +7563,8 @@
7563
7564 function showClearSshDialog() { setDialogMode(2, "Edit Device", 3, showClearSshDialogEx, "Clear SSH credentials?"); }
7565 function showClearSshDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, ssh: 0 }); }
7566 + function showClearRdpDialog() { setDialogMode(2, "Edit Device", 3, showClearRdpDialogEx, "Clear RDP credentials?"); }
7567 + function showClearRdpDialogEx(button, mode) { meshserver.send({ action: 'changedevice', nodeid: currentNode._id, rdp: 0 }); }
7568
7569 var showEditNodeValueDialog_modes = ["Device Name", "Hostname", "Description", "Tags"];
7570 var showEditNodeValueDialog_modes2 = ['name', 'host', 'desc', 'tags'];
views/mstsc.handlebars
+39 -4
@@ -44,6 +44,10 @@
44 margin: 0 auto;
45 }
46
47 + .formDropdown {
48 + font-size: 17px;
49 + }
50 +
51 .formLabel { }
52
53 .formControl {
@@ -76,6 +80,7 @@
80 var urlargs = parseUriArgs();
81 if (urlargs.key && (isAlphaNumeric(urlargs.key) == false)) { delete urlargs.key; }
82 var cookie = '{{{cookie}}}';
83 + var serverCredentials = (decodeURIComponent('{{{serverCredentials}}}') == 'true');
84 var name = decodeURIComponent('{{{name}}}');
85 if (name != '') { document.title = name + ' - ' + document.title; }
86
@@ -90,6 +95,15 @@
95 QE('inputPassword', false);
96 QE('connectButton', false);
97 }
98 +
99 + if (serverCredentials == true) {
100 + QV('dropdowndomain', true);
101 + Q('d3coreMode').value = 1;
102 + } else {
103 + QV('dropdowndomain', false);
104 + Q('d3coreMode').value = 2;
105 + }
106 + dropDownChange();
107 }
108
109 function connect(domain, username, password) {
@@ -97,11 +111,13 @@
111 var domain = Q('inputDomain').value;
112 var username = Q('inputUsername').value;
113 var password = Q('inputPassword').value;
114 + var savepass = Q('inputSaveCredentials').checked;
115 + var options = { savepass: savepass, useServerCreds: (Q('d3coreMode').value == 1) };
116 QV('myCanvas', true);
117 QV('main', false);
118 canvas.width = window.innerWidth;
119 canvas.height = window.innerHeight;
104 - client.connect(cookie, domain, username, password, function (err) { QV('myCanvas', false); QV('main', true); });
120 + client.connect(cookie, domain, username, password, options, function (err) { QV('myCanvas', false); QV('main', true); });
121 return false;
122 }
123
@@ -137,6 +153,16 @@
153 }
154 return r;
155 }
156 +
157 + function dropDownChange() {
158 + var newCreds = (Q('d3coreMode').value == 2);
159 + QV('rowdomain', newCreds);
160 + QV('rowusername', newCreds);
161 + QV('rowpassword', newCreds);
162 + QV('rowremember', newCreds);
163 + if (newCreds) Q('inputUsername').focus();
164 + }
165 +
166 </script>
167 </head>
168 <body onload='load()' style="position:absolute;top:0px;right:0;left:0;bottom:0px">
@@ -147,18 +173,27 @@
173 <tr>
174 <td colspan="2"><hr style="color:gray;border:1px solid;" /></td>
175 </tr>
150 - <tr>
176 + <tr id="dropdowndomain" style="display:none">
177 + <td colspan="2">
178 + <select id=d3coreMode style=width:100%;margin-bottom:5px class="formDropdown" onchange="dropDownChange()"><option value=1>Use server credentals</option><option value=2>Use new credentals</option></select>
179 + </td>
180 + </tr>
181 + <tr id="rowdomain" style="display:none">
182 <td><label for="inputDomain" class="formLabel">Domain</label></td>
183 <td style="text-align:right"><input type="text" id="inputDomain" class="formControl" placeholder="Domain"></td>
184 </tr>
154 - <tr>
185 + <tr id="rowusername" style="display:none">
186 <td><label for="inputUsername" class="formLabel">Username</label></td>
187 <td style="text-align:right"><input type="text" id="inputUsername" class="formControl" placeholder="Username"></td>
188 </tr>
158 - <tr>
189 + <tr id="rowpassword" style="display:none">
190 <td><label for="inputPassword" class="formLabel">Password</label></td>
191 <td style="text-align:right"><input type="password" id="inputPassword" class="formControl" placeholder="Password"></td>
192 </tr>
193 + <tr id="rowremember" style="display:none">
194 + <td></td>
195 + <td><label><input type="checkbox" id="inputSaveCredentials" style="margin-left:8px;margin-right:5px">Remember credentials</label></td>
196 + </tr>
197 <tr>
198 <td colspan="2"><button class="connectButton" onclick="return connect()">Connect</button></td>
199 </tr>
webserver.js
+18 -2
@@ -1870,7 +1870,19 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1870 // This is a query with a websocket relay cookie, check that the cookie is valid and use it.
1871 var rcookie = parent.decodeCookie(req.query.ws, parent.loginCookieEncryptionKey, 60); // Cookie with 1 hour timeout
1872 if ((rcookie != null) && (rcookie.domainid == domain.id) && (rcookie.nodeid != null) && (rcookie.tcpport != null)) {
1873 - render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: req.query.ws, name: encodeURIComponent(req.query.name).replace(/'/g, '%27') }, req, domain)); return;
1873 +
1874 + // Fetch the node from the database
1875 + obj.db.Get(rcookie.nodeid, function (err, nodes) {
1876 + if ((err != null) || (nodes.length != 1)) { res.sendStatus(404); return; }
1877 + const node = nodes[0];
1878 +
1879 + // Check if we have RDP credentials for this device
1880 + var serverCredentials = ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string'));
1881 +
1882 + // Render the page
1883 + render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: req.query.ws, name: encodeURIComponent(req.query.name).replace(/'/g, '%27'), serverCredentials: serverCredentials }, req, domain));
1884 + });
1885 + return;
1886 }
1887 }
1888
@@ -1912,6 +1924,9 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1924 if ((err != null) || (nodes.length != 1)) { res.sendStatus(404); return; }
1925 const node = nodes[0];
1926
1927 + // Check if we have RDP credentials for this device
1928 + var serverCredentials = ((typeof node.rdp == 'object') && (typeof node.rdp.d == 'string') && (typeof node.rdp.u == 'string') && (typeof node.rdp.p == 'string'));
1929 +
1930 // Check access rights, must have remote control rights
1931 if ((obj.GetNodeRights(user, node.meshid, node._id) & MESHRIGHT_REMOTECONTROL) == 0) { res.sendStatus(401); return; }
1932
@@ -1930,7 +1945,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
1945
1946 // Generate a cookie and respond
1947 var cookie = parent.encodeCookie({ userid: user._id, domainid: user.domain, nodeid: node._id, tcpport: port }, parent.loginCookieEncryptionKey);
1933 - render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: cookie, name: encodeURIComponent(node.name).replace(/'/g, '%27') }, req, domain));
1948 + render(req, res, getRenderPage(page, req, domain), getRenderArgs({ cookie: cookie, name: encodeURIComponent(node.name).replace(/'/g, '%27'), serverCredentials: serverCredentials }, req, domain));
1949 });
1950 }
1951
@@ -7030,6 +7045,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
7045 r = Object.assign({}, r); // Shallow clone
7046 if (r.pmt != null) { r.pmt = 1; }
7047 if (r.ssh != null) { r.ssh = 1; }
7048 + if (r.rdp != null) { r.rdp = 1; }
7049 if ((r.intelamt != null) && ((r.intelamt.pass != null) || (r.intelamt.mpspass != null))) {
7050 r.intelamt = Object.assign({}, r.intelamt); // Shallow clone
7051 if (r.intelamt.pass != null) { r.intelamt.pass = 1; }; // Remove the Intel AMT administrator password from the node