diff --git a/agents/meshcore.js b/agents/meshcore.js
index 37253156..5d87fd36 100644
--- a/agents/meshcore.js
+++ b/agents/meshcore.js
@@ -655,33 +655,39 @@ var meshCoreObj = { action: 'coreinfo', value: (require('MeshAgent').coreHash ?
try { require('os').name().then(function (v) { meshCoreObj.osdesc = v; meshCoreObjChanged(); }); } catch (ex) { }
// Setup logged in user monitoring (THIS IS BROKEN IN WIN7)
+function onUserSessionChanged(user, locked) {
+ userSession.enumerateUsers().then(function (users) {
+ if (process.platform == 'linux') {
+ if (userSession._startTime == null) {
+ userSession._startTime = Date.now();
+ userSession._count = users.length;
+ }
+ else if (Date.now() - userSession._startTime < 10000 && users.length == userSession._count) {
+ userSession.removeAllListeners('changed');
+ return;
+ }
+ }
+
+ var u = [], a = users.Active;
+ if(meshCoreObj.lusers == null) { meshCoreObj.lusers = []; }
+ for (var i = 0; i < a.length; i++) {
+ var un = a[i].Domain ? (a[i].Domain + '\\' + a[i].Username) : (a[i].Username);
+ if (user && locked && (JSON.stringify(a[i]) === JSON.stringify(user))) { if (meshCoreObj.lusers.indexOf(un) == -1) { meshCoreObj.lusers.push(un); } }
+ else if (user && !locked && (JSON.stringify(a[i]) === JSON.stringify(user))) { meshCoreObj.lusers.splice(meshCoreObj.lusers.indexOf(un), 1); }
+ if (u.indexOf(un) == -1) { u.push(un); } // Only push users in the list once.
+ }
+ meshCoreObj.lusers = meshCoreObj.lusers;
+ meshCoreObj.users = u;
+ meshCoreObjChanged();
+ });
+}
+
try {
var userSession = require('user-sessions');
- userSession.on('changed', function onUserSessionChanged() {
- userSession.enumerateUsers().then(function (users) {
- if (process.platform == 'linux') {
- if (userSession._startTime == null) {
- userSession._startTime = Date.now();
- userSession._count = users.length;
- }
- else if (Date.now() - userSession._startTime < 10000 && users.length == userSession._count) {
- userSession.removeAllListeners('changed');
- return;
- }
- }
-
- var u = [], a = users.Active;
- for (var i = 0; i < a.length; i++) {
- var un = a[i].Domain ? (a[i].Domain + '\\' + a[i].Username) : (a[i].Username);
- if (u.indexOf(un) == -1) { u.push(un); } // Only push users in the list once.
- }
- meshCoreObj.users = u;
- meshCoreObjChanged();
- });
- });
+ userSession.on('changed', function () { onUserSessionChanged(null, false); });
userSession.emit('changed');
- //userSession.on('locked', function (user) { sendConsoleText('[' + (user.Domain ? user.Domain + '\\' : '') + user.Username + '] has LOCKED the desktop'); });
- //userSession.on('unlocked', function (user) { sendConsoleText('[' + (user.Domain ? user.Domain + '\\' : '') + user.Username + '] has UNLOCKED the desktop'); });
+ userSession.on('locked', function (user) { if(user != undefined && user != null) { onUserSessionChanged(user, true); } });
+ userSession.on('unlocked', function (user) { if(user != undefined && user != null) { onUserSessionChanged(user, false); } });
} catch (ex) { }
var meshServerConnectionState = 0;
diff --git a/meshagent.js b/meshagent.js
index 9c1fcb98..7169b9ff 100644
--- a/meshagent.js
+++ b/meshagent.js
@@ -1936,8 +1936,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
change = 1; // Don't save this change as an event to the db, so no log=1.
parent.removePmtFromAllOtherNodes(device); // We need to make sure to remove this push messaging token from any other device on this server, all domains included.
}
-
+
if ((command.users != null) && (Array.isArray(command.users)) && (device.users != command.users)) { device.users = command.users; change = 1; } // Don't save this to the db.
+ if ((command.lusers != null) && (Array.isArray(command.lusers)) && (device.lusers != command.lusers)) { device.lusers = command.lusers; change = 1; } // Don't save this to the db.
if ((mesh.mtype == 2) && (!args.wanonly)) {
// In WAN mode, the hostname of a computer is not important. Don't log hostname changes.
if (device.host != obj.remoteaddr) { device.host = obj.remoteaddr; change = 1; changes.push('host'); }
diff --git a/translate/translate.json b/translate/translate.json
index ebb2de85..29dc575b 100644
--- a/translate/translate.json
+++ b/translate/translate.json
@@ -5,8 +5,8 @@
"en": " (",
"nl": " (",
"xloc": [
- "default.handlebars->47->1544",
- "default3.handlebars->35->1529"
+ "default.handlebars->47->1545",
+ "default3.handlebars->35->1530"
]
},
{
@@ -35,10 +35,10 @@
"zh-cht": " + CIRA",
"uk": " + CIRA",
"xloc": [
- "default.handlebars->47->2214",
- "default.handlebars->47->2216",
- "default3.handlebars->35->2209",
- "default3.handlebars->35->2211"
+ "default.handlebars->47->2215",
+ "default.handlebars->47->2217",
+ "default3.handlebars->35->2210",
+ "default3.handlebars->35->2212"
]
},
{
@@ -339,8 +339,8 @@
"zh-cht": " 可以使用密碼提示,但不建議使用。",
"uk": " Підказку для пароля можна використати, але не рекомендується.",
"xloc": [
- "default.handlebars->47->2088",
- "default3.handlebars->35->2067"
+ "default.handlebars->47->2089",
+ "default3.handlebars->35->2068"
]
},
{
@@ -369,10 +369,10 @@
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
"uk": " Користувачам потрібно підключитися хоча б раз до цього серверу, щоб мати можливість бути доданими у групи пристроїв.",
"xloc": [
- "default.handlebars->47->2338",
- "default.handlebars->47->2920",
- "default3.handlebars->35->2334",
- "default3.handlebars->35->2913"
+ "default.handlebars->47->2339",
+ "default.handlebars->47->2921",
+ "default3.handlebars->35->2335",
+ "default3.handlebars->35->2914"
]
},
{
@@ -966,8 +966,8 @@
"ru": ")",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1",
- "default.handlebars->47->1545",
- "default3.handlebars->35->1530"
+ "default.handlebars->47->1546",
+ "default3.handlebars->35->1531"
]
},
{
@@ -996,9 +996,9 @@
"zh-cht": "* 8-16個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
"uk": "* 8-16 символів, 1 велика літера, 1 маленька літера, 1 цифра, 1 спеціальний знак.",
"xloc": [
- "default.handlebars->47->2298",
+ "default.handlebars->47->2299",
"default.handlebars->47->534",
- "default3.handlebars->35->2291",
+ "default3.handlebars->35->2292",
"default3.handlebars->35->531"
]
},
@@ -1106,22 +1106,22 @@
"zh-chs": ",",
"zh-cht": ",",
"xloc": [
- "default-mobile.handlebars->11->1018",
- "default-mobile.handlebars->11->811",
- "default-mobile.handlebars->11->813",
- "default-mobile.handlebars->11->815",
- "default.handlebars->47->1011",
- "default.handlebars->47->1651",
- "default.handlebars->47->1653",
- "default.handlebars->47->1655",
- "default.handlebars->47->2414",
- "default.handlebars->47->2693",
- "default3.handlebars->35->1008",
- "default3.handlebars->35->1635",
- "default3.handlebars->35->1637",
- "default3.handlebars->35->1639",
- "default3.handlebars->35->2410",
- "default3.handlebars->35->2689"
+ "default-mobile.handlebars->11->1019",
+ "default-mobile.handlebars->11->812",
+ "default-mobile.handlebars->11->814",
+ "default-mobile.handlebars->11->816",
+ "default.handlebars->47->1012",
+ "default.handlebars->47->1652",
+ "default.handlebars->47->1654",
+ "default.handlebars->47->1656",
+ "default.handlebars->47->2415",
+ "default.handlebars->47->2694",
+ "default3.handlebars->35->1009",
+ "default3.handlebars->35->1636",
+ "default3.handlebars->35->1638",
+ "default3.handlebars->35->1640",
+ "default3.handlebars->35->2411",
+ "default3.handlebars->35->2690"
]
},
{
@@ -1295,9 +1295,9 @@
"zh-cht": ",MQTT在線",
"uk": ", MQTT працює",
"xloc": [
- "default-mobile.handlebars->11->920",
- "default.handlebars->47->1761",
- "default3.handlebars->35->1743"
+ "default-mobile.handlebars->11->921",
+ "default.handlebars->47->1762",
+ "default3.handlebars->35->1744"
]
},
{
@@ -1326,10 +1326,10 @@
"zh-cht": ", 不同意",
"uk": ", Нема Погодження",
"xloc": [
- "default.handlebars->47->1106",
- "default.handlebars->47->2256",
- "default3.handlebars->35->1103",
- "default3.handlebars->35->2251"
+ "default.handlebars->47->1107",
+ "default.handlebars->47->2257",
+ "default3.handlebars->35->1104",
+ "default3.handlebars->35->2252"
]
},
{
@@ -1358,10 +1358,10 @@
"zh-cht": ",提示同意",
"uk": ", Запит на погодження",
"xloc": [
- "default.handlebars->47->1107",
- "default.handlebars->47->2257",
- "default3.handlebars->35->1104",
- "default3.handlebars->35->2252"
+ "default.handlebars->47->1108",
+ "default.handlebars->47->2258",
+ "default3.handlebars->35->1105",
+ "default3.handlebars->35->2253"
]
},
{
@@ -1389,8 +1389,8 @@
"zh-chs": ", RDP",
"zh-cht": ", RDP",
"xloc": [
- "default.handlebars->47->1406",
- "default3.handlebars->35->1393"
+ "default.handlebars->47->1407",
+ "default3.handlebars->35->1394"
]
},
{
@@ -1419,10 +1419,10 @@
"zh-cht": ", 每天重複",
"uk": ", Повторюється щодня",
"xloc": [
- "default.handlebars->47->1103",
- "default.handlebars->47->2253",
- "default3.handlebars->35->1100",
- "default3.handlebars->35->2248"
+ "default.handlebars->47->1104",
+ "default.handlebars->47->2254",
+ "default3.handlebars->35->1101",
+ "default3.handlebars->35->2249"
]
},
{
@@ -1451,10 +1451,10 @@
"zh-cht": ", 每週重複一次",
"uk": ", Повторюється щотижня",
"xloc": [
- "default.handlebars->47->1104",
- "default.handlebars->47->2254",
- "default3.handlebars->35->1101",
- "default3.handlebars->35->2249"
+ "default.handlebars->47->1105",
+ "default.handlebars->47->2255",
+ "default3.handlebars->35->1102",
+ "default3.handlebars->35->2250"
]
},
{
@@ -1539,8 +1539,8 @@
"zh-cht": ", SFTP",
"xloc": [
"default-mobile.handlebars->11->705",
- "default.handlebars->47->1528",
- "default3.handlebars->35->1513"
+ "default.handlebars->47->1529",
+ "default3.handlebars->35->1514"
]
},
{
@@ -1568,8 +1568,8 @@
"zh-chs": ", SSH",
"zh-cht": ", SSH",
"xloc": [
- "default.handlebars->47->1496",
- "default3.handlebars->35->1481"
+ "default.handlebars->47->1497",
+ "default3.handlebars->35->1482"
]
},
{
@@ -1597,8 +1597,8 @@
"zh-chs": ",软体KVM",
"zh-cht": ",軟體KVM",
"xloc": [
- "default.handlebars->47->1389",
- "default3.handlebars->35->1376",
+ "default.handlebars->47->1390",
+ "default3.handlebars->35->1377",
"sharing.handlebars->11->12"
]
},
@@ -1628,10 +1628,10 @@
"zh-cht": ", 工具欄",
"uk": ", Панель Засобів",
"xloc": [
- "default.handlebars->47->1108",
- "default.handlebars->47->2258",
- "default3.handlebars->35->1105",
- "default3.handlebars->35->2253"
+ "default.handlebars->47->1109",
+ "default.handlebars->47->2259",
+ "default3.handlebars->35->1106",
+ "default3.handlebars->35->2254"
]
},
{
@@ -1686,10 +1686,10 @@
"zh-cht": ", 僅查看桌面",
"uk": ", Тільки перегляд стільниці",
"xloc": [
- "default.handlebars->47->1105",
- "default.handlebars->47->2255",
- "default3.handlebars->35->1102",
- "default3.handlebars->35->2250"
+ "default.handlebars->47->1106",
+ "default.handlebars->47->2256",
+ "default3.handlebars->35->1103",
+ "default3.handlebars->35->2251"
]
},
{
@@ -1720,12 +1720,12 @@
"default-mobile.handlebars->11->646",
"default-mobile.handlebars->11->683",
"default-mobile.handlebars->11->706",
- "default.handlebars->47->1405",
- "default.handlebars->47->1497",
- "default.handlebars->47->1529",
- "default3.handlebars->35->1392",
- "default3.handlebars->35->1482",
- "default3.handlebars->35->1514",
+ "default.handlebars->47->1406",
+ "default.handlebars->47->1498",
+ "default.handlebars->47->1530",
+ "default3.handlebars->35->1393",
+ "default3.handlebars->35->1483",
+ "default3.handlebars->35->1515",
"sharing.handlebars->11->19",
"sharing.handlebars->11->27",
"sharing.handlebars->11->44",
@@ -1960,8 +1960,8 @@
"zh-cht": ",{0}觀看",
"uk": ", {0} стежень(ння)",
"xloc": [
- "default.handlebars->47->1400",
- "default3.handlebars->35->1387",
+ "default.handlebars->47->1401",
+ "default3.handlebars->35->1388",
"sharing.handlebars->11->13"
]
},
@@ -2056,12 +2056,12 @@
"default-mobile.handlebars->11->356",
"default-mobile.handlebars->11->358",
"default-mobile.handlebars->11->712",
- "default.handlebars->47->1543",
- "default.handlebars->47->2480",
- "default.handlebars->47->3157",
- "default3.handlebars->35->1528",
- "default3.handlebars->35->2476",
- "default3.handlebars->35->3144",
+ "default.handlebars->47->1544",
+ "default.handlebars->47->2481",
+ "default.handlebars->47->3158",
+ "default3.handlebars->35->1529",
+ "default3.handlebars->35->2477",
+ "default3.handlebars->35->3145",
"sharing.handlebars->11->50"
]
},
@@ -2247,8 +2247,8 @@
"zh-cht": "1個活躍時段",
"uk": "1 активна сесія",
"xloc": [
- "default.handlebars->47->3015",
- "default3.handlebars->35->3008"
+ "default.handlebars->47->3016",
+ "default3.handlebars->35->3009"
]
},
{
@@ -2277,10 +2277,10 @@
"zh-cht": "1個位元組",
"uk": "1 байт",
"xloc": [
- "default-mobile.handlebars->11->1062",
+ "default-mobile.handlebars->11->1063",
"default-mobile.handlebars->11->368",
- "default.handlebars->47->2504",
- "default3.handlebars->35->2500",
+ "default.handlebars->47->2505",
+ "default3.handlebars->35->2501",
"download.handlebars->3->1",
"download2.handlebars->5->1",
"sharing.handlebars->11->101"
@@ -2341,8 +2341,8 @@
"zh-cht": "1位聯絡文",
"uk": "1 підключення",
"xloc": [
- "default.handlebars->47->1402",
- "default3.handlebars->35->1389",
+ "default.handlebars->47->1403",
+ "default3.handlebars->35->1390",
"sharing.handlebars->11->15"
]
},
@@ -2406,8 +2406,8 @@
"zh-cht": "1群",
"uk": "1 група",
"xloc": [
- "default.handlebars->47->2970",
- "default3.handlebars->35->2963"
+ "default.handlebars->47->2971",
+ "default3.handlebars->35->2964"
]
},
{
@@ -2470,10 +2470,10 @@
"zh-cht": "1分鐘",
"uk": "1 хвилина",
"xloc": [
- "default.handlebars->47->1216",
- "default.handlebars->47->2053",
- "default3.handlebars->35->1211",
- "default3.handlebars->35->2033"
+ "default.handlebars->47->1217",
+ "default.handlebars->47->2054",
+ "default3.handlebars->35->1212",
+ "default3.handlebars->35->2034"
]
},
{
@@ -2566,8 +2566,8 @@
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
"uk": "ще 1 користувача не показано, використовуйте поле пошуку для перегляду користувачів...",
"xloc": [
- "default.handlebars->47->2725",
- "default3.handlebars->35->2721"
+ "default.handlebars->47->2726",
+ "default3.handlebars->35->2722"
]
},
{
@@ -2679,8 +2679,8 @@
"uk": "1 секунда",
"xloc": [
"default-mobile.handlebars->11->582",
- "default.handlebars->47->1254",
- "default3.handlebars->35->1249"
+ "default.handlebars->47->1255",
+ "default3.handlebars->35->1250"
]
},
{
@@ -2806,7 +2806,7 @@
"default-mobile.handlebars->11->437",
"default-mobile.handlebars->11->441",
"default-mobile.handlebars->11->445",
- "default.handlebars->47->2729",
+ "default.handlebars->47->2730",
"default.handlebars->47->453",
"default.handlebars->47->456",
"default.handlebars->47->460",
@@ -2814,7 +2814,7 @@
"default.handlebars->47->468",
"default.handlebars->47->472",
"default.handlebars->47->476",
- "default3.handlebars->35->2725",
+ "default3.handlebars->35->2726",
"default3.handlebars->35->450",
"default3.handlebars->35->453",
"default3.handlebars->35->457",
@@ -3033,10 +3033,10 @@
"zh-cht": "10分鐘",
"uk": "10 хвилин",
"xloc": [
- "default.handlebars->47->1218",
- "default.handlebars->47->2055",
- "default3.handlebars->35->1213",
- "default3.handlebars->35->2035"
+ "default.handlebars->47->1219",
+ "default.handlebars->47->2056",
+ "default3.handlebars->35->1214",
+ "default3.handlebars->35->2036"
]
},
{
@@ -3066,8 +3066,8 @@
"uk": "10 секунд",
"xloc": [
"default-mobile.handlebars->11->584",
- "default.handlebars->47->1256",
- "default3.handlebars->35->1251"
+ "default.handlebars->47->1257",
+ "default3.handlebars->35->1252"
]
},
{
@@ -3243,10 +3243,10 @@
"zh-cht": "12小時",
"uk": "12 годин",
"xloc": [
- "default.handlebars->47->1226",
- "default.handlebars->47->2063",
- "default3.handlebars->35->1221",
- "default3.handlebars->35->2043"
+ "default.handlebars->47->1227",
+ "default.handlebars->47->2064",
+ "default3.handlebars->35->1222",
+ "default3.handlebars->35->2044"
]
},
{
@@ -3389,10 +3389,10 @@
"zh-cht": "15分鐘",
"uk": "15 хвилин",
"xloc": [
- "default.handlebars->47->1219",
- "default.handlebars->47->2056",
- "default3.handlebars->35->1214",
- "default3.handlebars->35->2036"
+ "default.handlebars->47->1220",
+ "default.handlebars->47->2057",
+ "default3.handlebars->35->1215",
+ "default3.handlebars->35->2037"
]
},
{
@@ -3421,10 +3421,10 @@
"zh-cht": "16小時",
"uk": "16 годин",
"xloc": [
- "default.handlebars->47->1227",
- "default.handlebars->47->2064",
- "default3.handlebars->35->1222",
- "default3.handlebars->35->2044"
+ "default.handlebars->47->1228",
+ "default.handlebars->47->2065",
+ "default3.handlebars->35->1223",
+ "default3.handlebars->35->2045"
]
},
{
@@ -3569,10 +3569,10 @@
"zh-cht": "2天",
"uk": "2 дні",
"xloc": [
- "default.handlebars->47->1229",
- "default.handlebars->47->2066",
- "default3.handlebars->35->1224",
- "default3.handlebars->35->2046"
+ "default.handlebars->47->1230",
+ "default.handlebars->47->2067",
+ "default3.handlebars->35->1225",
+ "default3.handlebars->35->2047"
]
},
{
@@ -3601,10 +3601,10 @@
"zh-cht": "2小時",
"uk": "2 години",
"xloc": [
- "default.handlebars->47->1223",
- "default.handlebars->47->2060",
- "default3.handlebars->35->1218",
- "default3.handlebars->35->2040"
+ "default.handlebars->47->1224",
+ "default.handlebars->47->2061",
+ "default3.handlebars->35->1219",
+ "default3.handlebars->35->2041"
]
},
{
@@ -3814,10 +3814,10 @@
"zh-cht": "24小時",
"uk": "24 години",
"xloc": [
- "default.handlebars->47->1228",
- "default.handlebars->47->2065",
- "default3.handlebars->35->1223",
- "default3.handlebars->35->2045"
+ "default.handlebars->47->1229",
+ "default.handlebars->47->2066",
+ "default3.handlebars->35->1224",
+ "default3.handlebars->35->2046"
]
},
{
@@ -3903,8 +3903,8 @@
"zh-cht": "2FA備份代碼已清除",
"uk": "ДФА резервні коди очищено",
"xloc": [
- "default.handlebars->47->2617",
- "default3.handlebars->35->2613"
+ "default.handlebars->47->2618",
+ "default3.handlebars->35->2614"
]
},
{
@@ -3964,8 +3964,8 @@
"zh-cht": "第二個因素",
"uk": "Двофакторний",
"xloc": [
- "default.handlebars->47->3194",
- "default3.handlebars->35->3181"
+ "default.handlebars->47->3195",
+ "default3.handlebars->35->3182"
]
},
{
@@ -3994,10 +3994,10 @@
"zh-cht": "啟用第二因素身份驗證",
"uk": "Двофакторна автентифікація увімкнена",
"xloc": [
- "default.handlebars->47->2743",
- "default.handlebars->47->2996",
- "default3.handlebars->35->2739",
- "default3.handlebars->35->2989"
+ "default.handlebars->47->2744",
+ "default.handlebars->47->2997",
+ "default3.handlebars->35->2740",
+ "default3.handlebars->35->2990"
]
},
{
@@ -4167,10 +4167,10 @@
"zh-cht": "30分鐘",
"uk": "30 хвилин",
"xloc": [
- "default.handlebars->47->1220",
- "default.handlebars->47->2057",
- "default3.handlebars->35->1215",
- "default3.handlebars->35->2037"
+ "default.handlebars->47->1221",
+ "default.handlebars->47->2058",
+ "default3.handlebars->35->1216",
+ "default3.handlebars->35->2038"
]
},
{
@@ -4200,8 +4200,8 @@
"uk": "32-біта",
"xloc": [
"default-mobile.handlebars->11->750",
- "default.handlebars->47->1608",
- "default3.handlebars->35->1592"
+ "default.handlebars->47->1609",
+ "default3.handlebars->35->1593"
]
},
{
@@ -4287,10 +4287,10 @@
"zh-cht": "4天",
"uk": "4 дні",
"xloc": [
- "default.handlebars->47->1230",
- "default.handlebars->47->2067",
- "default3.handlebars->35->1225",
- "default3.handlebars->35->2047"
+ "default.handlebars->47->1231",
+ "default.handlebars->47->2068",
+ "default3.handlebars->35->1226",
+ "default3.handlebars->35->2048"
]
},
{
@@ -4319,10 +4319,10 @@
"zh-cht": "4個小時",
"uk": "4 години",
"xloc": [
- "default.handlebars->47->1224",
- "default.handlebars->47->2061",
- "default3.handlebars->35->1219",
- "default3.handlebars->35->2041"
+ "default.handlebars->47->1225",
+ "default.handlebars->47->2062",
+ "default3.handlebars->35->1220",
+ "default3.handlebars->35->2042"
]
},
{
@@ -4468,10 +4468,10 @@
"zh-cht": "45分鐘",
"uk": "45 хвилин",
"xloc": [
- "default.handlebars->47->1221",
- "default.handlebars->47->2058",
- "default3.handlebars->35->1216",
- "default3.handlebars->35->2038"
+ "default.handlebars->47->1222",
+ "default.handlebars->47->2059",
+ "default3.handlebars->35->1217",
+ "default3.handlebars->35->2039"
]
},
{
@@ -4529,10 +4529,10 @@
"zh-cht": "5分鐘",
"uk": "5 хвилин",
"xloc": [
- "default.handlebars->47->1217",
- "default.handlebars->47->2054",
- "default3.handlebars->35->1212",
- "default3.handlebars->35->2034"
+ "default.handlebars->47->1218",
+ "default.handlebars->47->2055",
+ "default3.handlebars->35->1213",
+ "default3.handlebars->35->2035"
]
},
{
@@ -4562,8 +4562,8 @@
"uk": "5 секунд",
"xloc": [
"default-mobile.handlebars->11->583",
- "default.handlebars->47->1255",
- "default3.handlebars->35->1250"
+ "default.handlebars->47->1256",
+ "default3.handlebars->35->1251"
]
},
{
@@ -4742,10 +4742,10 @@
"zh-cht": "60分鐘",
"uk": "60 хвилин",
"xloc": [
- "default.handlebars->47->1222",
- "default.handlebars->47->2059",
- "default3.handlebars->35->1217",
- "default3.handlebars->35->2039"
+ "default.handlebars->47->1223",
+ "default.handlebars->47->2060",
+ "default3.handlebars->35->1218",
+ "default3.handlebars->35->2040"
]
},
{
@@ -4833,8 +4833,8 @@
"zh-cht": "64 位",
"xloc": [
"default-mobile.handlebars->11->752",
- "default.handlebars->47->1610",
- "default3.handlebars->35->1594"
+ "default.handlebars->47->1611",
+ "default3.handlebars->35->1595"
]
},
{
@@ -4996,8 +4996,8 @@
"zh-cht": "7天電源狀態",
"uk": "7-денний стан живлення",
"xloc": [
- "default.handlebars->47->1301",
- "default3.handlebars->35->1291"
+ "default.handlebars->47->1302",
+ "default3.handlebars->35->1292"
]
},
{
@@ -5026,8 +5026,8 @@
"zh-cht": "7天",
"uk": "7 днів",
"xloc": [
- "default.handlebars->47->2068",
- "default3.handlebars->35->2048"
+ "default.handlebars->47->2069",
+ "default3.handlebars->35->2049"
]
},
{
@@ -5117,12 +5117,12 @@
"zh-cht": "8小時",
"uk": "8 годин",
"xloc": [
- "default.handlebars->47->1225",
- "default.handlebars->47->2062",
+ "default.handlebars->47->1226",
+ "default.handlebars->47->2063",
"default.handlebars->47->562",
"default.handlebars->47->576",
- "default3.handlebars->35->1220",
- "default3.handlebars->35->2042",
+ "default3.handlebars->35->1221",
+ "default3.handlebars->35->2043",
"default3.handlebars->35->559",
"default3.handlebars->35->573"
]
@@ -5326,10 +5326,10 @@
"zh-cht": "ACM",
"xloc": [
"default-mobile.handlebars->11->516",
- "default.handlebars->47->2234",
+ "default.handlebars->47->2235",
"default.handlebars->47->442",
"default.handlebars->47->920",
- "default3.handlebars->35->2229",
+ "default3.handlebars->35->2230",
"default3.handlebars->35->439",
"default3.handlebars->35->917"
]
@@ -5460,8 +5460,8 @@
"zh-chs": "操作系统",
"zh-cht": "AMT操作系統",
"xloc": [
- "default.handlebars->47->3339",
- "default3.handlebars->35->3326"
+ "default.handlebars->47->3340",
+ "default3.handlebars->35->3327"
]
},
{
@@ -5489,8 +5489,8 @@
"zh-chs": "AMT-Redir",
"zh-cht": "AMT-Redir",
"xloc": [
- "default.handlebars->47->3201",
- "default3.handlebars->35->3188"
+ "default.handlebars->47->3202",
+ "default3.handlebars->35->3189"
]
},
{
@@ -5518,8 +5518,8 @@
"zh-chs": "AMT-WSMAN",
"zh-cht": "AMT-WSMAN",
"xloc": [
- "default.handlebars->47->3200",
- "default3.handlebars->35->3187"
+ "default.handlebars->47->3201",
+ "default3.handlebars->35->3188"
]
},
{
@@ -5538,7 +5538,7 @@
"pl": "Wersja APK MeshAgent",
"uk": "MeshAgent версія APK",
"xloc": [
- "default-mobile.handlebars->11->971",
+ "default-mobile.handlebars->11->972",
"default.handlebars->47->651",
"default3.handlebars->35->648"
]
@@ -5776,9 +5776,9 @@
"zh-cht": "拒絕存取",
"uk": "Доступ Відмовлено",
"xloc": [
- "default-mobile.handlebars->11->921",
- "default.handlebars->47->1762",
- "default3.handlebars->35->1744"
+ "default-mobile.handlebars->11->922",
+ "default.handlebars->47->1763",
+ "default3.handlebars->35->1745"
]
},
{
@@ -5867,8 +5867,8 @@
"zh-cht": "存取伺服器檔案",
"uk": "Доступ до файлів серверу",
"xloc": [
- "default.handlebars->47->2926",
- "default3.handlebars->35->2919"
+ "default.handlebars->47->2927",
+ "default3.handlebars->35->2920"
]
},
{
@@ -5995,16 +5995,16 @@
"default-mobile.handlebars->11->485",
"default-mobile.handlebars->11->96",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0",
- "default.handlebars->47->2097",
- "default.handlebars->47->2099",
- "default.handlebars->47->3393",
+ "default.handlebars->47->2098",
+ "default.handlebars->47->2100",
+ "default.handlebars->47->3394",
"default.handlebars->47->733",
"default.handlebars->47->880",
"default.handlebars->47->882",
- "default3.handlebars->35->2098",
"default3.handlebars->35->2099",
- "default3.handlebars->35->3378",
- "default3.handlebars->35->3380",
+ "default3.handlebars->35->2100",
+ "default3.handlebars->35->3379",
+ "default3.handlebars->35->3381",
"default3.handlebars->35->730",
"default3.handlebars->35->877",
"default3.handlebars->35->879"
@@ -6036,9 +6036,9 @@
"zh-cht": "帳號設定",
"uk": "Налаштування Акаунту",
"xloc": [
- "default-mobile.handlebars->11->1029",
- "default.handlebars->47->3264",
- "default3.handlebars->35->3251"
+ "default-mobile.handlebars->11->1030",
+ "default.handlebars->47->3265",
+ "default3.handlebars->35->3252"
]
},
{
@@ -6112,8 +6112,8 @@
"pl": "Konto zmienione di synchronizacji z danymi LDAP.",
"uk": "Акаунт змінено на синхронізацію з даними LDAP.",
"xloc": [
- "default.handlebars->47->2678",
- "default3.handlebars->35->2674"
+ "default.handlebars->47->2679",
+ "default3.handlebars->35->2675"
]
},
{
@@ -6142,8 +6142,8 @@
"zh-cht": "帳戶已更改:{0}",
"uk": "Акаунт змінено: {0}",
"xloc": [
- "default.handlebars->47->2590",
- "default3.handlebars->35->2586"
+ "default.handlebars->47->2591",
+ "default3.handlebars->35->2587"
]
},
{
@@ -6172,8 +6172,8 @@
"zh-cht": "創建帳戶,電子郵件為{0}",
"uk": "Акаунт створено з е-поштою {0}",
"xloc": [
- "default.handlebars->47->2589",
- "default3.handlebars->35->2585"
+ "default.handlebars->47->2590",
+ "default3.handlebars->35->2586"
]
},
{
@@ -6202,8 +6202,8 @@
"zh-cht": "已創建帳戶,名稱為 {0}。",
"uk": "Акаунт створено із іменем {0}.",
"xloc": [
- "default.handlebars->47->2652",
- "default3.handlebars->35->2648"
+ "default.handlebars->47->2653",
+ "default3.handlebars->35->2649"
]
},
{
@@ -6232,8 +6232,8 @@
"zh-cht": "帳戶已創建,用戶名是{0}",
"uk": "Акаунт створено із іменем користувача {0}",
"xloc": [
- "default.handlebars->47->2588",
- "default3.handlebars->35->2584"
+ "default.handlebars->47->2589",
+ "default3.handlebars->35->2585"
]
},
{
@@ -6264,11 +6264,11 @@
"xloc": [
"default-mobile.handlebars->11->67",
"default.handlebars->47->215",
- "default.handlebars->47->2745",
- "default.handlebars->47->2923",
+ "default.handlebars->47->2746",
+ "default.handlebars->47->2924",
"default3.handlebars->35->214",
- "default3.handlebars->35->2741",
- "default3.handlebars->35->2916"
+ "default3.handlebars->35->2742",
+ "default3.handlebars->35->2917"
]
},
{
@@ -6297,9 +6297,9 @@
"zh-cht": "達到帳戶限制。",
"uk": "Досягнуто обмеження акаунту.",
"xloc": [
- "default-mobile.handlebars->11->1041",
- "default.handlebars->47->3276",
- "default3.handlebars->35->3263",
+ "default-mobile.handlebars->11->1042",
+ "default.handlebars->47->3277",
+ "default3.handlebars->35->3264",
"login-mobile.handlebars->5->6",
"login.handlebars->5->8",
"login2.handlebars->7->206"
@@ -6362,8 +6362,8 @@
"zh-cht": "帳號登錄",
"uk": "Вхід до акаунту",
"xloc": [
- "default.handlebars->47->2525",
- "default3.handlebars->35->2521"
+ "default.handlebars->47->2526",
+ "default3.handlebars->35->2522"
]
},
{
@@ -6392,8 +6392,8 @@
"zh-cht": "從 {0}、{1}、{2} 登錄帳戶",
"uk": "Вхід до акаунту з {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2631",
- "default3.handlebars->35->2627"
+ "default.handlebars->47->2632",
+ "default3.handlebars->35->2628"
]
},
{
@@ -6407,8 +6407,8 @@
"pl": "Zapisy logowania tokenami użytkownika",
"uk": "Записи токенів входу до акаунту",
"xloc": [
- "default.handlebars->47->3243",
- "default3.handlebars->35->3230"
+ "default.handlebars->47->3244",
+ "default3.handlebars->35->3231"
]
},
{
@@ -6437,8 +6437,8 @@
"zh-cht": "帳戶登出",
"uk": "Вихід з акаунту",
"xloc": [
- "default.handlebars->47->2526",
- "default3.handlebars->35->2522"
+ "default.handlebars->47->2527",
+ "default3.handlebars->35->2523"
]
},
{
@@ -6498,8 +6498,8 @@
"zh-cht": "帳戶密碼已更改:{0}",
"uk": "Пароль до акаунту змінено: {0}",
"xloc": [
- "default.handlebars->47->2598",
- "default3.handlebars->35->2594"
+ "default.handlebars->47->2599",
+ "default3.handlebars->35->2595"
]
},
{
@@ -6528,8 +6528,8 @@
"zh-cht": "帳戶已刪除",
"uk": "Акаунт видалено",
"xloc": [
- "default.handlebars->47->2587",
- "default3.handlebars->35->2583"
+ "default.handlebars->47->2588",
+ "default3.handlebars->35->2584"
]
},
{
@@ -6588,10 +6588,10 @@
"zh-cht": "指令",
"uk": "Дія",
"xloc": [
- "default-mobile.handlebars->11->927",
- "default.handlebars->47->1768",
+ "default-mobile.handlebars->11->928",
+ "default.handlebars->47->1769",
"default.handlebars->container->column_l->p42->p42tbl->1->0->8",
- "default3.handlebars->35->1750",
+ "default3.handlebars->35->1751",
"default3.handlebars->container->column_l->p42->p42tbl->1->0->17"
]
},
@@ -6621,10 +6621,10 @@
"zh-cht": "動作檔案",
"uk": "Файл Операцій",
"xloc": [
- "default.handlebars->47->1348",
- "default.handlebars->47->1350",
- "default3.handlebars->35->1336",
- "default3.handlebars->35->1338"
+ "default.handlebars->47->1349",
+ "default.handlebars->47->1351",
+ "default3.handlebars->35->1337",
+ "default3.handlebars->35->1339"
]
},
{
@@ -6657,11 +6657,11 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
- "default.handlebars->47->1012",
+ "default.handlebars->47->1013",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
- "default3.handlebars->35->1009",
+ "default3.handlebars->35->1010",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
"default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -6781,8 +6781,8 @@
"zh-cht": "如果ACM失敗,則激活到CCM",
"uk": "Активувати CCM, якщо ACM зазнало невдачі",
"xloc": [
- "default.handlebars->47->2289",
- "default3.handlebars->35->2282"
+ "default.handlebars->47->2290",
+ "default3.handlebars->35->2283"
]
},
{
@@ -6813,11 +6813,11 @@
"xloc": [
"default-mobile.handlebars->11->511",
"default-mobile.handlebars->11->513",
- "default-mobile.handlebars->11->823",
- "default.handlebars->47->1663",
+ "default-mobile.handlebars->11->824",
+ "default.handlebars->47->1664",
"default.handlebars->47->913",
"default.handlebars->47->915",
- "default3.handlebars->35->1645",
+ "default3.handlebars->35->1646",
"default3.handlebars->35->910",
"default3.handlebars->35->912"
]
@@ -6878,10 +6878,10 @@
"zh-cht": "主動設備共享",
"uk": "Спільний доступ до пристрою активний",
"xloc": [
- "default.handlebars->47->1088",
- "default.handlebars->47->2238",
- "default3.handlebars->35->1085",
- "default3.handlebars->35->2233"
+ "default.handlebars->47->1089",
+ "default.handlebars->47->2239",
+ "default3.handlebars->35->1086",
+ "default3.handlebars->35->2234"
]
},
{
@@ -6910,8 +6910,8 @@
"zh-cht": "活動登錄令牌",
"uk": "Активні Токени Входу",
"xloc": [
- "default.handlebars->47->2128",
- "default3.handlebars->35->2127"
+ "default.handlebars->47->2129",
+ "default3.handlebars->35->2128"
]
},
{
@@ -6940,9 +6940,9 @@
"zh-cht": "活躍用戶",
"uk": "Активний Користувач",
"xloc": [
- "default-mobile.handlebars->11->784",
- "default.handlebars->47->966",
- "default3.handlebars->35->963"
+ "default-mobile.handlebars->11->785",
+ "default.handlebars->47->967",
+ "default3.handlebars->35->964"
]
},
{
@@ -6971,9 +6971,9 @@
"zh-cht": "活躍用戶",
"uk": "Користувачі Активні",
"xloc": [
- "default-mobile.handlebars->11->783",
- "default.handlebars->47->965",
- "default3.handlebars->35->962"
+ "default-mobile.handlebars->11->784",
+ "default.handlebars->47->966",
+ "default3.handlebars->35->963"
]
},
{
@@ -7029,10 +7029,10 @@
"uk": "Додати",
"xloc": [
"default-mobile.handlebars->11->675",
- "default.handlebars->47->1438",
- "default.handlebars->47->1444",
- "default3.handlebars->35->1425",
- "default3.handlebars->35->1431"
+ "default.handlebars->47->1439",
+ "default.handlebars->47->1445",
+ "default3.handlebars->35->1426",
+ "default3.handlebars->35->1432"
]
},
{
@@ -7113,9 +7113,9 @@
"zh-cht": "新增代理",
"uk": "Додати Агента",
"xloc": [
- "default.handlebars->47->2228",
+ "default.handlebars->47->2229",
"default.handlebars->47->494",
- "default3.handlebars->35->2223",
+ "default3.handlebars->35->2224",
"default3.handlebars->35->491"
]
},
@@ -7171,13 +7171,13 @@
"zh-cht": "新增裝置",
"uk": "Додати Пристрій",
"xloc": [
- "default.handlebars->47->2232",
- "default.handlebars->47->2898",
- "default.handlebars->47->3093",
+ "default.handlebars->47->2233",
+ "default.handlebars->47->2899",
+ "default.handlebars->47->3094",
"default.handlebars->47->498",
- "default3.handlebars->35->2227",
- "default3.handlebars->35->2891",
- "default3.handlebars->35->3080",
+ "default3.handlebars->35->2228",
+ "default3.handlebars->35->2892",
+ "default3.handlebars->35->3081",
"default3.handlebars->35->495"
]
},
@@ -7207,8 +7207,8 @@
"zh-cht": "新增裝置日誌",
"uk": "Додати Подію Пристрою",
"xloc": [
- "default.handlebars->47->1174",
- "default3.handlebars->35->1169"
+ "default.handlebars->47->1175",
+ "default3.handlebars->35->1170"
]
},
{
@@ -7237,13 +7237,13 @@
"zh-cht": "新增裝置群",
"uk": "Додати Групу Пристроїв",
"xloc": [
- "default.handlebars->47->2375",
- "default.handlebars->47->2892",
- "default.handlebars->47->3081",
+ "default.handlebars->47->2376",
+ "default.handlebars->47->2893",
+ "default.handlebars->47->3082",
"default.handlebars->47->395",
- "default3.handlebars->35->2371",
- "default3.handlebars->35->2885",
- "default3.handlebars->35->3068",
+ "default3.handlebars->35->2372",
+ "default3.handlebars->35->2886",
+ "default3.handlebars->35->3069",
"default3.handlebars->35->392"
]
},
@@ -7273,8 +7273,8 @@
"zh-cht": "新增裝置群權限",
"uk": "Додайте Дозволи Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2372",
- "default3.handlebars->35->2368"
+ "default.handlebars->47->2373",
+ "default3.handlebars->35->2369"
]
},
{
@@ -7303,10 +7303,10 @@
"zh-cht": "新增裝置權限",
"uk": "Додати Дозволи Пристрою",
"xloc": [
- "default.handlebars->47->2377",
- "default.handlebars->47->2379",
- "default3.handlebars->35->2373",
- "default3.handlebars->35->2375"
+ "default.handlebars->47->2378",
+ "default.handlebars->47->2380",
+ "default3.handlebars->35->2374",
+ "default3.handlebars->35->2376"
]
},
{
@@ -7477,8 +7477,8 @@
"zh-cht": "新增成員身份",
"uk": "Додати Приналежність",
"xloc": [
- "default.handlebars->47->3113",
- "default3.handlebars->35->3100"
+ "default.handlebars->47->3114",
+ "default3.handlebars->35->3101"
]
},
{
@@ -7563,14 +7563,14 @@
"zh-cht": "新增安全密鑰",
"uk": "Додати Ключ Безпеки",
"xloc": [
- "default.handlebars->47->1843",
"default.handlebars->47->1844",
+ "default.handlebars->47->1845",
"default.handlebars->47->249",
"default.handlebars->47->251",
"default.handlebars->47->254",
"default.handlebars->47->256",
- "default3.handlebars->35->1823",
"default3.handlebars->35->1824",
+ "default3.handlebars->35->1825",
"default3.handlebars->35->246",
"default3.handlebars->35->248",
"default3.handlebars->35->251",
@@ -7603,9 +7603,9 @@
"zh-cht": "新增用戶",
"uk": "Додати Користувача",
"xloc": [
- "default-mobile.handlebars->11->953",
- "default.handlebars->47->1080",
- "default3.handlebars->35->1077"
+ "default-mobile.handlebars->11->954",
+ "default.handlebars->47->1081",
+ "default3.handlebars->35->1078"
]
},
{
@@ -7634,8 +7634,8 @@
"zh-cht": "新增用戶裝置權限",
"uk": "Додати Дозволи для Пристрою Користувача",
"xloc": [
- "default.handlebars->47->2382",
- "default3.handlebars->35->2378"
+ "default.handlebars->47->2383",
+ "default3.handlebars->35->2379"
]
},
{
@@ -7664,14 +7664,14 @@
"zh-cht": "新增用戶群",
"uk": "Додати Групу Користувачів",
"xloc": [
- "default.handlebars->47->1081",
- "default.handlebars->47->2222",
- "default.handlebars->47->2374",
- "default.handlebars->47->3087",
- "default3.handlebars->35->1078",
- "default3.handlebars->35->2217",
- "default3.handlebars->35->2370",
- "default3.handlebars->35->3074"
+ "default.handlebars->47->1082",
+ "default.handlebars->47->2223",
+ "default.handlebars->47->2375",
+ "default.handlebars->47->3088",
+ "default3.handlebars->35->1079",
+ "default3.handlebars->35->2218",
+ "default3.handlebars->35->2371",
+ "default3.handlebars->35->3075"
]
},
{
@@ -7700,8 +7700,8 @@
"zh-cht": "新增用戶群裝置權限",
"uk": "Додати Дозволи на Пристрої Групи Користувачів",
"xloc": [
- "default.handlebars->47->2384",
- "default3.handlebars->35->2380"
+ "default.handlebars->47->2385",
+ "default3.handlebars->35->2381"
]
},
{
@@ -7730,7 +7730,7 @@
"zh-cht": "將用戶新增到裝置群",
"uk": "Додати Користувача до Групи Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->994"
+ "default-mobile.handlebars->11->995"
]
},
{
@@ -7785,10 +7785,10 @@
"zh-cht": "新增用戶",
"uk": "Додати Користувачів",
"xloc": [
- "default.handlebars->47->2221",
- "default.handlebars->47->2887",
- "default3.handlebars->35->2216",
- "default3.handlebars->35->2880"
+ "default.handlebars->47->2222",
+ "default.handlebars->47->2888",
+ "default3.handlebars->35->2217",
+ "default3.handlebars->35->2881"
]
},
{
@@ -7817,8 +7817,8 @@
"zh-cht": "將用戶新增到裝置群",
"uk": "Додати Користувачів до Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2371",
- "default3.handlebars->35->2367"
+ "default.handlebars->47->2372",
+ "default3.handlebars->35->2368"
]
},
{
@@ -7847,8 +7847,8 @@
"zh-cht": "將用戶新增到用戶群",
"uk": "Додати Користувачів до Групи Користувачів",
"xloc": [
- "default.handlebars->47->2922",
- "default3.handlebars->35->2915"
+ "default.handlebars->47->2923",
+ "default3.handlebars->35->2916"
]
},
{
@@ -8053,9 +8053,9 @@
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
"uk": "Додати новий комп'ютер до цієї групи пристроїв, встановивши MeshAgent.",
"xloc": [
- "default.handlebars->47->2227",
+ "default.handlebars->47->2228",
"default.handlebars->47->493",
- "default3.handlebars->35->2222",
+ "default3.handlebars->35->2223",
"default3.handlebars->35->490"
]
},
@@ -8085,9 +8085,9 @@
"zh-cht": "添加位於本地網絡上的設備。",
"uk": "Додати пристрій, що знаходиться в локальній мережі.",
"xloc": [
- "default.handlebars->47->2231",
+ "default.handlebars->47->2232",
"default.handlebars->47->497",
- "default3.handlebars->35->2226",
+ "default3.handlebars->35->2227",
"default3.handlebars->35->494"
]
},
@@ -8207,8 +8207,8 @@
"zh-cht": "添加了身份驗證應用程序",
"uk": "Додано застосунок автентифікації",
"xloc": [
- "default.handlebars->47->2614",
- "default3.handlebars->35->2610"
+ "default.handlebars->47->2615",
+ "default3.handlebars->35->2611"
]
},
{
@@ -8237,8 +8237,8 @@
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
"uk": "Додано поширення пристрою {0} від {1} до {2}",
"xloc": [
- "default.handlebars->47->2625",
- "default3.handlebars->35->2621"
+ "default.handlebars->47->2626",
+ "default3.handlebars->35->2622"
]
},
{
@@ -8267,8 +8267,8 @@
"zh-cht": "添加了每天重複的設備共享 {0}。",
"uk": "Додано поширення пристрою {0}, із щоденною переактивацією.",
"xloc": [
- "default.handlebars->47->2662",
- "default3.handlebars->35->2658"
+ "default.handlebars->47->2663",
+ "default3.handlebars->35->2659"
]
},
{
@@ -8297,8 +8297,8 @@
"zh-cht": "添加了每週重複的設備共享 {0}。",
"uk": "Додано поширення пристрою {0}, із щотижневою переактивацією.",
"xloc": [
- "default.handlebars->47->2663",
- "default3.handlebars->35->2659"
+ "default.handlebars->47->2664",
+ "default3.handlebars->35->2660"
]
},
{
@@ -8327,8 +8327,8 @@
"zh-cht": "添加了無限時間的設備共享 {0}。",
"uk": "Додано поширення пристрою {0} без обмеження часу.",
"xloc": [
- "default.handlebars->47->2655",
- "default3.handlebars->35->2651"
+ "default.handlebars->47->2656",
+ "default3.handlebars->35->2652"
]
},
{
@@ -8357,10 +8357,10 @@
"zh-cht": "已將設備{0}添加到設備組{1}",
"uk": "Пристрій {0} додано до групи пристроїв {1}",
"xloc": [
- "default.handlebars->47->2581",
- "default.handlebars->47->2608",
- "default3.handlebars->35->2577",
- "default3.handlebars->35->2604"
+ "default.handlebars->47->2582",
+ "default.handlebars->47->2609",
+ "default3.handlebars->35->2578",
+ "default3.handlebars->35->2605"
]
},
{
@@ -8389,8 +8389,8 @@
"zh-cht": "添加了登錄令牌",
"uk": "Додано токен лоґіну",
"xloc": [
- "default.handlebars->47->2639",
- "default3.handlebars->35->2635"
+ "default.handlebars->47->2640",
+ "default3.handlebars->35->2636"
]
},
{
@@ -8419,8 +8419,8 @@
"zh-cht": "增加推送通知認證設備",
"uk": "На пристрій додано автентифікацію через push-сповіщення",
"xloc": [
- "default.handlebars->47->2637",
- "default3.handlebars->35->2633"
+ "default.handlebars->47->2638",
+ "default3.handlebars->35->2634"
]
},
{
@@ -8449,8 +8449,8 @@
"zh-cht": "添加了安全密鑰",
"uk": "Додано Ключ Безпеки",
"xloc": [
- "default.handlebars->47->2619",
- "default3.handlebars->35->2615"
+ "default.handlebars->47->2620",
+ "default3.handlebars->35->2616"
]
},
{
@@ -8479,8 +8479,8 @@
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"uk": "Групу користувачів {0} додано до групи пристроїв {1}",
"xloc": [
- "default.handlebars->47->2592",
- "default3.handlebars->35->2588"
+ "default.handlebars->47->2593",
+ "default3.handlebars->35->2589"
]
},
{
@@ -8509,10 +8509,10 @@
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"uk": "Додано користувача {0} до групи користувачів {1}",
"xloc": [
- "default.handlebars->47->2595",
- "default.handlebars->47->2604",
- "default3.handlebars->35->2591",
- "default3.handlebars->35->2600"
+ "default.handlebars->47->2596",
+ "default.handlebars->47->2605",
+ "default3.handlebars->35->2592",
+ "default3.handlebars->35->2601"
]
},
{
@@ -8600,9 +8600,9 @@
"zh-cht": "管理員控制模式(ACM)",
"uk": "Режим Керування Адміністратора (eng. ACM)",
"xloc": [
- "default-mobile.handlebars->11->825",
- "default.handlebars->47->1665",
- "default3.handlebars->35->1647"
+ "default-mobile.handlebars->11->826",
+ "default.handlebars->47->1666",
+ "default3.handlebars->35->1648"
]
},
{
@@ -8631,9 +8631,9 @@
"zh-cht": "管理員憑證",
"uk": "Облікові Дані Адміністратора",
"xloc": [
- "default-mobile.handlebars->11->831",
- "default.handlebars->47->1671",
- "default3.handlebars->35->1653"
+ "default-mobile.handlebars->11->832",
+ "default.handlebars->47->1672",
+ "default3.handlebars->35->1654"
]
},
{
@@ -8693,8 +8693,8 @@
"zh-cht": "管理領域",
"uk": "Області Адміністратора",
"xloc": [
- "default.handlebars->47->2974",
- "default3.handlebars->35->2967"
+ "default.handlebars->47->2975",
+ "default3.handlebars->35->2968"
]
},
{
@@ -8754,8 +8754,8 @@
"zh-cht": "管理領域",
"uk": "Адміністративні Області",
"xloc": [
- "default.handlebars->47->2819",
- "default3.handlebars->35->2812"
+ "default.handlebars->47->2820",
+ "default3.handlebars->35->2813"
]
},
{
@@ -8784,8 +8784,8 @@
"zh-cht": "管理員",
"uk": "Адміністратор",
"xloc": [
- "default.handlebars->47->2737",
- "default3.handlebars->35->2733"
+ "default.handlebars->47->2738",
+ "default3.handlebars->35->2734"
]
},
{
@@ -8815,8 +8815,8 @@
"uk": "Африканська",
"xloc": [
"default-mobile.handlebars->11->113",
- "default.handlebars->47->1846",
- "default3.handlebars->35->1826",
+ "default.handlebars->47->1847",
+ "default3.handlebars->35->1827",
"login2.handlebars->7->1"
]
},
@@ -8850,16 +8850,16 @@
"default-mobile.handlebars->11->475",
"default-mobile.handlebars->11->532",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
- "default.handlebars->47->2455",
- "default.handlebars->47->2468",
- "default.handlebars->47->3337",
+ "default.handlebars->47->2456",
+ "default.handlebars->47->2469",
+ "default.handlebars->47->3338",
"default.handlebars->47->415",
"default.handlebars->47->721",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7meshkvm",
- "default3.handlebars->35->2451",
- "default3.handlebars->35->2464",
- "default3.handlebars->35->3324",
+ "default3.handlebars->35->2452",
+ "default3.handlebars->35->2465",
+ "default3.handlebars->35->3325",
"default3.handlebars->35->412",
"default3.handlebars->35->718",
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1",
@@ -8892,10 +8892,10 @@
"zh-cht": "代理+Intel® AMT",
"uk": "Агент + Intel® AMT",
"xloc": [
- "default.handlebars->47->2457",
- "default.handlebars->47->2470",
- "default3.handlebars->35->2453",
- "default3.handlebars->35->2466"
+ "default.handlebars->47->2458",
+ "default.handlebars->47->2471",
+ "default3.handlebars->35->2454",
+ "default3.handlebars->35->2467"
]
},
{
@@ -8955,11 +8955,11 @@
"zh-cht": "代理控制台",
"uk": "Консоль Агента",
"xloc": [
- "default-mobile.handlebars->11->1000",
+ "default-mobile.handlebars->11->1001",
"default-mobile.handlebars->11->611",
- "default.handlebars->47->2392",
+ "default.handlebars->47->2393",
"default.handlebars->47->811",
- "default3.handlebars->35->2388",
+ "default3.handlebars->35->2389",
"default3.handlebars->35->808"
]
},
@@ -8989,8 +8989,8 @@
"zh-cht": "代理錯誤計數器",
"uk": "Лічильник Помилок Агента",
"xloc": [
- "default.handlebars->47->3306",
- "default3.handlebars->35->3293"
+ "default.handlebars->47->3307",
+ "default3.handlebars->35->3294"
]
},
{
@@ -9208,10 +9208,10 @@
"zh-cht": "代理自行共享",
"uk": "Само-Поширення Агента",
"xloc": [
- "default.handlebars->47->1109",
- "default.handlebars->47->2259",
- "default3.handlebars->35->1106",
- "default3.handlebars->35->2254"
+ "default.handlebars->47->1110",
+ "default.handlebars->47->2260",
+ "default3.handlebars->35->1107",
+ "default3.handlebars->35->2255"
]
},
{
@@ -9240,8 +9240,8 @@
"zh-cht": "代理時段",
"uk": "Сесії Агента",
"xloc": [
- "default.handlebars->47->3322",
- "default3.handlebars->35->3309"
+ "default.handlebars->47->3323",
+ "default3.handlebars->35->3310"
]
},
{
@@ -9359,9 +9359,9 @@
"zh-cht": "代理類型",
"uk": "Тип Агента",
"xloc": [
- "default.handlebars->47->2466",
+ "default.handlebars->47->2467",
"default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1",
- "default3.handlebars->35->2462",
+ "default3.handlebars->35->2463",
"default3.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1"
]
},
@@ -9423,8 +9423,8 @@
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"uk": "Агент закрив сесію зі стисненням {0}% між агентом і сервером. Надіслано: {1}, стиснуто: {2}",
"xloc": [
- "default.handlebars->47->2578",
- "default3.handlebars->35->2574"
+ "default.handlebars->47->2579",
+ "default3.handlebars->35->2575"
]
},
{
@@ -9453,11 +9453,11 @@
"zh-cht": "代理已連接",
"uk": "Агент підключено",
"xloc": [
- "default.handlebars->47->1067",
"default.handlebars->47->1068",
+ "default.handlebars->47->1069",
"default.handlebars->47->265",
- "default3.handlebars->35->1064",
"default3.handlebars->35->1065",
+ "default3.handlebars->35->1066",
"default3.handlebars->35->262"
]
},
@@ -9655,9 +9655,9 @@
"zh-cht": "代理離線",
"uk": "Агент офлайн",
"xloc": [
- "default-mobile.handlebars->11->919",
- "default.handlebars->47->1760",
- "default3.handlebars->35->1742"
+ "default-mobile.handlebars->11->920",
+ "default.handlebars->47->1761",
+ "default3.handlebars->35->1743"
]
},
{
@@ -9686,9 +9686,9 @@
"zh-cht": "代理在線",
"uk": "Агент онлайн",
"xloc": [
- "default-mobile.handlebars->11->918",
- "default.handlebars->47->1759",
- "default3.handlebars->35->1741"
+ "default-mobile.handlebars->11->919",
+ "default.handlebars->47->1760",
+ "default3.handlebars->35->1742"
]
},
{
@@ -9795,8 +9795,8 @@
"zh-cht": "代理在特權降低的遠程設備上運行。",
"uk": "Агент працює на віддаленому пристрої без прав адміністратора.",
"xloc": [
- "default.handlebars->47->1061",
- "default3.handlebars->35->1058"
+ "default.handlebars->47->1062",
+ "default3.handlebars->35->1059"
]
},
{
@@ -9929,11 +9929,11 @@
"zh-cht": "代理",
"uk": "Агент",
"xloc": [
- "default.handlebars->47->2423",
- "default.handlebars->47->3350",
+ "default.handlebars->47->2424",
+ "default.handlebars->47->3351",
"default.handlebars->47->581",
- "default3.handlebars->35->2419",
- "default3.handlebars->35->3337",
+ "default3.handlebars->35->2420",
+ "default3.handlebars->35->3338",
"default3.handlebars->35->578"
]
},
@@ -9964,8 +9964,8 @@
"uk": "Албанська",
"xloc": [
"default-mobile.handlebars->11->114",
- "default.handlebars->47->1847",
- "default3.handlebars->35->1827",
+ "default.handlebars->47->1848",
+ "default3.handlebars->35->1828",
"login2.handlebars->7->2"
]
},
@@ -9976,9 +9976,9 @@
"pl": "Okno Powiadomienia",
"uk": "Вікно Попередження",
"xloc": [
- "default.handlebars->47->1193",
+ "default.handlebars->47->1194",
"default.handlebars->47->774",
- "default3.handlebars->35->1188",
+ "default3.handlebars->35->1189",
"default3.handlebars->35->771"
]
},
@@ -10011,9 +10011,9 @@
"default-mobile.handlebars->11->367",
"default-mobile.handlebars->11->713",
"default-mobile.handlebars->11->715",
- "default.handlebars->47->3170",
+ "default.handlebars->47->3171",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1",
- "default3.handlebars->35->3157",
+ "default3.handlebars->35->3158",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar->DevFilterSelect->1"
]
},
@@ -10043,8 +10043,8 @@
"zh-cht": "全部可用",
"uk": "Усі Наявні",
"xloc": [
- "default.handlebars->47->2699",
- "default3.handlebars->35->2695"
+ "default.handlebars->47->2700",
+ "default3.handlebars->35->2696"
]
},
{
@@ -10073,9 +10073,9 @@
"zh-cht": "所有可用的代理",
"uk": "Усі Наявні Агенти",
"xloc": [
- "default.handlebars->47->2424",
+ "default.handlebars->47->2425",
"default.handlebars->47->582",
- "default3.handlebars->35->2420",
+ "default3.handlebars->35->2421",
"default3.handlebars->35->579"
]
},
@@ -10105,8 +10105,8 @@
"zh-cht": "所有顯示",
"uk": "Усі Дисплеї",
"xloc": [
- "default.handlebars->47->1489",
- "default3.handlebars->35->1474"
+ "default.handlebars->47->1490",
+ "default3.handlebars->35->1475"
]
},
{
@@ -10135,8 +10135,8 @@
"zh-cht": "所有事件",
"uk": "Усі Події",
"xloc": [
- "default.handlebars->47->2697",
- "default3.handlebars->35->2693"
+ "default.handlebars->47->2698",
+ "default3.handlebars->35->2694"
]
},
{
@@ -10165,12 +10165,12 @@
"zh-cht": "全部聚焦",
"uk": "Фокусувати Все",
"xloc": [
- "default.handlebars->47->1407",
- "default.handlebars->47->1409",
+ "default.handlebars->47->1408",
"default.handlebars->47->1410",
- "default3.handlebars->35->1394",
- "default3.handlebars->35->1396",
- "default3.handlebars->35->1397"
+ "default.handlebars->47->1411",
+ "default3.handlebars->35->1395",
+ "default3.handlebars->35->1397",
+ "default3.handlebars->35->1398"
]
},
{
@@ -10191,7 +10191,7 @@
"en": "All Themes",
"nl": "Alle thema's",
"xloc": [
- "default3.handlebars->35->2095"
+ "default3.handlebars->35->2096"
]
},
{
@@ -10249,10 +10249,10 @@
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"uk": "Дозволити користувачам керувати цією групою пристроїв і пристроями в цій групі.",
"xloc": [
- "default.handlebars->47->2336",
- "default.handlebars->47->2919",
- "default3.handlebars->35->2332",
- "default3.handlebars->35->2912"
+ "default.handlebars->47->2337",
+ "default.handlebars->47->2920",
+ "default3.handlebars->35->2333",
+ "default3.handlebars->35->2913"
]
},
{
@@ -10281,8 +10281,8 @@
"zh-cht": "允許用戶管理此裝置。",
"uk": "Дозволити користувачам керувати цим пристроєм.",
"xloc": [
- "default.handlebars->47->2337",
- "default3.handlebars->35->2333"
+ "default.handlebars->47->2338",
+ "default3.handlebars->35->2334"
]
},
{
@@ -10400,10 +10400,10 @@
"xloc": [
"default-mobile.handlebars->11->668",
"default-mobile.handlebars->11->672",
- "default.handlebars->47->1431",
- "default.handlebars->47->1435",
- "default3.handlebars->35->1418",
- "default3.handlebars->35->1422"
+ "default.handlebars->47->1432",
+ "default.handlebars->47->1436",
+ "default3.handlebars->35->1419",
+ "default3.handlebars->35->1423"
]
},
{
@@ -10432,8 +10432,8 @@
"zh-cht": "替代Shell",
"uk": "Alt Оболонка",
"xloc": [
- "default.handlebars->47->1397",
- "default3.handlebars->35->1384"
+ "default.handlebars->47->1398",
+ "default3.handlebars->35->1385"
]
},
{
@@ -10522,8 +10522,8 @@
"zh-cht": "備用(F10 = ESC + 0)",
"uk": "Замінити (F10 = ESC+0)",
"xloc": [
- "default.handlebars->47->1523",
- "default3.handlebars->35->1508",
+ "default.handlebars->47->1524",
+ "default3.handlebars->35->1509",
"sharing.handlebars->11->37"
]
},
@@ -10620,14 +10620,14 @@
"zh-cht": "一直通知",
"uk": "Завжди Сповіщувати",
"xloc": [
- "default.handlebars->47->2198",
- "default.handlebars->47->2878",
- "default.handlebars->47->2983",
- "default.handlebars->47->975",
- "default3.handlebars->35->2193",
- "default3.handlebars->35->2871",
- "default3.handlebars->35->2976",
- "default3.handlebars->35->972"
+ "default.handlebars->47->2199",
+ "default.handlebars->47->2879",
+ "default.handlebars->47->2984",
+ "default.handlebars->47->976",
+ "default3.handlebars->35->2194",
+ "default3.handlebars->35->2872",
+ "default3.handlebars->35->2977",
+ "default3.handlebars->35->973"
]
},
{
@@ -10656,14 +10656,14 @@
"zh-cht": "一直提示",
"uk": "Завжди Запитувати",
"xloc": [
- "default.handlebars->47->2199",
- "default.handlebars->47->2879",
- "default.handlebars->47->2984",
- "default.handlebars->47->976",
- "default3.handlebars->35->2194",
- "default3.handlebars->35->2872",
- "default3.handlebars->35->2977",
- "default3.handlebars->35->973"
+ "default.handlebars->47->2200",
+ "default.handlebars->47->2880",
+ "default.handlebars->47->2985",
+ "default.handlebars->47->977",
+ "default3.handlebars->35->2195",
+ "default3.handlebars->35->2873",
+ "default3.handlebars->35->2978",
+ "default3.handlebars->35->974"
]
},
{
@@ -10770,8 +10770,8 @@
"pl": "Wystąpił nieznany błąd.",
"uk": "Сталася невідома помилка.",
"xloc": [
- "default.handlebars->47->3122",
- "default3.handlebars->35->3109"
+ "default.handlebars->47->3123",
+ "default3.handlebars->35->3110"
]
},
{
@@ -10835,7 +10835,7 @@
"zh-cht": "Android APK",
"uk": "Android APK",
"xloc": [
- "default-mobile.handlebars->11->972",
+ "default-mobile.handlebars->11->973",
"default.handlebars->47->650",
"default3.handlebars->35->647"
]
@@ -10924,7 +10924,7 @@
"zh-cht": "安卓安裝",
"uk": "Інсталяція Android",
"xloc": [
- "default-mobile.handlebars->11->974"
+ "default-mobile.handlebars->11->975"
]
},
{
@@ -10943,9 +10943,9 @@
"nl": "Android Versie",
"uk": "Версія Android",
"xloc": [
- "default-mobile.handlebars->11->800",
- "default.handlebars->47->1630",
- "default3.handlebars->35->1614"
+ "default-mobile.handlebars->11->801",
+ "default.handlebars->47->1631",
+ "default3.handlebars->35->1615"
]
},
{
@@ -11005,10 +11005,10 @@
"zh-cht": "殺毒軟件未激活",
"uk": "Антивірус непрацюючий",
"xloc": [
- "default.handlebars->47->2459",
- "default.handlebars->47->2473",
- "default3.handlebars->35->2455",
- "default3.handlebars->35->2469"
+ "default.handlebars->47->2460",
+ "default.handlebars->47->2474",
+ "default3.handlebars->35->2456",
+ "default3.handlebars->35->2470"
]
},
{
@@ -11452,8 +11452,8 @@
"uk": "Арабська (Алжир)",
"xloc": [
"default-mobile.handlebars->11->116",
- "default.handlebars->47->1849",
- "default3.handlebars->35->1829",
+ "default.handlebars->47->1850",
+ "default3.handlebars->35->1830",
"login2.handlebars->7->4"
]
},
@@ -11484,8 +11484,8 @@
"uk": "Арабська (Бахрейн)",
"xloc": [
"default-mobile.handlebars->11->117",
- "default.handlebars->47->1850",
- "default3.handlebars->35->1830",
+ "default.handlebars->47->1851",
+ "default3.handlebars->35->1831",
"login2.handlebars->7->5"
]
},
@@ -11516,8 +11516,8 @@
"uk": "Арабська (Єгипет)",
"xloc": [
"default-mobile.handlebars->11->118",
- "default.handlebars->47->1851",
- "default3.handlebars->35->1831",
+ "default.handlebars->47->1852",
+ "default3.handlebars->35->1832",
"login2.handlebars->7->6"
]
},
@@ -11548,8 +11548,8 @@
"uk": "Арабська (Ірак)",
"xloc": [
"default-mobile.handlebars->11->119",
- "default.handlebars->47->1852",
- "default3.handlebars->35->1832",
+ "default.handlebars->47->1853",
+ "default3.handlebars->35->1833",
"login2.handlebars->7->7"
]
},
@@ -11580,8 +11580,8 @@
"uk": "Арабська (Йорданія)",
"xloc": [
"default-mobile.handlebars->11->120",
- "default.handlebars->47->1853",
- "default3.handlebars->35->1833",
+ "default.handlebars->47->1854",
+ "default3.handlebars->35->1834",
"login2.handlebars->7->8"
]
},
@@ -11612,8 +11612,8 @@
"uk": "Арабська (Кувейт)",
"xloc": [
"default-mobile.handlebars->11->121",
- "default.handlebars->47->1854",
- "default3.handlebars->35->1834",
+ "default.handlebars->47->1855",
+ "default3.handlebars->35->1835",
"login2.handlebars->7->9"
]
},
@@ -11644,8 +11644,8 @@
"uk": "Арабська (Ліван)",
"xloc": [
"default-mobile.handlebars->11->122",
- "default.handlebars->47->1855",
- "default3.handlebars->35->1835",
+ "default.handlebars->47->1856",
+ "default3.handlebars->35->1836",
"login2.handlebars->7->10"
]
},
@@ -11676,8 +11676,8 @@
"uk": "Арабська (Лівія)",
"xloc": [
"default-mobile.handlebars->11->123",
- "default.handlebars->47->1856",
- "default3.handlebars->35->1836",
+ "default.handlebars->47->1857",
+ "default3.handlebars->35->1837",
"login2.handlebars->7->11"
]
},
@@ -11708,8 +11708,8 @@
"uk": "Арабська (Марокко)",
"xloc": [
"default-mobile.handlebars->11->124",
- "default.handlebars->47->1857",
- "default3.handlebars->35->1837",
+ "default.handlebars->47->1858",
+ "default3.handlebars->35->1838",
"login2.handlebars->7->12"
]
},
@@ -11740,8 +11740,8 @@
"uk": "Арабська (Оман)",
"xloc": [
"default-mobile.handlebars->11->125",
- "default.handlebars->47->1858",
- "default3.handlebars->35->1838",
+ "default.handlebars->47->1859",
+ "default3.handlebars->35->1839",
"login2.handlebars->7->13"
]
},
@@ -11772,8 +11772,8 @@
"uk": "Арабська (Катар)",
"xloc": [
"default-mobile.handlebars->11->126",
- "default.handlebars->47->1859",
- "default3.handlebars->35->1839",
+ "default.handlebars->47->1860",
+ "default3.handlebars->35->1840",
"login2.handlebars->7->14"
]
},
@@ -11804,8 +11804,8 @@
"uk": "Арабська (Саудівська Аравія)",
"xloc": [
"default-mobile.handlebars->11->127",
- "default.handlebars->47->1860",
- "default3.handlebars->35->1840",
+ "default.handlebars->47->1861",
+ "default3.handlebars->35->1841",
"login2.handlebars->7->15"
]
},
@@ -11836,8 +11836,8 @@
"uk": "Арабська (Стандартна)",
"xloc": [
"default-mobile.handlebars->11->115",
- "default.handlebars->47->1848",
- "default3.handlebars->35->1828",
+ "default.handlebars->47->1849",
+ "default3.handlebars->35->1829",
"login2.handlebars->7->3"
]
},
@@ -11868,8 +11868,8 @@
"uk": "Арабська (Сирія)",
"xloc": [
"default-mobile.handlebars->11->128",
- "default.handlebars->47->1861",
- "default3.handlebars->35->1841",
+ "default.handlebars->47->1862",
+ "default3.handlebars->35->1842",
"login2.handlebars->7->16"
]
},
@@ -11900,8 +11900,8 @@
"uk": "Арабська (Туніс)",
"xloc": [
"default-mobile.handlebars->11->129",
- "default.handlebars->47->1862",
- "default3.handlebars->35->1842",
+ "default.handlebars->47->1863",
+ "default3.handlebars->35->1843",
"login2.handlebars->7->17"
]
},
@@ -11932,8 +11932,8 @@
"uk": "Арабська (ОАЕ)",
"xloc": [
"default-mobile.handlebars->11->130",
- "default.handlebars->47->1863",
- "default3.handlebars->35->1843",
+ "default.handlebars->47->1864",
+ "default3.handlebars->35->1844",
"login2.handlebars->7->18"
]
},
@@ -11964,8 +11964,8 @@
"uk": "Арабська (Ємен)",
"xloc": [
"default-mobile.handlebars->11->131",
- "default.handlebars->47->1864",
- "default3.handlebars->35->1844",
+ "default.handlebars->47->1865",
+ "default3.handlebars->35->1845",
"login2.handlebars->7->19"
]
},
@@ -11996,8 +11996,8 @@
"uk": "Арагонська",
"xloc": [
"default-mobile.handlebars->11->132",
- "default.handlebars->47->1865",
- "default3.handlebars->35->1845",
+ "default.handlebars->47->1866",
+ "default3.handlebars->35->1846",
"login2.handlebars->7->20"
]
},
@@ -12030,12 +12030,12 @@
"default-mobile.handlebars->11->749",
"default-mobile.handlebars->11->751",
"default-mobile.handlebars->11->753",
- "default.handlebars->47->1607",
- "default.handlebars->47->1609",
- "default.handlebars->47->1611",
- "default3.handlebars->35->1591",
- "default3.handlebars->35->1593",
- "default3.handlebars->35->1595"
+ "default.handlebars->47->1608",
+ "default.handlebars->47->1610",
+ "default.handlebars->47->1612",
+ "default3.handlebars->35->1592",
+ "default3.handlebars->35->1594",
+ "default3.handlebars->35->1596"
]
},
{
@@ -12094,9 +12094,9 @@
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
"uk": "Ви впевнені, що бажаєте видалити групу {0}? Видалення групи пристроїв також видалить всю інформацію про пристрої в цій групі.",
"xloc": [
- "default-mobile.handlebars->11->960",
- "default.handlebars->47->2303",
- "default3.handlebars->35->2296"
+ "default-mobile.handlebars->11->961",
+ "default.handlebars->47->2304",
+ "default3.handlebars->35->2297"
]
},
{
@@ -12125,8 +12125,8 @@
"zh-cht": "你確定要刪除節點{0}嗎?",
"uk": "Ви впевнені, що хочете видалити вузол {0}?",
"xloc": [
- "default.handlebars->47->1323",
- "default3.handlebars->35->1313"
+ "default.handlebars->47->1324",
+ "default3.handlebars->35->1314"
]
},
{
@@ -12135,7 +12135,7 @@
"nl": "Weet u zeker dat u dit bestand/ deze map op het bureaublad van het externe apparaat wilt openen?",
"uk": "Ви впевнені, що бажаєте відкрити цей файл/теку на стільниці віддаленого пристрою?",
"xloc": [
- "default.handlebars->47->1547"
+ "default.handlebars->47->1548"
]
},
{
@@ -12164,8 +12164,8 @@
"zh-cht": "你確定要卸載所選代理嗎?",
"uk": "Ви впевнені, що хочете видалити відібраний агент?",
"xloc": [
- "default.handlebars->47->1312",
- "default3.handlebars->35->1303"
+ "default.handlebars->47->1313",
+ "default3.handlebars->35->1304"
]
},
{
@@ -12194,8 +12194,8 @@
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
"uk": "Ви впевнені, що бажаєте видалити відібрані агенти {0}?",
"xloc": [
- "default.handlebars->47->1311",
- "default3.handlebars->35->1302"
+ "default.handlebars->47->1312",
+ "default3.handlebars->35->1303"
]
},
{
@@ -12224,8 +12224,8 @@
"zh-cht": "你確定要{0}外掛嗎:{1}",
"uk": "Ви впевнені, що хочете {0} плаґін: {1}",
"xloc": [
- "default.handlebars->47->3402",
- "default3.handlebars->35->3389"
+ "default.handlebars->47->3403",
+ "default3.handlebars->35->3390"
]
},
{
@@ -12286,8 +12286,8 @@
"uk": "Вірменська",
"xloc": [
"default-mobile.handlebars->11->133",
- "default.handlebars->47->1866",
- "default3.handlebars->35->1846",
+ "default.handlebars->47->1867",
+ "default3.handlebars->35->1847",
"login2.handlebars->7->21"
]
},
@@ -12500,8 +12500,8 @@
"uk": "Асамська",
"xloc": [
"default-mobile.handlebars->11->134",
- "default.handlebars->47->1867",
- "default3.handlebars->35->1847",
+ "default.handlebars->47->1868",
+ "default3.handlebars->35->1848",
"login2.handlebars->7->22"
]
},
@@ -12680,8 +12680,8 @@
"uk": "Астурійська",
"xloc": [
"default-mobile.handlebars->11->135",
- "default.handlebars->47->1868",
- "default3.handlebars->35->1848",
+ "default.handlebars->47->1869",
+ "default3.handlebars->35->1849",
"login2.handlebars->7->23"
]
},
@@ -12711,8 +12711,8 @@
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"uk": "Спроба активувати режим Intel(R) AMT ACM",
"xloc": [
- "default.handlebars->47->2547",
- "default3.handlebars->35->2543"
+ "default.handlebars->47->2548",
+ "default3.handlebars->35->2544"
]
},
{
@@ -12770,12 +12770,12 @@
"default-mobile.handlebars->11->684",
"default-mobile.handlebars->11->688",
"default-mobile.handlebars->11->700",
- "default.handlebars->47->1498",
- "default.handlebars->47->1502",
- "default.handlebars->47->1514",
- "default3.handlebars->35->1483",
- "default3.handlebars->35->1487",
- "default3.handlebars->35->1499",
+ "default.handlebars->47->1499",
+ "default.handlebars->47->1503",
+ "default.handlebars->47->1515",
+ "default3.handlebars->35->1484",
+ "default3.handlebars->35->1488",
+ "default3.handlebars->35->1500",
"ssh.handlebars->3->21",
"ssh.handlebars->3->22",
"ssh.handlebars->3->5",
@@ -12808,8 +12808,8 @@
"zh-cht": "認證軟體",
"uk": "Застосунок Автентифікації",
"xloc": [
- "default.handlebars->47->2987",
- "default3.handlebars->35->2980"
+ "default.handlebars->47->2988",
+ "default3.handlebars->35->2981"
]
},
{
@@ -12838,12 +12838,12 @@
"zh-cht": "認證設備",
"uk": "Пристрій Автентифікації",
"xloc": [
- "default.handlebars->47->1829",
- "default.handlebars->47->1831",
- "default.handlebars->47->1835",
- "default3.handlebars->35->1810",
- "default3.handlebars->35->1812",
- "default3.handlebars->35->1815"
+ "default.handlebars->47->1830",
+ "default.handlebars->47->1832",
+ "default.handlebars->47->1836",
+ "default3.handlebars->35->1811",
+ "default3.handlebars->35->1813",
+ "default3.handlebars->35->1816"
]
},
{
@@ -12874,10 +12874,10 @@
"xloc": [
"default-mobile.handlebars->11->701",
"default-mobile.handlebars->11->707",
- "default.handlebars->47->1516",
- "default.handlebars->47->1531",
- "default3.handlebars->35->1501",
- "default3.handlebars->35->1516"
+ "default.handlebars->47->1517",
+ "default.handlebars->47->1532",
+ "default3.handlebars->35->1502",
+ "default3.handlebars->35->1517"
]
},
{
@@ -12910,12 +12910,12 @@
"default-mobile.handlebars->11->320",
"default-mobile.handlebars->11->73",
"default-mobile.handlebars->11->78",
- "default.handlebars->47->1825",
- "default.handlebars->47->1827",
+ "default.handlebars->47->1826",
+ "default.handlebars->47->1828",
"default.handlebars->47->223",
"default.handlebars->47->228",
- "default3.handlebars->35->1806",
- "default3.handlebars->35->1808",
+ "default3.handlebars->35->1807",
+ "default3.handlebars->35->1809",
"default3.handlebars->35->222",
"default3.handlebars->35->227"
]
@@ -13067,10 +13067,10 @@
"zh-cht": "自動刪除",
"uk": "Авто-Видалення",
"xloc": [
- "default.handlebars->47->2183",
- "default.handlebars->47->2690",
- "default3.handlebars->35->2178",
- "default3.handlebars->35->2686"
+ "default.handlebars->47->2184",
+ "default.handlebars->47->2691",
+ "default3.handlebars->35->2179",
+ "default3.handlebars->35->2687"
]
},
{
@@ -13135,8 +13135,8 @@
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
"uk": "Автоматичне завантаження файлу дампа ядра агента: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2628",
- "default3.handlebars->35->2624"
+ "default.handlebars->47->2629",
+ "default3.handlebars->35->2625"
]
},
{
@@ -13253,8 +13253,8 @@
"zh-cht": "自動移除非活動設備",
"uk": "Автоматично видаляти неактивні пристрої",
"xloc": [
- "default.handlebars->47->2331",
- "default3.handlebars->35->2327"
+ "default.handlebars->47->2332",
+ "default3.handlebars->35->2328"
]
},
{
@@ -13283,8 +13283,8 @@
"zh-cht": "可用內存",
"uk": "Доступна пам'ять",
"xloc": [
- "default.handlebars->47->3331",
- "default3.handlebars->35->3318"
+ "default.handlebars->47->3332",
+ "default3.handlebars->35->3319"
]
},
{
@@ -13314,8 +13314,8 @@
"uk": "Азербайджанська",
"xloc": [
"default-mobile.handlebars->11->136",
- "default.handlebars->47->1869",
- "default3.handlebars->35->1849",
+ "default.handlebars->47->1870",
+ "default3.handlebars->35->1850",
"login2.handlebars->7->24"
]
},
@@ -13388,9 +13388,9 @@
"zh-cht": "的BIOS",
"uk": "BIOS",
"xloc": [
- "default-mobile.handlebars->11->840",
- "default.handlebars->47->1680",
- "default3.handlebars->35->1662"
+ "default-mobile.handlebars->11->841",
+ "default.handlebars->47->1681",
+ "default3.handlebars->35->1663"
]
},
{
@@ -13529,8 +13529,8 @@
"uk": "BackSpace",
"xloc": [
"default-mobile.handlebars->11->649",
- "default.handlebars->47->1413",
- "default3.handlebars->35->1400"
+ "default.handlebars->47->1414",
+ "default3.handlebars->35->1401"
]
},
{
@@ -13590,12 +13590,12 @@
"zh-cht": "背景與互動",
"uk": "Фоновий та Інтерактивний",
"xloc": [
- "default.handlebars->47->2430",
- "default.handlebars->47->2437",
+ "default.handlebars->47->2431",
+ "default.handlebars->47->2438",
"default.handlebars->47->568",
"default.handlebars->47->589",
- "default3.handlebars->35->2426",
- "default3.handlebars->35->2433",
+ "default3.handlebars->35->2427",
+ "default3.handlebars->35->2434",
"default3.handlebars->35->565",
"default3.handlebars->35->586"
]
@@ -13627,13 +13627,13 @@
"uk": "Лише Фоновий",
"xloc": [
"agentinvite.handlebars->3->9",
- "default.handlebars->47->2431",
- "default.handlebars->47->2439",
+ "default.handlebars->47->2432",
+ "default.handlebars->47->2440",
"default.handlebars->47->569",
"default.handlebars->47->590",
"default.handlebars->47->607",
- "default3.handlebars->35->2427",
- "default3.handlebars->35->2435",
+ "default3.handlebars->35->2428",
+ "default3.handlebars->35->2436",
"default3.handlebars->35->566",
"default3.handlebars->35->587",
"default3.handlebars->35->604"
@@ -13696,10 +13696,10 @@
"zh-cht": "備用碼",
"uk": "Резервні Коди",
"xloc": [
- "default.handlebars->47->2991",
- "default.handlebars->47->3218",
- "default3.handlebars->35->2984",
- "default3.handlebars->35->3205"
+ "default.handlebars->47->2992",
+ "default.handlebars->47->3219",
+ "default3.handlebars->35->2985",
+ "default3.handlebars->35->3206"
]
},
{
@@ -13789,8 +13789,8 @@
"zh-cht": "錯誤的簽名",
"uk": "Помилковий Підпис",
"xloc": [
- "default.handlebars->47->3313",
- "default3.handlebars->35->3300"
+ "default.handlebars->47->3314",
+ "default3.handlebars->35->3301"
]
},
{
@@ -13819,8 +13819,8 @@
"zh-cht": "錯誤的網絡憑證",
"uk": "Недійсний Веб-Сертифікат",
"xloc": [
- "default.handlebars->47->3312",
- "default3.handlebars->35->3299"
+ "default.handlebars->47->3313",
+ "default3.handlebars->35->3300"
]
},
{
@@ -13850,8 +13850,8 @@
"uk": "Баскська",
"xloc": [
"default-mobile.handlebars->11->137",
- "default.handlebars->47->1870",
- "default3.handlebars->35->1850",
+ "default.handlebars->47->1871",
+ "default3.handlebars->35->1851",
"login2.handlebars->7->25"
]
},
@@ -13955,8 +13955,8 @@
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
"uk": "Пакетне завантаження файлів ({0}) до теки {1}",
"xloc": [
- "default.handlebars->47->2627",
- "default3.handlebars->35->2623"
+ "default.handlebars->47->2628",
+ "default3.handlebars->35->2624"
]
},
{
@@ -13986,8 +13986,8 @@
"uk": "Білоруська",
"xloc": [
"default-mobile.handlebars->11->139",
- "default.handlebars->47->1872",
- "default3.handlebars->35->1852",
+ "default.handlebars->47->1873",
+ "default3.handlebars->35->1853",
"login2.handlebars->7->27"
]
},
@@ -14018,8 +14018,8 @@
"uk": "Бенгальська",
"xloc": [
"default-mobile.handlebars->11->140",
- "default.handlebars->47->1873",
- "default3.handlebars->35->1853",
+ "default.handlebars->47->1874",
+ "default3.handlebars->35->1854",
"login2.handlebars->7->28"
]
},
@@ -14087,9 +14087,9 @@
"nl": "BitLocker",
"uk": "BitLocker",
"xloc": [
- "default-mobile.handlebars->11->896",
- "default.handlebars->47->1736",
- "default3.handlebars->35->1718"
+ "default-mobile.handlebars->11->897",
+ "default.handlebars->47->1737",
+ "default3.handlebars->35->1719"
]
},
{
@@ -14099,9 +14099,9 @@
"pl": "Informacje o BitLocker",
"uk": "Інформація о BitLocker",
"xloc": [
- "default-mobile.handlebars->11->917",
- "default.handlebars->47->1757",
- "default3.handlebars->35->1739"
+ "default-mobile.handlebars->11->918",
+ "default.handlebars->47->1758",
+ "default3.handlebars->35->1740"
]
},
{
@@ -14130,9 +14130,9 @@
"zh-cht": "引導加載程序",
"uk": "Завантажувач",
"xloc": [
- "default-mobile.handlebars->11->797",
- "default.handlebars->47->1627",
- "default3.handlebars->35->1611"
+ "default-mobile.handlebars->11->798",
+ "default.handlebars->47->1628",
+ "default3.handlebars->35->1612"
]
},
{
@@ -14162,8 +14162,8 @@
"uk": "Боснійська",
"xloc": [
"default-mobile.handlebars->11->141",
- "default.handlebars->47->1874",
- "default3.handlebars->35->1854",
+ "default.handlebars->47->1875",
+ "default3.handlebars->35->1855",
"login2.handlebars->7->29"
]
},
@@ -14194,8 +14194,8 @@
"uk": "Бретонська",
"xloc": [
"default-mobile.handlebars->11->142",
- "default.handlebars->47->1875",
- "default3.handlebars->35->1855",
+ "default.handlebars->47->1876",
+ "default3.handlebars->35->1856",
"login2.handlebars->7->30"
]
},
@@ -14225,9 +14225,9 @@
"zh-cht": "廣播",
"uk": "Широкомовне",
"xloc": [
- "default.handlebars->47->2885",
+ "default.handlebars->47->2886",
"default.handlebars->container->column_l->p4->3->1->0->3->1",
- "default3.handlebars->35->2878",
+ "default3.handlebars->35->2879",
"default3.handlebars->container->column_l->p4->3->1->0->1->3"
]
},
@@ -14257,8 +14257,8 @@
"zh-cht": "廣播消息",
"uk": "Широкомовне Повідомлення",
"xloc": [
- "default.handlebars->47->2801",
- "default3.handlebars->35->2796"
+ "default.handlebars->47->2802",
+ "default3.handlebars->35->2797"
]
},
{
@@ -14287,8 +14287,8 @@
"zh-cht": "向所有連接的用戶廣播消息。",
"uk": "Широкомовне повідомлення всім підключеним користувачам.",
"xloc": [
- "default.handlebars->47->2796",
- "default3.handlebars->35->2791"
+ "default.handlebars->47->2797",
+ "default3.handlebars->35->2792"
]
},
{
@@ -14317,8 +14317,8 @@
"zh-cht": "瀏覽器",
"uk": "Браузер",
"xloc": [
- "default.handlebars->47->3192",
- "default3.handlebars->35->3179"
+ "default.handlebars->47->3193",
+ "default3.handlebars->35->3180"
]
},
{
@@ -14409,8 +14409,8 @@
"uk": "Болгарська",
"xloc": [
"default-mobile.handlebars->11->138",
- "default.handlebars->47->1871",
- "default3.handlebars->35->1851",
+ "default.handlebars->47->1872",
+ "default3.handlebars->35->1852",
"login2.handlebars->7->26"
]
},
@@ -14441,8 +14441,8 @@
"uk": "Бірманська",
"xloc": [
"default-mobile.handlebars->11->143",
- "default.handlebars->47->1876",
- "default3.handlebars->35->1856",
+ "default.handlebars->47->1877",
+ "default3.handlebars->35->1857",
"login2.handlebars->7->31"
]
},
@@ -14472,8 +14472,8 @@
"zh-cht": "默認情況下,非活動設備將在 1 天后移除。",
"uk": "Типово неактивні пристрої видаляються через 1 день.",
"xloc": [
- "default.handlebars->47->2333",
- "default3.handlebars->35->2329"
+ "default.handlebars->47->2334",
+ "default3.handlebars->35->2330"
]
},
{
@@ -14502,8 +14502,8 @@
"zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。",
"uk": "Типово неактивні пристрої видаляються через {0} дн.",
"xloc": [
- "default.handlebars->47->2334",
- "default3.handlebars->35->2330"
+ "default.handlebars->47->2335",
+ "default3.handlebars->35->2331"
]
},
{
@@ -14545,8 +14545,8 @@
"zh-cht": "字節輸入",
"uk": "Байт Вх.",
"xloc": [
- "default.handlebars->47->3188",
- "default3.handlebars->35->3175"
+ "default.handlebars->47->3189",
+ "default3.handlebars->35->3176"
]
},
{
@@ -14575,8 +14575,8 @@
"zh-cht": "字節輸出",
"uk": "Байт Вих.",
"xloc": [
- "default.handlebars->47->3189",
- "default3.handlebars->35->3176"
+ "default.handlebars->47->3190",
+ "default3.handlebars->35->3177"
]
},
{
@@ -14685,8 +14685,8 @@
"zh-cht": "CCM模式",
"uk": "Режим CCM",
"xloc": [
- "default.handlebars->47->2286",
- "default3.handlebars->35->2279"
+ "default.handlebars->47->2287",
+ "default3.handlebars->35->2280"
]
},
{
@@ -14694,15 +14694,15 @@
"en": "CD-ROM",
"nl": "CD-ROM",
"xloc": [
- "default-mobile.handlebars->11->889",
- "default-mobile.handlebars->11->901",
- "default-mobile.handlebars->11->908",
- "default.handlebars->47->1729",
- "default.handlebars->47->1741",
- "default.handlebars->47->1748",
- "default3.handlebars->35->1711",
- "default3.handlebars->35->1723",
- "default3.handlebars->35->1730"
+ "default-mobile.handlebars->11->890",
+ "default-mobile.handlebars->11->902",
+ "default-mobile.handlebars->11->909",
+ "default.handlebars->47->1730",
+ "default.handlebars->47->1742",
+ "default.handlebars->47->1749",
+ "default3.handlebars->35->1712",
+ "default3.handlebars->35->1724",
+ "default3.handlebars->35->1731"
]
},
{
@@ -14732,10 +14732,10 @@
"uk": "CIRA",
"xloc": [
"default-mobile.handlebars->11->476",
- "default.handlebars->47->3338",
+ "default.handlebars->47->3339",
"default.handlebars->47->417",
"default.handlebars->47->723",
- "default3.handlebars->35->3325",
+ "default3.handlebars->35->3326",
"default3.handlebars->35->414",
"default3.handlebars->35->720"
]
@@ -14766,8 +14766,8 @@
"zh-cht": "CIRA伺服器",
"uk": "Сервер CIRA",
"xloc": [
- "default.handlebars->47->3386",
- "default3.handlebars->35->3373"
+ "default.handlebars->47->3387",
+ "default3.handlebars->35->3374"
]
},
{
@@ -14796,8 +14796,8 @@
"zh-cht": "CIRA伺服器指令",
"uk": "Команди Сервера CIRA",
"xloc": [
- "default.handlebars->47->3387",
- "default3.handlebars->35->3374"
+ "default.handlebars->47->3388",
+ "default3.handlebars->35->3375"
]
},
{
@@ -14856,8 +14856,8 @@
"zh-cht": "CIRA設置",
"uk": "Налаштування CIRA",
"xloc": [
- "default.handlebars->47->2294",
- "default3.handlebars->35->2286"
+ "default.handlebars->47->2295",
+ "default3.handlebars->35->2287"
]
},
{
@@ -14886,14 +14886,14 @@
"zh-cht": "CPU",
"uk": "ЦП",
"xloc": [
- "default-mobile.handlebars->11->846",
- "default.handlebars->47->1602",
- "default.handlebars->47->1686",
- "default.handlebars->47->3362",
+ "default-mobile.handlebars->11->847",
+ "default.handlebars->47->1603",
+ "default.handlebars->47->1687",
+ "default.handlebars->47->3363",
"default.handlebars->container->column_l->p40->3->1->p40type->5",
- "default3.handlebars->35->1586",
- "default3.handlebars->35->1668",
- "default3.handlebars->35->3349",
+ "default3.handlebars->35->1587",
+ "default3.handlebars->35->1669",
+ "default3.handlebars->35->3350",
"default3.handlebars->container->column_l->p40->3->3->p40type->5"
]
},
@@ -14923,8 +14923,8 @@
"zh-cht": "CPU負載",
"uk": "Навантаження ЦП",
"xloc": [
- "default.handlebars->47->3327",
- "default3.handlebars->35->3314"
+ "default.handlebars->47->3328",
+ "default3.handlebars->35->3315"
]
},
{
@@ -14953,8 +14953,8 @@
"zh-cht": "最近15分鐘的CPU負載",
"uk": "Навантаження ЦП за останні 15 хвилин",
"xloc": [
- "default.handlebars->47->3330",
- "default3.handlebars->35->3317"
+ "default.handlebars->47->3331",
+ "default3.handlebars->35->3318"
]
},
{
@@ -14983,8 +14983,8 @@
"zh-cht": "最近5分鐘的CPU負載",
"uk": "Навантаження ЦП за останні 5 хвилин",
"xloc": [
- "default.handlebars->47->3329",
- "default3.handlebars->35->3316"
+ "default.handlebars->47->3330",
+ "default3.handlebars->35->3317"
]
},
{
@@ -15013,8 +15013,8 @@
"zh-cht": "最近一分鐘的CPU負載",
"uk": "Навантаження ЦП за останню хвилину",
"xloc": [
- "default.handlebars->47->3328",
- "default3.handlebars->35->3315"
+ "default.handlebars->47->3329",
+ "default3.handlebars->35->3316"
]
},
{
@@ -15043,11 +15043,11 @@
"zh-cht": "CR+LF",
"uk": "CR+LF",
"xloc": [
- "default.handlebars->47->1494",
- "default.handlebars->47->1525",
+ "default.handlebars->47->1495",
+ "default.handlebars->47->1526",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
- "default3.handlebars->35->1479",
- "default3.handlebars->35->1510",
+ "default3.handlebars->35->1480",
+ "default3.handlebars->35->1511",
"default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
"sharing.handlebars->11->25",
"sharing.handlebars->11->39",
@@ -15080,8 +15080,8 @@
"zh-cht": "CSV",
"uk": "CSV",
"xloc": [
- "default.handlebars->47->2707",
- "default3.handlebars->35->2703"
+ "default.handlebars->47->2708",
+ "default3.handlebars->35->2704"
]
},
{
@@ -15110,11 +15110,11 @@
"zh-cht": "CSV格式",
"uk": "Формат CSV",
"xloc": [
- "default.handlebars->47->2711",
- "default.handlebars->47->2788",
+ "default.handlebars->47->2712",
+ "default.handlebars->47->2789",
"default.handlebars->47->796",
- "default3.handlebars->35->2707",
- "default3.handlebars->35->2783",
+ "default3.handlebars->35->2708",
+ "default3.handlebars->35->2784",
"default3.handlebars->35->793"
]
},
@@ -15124,8 +15124,8 @@
"nl": "Het CSV bestandsformaat is als volgt:",
"uk": "Формат файлу CSV нижче:",
"xloc": [
- "default.handlebars->47->2774",
- "default3.handlebars->35->2769"
+ "default.handlebars->47->2775",
+ "default3.handlebars->35->2770"
]
},
{
@@ -15180,8 +15180,8 @@
"zh-cht": "呼叫錯誤",
"uk": "Помилка Виклику",
"xloc": [
- "default.handlebars->47->3403",
- "default3.handlebars->35->3390"
+ "default.handlebars->47->3404",
+ "default3.handlebars->35->3391"
]
},
{
@@ -15194,10 +15194,10 @@
"pl": "CallMeBot",
"uk": "CallMeBot",
"xloc": [
- "default.handlebars->47->1794",
- "default.handlebars->47->3026",
- "default3.handlebars->35->1775",
- "default3.handlebars->35->3019"
+ "default.handlebars->47->1795",
+ "default.handlebars->47->3027",
+ "default3.handlebars->35->1776",
+ "default3.handlebars->35->3020"
]
},
{
@@ -15259,8 +15259,8 @@
"agent-translations.json",
"default-mobile.handlebars->11->329",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->47->2150",
- "default.handlebars->47->3392",
+ "default.handlebars->47->2151",
+ "default.handlebars->47->3393",
"default.handlebars->47->541",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"default3.handlebars->35->538",
@@ -15382,30 +15382,30 @@
"zh-cht": "容量",
"uk": "Ємність",
"xloc": [
- "default-mobile.handlebars->11->864",
- "default-mobile.handlebars->11->870",
- "default-mobile.handlebars->11->876",
- "default-mobile.handlebars->11->881",
- "default-mobile.handlebars->11->883",
- "default-mobile.handlebars->11->886",
- "default-mobile.handlebars->11->898",
- "default-mobile.handlebars->11->905",
- "default.handlebars->47->1704",
- "default.handlebars->47->1710",
- "default.handlebars->47->1716",
- "default.handlebars->47->1721",
- "default.handlebars->47->1723",
- "default.handlebars->47->1726",
- "default.handlebars->47->1738",
- "default.handlebars->47->1745",
- "default3.handlebars->35->1686",
- "default3.handlebars->35->1692",
- "default3.handlebars->35->1698",
- "default3.handlebars->35->1703",
- "default3.handlebars->35->1705",
- "default3.handlebars->35->1708",
- "default3.handlebars->35->1720",
- "default3.handlebars->35->1727"
+ "default-mobile.handlebars->11->865",
+ "default-mobile.handlebars->11->871",
+ "default-mobile.handlebars->11->877",
+ "default-mobile.handlebars->11->882",
+ "default-mobile.handlebars->11->884",
+ "default-mobile.handlebars->11->887",
+ "default-mobile.handlebars->11->899",
+ "default-mobile.handlebars->11->906",
+ "default.handlebars->47->1705",
+ "default.handlebars->47->1711",
+ "default.handlebars->47->1717",
+ "default.handlebars->47->1722",
+ "default.handlebars->47->1724",
+ "default.handlebars->47->1727",
+ "default.handlebars->47->1739",
+ "default.handlebars->47->1746",
+ "default3.handlebars->35->1687",
+ "default3.handlebars->35->1693",
+ "default3.handlebars->35->1699",
+ "default3.handlebars->35->1704",
+ "default3.handlebars->35->1706",
+ "default3.handlebars->35->1709",
+ "default3.handlebars->35->1721",
+ "default3.handlebars->35->1728"
]
},
{
@@ -15434,15 +15434,15 @@
"zh-cht": "容量/速度",
"uk": "Ємність / Швидкість",
"xloc": [
- "default-mobile.handlebars->11->862",
- "default-mobile.handlebars->11->868",
- "default-mobile.handlebars->11->874",
- "default.handlebars->47->1702",
- "default.handlebars->47->1708",
- "default.handlebars->47->1714",
- "default3.handlebars->35->1684",
- "default3.handlebars->35->1690",
- "default3.handlebars->35->1696"
+ "default-mobile.handlebars->11->863",
+ "default-mobile.handlebars->11->869",
+ "default-mobile.handlebars->11->875",
+ "default.handlebars->47->1703",
+ "default.handlebars->47->1709",
+ "default.handlebars->47->1715",
+ "default3.handlebars->35->1685",
+ "default3.handlebars->35->1691",
+ "default3.handlebars->35->1697"
]
},
{
@@ -15451,15 +15451,15 @@
"nl": "Resterende capaciteit",
"uk": "Залишок ємності",
"xloc": [
- "default-mobile.handlebars->11->887",
- "default-mobile.handlebars->11->899",
- "default-mobile.handlebars->11->906",
- "default.handlebars->47->1727",
- "default.handlebars->47->1739",
- "default.handlebars->47->1746",
- "default3.handlebars->35->1709",
- "default3.handlebars->35->1721",
- "default3.handlebars->35->1728"
+ "default-mobile.handlebars->11->888",
+ "default-mobile.handlebars->11->900",
+ "default-mobile.handlebars->11->907",
+ "default.handlebars->47->1728",
+ "default.handlebars->47->1740",
+ "default.handlebars->47->1747",
+ "default3.handlebars->35->1710",
+ "default3.handlebars->35->1722",
+ "default3.handlebars->35->1729"
]
},
{
@@ -15489,8 +15489,8 @@
"uk": "Каталанська",
"xloc": [
"default-mobile.handlebars->11->144",
- "default.handlebars->47->1877",
- "default3.handlebars->35->1857",
+ "default.handlebars->47->1878",
+ "default3.handlebars->35->1858",
"login2.handlebars->7->32"
]
},
@@ -15587,7 +15587,7 @@
"en": "Cerulean",
"nl": "Hemelsblauw",
"xloc": [
- "default3.handlebars->35->2071"
+ "default3.handlebars->35->2072"
]
},
{
@@ -15617,8 +15617,8 @@
"uk": "Чаморро",
"xloc": [
"default-mobile.handlebars->11->145",
- "default.handlebars->47->1878",
- "default3.handlebars->35->1858",
+ "default.handlebars->47->1879",
+ "default3.handlebars->35->1859",
"login2.handlebars->7->33"
]
},
@@ -15679,8 +15679,8 @@
"zh-cht": "更改{0}的電郵",
"uk": "Змінити е-пошту для {0}",
"xloc": [
- "default.handlebars->47->3068",
- "default3.handlebars->35->3059"
+ "default.handlebars->47->3069",
+ "default3.handlebars->35->3060"
]
},
{
@@ -15709,12 +15709,12 @@
"zh-cht": "更改群",
"uk": "Змінити Групу",
"xloc": [
- "default.handlebars->47->1033",
- "default.handlebars->47->1320",
+ "default.handlebars->47->1034",
"default.handlebars->47->1321",
- "default3.handlebars->35->1030",
- "default3.handlebars->35->1311",
- "default3.handlebars->35->1312"
+ "default.handlebars->47->1322",
+ "default3.handlebars->35->1031",
+ "default3.handlebars->35->1312",
+ "default3.handlebars->35->1313"
]
},
{
@@ -15758,10 +15758,10 @@
"uk": "Змінити Пароль",
"xloc": [
"default-mobile.handlebars->11->337",
- "default.handlebars->47->2094",
- "default.handlebars->47->3012",
- "default3.handlebars->35->2069",
- "default3.handlebars->35->3005"
+ "default.handlebars->47->2095",
+ "default.handlebars->47->3013",
+ "default3.handlebars->35->2070",
+ "default3.handlebars->35->3006"
]
},
{
@@ -15790,8 +15790,8 @@
"zh-cht": "更改{0}的密碼",
"uk": "Змінити пароль для {0}",
"xloc": [
- "default.handlebars->47->3077",
- "default3.handlebars->35->3064"
+ "default.handlebars->47->3078",
+ "default3.handlebars->35->3065"
]
},
{
@@ -15820,8 +15820,8 @@
"zh-cht": "更改{0}的真實名稱",
"uk": "Змінити справжнє ім'я для {0}",
"xloc": [
- "default.handlebars->47->3063",
- "default3.handlebars->35->3055"
+ "default.handlebars->47->3064",
+ "default3.handlebars->35->3056"
]
},
{
@@ -15998,8 +15998,8 @@
"zh-cht": "更改該用戶的密碼",
"uk": "Змінити пароль для цього користувача",
"xloc": [
- "default.handlebars->47->3011",
- "default3.handlebars->35->3004"
+ "default.handlebars->47->3012",
+ "default3.handlebars->35->3005"
]
},
{
@@ -16058,8 +16058,8 @@
"zh-cht": "在此處更改你的帳戶電郵地址。",
"uk": "Змініть адресу е-пошти свого акаунту тут.",
"xloc": [
- "default.handlebars->47->2081",
- "default3.handlebars->35->2062"
+ "default.handlebars->47->2082",
+ "default3.handlebars->35->2063"
]
},
{
@@ -16088,8 +16088,8 @@
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
"uk": "Змініть пароль свого акаунту, ввівши старий пароль та двічі новий пароль в поля нижче.",
"xloc": [
- "default.handlebars->47->2087",
- "default3.handlebars->35->2066"
+ "default.handlebars->47->2088",
+ "default3.handlebars->35->2067"
]
},
{
@@ -16118,8 +16118,8 @@
"zh-cht": "帳戶憑證已更改",
"uk": "Змінено облікові дані акаунту",
"xloc": [
- "default.handlebars->47->2599",
- "default3.handlebars->35->2595"
+ "default.handlebars->47->2600",
+ "default3.handlebars->35->2596"
]
},
{
@@ -16148,8 +16148,8 @@
"zh-cht": "將帳戶顯示名稱更改為 {0}。",
"uk": "Відображене ім'я акаунту змінено на {0}.",
"xloc": [
- "default.handlebars->47->2651",
- "default3.handlebars->35->2647"
+ "default.handlebars->47->2652",
+ "default3.handlebars->35->2648"
]
},
{
@@ -16178,10 +16178,10 @@
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"uk": "Пристрій {0} змінено з групи {1}: {2}",
"xloc": [
- "default.handlebars->47->2583",
- "default.handlebars->47->2664",
- "default3.handlebars->35->2579",
- "default3.handlebars->35->2660"
+ "default.handlebars->47->2584",
+ "default.handlebars->47->2665",
+ "default3.handlebars->35->2580",
+ "default3.handlebars->35->2661"
]
},
{
@@ -16210,8 +16210,8 @@
"zh-cht": "語言從{1}更改為{2}",
"uk": "Мову змінено з {1} на {2}",
"xloc": [
- "default.handlebars->47->2527",
- "default3.handlebars->35->2523"
+ "default.handlebars->47->2528",
+ "default3.handlebars->35->2524"
]
},
{
@@ -16240,10 +16240,10 @@
"zh-cht": "已更改{0}的用戶設備權限",
"uk": "Права користувача пристрою змінено для {0}",
"xloc": [
- "default.handlebars->47->2585",
- "default.handlebars->47->2606",
- "default3.handlebars->35->2581",
- "default3.handlebars->35->2602"
+ "default.handlebars->47->2586",
+ "default.handlebars->47->2607",
+ "default3.handlebars->35->2582",
+ "default3.handlebars->35->2603"
]
},
{
@@ -16299,8 +16299,8 @@
"uk": "Зміна мови потребуватиме освіження сторінки.",
"xloc": [
"default-mobile.handlebars->11->312",
- "default.handlebars->47->2045",
- "default3.handlebars->35->2025"
+ "default.handlebars->47->2046",
+ "default3.handlebars->35->2026"
]
},
{
@@ -16329,18 +16329,18 @@
"zh-cht": "聊天",
"uk": "Чат",
"xloc": [
- "default.handlebars->47->1022",
- "default.handlebars->47->1141",
- "default.handlebars->47->1166",
- "default.handlebars->47->2728",
- "default.handlebars->47->3007",
+ "default.handlebars->47->1023",
+ "default.handlebars->47->1142",
+ "default.handlebars->47->1167",
+ "default.handlebars->47->2729",
"default.handlebars->47->3008",
- "default3.handlebars->35->1019",
- "default3.handlebars->35->1136",
- "default3.handlebars->35->1161",
- "default3.handlebars->35->2724",
- "default3.handlebars->35->3000",
- "default3.handlebars->35->3001"
+ "default.handlebars->47->3009",
+ "default3.handlebars->35->1020",
+ "default3.handlebars->35->1137",
+ "default3.handlebars->35->1162",
+ "default3.handlebars->35->2725",
+ "default3.handlebars->35->3001",
+ "default3.handlebars->35->3002"
]
},
{
@@ -16369,12 +16369,12 @@
"zh-cht": "聊天並通知",
"uk": "Чат і Сповіщення",
"xloc": [
- "default-mobile.handlebars->11->1010",
- "default-mobile.handlebars->11->990",
- "default.handlebars->47->2365",
- "default.handlebars->47->2403",
- "default3.handlebars->35->2361",
- "default3.handlebars->35->2399"
+ "default-mobile.handlebars->11->1011",
+ "default-mobile.handlebars->11->991",
+ "default.handlebars->47->2366",
+ "default.handlebars->47->2404",
+ "default3.handlebars->35->2362",
+ "default3.handlebars->35->2400"
]
},
{
@@ -16403,9 +16403,9 @@
"zh-cht": "聊天請求,點擊這裡接受。",
"uk": "Запит на чат, натисніть тут, щоб прийняти",
"xloc": [
- "default-mobile.handlebars->11->1042",
- "default.handlebars->47->3277",
- "default3.handlebars->35->3264"
+ "default-mobile.handlebars->11->1043",
+ "default.handlebars->47->3278",
+ "default3.handlebars->35->3265"
]
},
{
@@ -16464,8 +16464,8 @@
"uk": "Чеченська",
"xloc": [
"default-mobile.handlebars->11->146",
- "default.handlebars->47->1879",
- "default3.handlebars->35->1859",
+ "default.handlebars->47->1880",
+ "default3.handlebars->35->1860",
"login2.handlebars->7->34"
]
},
@@ -16630,10 +16630,10 @@
"zh-cht": "檢查...",
"uk": "Перевірка...",
"xloc": [
- "default.handlebars->47->1845",
- "default.handlebars->47->3397",
- "default3.handlebars->35->1825",
- "default3.handlebars->35->3384"
+ "default.handlebars->47->1846",
+ "default.handlebars->47->3398",
+ "default3.handlebars->35->1826",
+ "default3.handlebars->35->3385"
]
},
{
@@ -16663,8 +16663,8 @@
"uk": "Китайська",
"xloc": [
"default-mobile.handlebars->11->147",
- "default.handlebars->47->1880",
- "default3.handlebars->35->1860",
+ "default.handlebars->47->1881",
+ "default3.handlebars->35->1861",
"login2.handlebars->7->35"
]
},
@@ -16695,8 +16695,8 @@
"uk": "Китайська (Гонконг)",
"xloc": [
"default-mobile.handlebars->11->148",
- "default.handlebars->47->1881",
- "default3.handlebars->35->1861",
+ "default.handlebars->47->1882",
+ "default3.handlebars->35->1862",
"login2.handlebars->7->36"
]
},
@@ -16727,8 +16727,8 @@
"uk": "Китайська (КНР)",
"xloc": [
"default-mobile.handlebars->11->149",
- "default.handlebars->47->1882",
- "default3.handlebars->35->1862",
+ "default.handlebars->47->1883",
+ "default3.handlebars->35->1863",
"login2.handlebars->7->37"
]
},
@@ -16759,8 +16759,8 @@
"uk": "Китайська (Спрощена)",
"xloc": [
"default-mobile.handlebars->11->309",
- "default.handlebars->47->2042",
- "default3.handlebars->35->2022",
+ "default.handlebars->47->2043",
+ "default3.handlebars->35->2023",
"login2.handlebars->7->197"
]
},
@@ -16791,8 +16791,8 @@
"uk": "Китайська (Сінгапур)",
"xloc": [
"default-mobile.handlebars->11->150",
- "default.handlebars->47->1883",
- "default3.handlebars->35->1863",
+ "default.handlebars->47->1884",
+ "default3.handlebars->35->1864",
"login2.handlebars->7->38"
]
},
@@ -16823,8 +16823,8 @@
"uk": "Китайська (Тайвань)",
"xloc": [
"default-mobile.handlebars->11->151",
- "default.handlebars->47->1884",
- "default3.handlebars->35->1864",
+ "default.handlebars->47->1885",
+ "default3.handlebars->35->1865",
"login2.handlebars->7->39"
]
},
@@ -16855,8 +16855,8 @@
"uk": "Китайська (Традиційна)",
"xloc": [
"default-mobile.handlebars->11->310",
- "default.handlebars->47->2043",
- "default3.handlebars->35->2023",
+ "default.handlebars->47->2044",
+ "default3.handlebars->35->2024",
"login2.handlebars->7->198"
]
},
@@ -16918,8 +16918,8 @@
"uk": "Чуваська",
"xloc": [
"default-mobile.handlebars->11->152",
- "default.handlebars->47->1885",
- "default3.handlebars->35->1865",
+ "default.handlebars->47->1886",
+ "default3.handlebars->35->1866",
"login2.handlebars->7->40"
]
},
@@ -16989,18 +16989,18 @@
"default-mobile.handlebars->11->738",
"default-mobile.handlebars->11->87",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->5",
- "default.handlebars->47->1575",
- "default.handlebars->47->1577",
- "default.handlebars->47->1579",
- "default.handlebars->47->1581",
- "default.handlebars->47->2521",
+ "default.handlebars->47->1576",
+ "default.handlebars->47->1578",
+ "default.handlebars->47->1580",
+ "default.handlebars->47->1582",
+ "default.handlebars->47->2522",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
"default.handlebars->container->column_l->p41->3->1",
- "default3.handlebars->35->1559",
- "default3.handlebars->35->1561",
- "default3.handlebars->35->1563",
- "default3.handlebars->35->1565",
- "default3.handlebars->35->2517",
+ "default3.handlebars->35->1560",
+ "default3.handlebars->35->1562",
+ "default3.handlebars->35->1564",
+ "default3.handlebars->35->1566",
+ "default3.handlebars->35->2518",
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
"default3.handlebars->container->column_l->p41->3->3",
"messenger.handlebars->xbottom->1->1->0->5",
@@ -17037,7 +17037,7 @@
"uk": "Видалити облікові дані RDP?",
"xloc": [
"default-mobile.handlebars->11->634",
- "default.handlebars->47->1366"
+ "default.handlebars->47->1367"
]
},
{
@@ -17067,7 +17067,7 @@
"uk": "Очистити облікові дані SSH?",
"xloc": [
"default-mobile.handlebars->11->632",
- "default.handlebars->47->1364"
+ "default.handlebars->47->1365"
]
},
{
@@ -17188,9 +17188,9 @@
"zh-cht": "全部清除",
"uk": "Очистити все",
"xloc": [
- "default-mobile.handlebars->11->1025",
- "default.handlebars->47->3260",
- "default3.handlebars->35->3247"
+ "default-mobile.handlebars->11->1026",
+ "default.handlebars->47->3261",
+ "default3.handlebars->35->3248"
]
},
{
@@ -17250,9 +17250,9 @@
"zh-cht": "清除核心",
"uk": "Очистити ядро",
"xloc": [
- "default-mobile.handlebars->11->929",
- "default.handlebars->47->1770",
- "default3.handlebars->35->1752"
+ "default-mobile.handlebars->11->930",
+ "default.handlebars->47->1771",
+ "default3.handlebars->35->1753"
]
},
{
@@ -17312,9 +17312,9 @@
"zh-cht": "清除此通知",
"uk": "Очистити це сповіщення",
"xloc": [
- "default-mobile.handlebars->11->1024",
- "default.handlebars->47->3259",
- "default3.handlebars->35->3246"
+ "default-mobile.handlebars->11->1025",
+ "default.handlebars->47->3260",
+ "default3.handlebars->35->3247"
]
},
{
@@ -17430,10 +17430,10 @@
"zh-cht": "單擊此處編輯裝置群名稱",
"uk": "Клікніть тут, щоб змінити назву групи пристроїв",
"xloc": [
- "default.handlebars->47->2164",
- "default.handlebars->47->2464",
- "default3.handlebars->35->2159",
- "default3.handlebars->35->2460"
+ "default.handlebars->47->2165",
+ "default.handlebars->47->2465",
+ "default3.handlebars->35->2160",
+ "default3.handlebars->35->2461"
]
},
{
@@ -17492,8 +17492,8 @@
"zh-cht": "單擊此處編輯用戶群名稱",
"uk": "Клікніть тут, щоб змінити назву групи користувачів",
"xloc": [
- "default.handlebars->47->2858",
- "default3.handlebars->35->2851"
+ "default.handlebars->47->2859",
+ "default3.handlebars->35->2852"
]
},
{
@@ -17638,8 +17638,8 @@
"uk": "Клікнути OK, щоб надіслати електронний лист для підтвердження на:",
"xloc": [
"default-mobile.handlebars->11->322",
- "default.handlebars->47->2078",
- "default3.handlebars->35->2059"
+ "default.handlebars->47->2079",
+ "default3.handlebars->35->2060"
]
},
{
@@ -17754,9 +17754,9 @@
"zh-cht": "客戶端控制模式(CCM)",
"uk": "Режим керування клієнтом (eng. CCM)",
"xloc": [
- "default-mobile.handlebars->11->824",
- "default.handlebars->47->1664",
- "default3.handlebars->35->1646"
+ "default-mobile.handlebars->11->825",
+ "default.handlebars->47->1665",
+ "default3.handlebars->35->1647"
]
},
{
@@ -17785,8 +17785,8 @@
"zh-cht": "客戶編號",
"uk": "ID Клієнта",
"xloc": [
- "default.handlebars->47->2141",
- "default3.handlebars->35->2140"
+ "default.handlebars->47->2142",
+ "default3.handlebars->35->2141"
]
},
{
@@ -17815,8 +17815,8 @@
"zh-cht": "客戶端啟動的遠程訪問",
"uk": "Клієнт Ініціював Віддалений Доступ",
"xloc": [
- "default.handlebars->47->2293",
- "default3.handlebars->35->2287"
+ "default.handlebars->47->2294",
+ "default3.handlebars->35->2288"
]
},
{
@@ -17845,8 +17845,8 @@
"zh-cht": "客戶機密",
"uk": "Секретний Ключ Клієнта",
"xloc": [
- "default.handlebars->47->2142",
- "default3.handlebars->35->2141"
+ "default.handlebars->47->2143",
+ "default3.handlebars->35->2142"
]
},
{
@@ -17908,13 +17908,13 @@
"xloc": [
"agent-translations.json",
"default-mobile.handlebars->11->85",
- "default.handlebars->47->1478",
- "default.handlebars->47->1550",
+ "default.handlebars->47->1479",
+ "default.handlebars->47->1551",
"default.handlebars->47->235",
"default.handlebars->47->244",
- "default.handlebars->47->3391",
- "default3.handlebars->35->1464",
- "default3.handlebars->35->1534",
+ "default.handlebars->47->3392",
+ "default3.handlebars->35->1465",
+ "default3.handlebars->35->1535",
"sharing.handlebars->11->52"
]
},
@@ -17944,8 +17944,8 @@
"zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒",
"uk": "Закрито сесію мультиплексної стільниці \\\"{0}\\\", {1} секунд(и)",
"xloc": [
- "default.handlebars->47->2671",
- "default3.handlebars->35->2667"
+ "default.handlebars->47->2672",
+ "default3.handlebars->35->2668"
]
},
{
@@ -17974,8 +17974,8 @@
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"uk": "Закрито сесію мультиплексної стільниці, {0} секунд(и)",
"xloc": [
- "default.handlebars->47->2532",
- "default3.handlebars->35->2528"
+ "default.handlebars->47->2533",
+ "default3.handlebars->35->2529"
]
},
{
@@ -18187,13 +18187,13 @@
"zh-cht": "指令",
"uk": "Команди",
"xloc": [
- "default-mobile.handlebars->11->1012",
- "default.handlebars->47->1143",
- "default.handlebars->47->1168",
- "default.handlebars->47->2405",
- "default3.handlebars->35->1138",
- "default3.handlebars->35->1163",
- "default3.handlebars->35->2401"
+ "default-mobile.handlebars->11->1013",
+ "default.handlebars->47->1144",
+ "default.handlebars->47->1169",
+ "default.handlebars->47->2406",
+ "default3.handlebars->35->1139",
+ "default3.handlebars->35->1164",
+ "default3.handlebars->35->2402"
]
},
{
@@ -18276,10 +18276,10 @@
"zh-cht": "通用裝置群",
"uk": "Пов'язані Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2893",
- "default.handlebars->47->3082",
- "default3.handlebars->35->2886",
- "default3.handlebars->35->3069"
+ "default.handlebars->47->2894",
+ "default.handlebars->47->3083",
+ "default3.handlebars->35->2887",
+ "default3.handlebars->35->3070"
]
},
{
@@ -18308,10 +18308,10 @@
"zh-cht": "通用裝置",
"uk": "Пов'язані Пристрої",
"xloc": [
- "default.handlebars->47->2899",
- "default.handlebars->47->3094",
- "default3.handlebars->35->2892",
- "default3.handlebars->35->3081"
+ "default.handlebars->47->2900",
+ "default.handlebars->47->3095",
+ "default3.handlebars->35->2893",
+ "default3.handlebars->35->3082"
]
},
{
@@ -18340,9 +18340,9 @@
"zh-cht": "編譯時間",
"uk": "Час компіляції",
"xloc": [
- "default-mobile.handlebars->11->793",
- "default.handlebars->47->1623",
- "default3.handlebars->35->1607"
+ "default-mobile.handlebars->11->794",
+ "default.handlebars->47->1624",
+ "default3.handlebars->35->1608"
]
},
{
@@ -18397,8 +18397,8 @@
"zh-cht": "壓縮檔案...",
"uk": "Стиснення файлів...",
"xloc": [
- "default.handlebars->47->1536",
- "default3.handlebars->35->1521",
+ "default.handlebars->47->1537",
+ "default3.handlebars->35->1522",
"sharing.handlebars->11->47"
]
},
@@ -18440,8 +18440,8 @@
"pl": "Zapisy pliku konfiguracyjnego",
"uk": "Записи файлу конфігурації",
"xloc": [
- "default.handlebars->47->3236",
- "default3.handlebars->35->3223"
+ "default.handlebars->47->3237",
+ "default3.handlebars->35->3224"
]
},
{
@@ -18471,22 +18471,22 @@
"uk": "Підтвердити",
"xloc": [
"default-mobile.handlebars->11->629",
- "default-mobile.handlebars->11->961",
- "default.handlebars->47->1315",
- "default.handlebars->47->1324",
- "default.handlebars->47->2304",
- "default.handlebars->47->2758",
- "default.handlebars->47->2848",
- "default.handlebars->47->2915",
- "default.handlebars->47->3080",
+ "default-mobile.handlebars->11->962",
+ "default.handlebars->47->1316",
+ "default.handlebars->47->1325",
+ "default.handlebars->47->2305",
+ "default.handlebars->47->2759",
+ "default.handlebars->47->2849",
+ "default.handlebars->47->2916",
+ "default.handlebars->47->3081",
"default.handlebars->47->760",
- "default3.handlebars->35->1306",
- "default3.handlebars->35->1314",
- "default3.handlebars->35->2297",
- "default3.handlebars->35->2754",
- "default3.handlebars->35->2841",
- "default3.handlebars->35->2908",
- "default3.handlebars->35->3067",
+ "default3.handlebars->35->1307",
+ "default3.handlebars->35->1315",
+ "default3.handlebars->35->2298",
+ "default3.handlebars->35->2755",
+ "default3.handlebars->35->2842",
+ "default3.handlebars->35->2909",
+ "default3.handlebars->35->3068",
"default3.handlebars->35->757"
]
},
@@ -18520,7 +18520,7 @@
"en": "Confirm Password",
"nl": "Bevestig wachtwoord",
"xloc": [
- "default3.handlebars->35->2802"
+ "default3.handlebars->35->2803"
]
},
{
@@ -18550,8 +18550,8 @@
"uk": "Підтвердити копіювання 1 запису до цієї локації?",
"xloc": [
"default-mobile.handlebars->11->727",
- "default.handlebars->47->1570",
- "default3.handlebars->35->1554",
+ "default.handlebars->47->1571",
+ "default3.handlebars->35->1555",
"sharing.handlebars->11->70"
]
},
@@ -18581,8 +18581,8 @@
"zh-cht": "確認{0}個條目的複製到此位置?",
"uk": "Підтвердити копіювання {0} записів до цієї локації?",
"xloc": [
- "default.handlebars->47->1569",
- "default3.handlebars->35->1553",
+ "default.handlebars->47->1570",
+ "default3.handlebars->35->1554",
"sharing.handlebars->11->69"
]
},
@@ -18641,8 +18641,8 @@
"zh-cht": "確認刪除所選帳戶?",
"uk": "Підтвердити видалення відібраних акаунтів?",
"xloc": [
- "default.handlebars->47->2757",
- "default3.handlebars->35->2753"
+ "default.handlebars->47->2758",
+ "default3.handlebars->35->2754"
]
},
{
@@ -18697,8 +18697,8 @@
"zh-cht": "確認刪除所選用戶群?",
"uk": "Підтвердити видалення відібраних груп користувачів?",
"xloc": [
- "default.handlebars->47->2847",
- "default3.handlebars->35->2840"
+ "default.handlebars->47->2848",
+ "default3.handlebars->35->2841"
]
},
{
@@ -18727,24 +18727,24 @@
"zh-cht": "確認刪除用戶{0}?",
"uk": "Підтвердити видалення користувача {0}?",
"xloc": [
- "default.handlebars->47->3079",
- "default3.handlebars->35->3066"
+ "default.handlebars->47->3080",
+ "default3.handlebars->35->3067"
]
},
{
"en": "Confirm disabling 2FA Duo login security.",
"nl": "Bevestig het uitschakelen van 2FA Duo inlogbeveiliging.",
"xloc": [
- "default.handlebars->47->1824",
- "default3.handlebars->35->1805"
+ "default.handlebars->47->1825",
+ "default3.handlebars->35->1806"
]
},
{
"en": "Confirm enabling of Duo 2FA login security. Once enabled you will be given the option to use Duo at login for added security. Click ok to go thru the steps to enable Duo.",
"nl": "Bevestig het inschakelen van Duo 2FA inlogbeveiliging. Eenmaal ingeschakeld, krijgt u de mogelijkheid om Duo te gebruiken bij het inloggen voor extra veiligheid. Klik op OK om de stappen te doorlopen om Duo in te schakelen.",
"xloc": [
- "default.handlebars->47->1822",
- "default3.handlebars->35->1803"
+ "default.handlebars->47->1823",
+ "default3.handlebars->35->1804"
]
},
{
@@ -18773,8 +18773,8 @@
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"uk": "Підтвердити видалення приналежності у користувача \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->2918",
- "default3.handlebars->35->2911"
+ "default.handlebars->47->2919",
+ "default3.handlebars->35->2912"
]
},
{
@@ -18803,8 +18803,8 @@
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"uk": "Підтвердити видалення приналежності до групи користувачів \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->3111",
- "default3.handlebars->35->3098"
+ "default.handlebars->47->3112",
+ "default3.handlebars->35->3099"
]
},
{
@@ -18834,8 +18834,8 @@
"uk": "Підтвердити переміщення 1 запису до цієї локації?",
"xloc": [
"default-mobile.handlebars->11->729",
- "default.handlebars->47->1572",
- "default3.handlebars->35->1556",
+ "default.handlebars->47->1573",
+ "default3.handlebars->35->1557",
"sharing.handlebars->11->72"
]
},
@@ -18865,8 +18865,8 @@
"zh-cht": "確認將{0}個條目移到該位置?",
"uk": "Підтвердити переміщення {0} записів до цієї локації?",
"xloc": [
- "default.handlebars->47->1571",
- "default3.handlebars->35->1555",
+ "default.handlebars->47->1572",
+ "default3.handlebars->35->1556",
"sharing.handlebars->11->71"
]
},
@@ -18925,8 +18925,8 @@
"zh-cht": "確認覆蓋?",
"uk": "Підтвердити перезапис?",
"xloc": [
- "default.handlebars->47->2513",
- "default3.handlebars->35->2509"
+ "default.handlebars->47->2514",
+ "default3.handlebars->35->2510"
]
},
{
@@ -18955,10 +18955,10 @@
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"uk": "Підтвердити видалення прав доступу для пристрою \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->2908",
- "default.handlebars->47->3102",
- "default3.handlebars->35->2901",
- "default3.handlebars->35->3089"
+ "default.handlebars->47->2909",
+ "default.handlebars->47->3103",
+ "default3.handlebars->35->2902",
+ "default3.handlebars->35->3090"
]
},
{
@@ -18987,10 +18987,10 @@
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"uk": "Підтвердити видалення прав доступу для групи пристроїв \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->2910",
- "default.handlebars->47->3115",
- "default3.handlebars->35->2903",
- "default3.handlebars->35->3102"
+ "default.handlebars->47->2911",
+ "default.handlebars->47->3116",
+ "default3.handlebars->35->2904",
+ "default3.handlebars->35->3103"
]
},
{
@@ -19019,8 +19019,8 @@
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"uk": "Підтвердити видалення прав доступу для користувача \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->3104",
- "default3.handlebars->35->3091"
+ "default.handlebars->47->3105",
+ "default3.handlebars->35->3092"
]
},
{
@@ -19049,8 +19049,8 @@
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"uk": "Підтвердити видалення прав доступу для групи користувачів \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->3107",
- "default3.handlebars->35->3094"
+ "default.handlebars->47->3108",
+ "default3.handlebars->35->3095"
]
},
{
@@ -19079,10 +19079,10 @@
"zh-cht": "確認刪除訪問權限?",
"uk": "Підтвердити видалення прав доступу?",
"xloc": [
- "default.handlebars->47->3105",
- "default.handlebars->47->3108",
- "default3.handlebars->35->3092",
- "default3.handlebars->35->3095"
+ "default.handlebars->47->3106",
+ "default.handlebars->47->3109",
+ "default3.handlebars->35->3093",
+ "default3.handlebars->35->3096"
]
},
{
@@ -19112,8 +19112,8 @@
"uk": "Підтвердити видалення двофакторної автентифікації через застосунок?",
"xloc": [
"default-mobile.handlebars->11->321",
- "default.handlebars->47->1828",
- "default3.handlebars->35->1809"
+ "default.handlebars->47->1829",
+ "default3.handlebars->35->1810"
]
},
{
@@ -19168,8 +19168,8 @@
"zh-cht": "確認刪除設備共享“{0}”?",
"uk": "Підтвердити скасування поширення пристрою \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->3100",
- "default3.handlebars->35->3087"
+ "default.handlebars->47->3101",
+ "default3.handlebars->35->3088"
]
},
{
@@ -19250,8 +19250,8 @@
"zh-cht": "確認移除推送認證設備?",
"uk": "Підтвердити видалення пристрою push-автентифікації?",
"xloc": [
- "default.handlebars->47->1830",
- "default3.handlebars->35->1811"
+ "default.handlebars->47->1831",
+ "default3.handlebars->35->1812"
]
},
{
@@ -19280,8 +19280,8 @@
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"uk": "Підтвердити видалення прав користувача \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->2417",
- "default3.handlebars->35->2413"
+ "default.handlebars->47->2418",
+ "default3.handlebars->35->2414"
]
},
{
@@ -19310,8 +19310,8 @@
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"uk": "Підтвердити видалення прав для групи користувачів \\\"{0}\\\"?",
"xloc": [
- "default.handlebars->47->2419",
- "default3.handlebars->35->2415"
+ "default.handlebars->47->2420",
+ "default3.handlebars->35->2416"
]
},
{
@@ -19370,8 +19370,8 @@
"zh-cht": "確認刪除此登錄令牌?",
"uk": "Підтвердити видалення цього токена входу?",
"xloc": [
- "default.handlebars->47->2134",
- "default3.handlebars->35->2133"
+ "default.handlebars->47->2135",
+ "default3.handlebars->35->2134"
]
},
{
@@ -19426,7 +19426,7 @@
"zh-cht": "確認刪除用戶{0}?",
"uk": "Підтвердити видалення користувача {0}?",
"xloc": [
- "default-mobile.handlebars->11->1021"
+ "default-mobile.handlebars->11->1022"
]
},
{
@@ -19486,8 +19486,8 @@
"uk": "Підтвердити {0} із {1} записів{2} для цієї локації?",
"xloc": [
"default-mobile.handlebars->11->377",
- "default.handlebars->47->2516",
- "default3.handlebars->35->2512"
+ "default.handlebars->47->2517",
+ "default3.handlebars->35->2513"
]
},
{
@@ -19520,13 +19520,13 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span",
- "default.handlebars->47->2202",
- "default.handlebars->47->979",
+ "default.handlebars->47->2203",
+ "default.handlebars->47->980",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
- "default3.handlebars->35->2197",
- "default3.handlebars->35->976",
+ "default3.handlebars->35->2198",
+ "default3.handlebars->35->977",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->connectbutton1span->connectbutton1",
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->connectbutton2span->connectbutton2",
"default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->1->p13Connectspan->p13Connect",
@@ -19623,8 +19623,8 @@
"zh-cht": "連接到伺服器",
"uk": "Підключитися до сервера",
"xloc": [
- "default.handlebars->47->2297",
- "default3.handlebars->35->2290"
+ "default.handlebars->47->2298",
+ "default3.handlebars->35->2291"
]
},
{
@@ -19897,8 +19897,8 @@
"zh-cht": "已連接的Intel® AMT",
"uk": "Підключено Intel® AMT",
"xloc": [
- "default.handlebars->47->3318",
- "default3.handlebars->35->3305"
+ "default.handlebars->47->3319",
+ "default3.handlebars->35->3306"
]
},
{
@@ -19927,8 +19927,8 @@
"zh-cht": "已连接的用户",
"uk": "Підключені Користувачі",
"xloc": [
- "default.handlebars->47->3323",
- "default3.handlebars->35->3310"
+ "default.handlebars->47->3324",
+ "default3.handlebars->35->3311"
]
},
{
@@ -19987,9 +19987,9 @@
"zh-cht": "現在已連接",
"uk": "Підключено зараз",
"xloc": [
- "default-mobile.handlebars->11->788",
- "default.handlebars->47->1618",
- "default3.handlebars->35->1602"
+ "default-mobile.handlebars->11->789",
+ "default.handlebars->47->1619",
+ "default3.handlebars->35->1603"
]
},
{
@@ -20131,12 +20131,12 @@
"default-mobile.handlebars->11->2",
"default-mobile.handlebars->11->50",
"default-mobile.handlebars->11->745",
- "default.handlebars->47->1598",
+ "default.handlebars->47->1599",
"default.handlebars->47->401",
"default.handlebars->47->404",
"default.handlebars->47->484",
"default.handlebars->47->9",
- "default3.handlebars->35->1582",
+ "default3.handlebars->35->1583",
"default3.handlebars->35->398",
"default3.handlebars->35->401",
"default3.handlebars->35->481",
@@ -20199,8 +20199,8 @@
"zh-cht": "連接數量",
"uk": "Кількість Підключень",
"xloc": [
- "default.handlebars->47->3349",
- "default3.handlebars->35->3336"
+ "default.handlebars->47->3350",
+ "default3.handlebars->35->3337"
]
},
{
@@ -20230,10 +20230,10 @@
"uk": "Помилка Підключення",
"xloc": [
"default-mobile.handlebars->11->708",
- "default.handlebars->47->1515",
- "default.handlebars->47->1532",
- "default3.handlebars->35->1500",
- "default3.handlebars->35->1517",
+ "default.handlebars->47->1516",
+ "default.handlebars->47->1533",
+ "default3.handlebars->35->1501",
+ "default3.handlebars->35->1518",
"login2.handlebars->7->232"
]
},
@@ -20263,8 +20263,8 @@
"zh-cht": "連接轉發器",
"uk": "Ретрансляція Підключення",
"xloc": [
- "default.handlebars->47->3385",
- "default3.handlebars->35->3372"
+ "default.handlebars->47->3386",
+ "default3.handlebars->35->3373"
]
},
{
@@ -20353,13 +20353,13 @@
"uk": "Сполучення",
"xloc": [
"default-mobile.handlebars->11->537",
- "default.handlebars->47->2471",
+ "default.handlebars->47->2472",
"default.handlebars->47->389",
- "default.handlebars->47->996",
+ "default.handlebars->47->997",
"default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1",
- "default3.handlebars->35->2467",
+ "default3.handlebars->35->2468",
"default3.handlebars->35->386",
- "default3.handlebars->35->993",
+ "default3.handlebars->35->994",
"default3.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1"
]
},
@@ -20389,8 +20389,8 @@
"zh-cht": "同意",
"uk": "Згода",
"xloc": [
- "default.handlebars->47->2689",
- "default3.handlebars->35->2685"
+ "default.handlebars->47->2690",
+ "default3.handlebars->35->2686"
]
},
{
@@ -20420,13 +20420,13 @@
"uk": "Консоль",
"xloc": [
"default-mobile.handlebars->11->577",
- "default.handlebars->47->1136",
- "default.handlebars->47->1161",
+ "default.handlebars->47->1137",
+ "default.handlebars->47->1162",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
"default.handlebars->contextMenu->cxconsole",
- "default3.handlebars->35->1131",
- "default3.handlebars->35->1156",
+ "default3.handlebars->35->1132",
+ "default3.handlebars->35->1157",
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
"default3.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
"default3.handlebars->contextMenu->cxconsole"
@@ -20488,10 +20488,10 @@
"zh-cht": "控制",
"uk": "Керування",
"xloc": [
- "default.handlebars->47->1135",
- "default.handlebars->47->1160",
- "default3.handlebars->35->1130",
- "default3.handlebars->35->1155",
+ "default.handlebars->47->1136",
+ "default.handlebars->47->1161",
+ "default3.handlebars->35->1131",
+ "default3.handlebars->35->1156",
"messenger.handlebars->remoteImage->3->2"
]
},
@@ -20551,8 +20551,8 @@
"zh-cht": "Cookie編碼器",
"uk": "Cookie кодувальник",
"xloc": [
- "default.handlebars->47->3368",
- "default3.handlebars->35->3355"
+ "default.handlebars->47->3369",
+ "default3.handlebars->35->3356"
]
},
{
@@ -20880,14 +20880,14 @@
"zh-cht": "複製連結到剪貼板",
"uk": "Копіювати посилання до буфера обміну",
"xloc": [
- "default.handlebars->47->2482",
- "default.handlebars->47->2501",
+ "default.handlebars->47->2483",
+ "default.handlebars->47->2502",
"default.handlebars->47->319",
"default.handlebars->47->341",
"default.handlebars->47->343",
"default.handlebars->47->592",
- "default3.handlebars->35->2478",
- "default3.handlebars->35->2497",
+ "default3.handlebars->35->2479",
+ "default3.handlebars->35->2498",
"default3.handlebars->35->316",
"default3.handlebars->35->338",
"default3.handlebars->35->340",
@@ -21050,8 +21050,8 @@
"zh-cht": "複製:“{0}”到“{1}”",
"uk": "Копіювати: \\\"{0}\\\" до \\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2575",
- "default3.handlebars->35->2571"
+ "default.handlebars->47->2576",
+ "default3.handlebars->35->2572"
]
},
{
@@ -21260,8 +21260,8 @@
"zh-cht": "核心伺服器",
"uk": "Центральний Сервер",
"xloc": [
- "default.handlebars->47->3367",
- "default3.handlebars->35->3354"
+ "default.handlebars->47->3368",
+ "default3.handlebars->35->3355"
]
},
{
@@ -21291,8 +21291,8 @@
"uk": "Корсиканська",
"xloc": [
"default-mobile.handlebars->11->153",
- "default.handlebars->47->1886",
- "default3.handlebars->35->1866",
+ "default.handlebars->47->1887",
+ "default3.handlebars->35->1867",
"login2.handlebars->7->41"
]
},
@@ -21300,7 +21300,7 @@
"en": "Cosmo",
"nl": "Cosmo",
"xloc": [
- "default3.handlebars->35->2072"
+ "default3.handlebars->35->2073"
]
},
{
@@ -21355,8 +21355,8 @@
"zh-cht": "創建帳號",
"uk": "Створити Акаунт",
"xloc": [
- "default.handlebars->47->2815",
- "default3.handlebars->35->2810",
+ "default.handlebars->47->2816",
+ "default3.handlebars->35->2811",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1",
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1",
"login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1"
@@ -21443,9 +21443,9 @@
"zh-cht": "創建登錄令牌",
"uk": "Створити Токен Входу",
"xloc": [
- "default.handlebars->47->2071",
+ "default.handlebars->47->2072",
"default.handlebars->47->344",
- "default3.handlebars->35->2052",
+ "default3.handlebars->35->2053",
"default3.handlebars->35->341"
]
},
@@ -21475,8 +21475,8 @@
"zh-cht": "創建用戶群",
"uk": "Створити Групу Користувачів",
"xloc": [
- "default.handlebars->47->2855",
- "default3.handlebars->35->2848"
+ "default.handlebars->47->2856",
+ "default3.handlebars->35->2849"
]
},
{
@@ -21505,8 +21505,8 @@
"zh-cht": "創建鏈結以與訪客共享此裝置",
"uk": "Створіть посилання, щоб поділитися цим пристроєм з гостем",
"xloc": [
- "default.handlebars->47->1025",
- "default3.handlebars->35->1022"
+ "default.handlebars->47->1026",
+ "default3.handlebars->35->1023"
]
},
{
@@ -21535,8 +21535,8 @@
"zh-cht": "使用以下選項創建一個新的裝置群。",
"uk": "Створіть нову групу пристроїв за допомогою параметрів нижче.",
"xloc": [
- "default.handlebars->47->2101",
- "default3.handlebars->35->2100"
+ "default.handlebars->47->2102",
+ "default3.handlebars->35->2101"
]
},
{
@@ -21595,8 +21595,8 @@
"zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。",
"uk": "Створіть тимчасове ім'я користувача та пароль, які можна використовувати як альтернативний лоґін для входу до вашого акаунту. Це корисно, щоб надати засобам або іншим службам доступ до вашого акаунту.",
"xloc": [
- "default.handlebars->47->2051",
- "default3.handlebars->35->2031"
+ "default.handlebars->47->2052",
+ "default3.handlebars->35->2032"
]
},
{
@@ -21655,8 +21655,8 @@
"zh-cht": "創建文件夾:“{0}”",
"uk": "Створити теку: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2568",
- "default3.handlebars->35->2564"
+ "default.handlebars->47->2569",
+ "default3.handlebars->35->2565"
]
},
{
@@ -21737,8 +21737,8 @@
"nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren",
"uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV",
"xloc": [
- "default.handlebars->47->2772",
- "default3.handlebars->35->2767"
+ "default.handlebars->47->2773",
+ "default3.handlebars->35->2768"
]
},
{
@@ -21798,8 +21798,8 @@
"zh-cht": "創建的設備組:{0}",
"uk": "Створена група пристроїв: {0}",
"xloc": [
- "default.handlebars->47->2579",
- "default3.handlebars->35->2575"
+ "default.handlebars->47->2580",
+ "default3.handlebars->35->2576"
]
},
{
@@ -21828,8 +21828,8 @@
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
"uk": "Створює з'єднання, яке дозволяє гостю без акаунту віддалено керувати цим пристроєм впродовж обмеженого часу.",
"xloc": [
- "default.handlebars->47->1204",
- "default3.handlebars->35->1199"
+ "default.handlebars->47->1205",
+ "default3.handlebars->35->1200"
]
},
{
@@ -21910,8 +21910,8 @@
"zh-cht": "創建",
"uk": "Створено",
"xloc": [
- "default.handlebars->47->2963",
- "default3.handlebars->35->2956"
+ "default.handlebars->47->2964",
+ "default3.handlebars->35->2957"
]
},
{
@@ -21940,8 +21940,8 @@
"zh-cht": "創作時間",
"uk": "Час Створення",
"xloc": [
- "default.handlebars->47->2182",
- "default3.handlebars->35->2177"
+ "default.handlebars->47->2183",
+ "default3.handlebars->35->2178"
]
},
{
@@ -22001,10 +22001,10 @@
"zh-cht": "創作者",
"uk": "Творець",
"xloc": [
- "default.handlebars->47->2180",
"default.handlebars->47->2181",
- "default3.handlebars->35->2175",
- "default3.handlebars->35->2176"
+ "default.handlebars->47->2182",
+ "default3.handlebars->35->2176",
+ "default3.handlebars->35->2177"
]
},
{
@@ -22034,12 +22034,12 @@
"uk": "Облікові Дані",
"xloc": [
"default-mobile.handlebars->11->549",
- "default.handlebars->47->1008",
- "default.handlebars->47->1390",
- "default.handlebars->47->2139",
- "default3.handlebars->35->1005",
- "default3.handlebars->35->1377",
- "default3.handlebars->35->2138"
+ "default.handlebars->47->1009",
+ "default.handlebars->47->1391",
+ "default.handlebars->47->2140",
+ "default3.handlebars->35->1006",
+ "default3.handlebars->35->1378",
+ "default3.handlebars->35->2139"
]
},
{
@@ -22069,8 +22069,8 @@
"uk": "Крі",
"xloc": [
"default-mobile.handlebars->11->154",
- "default.handlebars->47->1887",
- "default3.handlebars->35->1867",
+ "default.handlebars->47->1888",
+ "default3.handlebars->35->1868",
"login2.handlebars->7->42"
]
},
@@ -22101,8 +22101,8 @@
"uk": "Хорватська",
"xloc": [
"default-mobile.handlebars->11->155",
- "default.handlebars->47->1888",
- "default3.handlebars->35->1868",
+ "default.handlebars->47->1889",
+ "default3.handlebars->35->1869",
"login2.handlebars->7->43"
]
},
@@ -22198,11 +22198,11 @@
"xloc": [
"default-mobile.handlebars->11->669",
"default-mobile.handlebars->11->673",
- "default.handlebars->47->1432",
- "default.handlebars->47->1436",
+ "default.handlebars->47->1433",
+ "default.handlebars->47->1437",
"default.handlebars->47->62",
- "default3.handlebars->35->1419",
- "default3.handlebars->35->1423",
+ "default3.handlebars->35->1420",
+ "default3.handlebars->35->1424",
"default3.handlebars->35->62",
"sharing.handlebars->11->24"
]
@@ -22407,9 +22407,9 @@
"zh-cht": "當前密碼不正確。",
"uk": "Поточний пароль неправильний.",
"xloc": [
- "default-mobile.handlebars->11->1052",
- "default.handlebars->47->3287",
- "default3.handlebars->35->3274"
+ "default-mobile.handlebars->11->1053",
+ "default.handlebars->47->3288",
+ "default3.handlebars->35->3275"
]
},
{
@@ -22512,7 +22512,7 @@
"en": "Cyborg",
"nl": "Cyborg",
"xloc": [
- "default3.handlebars->35->2073"
+ "default3.handlebars->35->2074"
]
},
{
@@ -22542,8 +22542,8 @@
"uk": "Чеська",
"xloc": [
"default-mobile.handlebars->11->156",
- "default.handlebars->47->1889",
- "default3.handlebars->35->1869",
+ "default.handlebars->47->1890",
+ "default3.handlebars->35->1870",
"login2.handlebars->7->44"
]
},
@@ -22554,9 +22554,9 @@
"pl": "Serwery DNS",
"uk": "DNS Сервери",
"xloc": [
- "default-mobile.handlebars->11->814",
- "default.handlebars->47->1654",
- "default3.handlebars->35->1638"
+ "default-mobile.handlebars->11->815",
+ "default.handlebars->47->1655",
+ "default3.handlebars->35->1639"
]
},
{
@@ -22646,8 +22646,8 @@
"uk": "Данська",
"xloc": [
"default-mobile.handlebars->11->157",
- "default.handlebars->47->1890",
- "default3.handlebars->35->1870",
+ "default.handlebars->47->1891",
+ "default3.handlebars->35->1871",
"login2.handlebars->7->45"
]
},
@@ -22686,7 +22686,7 @@
"en": "Darkly",
"nl": "Donker",
"xloc": [
- "default3.handlebars->35->2074"
+ "default3.handlebars->35->2075"
]
},
{
@@ -22715,8 +22715,8 @@
"zh-cht": "數據通道",
"uk": "Канал даних",
"xloc": [
- "default.handlebars->47->1388",
- "default3.handlebars->35->1375",
+ "default.handlebars->47->1389",
+ "default3.handlebars->35->1376",
"sharing.handlebars->11->11"
]
},
@@ -22732,8 +22732,8 @@
"pl": "Zapisy Bazy Danych",
"uk": "Записи Бази Даних",
"xloc": [
- "default.handlebars->47->3161",
- "default3.handlebars->35->3148"
+ "default.handlebars->47->3162",
+ "default3.handlebars->35->3149"
]
},
{
@@ -22763,8 +22763,8 @@
"uk": "Дата та Час",
"xloc": [
"default-mobile.handlebars->11->315",
- "default.handlebars->47->2048",
- "default3.handlebars->35->2028"
+ "default.handlebars->47->2049",
+ "default3.handlebars->35->2029"
]
},
{
@@ -22794,12 +22794,12 @@
"uk": "День",
"xloc": [
"default-mobile.handlebars->11->619",
- "default.handlebars->47->1299",
- "default.handlebars->47->3165",
- "default.handlebars->47->3168",
- "default3.handlebars->35->1290",
- "default3.handlebars->35->3152",
- "default3.handlebars->35->3155"
+ "default.handlebars->47->1300",
+ "default.handlebars->47->3166",
+ "default.handlebars->47->3169",
+ "default3.handlebars->35->1291",
+ "default3.handlebars->35->3153",
+ "default3.handlebars->35->3156"
]
},
{
@@ -22828,10 +22828,10 @@
"zh-cht": "停用",
"uk": "Деактивувати",
"xloc": [
- "default.handlebars->47->2212",
- "default.handlebars->47->2276",
- "default3.handlebars->35->2207",
- "default3.handlebars->35->2269"
+ "default.handlebars->47->2213",
+ "default.handlebars->47->2277",
+ "default3.handlebars->35->2208",
+ "default3.handlebars->35->2270"
]
},
{
@@ -22860,8 +22860,8 @@
"zh-cht": "如果設置停用CCM",
"uk": "Деактивувати CCM, якщо встановлено",
"xloc": [
- "default.handlebars->47->2288",
- "default3.handlebars->35->2281"
+ "default.handlebars->47->2289",
+ "default3.handlebars->35->2282"
]
},
{
@@ -22947,15 +22947,15 @@
"zh-cht": "默認",
"uk": "Типовий",
"xloc": [
- "default.handlebars->47->2802",
- "default.handlebars->47->2851",
- "default.handlebars->47->2862",
- "default.handlebars->47->2936",
- "default3.handlebars->35->2070",
- "default3.handlebars->35->2797",
- "default3.handlebars->35->2844",
- "default3.handlebars->35->2855",
- "default3.handlebars->35->2929"
+ "default.handlebars->47->2803",
+ "default.handlebars->47->2852",
+ "default.handlebars->47->2863",
+ "default.handlebars->47->2937",
+ "default3.handlebars->35->2071",
+ "default3.handlebars->35->2798",
+ "default3.handlebars->35->2845",
+ "default3.handlebars->35->2856",
+ "default3.handlebars->35->2930"
]
},
{
@@ -22985,8 +22985,8 @@
"uk": "Del",
"xloc": [
"default-mobile.handlebars->11->656",
- "default.handlebars->47->1420",
- "default3.handlebars->35->1407"
+ "default.handlebars->47->1421",
+ "default3.handlebars->35->1408"
]
},
{
@@ -23020,15 +23020,15 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
"default-mobile.handlebars->dialog->idx_dlgButtonBar->5",
- "default.handlebars->47->1560",
- "default.handlebars->47->2508",
+ "default.handlebars->47->1561",
+ "default.handlebars->47->2509",
"default.handlebars->47->858",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
"default.handlebars->filesContextMenu->5",
- "default3.handlebars->35->1544",
- "default3.handlebars->35->2504",
+ "default3.handlebars->35->1545",
+ "default3.handlebars->35->2505",
"default3.handlebars->35->855",
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -23069,8 +23069,8 @@
"uk": "Видалити Акаунт",
"xloc": [
"default-mobile.handlebars->11->331",
- "default.handlebars->47->2086",
- "default3.handlebars->35->2065"
+ "default.handlebars->47->2087",
+ "default3.handlebars->35->2066"
]
},
{
@@ -23099,7 +23099,7 @@
"zh-cht": "刪除帳戶",
"uk": "Видалити Акаунти",
"xloc": [
- "default.handlebars->47->2759"
+ "default.handlebars->47->2760"
]
},
{
@@ -23129,8 +23129,8 @@
"uk": "Видалити Пристрій",
"xloc": [
"default-mobile.handlebars->11->558",
- "default.handlebars->47->1035",
- "default3.handlebars->35->1032"
+ "default.handlebars->47->1036",
+ "default3.handlebars->35->1033"
]
},
{
@@ -23189,12 +23189,12 @@
"zh-cht": "刪除群組",
"uk": "Видалити Групу",
"xloc": [
- "default-mobile.handlebars->11->959",
- "default-mobile.handlebars->11->962",
- "default.handlebars->47->2264",
- "default.handlebars->47->2305",
- "default3.handlebars->35->2259",
- "default3.handlebars->35->2298"
+ "default-mobile.handlebars->11->960",
+ "default-mobile.handlebars->11->963",
+ "default.handlebars->47->2265",
+ "default.handlebars->47->2306",
+ "default3.handlebars->35->2260",
+ "default3.handlebars->35->2299"
]
},
{
@@ -23224,8 +23224,8 @@
"uk": "Видалити Вузол",
"xloc": [
"default-mobile.handlebars->11->627",
- "default.handlebars->47->1325",
- "default3.handlebars->35->1315"
+ "default.handlebars->47->1326",
+ "default3.handlebars->35->1316"
]
},
{
@@ -23280,8 +23280,8 @@
"zh-cht": "刪除用戶",
"uk": "Видалити Користувача",
"xloc": [
- "default.handlebars->47->3010",
- "default3.handlebars->35->3003"
+ "default.handlebars->47->3011",
+ "default3.handlebars->35->3004"
]
},
{
@@ -23310,10 +23310,10 @@
"zh-cht": "刪除用戶群組",
"uk": "Видалити Групу Користувачів",
"xloc": [
- "default.handlebars->47->2904",
- "default.handlebars->47->2916",
- "default3.handlebars->35->2897",
- "default3.handlebars->35->2909"
+ "default.handlebars->47->2905",
+ "default.handlebars->47->2917",
+ "default3.handlebars->35->2898",
+ "default3.handlebars->35->2910"
]
},
{
@@ -23342,8 +23342,8 @@
"zh-cht": "刪除用戶群組",
"uk": "Видалити Групи Користувачів",
"xloc": [
- "default.handlebars->47->2849",
- "default3.handlebars->35->2842"
+ "default.handlebars->47->2850",
+ "default3.handlebars->35->2843"
]
},
{
@@ -23372,8 +23372,8 @@
"zh-cht": "刪除用戶{0}",
"uk": "Видалити Користувача {0}",
"xloc": [
- "default.handlebars->47->3078",
- "default3.handlebars->35->3065"
+ "default.handlebars->47->3079",
+ "default3.handlebars->35->3066"
]
},
{
@@ -23403,9 +23403,9 @@
"uk": "Видалити акаунт",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0",
- "default.handlebars->47->2755",
+ "default.handlebars->47->2756",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7",
- "default3.handlebars->35->2751",
+ "default3.handlebars->35->2752",
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -23465,8 +23465,8 @@
"zh-cht": "刪除群組",
"uk": "Видалити групу",
"xloc": [
- "default.handlebars->47->2845",
- "default3.handlebars->35->2838"
+ "default.handlebars->47->2846",
+ "default3.handlebars->35->2839"
]
},
{
@@ -23525,8 +23525,8 @@
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"uk": "Видалити рекурсивно: \\\"{0}\\\", {1} елемент(ів) видалено",
"xloc": [
- "default.handlebars->47->2570",
- "default3.handlebars->35->2566"
+ "default.handlebars->47->2571",
+ "default3.handlebars->35->2567"
]
},
{
@@ -23557,10 +23557,10 @@
"xloc": [
"default-mobile.handlebars->11->374",
"default-mobile.handlebars->11->721",
- "default.handlebars->47->1562",
- "default.handlebars->47->2510",
- "default3.handlebars->35->1546",
- "default3.handlebars->35->2506",
+ "default.handlebars->47->1563",
+ "default.handlebars->47->2511",
+ "default3.handlebars->35->1547",
+ "default3.handlebars->35->2507",
"sharing.handlebars->11->63"
]
},
@@ -23590,8 +23590,8 @@
"zh-cht": "刪除用戶群組{0}?",
"uk": "Видалити групу користувачів {0}?",
"xloc": [
- "default.handlebars->47->2914",
- "default3.handlebars->35->2907"
+ "default.handlebars->47->2915",
+ "default3.handlebars->35->2908"
]
},
{
@@ -23622,10 +23622,10 @@
"xloc": [
"default-mobile.handlebars->11->373",
"default-mobile.handlebars->11->720",
- "default.handlebars->47->1561",
- "default.handlebars->47->2509",
- "default3.handlebars->35->1545",
- "default3.handlebars->35->2505",
+ "default.handlebars->47->1562",
+ "default.handlebars->47->2510",
+ "default3.handlebars->35->1546",
+ "default3.handlebars->35->2506",
"sharing.handlebars->11->62"
]
},
@@ -23684,8 +23684,8 @@
"zh-cht": "刪除:“{0}”",
"uk": "Видалити: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2569",
- "default3.handlebars->35->2565"
+ "default.handlebars->47->2570",
+ "default3.handlebars->35->2566"
]
},
{
@@ -23714,8 +23714,8 @@
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"uk": "Видалити: \\\"{0}\\\", {1} елемент(ів) видалено",
"xloc": [
- "default.handlebars->47->2571",
- "default3.handlebars->35->2567"
+ "default.handlebars->47->2572",
+ "default3.handlebars->35->2568"
]
},
{
@@ -23745,8 +23745,8 @@
"uk": "Відмовлено",
"xloc": [
"default-mobile.handlebars->11->642",
- "default.handlebars->47->1375",
- "default3.handlebars->35->1362",
+ "default.handlebars->47->1376",
+ "default3.handlebars->35->1363",
"sharing.handlebars->11->29",
"sharing.handlebars->11->7"
]
@@ -23763,8 +23763,8 @@
"pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}",
"uk": "Відмовлено у вході користувачу з {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2679",
- "default3.handlebars->35->2675"
+ "default.handlebars->47->2680",
+ "default3.handlebars->35->2676"
]
},
{
@@ -23932,39 +23932,39 @@
"default-mobile.handlebars->11->498",
"default-mobile.handlebars->11->637",
"default-mobile.handlebars->11->747",
- "default-mobile.handlebars->11->802",
- "default-mobile.handlebars->11->945",
- "default-mobile.handlebars->11->968",
- "default.handlebars->47->1369",
- "default.handlebars->47->1605",
+ "default-mobile.handlebars->11->803",
+ "default-mobile.handlebars->11->946",
+ "default-mobile.handlebars->11->969",
+ "default.handlebars->47->1370",
+ "default.handlebars->47->1606",
"default.handlebars->47->162",
- "default.handlebars->47->1632",
- "default.handlebars->47->1642",
- "default.handlebars->47->2111",
- "default.handlebars->47->2173",
- "default.handlebars->47->2311",
- "default.handlebars->47->2687",
- "default.handlebars->47->2854",
- "default.handlebars->47->2865",
+ "default.handlebars->47->1633",
+ "default.handlebars->47->1643",
+ "default.handlebars->47->2112",
+ "default.handlebars->47->2174",
+ "default.handlebars->47->2312",
+ "default.handlebars->47->2688",
+ "default.handlebars->47->2855",
"default.handlebars->47->2866",
- "default.handlebars->47->2912",
+ "default.handlebars->47->2867",
+ "default.handlebars->47->2913",
"default.handlebars->47->899",
"default.handlebars->47->900",
"default.handlebars->container->column_l->p42->p42tbl->1->0->3",
- "default3.handlebars->35->1355",
- "default3.handlebars->35->1589",
- "default3.handlebars->35->1616",
+ "default3.handlebars->35->1356",
+ "default3.handlebars->35->1590",
+ "default3.handlebars->35->1617",
"default3.handlebars->35->162",
- "default3.handlebars->35->1626",
- "default3.handlebars->35->2110",
- "default3.handlebars->35->2168",
- "default3.handlebars->35->2306",
+ "default3.handlebars->35->1627",
+ "default3.handlebars->35->2111",
+ "default3.handlebars->35->2169",
"default3.handlebars->35->2307",
- "default3.handlebars->35->2683",
- "default3.handlebars->35->2847",
- "default3.handlebars->35->2858",
+ "default3.handlebars->35->2308",
+ "default3.handlebars->35->2684",
+ "default3.handlebars->35->2848",
"default3.handlebars->35->2859",
- "default3.handlebars->35->2905",
+ "default3.handlebars->35->2860",
+ "default3.handlebars->35->2906",
"default3.handlebars->35->896",
"default3.handlebars->35->897",
"default3.handlebars->container->column_l->p42->p42tbl->1->0->7"
@@ -24023,27 +24023,27 @@
"uk": "Стільниця",
"xloc": [
"default-mobile.handlebars->11->573",
- "default.handlebars->47->1092",
- "default.handlebars->47->1206",
- "default.handlebars->47->1488",
- "default.handlebars->47->2242",
- "default.handlebars->47->2317",
- "default.handlebars->47->3138",
- "default.handlebars->47->3198",
- "default.handlebars->47->3248",
- "default.handlebars->47->3343",
+ "default.handlebars->47->1093",
+ "default.handlebars->47->1207",
+ "default.handlebars->47->1489",
+ "default.handlebars->47->2243",
+ "default.handlebars->47->2318",
+ "default.handlebars->47->3139",
+ "default.handlebars->47->3199",
+ "default.handlebars->47->3249",
+ "default.handlebars->47->3344",
"default.handlebars->47->864",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
"default.handlebars->contextMenu->cxdesktop",
- "default3.handlebars->35->1089",
- "default3.handlebars->35->1201",
- "default3.handlebars->35->1473",
- "default3.handlebars->35->2237",
- "default3.handlebars->35->2313",
- "default3.handlebars->35->3125",
- "default3.handlebars->35->3185",
- "default3.handlebars->35->3235",
- "default3.handlebars->35->3330",
+ "default3.handlebars->35->1090",
+ "default3.handlebars->35->1202",
+ "default3.handlebars->35->1474",
+ "default3.handlebars->35->2238",
+ "default3.handlebars->35->2314",
+ "default3.handlebars->35->3126",
+ "default3.handlebars->35->3186",
+ "default3.handlebars->35->3236",
+ "default3.handlebars->35->3331",
"default3.handlebars->35->861",
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
"default3.handlebars->contextMenu->cxdesktop",
@@ -24077,12 +24077,12 @@
"zh-cht": "桌面 + 文件",
"uk": "Стільниця + Файли",
"xloc": [
- "default.handlebars->47->1096",
- "default.handlebars->47->1209",
- "default.handlebars->47->2246",
- "default3.handlebars->35->1093",
- "default3.handlebars->35->1204",
- "default3.handlebars->35->2241"
+ "default.handlebars->47->1097",
+ "default.handlebars->47->1210",
+ "default.handlebars->47->2247",
+ "default3.handlebars->35->1094",
+ "default3.handlebars->35->1205",
+ "default3.handlebars->35->2242"
]
},
{
@@ -24111,10 +24111,10 @@
"zh-cht": "桌面+終端",
"uk": "Стільниця + Термінал",
"xloc": [
- "default.handlebars->47->1093",
- "default.handlebars->47->2243",
- "default3.handlebars->35->1090",
- "default3.handlebars->35->2238"
+ "default.handlebars->47->1094",
+ "default.handlebars->47->2244",
+ "default3.handlebars->35->1091",
+ "default3.handlebars->35->2239"
]
},
{
@@ -24143,12 +24143,12 @@
"zh-cht": "桌面+終端+文件",
"uk": "Стільниця + Термінал + Файли",
"xloc": [
- "default.handlebars->47->1097",
- "default.handlebars->47->1211",
- "default.handlebars->47->2247",
- "default3.handlebars->35->1094",
- "default3.handlebars->35->1206",
- "default3.handlebars->35->2242"
+ "default.handlebars->47->1098",
+ "default.handlebars->47->1212",
+ "default.handlebars->47->2248",
+ "default3.handlebars->35->1095",
+ "default3.handlebars->35->1207",
+ "default3.handlebars->35->2243"
]
},
{
@@ -24207,8 +24207,8 @@
"zh-cht": "桌面多路復用",
"uk": "Мультиплексна Стільниця",
"xloc": [
- "default.handlebars->47->3348",
- "default3.handlebars->35->3335"
+ "default.handlebars->47->3349",
+ "default3.handlebars->35->3336"
]
},
{
@@ -24237,14 +24237,14 @@
"zh-cht": "桌面通知",
"uk": "Сповіщення Cтільниці",
"xloc": [
- "default.handlebars->47->2193",
- "default.handlebars->47->2873",
- "default.handlebars->47->2978",
- "default.handlebars->47->970",
- "default3.handlebars->35->2188",
- "default3.handlebars->35->2866",
- "default3.handlebars->35->2971",
- "default3.handlebars->35->967"
+ "default.handlebars->47->2194",
+ "default.handlebars->47->2874",
+ "default.handlebars->47->2979",
+ "default.handlebars->47->971",
+ "default3.handlebars->35->2189",
+ "default3.handlebars->35->2867",
+ "default3.handlebars->35->2972",
+ "default3.handlebars->35->968"
]
},
{
@@ -24273,14 +24273,14 @@
"zh-cht": "桌面提示",
"uk": "Запит до Стільниці",
"xloc": [
- "default.handlebars->47->2192",
- "default.handlebars->47->2872",
- "default.handlebars->47->2977",
- "default.handlebars->47->969",
- "default3.handlebars->35->2187",
- "default3.handlebars->35->2865",
- "default3.handlebars->35->2970",
- "default3.handlebars->35->966"
+ "default.handlebars->47->2193",
+ "default.handlebars->47->2873",
+ "default.handlebars->47->2978",
+ "default.handlebars->47->970",
+ "default3.handlebars->35->2188",
+ "default3.handlebars->35->2866",
+ "default3.handlebars->35->2971",
+ "default3.handlebars->35->967"
]
},
{
@@ -24309,14 +24309,14 @@
"zh-cht": "桌面提示+工具欄",
"uk": "Запит до Стільниці та Панелі Засобів",
"xloc": [
- "default.handlebars->47->2190",
- "default.handlebars->47->2870",
- "default.handlebars->47->2975",
- "default.handlebars->47->967",
- "default3.handlebars->35->2185",
- "default3.handlebars->35->2863",
- "default3.handlebars->35->2968",
- "default3.handlebars->35->964"
+ "default.handlebars->47->2191",
+ "default.handlebars->47->2871",
+ "default.handlebars->47->2976",
+ "default.handlebars->47->968",
+ "default3.handlebars->35->2186",
+ "default3.handlebars->35->2864",
+ "default3.handlebars->35->2969",
+ "default3.handlebars->35->965"
]
},
{
@@ -24345,8 +24345,8 @@
"zh-cht": "桌面會話",
"uk": "Cесія Стільниці",
"xloc": [
- "default.handlebars->47->3131",
- "default3.handlebars->35->3118"
+ "default.handlebars->47->3132",
+ "default3.handlebars->35->3119"
]
},
{
@@ -24462,14 +24462,14 @@
"zh-cht": "桌面工具欄",
"uk": "Панель Засобів Стільниці",
"xloc": [
- "default.handlebars->47->2191",
- "default.handlebars->47->2871",
- "default.handlebars->47->2976",
- "default.handlebars->47->968",
- "default3.handlebars->35->2186",
- "default3.handlebars->35->2864",
- "default3.handlebars->35->2969",
- "default3.handlebars->35->965"
+ "default.handlebars->47->2192",
+ "default.handlebars->47->2872",
+ "default.handlebars->47->2977",
+ "default.handlebars->47->969",
+ "default3.handlebars->35->2187",
+ "default3.handlebars->35->2865",
+ "default3.handlebars->35->2970",
+ "default3.handlebars->35->966"
]
},
{
@@ -24498,8 +24498,8 @@
"zh-cht": "僅桌面視圖",
"uk": "Лише Перегляд Стільниці",
"xloc": [
- "default.handlebars->47->2951",
- "default3.handlebars->35->2944"
+ "default.handlebars->47->2952",
+ "default3.handlebars->35->2945"
]
},
{
@@ -24528,8 +24528,8 @@
"zh-cht": "桌面,僅查看",
"uk": "Стільниця, лише Перегляд",
"xloc": [
- "default.handlebars->47->1214",
- "default3.handlebars->35->1209"
+ "default.handlebars->47->1215",
+ "default3.handlebars->35->1210"
]
},
{
@@ -24558,8 +24558,8 @@
"zh-cht": "桌面時段",
"uk": "Сесія Стільниці",
"xloc": [
- "default.handlebars->47->1487",
- "default3.handlebars->35->1472"
+ "default.handlebars->47->1488",
+ "default3.handlebars->35->1473"
]
},
{
@@ -24653,14 +24653,14 @@
"uk": "Деталі",
"xloc": [
"default-mobile.handlebars->11->576",
- "default.handlebars->47->1146",
- "default.handlebars->47->1171",
- "default.handlebars->47->2408",
+ "default.handlebars->47->1147",
+ "default.handlebars->47->1172",
+ "default.handlebars->47->2409",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
"default.handlebars->contextMenu->cxdetails",
- "default3.handlebars->35->1141",
- "default3.handlebars->35->1166",
- "default3.handlebars->35->2404",
+ "default3.handlebars->35->1142",
+ "default3.handlebars->35->1167",
+ "default3.handlebars->35->2405",
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
"default3.handlebars->contextMenu->cxdetails"
]
@@ -24721,22 +24721,22 @@
"zh-cht": "裝置",
"uk": "Пристрій",
"xloc": [
- "default-mobile.handlebars->11->796",
- "default.handlebars->47->1626",
- "default.handlebars->47->1834",
- "default.handlebars->47->2345",
+ "default-mobile.handlebars->11->797",
+ "default.handlebars->47->1627",
+ "default.handlebars->47->1835",
+ "default.handlebars->47->2346",
"default.handlebars->47->289",
- "default.handlebars->47->3097",
- "default.handlebars->47->3164",
- "default.handlebars->47->3182",
+ "default.handlebars->47->3098",
+ "default.handlebars->47->3165",
+ "default.handlebars->47->3183",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5",
- "default3.handlebars->35->1610",
- "default3.handlebars->35->1814",
- "default3.handlebars->35->2341",
+ "default3.handlebars->35->1611",
+ "default3.handlebars->35->1815",
+ "default3.handlebars->35->2342",
"default3.handlebars->35->286",
- "default3.handlebars->35->3084",
- "default3.handlebars->35->3151",
- "default3.handlebars->35->3169",
+ "default3.handlebars->35->3085",
+ "default3.handlebars->35->3152",
+ "default3.handlebars->35->3170",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->5"
]
},
@@ -24798,8 +24798,8 @@
"xloc": [
"default-mobile.handlebars->11->594",
"default-mobile.handlebars->11->605",
- "default.handlebars->47->1274",
- "default3.handlebars->35->1269"
+ "default.handlebars->47->1275",
+ "default3.handlebars->35->1270"
]
},
{
@@ -24888,8 +24888,8 @@
"zh-cht": "設備詳情",
"uk": "Деталі Пристрою",
"xloc": [
- "default.handlebars->47->2369",
- "default3.handlebars->35->2365"
+ "default.handlebars->47->2370",
+ "default3.handlebars->35->2366"
]
},
{
@@ -24949,29 +24949,29 @@
"uk": "Група Пристроїв",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->1030",
- "default.handlebars->47->2340",
- "default.handlebars->47->2343",
+ "default-mobile.handlebars->11->1031",
+ "default.handlebars->47->2341",
"default.handlebars->47->2344",
- "default.handlebars->47->2704",
- "default.handlebars->47->2896",
- "default.handlebars->47->2902",
- "default.handlebars->47->3085",
- "default.handlebars->47->3147",
- "default.handlebars->47->3171",
- "default.handlebars->47->3185",
- "default.handlebars->47->3265",
- "default3.handlebars->35->2336",
- "default3.handlebars->35->2339",
+ "default.handlebars->47->2345",
+ "default.handlebars->47->2705",
+ "default.handlebars->47->2897",
+ "default.handlebars->47->2903",
+ "default.handlebars->47->3086",
+ "default.handlebars->47->3148",
+ "default.handlebars->47->3172",
+ "default.handlebars->47->3186",
+ "default.handlebars->47->3266",
+ "default3.handlebars->35->2337",
"default3.handlebars->35->2340",
- "default3.handlebars->35->2700",
- "default3.handlebars->35->2889",
- "default3.handlebars->35->2895",
- "default3.handlebars->35->3072",
- "default3.handlebars->35->3134",
- "default3.handlebars->35->3158",
- "default3.handlebars->35->3172",
- "default3.handlebars->35->3252"
+ "default3.handlebars->35->2341",
+ "default3.handlebars->35->2701",
+ "default3.handlebars->35->2890",
+ "default3.handlebars->35->2896",
+ "default3.handlebars->35->3073",
+ "default3.handlebars->35->3135",
+ "default3.handlebars->35->3159",
+ "default3.handlebars->35->3173",
+ "default3.handlebars->35->3253"
]
},
{
@@ -25000,9 +25000,9 @@
"zh-cht": "裝置群用戶",
"uk": "Користувач Групи Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->1019",
- "default.handlebars->47->2415",
- "default3.handlebars->35->2411"
+ "default-mobile.handlebars->11->1020",
+ "default.handlebars->47->2416",
+ "default3.handlebars->35->2412"
]
},
{
@@ -25032,17 +25032,17 @@
"uk": "Групи Пристроїв",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3",
- "default.handlebars->47->2720",
- "default.handlebars->47->2839",
- "default.handlebars->47->2883",
- "default.handlebars->47->2972",
- "default.handlebars->47->3321",
+ "default.handlebars->47->2721",
+ "default.handlebars->47->2840",
+ "default.handlebars->47->2884",
+ "default.handlebars->47->2973",
+ "default.handlebars->47->3322",
"default.handlebars->container->column_l->p2->p2info->9",
- "default3.handlebars->35->2716",
- "default3.handlebars->35->2832",
- "default3.handlebars->35->2876",
- "default3.handlebars->35->2965",
- "default3.handlebars->35->3308",
+ "default3.handlebars->35->2717",
+ "default3.handlebars->35->2833",
+ "default3.handlebars->35->2877",
+ "default3.handlebars->35->2966",
+ "default3.handlebars->35->3309",
"default3.handlebars->container->column_l->p2->p2info->9"
]
},
@@ -25102,8 +25102,8 @@
"zh-cht": "裝置位置",
"uk": "Локація Пристрою",
"xloc": [
- "default.handlebars->47->1326",
- "default3.handlebars->35->1316"
+ "default.handlebars->47->1327",
+ "default3.handlebars->35->1317"
]
},
{
@@ -25132,8 +25132,8 @@
"zh-cht": "裝置訊息",
"uk": "Повідомлення Пристрою",
"xloc": [
- "default.handlebars->47->1186",
- "default3.handlebars->35->1181"
+ "default.handlebars->47->1187",
+ "default3.handlebars->35->1182"
]
},
{
@@ -25163,12 +25163,12 @@
"uk": "Назва Пристрою",
"xloc": [
"default-mobile.handlebars->11->635",
- "default.handlebars->47->1367",
- "default.handlebars->47->3146",
+ "default.handlebars->47->1368",
+ "default.handlebars->47->3147",
"default.handlebars->47->500",
"default.handlebars->47->509",
- "default3.handlebars->35->1353",
- "default3.handlebars->35->3133",
+ "default3.handlebars->35->1354",
+ "default3.handlebars->35->3134",
"default3.handlebars->35->497",
"default3.handlebars->35->506",
"player.handlebars->3->25"
@@ -25200,9 +25200,9 @@
"zh-cht": "裝置通知",
"uk": "Сповіщення Пристрою",
"xloc": [
- "default.handlebars->47->1200",
+ "default.handlebars->47->1201",
"default.handlebars->47->781",
- "default3.handlebars->35->1195",
+ "default3.handlebars->35->1196",
"default3.handlebars->35->778"
]
},
@@ -25232,7 +25232,7 @@
"zh-cht": "設備配對鏈接",
"uk": "Посилання на Спарювання Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->973"
+ "default-mobile.handlebars->11->974"
]
},
{
@@ -25241,8 +25241,8 @@
"nl": "Apparaat is ingeschakeld",
"uk": "Пристрій Увімкнено",
"xloc": [
- "default.handlebars->47->2683",
- "default3.handlebars->35->2679"
+ "default.handlebars->47->2684",
+ "default3.handlebars->35->2680"
]
},
{
@@ -25271,8 +25271,8 @@
"zh-cht": "設備推送",
"uk": "Push Пристрій",
"xloc": [
- "default.handlebars->47->2992",
- "default3.handlebars->35->2985"
+ "default.handlebars->47->2993",
+ "default3.handlebars->35->2986"
]
},
{
@@ -25287,8 +25287,8 @@
"pl": "Zapis Powiadomień Push Urządzenia",
"uk": "Запис Push-Сповіщень Пристрою",
"xloc": [
- "default.handlebars->47->3245",
- "default3.handlebars->35->3232"
+ "default.handlebars->47->3246",
+ "default3.handlebars->35->3233"
]
},
{
@@ -25303,8 +25303,8 @@
"pl": "Zapis SMBIOS urządzenia",
"uk": "SMBIOS запис пристрою",
"xloc": [
- "default.handlebars->47->3244",
- "default3.handlebars->35->3231"
+ "default.handlebars->47->3245",
+ "default3.handlebars->35->3232"
]
},
{
@@ -25385,10 +25385,10 @@
"zh-cht": "設備共享鏈接",
"uk": "Посилання для Поширення Пристрою",
"xloc": [
- "default.handlebars->47->1089",
- "default.handlebars->47->2239",
- "default3.handlebars->35->1086",
- "default3.handlebars->35->2234"
+ "default.handlebars->47->1090",
+ "default.handlebars->47->2240",
+ "default3.handlebars->35->1087",
+ "default3.handlebars->35->2235"
]
},
{
@@ -25539,20 +25539,20 @@
"zh-cht": "裝置連接。",
"uk": "Підключення пристрою",
"xloc": [
- "default.handlebars->47->1115",
- "default.handlebars->47->1119",
- "default.handlebars->47->1123",
- "default.handlebars->47->2074",
- "default.handlebars->47->2442",
- "default.handlebars->47->2446",
- "default.handlebars->47->2450",
- "default3.handlebars->35->1110",
- "default3.handlebars->35->1114",
- "default3.handlebars->35->1118",
- "default3.handlebars->35->2055",
- "default3.handlebars->35->2438",
- "default3.handlebars->35->2442",
- "default3.handlebars->35->2446"
+ "default.handlebars->47->1116",
+ "default.handlebars->47->1120",
+ "default.handlebars->47->1124",
+ "default.handlebars->47->2075",
+ "default.handlebars->47->2443",
+ "default.handlebars->47->2447",
+ "default.handlebars->47->2451",
+ "default3.handlebars->35->1111",
+ "default3.handlebars->35->1115",
+ "default3.handlebars->35->1119",
+ "default3.handlebars->35->2056",
+ "default3.handlebars->35->2439",
+ "default3.handlebars->35->2443",
+ "default3.handlebars->35->2447"
]
},
{
@@ -25581,20 +25581,20 @@
"zh-cht": "裝置斷開連接。",
"uk": "Відключення пристрою",
"xloc": [
- "default.handlebars->47->1116",
- "default.handlebars->47->1120",
- "default.handlebars->47->1124",
- "default.handlebars->47->2075",
- "default.handlebars->47->2443",
- "default.handlebars->47->2447",
- "default.handlebars->47->2451",
- "default3.handlebars->35->1111",
- "default3.handlebars->35->1115",
- "default3.handlebars->35->1119",
- "default3.handlebars->35->2056",
- "default3.handlebars->35->2439",
- "default3.handlebars->35->2443",
- "default3.handlebars->35->2447"
+ "default.handlebars->47->1117",
+ "default.handlebars->47->1121",
+ "default.handlebars->47->1125",
+ "default.handlebars->47->2076",
+ "default.handlebars->47->2444",
+ "default.handlebars->47->2448",
+ "default.handlebars->47->2452",
+ "default3.handlebars->35->1112",
+ "default3.handlebars->35->1116",
+ "default3.handlebars->35->1120",
+ "default3.handlebars->35->2057",
+ "default3.handlebars->35->2440",
+ "default3.handlebars->35->2444",
+ "default3.handlebars->35->2448"
]
},
{
@@ -25623,8 +25623,8 @@
"zh-cht": "設備組已創建:{0}",
"uk": "Створено групу пристроїв: {0}",
"xloc": [
- "default.handlebars->47->2600",
- "default3.handlebars->35->2596"
+ "default.handlebars->47->2601",
+ "default3.handlebars->35->2597"
]
},
{
@@ -25653,8 +25653,8 @@
"zh-cht": "設備組已刪除:{0}",
"uk": "Групу пристроїв видалено: {0}",
"xloc": [
- "default.handlebars->47->2601",
- "default3.handlebars->35->2597"
+ "default.handlebars->47->2602",
+ "default3.handlebars->35->2598"
]
},
{
@@ -25683,8 +25683,8 @@
"zh-cht": "設備組成員身份已更改:{0}",
"uk": "Змінено належність у групі пристроїв: {0}",
"xloc": [
- "default.handlebars->47->2602",
- "default3.handlebars->35->2598"
+ "default.handlebars->47->2603",
+ "default3.handlebars->35->2599"
]
},
{
@@ -25714,8 +25714,8 @@
"uk": "Примітки групи пристроїв можуть переглядати та змінювати інші адміністратори цієї групи пристроїв.",
"xloc": [
"default-mobile.handlebars->11->601",
- "default.handlebars->47->1176",
- "default3.handlebars->35->1171"
+ "default.handlebars->47->1177",
+ "default3.handlebars->35->1172"
]
},
{
@@ -25744,8 +25744,8 @@
"zh-cht": "設備組通知已更改",
"uk": "Сповіщення групи пристроїв змінено",
"xloc": [
- "default.handlebars->47->2597",
- "default3.handlebars->35->2593"
+ "default.handlebars->47->2598",
+ "default3.handlebars->35->2594"
]
},
{
@@ -25760,8 +25760,8 @@
"pl": "Zapis grupy urządzeń",
"uk": "Запис групи пристроїв",
"xloc": [
- "default.handlebars->47->3230",
- "default3.handlebars->35->3217"
+ "default.handlebars->47->3231",
+ "default3.handlebars->35->3218"
]
},
{
@@ -25790,8 +25790,8 @@
"zh-cht": "未刪除的設備組:{0}",
"uk": "Відновлено групу пристроїв: {0}",
"xloc": [
- "default.handlebars->47->2580",
- "default3.handlebars->35->2576"
+ "default.handlebars->47->2581",
+ "default3.handlebars->35->2577"
]
},
{
@@ -25820,8 +25820,8 @@
"zh-cht": "設備組 {0} 已更改:{1}",
"uk": "Групу пристроїв {0} змінено: {1}",
"xloc": [
- "default.handlebars->47->2666",
- "default3.handlebars->35->2662"
+ "default.handlebars->47->2667",
+ "default3.handlebars->35->2663"
]
},
{
@@ -25850,8 +25850,8 @@
"zh-cht": "設備組此設備是中繼",
"uk": "Групи пристроїв, для яких цей пристрій є ретранслятором",
"xloc": [
- "default.handlebars->47->1009",
- "default3.handlebars->35->1006"
+ "default.handlebars->47->1010",
+ "default3.handlebars->35->1007"
]
},
{
@@ -25866,8 +25866,8 @@
"pl": "Zapisy informacji urządzenia",
"uk": "Записи інформації про пристрій",
"xloc": [
- "default.handlebars->47->3232",
- "default3.handlebars->35->3219"
+ "default.handlebars->47->3233",
+ "default3.handlebars->35->3220"
]
},
{
@@ -26497,8 +26497,8 @@
"pl": "Zapisy zmiany stanu zasilania",
"uk": "Записи про зміни стану живлення",
"xloc": [
- "default.handlebars->47->3238",
- "default3.handlebars->35->3225"
+ "default.handlebars->47->3239",
+ "default3.handlebars->35->3226"
]
},
{
@@ -26513,8 +26513,8 @@
"pl": "Zapis urządzenia",
"uk": "Запис пристрою",
"xloc": [
- "default.handlebars->47->3229",
- "default3.handlebars->35->3216"
+ "default.handlebars->47->3230",
+ "default3.handlebars->35->3217"
]
},
{
@@ -26543,8 +26543,8 @@
"zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}",
"uk": "Пристрій запитав активацію Intel(R) AMT ACM TLS, FQDN: {0}",
"xloc": [
- "default.handlebars->47->2635",
- "default3.handlebars->35->2631"
+ "default.handlebars->47->2636",
+ "default3.handlebars->35->2632"
]
},
{
@@ -26573,8 +26573,8 @@
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"uk": "Пристрій запитав активацію Intel(R) AMT ACM, FQDN: {0}",
"xloc": [
- "default.handlebars->47->2582",
- "default3.handlebars->35->2578"
+ "default.handlebars->47->2583",
+ "default3.handlebars->35->2579"
]
},
{
@@ -26589,8 +26589,8 @@
"pl": "Zapisy udostępniania urządzenia",
"uk": "Записи поширеного пристрою",
"xloc": [
- "default.handlebars->47->3242",
- "default3.handlebars->35->3229"
+ "default.handlebars->47->3243",
+ "default3.handlebars->35->3230"
]
},
{
@@ -26605,8 +26605,8 @@
"pl": "Zapisy urządzenia, użytkowników, grup i inne",
"uk": "Пристрій, користувачі, групи та інші записи",
"xloc": [
- "default.handlebars->47->3246",
- "default3.handlebars->35->3233"
+ "default.handlebars->47->3247",
+ "default3.handlebars->35->3234"
]
},
{
@@ -26661,12 +26661,12 @@
"zh-cht": "裝置",
"uk": "Пристрої",
"xloc": [
- "default.handlebars->47->2262",
- "default.handlebars->47->2840",
- "default.handlebars->47->2884",
- "default3.handlebars->35->2257",
- "default3.handlebars->35->2833",
- "default3.handlebars->35->2877"
+ "default.handlebars->47->2263",
+ "default.handlebars->47->2841",
+ "default.handlebars->47->2885",
+ "default3.handlebars->35->2258",
+ "default3.handlebars->35->2834",
+ "default3.handlebars->35->2878"
]
},
{
@@ -26912,8 +26912,8 @@
"en": "Disabled Duo two-factor authentication",
"nl": "Duo twee factorauthenticatie uitgeschakeld",
"xloc": [
- "default.handlebars->47->2685",
- "default3.handlebars->35->2681"
+ "default.handlebars->47->2686",
+ "default3.handlebars->35->2682"
]
},
{
@@ -26942,8 +26942,8 @@
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"uk": "Двофакторну автентифікацію е-поштою вимкнено",
"xloc": [
- "default.handlebars->47->2613",
- "default3.handlebars->35->2609"
+ "default.handlebars->47->2614",
+ "default3.handlebars->35->2610"
]
},
{
@@ -26976,14 +26976,14 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span",
- "default.handlebars->47->2203",
- "default.handlebars->47->980",
+ "default.handlebars->47->2204",
+ "default.handlebars->47->981",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
"default.handlebars->deskDisconnectContextMenu->3",
- "default3.handlebars->35->2198",
- "default3.handlebars->35->977",
+ "default3.handlebars->35->2199",
+ "default3.handlebars->35->978",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->5->3->0",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->1->disconnectbutton1span->disconnectbutton1",
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->1->disconnectbutton2span->disconnectbutton2",
@@ -27222,10 +27222,10 @@
"pl": "Discord",
"uk": "Discord",
"xloc": [
- "default.handlebars->47->1792",
- "default.handlebars->47->3024",
- "default3.handlebars->35->1773",
- "default3.handlebars->35->3017"
+ "default.handlebars->47->1793",
+ "default.handlebars->47->3025",
+ "default3.handlebars->35->1774",
+ "default3.handlebars->35->3018"
]
},
{
@@ -27314,8 +27314,8 @@
"zh-cht": "在遠程裝置上顯示一個訊息框。",
"uk": "Показ вікна повідомлення на віддаленому пристрої.",
"xloc": [
- "default.handlebars->47->1180",
- "default3.handlebars->35->1175"
+ "default.handlebars->47->1181",
+ "default3.handlebars->35->1176"
]
},
{
@@ -27374,8 +27374,8 @@
"zh-cht": "在遠程裝置上顯示短信",
"uk": "Показ текстового повідомлення на віддаленому пристрої",
"xloc": [
- "default.handlebars->47->1021",
- "default3.handlebars->35->1018"
+ "default.handlebars->47->1022",
+ "default3.handlebars->35->1019"
]
},
{
@@ -27430,8 +27430,8 @@
"zh-cht": "顯示裝置群名稱",
"uk": "Показ назви групи пристроїв",
"xloc": [
- "default.handlebars->47->2073",
- "default3.handlebars->35->2054"
+ "default.handlebars->47->2074",
+ "default3.handlebars->35->2055"
]
},
{
@@ -27460,8 +27460,8 @@
"zh-cht": "顯示名稱",
"uk": "Показ назви",
"xloc": [
- "default.handlebars->47->1459",
- "default3.handlebars->35->1445"
+ "default.handlebars->47->1460",
+ "default3.handlebars->35->1446"
]
},
{
@@ -27490,8 +27490,8 @@
"zh-cht": "顯示公共鏈結",
"uk": "Показати публічне посилання",
"xloc": [
- "default.handlebars->47->2481",
- "default3.handlebars->35->2477"
+ "default.handlebars->47->2482",
+ "default3.handlebars->35->2478"
]
},
{
@@ -27520,8 +27520,8 @@
"zh-cht": "顯示 {0}",
"uk": "Показ {0}",
"xloc": [
- "default.handlebars->47->1490",
- "default3.handlebars->35->1475"
+ "default.handlebars->47->1491",
+ "default3.handlebars->35->1476"
]
},
{
@@ -27531,8 +27531,8 @@
"pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"",
"uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2682",
- "default3.handlebars->35->2678"
+ "default.handlebars->47->2683",
+ "default3.handlebars->35->2679"
]
},
{
@@ -27561,8 +27561,8 @@
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"uk": "Показ вікна повідомлення, title=\\\"{0}\\\", message=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2542",
- "default3.handlebars->35->2538"
+ "default.handlebars->47->2543",
+ "default3.handlebars->35->2539"
]
},
{
@@ -27591,8 +27591,8 @@
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"uk": "Показувати висувне повідомлення, title=\\\"{0}\\\", message=\\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2550",
- "default3.handlebars->35->2546"
+ "default.handlebars->47->2551",
+ "default3.handlebars->35->2547"
]
},
{
@@ -27621,10 +27621,10 @@
"zh-cht": "什麼都不做",
"uk": "Нічого не робити",
"xloc": [
- "default.handlebars->47->2291",
- "default.handlebars->47->2295",
- "default3.handlebars->35->2284",
- "default3.handlebars->35->2288"
+ "default.handlebars->47->2292",
+ "default.handlebars->47->2296",
+ "default3.handlebars->35->2285",
+ "default3.handlebars->35->2289"
]
},
{
@@ -27654,17 +27654,17 @@
"uk": "Домен",
"xloc": [
"default.handlebars->47->131",
- "default.handlebars->47->1393",
- "default.handlebars->47->2803",
- "default.handlebars->47->2852",
- "default.handlebars->47->2861",
- "default.handlebars->47->2935",
+ "default.handlebars->47->1394",
+ "default.handlebars->47->2804",
+ "default.handlebars->47->2853",
+ "default.handlebars->47->2862",
+ "default.handlebars->47->2936",
"default3.handlebars->35->131",
- "default3.handlebars->35->1380",
- "default3.handlebars->35->2798",
- "default3.handlebars->35->2845",
- "default3.handlebars->35->2854",
- "default3.handlebars->35->2928",
+ "default3.handlebars->35->1381",
+ "default3.handlebars->35->2799",
+ "default3.handlebars->35->2846",
+ "default3.handlebars->35->2855",
+ "default3.handlebars->35->2929",
"mstsc.handlebars->main->1->3->1->rowdomain->1->0",
"mstsc.handlebars->main->1->3->1->rowdomain->3"
]
@@ -27721,8 +27721,8 @@
"zh-cht": "請勿更改,如果設置請保留CCM",
"uk": "Не змінювати, зберегти CCM, якщо встановлено",
"xloc": [
- "default.handlebars->47->2287",
- "default3.handlebars->35->2280"
+ "default.handlebars->47->2288",
+ "default3.handlebars->35->2281"
]
},
{
@@ -27777,8 +27777,8 @@
"zh-cht": "不要連接到伺服器",
"uk": "Не підключатися до сервера",
"xloc": [
- "default.handlebars->47->2296",
- "default3.handlebars->35->2289"
+ "default.handlebars->47->2297",
+ "default3.handlebars->35->2290"
]
},
{
@@ -27917,8 +27917,8 @@
"uk": "Вниз",
"xloc": [
"default-mobile.handlebars->11->665",
- "default.handlebars->47->1428",
- "default3.handlebars->35->1415"
+ "default.handlebars->47->1429",
+ "default3.handlebars->35->1416"
]
},
{
@@ -28045,8 +28045,8 @@
"uk": "Завантажити Файл",
"xloc": [
"default-mobile.handlebars->11->740",
- "default.handlebars->47->1582",
- "default3.handlebars->35->1566",
+ "default.handlebars->47->1583",
+ "default3.handlebars->35->1567",
"sharing.handlebars->11->82"
]
},
@@ -28106,8 +28106,8 @@
"zh-cht": "下載MeshCmd",
"uk": "Завантажити MeshCmd",
"xloc": [
- "default.handlebars->47->1352",
- "default3.handlebars->35->1340"
+ "default.handlebars->47->1353",
+ "default3.handlebars->35->1341"
]
},
{
@@ -28196,10 +28196,10 @@
"zh-cht": "下載報告",
"uk": "Завантажити Звіт",
"xloc": [
- "default.handlebars->47->2709",
+ "default.handlebars->47->2710",
"default.handlebars->container->column_l->p3->3->1->0->3",
"default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv",
- "default3.handlebars->35->2705",
+ "default3.handlebars->35->2706",
"default3.handlebars->container->column_l->p60->3->1->0->1->1->p60downloadReportDiv"
]
},
@@ -28229,8 +28229,8 @@
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
"uk": "Завантажте \\\"meshcmd\\\" із файлом операцій, щоб спрямувати трафік через сервер на цей пристрій. Обов’язково відредагуйте meshaction.txt і додайте пароль від свого акаунту, та внесіть інші зміни за потребою.",
"xloc": [
- "default.handlebars->47->1345",
- "default3.handlebars->35->1333"
+ "default.handlebars->47->1346",
+ "default3.handlebars->35->1334"
]
},
{
@@ -28319,8 +28319,8 @@
"zh-cht": "下載設備列表",
"uk": "Отримати перелік пристроїв",
"xloc": [
- "default.handlebars->47->2260",
- "default3.handlebars->35->2255"
+ "default.handlebars->47->2261",
+ "default3.handlebars->35->2256"
]
},
{
@@ -28379,8 +28379,8 @@
"zh-cht": "下載電源事件",
"uk": "Отримати події електроживлення",
"xloc": [
- "default.handlebars->47->1300",
- "default3.handlebars->35->1292"
+ "default.handlebars->47->1301",
+ "default3.handlebars->35->1293"
]
},
{
@@ -28559,8 +28559,8 @@
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"uk": "Завантажте файл переліку подій в одному з наведених нижче форматів.",
"xloc": [
- "default.handlebars->47->2710",
- "default3.handlebars->35->2706"
+ "default.handlebars->47->2711",
+ "default3.handlebars->35->2707"
]
},
{
@@ -28589,8 +28589,8 @@
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"uk": "Завантажити файл із переліком користувачів в одному з наведених нижче форматів.",
"xloc": [
- "default.handlebars->47->2787",
- "default3.handlebars->35->2782"
+ "default.handlebars->47->2788",
+ "default3.handlebars->35->2783"
]
},
{
@@ -28710,8 +28710,8 @@
"zh-cht": "下載:“{0}”",
"uk": "Завантажити: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2573",
- "default3.handlebars->35->2569"
+ "default.handlebars->47->2574",
+ "default3.handlebars->35->2570"
]
},
{
@@ -28740,8 +28740,8 @@
"zh-cht": "下載:\\\"{0}\\\",大小:{1}",
"uk": "Завантажити: \\\"{0}\\\", Розмір: {1}",
"xloc": [
- "default.handlebars->47->2630",
- "default3.handlebars->35->2626"
+ "default.handlebars->47->2631",
+ "default3.handlebars->35->2627"
]
},
{
@@ -28777,8 +28777,8 @@
"en": "Duo",
"nl": "Duo",
"xloc": [
- "default.handlebars->47->2990",
- "default3.handlebars->35->2983",
+ "default.handlebars->47->2991",
+ "default3.handlebars->35->2984",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3"
]
@@ -28787,10 +28787,10 @@
"en": "Duo Authentication",
"nl": "Duo authenticatie",
"xloc": [
- "default.handlebars->47->1821",
- "default.handlebars->47->1823",
- "default3.handlebars->35->1802",
- "default3.handlebars->35->1804",
+ "default.handlebars->47->1822",
+ "default.handlebars->47->1824",
+ "default3.handlebars->35->1803",
+ "default3.handlebars->35->1805",
"login2.handlebars->centralTable->1->0->logincell->resettokenpanel->resettokenpanelform->5->1->2farow2->1->3",
"login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3"
]
@@ -28821,8 +28821,8 @@
"zh-cht": "代理重複",
"uk": "Дублювати Агента",
"xloc": [
- "default.handlebars->47->3317",
- "default3.handlebars->35->3304"
+ "default.handlebars->47->3318",
+ "default3.handlebars->35->3305"
]
},
{
@@ -28881,8 +28881,8 @@
"zh-cht": "複製用戶群",
"uk": "Дублювати Групу Користувачів",
"xloc": [
- "default.handlebars->47->2856",
- "default3.handlebars->35->2849"
+ "default.handlebars->47->2857",
+ "default3.handlebars->35->2850"
]
},
{
@@ -28937,16 +28937,16 @@
"zh-cht": "持續時間",
"uk": "Тривалість",
"xloc": [
- "default.handlebars->47->1242",
+ "default.handlebars->47->1243",
"default.handlebars->47->295",
"default.handlebars->47->297",
- "default.handlebars->47->3126",
- "default.handlebars->47->3152",
- "default3.handlebars->35->1237",
+ "default.handlebars->47->3127",
+ "default.handlebars->47->3153",
+ "default3.handlebars->35->1238",
"default3.handlebars->35->292",
"default3.handlebars->35->294",
- "default3.handlebars->35->3113",
- "default3.handlebars->35->3139",
+ "default3.handlebars->35->3114",
+ "default3.handlebars->35->3140",
"player.handlebars->3->18"
]
},
@@ -29003,8 +29003,8 @@
"uk": "Голландська (Бельгійська)",
"xloc": [
"default-mobile.handlebars->11->159",
- "default.handlebars->47->1892",
- "default3.handlebars->35->1872",
+ "default.handlebars->47->1893",
+ "default3.handlebars->35->1873",
"login2.handlebars->7->47"
]
},
@@ -29035,8 +29035,8 @@
"uk": "Голландська (Стандартна)",
"xloc": [
"default-mobile.handlebars->11->158",
- "default.handlebars->47->1891",
- "default3.handlebars->35->1871",
+ "default.handlebars->47->1892",
+ "default3.handlebars->35->1872",
"login2.handlebars->7->46"
]
},
@@ -29491,12 +29491,12 @@
"default-mobile.handlebars->11->631",
"default-mobile.handlebars->11->633",
"default-mobile.handlebars->11->640",
- "default.handlebars->47->1363",
- "default.handlebars->47->1365",
- "default.handlebars->47->1372",
- "default3.handlebars->35->1351",
+ "default.handlebars->47->1364",
+ "default.handlebars->47->1366",
+ "default.handlebars->47->1373",
"default3.handlebars->35->1352",
- "default3.handlebars->35->1359"
+ "default3.handlebars->35->1353",
+ "default3.handlebars->35->1360"
]
},
{
@@ -29525,23 +29525,23 @@
"zh-cht": "編輯裝置群",
"uk": "Редагувати Групу Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->963",
- "default-mobile.handlebars->11->966",
- "default-mobile.handlebars->11->969",
- "default-mobile.handlebars->11->976",
- "default-mobile.handlebars->11->996",
- "default.handlebars->47->2306",
- "default.handlebars->47->2309",
- "default.handlebars->47->2312",
- "default.handlebars->47->2349",
- "default.handlebars->47->2376",
- "default.handlebars->47->2388",
- "default3.handlebars->35->2300",
- "default3.handlebars->35->2303",
- "default3.handlebars->35->2308",
- "default3.handlebars->35->2345",
- "default3.handlebars->35->2372",
- "default3.handlebars->35->2384"
+ "default-mobile.handlebars->11->964",
+ "default-mobile.handlebars->11->967",
+ "default-mobile.handlebars->11->970",
+ "default-mobile.handlebars->11->977",
+ "default-mobile.handlebars->11->997",
+ "default.handlebars->47->2307",
+ "default.handlebars->47->2310",
+ "default.handlebars->47->2313",
+ "default.handlebars->47->2350",
+ "default.handlebars->47->2377",
+ "default.handlebars->47->2389",
+ "default3.handlebars->35->2301",
+ "default3.handlebars->35->2304",
+ "default3.handlebars->35->2309",
+ "default3.handlebars->35->2346",
+ "default3.handlebars->35->2373",
+ "default3.handlebars->35->2385"
]
},
{
@@ -29570,8 +29570,8 @@
"zh-cht": "編輯裝置群功能",
"uk": "Редагувати Ознаки Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2335",
- "default3.handlebars->35->2331"
+ "default.handlebars->47->2336",
+ "default3.handlebars->35->2332"
]
},
{
@@ -29600,10 +29600,10 @@
"zh-cht": "編輯裝置群權限",
"uk": "Редагувати Дозволи Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2373",
- "default.handlebars->47->2385",
- "default3.handlebars->35->2369",
- "default3.handlebars->35->2381"
+ "default.handlebars->47->2374",
+ "default.handlebars->47->2386",
+ "default3.handlebars->35->2370",
+ "default3.handlebars->35->2382"
]
},
{
@@ -29632,8 +29632,8 @@
"zh-cht": "編輯裝置群用戶同意",
"uk": "Редагувати Згоду Користувача Групи Пристроїв",
"xloc": [
- "default.handlebars->47->2313",
- "default3.handlebars->35->2309"
+ "default.handlebars->47->2314",
+ "default3.handlebars->35->2310"
]
},
{
@@ -29662,9 +29662,9 @@
"zh-cht": "編輯裝置筆記",
"uk": "Редагувати Нотатки Пристрою",
"xloc": [
- "default-mobile.handlebars->11->988",
- "default.handlebars->47->2363",
- "default3.handlebars->35->2359"
+ "default-mobile.handlebars->11->989",
+ "default.handlebars->47->2364",
+ "default3.handlebars->35->2360"
]
},
{
@@ -29693,10 +29693,10 @@
"zh-cht": "編輯裝置權限",
"uk": "Редагувати Дозволи Пристрою",
"xloc": [
- "default.handlebars->47->2378",
- "default.handlebars->47->2380",
- "default3.handlebars->35->2374",
- "default3.handlebars->35->2376"
+ "default.handlebars->47->2379",
+ "default.handlebars->47->2381",
+ "default3.handlebars->35->2375",
+ "default3.handlebars->35->2377"
]
},
{
@@ -29755,8 +29755,8 @@
"zh-cht": "編輯裝置用戶同意",
"uk": "Редагувати Згоду Користувача Пристрою",
"xloc": [
- "default.handlebars->47->2315",
- "default3.handlebars->35->2311"
+ "default.handlebars->47->2316",
+ "default3.handlebars->35->2312"
]
},
{
@@ -29785,8 +29785,8 @@
"zh-cht": "編輯群組",
"uk": "Редагувати Групу",
"xloc": [
- "default.handlebars->47->1150",
- "default3.handlebars->35->1145"
+ "default.handlebars->47->1151",
+ "default3.handlebars->35->1146"
]
},
{
@@ -29819,11 +29819,11 @@
"default-mobile.handlebars->11->524",
"default-mobile.handlebars->11->525",
"default-mobile.handlebars->11->626",
- "default.handlebars->47->1307",
+ "default.handlebars->47->1308",
"default.handlebars->47->923",
"default.handlebars->47->928",
"default.handlebars->47->929",
- "default3.handlebars->35->1298",
+ "default3.handlebars->35->1299",
"default3.handlebars->35->920",
"default3.handlebars->35->925",
"default3.handlebars->35->926"
@@ -29855,16 +29855,16 @@
"zh-cht": "編輯筆記",
"uk": "Редагувати Примітки",
"xloc": [
- "default-mobile.handlebars->11->1003",
- "default.handlebars->47->2395",
- "default3.handlebars->35->2391"
+ "default-mobile.handlebars->11->1004",
+ "default.handlebars->47->2396",
+ "default3.handlebars->35->2392"
]
},
{
"en": "Edit Tags",
"nl": "Bewerk Tags",
"xloc": [
- "default3.handlebars->35->1358"
+ "default3.handlebars->35->1359"
]
},
{
@@ -29893,8 +29893,8 @@
"zh-cht": "編輯用戶同意",
"uk": "Редагувати Згоду Користувача",
"xloc": [
- "default.handlebars->47->2314",
- "default3.handlebars->35->2310"
+ "default.handlebars->47->2315",
+ "default3.handlebars->35->2311"
]
},
{
@@ -29923,8 +29923,8 @@
"zh-cht": "編輯用戶裝置群權限",
"uk": "Редагувати Дозволи Групи Пристроїв Користувача",
"xloc": [
- "default.handlebars->47->2386",
- "default3.handlebars->35->2382"
+ "default.handlebars->47->2387",
+ "default3.handlebars->35->2383"
]
},
{
@@ -29953,8 +29953,8 @@
"zh-cht": "編輯用戶裝置權限",
"uk": "Редагувати Дозволи Пристрою Користувача",
"xloc": [
- "default.handlebars->47->2381",
- "default3.handlebars->35->2377"
+ "default.handlebars->47->2382",
+ "default3.handlebars->35->2378"
]
},
{
@@ -29983,8 +29983,8 @@
"zh-cht": "編輯用戶特徵",
"uk": "Редагувати Ознаки Користувача",
"xloc": [
- "default.handlebars->47->3061",
- "default3.handlebars->35->3054"
+ "default.handlebars->47->3062",
+ "default3.handlebars->35->3055"
]
},
{
@@ -30013,8 +30013,8 @@
"zh-cht": "編輯用戶群",
"uk": "Редагувати Групу Користувачів",
"xloc": [
- "default.handlebars->47->2913",
- "default3.handlebars->35->2906"
+ "default.handlebars->47->2914",
+ "default3.handlebars->35->2907"
]
},
{
@@ -30043,8 +30043,8 @@
"zh-cht": "編輯用戶群裝置權限",
"uk": "Редагувати Дозволи Крупи Користувачів на Пристрої",
"xloc": [
- "default.handlebars->47->2383",
- "default3.handlebars->35->2379"
+ "default.handlebars->47->2384",
+ "default3.handlebars->35->2380"
]
},
{
@@ -30073,8 +30073,8 @@
"zh-cht": "編輯用戶組功能",
"uk": "Редагувати Ознаки Групи Користувачів",
"xloc": [
- "default.handlebars->47->2906",
- "default3.handlebars->35->2899"
+ "default.handlebars->47->2907",
+ "default3.handlebars->35->2900"
]
},
{
@@ -30103,8 +30103,8 @@
"zh-cht": "編輯用戶組用戶同意",
"uk": "Редагувати Згоду Користувача Групи Користувачів",
"xloc": [
- "default.handlebars->47->2316",
- "default3.handlebars->35->2312"
+ "default.handlebars->47->2317",
+ "default3.handlebars->35->2313"
]
},
{
@@ -30250,18 +30250,18 @@
"uk": "е-пошта",
"xloc": [
"default-mobile.handlebars->11->325",
- "default.handlebars->47->2805",
- "default.handlebars->47->2939",
- "default.handlebars->47->2941",
- "default.handlebars->47->2989",
- "default.handlebars->47->3003",
- "default.handlebars->47->3064",
+ "default.handlebars->47->2806",
+ "default.handlebars->47->2940",
+ "default.handlebars->47->2942",
+ "default.handlebars->47->2990",
+ "default.handlebars->47->3004",
+ "default.handlebars->47->3065",
"default.handlebars->47->551",
- "default3.handlebars->35->2800",
- "default3.handlebars->35->2932",
- "default3.handlebars->35->2934",
- "default3.handlebars->35->2982",
- "default3.handlebars->35->2996",
+ "default3.handlebars->35->2801",
+ "default3.handlebars->35->2933",
+ "default3.handlebars->35->2935",
+ "default3.handlebars->35->2983",
+ "default3.handlebars->35->2997",
"default3.handlebars->35->548",
"login-mobile.handlebars->5->45",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -30287,10 +30287,10 @@
"pl": "Email ({0})",
"uk": "е-пошта ({0})",
"xloc": [
- "default.handlebars->47->2205",
- "default.handlebars->47->982",
- "default3.handlebars->35->2200",
- "default3.handlebars->35->979"
+ "default.handlebars->47->2206",
+ "default.handlebars->47->983",
+ "default3.handlebars->35->2201",
+ "default3.handlebars->35->980"
]
},
{
@@ -30320,8 +30320,8 @@
"uk": "Змінити Адресу е-пошти",
"xloc": [
"default-mobile.handlebars->11->326",
- "default.handlebars->47->2082",
- "default3.handlebars->35->2063"
+ "default.handlebars->47->2083",
+ "default3.handlebars->35->2064"
]
},
{
@@ -30351,8 +30351,8 @@
"uk": "Автентифікація е-пошти",
"xloc": [
"default-mobile.handlebars->11->110",
- "default.handlebars->47->1818",
- "default3.handlebars->35->1799"
+ "default.handlebars->47->1819",
+ "default3.handlebars->35->1800"
]
},
{
@@ -30476,10 +30476,10 @@
"zh-cht": "電子郵件通知",
"uk": "Сповіщення е-поштою",
"xloc": [
- "default.handlebars->47->1118",
- "default.handlebars->47->2445",
- "default3.handlebars->35->1113",
- "default3.handlebars->35->2441"
+ "default.handlebars->47->1119",
+ "default.handlebars->47->2446",
+ "default3.handlebars->35->1114",
+ "default3.handlebars->35->2442"
]
},
{
@@ -30535,8 +30535,8 @@
"uk": "Верифікація е-пошти",
"xloc": [
"default-mobile.handlebars->11->324",
- "default.handlebars->47->2080",
- "default3.handlebars->35->2061"
+ "default.handlebars->47->2081",
+ "default3.handlebars->35->2062"
]
},
{
@@ -30565,9 +30565,9 @@
"zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})",
"uk": "Домен е-пошти \\\"{0}\\\" заборонено. Дозволено лише ({1}).",
"xloc": [
- "default-mobile.handlebars->11->1061",
- "default.handlebars->47->3296",
- "default3.handlebars->35->3283"
+ "default-mobile.handlebars->11->1062",
+ "default.handlebars->47->3297",
+ "default3.handlebars->35->3284"
]
},
{
@@ -30626,8 +30626,8 @@
"zh-cht": "電郵未驗證",
"uk": "Е-пошта не верифікована",
"xloc": [
- "default.handlebars->47->2740",
- "default3.handlebars->35->2736"
+ "default.handlebars->47->2741",
+ "default3.handlebars->35->2737"
]
},
{
@@ -30656,10 +30656,10 @@
"zh-cht": "電子郵件已驗證",
"uk": "Е-пошту верифіковано",
"xloc": [
- "default.handlebars->47->2741",
- "default.handlebars->47->2933",
- "default3.handlebars->35->2737",
- "default3.handlebars->35->2926"
+ "default.handlebars->47->2742",
+ "default.handlebars->47->2934",
+ "default3.handlebars->35->2738",
+ "default3.handlebars->35->2927"
]
},
{
@@ -30688,8 +30688,8 @@
"zh-cht": "電郵已驗證。",
"uk": "Е-пошту верифіковано.",
"xloc": [
- "default.handlebars->47->2811",
- "default3.handlebars->35->2806"
+ "default.handlebars->47->2812",
+ "default3.handlebars->35->2807"
]
},
{
@@ -30718,8 +30718,8 @@
"zh-cht": "電郵未驗證",
"uk": "Е-пошта не верифікована",
"xloc": [
- "default.handlebars->47->2934",
- "default3.handlebars->35->2927"
+ "default.handlebars->47->2935",
+ "default3.handlebars->35->2928"
]
},
{
@@ -30774,9 +30774,9 @@
"zh-cht": "電郵已發送。",
"uk": "Е-пошту надіслано.",
"xloc": [
- "default-mobile.handlebars->11->1045",
- "default.handlebars->47->3280",
- "default3.handlebars->35->3267",
+ "default-mobile.handlebars->11->1046",
+ "default.handlebars->47->3281",
+ "default3.handlebars->35->3268",
"login-mobile.handlebars->5->2",
"login.handlebars->5->2",
"login2.handlebars->7->200"
@@ -30865,8 +30865,8 @@
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"uk": "Потрібно верифікувати е-пошту та примусово скинути пароль.",
"xloc": [
- "default.handlebars->47->2812",
- "default3.handlebars->35->2807"
+ "default.handlebars->47->2813",
+ "default3.handlebars->35->2808"
]
},
{
@@ -30921,8 +30921,8 @@
"zh-cht": "電子郵件/短信/推送流量",
"uk": "е-пошта/SMS/Push обмін",
"xloc": [
- "default.handlebars->47->3376",
- "default3.handlebars->35->3363"
+ "default.handlebars->47->3377",
+ "default3.handlebars->35->3364"
]
},
{
@@ -31044,8 +31044,8 @@
"zh-cht": "啟用邀請代碼",
"uk": "Увімкнути коди запрошення",
"xloc": [
- "default.handlebars->47->2421",
- "default3.handlebars->35->2417"
+ "default.handlebars->47->2422",
+ "default3.handlebars->35->2418"
]
},
{
@@ -31104,8 +31104,8 @@
"uk": "Увімкнути двофакторну автентифікацію е-поштою.",
"xloc": [
"default-mobile.handlebars->11->112",
- "default.handlebars->47->1820",
- "default3.handlebars->35->1801"
+ "default.handlebars->47->1821",
+ "default3.handlebars->35->1802"
]
},
{
@@ -31164,21 +31164,21 @@
"zh-cht": "已啟用",
"uk": "Увімкнено",
"xloc": [
- "default-mobile.handlebars->11->892",
+ "default-mobile.handlebars->11->893",
"default.handlebars->47->134",
- "default.handlebars->47->1732",
- "default.handlebars->47->3154",
+ "default.handlebars->47->1733",
+ "default.handlebars->47->3155",
"default3.handlebars->35->134",
- "default3.handlebars->35->1714",
- "default3.handlebars->35->3141"
+ "default3.handlebars->35->1715",
+ "default3.handlebars->35->3142"
]
},
{
"en": "Enabled Duo two-factor authentication",
"nl": "Duo twee factorauthenticatie ingeschakeld",
"xloc": [
- "default.handlebars->47->2684",
- "default3.handlebars->35->2680"
+ "default.handlebars->47->2685",
+ "default3.handlebars->35->2681"
]
},
{
@@ -31207,8 +31207,8 @@
"zh-cht": "啟用電子郵件兩因素身份驗證",
"uk": "Увімкнено двофакторну автентифікацію е-поштою",
"xloc": [
- "default.handlebars->47->2612",
- "default3.handlebars->35->2608"
+ "default.handlebars->47->2613",
+ "default3.handlebars->35->2609"
]
},
{
@@ -31298,8 +31298,8 @@
"zh-cht": "編碼:RAW",
"uk": "Кодування: RAW",
"xloc": [
- "default.handlebars->47->1589",
- "default3.handlebars->35->1573",
+ "default.handlebars->47->1590",
+ "default3.handlebars->35->1574",
"sharing.handlebars->11->89"
]
},
@@ -31329,8 +31329,8 @@
"zh-cht": "編碼:UTF8",
"uk": "Кодування: UTF8",
"xloc": [
- "default.handlebars->47->1590",
- "default3.handlebars->35->1574",
+ "default.handlebars->47->1591",
+ "default3.handlebars->35->1575",
"sharing.handlebars->11->90"
]
},
@@ -31340,9 +31340,9 @@
"nl": "Versleuteling wordt uitgevoerd",
"uk": "Виконується Шифрування",
"xloc": [
- "default-mobile.handlebars->11->894",
- "default.handlebars->47->1734",
- "default3.handlebars->35->1716"
+ "default-mobile.handlebars->11->895",
+ "default.handlebars->47->1735",
+ "default3.handlebars->35->1717"
]
},
{
@@ -31372,8 +31372,8 @@
"uk": "Кінець",
"xloc": [
"default-mobile.handlebars->11->658",
- "default.handlebars->47->1422",
- "default3.handlebars->35->1409"
+ "default.handlebars->47->1423",
+ "default3.handlebars->35->1410"
]
},
{
@@ -31402,8 +31402,8 @@
"zh-cht": "時間結束",
"uk": "Час закінчення",
"xloc": [
- "default.handlebars->47->3151",
- "default3.handlebars->35->3138"
+ "default.handlebars->47->3152",
+ "default3.handlebars->35->3139"
]
},
{
@@ -31432,8 +31432,8 @@
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"uk": "Завершено сесію стільниці \\\"{0}\\\" з {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2535",
- "default3.handlebars->35->2531"
+ "default.handlebars->47->2536",
+ "default3.handlebars->35->2532"
]
},
{
@@ -31462,8 +31462,8 @@
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"uk": "Завершено сесію керування файлами \\\"{0}\\\" з {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2536",
- "default3.handlebars->35->2532"
+ "default.handlebars->47->2537",
+ "default3.handlebars->35->2533"
]
},
{
@@ -31492,8 +31492,8 @@
"zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒",
"uk": "Завершено сесію локальної ретрансляції \\\"{0}\\\", протокол {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2645",
- "default3.handlebars->35->2641"
+ "default.handlebars->47->2646",
+ "default3.handlebars->35->2642"
]
},
{
@@ -31522,8 +31522,8 @@
"zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒",
"uk": "Завершено сесію месенджера \\\"{0}\\\" з {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2636",
- "default3.handlebars->35->2632"
+ "default.handlebars->47->2637",
+ "default3.handlebars->35->2633"
]
},
{
@@ -31552,8 +31552,8 @@
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"uk": "Завершено сесію ретрансляції \\\"{0}\\\" від {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2533",
- "default3.handlebars->35->2529"
+ "default.handlebars->47->2534",
+ "default3.handlebars->35->2530"
]
},
{
@@ -31582,8 +31582,8 @@
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"uk": "Завершено термінальну сесію \\\"{0}\\\" з {1} до {2}, {3} секунд(и)",
"xloc": [
- "default.handlebars->47->2534",
- "default3.handlebars->35->2530"
+ "default.handlebars->47->2535",
+ "default3.handlebars->35->2531"
]
},
{
@@ -31613,8 +31613,8 @@
"uk": "Англійська",
"xloc": [
"default-mobile.handlebars->11->160",
- "default.handlebars->47->1893",
- "default3.handlebars->35->1873",
+ "default.handlebars->47->1894",
+ "default3.handlebars->35->1874",
"login2.handlebars->7->48"
]
},
@@ -31645,8 +31645,8 @@
"uk": "Англійська (Австралія)",
"xloc": [
"default-mobile.handlebars->11->161",
- "default.handlebars->47->1894",
- "default3.handlebars->35->1874",
+ "default.handlebars->47->1895",
+ "default3.handlebars->35->1875",
"login2.handlebars->7->49"
]
},
@@ -31677,8 +31677,8 @@
"uk": "Англійська (Беліз)",
"xloc": [
"default-mobile.handlebars->11->162",
- "default.handlebars->47->1895",
- "default3.handlebars->35->1875",
+ "default.handlebars->47->1896",
+ "default3.handlebars->35->1876",
"login2.handlebars->7->50"
]
},
@@ -31709,8 +31709,8 @@
"uk": "Англійська (Канада)",
"xloc": [
"default-mobile.handlebars->11->163",
- "default.handlebars->47->1896",
- "default3.handlebars->35->1876",
+ "default.handlebars->47->1897",
+ "default3.handlebars->35->1877",
"login2.handlebars->7->51"
]
},
@@ -31741,8 +31741,8 @@
"uk": "Англійська (Ірландія)",
"xloc": [
"default-mobile.handlebars->11->164",
- "default.handlebars->47->1897",
- "default3.handlebars->35->1877",
+ "default.handlebars->47->1898",
+ "default3.handlebars->35->1878",
"login2.handlebars->7->52"
]
},
@@ -31773,8 +31773,8 @@
"uk": "Англійська (Ямайка)",
"xloc": [
"default-mobile.handlebars->11->165",
- "default.handlebars->47->1898",
- "default3.handlebars->35->1878",
+ "default.handlebars->47->1899",
+ "default3.handlebars->35->1879",
"login2.handlebars->7->53"
]
},
@@ -31805,8 +31805,8 @@
"uk": "Англійська (Нова Зеландія)",
"xloc": [
"default-mobile.handlebars->11->166",
- "default.handlebars->47->1899",
- "default3.handlebars->35->1879",
+ "default.handlebars->47->1900",
+ "default3.handlebars->35->1880",
"login2.handlebars->7->54"
]
},
@@ -31837,8 +31837,8 @@
"uk": "Англійська (Філіппіни)",
"xloc": [
"default-mobile.handlebars->11->167",
- "default.handlebars->47->1900",
- "default3.handlebars->35->1880",
+ "default.handlebars->47->1901",
+ "default3.handlebars->35->1881",
"login2.handlebars->7->55"
]
},
@@ -31869,8 +31869,8 @@
"uk": "Англійська (Південна Африка)",
"xloc": [
"default-mobile.handlebars->11->168",
- "default.handlebars->47->1901",
- "default3.handlebars->35->1881",
+ "default.handlebars->47->1902",
+ "default3.handlebars->35->1882",
"login2.handlebars->7->56"
]
},
@@ -31901,8 +31901,8 @@
"uk": "Англійська (Трінідад і Тобаго)",
"xloc": [
"default-mobile.handlebars->11->169",
- "default.handlebars->47->1902",
- "default3.handlebars->35->1882",
+ "default.handlebars->47->1903",
+ "default3.handlebars->35->1883",
"login2.handlebars->7->57"
]
},
@@ -31933,8 +31933,8 @@
"uk": "Англійська (Великобританія)",
"xloc": [
"default-mobile.handlebars->11->170",
- "default.handlebars->47->1903",
- "default3.handlebars->35->1883",
+ "default.handlebars->47->1904",
+ "default3.handlebars->35->1884",
"login2.handlebars->7->58"
]
},
@@ -31965,8 +31965,8 @@
"uk": "Англійська (Сполучені Штати)",
"xloc": [
"default-mobile.handlebars->11->171",
- "default.handlebars->47->1904",
- "default3.handlebars->35->1884",
+ "default.handlebars->47->1905",
+ "default3.handlebars->35->1885",
"login2.handlebars->7->59"
]
},
@@ -31997,8 +31997,8 @@
"uk": "Англійська (Зімбабве)",
"xloc": [
"default-mobile.handlebars->11->172",
- "default.handlebars->47->1905",
- "default3.handlebars->35->1885",
+ "default.handlebars->47->1906",
+ "default3.handlebars->35->1886",
"login2.handlebars->7->60"
]
},
@@ -32055,14 +32055,14 @@
"uk": "Enter",
"xloc": [
"default-mobile.handlebars->11->651",
- "default.handlebars->47->1415",
- "default.handlebars->47->1553",
- "default.handlebars->47->2119",
+ "default.handlebars->47->1416",
+ "default.handlebars->47->1554",
"default.handlebars->47->2120",
- "default3.handlebars->35->1402",
- "default3.handlebars->35->1537",
- "default3.handlebars->35->2118",
+ "default.handlebars->47->2121",
+ "default3.handlebars->35->1403",
+ "default3.handlebars->35->1538",
"default3.handlebars->35->2119",
+ "default3.handlebars->35->2120",
"sharing.handlebars->11->55"
]
},
@@ -32092,8 +32092,8 @@
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"uk": "Введіть розділений комами список імен адміністративних областей.",
"xloc": [
- "default.handlebars->47->2816",
- "default3.handlebars->35->2811"
+ "default.handlebars->47->2817",
+ "default3.handlebars->35->2812"
]
},
{
@@ -32207,8 +32207,8 @@
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
"uk": "Наберіть текст і клікніть ОК, щоб ввести його дистанційно. Перш ніж продовжити, переконайтеся, що віддалений курсор встановлено у правильну позицію.",
"xloc": [
- "default.handlebars->47->1447",
- "default3.handlebars->35->1434"
+ "default.handlebars->47->1448",
+ "default3.handlebars->35->1435"
]
},
{
@@ -32350,8 +32350,8 @@
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
"uk": "Введіть свій номер телефону для повідомлень SMS. Після верифікації цей номер можна використовувати для перевірки входу та інших повідомлень.",
"xloc": [
- "default.handlebars->47->1784",
- "default3.handlebars->35->1765"
+ "default.handlebars->47->1785",
+ "default3.handlebars->35->1766"
]
},
{
@@ -32365,8 +32365,8 @@
"pl": "Wprowadź swoją usługę przesyłania wiadomości. Po weryfikacji, ten serwer może wysyłać weryfikację logowania i inne powiadomienia.",
"uk": "Введіть свою службу обміну повідомленнями. Після верифікації цей сервер зможе надсилати підтвердження входу та інші сповіщення.",
"xloc": [
- "default.handlebars->47->1790",
- "default3.handlebars->35->1771"
+ "default.handlebars->47->1791",
+ "default3.handlebars->35->1772"
]
},
{
@@ -32535,9 +32535,9 @@
"zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。",
"uk": "Помилка, код запрошення \\\"{0}\\\" уже використовується.",
"xloc": [
- "default-mobile.handlebars->11->1053",
- "default.handlebars->47->3288",
- "default3.handlebars->35->3275"
+ "default-mobile.handlebars->11->1054",
+ "default.handlebars->47->3289",
+ "default3.handlebars->35->3276"
]
},
{
@@ -32566,9 +32566,9 @@
"zh-cht": "錯誤,密碼未更改。",
"uk": "Помилка, пароль не змінено.",
"xloc": [
- "default-mobile.handlebars->11->1050",
- "default.handlebars->47->3285",
- "default3.handlebars->35->3272"
+ "default-mobile.handlebars->11->1051",
+ "default.handlebars->47->3286",
+ "default3.handlebars->35->3273"
]
},
{
@@ -32597,9 +32597,9 @@
"zh-cht": "錯誤,無法更改為常用密碼。",
"uk": "Помилка, неможливо змінити пароль на широко використовуваний.",
"xloc": [
- "default-mobile.handlebars->11->1049",
- "default.handlebars->47->3284",
- "default3.handlebars->35->3271"
+ "default-mobile.handlebars->11->1050",
+ "default.handlebars->47->3285",
+ "default3.handlebars->35->3272"
]
},
{
@@ -32628,9 +32628,9 @@
"zh-cht": "錯誤,無法更改為以前使用的密碼。",
"uk": "Помилка, неможливо змінити на раніше використаний пароль.",
"xloc": [
- "default-mobile.handlebars->11->1048",
- "default.handlebars->47->3283",
- "default3.handlebars->35->3270"
+ "default-mobile.handlebars->11->1049",
+ "default.handlebars->47->3284",
+ "default3.handlebars->35->3271"
]
},
{
@@ -32689,8 +32689,8 @@
"uk": "Escape",
"xloc": [
"default-mobile.handlebars->11->652",
- "default.handlebars->47->1416",
- "default3.handlebars->35->1403"
+ "default.handlebars->47->1417",
+ "default3.handlebars->35->1404"
]
},
{
@@ -32731,8 +32731,8 @@
"uk": "Есперанто",
"xloc": [
"default-mobile.handlebars->11->173",
- "default.handlebars->47->1906",
- "default3.handlebars->35->1886",
+ "default.handlebars->47->1907",
+ "default3.handlebars->35->1887",
"login2.handlebars->7->61"
]
},
@@ -32789,8 +32789,8 @@
"uk": "Естонська",
"xloc": [
"default-mobile.handlebars->11->174",
- "default.handlebars->47->1907",
- "default3.handlebars->35->1887",
+ "default.handlebars->47->1908",
+ "default3.handlebars->35->1888",
"login2.handlebars->7->62"
]
},
@@ -32846,8 +32846,8 @@
"zh-cht": "事件詳情",
"uk": "Деталі Події",
"xloc": [
- "default.handlebars->47->1601",
- "default3.handlebars->35->1585"
+ "default.handlebars->47->1602",
+ "default3.handlebars->35->1586"
]
},
{
@@ -32876,8 +32876,8 @@
"zh-cht": "事件列表輸出",
"uk": "Експортувати Перелік Подій",
"xloc": [
- "default.handlebars->47->2715",
- "default3.handlebars->35->2711"
+ "default.handlebars->47->2716",
+ "default3.handlebars->35->2712"
]
},
{
@@ -32892,8 +32892,8 @@
"pl": "Zapisy zdarzeń",
"uk": "Записи подій",
"xloc": [
- "default.handlebars->47->3239",
- "default3.handlebars->35->3226"
+ "default.handlebars->47->3240",
+ "default3.handlebars->35->3227"
]
},
{
@@ -33111,11 +33111,11 @@
"zh-cht": "到期時間",
"uk": "Термін придатності",
"xloc": [
- "default.handlebars->47->1237",
- "default.handlebars->47->2070",
+ "default.handlebars->47->1238",
+ "default.handlebars->47->2071",
"default.handlebars->47->300",
- "default3.handlebars->35->1232",
- "default3.handlebars->35->2051",
+ "default3.handlebars->35->1233",
+ "default3.handlebars->35->2052",
"default3.handlebars->35->297"
]
},
@@ -33174,8 +33174,8 @@
"zh-cht": "過期{0}",
"uk": "Застаріє {0}",
"xloc": [
- "default.handlebars->47->2133",
- "default3.handlebars->35->2132",
+ "default.handlebars->47->2134",
+ "default3.handlebars->35->2133",
"sharing.handlebars->11->100"
]
},
@@ -33235,8 +33235,8 @@
"zh-cht": "擴充式ASCII",
"uk": "Розширений ASCII",
"xloc": [
- "default.handlebars->47->1520",
- "default3.handlebars->35->1505",
+ "default.handlebars->47->1521",
+ "default3.handlebars->35->1506",
"sharing.handlebars->11->34"
]
},
@@ -33297,8 +33297,8 @@
"zh-cht": "外部",
"uk": "Зовнішня",
"xloc": [
- "default.handlebars->47->3356",
- "default3.handlebars->35->3343"
+ "default.handlebars->47->3357",
+ "default3.handlebars->35->3344"
]
},
{
@@ -33327,8 +33327,8 @@
"zh-cht": "FIDO 密鑰",
"uk": "ключ FIDO",
"xloc": [
- "default.handlebars->47->3219",
- "default3.handlebars->35->3206"
+ "default.handlebars->47->3220",
+ "default3.handlebars->35->3207"
]
},
{
@@ -33388,8 +33388,8 @@
"uk": "Македонська (КЮРМ)",
"xloc": [
"default-mobile.handlebars->11->224",
- "default.handlebars->47->1957",
- "default3.handlebars->35->1937",
+ "default.handlebars->47->1958",
+ "default3.handlebars->35->1938",
"login2.handlebars->7->112"
]
},
@@ -33404,10 +33404,10 @@
"pl": "Facebook",
"uk": "Facebook",
"xloc": [
- "default.handlebars->47->1804",
- "default.handlebars->47->3036",
- "default3.handlebars->35->1785",
- "default3.handlebars->35->3029"
+ "default.handlebars->47->1805",
+ "default.handlebars->47->3037",
+ "default3.handlebars->35->1786",
+ "default3.handlebars->35->3030"
]
},
{
@@ -33437,8 +33437,8 @@
"uk": "Фарерська",
"xloc": [
"default-mobile.handlebars->11->175",
- "default.handlebars->47->1908",
- "default3.handlebars->35->1888",
+ "default.handlebars->47->1909",
+ "default3.handlebars->35->1889",
"login2.handlebars->7->63"
]
},
@@ -33498,9 +33498,9 @@
"zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。",
"uk": "Не вдалося змінити адресу е-пошти, інший акаунт її вже використовує: {0}.",
"xloc": [
- "default-mobile.handlebars->11->1044",
- "default.handlebars->47->3279",
- "default3.handlebars->35->3266"
+ "default-mobile.handlebars->11->1045",
+ "default.handlebars->47->3280",
+ "default3.handlebars->35->3267"
]
},
{
@@ -33587,8 +33587,8 @@
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"uk": "Не вдалося запустити віддалену стільницю через відмову локального користувача",
"xloc": [
- "default.handlebars->47->2558",
- "default3.handlebars->35->2554"
+ "default.handlebars->47->2559",
+ "default3.handlebars->35->2555"
]
},
{
@@ -33643,8 +33643,8 @@
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"uk": "Не вдалося запустити віддалені файли після відмови локальним користувачем",
"xloc": [
- "default.handlebars->47->2565",
- "default3.handlebars->35->2561"
+ "default.handlebars->47->2566",
+ "default3.handlebars->35->2562"
]
},
{
@@ -33700,8 +33700,8 @@
"uk": "Не вдалося розпочати сесію віддаленого терміналу, {0} ({1})",
"xloc": [
"default-mobile.handlebars->11->643",
- "default.handlebars->47->1376",
- "default3.handlebars->35->1363",
+ "default.handlebars->47->1377",
+ "default3.handlebars->35->1364",
"sharing.handlebars->11->30",
"sharing.handlebars->11->8"
]
@@ -33733,8 +33733,8 @@
"uk": "Фарсі (Перська)",
"xloc": [
"default-mobile.handlebars->11->176",
- "default.handlebars->47->1909",
- "default3.handlebars->35->1889",
+ "default.handlebars->47->1910",
+ "default3.handlebars->35->1890",
"login2.handlebars->7->64"
]
},
@@ -33796,12 +33796,12 @@
"zh-cht": "功能",
"uk": "Ознаки",
"xloc": [
- "default.handlebars->47->2189",
- "default.handlebars->47->2869",
- "default.handlebars->47->2960",
- "default3.handlebars->35->2184",
- "default3.handlebars->35->2862",
- "default3.handlebars->35->2953"
+ "default.handlebars->47->2190",
+ "default.handlebars->47->2870",
+ "default.handlebars->47->2961",
+ "default3.handlebars->35->2185",
+ "default3.handlebars->35->2863",
+ "default3.handlebars->35->2954"
]
},
{
@@ -33831,8 +33831,8 @@
"uk": "Фіджійська",
"xloc": [
"default-mobile.handlebars->11->177",
- "default.handlebars->47->1910",
- "default3.handlebars->35->1890",
+ "default.handlebars->47->1911",
+ "default3.handlebars->35->1891",
"login2.handlebars->7->65"
]
},
@@ -33892,11 +33892,11 @@
"uk": "Редактор файлів",
"xloc": [
"default-mobile.handlebars->11->724",
- "default.handlebars->47->1565",
- "default.handlebars->47->2514",
+ "default.handlebars->47->1566",
+ "default.handlebars->47->2515",
"default.handlebars->47->856",
- "default3.handlebars->35->1549",
- "default3.handlebars->35->2510",
+ "default3.handlebars->35->1550",
+ "default3.handlebars->35->2511",
"default3.handlebars->35->853",
"sharing.handlebars->11->66"
]
@@ -33953,14 +33953,14 @@
"zh-cht": "檔案操作",
"uk": "Файлова Операція",
"xloc": [
- "default.handlebars->47->1535",
- "default.handlebars->47->1537",
- "default.handlebars->47->1539",
- "default.handlebars->47->1541",
- "default3.handlebars->35->1520",
- "default3.handlebars->35->1522",
- "default3.handlebars->35->1524",
- "default3.handlebars->35->1526",
+ "default.handlebars->47->1536",
+ "default.handlebars->47->1538",
+ "default.handlebars->47->1540",
+ "default.handlebars->47->1542",
+ "default3.handlebars->35->1521",
+ "default3.handlebars->35->1523",
+ "default3.handlebars->35->1525",
+ "default3.handlebars->35->1527",
"sharing.handlebars->11->46",
"sharing.handlebars->11->48"
]
@@ -34003,15 +34003,15 @@
"pl": "System Plików",
"uk": "Файлова система",
"xloc": [
- "default-mobile.handlebars->11->890",
- "default-mobile.handlebars->11->902",
- "default-mobile.handlebars->11->909",
- "default.handlebars->47->1730",
- "default.handlebars->47->1742",
- "default.handlebars->47->1749",
- "default3.handlebars->35->1712",
- "default3.handlebars->35->1724",
- "default3.handlebars->35->1731"
+ "default-mobile.handlebars->11->891",
+ "default-mobile.handlebars->11->903",
+ "default-mobile.handlebars->11->910",
+ "default.handlebars->47->1731",
+ "default.handlebars->47->1743",
+ "default.handlebars->47->1750",
+ "default3.handlebars->35->1713",
+ "default3.handlebars->35->1725",
+ "default3.handlebars->35->1732"
]
},
{
@@ -34040,8 +34040,8 @@
"zh-cht": "文件傳輸",
"uk": "Трансфер файлів",
"xloc": [
- "default.handlebars->47->3132",
- "default3.handlebars->35->3119"
+ "default.handlebars->47->3133",
+ "default3.handlebars->35->3120"
]
},
{
@@ -34070,8 +34070,8 @@
"zh-cht": "FileSystemDriver",
"uk": "Драйвер файлової системи",
"xloc": [
- "default.handlebars->47->1464",
- "default3.handlebars->35->1450"
+ "default.handlebars->47->1465",
+ "default3.handlebars->35->1451"
]
},
{
@@ -34102,25 +34102,25 @@
"xloc": [
"default-mobile.handlebars->11->435",
"default-mobile.handlebars->11->575",
- "default.handlebars->47->1094",
- "default.handlebars->47->1208",
- "default.handlebars->47->2244",
- "default.handlebars->47->2324",
- "default.handlebars->47->3139",
- "default.handlebars->47->3199",
- "default.handlebars->47->3249",
- "default.handlebars->47->3344",
+ "default.handlebars->47->1095",
+ "default.handlebars->47->1209",
+ "default.handlebars->47->2245",
+ "default.handlebars->47->2325",
+ "default.handlebars->47->3140",
+ "default.handlebars->47->3200",
+ "default.handlebars->47->3250",
+ "default.handlebars->47->3345",
"default.handlebars->47->466",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles",
- "default3.handlebars->35->1091",
- "default3.handlebars->35->1203",
- "default3.handlebars->35->2239",
- "default3.handlebars->35->2320",
- "default3.handlebars->35->3126",
- "default3.handlebars->35->3186",
- "default3.handlebars->35->3236",
- "default3.handlebars->35->3331",
+ "default3.handlebars->35->1092",
+ "default3.handlebars->35->1204",
+ "default3.handlebars->35->2240",
+ "default3.handlebars->35->2321",
+ "default3.handlebars->35->3127",
+ "default3.handlebars->35->3187",
+ "default3.handlebars->35->3237",
+ "default3.handlebars->35->3332",
"default3.handlebars->35->463",
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default3.handlebars->contextMenu->cxfiles",
@@ -34183,14 +34183,14 @@
"zh-cht": "檔案通知",
"uk": "Сповіщення про файли",
"xloc": [
- "default.handlebars->47->2197",
- "default.handlebars->47->2877",
- "default.handlebars->47->2982",
- "default.handlebars->47->974",
- "default3.handlebars->35->2192",
- "default3.handlebars->35->2870",
- "default3.handlebars->35->2975",
- "default3.handlebars->35->971"
+ "default.handlebars->47->2198",
+ "default.handlebars->47->2878",
+ "default.handlebars->47->2983",
+ "default.handlebars->47->975",
+ "default3.handlebars->35->2193",
+ "default3.handlebars->35->2871",
+ "default3.handlebars->35->2976",
+ "default3.handlebars->35->972"
]
},
{
@@ -34219,14 +34219,14 @@
"zh-cht": "檔案提示",
"uk": "Запит файлів",
"xloc": [
- "default.handlebars->47->2196",
- "default.handlebars->47->2876",
- "default.handlebars->47->2981",
- "default.handlebars->47->973",
- "default3.handlebars->35->2191",
- "default3.handlebars->35->2869",
- "default3.handlebars->35->2974",
- "default3.handlebars->35->970"
+ "default.handlebars->47->2197",
+ "default.handlebars->47->2877",
+ "default.handlebars->47->2982",
+ "default.handlebars->47->974",
+ "default3.handlebars->35->2192",
+ "default3.handlebars->35->2870",
+ "default3.handlebars->35->2975",
+ "default3.handlebars->35->971"
]
},
{
@@ -34256,14 +34256,14 @@
"uk": "Фільтр",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
- "default.handlebars->47->1549",
+ "default.handlebars->47->1550",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
"default.handlebars->container->column_l->p16->3->1->0->5",
"default.handlebars->container->column_l->p3->3->1->0->5",
"default.handlebars->container->column_l->p31->3->1->0->5",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
- "default3.handlebars->35->1533",
+ "default3.handlebars->35->1534",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->kvmListToolbar",
"default3.handlebars->container->column_l->p16->3->1->0->1->1->1",
@@ -34361,8 +34361,8 @@
"zh-cht": "查找文件",
"uk": "Знайти Файли",
"xloc": [
- "default.handlebars->47->1552",
- "default3.handlebars->35->1536",
+ "default.handlebars->47->1553",
+ "default3.handlebars->35->1537",
"sharing.handlebars->11->54"
]
},
@@ -34392,8 +34392,8 @@
"zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒",
"uk": "Сеанс запису завершено \\\"{0}\\\", {1} секунд(и)",
"xloc": [
- "default.handlebars->47->2670",
- "default3.handlebars->35->2666"
+ "default.handlebars->47->2671",
+ "default3.handlebars->35->2667"
]
},
{
@@ -34422,8 +34422,8 @@
"zh-cht": "錄製會話已完成,{0}秒",
"uk": "Сеанс запису завершено, {0} секунд(и)",
"xloc": [
- "default.handlebars->47->2531",
- "default3.handlebars->35->2527"
+ "default.handlebars->47->2532",
+ "default3.handlebars->35->2528"
]
},
{
@@ -34453,8 +34453,8 @@
"uk": "Фінська",
"xloc": [
"default-mobile.handlebars->11->178",
- "default.handlebars->47->1911",
- "default3.handlebars->35->1891",
+ "default.handlebars->47->1912",
+ "default3.handlebars->35->1892",
"login2.handlebars->7->66"
]
},
@@ -34526,10 +34526,10 @@
"zh-cht": "防火牆未激活",
"uk": "Фаєрвол не активний",
"xloc": [
- "default.handlebars->47->2461",
- "default.handlebars->47->2475",
- "default3.handlebars->35->2457",
- "default3.handlebars->35->2471"
+ "default.handlebars->47->2462",
+ "default.handlebars->47->2476",
+ "default3.handlebars->35->2458",
+ "default3.handlebars->35->2472"
]
},
{
@@ -34539,8 +34539,8 @@
"pl": "Pierwsza Awaria",
"uk": "Перша Невдача",
"xloc": [
- "default.handlebars->47->1475",
- "default3.handlebars->35->1461"
+ "default.handlebars->47->1476",
+ "default3.handlebars->35->1462"
]
},
{
@@ -34604,8 +34604,8 @@
"zh-cht": "標誌",
"uk": "Прапорці",
"xloc": [
- "default.handlebars->47->2688",
- "default3.handlebars->35->2684"
+ "default.handlebars->47->2689",
+ "default3.handlebars->35->2685"
]
},
{
@@ -34635,15 +34635,15 @@
"uk": "Спалах",
"xloc": [
"default-mobile.handlebars->11->579",
- "default.handlebars->47->1251",
- "default3.handlebars->35->1246"
+ "default.handlebars->47->1252",
+ "default3.handlebars->35->1247"
]
},
{
"en": "Flatly",
"nl": "Plat",
"xloc": [
- "default3.handlebars->35->2075"
+ "default3.handlebars->35->2076"
]
},
{
@@ -34966,10 +34966,10 @@
"zh-cht": "下次登入時強制重置密碼。",
"uk": "Примусово скинути пароль під час наступного входу.",
"xloc": [
- "default.handlebars->47->2810",
- "default.handlebars->47->3075",
- "default3.handlebars->35->2805",
- "default3.handlebars->35->3062"
+ "default.handlebars->47->2811",
+ "default.handlebars->47->3076",
+ "default3.handlebars->35->2806",
+ "default3.handlebars->35->3063"
]
},
{
@@ -34998,8 +34998,8 @@
"zh-cht": "強行斷開用戶 {0} 的桌面會話",
"uk": "Примусово перервано робочий сеанс користувача {0}",
"xloc": [
- "default.handlebars->47->2658",
- "default3.handlebars->35->2654"
+ "default.handlebars->47->2659",
+ "default3.handlebars->35->2655"
]
},
{
@@ -35028,8 +35028,8 @@
"zh-cht": "強制斷開用戶 {0} 的文件會話",
"uk": "Примусово перервано файловий сеанс користувача {0}",
"xloc": [
- "default.handlebars->47->2660",
- "default3.handlebars->35->2656"
+ "default.handlebars->47->2661",
+ "default3.handlebars->35->2657"
]
},
{
@@ -35058,8 +35058,8 @@
"zh-cht": "強制斷開用戶 {0} 的路由會話",
"uk": "Примусове відключення сеансу маршрутизації користувача {0}",
"xloc": [
- "default.handlebars->47->2661",
- "default3.handlebars->35->2657"
+ "default.handlebars->47->2662",
+ "default3.handlebars->35->2658"
]
},
{
@@ -35088,8 +35088,8 @@
"zh-cht": "強制斷開用戶 {0} 的終端會話",
"uk": "Сеанс терміналу користувача {0} примусово припинено",
"xloc": [
- "default.handlebars->47->2659",
- "default3.handlebars->35->2655"
+ "default.handlebars->47->2660",
+ "default3.handlebars->35->2656"
]
},
{
@@ -35208,8 +35208,8 @@
"zh-cht": "格式化",
"uk": "Формат",
"xloc": [
- "default.handlebars->47->2706",
- "default3.handlebars->35->2702"
+ "default.handlebars->47->2707",
+ "default3.handlebars->35->2703"
]
},
{
@@ -35296,10 +35296,10 @@
"zh-cht": "自由",
"uk": "Вільно",
"xloc": [
- "default.handlebars->47->3302",
- "default.handlebars->47->3304",
- "default3.handlebars->35->3289",
- "default3.handlebars->35->3291"
+ "default.handlebars->47->3303",
+ "default.handlebars->47->3305",
+ "default3.handlebars->35->3290",
+ "default3.handlebars->35->3292"
]
},
{
@@ -35312,10 +35312,10 @@
"pl": "Darmowa usługa z ntfy.sh",
"uk": "Безкоштовний сервіс від ntfy.sh",
"xloc": [
- "default.handlebars->47->1807",
- "default.handlebars->47->3039",
- "default3.handlebars->35->1788",
- "default3.handlebars->35->3032"
+ "default.handlebars->47->1808",
+ "default.handlebars->47->3040",
+ "default3.handlebars->35->1789",
+ "default3.handlebars->35->3033"
]
},
{
@@ -35376,8 +35376,8 @@
"uk": "Французька (Бельгія)",
"xloc": [
"default-mobile.handlebars->11->180",
- "default.handlebars->47->1913",
- "default3.handlebars->35->1893",
+ "default.handlebars->47->1914",
+ "default3.handlebars->35->1894",
"login2.handlebars->7->68"
]
},
@@ -35408,8 +35408,8 @@
"uk": "Французька (Канада)",
"xloc": [
"default-mobile.handlebars->11->181",
- "default.handlebars->47->1914",
- "default3.handlebars->35->1894",
+ "default.handlebars->47->1915",
+ "default3.handlebars->35->1895",
"login2.handlebars->7->69"
]
},
@@ -35440,8 +35440,8 @@
"uk": "Французька (Франція)",
"xloc": [
"default-mobile.handlebars->11->182",
- "default.handlebars->47->1915",
- "default3.handlebars->35->1895",
+ "default.handlebars->47->1916",
+ "default3.handlebars->35->1896",
"login2.handlebars->7->70"
]
},
@@ -35472,8 +35472,8 @@
"uk": "Французька (Люксембург)",
"xloc": [
"default-mobile.handlebars->11->183",
- "default.handlebars->47->1916",
- "default3.handlebars->35->1896",
+ "default.handlebars->47->1917",
+ "default3.handlebars->35->1897",
"login2.handlebars->7->71"
]
},
@@ -35504,8 +35504,8 @@
"uk": "Французька (Монако)",
"xloc": [
"default-mobile.handlebars->11->184",
- "default.handlebars->47->1917",
- "default3.handlebars->35->1897",
+ "default.handlebars->47->1918",
+ "default3.handlebars->35->1898",
"login2.handlebars->7->72"
]
},
@@ -35536,8 +35536,8 @@
"uk": "Французька (Стандартна)",
"xloc": [
"default-mobile.handlebars->11->179",
- "default.handlebars->47->1912",
- "default3.handlebars->35->1892",
+ "default.handlebars->47->1913",
+ "default3.handlebars->35->1893",
"login2.handlebars->7->67"
]
},
@@ -35568,8 +35568,8 @@
"uk": "Французька (Швейцарія)",
"xloc": [
"default-mobile.handlebars->11->185",
- "default.handlebars->47->1918",
- "default3.handlebars->35->1898",
+ "default.handlebars->47->1919",
+ "default3.handlebars->35->1899",
"login2.handlebars->7->73"
]
},
@@ -35600,8 +35600,8 @@
"uk": "Фризька",
"xloc": [
"default-mobile.handlebars->11->186",
- "default.handlebars->47->1919",
- "default3.handlebars->35->1899",
+ "default.handlebars->47->1920",
+ "default3.handlebars->35->1900",
"login2.handlebars->7->74"
]
},
@@ -35632,8 +35632,8 @@
"uk": "Фріульська",
"xloc": [
"default-mobile.handlebars->11->187",
- "default.handlebars->47->1920",
- "default3.handlebars->35->1900",
+ "default.handlebars->47->1921",
+ "default3.handlebars->35->1901",
"login2.handlebars->7->75"
]
},
@@ -35664,15 +35664,15 @@
"uk": "Повноправний Адміністратор",
"xloc": [
"default-mobile.handlebars->11->352",
- "default-mobile.handlebars->11->957",
- "default-mobile.handlebars->11->975",
- "default-mobile.handlebars->11->995",
- "default.handlebars->47->2126",
- "default.handlebars->47->2348",
- "default.handlebars->47->2822",
- "default3.handlebars->35->2125",
- "default3.handlebars->35->2344",
- "default3.handlebars->35->2815"
+ "default-mobile.handlebars->11->958",
+ "default-mobile.handlebars->11->976",
+ "default-mobile.handlebars->11->996",
+ "default.handlebars->47->2127",
+ "default.handlebars->47->2349",
+ "default.handlebars->47->2823",
+ "default3.handlebars->35->2126",
+ "default3.handlebars->35->2345",
+ "default3.handlebars->35->2816"
]
},
{
@@ -35701,8 +35701,8 @@
"zh-cht": "完整管理員(保留所有權利)",
"uk": "Повноправний Адміністратор (усі дозволи)",
"xloc": [
- "default.handlebars->47->2387",
- "default3.handlebars->35->2383"
+ "default.handlebars->47->2388",
+ "default3.handlebars->35->2384"
]
},
{
@@ -35757,8 +35757,8 @@
"zh-cht": "完整裝置權限",
"uk": "Повні Дозволи на Пристрій",
"xloc": [
- "default.handlebars->47->1127",
- "default3.handlebars->35->1122"
+ "default.handlebars->47->1128",
+ "default3.handlebars->35->1123"
]
},
{
@@ -35787,8 +35787,8 @@
"zh-cht": "全部權限",
"uk": "Повні Дозволи",
"xloc": [
- "default.handlebars->47->1149",
- "default3.handlebars->35->1144"
+ "default.handlebars->47->1150",
+ "default3.handlebars->35->1145"
]
},
{
@@ -35881,8 +35881,8 @@
"zh-cht": "完整管理員",
"uk": "Повноправний Адміністратор",
"xloc": [
- "default.handlebars->47->2927",
- "default3.handlebars->35->2920"
+ "default.handlebars->47->2928",
+ "default3.handlebars->35->2921"
]
},
{
@@ -35911,10 +35911,10 @@
"zh-cht": "全自動的",
"uk": "Повністю Автоматичний",
"xloc": [
- "default.handlebars->47->2217",
- "default.handlebars->47->2278",
- "default3.handlebars->35->2212",
- "default3.handlebars->35->2271"
+ "default.handlebars->47->2218",
+ "default.handlebars->47->2279",
+ "default3.handlebars->35->2213",
+ "default3.handlebars->35->2272"
]
},
{
@@ -35923,9 +35923,9 @@
"nl": "Volledig gedecodeerd",
"uk": "Повністю Розшифрований",
"xloc": [
- "default-mobile.handlebars->11->893",
- "default.handlebars->47->1733",
- "default3.handlebars->35->1715"
+ "default-mobile.handlebars->11->894",
+ "default.handlebars->47->1734",
+ "default3.handlebars->35->1716"
]
},
{
@@ -35934,9 +35934,9 @@
"nl": "Volledig gecodeerd",
"uk": "Повністю Зашифрований",
"xloc": [
- "default-mobile.handlebars->11->895",
- "default.handlebars->47->1735",
- "default3.handlebars->35->1717"
+ "default-mobile.handlebars->11->896",
+ "default.handlebars->47->1736",
+ "default3.handlebars->35->1718"
]
},
{
@@ -35995,9 +35995,9 @@
"zh-cht": "GPU",
"uk": "GPU",
"xloc": [
- "default-mobile.handlebars->11->847",
- "default.handlebars->47->1687",
- "default3.handlebars->35->1669"
+ "default-mobile.handlebars->11->848",
+ "default.handlebars->47->1688",
+ "default3.handlebars->35->1670"
]
},
{
@@ -36027,8 +36027,8 @@
"uk": "Ґельська (Ірландська)",
"xloc": [
"default-mobile.handlebars->11->189",
- "default.handlebars->47->1922",
- "default3.handlebars->35->1902",
+ "default.handlebars->47->1923",
+ "default3.handlebars->35->1903",
"login2.handlebars->7->77"
]
},
@@ -36059,8 +36059,8 @@
"uk": "Ґельська (Шотландська)",
"xloc": [
"default-mobile.handlebars->11->188",
- "default.handlebars->47->1921",
- "default3.handlebars->35->1901",
+ "default.handlebars->47->1922",
+ "default3.handlebars->35->1902",
"login2.handlebars->7->76"
]
},
@@ -36090,8 +36090,8 @@
"zh-cht": "加拉契語",
"xloc": [
"default-mobile.handlebars->11->190",
- "default.handlebars->47->1923",
- "default3.handlebars->35->1903",
+ "default.handlebars->47->1924",
+ "default3.handlebars->35->1904",
"login2.handlebars->7->78"
]
},
@@ -36150,9 +36150,9 @@
"zh-cht": "網關:{0}",
"uk": "Шлюз: {0}",
"xloc": [
- "default-mobile.handlebars->11->809",
- "default.handlebars->47->1649",
- "default3.handlebars->35->1633"
+ "default-mobile.handlebars->11->810",
+ "default.handlebars->47->1650",
+ "default3.handlebars->35->1634"
]
},
{
@@ -36312,8 +36312,8 @@
"zh-cht": "生成報告",
"uk": "Згенерувати звіт",
"xloc": [
- "default.handlebars->47->3180",
- "default3.handlebars->35->3167"
+ "default.handlebars->47->3181",
+ "default3.handlebars->35->3168"
]
},
{
@@ -36373,8 +36373,8 @@
"uk": "Грузинська",
"xloc": [
"default-mobile.handlebars->11->191",
- "default.handlebars->47->1924",
- "default3.handlebars->35->1904",
+ "default.handlebars->47->1925",
+ "default3.handlebars->35->1905",
"login2.handlebars->7->79"
]
},
@@ -36405,8 +36405,8 @@
"uk": "Німецька (Австрія)",
"xloc": [
"default-mobile.handlebars->11->193",
- "default.handlebars->47->1926",
- "default3.handlebars->35->1906",
+ "default.handlebars->47->1927",
+ "default3.handlebars->35->1907",
"login2.handlebars->7->81"
]
},
@@ -36437,8 +36437,8 @@
"uk": "Німецька (Німеччина)",
"xloc": [
"default-mobile.handlebars->11->194",
- "default.handlebars->47->1927",
- "default3.handlebars->35->1907",
+ "default.handlebars->47->1928",
+ "default3.handlebars->35->1908",
"login2.handlebars->7->82"
]
},
@@ -36469,8 +36469,8 @@
"uk": "Німецька (Ліхтенштейн)",
"xloc": [
"default-mobile.handlebars->11->195",
- "default.handlebars->47->1928",
- "default3.handlebars->35->1908",
+ "default.handlebars->47->1929",
+ "default3.handlebars->35->1909",
"login2.handlebars->7->83"
]
},
@@ -36501,8 +36501,8 @@
"uk": "Німецька (Люксембург)",
"xloc": [
"default-mobile.handlebars->11->196",
- "default.handlebars->47->1929",
- "default3.handlebars->35->1909",
+ "default.handlebars->47->1930",
+ "default3.handlebars->35->1910",
"login2.handlebars->7->84"
]
},
@@ -36533,8 +36533,8 @@
"uk": "Німецька (Cтандартна)",
"xloc": [
"default-mobile.handlebars->11->192",
- "default.handlebars->47->1925",
- "default3.handlebars->35->1905",
+ "default.handlebars->47->1926",
+ "default3.handlebars->35->1906",
"login2.handlebars->7->80"
]
},
@@ -36565,8 +36565,8 @@
"uk": "Німецька (Швейцарія)",
"xloc": [
"default-mobile.handlebars->11->197",
- "default.handlebars->47->1930",
- "default3.handlebars->35->1910",
+ "default.handlebars->47->1931",
+ "default3.handlebars->35->1911",
"login2.handlebars->7->85"
]
},
@@ -36596,8 +36596,8 @@
"zh-cht": "獲取剪貼板",
"uk": "Одержати буфер обміну",
"xloc": [
- "default.handlebars->47->1449",
- "default3.handlebars->35->1436"
+ "default.handlebars->47->1450",
+ "default3.handlebars->35->1437"
]
},
{
@@ -36626,8 +36626,8 @@
"zh-cht": "獲取此裝置的MQTT登入憑證。",
"uk": "Отримати облікові дані MQTT для цього пристрою.",
"xloc": [
- "default.handlebars->47->1059",
- "default3.handlebars->35->1056"
+ "default.handlebars->47->1060",
+ "default3.handlebars->35->1057"
]
},
{
@@ -36687,8 +36687,8 @@
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"uk": "Отримання вмісту буфера, {0} байт(ів)",
"xloc": [
- "default.handlebars->47->2545",
- "default3.handlebars->35->2541"
+ "default.handlebars->47->2546",
+ "default3.handlebars->35->2542"
]
},
{
@@ -36709,8 +36709,8 @@
"pl": "Przejdź do Folderu",
"uk": "Перейти до Теки",
"xloc": [
- "default.handlebars->47->1548",
- "default3.handlebars->35->1532"
+ "default.handlebars->47->1549",
+ "default3.handlebars->35->1533"
]
},
{
@@ -36874,8 +36874,8 @@
"zh-cht": "好",
"uk": "Добре",
"xloc": [
- "default.handlebars->47->2122",
- "default3.handlebars->35->2121"
+ "default.handlebars->47->2123",
+ "default3.handlebars->35->2122"
]
},
{
@@ -36969,11 +36969,11 @@
"zh-cht": "Google雲端硬盤備份",
"uk": "Резервне копіювання до Google Drive",
"xloc": [
- "default.handlebars->47->2143",
- "default.handlebars->47->2146",
+ "default.handlebars->47->2144",
+ "default.handlebars->47->2147",
"default.handlebars->47->328",
- "default3.handlebars->35->2142",
- "default3.handlebars->35->2145",
+ "default3.handlebars->35->2143",
+ "default3.handlebars->35->2146",
"default3.handlebars->35->325"
]
},
@@ -37003,8 +37003,8 @@
"zh-cht": "Google雲端硬盤控制台",
"uk": "Консоль Google Drive",
"xloc": [
- "default.handlebars->47->2140",
- "default3.handlebars->35->2139"
+ "default.handlebars->47->2141",
+ "default3.handlebars->35->2140"
]
},
{
@@ -37063,8 +37063,8 @@
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
"uk": "Резервне копіювання Google Drive активне.",
"xloc": [
- "default.handlebars->47->2144",
- "default3.handlebars->35->2143"
+ "default.handlebars->47->2145",
+ "default3.handlebars->35->2144"
]
},
{
@@ -37124,8 +37124,8 @@
"uk": "Грецька",
"xloc": [
"default-mobile.handlebars->11->198",
- "default.handlebars->47->1931",
- "default3.handlebars->35->1911",
+ "default.handlebars->47->1932",
+ "default3.handlebars->35->1912",
"login2.handlebars->7->86"
]
},
@@ -37156,10 +37156,10 @@
"uk": "Групу",
"xloc": [
"default-mobile.handlebars->11->490",
- "default.handlebars->47->3196",
+ "default.handlebars->47->3197",
"default.handlebars->47->891",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1",
- "default3.handlebars->35->3183",
+ "default3.handlebars->35->3184",
"default3.handlebars->35->888",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->1"
]
@@ -37190,14 +37190,14 @@
"zh-cht": "集體指令",
"uk": "Групова Дія",
"xloc": [
- "default.handlebars->47->2756",
- "default.handlebars->47->2846",
+ "default.handlebars->47->2757",
+ "default.handlebars->47->2847",
"default.handlebars->47->753",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
"default.handlebars->container->column_l->p50->3->1->0->3->p50userGroupOps",
- "default3.handlebars->35->2752",
- "default3.handlebars->35->2839",
+ "default3.handlebars->35->2753",
+ "default3.handlebars->35->2840",
"default3.handlebars->35->750",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar",
"default3.handlebars->container->column_l->p4->3->1->0->1->1",
@@ -37230,8 +37230,8 @@
"zh-cht": "通過...分群",
"uk": "Групувати як",
"xloc": [
- "default.handlebars->47->2702",
- "default3.handlebars->35->2698"
+ "default.handlebars->47->2703",
+ "default3.handlebars->35->2699"
]
},
{
@@ -37261,8 +37261,8 @@
"uk": "Ідентифікатор групи",
"xloc": [
"agent-translations.json",
- "default.handlebars->47->2863",
- "default3.handlebars->35->2856"
+ "default.handlebars->47->2864",
+ "default3.handlebars->35->2857"
]
},
{
@@ -37291,8 +37291,8 @@
"zh-cht": "群組成員",
"uk": "Учасники Групи",
"xloc": [
- "default.handlebars->47->2888",
- "default3.handlebars->35->2881"
+ "default.handlebars->47->2889",
+ "default3.handlebars->35->2882"
]
},
{
@@ -37336,8 +37336,8 @@
"pl": "Typ Grupy",
"uk": "Тип Групи",
"xloc": [
- "default.handlebars->47->2864",
- "default3.handlebars->35->2857"
+ "default.handlebars->47->2865",
+ "default3.handlebars->35->2858"
]
},
{
@@ -37366,10 +37366,10 @@
"zh-cht": "通過...分群",
"uk": "Групувати як",
"xloc": [
- "default.handlebars->47->3166",
- "default.handlebars->47->3169",
- "default3.handlebars->35->3153",
- "default3.handlebars->35->3156"
+ "default.handlebars->47->3167",
+ "default.handlebars->47->3170",
+ "default3.handlebars->35->3154",
+ "default3.handlebars->35->3157"
]
},
{
@@ -37398,8 +37398,8 @@
"zh-cht": "團隊名字",
"uk": "Ім'я групи",
"xloc": [
- "default.handlebars->47->2686",
- "default3.handlebars->35->2682"
+ "default.handlebars->47->2687",
+ "default3.handlebars->35->2683"
]
},
{
@@ -37428,8 +37428,8 @@
"zh-cht": "用戶{0}的群組權限。",
"uk": "Дозволи групи для користувача {0}.",
"xloc": [
- "default.handlebars->47->2347",
- "default3.handlebars->35->2343"
+ "default.handlebars->47->2348",
+ "default3.handlebars->35->2344"
]
},
{
@@ -37458,8 +37458,8 @@
"zh-cht": "{0}的群組權限。",
"uk": "Групові дозволи для {0}.",
"xloc": [
- "default.handlebars->47->2346",
- "default3.handlebars->35->2342"
+ "default.handlebars->47->2347",
+ "default3.handlebars->35->2343"
]
},
{
@@ -37577,8 +37577,8 @@
"zh-cht": "來賓",
"uk": "Гость",
"xloc": [
- "default.handlebars->47->3186",
- "default3.handlebars->35->3173"
+ "default.handlebars->47->3187",
+ "default3.handlebars->35->3174"
]
},
{
@@ -37607,9 +37607,9 @@
"zh-cht": "來賓姓名",
"uk": "Ім'я Гостя",
"xloc": [
- "default.handlebars->47->1205",
+ "default.handlebars->47->1206",
"default.handlebars->47->290",
- "default3.handlebars->35->1200",
+ "default3.handlebars->35->1201",
"default3.handlebars->35->287"
]
},
@@ -37639,10 +37639,10 @@
"zh-cht": "嘉賓分享",
"uk": "Поширити Гостю",
"xloc": [
- "default.handlebars->47->1134",
- "default.handlebars->47->1159",
- "default3.handlebars->35->1129",
- "default3.handlebars->35->1154"
+ "default.handlebars->47->1135",
+ "default.handlebars->47->1160",
+ "default3.handlebars->35->1130",
+ "default3.handlebars->35->1155"
]
},
{
@@ -37671,8 +37671,8 @@
"zh-cht": "嘉賓分享",
"uk": "Гостьове Поширення",
"xloc": [
- "default.handlebars->47->2355",
- "default3.handlebars->35->2351"
+ "default.handlebars->47->2356",
+ "default3.handlebars->35->2352"
]
},
{
@@ -37702,8 +37702,8 @@
"uk": "Гуджараті",
"xloc": [
"default-mobile.handlebars->11->199",
- "default.handlebars->47->1932",
- "default3.handlebars->35->1912",
+ "default.handlebars->47->1933",
+ "default3.handlebars->35->1913",
"login2.handlebars->7->87"
]
},
@@ -37734,13 +37734,13 @@
"uk": "HTTP",
"xloc": [
"default-mobile.handlebars->11->559",
- "default.handlebars->47->1044",
- "default.handlebars->47->1212",
- "default.handlebars->47->3340",
+ "default.handlebars->47->1045",
+ "default.handlebars->47->1213",
+ "default.handlebars->47->3341",
"default.handlebars->47->444",
- "default3.handlebars->35->1041",
- "default3.handlebars->35->1207",
- "default3.handlebars->35->3327",
+ "default3.handlebars->35->1042",
+ "default3.handlebars->35->1208",
+ "default3.handlebars->35->3328",
"default3.handlebars->35->441"
]
},
@@ -37826,10 +37826,10 @@
"tr": "HTTP/",
"uk": "HTTP/",
"xloc": [
- "default.handlebars->47->1098",
- "default.handlebars->47->2248",
- "default3.handlebars->35->1095",
- "default3.handlebars->35->2243"
+ "default.handlebars->47->1099",
+ "default.handlebars->47->2249",
+ "default3.handlebars->35->1096",
+ "default3.handlebars->35->2244"
]
},
{
@@ -37874,11 +37874,11 @@
"uk": "HTTPS",
"xloc": [
"default-mobile.handlebars->11->560",
- "default.handlebars->47->1045",
- "default.handlebars->47->1213",
+ "default.handlebars->47->1046",
+ "default.handlebars->47->1214",
"default.handlebars->47->445",
- "default3.handlebars->35->1042",
- "default3.handlebars->35->1208",
+ "default3.handlebars->35->1043",
+ "default3.handlebars->35->1209",
"default3.handlebars->35->442"
]
},
@@ -37964,10 +37964,10 @@
"tr": "HTTPS/",
"uk": "HTTPS/",
"xloc": [
- "default.handlebars->47->1099",
- "default.handlebars->47->2249",
- "default3.handlebars->35->1096",
- "default3.handlebars->35->2244"
+ "default.handlebars->47->1100",
+ "default.handlebars->47->2250",
+ "default3.handlebars->35->1097",
+ "default3.handlebars->35->2245"
]
},
{
@@ -38059,8 +38059,8 @@
"uk": "Гаїтянська",
"xloc": [
"default-mobile.handlebars->11->200",
- "default.handlebars->47->1933",
- "default3.handlebars->35->1913",
+ "default.handlebars->47->1934",
+ "default3.handlebars->35->1914",
"login2.handlebars->7->88"
]
},
@@ -38075,10 +38075,10 @@
"pl": "Obsługa",
"uk": "Обробка",
"xloc": [
- "default.handlebars->47->1800",
- "default.handlebars->47->3032",
- "default3.handlebars->35->1781",
- "default3.handlebars->35->3025"
+ "default.handlebars->47->1801",
+ "default.handlebars->47->3033",
+ "default3.handlebars->35->1782",
+ "default3.handlebars->35->3026"
]
},
{
@@ -38166,9 +38166,9 @@
"zh-cht": "強行斷開代理",
"uk": "Жорстке відключення агента",
"xloc": [
- "default-mobile.handlebars->11->934",
- "default.handlebars->47->1775",
- "default3.handlebars->35->1757"
+ "default-mobile.handlebars->11->935",
+ "default.handlebars->47->1776",
+ "default3.handlebars->35->1758"
]
},
{
@@ -38197,8 +38197,8 @@
"zh-cht": "硬件一次性密碼",
"uk": "Апаратний OTP",
"xloc": [
- "default.handlebars->47->3221",
- "default3.handlebars->35->3208"
+ "default.handlebars->47->3222",
+ "default3.handlebars->35->3209"
]
},
{
@@ -38257,8 +38257,8 @@
"zh-cht": "堆總數",
"uk": "Загальна купа(Heap)",
"xloc": [
- "default.handlebars->47->3358",
- "default3.handlebars->35->3345"
+ "default.handlebars->47->3359",
+ "default3.handlebars->35->3346"
]
},
{
@@ -38287,8 +38287,8 @@
"zh-cht": "堆使用",
"uk": "Використана купа(Heap)",
"xloc": [
- "default.handlebars->47->3357",
- "default3.handlebars->35->3344"
+ "default.handlebars->47->3358",
+ "default3.handlebars->35->3345"
]
},
{
@@ -38318,8 +38318,8 @@
"uk": "Іврит",
"xloc": [
"default-mobile.handlebars->11->201",
- "default.handlebars->47->1934",
- "default3.handlebars->35->1914",
+ "default.handlebars->47->1935",
+ "default3.handlebars->35->1915",
"login2.handlebars->7->89"
]
},
@@ -38438,8 +38438,8 @@
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
"uk": "Запит допомоги, користувач: {0}, деталі: {1}",
"xloc": [
- "default.handlebars->47->2622",
- "default3.handlebars->35->2618"
+ "default.handlebars->47->2623",
+ "default3.handlebars->35->2619"
]
},
{
@@ -38515,14 +38515,14 @@
"pl": "Prośby pomocy",
"uk": "Запит допомоги",
"xloc": [
- "default.handlebars->47->1121",
- "default.handlebars->47->1125",
- "default.handlebars->47->2448",
- "default.handlebars->47->2452",
- "default3.handlebars->35->1116",
- "default3.handlebars->35->1120",
- "default3.handlebars->35->2444",
- "default3.handlebars->35->2448"
+ "default.handlebars->47->1122",
+ "default.handlebars->47->1126",
+ "default.handlebars->47->2449",
+ "default.handlebars->47->2453",
+ "default3.handlebars->35->1117",
+ "default3.handlebars->35->1121",
+ "default3.handlebars->35->2445",
+ "default3.handlebars->35->2449"
]
},
{
@@ -38552,8 +38552,8 @@
"uk": "Прошу, допоможіть із перекладом MeshCentral",
"xloc": [
"default-mobile.handlebars->11->316",
- "default.handlebars->47->2049",
- "default3.handlebars->35->2029"
+ "default.handlebars->47->2050",
+ "default3.handlebars->35->2030"
]
},
{
@@ -38705,8 +38705,8 @@
"uk": "Хінді",
"xloc": [
"default-mobile.handlebars->11->202",
- "default.handlebars->47->1935",
- "default3.handlebars->35->1915",
+ "default.handlebars->47->1936",
+ "default3.handlebars->35->1916",
"login2.handlebars->7->90"
]
},
@@ -38763,8 +38763,8 @@
"uk": "Утримати 1 запис для копіювання",
"xloc": [
"default-mobile.handlebars->11->733",
- "default.handlebars->47->1576",
- "default3.handlebars->35->1560",
+ "default.handlebars->47->1577",
+ "default3.handlebars->35->1561",
"sharing.handlebars->11->76"
]
},
@@ -38795,8 +38795,8 @@
"uk": "Утримано 1 запис для переміщення",
"xloc": [
"default-mobile.handlebars->11->737",
- "default.handlebars->47->1580",
- "default3.handlebars->35->1564",
+ "default.handlebars->47->1581",
+ "default3.handlebars->35->1565",
"sharing.handlebars->11->80"
]
},
@@ -38827,8 +38827,8 @@
"uk": "Утримано {0} записів для копіювання",
"xloc": [
"default-mobile.handlebars->11->731",
- "default.handlebars->47->1574",
- "default3.handlebars->35->1558",
+ "default.handlebars->47->1575",
+ "default3.handlebars->35->1559",
"sharing.handlebars->11->74"
]
},
@@ -38859,8 +38859,8 @@
"uk": "Утримано {0} записів для переміщення",
"xloc": [
"default-mobile.handlebars->11->735",
- "default.handlebars->47->1578",
- "default3.handlebars->35->1562",
+ "default.handlebars->47->1579",
+ "default3.handlebars->35->1563",
"sharing.handlebars->11->78"
]
},
@@ -38891,8 +38891,8 @@
"uk": "Утримано {0} запис{1} для {2}",
"xloc": [
"default-mobile.handlebars->11->379",
- "default.handlebars->47->2518",
- "default3.handlebars->35->2514"
+ "default.handlebars->47->2519",
+ "default3.handlebars->35->2515"
]
},
{
@@ -38922,8 +38922,8 @@
"uk": "Домівка",
"xloc": [
"default-mobile.handlebars->11->657",
- "default.handlebars->47->1421",
- "default3.handlebars->35->1408"
+ "default.handlebars->47->1422",
+ "default3.handlebars->35->1409"
]
},
{
@@ -38956,19 +38956,19 @@
"default-mobile.handlebars->11->493",
"default-mobile.handlebars->11->495",
"default-mobile.handlebars->11->636",
- "default-mobile.handlebars->11->799",
- "default-mobile.handlebars->11->950",
- "default.handlebars->47->1368",
- "default.handlebars->47->1629",
- "default.handlebars->47->2115",
- "default.handlebars->47->2178",
+ "default-mobile.handlebars->11->800",
+ "default-mobile.handlebars->11->951",
+ "default.handlebars->47->1369",
+ "default.handlebars->47->1630",
+ "default.handlebars->47->2116",
+ "default.handlebars->47->2179",
"default.handlebars->47->501",
"default.handlebars->47->510",
"default.handlebars->47->896",
- "default3.handlebars->35->1354",
- "default3.handlebars->35->1613",
- "default3.handlebars->35->2114",
- "default3.handlebars->35->2173",
+ "default3.handlebars->35->1355",
+ "default3.handlebars->35->1614",
+ "default3.handlebars->35->2115",
+ "default3.handlebars->35->2174",
"default3.handlebars->35->498",
"default3.handlebars->35->507",
"default3.handlebars->35->893"
@@ -39000,8 +39000,8 @@
"zh-cht": "主機名同步",
"uk": "Синхронізація Імені Хоста",
"xloc": [
- "default.handlebars->47->2185",
- "default3.handlebars->35->2180"
+ "default.handlebars->47->2186",
+ "default3.handlebars->35->2181"
]
},
{
@@ -39042,8 +39042,8 @@
"uk": "Мадярська",
"xloc": [
"default-mobile.handlebars->11->203",
- "default.handlebars->47->1936",
- "default3.handlebars->35->1916",
+ "default.handlebars->47->1937",
+ "default3.handlebars->35->1917",
"login2.handlebars->7->91"
]
},
@@ -39073,8 +39073,8 @@
"zh-cht": "服務器所需的混合",
"uk": "Сервер потребує гібридний режим",
"xloc": [
- "default.handlebars->47->1386",
- "default3.handlebars->35->1373"
+ "default.handlebars->47->1387",
+ "default3.handlebars->35->1374"
]
},
{
@@ -39103,10 +39103,10 @@
"zh-cht": "IP地址",
"uk": "IP-адреса",
"xloc": [
- "default.handlebars->47->3191",
- "default.handlebars->47->3227",
- "default3.handlebars->35->3178",
- "default3.handlebars->35->3214"
+ "default.handlebars->47->3192",
+ "default.handlebars->47->3228",
+ "default3.handlebars->35->3179",
+ "default3.handlebars->35->3215"
]
},
{
@@ -39236,8 +39236,8 @@
"pl": "Zapisy o informacji lokalizacji IP",
"uk": "Інформаційні записи про локацію IP",
"xloc": [
- "default.handlebars->47->3233",
- "default3.handlebars->35->3220"
+ "default.handlebars->47->3234",
+ "default3.handlebars->35->3221"
]
},
{
@@ -39301,8 +39301,8 @@
"zh-cht": "IP-KVM / 電源設備",
"uk": "IP-KVM / Електроживлення",
"xloc": [
- "default.handlebars->47->2105",
- "default3.handlebars->35->2104"
+ "default.handlebars->47->2106",
+ "default3.handlebars->35->2105"
]
},
{
@@ -39331,8 +39331,8 @@
"zh-cht": "IP-KVM / 通過代理中繼的電源設備",
"uk": "IP-KVM / Керування живленням ретранслюється через агента",
"xloc": [
- "default.handlebars->47->2106",
- "default3.handlebars->35->2105"
+ "default.handlebars->47->2107",
+ "default3.handlebars->35->2106"
]
},
{
@@ -39361,9 +39361,9 @@
"zh-cht": "IP-KVM 設備",
"uk": "Пристрій IP-KVM",
"xloc": [
- "default-mobile.handlebars->11->942",
- "default.handlebars->47->2170",
- "default3.handlebars->35->2165"
+ "default-mobile.handlebars->11->943",
+ "default.handlebars->47->2171",
+ "default3.handlebars->35->2166"
]
},
{
@@ -39392,9 +39392,9 @@
"zh-cht": "通過代理中繼的 IP-KVM 設備",
"uk": "Пристрій IP-KVM ретранслюється через агента",
"xloc": [
- "default-mobile.handlebars->11->943",
- "default.handlebars->47->2171",
- "default3.handlebars->35->2166"
+ "default-mobile.handlebars->11->944",
+ "default.handlebars->47->2172",
+ "default3.handlebars->35->2167"
]
},
{
@@ -39423,10 +39423,10 @@
"zh-cht": "已連接 IP-KVM 端口",
"uk": "Порт IP-KVM підключено",
"xloc": [
- "default.handlebars->47->1065",
"default.handlebars->47->1066",
- "default3.handlebars->35->1062",
- "default3.handlebars->35->1063"
+ "default.handlebars->47->1067",
+ "default3.handlebars->35->1063",
+ "default3.handlebars->35->1064"
]
},
{
@@ -39515,11 +39515,11 @@
"zh-cht": "IP:{0}",
"uk": "IP: {0}",
"xloc": [
- "default-mobile.handlebars->11->807",
- "default.handlebars->47->1640",
- "default.handlebars->47->1647",
- "default3.handlebars->35->1624",
- "default3.handlebars->35->1631"
+ "default-mobile.handlebars->11->808",
+ "default.handlebars->47->1641",
+ "default.handlebars->47->1648",
+ "default3.handlebars->35->1625",
+ "default3.handlebars->35->1632"
]
},
{
@@ -39548,8 +39548,8 @@
"zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
"uk": "IP: {0}, Маска: {1}, Шлюз: {2}",
"xloc": [
- "default.handlebars->47->1638",
- "default3.handlebars->35->1622"
+ "default.handlebars->47->1639",
+ "default3.handlebars->35->1623"
]
},
{
@@ -39578,13 +39578,13 @@
"zh-cht": "IPv4層",
"uk": "IPv4 рівень",
"xloc": [
- "default-mobile.handlebars->11->810",
- "default.handlebars->47->1637",
- "default.handlebars->47->1639",
- "default.handlebars->47->1650",
- "default3.handlebars->35->1621",
- "default3.handlebars->35->1623",
- "default3.handlebars->35->1634"
+ "default-mobile.handlebars->11->811",
+ "default.handlebars->47->1638",
+ "default.handlebars->47->1640",
+ "default.handlebars->47->1651",
+ "default3.handlebars->35->1622",
+ "default3.handlebars->35->1624",
+ "default3.handlebars->35->1635"
]
},
{
@@ -39709,9 +39709,9 @@
"zh-cht": "IPv6層",
"uk": "IPv6 рівень",
"xloc": [
- "default-mobile.handlebars->11->812",
- "default.handlebars->47->1652",
- "default3.handlebars->35->1636"
+ "default-mobile.handlebars->11->813",
+ "default.handlebars->47->1653",
+ "default3.handlebars->35->1637"
]
},
{
@@ -39831,8 +39831,8 @@
"uk": "Ісландська",
"xloc": [
"default-mobile.handlebars->11->204",
- "default.handlebars->47->1937",
- "default3.handlebars->35->1917",
+ "default.handlebars->47->1938",
+ "default3.handlebars->35->1918",
"login2.handlebars->7->92"
]
},
@@ -39863,8 +39863,8 @@
"uk": "Вибір Іконки",
"xloc": [
"default-mobile.handlebars->11->630",
- "default.handlebars->47->1362",
- "default3.handlebars->35->1350"
+ "default.handlebars->47->1363",
+ "default3.handlebars->35->1351"
]
},
{
@@ -39893,17 +39893,17 @@
"zh-cht": "識別符",
"uk": "Ідентифікатор",
"xloc": [
- "default-mobile.handlebars->11->798",
- "default-mobile.handlebars->11->819",
- "default-mobile.handlebars->11->845",
- "default-mobile.handlebars->11->913",
- "default.handlebars->47->1628",
- "default.handlebars->47->1659",
- "default.handlebars->47->1685",
- "default.handlebars->47->1753",
- "default3.handlebars->35->1612",
- "default3.handlebars->35->1667",
- "default3.handlebars->35->1735"
+ "default-mobile.handlebars->11->799",
+ "default-mobile.handlebars->11->820",
+ "default-mobile.handlebars->11->846",
+ "default-mobile.handlebars->11->914",
+ "default.handlebars->47->1629",
+ "default.handlebars->47->1660",
+ "default.handlebars->47->1686",
+ "default.handlebars->47->1754",
+ "default3.handlebars->35->1613",
+ "default3.handlebars->35->1668",
+ "default3.handlebars->35->1736"
]
},
{
@@ -39932,8 +39932,8 @@
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
"uk": "Якщо в CCM, повторно активувати Intel® AMT",
"xloc": [
- "default.handlebars->47->2292",
- "default3.handlebars->35->2285"
+ "default.handlebars->47->2293",
+ "default3.handlebars->35->2286"
]
},
{
@@ -40126,8 +40126,8 @@
"pl": "Importuj",
"uk": "Імпорт",
"xloc": [
- "default.handlebars->47->2224",
- "default3.handlebars->35->2219"
+ "default.handlebars->47->2225",
+ "default3.handlebars->35->2220"
]
},
{
@@ -40168,12 +40168,12 @@
"zh-cht": "導入英特爾® AMT 設備",
"uk": "Імпортувати пристрої Intel® AMT",
"xloc": [
- "default.handlebars->47->2266",
"default.handlebars->47->2267",
- "default.handlebars->47->2271",
- "default3.handlebars->35->2261",
+ "default.handlebars->47->2268",
+ "default.handlebars->47->2272",
"default3.handlebars->35->2262",
- "default3.handlebars->35->2265"
+ "default3.handlebars->35->2263",
+ "default3.handlebars->35->2266"
]
},
{
@@ -40188,8 +40188,8 @@
"pl": "Importuj urządzenia Intel® AMT.",
"uk": "Імпортувати пристрої Intel® AMT.",
"xloc": [
- "default.handlebars->47->2223",
- "default3.handlebars->35->2218"
+ "default.handlebars->47->2224",
+ "default3.handlebars->35->2219"
]
},
{
@@ -40218,8 +40218,8 @@
"zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。",
"uk": "Імпортувати Перелік локальних пристроїв Intel® AMT у форматі MeshCommander JSON.",
"xloc": [
- "default.handlebars->47->2265",
- "default3.handlebars->35->2260"
+ "default.handlebars->47->2266",
+ "default3.handlebars->35->2261"
]
},
{
@@ -40248,8 +40248,8 @@
"zh-cht": "導入設備列表",
"uk": "Імпортувати перелік пристроїв",
"xloc": [
- "default.handlebars->47->2261",
- "default3.handlebars->35->2256"
+ "default.handlebars->47->2262",
+ "default3.handlebars->35->2257"
]
},
{
@@ -40289,7 +40289,7 @@
"zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。",
"uk": "Щоб використовувати автентифікацію push-повідомлень, у вашому обліковому записі має бути налаштовано мобільний пристрій із повними правами.",
"xloc": [
- "default.handlebars->47->1832"
+ "default.handlebars->47->1833"
]
},
{
@@ -40318,8 +40318,8 @@
"zh-cht": "停用天數直到移除",
"uk": "Інактивувати дні до видалення",
"xloc": [
- "default.handlebars->47->2332",
- "default3.handlebars->35->2328"
+ "default.handlebars->47->2333",
+ "default3.handlebars->35->2329"
]
},
{
@@ -40460,8 +40460,8 @@
"zh-cht": "不一致的標誌",
"uk": "Несумісні прапорці",
"xloc": [
- "default.handlebars->47->1385",
- "default3.handlebars->35->1372"
+ "default.handlebars->47->1386",
+ "default3.handlebars->35->1373"
]
},
{
@@ -40490,10 +40490,10 @@
"zh-cht": "第二個因素不正確",
"uk": "Помилковий 2FA код",
"xloc": [
- "default.handlebars->47->3214",
- "default.handlebars->47->3253",
- "default3.handlebars->35->3201",
- "default3.handlebars->35->3240"
+ "default.handlebars->47->3215",
+ "default.handlebars->47->3254",
+ "default3.handlebars->35->3202",
+ "default3.handlebars->35->3241"
]
},
{
@@ -40587,8 +40587,8 @@
"uk": "Індонезійська",
"xloc": [
"default-mobile.handlebars->11->205",
- "default.handlebars->47->1938",
- "default3.handlebars->35->1918",
+ "default.handlebars->47->1939",
+ "default3.handlebars->35->1919",
"login2.handlebars->7->93"
]
},
@@ -40663,10 +40663,10 @@
"pl": "Informacje na Pushover.net",
"uk": "Інформація про Pushover.net",
"xloc": [
- "default.handlebars->47->1806",
- "default.handlebars->47->3038",
- "default3.handlebars->35->1787",
- "default3.handlebars->35->3031"
+ "default.handlebars->47->1807",
+ "default.handlebars->47->3039",
+ "default3.handlebars->35->1788",
+ "default3.handlebars->35->3032"
]
},
{
@@ -40728,8 +40728,8 @@
"uk": "Вставити",
"xloc": [
"default-mobile.handlebars->11->655",
- "default.handlebars->47->1419",
- "default3.handlebars->35->1406"
+ "default.handlebars->47->1420",
+ "default3.handlebars->35->1407"
]
},
{
@@ -40842,7 +40842,7 @@
"zh-cht": "在此設備上安裝",
"uk": "Інсталювати на цьому пристрої",
"xloc": [
- "default-mobile.handlebars->11->954"
+ "default-mobile.handlebars->11->955"
]
},
{
@@ -40871,7 +40871,7 @@
"zh-cht": "在您的 Android 設備上安裝 MeshCentral Agent。安裝後,單擊配對鏈接將您的設備連接到此服務器。",
"uk": "Інсталювати MeshCentral Agent на свій пристрій Android. Після інсталювання клікніть посилання для сполучення, щоб підключити пристрій до цього сервера.",
"xloc": [
- "default-mobile.handlebars->11->970"
+ "default-mobile.handlebars->11->971"
]
},
{
@@ -40953,14 +40953,14 @@
"uk": "Тип Інсталяції",
"xloc": [
"agentinvite.handlebars->3->7",
- "default.handlebars->47->2429",
- "default.handlebars->47->2436",
+ "default.handlebars->47->2430",
+ "default.handlebars->47->2437",
"default.handlebars->47->567",
"default.handlebars->47->588",
"default.handlebars->47->605",
"default.handlebars->47->609",
- "default3.handlebars->35->2425",
- "default3.handlebars->35->2432",
+ "default3.handlebars->35->2426",
+ "default3.handlebars->35->2433",
"default3.handlebars->35->564",
"default3.handlebars->35->585",
"default3.handlebars->35->602",
@@ -40974,8 +40974,8 @@
"pl": "Zainstalowano Przez",
"uk": "Інсталював",
"xloc": [
- "default.handlebars->47->1472",
- "default3.handlebars->35->1458"
+ "default.handlebars->47->1473",
+ "default3.handlebars->35->1459"
]
},
{
@@ -40985,8 +40985,8 @@
"pl": "Data Instalacji",
"uk": "Дата Інсталяції",
"xloc": [
- "default.handlebars->47->1473",
- "default3.handlebars->35->1459"
+ "default.handlebars->47->1474",
+ "default3.handlebars->35->1460"
]
},
{
@@ -41015,9 +41015,9 @@
"zh-cht": "Intel(F10 = ESC + [OM)",
"uk": "Intel (F10 = ESC+[OM)",
"xloc": [
- "default.handlebars->47->1522",
+ "default.handlebars->47->1523",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->1->terminalSettingsButtons",
- "default3.handlebars->35->1507",
+ "default3.handlebars->35->1508",
"default3.handlebars->container->column_l->p12->termTable->1->1->4->1->3->terminalSettingsButtons",
"sharing.handlebars->11->36",
"sharing.handlebars->p12->9->1->terminalSettingsButtons"
@@ -41049,8 +41049,8 @@
"zh-cht": "英特爾AMT",
"uk": "Intel AMT",
"xloc": [
- "default.handlebars->47->3354",
- "default3.handlebars->35->3341"
+ "default.handlebars->47->3355",
+ "default3.handlebars->35->3342"
]
},
{
@@ -41169,8 +41169,8 @@
"zh-cht": "英特爾 AMT 經理",
"uk": "Менеджер Intel AMT",
"xloc": [
- "default.handlebars->47->3384",
- "default3.handlebars->35->3371"
+ "default.handlebars->47->3385",
+ "default3.handlebars->35->3372"
]
},
{
@@ -41229,8 +41229,8 @@
"zh-cht": "Intel ASCII",
"uk": "Intel ASCII",
"xloc": [
- "default.handlebars->47->1521",
- "default3.handlebars->35->1506",
+ "default.handlebars->47->1522",
+ "default3.handlebars->35->1507",
"sharing.handlebars->11->35"
]
},
@@ -41263,26 +41263,26 @@
"default-mobile.handlebars->11->477",
"default-mobile.handlebars->11->527",
"default-mobile.handlebars->11->534",
- "default.handlebars->47->1079",
- "default.handlebars->47->2204",
- "default.handlebars->47->2218",
- "default.handlebars->47->2456",
- "default.handlebars->47->2469",
- "default.handlebars->47->3383",
+ "default.handlebars->47->1080",
+ "default.handlebars->47->2205",
+ "default.handlebars->47->2219",
+ "default.handlebars->47->2457",
+ "default.handlebars->47->2470",
+ "default.handlebars->47->3384",
"default.handlebars->47->866",
"default.handlebars->47->933",
- "default.handlebars->47->981",
- "default.handlebars->47->991",
- "default3.handlebars->35->1076",
- "default3.handlebars->35->2199",
- "default3.handlebars->35->2213",
- "default3.handlebars->35->2452",
- "default3.handlebars->35->2465",
- "default3.handlebars->35->3370",
+ "default.handlebars->47->982",
+ "default.handlebars->47->992",
+ "default3.handlebars->35->1077",
+ "default3.handlebars->35->2200",
+ "default3.handlebars->35->2214",
+ "default3.handlebars->35->2453",
+ "default3.handlebars->35->2466",
+ "default3.handlebars->35->3371",
"default3.handlebars->35->863",
"default3.handlebars->35->930",
- "default3.handlebars->35->978",
- "default3.handlebars->35->988"
+ "default3.handlebars->35->979",
+ "default3.handlebars->35->989"
]
},
{
@@ -41342,8 +41342,8 @@
"uk": "Intel® AMT CIRA",
"xloc": [
"default-mobile.handlebars->11->533",
- "default.handlebars->47->989",
- "default3.handlebars->35->986"
+ "default.handlebars->47->990",
+ "default3.handlebars->35->987"
]
},
{
@@ -41426,10 +41426,10 @@
"xloc": [
"default.handlebars->47->416",
"default.handlebars->47->722",
- "default.handlebars->47->988",
+ "default.handlebars->47->989",
"default3.handlebars->35->413",
"default3.handlebars->35->719",
- "default3.handlebars->35->985"
+ "default3.handlebars->35->986"
]
},
{
@@ -41570,10 +41570,10 @@
"zh-cht": "英特爾® AMT 一鍵恢復",
"uk": "Відновлення Intel® AMT Одним Кліком",
"xloc": [
- "default.handlebars->47->1270",
- "default.handlebars->47->1283",
- "default3.handlebars->35->1265",
- "default3.handlebars->35->1278"
+ "default.handlebars->47->1271",
+ "default.handlebars->47->1284",
+ "default3.handlebars->35->1266",
+ "default3.handlebars->35->1279"
]
},
{
@@ -41602,8 +41602,8 @@
"zh-cht": "Intel® AMT政策",
"uk": "Полісі Intel® AMT",
"xloc": [
- "default.handlebars->47->2279",
- "default3.handlebars->35->2272"
+ "default.handlebars->47->2280",
+ "default3.handlebars->35->2273"
]
},
{
@@ -41635,18 +41635,18 @@
"default-mobile.handlebars->11->595",
"default-mobile.handlebars->11->597",
"default-mobile.handlebars->11->599",
- "default.handlebars->47->1284",
- "default.handlebars->47->1286",
- "default.handlebars->47->1288",
- "default.handlebars->47->1290",
- "default.handlebars->47->1292",
- "default.handlebars->47->1294",
- "default.handlebars->47->1296",
- "default3.handlebars->35->1279",
- "default3.handlebars->35->1281",
- "default3.handlebars->35->1283",
- "default3.handlebars->35->1285",
- "default3.handlebars->35->1287"
+ "default.handlebars->47->1285",
+ "default.handlebars->47->1287",
+ "default.handlebars->47->1289",
+ "default.handlebars->47->1291",
+ "default.handlebars->47->1293",
+ "default.handlebars->47->1295",
+ "default.handlebars->47->1297",
+ "default3.handlebars->35->1280",
+ "default3.handlebars->35->1282",
+ "default3.handlebars->35->1284",
+ "default3.handlebars->35->1286",
+ "default3.handlebars->35->1288"
]
},
{
@@ -41676,8 +41676,8 @@
"uk": "Вимкнути через Intel® AMT",
"xloc": [
"default-mobile.handlebars->11->590",
- "default.handlebars->47->1264",
- "default3.handlebars->35->1259"
+ "default.handlebars->47->1265",
+ "default3.handlebars->35->1260"
]
},
{
@@ -41707,8 +41707,8 @@
"uk": "Увімкнути через Intel® AMT",
"xloc": [
"default-mobile.handlebars->11->591",
- "default.handlebars->47->1269",
- "default3.handlebars->35->1264"
+ "default.handlebars->47->1270",
+ "default3.handlebars->35->1265"
]
},
{
@@ -41723,16 +41723,16 @@
"pl": "Intel® AMT Uruchom do BIOS",
"uk": "Завантаження у BIOS через Intel® AMT",
"xloc": [
- "default.handlebars->47->1266",
- "default3.handlebars->35->1261"
+ "default.handlebars->47->1267",
+ "default3.handlebars->35->1262"
]
},
{
"en": "Intel® AMT Power on to PXE",
"nl": "Intel® AMT inschakelen op PXE",
"xloc": [
- "default.handlebars->47->1267",
- "default3.handlebars->35->1262"
+ "default.handlebars->47->1268",
+ "default3.handlebars->35->1263"
]
},
{
@@ -41761,10 +41761,10 @@
"zh-cht": "Intel® AMT重定向",
"uk": "Перенаправлення Intel® AMT",
"xloc": [
- "default.handlebars->47->3134",
- "default.handlebars->47->3141",
- "default3.handlebars->35->3121",
- "default3.handlebars->35->3128",
+ "default.handlebars->47->3135",
+ "default.handlebars->47->3142",
+ "default3.handlebars->35->3122",
+ "default3.handlebars->35->3129",
"player.handlebars->3->30"
]
},
@@ -41795,8 +41795,8 @@
"uk": "Скинути Intel® AMT",
"xloc": [
"default-mobile.handlebars->11->589",
- "default.handlebars->47->1263",
- "default3.handlebars->35->1258"
+ "default.handlebars->47->1264",
+ "default3.handlebars->35->1259"
]
},
{
@@ -41811,16 +41811,16 @@
"pl": "Intel® AMT Resetuj do BIOS",
"uk": "Скинути BIOS через Intel® AMT",
"xloc": [
- "default.handlebars->47->1265",
- "default3.handlebars->35->1260"
+ "default.handlebars->47->1266",
+ "default3.handlebars->35->1261"
]
},
{
"en": "Intel® AMT Reset to PXE",
"nl": "Intel® AMT resetten naar PXE",
"xloc": [
- "default.handlebars->47->1268",
- "default3.handlebars->35->1263"
+ "default.handlebars->47->1269",
+ "default3.handlebars->35->1264"
]
},
{
@@ -41879,10 +41879,10 @@
"zh-cht": "Intle® AMT WSMAN",
"uk": "Intel® AMT WSMAN",
"xloc": [
- "default.handlebars->47->3133",
- "default.handlebars->47->3140",
- "default3.handlebars->35->3120",
- "default3.handlebars->35->3127",
+ "default.handlebars->47->3134",
+ "default.handlebars->47->3141",
+ "default3.handlebars->35->3121",
+ "default3.handlebars->35->3128",
"player.handlebars->3->29"
]
},
@@ -41939,10 +41939,10 @@
"uk": "Підключено Intel® AMT",
"xloc": [
"default-mobile.handlebars->11->564",
- "default.handlebars->47->1069",
"default.handlebars->47->1070",
- "default3.handlebars->35->1066",
- "default3.handlebars->35->1067"
+ "default.handlebars->47->1071",
+ "default3.handlebars->35->1067",
+ "default3.handlebars->35->1068"
]
},
{
@@ -41971,12 +41971,12 @@
"zh-cht": "Intel® AMT桌面和串行事件",
"uk": "Події Intel® AMT для стільниці та послідовного порту",
"xloc": [
- "default.handlebars->47->1117",
- "default.handlebars->47->2076",
- "default.handlebars->47->2444",
- "default3.handlebars->35->1112",
- "default3.handlebars->35->2057",
- "default3.handlebars->35->2440"
+ "default.handlebars->47->1118",
+ "default.handlebars->47->2077",
+ "default.handlebars->47->2445",
+ "default3.handlebars->35->1113",
+ "default3.handlebars->35->2058",
+ "default3.handlebars->35->2441"
]
},
{
@@ -42006,10 +42006,10 @@
"uk": "Виявлено Intel® AMT",
"xloc": [
"default-mobile.handlebars->11->565",
- "default.handlebars->47->1071",
"default.handlebars->47->1072",
- "default3.handlebars->35->1068",
- "default3.handlebars->35->1069"
+ "default.handlebars->47->1073",
+ "default3.handlebars->35->1069",
+ "default3.handlebars->35->1070"
]
},
{
@@ -42135,8 +42135,8 @@
"zh-cht": "Intel® AMT可路由並可以使用。",
"uk": "Intel® AMT маршрутизується та готовий до використання.",
"xloc": [
- "default.handlebars->47->990",
- "default3.handlebars->35->987"
+ "default.handlebars->47->991",
+ "default3.handlebars->35->988"
]
},
{
@@ -42283,11 +42283,11 @@
"zh-cht": "僅限Intel® AMT,無代理",
"uk": "Лише Intel® AMT, без агента",
"xloc": [
- "default-mobile.handlebars->11->938",
- "default.handlebars->47->2109",
- "default.handlebars->47->2166",
- "default3.handlebars->35->2108",
- "default3.handlebars->35->2161"
+ "default-mobile.handlebars->11->939",
+ "default.handlebars->47->2110",
+ "default.handlebars->47->2167",
+ "default3.handlebars->35->2109",
+ "default3.handlebars->35->2162"
]
},
{
@@ -42412,9 +42412,9 @@
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
"uk": "Технологія Intel® Active Management (Intel® AMT)",
"xloc": [
- "default-mobile.handlebars->11->835",
- "default.handlebars->47->1675",
- "default3.handlebars->35->1657"
+ "default-mobile.handlebars->11->836",
+ "default.handlebars->47->1676",
+ "default3.handlebars->35->1658"
]
},
{
@@ -42505,9 +42505,9 @@
"uk": "Intel® SM",
"xloc": [
"default-mobile.handlebars->11->528",
- "default.handlebars->47->1077",
+ "default.handlebars->47->1078",
"default.handlebars->47->935",
- "default3.handlebars->35->1074",
+ "default3.handlebars->35->1075",
"default3.handlebars->35->932"
]
},
@@ -42566,9 +42566,9 @@
"zh-cht": "英特爾® 標準可管理性(英特爾® SM)",
"uk": "Стандартне Управління Intel® (Intel® SM)",
"xloc": [
- "default-mobile.handlebars->11->834",
- "default.handlebars->47->1674",
- "default3.handlebars->35->1656"
+ "default-mobile.handlebars->11->835",
+ "default.handlebars->47->1675",
+ "default3.handlebars->35->1657"
]
},
{
@@ -42597,8 +42597,8 @@
"zh-cht": "英特爾®AMT",
"uk": "Intel®AMT",
"xloc": [
- "default.handlebars->47->1078",
- "default3.handlebars->35->1075"
+ "default.handlebars->47->1079",
+ "default3.handlebars->35->1076"
]
},
{
@@ -42627,8 +42627,8 @@
"zh-cht": "英特爾® SM",
"uk": "Intel®SM",
"xloc": [
- "default.handlebars->47->1076",
- "default3.handlebars->35->1073"
+ "default.handlebars->47->1077",
+ "default3.handlebars->35->1074"
]
},
{
@@ -42657,8 +42657,8 @@
"zh-cht": "英特爾(r) AMT 政策變更",
"uk": "Зміна полісі Intel(r) AMT",
"xloc": [
- "default.handlebars->47->2665",
- "default3.handlebars->35->2661"
+ "default.handlebars->47->2666",
+ "default3.handlebars->35->2662"
]
},
{
@@ -42914,8 +42914,8 @@
"zh-cht": "互動",
"uk": "Інтерактивний",
"xloc": [
- "default.handlebars->47->1465",
- "default3.handlebars->35->1451"
+ "default.handlebars->47->1466",
+ "default3.handlebars->35->1452"
]
},
{
@@ -42945,13 +42945,13 @@
"uk": "Лише Інтерактивний",
"xloc": [
"agentinvite.handlebars->3->10",
- "default.handlebars->47->2432",
- "default.handlebars->47->2438",
+ "default.handlebars->47->2433",
+ "default.handlebars->47->2439",
"default.handlebars->47->570",
"default.handlebars->47->591",
"default.handlebars->47->608",
- "default3.handlebars->35->2428",
- "default3.handlebars->35->2434",
+ "default3.handlebars->35->2429",
+ "default3.handlebars->35->2435",
"default3.handlebars->35->567",
"default3.handlebars->35->588",
"default3.handlebars->35->605"
@@ -42983,8 +42983,8 @@
"zh-cht": "介面",
"uk": "Інтерфейси",
"xloc": [
- "default.handlebars->47->1037",
- "default3.handlebars->35->1034"
+ "default.handlebars->47->1038",
+ "default3.handlebars->35->1035"
]
},
{
@@ -43043,8 +43043,8 @@
"uk": "Інуктітут",
"xloc": [
"default-mobile.handlebars->11->206",
- "default.handlebars->47->1939",
- "default3.handlebars->35->1919",
+ "default.handlebars->47->1940",
+ "default3.handlebars->35->1920",
"login2.handlebars->7->94"
]
},
@@ -43085,10 +43085,10 @@
"nl": "Ongeldig CSV bestandsformaat.",
"uk": "Хибний формат файлу CSV.",
"xloc": [
- "default.handlebars->47->2778",
- "default.handlebars->47->2780",
- "default3.handlebars->35->2773",
- "default3.handlebars->35->2775"
+ "default.handlebars->47->2779",
+ "default.handlebars->47->2781",
+ "default3.handlebars->35->2774",
+ "default3.handlebars->35->2776"
]
},
{
@@ -43148,8 +43148,8 @@
"zh-cht": "無效的裝置群類型",
"uk": "Хибний Тип Групи Пристроїв",
"xloc": [
- "default.handlebars->47->3316",
- "default3.handlebars->35->3303"
+ "default.handlebars->47->3317",
+ "default3.handlebars->35->3304"
]
},
{
@@ -43178,8 +43178,8 @@
"zh-cht": "無效的JSON",
"uk": "Хибний JSON",
"xloc": [
- "default.handlebars->47->3310",
- "default3.handlebars->35->3297"
+ "default.handlebars->47->3311",
+ "default3.handlebars->35->3298"
]
},
{
@@ -43208,12 +43208,12 @@
"zh-cht": "無效的JSON檔案格式。",
"uk": "Хибний формат файлу JSON.",
"xloc": [
- "default.handlebars->47->2272",
- "default.handlebars->47->2784",
- "default.handlebars->47->2786",
+ "default.handlebars->47->2273",
+ "default.handlebars->47->2785",
+ "default.handlebars->47->2787",
"default.handlebars->47->524",
- "default3.handlebars->35->2779",
- "default3.handlebars->35->2781",
+ "default3.handlebars->35->2780",
+ "default3.handlebars->35->2782",
"default3.handlebars->35->521"
]
},
@@ -43243,11 +43243,11 @@
"zh-cht": "無效的JSON檔案:{0}。",
"uk": "Хибний файл JSON: {0}.",
"xloc": [
- "default.handlebars->47->2268",
- "default.handlebars->47->2782",
+ "default.handlebars->47->2269",
+ "default.handlebars->47->2783",
"default.handlebars->47->522",
- "default3.handlebars->35->2263",
- "default3.handlebars->35->2777",
+ "default3.handlebars->35->2264",
+ "default3.handlebars->35->2778",
"default3.handlebars->35->519"
]
},
@@ -43397,8 +43397,8 @@
"zh-cht": "無效的PKCS簽名",
"uk": "Хибний підпис PKCS",
"xloc": [
- "default.handlebars->47->3308",
- "default3.handlebars->35->3295"
+ "default.handlebars->47->3309",
+ "default3.handlebars->35->3296"
]
},
{
@@ -43427,8 +43427,8 @@
"zh-cht": "無效的RSA密碼",
"uk": "Хибний підпис RSA",
"xloc": [
- "default.handlebars->47->3309",
- "default3.handlebars->35->3296"
+ "default.handlebars->47->3310",
+ "default3.handlebars->35->3297"
]
},
{
@@ -43457,9 +43457,9 @@
"zh-cht": "短信無效",
"uk": "Хибне SMS повідомлення",
"xloc": [
- "default-mobile.handlebars->11->1056",
- "default.handlebars->47->3291",
- "default3.handlebars->35->3278"
+ "default-mobile.handlebars->11->1057",
+ "default.handlebars->47->3292",
+ "default3.handlebars->35->3279"
]
},
{
@@ -43549,9 +43549,9 @@
"zh-cht": "無效域",
"uk": "Хибний домен",
"xloc": [
- "default-mobile.handlebars->11->1036",
- "default.handlebars->47->3271",
- "default3.handlebars->35->3258"
+ "default-mobile.handlebars->11->1037",
+ "default.handlebars->47->3272",
+ "default3.handlebars->35->3259"
]
},
{
@@ -43606,9 +43606,9 @@
"zh-cht": "不合規電郵",
"uk": "Хибна е-пошта",
"xloc": [
- "default-mobile.handlebars->11->1035",
- "default.handlebars->47->3270",
- "default3.handlebars->35->3257"
+ "default-mobile.handlebars->11->1036",
+ "default.handlebars->47->3271",
+ "default3.handlebars->35->3258"
]
},
{
@@ -43727,10 +43727,10 @@
"zh-cht": "無效的登錄嘗試",
"uk": "Хибна спроба входу",
"xloc": [
- "default.handlebars->47->3216",
- "default.handlebars->47->3255",
- "default3.handlebars->35->3203",
- "default3.handlebars->35->3242"
+ "default.handlebars->47->3217",
+ "default.handlebars->47->3256",
+ "default3.handlebars->35->3204",
+ "default3.handlebars->35->3243"
]
},
{
@@ -43744,8 +43744,8 @@
"pl": "Błędna wiadomość",
"uk": "Хибне повідомлення",
"xloc": [
- "default.handlebars->47->3297",
- "default3.handlebars->35->3284"
+ "default.handlebars->47->3298",
+ "default3.handlebars->35->3285"
]
},
{
@@ -43785,11 +43785,11 @@
"zh-cht": "無效的密碼",
"uk": "Хибний пароль",
"xloc": [
- "default-mobile.handlebars->11->1034",
+ "default-mobile.handlebars->11->1035",
"default-mobile.handlebars->11->94",
- "default.handlebars->47->3269",
+ "default.handlebars->47->3270",
"default.handlebars->47->334",
- "default3.handlebars->35->3256",
+ "default3.handlebars->35->3257",
"default3.handlebars->35->331"
]
},
@@ -43836,9 +43836,9 @@
"zh-cht": "無效的網站權限",
"uk": "Хибні дозволи сайту",
"xloc": [
- "default-mobile.handlebars->11->1037",
- "default.handlebars->47->3272",
- "default3.handlebars->35->3259"
+ "default-mobile.handlebars->11->1038",
+ "default.handlebars->47->3273",
+ "default3.handlebars->35->3260"
]
},
{
@@ -43898,8 +43898,8 @@
"zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效",
"uk": "Хибна спроба лоґіну користувача з {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2634",
- "default3.handlebars->35->2630"
+ "default.handlebars->47->2635",
+ "default3.handlebars->35->2631"
]
},
{
@@ -43928,9 +43928,9 @@
"zh-cht": "無效的用戶名",
"uk": "Хибне ім'я користувача",
"xloc": [
- "default-mobile.handlebars->11->1033",
- "default.handlebars->47->3268",
- "default3.handlebars->35->3255"
+ "default-mobile.handlebars->11->1034",
+ "default.handlebars->47->3269",
+ "default3.handlebars->35->3256"
]
},
{
@@ -43985,8 +43985,8 @@
"zh-cht": "使電郵無效",
"uk": "Хибна е-пошта",
"xloc": [
- "default.handlebars->47->2750",
- "default3.handlebars->35->2746"
+ "default.handlebars->47->2751",
+ "default3.handlebars->35->2747"
]
},
{
@@ -44101,8 +44101,8 @@
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"uk": "Коди запрошень можуть використовуватися будь-ким, щоб приєднати пристрої до цієї групи пристроїв за допомогою наступного публічного лінка:",
"xloc": [
- "default.handlebars->47->2434",
- "default3.handlebars->35->2430"
+ "default.handlebars->47->2435",
+ "default3.handlebars->35->2431"
]
},
{
@@ -44160,10 +44160,10 @@
"zh-cht": "邀請",
"uk": "Запросити",
"xloc": [
- "default.handlebars->47->2230",
+ "default.handlebars->47->2231",
"default.handlebars->47->496",
"default.handlebars->47->593",
- "default3.handlebars->35->2225",
+ "default3.handlebars->35->2226",
"default3.handlebars->35->493",
"default3.handlebars->35->590"
]
@@ -44194,19 +44194,19 @@
"zh-cht": "邀請碼",
"uk": "Коди запрошень",
"xloc": [
- "default-mobile.handlebars->11->1031",
- "default.handlebars->47->2210",
- "default.handlebars->47->2422",
- "default.handlebars->47->2433",
- "default.handlebars->47->2435",
- "default.handlebars->47->2440",
- "default.handlebars->47->3266",
- "default3.handlebars->35->2205",
- "default3.handlebars->35->2418",
- "default3.handlebars->35->2429",
- "default3.handlebars->35->2431",
- "default3.handlebars->35->2436",
- "default3.handlebars->35->3253"
+ "default-mobile.handlebars->11->1032",
+ "default.handlebars->47->2211",
+ "default.handlebars->47->2423",
+ "default.handlebars->47->2434",
+ "default.handlebars->47->2436",
+ "default.handlebars->47->2441",
+ "default.handlebars->47->3267",
+ "default3.handlebars->35->2206",
+ "default3.handlebars->35->2419",
+ "default3.handlebars->35->2430",
+ "default3.handlebars->35->2432",
+ "default3.handlebars->35->2437",
+ "default3.handlebars->35->3254"
]
},
{
@@ -44235,8 +44235,8 @@
"zh-cht": "邀請代碼",
"uk": "Код запрошення",
"xloc": [
- "default.handlebars->47->2691",
- "default3.handlebars->35->2687"
+ "default.handlebars->47->2692",
+ "default3.handlebars->35->2688"
]
},
{
@@ -44295,9 +44295,9 @@
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
"uk": "Запросіть інсталювати MeshAgent у цю групу пристроїв.",
"xloc": [
- "default.handlebars->47->2229",
+ "default.handlebars->47->2230",
"default.handlebars->47->495",
- "default3.handlebars->35->2224",
+ "default3.handlebars->35->2225",
"default3.handlebars->35->492"
]
},
@@ -44358,8 +44358,8 @@
"uk": "Ірландська",
"xloc": [
"default-mobile.handlebars->11->207",
- "default.handlebars->47->1940",
- "default3.handlebars->35->1920",
+ "default.handlebars->47->1941",
+ "default3.handlebars->35->1921",
"login2.handlebars->7->95"
]
},
@@ -44389,8 +44389,8 @@
"zh-cht": "是 \\\"{0}\\\" 的中繼。",
"uk": "Є ретранслятором для \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2677",
- "default3.handlebars->35->2673"
+ "default.handlebars->47->2678",
+ "default3.handlebars->35->2674"
]
},
{
@@ -44400,9 +44400,9 @@
"pl": "Aktywny",
"uk": "Активовано",
"xloc": [
- "default-mobile.handlebars->11->852",
- "default.handlebars->47->1692",
- "default3.handlebars->35->1674"
+ "default-mobile.handlebars->11->853",
+ "default.handlebars->47->1693",
+ "default3.handlebars->35->1675"
]
},
{
@@ -44412,9 +44412,9 @@
"pl": "Włączony",
"uk": "Увімкнено",
"xloc": [
- "default-mobile.handlebars->11->855",
- "default.handlebars->47->1695",
- "default3.handlebars->35->1677"
+ "default-mobile.handlebars->11->856",
+ "default.handlebars->47->1696",
+ "default3.handlebars->35->1678"
]
},
{
@@ -44424,9 +44424,9 @@
"pl": "Jest Własnością",
"uk": "Належить",
"xloc": [
- "default-mobile.handlebars->11->858",
- "default.handlebars->47->1698",
- "default3.handlebars->35->1680"
+ "default-mobile.handlebars->11->859",
+ "default.handlebars->47->1699",
+ "default3.handlebars->35->1681"
]
},
{
@@ -44456,8 +44456,8 @@
"uk": "Італійська (стандартна)",
"xloc": [
"default-mobile.handlebars->11->208",
- "default.handlebars->47->1941",
- "default3.handlebars->35->1921",
+ "default.handlebars->47->1942",
+ "default3.handlebars->35->1922",
"login2.handlebars->7->96"
]
},
@@ -44488,8 +44488,8 @@
"uk": "Італійська (Швейцарія)",
"xloc": [
"default-mobile.handlebars->11->209",
- "default.handlebars->47->1942",
- "default3.handlebars->35->1922",
+ "default.handlebars->47->1943",
+ "default3.handlebars->35->1923",
"login2.handlebars->7->97"
]
},
@@ -44555,8 +44555,8 @@
"zh-cht": "JSON",
"uk": "JSON",
"xloc": [
- "default.handlebars->47->2708",
- "default3.handlebars->35->2704"
+ "default.handlebars->47->2709",
+ "default3.handlebars->35->2705"
]
},
{
@@ -44585,11 +44585,11 @@
"zh-cht": "JSON格式",
"uk": "Формат JSON",
"xloc": [
- "default.handlebars->47->2713",
- "default.handlebars->47->2790",
+ "default.handlebars->47->2714",
+ "default.handlebars->47->2791",
"default.handlebars->47->798",
- "default3.handlebars->35->2709",
- "default3.handlebars->35->2785",
+ "default3.handlebars->35->2710",
+ "default3.handlebars->35->2786",
"default3.handlebars->35->795"
]
},
@@ -44599,8 +44599,8 @@
"nl": "Het JSON bestandsformaat is als volgt:",
"uk": "Формат файлу JSON наведено далі:",
"xloc": [
- "default.handlebars->47->2773",
- "default3.handlebars->35->2768"
+ "default.handlebars->47->2774",
+ "default3.handlebars->35->2769"
]
},
{
@@ -44630,8 +44630,8 @@
"uk": "Японська",
"xloc": [
"default-mobile.handlebars->11->210",
- "default.handlebars->47->1943",
- "default3.handlebars->35->1923",
+ "default.handlebars->47->1944",
+ "default3.handlebars->35->1924",
"login2.handlebars->7->98"
]
},
@@ -44646,10 +44646,10 @@
"pl": "Dołącz do tego serwera Discord aby dostawac powiadomienia.",
"uk": "японська",
"xloc": [
- "default.handlebars->47->1801",
- "default.handlebars->47->3033",
- "default3.handlebars->35->1782",
- "default3.handlebars->35->3026"
+ "default.handlebars->47->1802",
+ "default.handlebars->47->3034",
+ "default3.handlebars->35->1783",
+ "default3.handlebars->35->3027"
]
},
{
@@ -44678,8 +44678,8 @@
"zh-cht": "已加入桌面Multiplex會話",
"uk": "Приєднався до мультиплексного сеансу стільниці",
"xloc": [
- "default.handlebars->47->2528",
- "default3.handlebars->35->2524"
+ "default.handlebars->47->2529",
+ "default3.handlebars->35->2525"
]
},
{
@@ -44708,15 +44708,15 @@
"zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"",
"uk": "Приєднався до мультиплексного сеансу стільниці \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2667",
- "default3.handlebars->35->2663"
+ "default.handlebars->47->2668",
+ "default3.handlebars->35->2664"
]
},
{
"en": "Journal",
"nl": "Logging",
"xloc": [
- "default3.handlebars->35->2076"
+ "default3.handlebars->35->2077"
]
},
{
@@ -44776,8 +44776,8 @@
"uk": "Каннада",
"xloc": [
"default-mobile.handlebars->11->211",
- "default.handlebars->47->1944",
- "default3.handlebars->35->1924",
+ "default.handlebars->47->1945",
+ "default3.handlebars->35->1925",
"login2.handlebars->7->99"
]
},
@@ -44808,8 +44808,8 @@
"uk": "Кашмір",
"xloc": [
"default-mobile.handlebars->11->212",
- "default.handlebars->47->1945",
- "default3.handlebars->35->1925",
+ "default.handlebars->47->1946",
+ "default3.handlebars->35->1926",
"login2.handlebars->7->100"
]
},
@@ -44840,8 +44840,8 @@
"uk": "Казахська",
"xloc": [
"default-mobile.handlebars->11->213",
- "default.handlebars->47->1946",
- "default3.handlebars->35->1926",
+ "default.handlebars->47->1947",
+ "default3.handlebars->35->1927",
"login2.handlebars->7->101"
]
},
@@ -44871,8 +44871,8 @@
"zh-cht": "保留現有密碼",
"uk": "Зберегти існуючий пароль",
"xloc": [
- "default.handlebars->47->2280",
- "default3.handlebars->35->2273"
+ "default.handlebars->47->2281",
+ "default3.handlebars->35->2274"
]
},
{
@@ -44901,8 +44901,8 @@
"zh-cht": "內核驅動器",
"uk": "Драйвер ядра",
"xloc": [
- "default.handlebars->47->1466",
- "default3.handlebars->35->1452"
+ "default.handlebars->47->1467",
+ "default3.handlebars->35->1453"
]
},
{
@@ -44932,8 +44932,8 @@
"uk": "Файл Ключа",
"xloc": [
"default-mobile.handlebars->11->694",
- "default.handlebars->47->1508",
- "default3.handlebars->35->1493",
+ "default.handlebars->47->1509",
+ "default3.handlebars->35->1494",
"ssh.handlebars->3->15"
]
},
@@ -44963,10 +44963,10 @@
"zh-cht": "鍵名",
"uk": "Назва Ключа",
"xloc": [
- "default.handlebars->47->1837",
- "default.handlebars->47->1840",
- "default3.handlebars->35->1817",
- "default3.handlebars->35->1820"
+ "default.handlebars->47->1838",
+ "default.handlebars->47->1841",
+ "default3.handlebars->35->1818",
+ "default3.handlebars->35->1821"
]
},
{
@@ -44996,8 +44996,8 @@
"uk": "Пароль Ключа",
"xloc": [
"default-mobile.handlebars->11->696",
- "default.handlebars->47->1510",
- "default3.handlebars->35->1495",
+ "default.handlebars->47->1511",
+ "default3.handlebars->35->1496",
"ssh.handlebars->3->17"
]
},
@@ -45028,8 +45028,8 @@
"uk": "Файл ключа мусить бути у форматі OpenSSH.",
"xloc": [
"default-mobile.handlebars->11->695",
- "default.handlebars->47->1509",
- "default3.handlebars->35->1494",
+ "default.handlebars->47->1510",
+ "default3.handlebars->35->1495",
"ssh.handlebars->3->16"
]
},
@@ -45086,8 +45086,8 @@
"uk": "Налаштування Комбінацій Клавіш",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1",
- "default.handlebars->47->1440",
- "default3.handlebars->35->1427"
+ "default.handlebars->47->1441",
+ "default3.handlebars->35->1428"
]
},
{
@@ -45116,8 +45116,8 @@
"zh-cht": "鍵盤字符串自定義",
"uk": "Налаштування Рядків Клавіатури",
"xloc": [
- "default.handlebars->47->1445",
- "default3.handlebars->35->1432"
+ "default.handlebars->47->1446",
+ "default3.handlebars->35->1433"
]
},
{
@@ -45173,8 +45173,8 @@
"uk": "Кмерська",
"xloc": [
"default-mobile.handlebars->11->214",
- "default.handlebars->47->1947",
- "default3.handlebars->35->1927",
+ "default.handlebars->47->1948",
+ "default3.handlebars->35->1928",
"login2.handlebars->7->102"
]
},
@@ -45204,8 +45204,8 @@
"zh-cht": "殺死進程{0}",
"uk": "Процес {0} Завершено",
"xloc": [
- "default.handlebars->47->2543",
- "default3.handlebars->35->2539"
+ "default.handlebars->47->2544",
+ "default3.handlebars->35->2540"
]
},
{
@@ -45246,8 +45246,8 @@
"uk": "Киргизька",
"xloc": [
"default-mobile.handlebars->11->215",
- "default.handlebars->47->1948",
- "default3.handlebars->35->1928",
+ "default.handlebars->47->1949",
+ "default3.handlebars->35->1929",
"login2.handlebars->7->103"
]
},
@@ -45278,8 +45278,8 @@
"uk": "Клінгонська",
"xloc": [
"default-mobile.handlebars->11->216",
- "default.handlebars->47->1949",
- "default3.handlebars->35->1929",
+ "default.handlebars->47->1950",
+ "default3.handlebars->35->1930",
"login2.handlebars->7->104"
]
},
@@ -45309,9 +45309,9 @@
"zh-cht": "已知的",
"uk": "Відоме як",
"xloc": [
- "default-mobile.handlebars->11->833",
- "default.handlebars->47->1673",
- "default3.handlebars->35->1655"
+ "default-mobile.handlebars->11->834",
+ "default.handlebars->47->1674",
+ "default3.handlebars->35->1656"
]
},
{
@@ -45341,8 +45341,8 @@
"uk": "Корейська",
"xloc": [
"default-mobile.handlebars->11->217",
- "default.handlebars->47->1950",
- "default3.handlebars->35->1930",
+ "default.handlebars->47->1951",
+ "default3.handlebars->35->1931",
"login2.handlebars->7->105"
]
},
@@ -45373,8 +45373,8 @@
"uk": "Корейська (Північна Корея)",
"xloc": [
"default-mobile.handlebars->11->218",
- "default.handlebars->47->1951",
- "default3.handlebars->35->1931",
+ "default.handlebars->47->1952",
+ "default3.handlebars->35->1932",
"login2.handlebars->7->106"
]
},
@@ -45405,8 +45405,8 @@
"uk": "Корейська (Південна Корея)",
"xloc": [
"default-mobile.handlebars->11->219",
- "default.handlebars->47->1952",
- "default3.handlebars->35->1932",
+ "default.handlebars->47->1953",
+ "default3.handlebars->35->1933",
"login2.handlebars->7->107"
]
},
@@ -45436,10 +45436,10 @@
"zh-cht": "如果",
"uk": "LF",
"xloc": [
- "default.handlebars->47->1495",
- "default.handlebars->47->1526",
- "default3.handlebars->35->1480",
- "default3.handlebars->35->1511",
+ "default.handlebars->47->1496",
+ "default.handlebars->47->1527",
+ "default3.handlebars->35->1481",
+ "default3.handlebars->35->1512",
"sharing.handlebars->11->26",
"sharing.handlebars->11->40"
]
@@ -45471,8 +45471,8 @@
"uk": "Мова",
"xloc": [
"default-mobile.handlebars->11->314",
- "default.handlebars->47->2047",
- "default3.handlebars->35->2027"
+ "default.handlebars->47->2048",
+ "default3.handlebars->35->2028"
]
},
{
@@ -45557,8 +45557,8 @@
"zh-cht": "大焦點",
"uk": "Великий Фокус",
"xloc": [
- "default.handlebars->47->1412",
- "default3.handlebars->35->1399"
+ "default.handlebars->47->1413",
+ "default3.handlebars->35->1400"
]
},
{
@@ -45753,9 +45753,9 @@
"zh-cht": "過去30天",
"uk": "Останні 30 днів",
"xloc": [
- "default.handlebars->47->3174",
+ "default.handlebars->47->3175",
"default.handlebars->container->column_l->p40->3->1->p40time->9",
- "default3.handlebars->35->3161",
+ "default3.handlebars->35->3162",
"default3.handlebars->container->column_l->p40->3->3->p40time->9"
]
},
@@ -45855,8 +45855,8 @@
"zh-cht": "過去 7 天",
"uk": "Останні 7 днів",
"xloc": [
- "default.handlebars->47->3173",
- "default3.handlebars->35->3160"
+ "default.handlebars->47->3174",
+ "default3.handlebars->35->3161"
]
},
{
@@ -45915,8 +45915,8 @@
"zh-cht": "最後訪問",
"uk": "Останній Доступ",
"xloc": [
- "default.handlebars->47->2721",
- "default3.handlebars->35->2717"
+ "default.handlebars->47->2722",
+ "default3.handlebars->35->2718"
]
},
{
@@ -45929,14 +45929,14 @@
"default-mobile.handlebars->11->754",
"default-mobile.handlebars->11->755",
"default-mobile.handlebars->11->756",
- "default.handlebars->47->1612",
"default.handlebars->47->1613",
"default.handlebars->47->1614",
+ "default.handlebars->47->1615",
"default.handlebars->47->353",
"default.handlebars->47->385",
- "default3.handlebars->35->1596",
"default3.handlebars->35->1597",
"default3.handlebars->35->1598",
+ "default3.handlebars->35->1599",
"default3.handlebars->35->350",
"default3.handlebars->35->382"
]
@@ -45967,8 +45967,8 @@
"zh-cht": "最後一天",
"uk": "Останній День",
"xloc": [
- "default.handlebars->47->3172",
- "default3.handlebars->35->3159"
+ "default.handlebars->47->3173",
+ "default3.handlebars->35->3160"
]
},
{
@@ -45997,8 +45997,8 @@
"zh-cht": "上次登入",
"uk": "Останній вхід",
"xloc": [
- "default.handlebars->47->2964",
- "default3.handlebars->35->2957"
+ "default.handlebars->47->2965",
+ "default3.handlebars->35->2958"
]
},
{
@@ -46061,8 +46061,8 @@
"zh-cht": "上次訪問:{0}",
"uk": "Останній доступ: {0}",
"xloc": [
- "default.handlebars->47->2731",
- "default3.handlebars->35->2727"
+ "default.handlebars->47->2732",
+ "default3.handlebars->35->2728"
]
},
{
@@ -46091,21 +46091,21 @@
"zh-cht": "上次代理地址",
"uk": "IP-адреса агента востаннє",
"xloc": [
- "default-mobile.handlebars->11->790",
"default-mobile.handlebars->11->791",
"default-mobile.handlebars->11->792",
+ "default-mobile.handlebars->11->793",
"default.handlebars->47->154",
"default.handlebars->47->156",
"default.handlebars->47->158",
- "default.handlebars->47->1620",
"default.handlebars->47->1621",
"default.handlebars->47->1622",
+ "default.handlebars->47->1623",
"default3.handlebars->35->154",
"default3.handlebars->35->156",
"default3.handlebars->35->158",
- "default3.handlebars->35->1604",
"default3.handlebars->35->1605",
- "default3.handlebars->35->1606"
+ "default3.handlebars->35->1606",
+ "default3.handlebars->35->1607"
]
},
{
@@ -46134,14 +46134,14 @@
"zh-cht": "上次代理連接",
"uk": "Підключення агента востаннє",
"xloc": [
- "default-mobile.handlebars->11->787",
- "default-mobile.handlebars->11->789",
+ "default-mobile.handlebars->11->788",
+ "default-mobile.handlebars->11->790",
"default.handlebars->47->153",
- "default.handlebars->47->1617",
- "default.handlebars->47->1619",
+ "default.handlebars->47->1618",
+ "default.handlebars->47->1620",
"default3.handlebars->35->153",
- "default3.handlebars->35->1601",
- "default3.handlebars->35->1603"
+ "default3.handlebars->35->1602",
+ "default3.handlebars->35->1604"
]
},
{
@@ -46170,8 +46170,8 @@
"zh-cht": "上次更改:{0}",
"uk": "Останні зміни: {0}",
"xloc": [
- "default.handlebars->47->2968",
- "default3.handlebars->35->2961"
+ "default.handlebars->47->2969",
+ "default3.handlebars->35->2962"
]
},
{
@@ -46186,8 +46186,8 @@
"pl": "Zapisy czasu ostatnich połączeń",
"uk": "Записи часу останнього підключення",
"xloc": [
- "default.handlebars->47->3237",
- "default3.handlebars->35->3224"
+ "default.handlebars->47->3238",
+ "default3.handlebars->35->3225"
]
},
{
@@ -46276,8 +46276,8 @@
"zh-cht": "上次登入:{0}",
"uk": "Минулий вхід: {0}",
"xloc": [
- "default.handlebars->47->2732",
- "default3.handlebars->35->2728"
+ "default.handlebars->47->2733",
+ "default3.handlebars->35->2729"
]
},
{
@@ -46306,9 +46306,9 @@
"zh-cht": "最後一次發現:",
"uk": "Нещодавно був:",
"xloc": [
- "default.handlebars->47->1075",
+ "default.handlebars->47->1076",
"default.handlebars->47->120",
- "default3.handlebars->35->1072",
+ "default3.handlebars->35->1073",
"default3.handlebars->35->120"
]
},
@@ -46455,8 +46455,8 @@
"uk": "Латиниця",
"xloc": [
"default-mobile.handlebars->11->220",
- "default.handlebars->47->1953",
- "default3.handlebars->35->1933",
+ "default.handlebars->47->1954",
+ "default3.handlebars->35->1934",
"login2.handlebars->7->108"
]
},
@@ -46487,8 +46487,8 @@
"uk": "Латиська",
"xloc": [
"default-mobile.handlebars->11->221",
- "default.handlebars->47->1954",
- "default3.handlebars->35->1934",
+ "default.handlebars->47->1955",
+ "default3.handlebars->35->1935",
"login2.handlebars->7->109"
]
},
@@ -46518,8 +46518,8 @@
"zh-cht": "啟動MeshCentral路由器",
"uk": "Запустити MeshCentral Router",
"xloc": [
- "default.handlebars->47->1333",
- "default3.handlebars->35->1321"
+ "default.handlebars->47->1334",
+ "default3.handlebars->35->1322"
]
},
{
@@ -46574,8 +46574,8 @@
"zh-cht": "啟動基於Web的RDP連接到此裝置",
"uk": "Розпочати веб-сеанс RDP на цьому пристрої",
"xloc": [
- "default.handlebars->47->1055",
- "default3.handlebars->35->1052"
+ "default.handlebars->47->1056",
+ "default3.handlebars->35->1053"
]
},
{
@@ -46604,8 +46604,8 @@
"zh-cht": "啟動到此設備的基於 Web 的 SSH 會話",
"uk": "Розпочати веб-сеанс SSH на цьому пристрої",
"xloc": [
- "default.handlebars->47->1057",
- "default3.handlebars->35->1054"
+ "default.handlebars->47->1058",
+ "default3.handlebars->35->1055"
]
},
{
@@ -46634,8 +46634,8 @@
"zh-cht": "向此設備啟動基於 Web 的 VNC 會話",
"uk": "Розпочати веб-сеанс VNC на цьому пристрої",
"xloc": [
- "default.handlebars->47->1053",
- "default3.handlebars->35->1050"
+ "default.handlebars->47->1054",
+ "default3.handlebars->35->1051"
]
},
{
@@ -46664,8 +46664,8 @@
"zh-cht": "如沒有請留空。",
"uk": "Залиште поле порожнім",
"xloc": [
- "default.handlebars->47->3018",
- "default3.handlebars->35->3011"
+ "default.handlebars->47->3019",
+ "default3.handlebars->35->3012"
]
},
{
@@ -46695,8 +46695,8 @@
"uk": "Ліворуч",
"xloc": [
"default-mobile.handlebars->11->662",
- "default.handlebars->47->1425",
- "default3.handlebars->35->1412"
+ "default.handlebars->47->1426",
+ "default3.handlebars->35->1413"
]
},
{
@@ -46725,8 +46725,8 @@
"zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。",
"uk": "Залишити сеанс Web-RDP \\\"{1}\\\" через {0} секунд(и).",
"xloc": [
- "default.handlebars->47->2649",
- "default3.handlebars->35->2645"
+ "default.handlebars->47->2650",
+ "default3.handlebars->35->2646"
]
},
{
@@ -46781,8 +46781,8 @@
"zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。",
"uk": "Залишити сеанс Web-SFTP \\\"{1}\\\" через {0} секунд(и).",
"xloc": [
- "default.handlebars->47->2648",
- "default3.handlebars->35->2644"
+ "default.handlebars->47->2649",
+ "default3.handlebars->35->2645"
]
},
{
@@ -46837,8 +46837,8 @@
"zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。",
"uk": "Залишити сеанс Web-SSH \\\"{1}\\\" через {0} секунд(и).",
"xloc": [
- "default.handlebars->47->2647",
- "default3.handlebars->35->2643"
+ "default.handlebars->47->2648",
+ "default3.handlebars->35->2644"
]
},
{
@@ -46893,8 +46893,8 @@
"zh-cht": "{0} 秒後離開 Web-VNC 會話。",
"uk": "Залишити сеанс Web-VNC через {0} секунд(и).",
"xloc": [
- "default.handlebars->47->2650",
- "default3.handlebars->35->2646"
+ "default.handlebars->47->2651",
+ "default3.handlebars->35->2647"
]
},
{
@@ -46958,8 +46958,8 @@
"zh-cht": "離開桌面多路復用會話",
"uk": "Припинити мультиплексний сеанс стільниці",
"xloc": [
- "default.handlebars->47->2529",
- "default3.handlebars->35->2525"
+ "default.handlebars->47->2530",
+ "default3.handlebars->35->2526"
]
},
{
@@ -46988,8 +46988,8 @@
"zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。",
"uk": "Припинення мультиплексного сеансу \\\"{0}\\\" через {1} секунд(и).",
"xloc": [
- "default.handlebars->47->2668",
- "default3.handlebars->35->2664"
+ "default.handlebars->47->2669",
+ "default3.handlebars->35->2665"
]
},
{
@@ -47018,8 +47018,8 @@
"zh-cht": "{0} 秒後離開桌面多路復用會話。",
"uk": "Припинення мультиплексного сеансу стільниці через {0} секунд(и).",
"xloc": [
- "default.handlebars->47->2646",
- "default3.handlebars->35->2642"
+ "default.handlebars->47->2647",
+ "default3.handlebars->35->2643"
]
},
{
@@ -47048,8 +47048,8 @@
"zh-cht": "長度",
"uk": "Довжина",
"xloc": [
- "default.handlebars->47->3187",
- "default3.handlebars->35->3174"
+ "default.handlebars->47->3188",
+ "default3.handlebars->35->3175"
]
},
{
@@ -47135,10 +47135,10 @@
"zh-cht": "限制事件",
"uk": "Обмеження подій",
"xloc": [
- "default.handlebars->47->1140",
- "default.handlebars->47->1165",
- "default3.handlebars->35->1135",
- "default3.handlebars->35->1160"
+ "default.handlebars->47->1141",
+ "default.handlebars->47->1166",
+ "default3.handlebars->35->1136",
+ "default3.handlebars->35->1161"
]
},
{
@@ -47197,13 +47197,13 @@
"zh-cht": "有限輸入",
"uk": "Обмежене Введення",
"xloc": [
- "default-mobile.handlebars->11->1008",
- "default.handlebars->47->1132",
- "default.handlebars->47->1157",
- "default.handlebars->47->2401",
- "default3.handlebars->35->1127",
- "default3.handlebars->35->1152",
- "default3.handlebars->35->2397"
+ "default-mobile.handlebars->11->1009",
+ "default.handlebars->47->1133",
+ "default.handlebars->47->1158",
+ "default.handlebars->47->2402",
+ "default3.handlebars->35->1128",
+ "default3.handlebars->35->1153",
+ "default3.handlebars->35->2398"
]
},
{
@@ -47232,32 +47232,32 @@
"zh-cht": "僅有限輸入",
"uk": "Лише Обмежені Можливості Вводу",
"xloc": [
- "default-mobile.handlebars->11->981",
- "default.handlebars->47->2354",
- "default3.handlebars->35->2350"
+ "default-mobile.handlebars->11->982",
+ "default.handlebars->47->2355",
+ "default3.handlebars->35->2351"
]
},
{
"en": "Line Break: Linux (LF)",
"xloc": [
- "default.handlebars->47->1592",
- "default3.handlebars->35->1576",
+ "default.handlebars->47->1593",
+ "default3.handlebars->35->1577",
"sharing.handlebars->11->92"
]
},
{
"en": "Line Break: Mac (CR)",
"xloc": [
- "default.handlebars->47->1593",
- "default3.handlebars->35->1577",
+ "default.handlebars->47->1594",
+ "default3.handlebars->35->1578",
"sharing.handlebars->11->93"
]
},
{
"en": "Line Break: Windows (CR LF)",
"xloc": [
- "default.handlebars->47->1591",
- "default3.handlebars->35->1575",
+ "default.handlebars->47->1592",
+ "default3.handlebars->35->1576",
"sharing.handlebars->11->91"
]
},
@@ -47700,8 +47700,8 @@
"zh-cht": "Linux ARM,Raspberry Pi(32位)",
"uk": "Linux ARM, Raspberry Pi (32біт)",
"xloc": [
- "default.handlebars->47->1342",
- "default3.handlebars->35->1330"
+ "default.handlebars->47->1343",
+ "default3.handlebars->35->1331"
]
},
{
@@ -47730,8 +47730,8 @@
"zh-cht": "Linux ARM, Raspberry Pi (64位)",
"uk": "Linux ARM, Raspberry Pi (64біт)",
"xloc": [
- "default.handlebars->47->1343",
- "default3.handlebars->35->1331"
+ "default.handlebars->47->1344",
+ "default3.handlebars->35->1332"
]
},
{
@@ -47767,9 +47767,9 @@
"zh-cht": "Linux MeshAgent",
"uk": "Linux MeshAgent",
"xloc": [
- "default.handlebars->47->2426",
+ "default.handlebars->47->2427",
"default.handlebars->47->584",
- "default3.handlebars->35->2422",
+ "default3.handlebars->35->2423",
"default3.handlebars->35->581"
]
},
@@ -47983,8 +47983,8 @@
"zh-cht": "Linux x86(32位)",
"uk": "Linux x86 (32біт)",
"xloc": [
- "default.handlebars->47->1339",
- "default3.handlebars->35->1327"
+ "default.handlebars->47->1340",
+ "default3.handlebars->35->1328"
]
},
{
@@ -48013,8 +48013,8 @@
"zh-cht": "Linux x86(64位)",
"uk": "Linux x86_64 (64біт)",
"xloc": [
- "default.handlebars->47->1338",
- "default3.handlebars->35->1326"
+ "default.handlebars->47->1339",
+ "default3.handlebars->35->1327"
]
},
{
@@ -48044,9 +48044,9 @@
"uk": "Командна Оболонка Linux/BSD/macOS",
"xloc": [
"default-mobile.handlebars->11->610",
- "default.handlebars->47->1278",
+ "default.handlebars->47->1279",
"default.handlebars->47->810",
- "default3.handlebars->35->1273",
+ "default3.handlebars->35->1274",
"default3.handlebars->35->807"
]
},
@@ -48140,7 +48140,7 @@
{
"en": "Litera",
"xloc": [
- "default3.handlebars->35->2077"
+ "default3.handlebars->35->2078"
]
},
{
@@ -48170,8 +48170,8 @@
"uk": "Литовська",
"xloc": [
"default-mobile.handlebars->11->222",
- "default.handlebars->47->1955",
- "default3.handlebars->35->1935",
+ "default.handlebars->47->1956",
+ "default3.handlebars->35->1936",
"login2.handlebars->7->110"
]
},
@@ -48233,19 +48233,19 @@
"xloc": [
"default-mobile.handlebars->11->319",
"default-mobile.handlebars->11->99",
- "default.handlebars->47->1328",
- "default.handlebars->47->1779",
- "default.handlebars->47->1826",
- "default.handlebars->47->2154",
- "default.handlebars->47->2158",
- "default.handlebars->47->2161",
- "default.handlebars->47->3070",
- "default.handlebars->47->3119",
- "default3.handlebars->35->1318",
- "default3.handlebars->35->1807",
- "default3.handlebars->35->2151",
- "default3.handlebars->35->2155",
- "default3.handlebars->35->3106"
+ "default.handlebars->47->1329",
+ "default.handlebars->47->1780",
+ "default.handlebars->47->1827",
+ "default.handlebars->47->2155",
+ "default.handlebars->47->2159",
+ "default.handlebars->47->2162",
+ "default.handlebars->47->3071",
+ "default.handlebars->47->3120",
+ "default3.handlebars->35->1319",
+ "default3.handlebars->35->1808",
+ "default3.handlebars->35->2152",
+ "default3.handlebars->35->2156",
+ "default3.handlebars->35->3107"
]
},
{
@@ -48389,11 +48389,11 @@
"zh-cht": "本地設備,無代理",
"uk": "Локальні пристрої, без агента",
"xloc": [
- "default-mobile.handlebars->11->940",
- "default.handlebars->47->2103",
- "default.handlebars->47->2168",
- "default3.handlebars->35->2102",
- "default3.handlebars->35->2163"
+ "default-mobile.handlebars->11->941",
+ "default.handlebars->47->2104",
+ "default.handlebars->47->2169",
+ "default3.handlebars->35->2103",
+ "default3.handlebars->35->2164"
]
},
{
@@ -48513,8 +48513,8 @@
"zh-cht": "本地用戶接受的遠程終端請求",
"uk": "Локальний користувач прийняв запит віддаленого терміналу",
"xloc": [
- "default.handlebars->47->2551",
- "default3.handlebars->35->2547"
+ "default.handlebars->47->2552",
+ "default3.handlebars->35->2548"
]
},
{
@@ -48543,8 +48543,8 @@
"zh-cht": "本地用戶拒絕了遠程終端請求",
"uk": "Локальний користувач відхилив запит віддаленого терміналу",
"xloc": [
- "default.handlebars->47->2552",
- "default3.handlebars->35->2548"
+ "default.handlebars->47->2553",
+ "default3.handlebars->35->2549"
]
},
{
@@ -48575,9 +48575,9 @@
"xloc": [
"default-mobile.handlebars->11->317",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0",
- "default.handlebars->47->2050",
+ "default.handlebars->47->2051",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->11",
- "default3.handlebars->35->2030",
+ "default3.handlebars->35->2031",
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->9"
]
},
@@ -48607,8 +48607,8 @@
"zh-cht": "位置",
"uk": "Локація",
"xloc": [
- "default.handlebars->47->1039",
- "default3.handlebars->35->1036"
+ "default.handlebars->47->1040",
+ "default3.handlebars->35->1037"
]
},
{
@@ -48667,8 +48667,8 @@
"zh-cht": "鎖定賬戶",
"uk": "Заблокувати Акаунт",
"xloc": [
- "default.handlebars->47->2830",
- "default3.handlebars->35->2823"
+ "default.handlebars->47->2831",
+ "default3.handlebars->35->2824"
]
},
{
@@ -48697,8 +48697,8 @@
"zh-cht": "鎖定帳戶設置",
"uk": "Заблокувати Налаштування Акаунту",
"xloc": [
- "default.handlebars->47->2834",
- "default3.handlebars->35->2827"
+ "default.handlebars->47->2835",
+ "default3.handlebars->35->2828"
]
},
{
@@ -48728,8 +48728,8 @@
"uk": "Заблокувати Стільницю",
"xloc": [
"default-mobile.handlebars->11->603",
- "default.handlebars->47->1202",
- "default3.handlebars->35->1197"
+ "default.handlebars->47->1203",
+ "default3.handlebars->35->1198"
]
},
{
@@ -48758,8 +48758,8 @@
"zh-cht": "鎖定賬戶",
"uk": "Заблокувати акаунт",
"xloc": [
- "default.handlebars->47->2753",
- "default3.handlebars->35->2749"
+ "default.handlebars->47->2754",
+ "default3.handlebars->35->2750"
]
},
{
@@ -48819,8 +48819,8 @@
"zh-cht": "鎖定遠程用戶的鼠標和鍵盤?",
"uk": "Заблокувати мишу та клавіатуру віддаленого користувача?",
"xloc": [
- "default.handlebars->47->1189",
- "default3.handlebars->35->1184"
+ "default.handlebars->47->1190",
+ "default3.handlebars->35->1185"
]
},
{
@@ -48880,8 +48880,8 @@
"uk": "Заблокувати стільницю користувача?",
"xloc": [
"default-mobile.handlebars->11->604",
- "default.handlebars->47->1203",
- "default3.handlebars->35->1198"
+ "default.handlebars->47->1204",
+ "default3.handlebars->35->1199"
]
},
{
@@ -48910,10 +48910,19 @@
"zh-cht": "已鎖定",
"uk": "Заблоковано",
"xloc": [
- "default.handlebars->47->2733",
- "default3.handlebars->35->2729"
+ "default-mobile.handlebars->11->783",
+ "default.handlebars->47->2734",
+ "default.handlebars->47->965",
+ "default3.handlebars->35->2730",
+ "default3.handlebars->35->962"
]
},
+ {
+ "en": "Locked Active User"
+ },
+ {
+ "en": "Locked Active Users"
+ },
{
"bs": "Zaključan račun",
"ca": "Compte bloquejat",
@@ -48941,13 +48950,13 @@
"uk": "Заблокований акаунт",
"xloc": [
"default-mobile.handlebars->11->93",
- "default.handlebars->47->2924",
- "default.handlebars->47->3215",
- "default.handlebars->47->3254",
+ "default.handlebars->47->2925",
+ "default.handlebars->47->3216",
+ "default.handlebars->47->3255",
"default.handlebars->47->333",
- "default3.handlebars->35->2917",
- "default3.handlebars->35->3202",
- "default3.handlebars->35->3241",
+ "default3.handlebars->35->2918",
+ "default3.handlebars->35->3203",
+ "default3.handlebars->35->3242",
"default3.handlebars->35->330"
]
},
@@ -48977,8 +48986,8 @@
"zh-cht": "將遠程用戶鎖定在桌面之外",
"uk": "Блокування віддаленого користувача на його стільниці",
"xloc": [
- "default.handlebars->47->2577",
- "default3.handlebars->35->2573"
+ "default.handlebars->47->2578",
+ "default3.handlebars->35->2574"
]
},
{
@@ -49007,8 +49016,8 @@
"zh-cht": "記錄事件",
"uk": "Журнал Подій",
"xloc": [
- "default.handlebars->47->1016",
- "default3.handlebars->35->1013"
+ "default.handlebars->47->1017",
+ "default3.handlebars->35->1014"
]
},
{
@@ -49252,8 +49261,8 @@
"zh-cht": "登錄令牌",
"uk": "Токен Лоґіну",
"xloc": [
- "default.handlebars->47->3226",
- "default3.handlebars->35->3213"
+ "default.handlebars->47->3227",
+ "default3.handlebars->35->3214"
]
},
{
@@ -49416,13 +49425,13 @@
{
"en": "Lumen",
"xloc": [
- "default3.handlebars->35->2078"
+ "default3.handlebars->35->2079"
]
},
{
"en": "Lux",
"xloc": [
- "default3.handlebars->35->2079"
+ "default3.handlebars->35->2080"
]
},
{
@@ -49452,8 +49461,8 @@
"uk": "Люксембурзька",
"xloc": [
"default-mobile.handlebars->11->223",
- "default.handlebars->47->1956",
- "default3.handlebars->35->1936",
+ "default.handlebars->47->1957",
+ "default3.handlebars->35->1937",
"login2.handlebars->7->111"
]
},
@@ -49483,16 +49492,16 @@
"zh-cht": "MAC層",
"uk": "MAC рівень",
"xloc": [
- "default-mobile.handlebars->11->803",
- "default-mobile.handlebars->11->805",
- "default.handlebars->47->1633",
- "default.handlebars->47->1635",
- "default.handlebars->47->1643",
- "default.handlebars->47->1645",
- "default3.handlebars->35->1617",
- "default3.handlebars->35->1619",
- "default3.handlebars->35->1627",
- "default3.handlebars->35->1629"
+ "default-mobile.handlebars->11->804",
+ "default-mobile.handlebars->11->806",
+ "default.handlebars->47->1634",
+ "default.handlebars->47->1636",
+ "default.handlebars->47->1644",
+ "default.handlebars->47->1646",
+ "default3.handlebars->35->1618",
+ "default3.handlebars->35->1620",
+ "default3.handlebars->35->1628",
+ "default3.handlebars->35->1630"
]
},
{
@@ -49553,11 +49562,11 @@
"zh-cht": "MAC:{0}",
"uk": "MAC: {0}",
"xloc": [
- "default-mobile.handlebars->11->806",
- "default.handlebars->47->1636",
- "default.handlebars->47->1646",
- "default3.handlebars->35->1620",
- "default3.handlebars->35->1630"
+ "default-mobile.handlebars->11->807",
+ "default.handlebars->47->1637",
+ "default.handlebars->47->1647",
+ "default3.handlebars->35->1621",
+ "default3.handlebars->35->1631"
]
},
{
@@ -49586,11 +49595,11 @@
"zh-cht": "MAC:{0},網關:{1}",
"uk": "MAC: {0}, шлюз: {1}",
"xloc": [
- "default-mobile.handlebars->11->804",
- "default.handlebars->47->1634",
- "default.handlebars->47->1644",
- "default3.handlebars->35->1618",
- "default3.handlebars->35->1628"
+ "default-mobile.handlebars->11->805",
+ "default.handlebars->47->1635",
+ "default.handlebars->47->1645",
+ "default3.handlebars->35->1619",
+ "default3.handlebars->35->1629"
]
},
{
@@ -49770,20 +49779,20 @@
"xloc": [
"default-mobile.handlebars->11->479",
"default-mobile.handlebars->11->536",
- "default-mobile.handlebars->11->922",
- "default-mobile.handlebars->11->924",
+ "default-mobile.handlebars->11->923",
+ "default-mobile.handlebars->11->925",
"default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2",
- "default.handlebars->47->1763",
- "default.handlebars->47->1765",
+ "default.handlebars->47->1764",
+ "default.handlebars->47->1766",
"default.handlebars->47->423",
"default.handlebars->47->729",
- "default.handlebars->47->995",
+ "default.handlebars->47->996",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2",
- "default3.handlebars->35->1745",
- "default3.handlebars->35->1747",
+ "default3.handlebars->35->1746",
+ "default3.handlebars->35->1748",
"default3.handlebars->35->420",
"default3.handlebars->35->726",
- "default3.handlebars->35->992",
+ "default3.handlebars->35->993",
"default3.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2"
]
},
@@ -49843,8 +49852,8 @@
"zh-cht": "MQTT登入",
"uk": "Вхід у MQTT",
"xloc": [
- "default.handlebars->47->1060",
- "default3.handlebars->35->1057"
+ "default.handlebars->47->1061",
+ "default3.handlebars->35->1058"
]
},
{
@@ -49874,8 +49883,8 @@
"uk": "Підключено канал MQTT",
"xloc": [
"default-mobile.handlebars->11->566",
- "default.handlebars->47->1074",
- "default3.handlebars->35->1071"
+ "default.handlebars->47->1075",
+ "default3.handlebars->35->1072"
]
},
{
@@ -49904,9 +49913,9 @@
"zh-cht": "MQTT已連接",
"uk": "MQTT підключено",
"xloc": [
- "default.handlebars->47->1073",
+ "default.handlebars->47->1074",
"default.handlebars->47->269",
- "default3.handlebars->35->1070",
+ "default3.handlebars->35->1071",
"default3.handlebars->35->266"
]
},
@@ -49938,10 +49947,10 @@
"xloc": [
"default.handlebars->47->422",
"default.handlebars->47->728",
- "default.handlebars->47->994",
+ "default.handlebars->47->995",
"default3.handlebars->35->419",
"default3.handlebars->35->725",
- "default3.handlebars->35->991"
+ "default3.handlebars->35->992"
]
},
{
@@ -50136,7 +50145,7 @@
"zh-cht": "macOS 安裝程序",
"uk": "Інсталятор MacOS",
"xloc": [
- "default.handlebars->47->1331"
+ "default.handlebars->47->1332"
]
},
{
@@ -50165,9 +50174,9 @@
"zh-cht": "MacOS MeshAgent",
"uk": "MacOS MeshAgent",
"xloc": [
- "default.handlebars->47->2427",
+ "default.handlebars->47->2428",
"default.handlebars->47->585",
- "default3.handlebars->35->2423",
+ "default3.handlebars->35->2424",
"default3.handlebars->35->582"
]
},
@@ -50227,8 +50236,8 @@
"zh-cht": "主伺服器訊息",
"uk": "Повідомлення Головного Сервера",
"xloc": [
- "default.handlebars->47->3370",
- "default3.handlebars->35->3357"
+ "default.handlebars->47->3371",
+ "default3.handlebars->35->3358"
]
},
{
@@ -50258,8 +50267,8 @@
"uk": "Малайська",
"xloc": [
"default-mobile.handlebars->11->225",
- "default.handlebars->47->1958",
- "default3.handlebars->35->1938",
+ "default.handlebars->47->1959",
+ "default3.handlebars->35->1939",
"login2.handlebars->7->113"
]
},
@@ -50290,8 +50299,8 @@
"uk": "Малаялам",
"xloc": [
"default-mobile.handlebars->11->226",
- "default.handlebars->47->1959",
- "default3.handlebars->35->1939",
+ "default.handlebars->47->1960",
+ "default3.handlebars->35->1940",
"login2.handlebars->7->114"
]
},
@@ -50322,8 +50331,8 @@
"uk": "Мальтійська",
"xloc": [
"default-mobile.handlebars->11->227",
- "default.handlebars->47->1960",
- "default3.handlebars->35->1940",
+ "default.handlebars->47->1961",
+ "default3.handlebars->35->1941",
"login2.handlebars->7->115"
]
},
@@ -50354,8 +50363,8 @@
"uk": "Керувати Світлиною Акаунту",
"xloc": [
"default-mobile.handlebars->11->100",
- "default.handlebars->47->1780",
- "default3.handlebars->35->1761"
+ "default.handlebars->47->1781",
+ "default3.handlebars->35->1762"
]
},
{
@@ -50415,12 +50424,12 @@
"zh-cht": "管理裝置群電腦",
"uk": "Керувати Комп'ютерами Групи Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->978",
- "default-mobile.handlebars->11->998",
- "default.handlebars->47->2351",
- "default.handlebars->47->2390",
- "default3.handlebars->35->2347",
- "default3.handlebars->35->2386"
+ "default-mobile.handlebars->11->979",
+ "default-mobile.handlebars->11->999",
+ "default.handlebars->47->2352",
+ "default.handlebars->47->2391",
+ "default3.handlebars->35->2348",
+ "default3.handlebars->35->2387"
]
},
{
@@ -50449,12 +50458,12 @@
"zh-cht": "管理裝置群用戶",
"uk": "Керувати Користувачами Групи Пристроїв",
"xloc": [
- "default-mobile.handlebars->11->977",
- "default-mobile.handlebars->11->997",
- "default.handlebars->47->2350",
- "default.handlebars->47->2389",
- "default3.handlebars->35->2346",
- "default3.handlebars->35->2385"
+ "default-mobile.handlebars->11->978",
+ "default-mobile.handlebars->11->998",
+ "default.handlebars->47->2351",
+ "default.handlebars->47->2390",
+ "default3.handlebars->35->2347",
+ "default3.handlebars->35->2386"
]
},
{
@@ -50483,8 +50492,8 @@
"zh-cht": "管理裝置",
"uk": "Керувати Пристроями",
"xloc": [
- "default.handlebars->47->1152",
- "default3.handlebars->35->1147"
+ "default.handlebars->47->1153",
+ "default3.handlebars->35->1148"
]
},
{
@@ -50520,8 +50529,8 @@
"zh-cht": "管理錄音",
"uk": "Керувати Записами",
"xloc": [
- "default.handlebars->47->2828",
- "default3.handlebars->35->2821"
+ "default.handlebars->47->2829",
+ "default3.handlebars->35->2822"
]
},
{
@@ -50580,8 +50589,8 @@
"zh-cht": "管理用戶群",
"uk": "Керувати Групами Користувачів",
"xloc": [
- "default.handlebars->47->2827",
- "default3.handlebars->35->2820"
+ "default.handlebars->47->2828",
+ "default3.handlebars->35->2821"
]
},
{
@@ -50610,10 +50619,10 @@
"zh-cht": "管理用戶",
"uk": "Керувати Користувачами",
"xloc": [
- "default.handlebars->47->1151",
- "default.handlebars->47->2826",
- "default3.handlebars->35->1146",
- "default3.handlebars->35->2819"
+ "default.handlebars->47->1152",
+ "default.handlebars->47->2827",
+ "default3.handlebars->35->1147",
+ "default3.handlebars->35->2820"
]
},
{
@@ -50846,8 +50855,8 @@
"zh-cht": "使用軟體代理進行管理",
"uk": "Керувати за допомогою програмного агента",
"xloc": [
- "default.handlebars->47->2108",
- "default3.handlebars->35->2107"
+ "default.handlebars->47->2109",
+ "default3.handlebars->35->2108"
]
},
{
@@ -50876,9 +50885,9 @@
"zh-cht": "使用軟體代理進行管理",
"uk": "Керується програмним агентом",
"xloc": [
- "default-mobile.handlebars->11->939",
- "default.handlebars->47->2167",
- "default3.handlebars->35->2162"
+ "default-mobile.handlebars->11->940",
+ "default.handlebars->47->2168",
+ "default3.handlebars->35->2163"
]
},
{
@@ -50907,8 +50916,8 @@
"zh-cht": "經理",
"uk": "Менеджер",
"xloc": [
- "default.handlebars->47->2738",
- "default3.handlebars->35->2734"
+ "default.handlebars->47->2739",
+ "default3.handlebars->35->2735"
]
},
{
@@ -50984,9 +50993,9 @@
"pl": "ID Producenta",
"uk": "ID Виробника",
"xloc": [
- "default-mobile.handlebars->11->850",
- "default.handlebars->47->1690",
- "default3.handlebars->35->1672"
+ "default-mobile.handlebars->11->851",
+ "default.handlebars->47->1691",
+ "default3.handlebars->35->1673"
]
},
{
@@ -50996,9 +51005,9 @@
"pl": "Wersja Wydania",
"uk": "Версія Виробника",
"xloc": [
- "default-mobile.handlebars->11->851",
- "default.handlebars->47->1691",
- "default3.handlebars->35->1673"
+ "default-mobile.handlebars->11->852",
+ "default.handlebars->47->1692",
+ "default3.handlebars->35->1674"
]
},
{
@@ -51028,8 +51037,8 @@
"uk": "Маорі",
"xloc": [
"default-mobile.handlebars->11->228",
- "default.handlebars->47->1961",
- "default3.handlebars->35->1941",
+ "default.handlebars->47->1962",
+ "default3.handlebars->35->1942",
"login2.handlebars->7->116"
]
},
@@ -51144,16 +51153,16 @@
"uk": "Маратхі",
"xloc": [
"default-mobile.handlebars->11->229",
- "default.handlebars->47->1962",
- "default3.handlebars->35->1942",
+ "default.handlebars->47->1963",
+ "default3.handlebars->35->1943",
"login2.handlebars->7->117"
]
},
{
"en": "Markdown syntax supported",
"xloc": [
- "default.handlebars->47->1177",
- "default3.handlebars->35->1172"
+ "default.handlebars->47->1178",
+ "default3.handlebars->35->1173"
]
},
{
@@ -51181,15 +51190,15 @@
"zh-cht": "掩碼:{0}",
"uk": "Маска: {0}",
"xloc": [
- "default-mobile.handlebars->11->808",
- "default.handlebars->47->1648",
- "default3.handlebars->35->1632"
+ "default-mobile.handlebars->11->809",
+ "default.handlebars->47->1649",
+ "default3.handlebars->35->1633"
]
},
{
"en": "Materia",
"xloc": [
- "default3.handlebars->35->2080"
+ "default3.handlebars->35->2081"
]
},
{
@@ -51218,8 +51227,8 @@
"zh-cht": "達到連接數量上限",
"uk": "Досягнуто Максимум Сеансів",
"xloc": [
- "default.handlebars->47->3314",
- "default3.handlebars->35->3301"
+ "default.handlebars->47->3315",
+ "default3.handlebars->35->3302"
]
},
{
@@ -51343,11 +51352,11 @@
"zh-cht": "Megabyte",
"uk": "Мегабайти",
"xloc": [
- "default.handlebars->47->3355",
- "default.handlebars->47->3360",
+ "default.handlebars->47->3356",
+ "default.handlebars->47->3361",
"default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7",
- "default3.handlebars->35->3342",
- "default3.handlebars->35->3347",
+ "default3.handlebars->35->3343",
+ "default3.handlebars->35->3348",
"default3.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7"
]
},
@@ -51377,20 +51386,20 @@
"zh-cht": "記憶體",
"uk": "Пам'ять",
"xloc": [
- "default-mobile.handlebars->11->867",
- "default-mobile.handlebars->11->873",
- "default-mobile.handlebars->11->879",
- "default.handlebars->47->1603",
- "default.handlebars->47->1707",
- "default.handlebars->47->1713",
- "default.handlebars->47->1719",
- "default.handlebars->47->3334",
+ "default-mobile.handlebars->11->868",
+ "default-mobile.handlebars->11->874",
+ "default-mobile.handlebars->11->880",
+ "default.handlebars->47->1604",
+ "default.handlebars->47->1708",
+ "default.handlebars->47->1714",
+ "default.handlebars->47->1720",
+ "default.handlebars->47->3335",
"default.handlebars->container->column_l->p40->3->1->p40type->3",
- "default3.handlebars->35->1587",
- "default3.handlebars->35->1689",
- "default3.handlebars->35->1695",
- "default3.handlebars->35->1701",
- "default3.handlebars->35->3321",
+ "default3.handlebars->35->1588",
+ "default3.handlebars->35->1690",
+ "default3.handlebars->35->1696",
+ "default3.handlebars->35->1702",
+ "default3.handlebars->35->3322",
"default3.handlebars->container->column_l->p40->3->3->p40type->3"
]
},
@@ -51423,10 +51432,10 @@
"agentinvite.handlebars->3->14",
"default-mobile.handlebars->11->508",
"default-mobile.handlebars->11->563",
- "default-mobile.handlebars->11->786",
- "default-mobile.handlebars->11->794",
- "default.handlebars->47->1616",
- "default.handlebars->47->1624",
+ "default-mobile.handlebars->11->787",
+ "default-mobile.handlebars->11->795",
+ "default.handlebars->47->1617",
+ "default.handlebars->47->1625",
"default.handlebars->47->616",
"default.handlebars->47->620",
"default.handlebars->47->624",
@@ -51439,9 +51448,9 @@
"default.handlebars->47->678",
"default.handlebars->47->684",
"default.handlebars->47->910",
- "default.handlebars->47->987",
- "default3.handlebars->35->1600",
- "default3.handlebars->35->1608",
+ "default.handlebars->47->988",
+ "default3.handlebars->35->1601",
+ "default3.handlebars->35->1609",
"default3.handlebars->35->613",
"default3.handlebars->35->617",
"default3.handlebars->35->621",
@@ -51454,7 +51463,7 @@
"default3.handlebars->35->675",
"default3.handlebars->35->681",
"default3.handlebars->35->907",
- "default3.handlebars->35->984"
+ "default3.handlebars->35->985"
]
},
{
@@ -51483,9 +51492,9 @@
"zh-cht": "網格代理控制台",
"uk": "Консоль Mesh Agent",
"xloc": [
- "default-mobile.handlebars->11->985",
- "default.handlebars->47->2360",
- "default3.handlebars->35->2356"
+ "default-mobile.handlebars->11->986",
+ "default.handlebars->47->2361",
+ "default3.handlebars->35->2357"
]
},
{
@@ -51566,8 +51575,8 @@
"zh-cht": "Mesh Relay",
"uk": "Mesh Ретрансляція",
"xloc": [
- "default.handlebars->47->993",
- "default3.handlebars->35->990"
+ "default.handlebars->47->994",
+ "default3.handlebars->35->991"
]
},
{
@@ -51598,10 +51607,10 @@
"xloc": [
"default.handlebars->47->414",
"default.handlebars->47->720",
- "default.handlebars->47->986",
+ "default.handlebars->47->987",
"default3.handlebars->35->411",
"default3.handlebars->35->717",
- "default3.handlebars->35->983"
+ "default3.handlebars->35->984"
]
},
{
@@ -51632,10 +51641,10 @@
"xloc": [
"default.handlebars->47->420",
"default.handlebars->47->726",
- "default.handlebars->47->992",
+ "default.handlebars->47->993",
"default3.handlebars->35->417",
"default3.handlebars->35->723",
- "default3.handlebars->35->989"
+ "default3.handlebars->35->990"
]
},
{
@@ -51664,10 +51673,10 @@
"zh-cht": "MeshAction(.txt)",
"uk": "MeshAction (.txt)",
"xloc": [
- "default.handlebars->47->1349",
- "default.handlebars->47->1351",
- "default3.handlebars->35->1337",
- "default3.handlebars->35->1339"
+ "default.handlebars->47->1350",
+ "default.handlebars->47->1352",
+ "default3.handlebars->35->1338",
+ "default3.handlebars->35->1340"
]
},
{
@@ -51696,8 +51705,8 @@
"zh-cht": "MeshAgent流量",
"uk": "Трафік MeshAgent",
"xloc": [
- "default.handlebars->47->3372",
- "default3.handlebars->35->3359"
+ "default.handlebars->47->3373",
+ "default3.handlebars->35->3360"
]
},
{
@@ -51726,8 +51735,8 @@
"zh-cht": "MeshAgent更新",
"uk": "Оновлення MeshAgent",
"xloc": [
- "default.handlebars->47->3373",
- "default3.handlebars->35->3360"
+ "default.handlebars->47->3374",
+ "default3.handlebars->35->3361"
]
},
{
@@ -51756,11 +51765,11 @@
"zh-cht": "網格中心",
"uk": "MeshCentral",
"xloc": [
- "default.handlebars->47->1187",
- "default.handlebars->47->1201",
+ "default.handlebars->47->1188",
+ "default.handlebars->47->1202",
"default.handlebars->47->794",
- "default3.handlebars->35->1182",
- "default3.handlebars->35->1196",
+ "default3.handlebars->35->1183",
+ "default3.handlebars->35->1197",
"default3.handlebars->35->791"
]
},
@@ -51816,11 +51825,11 @@
"zh-cht": "MeshCentral 助手",
"uk": "MeshCentral Асистент",
"xloc": [
- "default.handlebars->47->2428",
+ "default.handlebars->47->2429",
"default.handlebars->47->559",
"default.handlebars->47->586",
"default.handlebars->47->599",
- "default3.handlebars->35->2424",
+ "default3.handlebars->35->2425",
"default3.handlebars->35->556",
"default3.handlebars->35->583",
"default3.handlebars->35->596"
@@ -52025,8 +52034,8 @@
"zh-cht": "MeshCentral Router",
"uk": "MeshCentral Router",
"xloc": [
- "default.handlebars->47->1334",
- "default3.handlebars->35->1322"
+ "default.handlebars->47->1335",
+ "default3.handlebars->35->1323"
]
},
{
@@ -52163,8 +52172,8 @@
"zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。",
"uk": "MeshCentral Router — це інструмент зіставлення TCP-портів Windows. Ви можете, наприклад, підключитися по RDP до віддаленого пристрою через цей сервер.",
"xloc": [
- "default.handlebars->47->1329",
- "default3.handlebars->35->1319"
+ "default.handlebars->47->1330",
+ "default3.handlebars->35->1320"
]
},
{
@@ -52249,8 +52258,8 @@
"zh-cht": "MeshCentral伺服器同級化",
"uk": "Піринг сервера MeshCentral",
"xloc": [
- "default.handlebars->47->3371",
- "default3.handlebars->35->3358"
+ "default.handlebars->47->3372",
+ "default3.handlebars->35->3359"
]
},
{
@@ -52310,10 +52319,10 @@
"xloc": [
"default.handlebars->47->200",
"default.handlebars->47->202",
- "default.handlebars->47->2153",
+ "default.handlebars->47->2154",
"default3.handlebars->35->200",
"default3.handlebars->35->202",
- "default3.handlebars->35->2150"
+ "default3.handlebars->35->2151"
]
},
{
@@ -52342,11 +52351,11 @@
"zh-cht": "MeshCmd",
"uk": "MeshCmd",
"xloc": [
- "default.handlebars->47->1041",
- "default.handlebars->47->1347",
+ "default.handlebars->47->1042",
+ "default.handlebars->47->1348",
"default.handlebars->47->397",
- "default3.handlebars->35->1038",
- "default3.handlebars->35->1335",
+ "default3.handlebars->35->1039",
+ "default3.handlebars->35->1336",
"default3.handlebars->35->394"
]
},
@@ -52376,8 +52385,8 @@
"zh-cht": "MeshCmd(Linux ARM,32位)",
"uk": "MeshCmd (Linux ARM, 32біт)",
"xloc": [
- "default.handlebars->47->1360",
- "default3.handlebars->35->1348"
+ "default.handlebars->47->1361",
+ "default3.handlebars->35->1349"
]
},
{
@@ -52406,8 +52415,8 @@
"zh-cht": "MeshCmd(Linux ARM,64位)",
"uk": "MeshCmd (Linux ARM, 64біт)",
"xloc": [
- "default.handlebars->47->1361",
- "default3.handlebars->35->1349"
+ "default.handlebars->47->1362",
+ "default3.handlebars->35->1350"
]
},
{
@@ -52436,8 +52445,8 @@
"zh-cht": "MeshCmd(Linux x86,32bit)",
"uk": "MeshCmd (Linux x86, 32біт)",
"xloc": [
- "default.handlebars->47->1356",
- "default3.handlebars->35->1344"
+ "default.handlebars->47->1357",
+ "default3.handlebars->35->1345"
]
},
{
@@ -52466,8 +52475,8 @@
"zh-cht": "MeshCmd(Linux x86,64位)",
"uk": "MeshCmd (Linux x86_64, 64біт)",
"xloc": [
- "default.handlebars->47->1357",
- "default3.handlebars->35->1345"
+ "default.handlebars->47->1358",
+ "default3.handlebars->35->1346"
]
},
{
@@ -52479,8 +52488,8 @@
"pl": "MeshCmd (plik wykonywalny Win ARM-64)",
"uk": "MeshCmd (виконуваний файл Win ARM-64)",
"xloc": [
- "default.handlebars->47->1355",
- "default3.handlebars->35->1343"
+ "default.handlebars->47->1356",
+ "default3.handlebars->35->1344"
]
},
{
@@ -52492,8 +52501,8 @@
"pl": "MeshCmd (plik wykonywalny Win x86-32)",
"uk": "MeshCmd (виконуваний файл Win x86 32біт)",
"xloc": [
- "default.handlebars->47->1353",
- "default3.handlebars->35->1341"
+ "default.handlebars->47->1354",
+ "default3.handlebars->35->1342"
]
},
{
@@ -52505,8 +52514,8 @@
"pl": "MeshCmd (plik wykonywalny Win x86-64)",
"uk": "MeshCmd (виконуваний файл Win x86-64)",
"xloc": [
- "default.handlebars->47->1354",
- "default3.handlebars->35->1342"
+ "default.handlebars->47->1355",
+ "default3.handlebars->35->1343"
]
},
{
@@ -52613,8 +52622,8 @@
"zh-cht": "MeshCmd(macOS,ARM-64位)",
"uk": "MeshCmd (macOS, ARM-64біт)",
"xloc": [
- "default.handlebars->47->1359",
- "default3.handlebars->35->1347"
+ "default.handlebars->47->1360",
+ "default3.handlebars->35->1348"
]
},
{
@@ -52643,8 +52652,8 @@
"zh-cht": "MeshCmd(macOS,x86-ARM-64位)",
"uk": "MeshCmd (macOS x86-64)",
"xloc": [
- "default.handlebars->47->1358",
- "default3.handlebars->35->1346"
+ "default.handlebars->47->1359",
+ "default3.handlebars->35->1347"
]
},
{
@@ -52673,8 +52682,8 @@
"zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。",
"uk": "MeshCmd — це утиліта командного рядка, яка виконує багато різних дій. Можна додатково завантажити та відредагувати файл операцій, щоб надати інформацію про сервер та облікові дані.",
"xloc": [
- "default.handlebars->47->1344",
- "default3.handlebars->35->1332"
+ "default.handlebars->47->1345",
+ "default3.handlebars->35->1333"
]
},
{
@@ -52784,15 +52793,15 @@
"zh-cht": "訊息",
"uk": "Повідомлення",
"xloc": [
- "default.handlebars->47->1020",
- "default.handlebars->47->1309",
- "default.handlebars->47->3001",
- "default.handlebars->47->3193",
+ "default.handlebars->47->1021",
+ "default.handlebars->47->1310",
+ "default.handlebars->47->3002",
+ "default.handlebars->47->3194",
"default.handlebars->47->571",
- "default3.handlebars->35->1017",
- "default3.handlebars->35->1300",
- "default3.handlebars->35->2994",
- "default3.handlebars->35->3180",
+ "default3.handlebars->35->1018",
+ "default3.handlebars->35->1301",
+ "default3.handlebars->35->2995",
+ "default3.handlebars->35->3181",
"default3.handlebars->35->568"
]
},
@@ -52822,9 +52831,9 @@
"zh-cht": "留言框",
"uk": "Вікно повідомлення",
"xloc": [
- "default.handlebars->47->1192",
+ "default.handlebars->47->1193",
"default.handlebars->47->773",
- "default3.handlebars->35->1187",
+ "default3.handlebars->35->1188",
"default3.handlebars->35->770"
]
},
@@ -52854,8 +52863,8 @@
"zh-cht": "電郵調度器",
"uk": "Диспетчер Повідомлень",
"xloc": [
- "default.handlebars->47->3369",
- "default3.handlebars->35->3356"
+ "default.handlebars->47->3370",
+ "default3.handlebars->35->3357"
]
},
{
@@ -52869,8 +52878,8 @@
"pl": "Błąd wiadomości",
"uk": "Помилка повідомлення",
"xloc": [
- "default.handlebars->47->3299",
- "default3.handlebars->35->3286"
+ "default.handlebars->47->3300",
+ "default3.handlebars->35->3287"
]
},
{
@@ -52884,8 +52893,8 @@
"pl": "Błąd wiadomości: {0}",
"uk": "Помилка повідомлення: {0}",
"xloc": [
- "default.handlebars->47->3300",
- "default3.handlebars->35->3287"
+ "default.handlebars->47->3301",
+ "default3.handlebars->35->3288"
]
},
{
@@ -52914,8 +52923,8 @@
"pl": "Wiadomość wysłana.",
"uk": "Повідомлення:",
"xloc": [
- "default.handlebars->47->3298",
- "default3.handlebars->35->3285"
+ "default.handlebars->47->3299",
+ "default3.handlebars->35->3286"
]
},
{
@@ -52987,10 +52996,10 @@
"pl": "Wiadomości",
"uk": "Обмін повідомленнями",
"xloc": [
- "default.handlebars->47->2945",
- "default.handlebars->47->2994",
- "default3.handlebars->35->2938",
- "default3.handlebars->35->2987",
+ "default.handlebars->47->2946",
+ "default.handlebars->47->2995",
+ "default3.handlebars->35->2939",
+ "default3.handlebars->35->2988",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
"login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3"
@@ -53007,10 +53016,10 @@
"pl": "Wiadomości ({0})",
"uk": "Обмін повідомленнями ({0})",
"xloc": [
- "default.handlebars->47->2206",
- "default.handlebars->47->983",
- "default3.handlebars->35->2201",
- "default3.handlebars->35->980"
+ "default.handlebars->47->2207",
+ "default.handlebars->47->984",
+ "default3.handlebars->35->2202",
+ "default3.handlebars->35->981"
]
},
{
@@ -53023,18 +53032,18 @@
"pl": "Powiadomienia w Komunikatorze",
"uk": "Сповіщення месенджера",
"xloc": [
- "default.handlebars->47->1122",
- "default.handlebars->47->1789",
- "default.handlebars->47->1809",
- "default.handlebars->47->2449",
+ "default.handlebars->47->1123",
+ "default.handlebars->47->1790",
+ "default.handlebars->47->1810",
+ "default.handlebars->47->2450",
"default.handlebars->47->263",
- "default.handlebars->47->3041",
- "default3.handlebars->35->1117",
- "default3.handlebars->35->1770",
- "default3.handlebars->35->1790",
- "default3.handlebars->35->2445",
+ "default.handlebars->47->3042",
+ "default3.handlebars->35->1118",
+ "default3.handlebars->35->1771",
+ "default3.handlebars->35->1791",
+ "default3.handlebars->35->2446",
"default3.handlebars->35->260",
- "default3.handlebars->35->3034"
+ "default3.handlebars->35->3035"
]
},
{
@@ -53048,8 +53057,8 @@
"pl": "Konto komunnikatora tego użytkownika.",
"uk": "Месенджер",
"xloc": [
- "default.handlebars->47->3021",
- "default3.handlebars->35->3014"
+ "default.handlebars->47->3022",
+ "default3.handlebars->35->3015"
]
},
{
@@ -53063,8 +53072,8 @@
"pl": "Wiadomości włączone",
"uk": "Обмін повідомленнями ввімкнено",
"xloc": [
- "default.handlebars->47->2946",
- "default3.handlebars->35->2939"
+ "default.handlebars->47->2947",
+ "default3.handlebars->35->2940"
]
},
{
@@ -53093,10 +53102,10 @@
"zh-cht": "信使",
"uk": "Месенджер",
"xloc": [
- "default.handlebars->47->3135",
- "default.handlebars->47->3202",
- "default3.handlebars->35->3122",
- "default3.handlebars->35->3189"
+ "default.handlebars->47->3136",
+ "default.handlebars->47->3203",
+ "default3.handlebars->35->3123",
+ "default3.handlebars->35->3190"
]
},
{
@@ -53109,8 +53118,8 @@
"pl": "Wiadomości",
"uk": "Обмін повідомленнями",
"xloc": [
- "default.handlebars->47->3222",
- "default3.handlebars->35->3209"
+ "default.handlebars->47->3223",
+ "default3.handlebars->35->3210"
]
},
{
@@ -53214,7 +53223,7 @@
{
"en": "Minty",
"xloc": [
- "default3.handlebars->35->2081"
+ "default3.handlebars->35->2082"
]
},
{
@@ -53303,9 +53312,9 @@
"zh-cht": "移動設備",
"uk": "Мобільний Пристрій",
"xloc": [
- "default-mobile.handlebars->11->801",
- "default.handlebars->47->1631",
- "default3.handlebars->35->1615"
+ "default-mobile.handlebars->11->802",
+ "default.handlebars->47->1632",
+ "default3.handlebars->35->1616"
]
},
{
@@ -53345,9 +53354,9 @@
"pl": "Tryb",
"uk": "Режим",
"xloc": [
- "default-mobile.handlebars->11->839",
- "default.handlebars->47->1679",
- "default3.handlebars->35->1661"
+ "default-mobile.handlebars->11->840",
+ "default.handlebars->47->1680",
+ "default3.handlebars->35->1662"
]
},
{
@@ -53376,14 +53385,14 @@
"zh-cht": "模型",
"uk": "Модель",
"xloc": [
- "default-mobile.handlebars->11->795",
- "default-mobile.handlebars->11->880",
- "default.handlebars->47->1625",
- "default.handlebars->47->1720",
- "default.handlebars->47->2112",
- "default3.handlebars->35->1609",
- "default3.handlebars->35->1702",
- "default3.handlebars->35->2111"
+ "default-mobile.handlebars->11->796",
+ "default-mobile.handlebars->11->881",
+ "default.handlebars->47->1626",
+ "default.handlebars->47->1721",
+ "default.handlebars->47->2113",
+ "default3.handlebars->35->1610",
+ "default3.handlebars->35->1703",
+ "default3.handlebars->35->2112"
]
},
{
@@ -53450,8 +53459,8 @@
"uk": "Молдавська",
"xloc": [
"default-mobile.handlebars->11->230",
- "default.handlebars->47->1963",
- "default3.handlebars->35->1943",
+ "default.handlebars->47->1964",
+ "default3.handlebars->35->1944",
"login2.handlebars->7->118"
]
},
@@ -53484,7 +53493,7 @@
{
"en": "Morph",
"xloc": [
- "default3.handlebars->35->2082"
+ "default3.handlebars->35->2083"
]
},
{
@@ -53513,9 +53522,9 @@
"zh-cht": "母板",
"uk": "Материнська Плата",
"xloc": [
- "default-mobile.handlebars->11->848",
- "default.handlebars->47->1688",
- "default3.handlebars->35->1670"
+ "default-mobile.handlebars->11->849",
+ "default.handlebars->47->1689",
+ "default3.handlebars->35->1671"
]
},
{
@@ -53544,8 +53553,8 @@
"zh-cht": "將此裝置移至其他裝置群",
"uk": "Перемістити цей пристрій до іншої групи пристроїв",
"xloc": [
- "default.handlebars->47->1032",
- "default3.handlebars->35->1029"
+ "default.handlebars->47->1033",
+ "default3.handlebars->35->1030"
]
},
{
@@ -53604,8 +53613,8 @@
"zh-cht": "移動:“{0}”到“{1}”",
"uk": "Перемістити: \\\"{0}\\\" до \\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2576",
- "default3.handlebars->35->2572"
+ "default.handlebars->47->2577",
+ "default3.handlebars->35->2573"
]
},
{
@@ -53634,8 +53643,8 @@
"zh-cht": "將設備{0}移動到組{1}",
"uk": "Пристрій {0} переміщено до групи {1}",
"xloc": [
- "default.handlebars->47->2609",
- "default3.handlebars->35->2605"
+ "default.handlebars->47->2610",
+ "default3.handlebars->35->2606"
]
},
{
@@ -53694,10 +53703,10 @@
"zh-cht": "多個問題",
"uk": "Декілька Проблем",
"xloc": [
- "default.handlebars->47->2462",
- "default.handlebars->47->2476",
- "default3.handlebars->35->2458",
- "default3.handlebars->35->2472"
+ "default.handlebars->47->2463",
+ "default.handlebars->47->2477",
+ "default3.handlebars->35->2459",
+ "default3.handlebars->35->2473"
]
},
{
@@ -53752,8 +53761,8 @@
"zh-cht": "多工器",
"uk": "Мультиплексор",
"xloc": [
- "default.handlebars->47->3153",
- "default3.handlebars->35->3140"
+ "default.handlebars->47->3154",
+ "default3.handlebars->35->3141"
]
},
{
@@ -53783,9 +53792,9 @@
"uk": "Запустити примусово від користувача",
"xloc": [
"default-mobile.handlebars->11->614",
- "default.handlebars->47->1281",
+ "default.handlebars->47->1282",
"default.handlebars->47->814",
- "default3.handlebars->35->1276",
+ "default3.handlebars->35->1277",
"default3.handlebars->35->811"
]
},
@@ -54018,8 +54027,8 @@
"zh-cht": "我的伺服器控制台",
"uk": "Консоль Мого сервера",
"xloc": [
- "default.handlebars->47->1758",
- "default3.handlebars->35->1740"
+ "default.handlebars->47->1759",
+ "default3.handlebars->35->1741"
]
},
{
@@ -54262,10 +54271,10 @@
"zh-cht": "我的密鍵",
"uk": "МійКлюч",
"xloc": [
- "default.handlebars->47->1838",
- "default.handlebars->47->1841",
- "default3.handlebars->35->1818",
- "default3.handlebars->35->1821"
+ "default.handlebars->47->1839",
+ "default.handlebars->47->1842",
+ "default3.handlebars->35->1819",
+ "default3.handlebars->35->1822"
]
},
{
@@ -54294,8 +54303,8 @@
"zh-cht": "不支持 NLA",
"uk": "NLA не підтримується",
"xloc": [
- "default.handlebars->47->1381",
- "default3.handlebars->35->1368"
+ "default.handlebars->47->1382",
+ "default3.handlebars->35->1369"
]
},
{
@@ -54445,49 +54454,49 @@
"default-mobile.handlebars->11->344",
"default-mobile.handlebars->11->491",
"default-mobile.handlebars->11->746",
- "default-mobile.handlebars->11->842",
- "default-mobile.handlebars->11->944",
- "default-mobile.handlebars->11->967",
- "default.handlebars->47->1442",
- "default.handlebars->47->1458",
- "default.handlebars->47->1604",
+ "default-mobile.handlebars->11->843",
+ "default-mobile.handlebars->11->945",
+ "default-mobile.handlebars->11->968",
+ "default.handlebars->47->1443",
+ "default.handlebars->47->1459",
+ "default.handlebars->47->1605",
"default.handlebars->47->161",
- "default.handlebars->47->1682",
+ "default.handlebars->47->1683",
"default.handlebars->47->175",
- "default.handlebars->47->2102",
- "default.handlebars->47->2130",
- "default.handlebars->47->2135",
- "default.handlebars->47->2172",
- "default.handlebars->47->2310",
- "default.handlebars->47->2719",
- "default.handlebars->47->2837",
- "default.handlebars->47->2853",
- "default.handlebars->47->2860",
- "default.handlebars->47->2911",
- "default.handlebars->47->2930",
+ "default.handlebars->47->2103",
+ "default.handlebars->47->2131",
+ "default.handlebars->47->2136",
+ "default.handlebars->47->2173",
+ "default.handlebars->47->2311",
+ "default.handlebars->47->2720",
+ "default.handlebars->47->2838",
+ "default.handlebars->47->2854",
+ "default.handlebars->47->2861",
+ "default.handlebars->47->2912",
+ "default.handlebars->47->2931",
"default.handlebars->47->338",
"default.handlebars->47->889",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
"default.handlebars->container->column_l->p42->p42tbl->1->0->2",
- "default3.handlebars->35->1429",
- "default3.handlebars->35->1444",
- "default3.handlebars->35->1588",
+ "default3.handlebars->35->1430",
+ "default3.handlebars->35->1445",
+ "default3.handlebars->35->1589",
"default3.handlebars->35->161",
- "default3.handlebars->35->1664",
+ "default3.handlebars->35->1665",
"default3.handlebars->35->175",
- "default3.handlebars->35->2101",
- "default3.handlebars->35->2129",
- "default3.handlebars->35->2134",
- "default3.handlebars->35->2167",
- "default3.handlebars->35->2304",
+ "default3.handlebars->35->2102",
+ "default3.handlebars->35->2130",
+ "default3.handlebars->35->2135",
+ "default3.handlebars->35->2168",
"default3.handlebars->35->2305",
- "default3.handlebars->35->2715",
- "default3.handlebars->35->2830",
- "default3.handlebars->35->2846",
- "default3.handlebars->35->2853",
- "default3.handlebars->35->2904",
- "default3.handlebars->35->2923",
+ "default3.handlebars->35->2306",
+ "default3.handlebars->35->2716",
+ "default3.handlebars->35->2831",
+ "default3.handlebars->35->2847",
+ "default3.handlebars->35->2854",
+ "default3.handlebars->35->2905",
+ "default3.handlebars->35->2924",
"default3.handlebars->35->335",
"default3.handlebars->35->886",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
@@ -54551,7 +54560,7 @@
"zh-cht": "名稱1,名稱2,名稱3",
"uk": "Ім'я1, Ім'я2, Ім'я3",
"xloc": [
- "default.handlebars->47->2818"
+ "default.handlebars->47->2819"
]
},
{
@@ -54581,8 +54590,8 @@
"uk": "Навахо",
"xloc": [
"default-mobile.handlebars->11->231",
- "default.handlebars->47->1964",
- "default3.handlebars->35->1944",
+ "default.handlebars->47->1965",
+ "default3.handlebars->35->1945",
"login2.handlebars->7->119"
]
},
@@ -54613,8 +54622,8 @@
"uk": "Ндонга",
"xloc": [
"default-mobile.handlebars->11->232",
- "default.handlebars->47->1965",
- "default3.handlebars->35->1945",
+ "default.handlebars->47->1966",
+ "default3.handlebars->35->1946",
"login2.handlebars->7->120"
]
},
@@ -54645,8 +54654,8 @@
"uk": "Непальська",
"xloc": [
"default-mobile.handlebars->11->233",
- "default.handlebars->47->1966",
- "default3.handlebars->35->1946",
+ "default.handlebars->47->1967",
+ "default3.handlebars->35->1947",
"login2.handlebars->7->121"
]
},
@@ -54676,8 +54685,8 @@
"zh-cht": "網絡介面",
"uk": "Мережеві інтерфейси",
"xloc": [
- "default.handlebars->47->1327",
- "default3.handlebars->35->1317"
+ "default.handlebars->47->1328",
+ "default3.handlebars->35->1318"
]
},
{
@@ -54718,8 +54727,8 @@
"pl": "Zapisy informacji o interfejsach sieciowych",
"uk": "Записати інформацію про мережевий інтерфейс",
"xloc": [
- "default.handlebars->47->3235",
- "default3.handlebars->35->3222"
+ "default.handlebars->47->3236",
+ "default3.handlebars->35->3223"
]
},
{
@@ -54748,11 +54757,11 @@
"zh-cht": "網路",
"uk": "Мережа",
"xloc": [
- "default-mobile.handlebars->11->816",
- "default.handlebars->47->1641",
- "default.handlebars->47->1656",
- "default3.handlebars->35->1625",
- "default3.handlebars->35->1640"
+ "default-mobile.handlebars->11->817",
+ "default.handlebars->47->1642",
+ "default.handlebars->47->1657",
+ "default3.handlebars->35->1626",
+ "default3.handlebars->35->1641"
]
},
{
@@ -54782,9 +54791,9 @@
"uk": "Новий",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1",
- "default.handlebars->47->2129",
+ "default.handlebars->47->2130",
"default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1",
- "default3.handlebars->35->2128",
+ "default3.handlebars->35->2129",
"default3.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1"
]
},
@@ -54814,8 +54823,8 @@
"zh-cht": "生成新的2FA備份代碼",
"uk": "Нові резервні коди 2FA згенеровані",
"xloc": [
- "default.handlebars->47->2616",
- "default3.handlebars->35->2612"
+ "default.handlebars->47->2617",
+ "default3.handlebars->35->2613"
]
},
{
@@ -54844,9 +54853,9 @@
"zh-cht": "新賬戶",
"uk": "Новий Акаунт",
"xloc": [
- "default-mobile.handlebars->11->1026",
- "default.handlebars->47->3261",
- "default3.handlebars->35->3248"
+ "default-mobile.handlebars->11->1027",
+ "default.handlebars->47->3262",
+ "default3.handlebars->35->3249"
]
},
{
@@ -54932,12 +54941,12 @@
"uk": "Нова Група Пристроїв",
"xloc": [
"default-mobile.handlebars->11->338",
- "default.handlebars->47->1319",
- "default.handlebars->47->2095",
- "default.handlebars->47->2118",
- "default3.handlebars->35->1310",
- "default3.handlebars->35->2097",
- "default3.handlebars->35->2117"
+ "default.handlebars->47->1320",
+ "default.handlebars->47->2096",
+ "default.handlebars->47->2119",
+ "default3.handlebars->35->1311",
+ "default3.handlebars->35->2098",
+ "default3.handlebars->35->2118"
]
},
{
@@ -54968,12 +54977,12 @@
"xloc": [
"default-mobile.handlebars->11->370",
"default-mobile.handlebars->11->717",
- "default.handlebars->47->1558",
- "default.handlebars->47->2506",
+ "default.handlebars->47->1559",
+ "default.handlebars->47->2507",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
- "default3.handlebars->35->1542",
- "default3.handlebars->35->2502",
+ "default3.handlebars->35->1543",
+ "default3.handlebars->35->2503",
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"sharing.handlebars->11->59",
@@ -55126,10 +55135,10 @@
"zh-cht": "新密碼*",
"uk": "Новий пароль*",
"xloc": [
- "default.handlebars->47->2284",
"default.handlebars->47->2285",
- "default3.handlebars->35->2277",
- "default3.handlebars->35->2278"
+ "default.handlebars->47->2286",
+ "default3.handlebars->35->2278",
+ "default3.handlebars->35->2279"
]
},
{
@@ -55160,8 +55169,8 @@
"xloc": [
"default-mobile.handlebars->11->333",
"default-mobile.handlebars->11->334",
- "default.handlebars->47->2090",
- "default.handlebars->47->2091"
+ "default.handlebars->47->2091",
+ "default.handlebars->47->2092"
]
},
{
@@ -55227,15 +55236,15 @@
"nl": "Nee",
"uk": "Ні",
"xloc": [
- "default-mobile.handlebars->11->854",
- "default-mobile.handlebars->11->857",
- "default-mobile.handlebars->11->860",
- "default.handlebars->47->1694",
- "default.handlebars->47->1697",
- "default.handlebars->47->1700",
- "default3.handlebars->35->1676",
- "default3.handlebars->35->1679",
- "default3.handlebars->35->1682"
+ "default-mobile.handlebars->11->855",
+ "default-mobile.handlebars->11->858",
+ "default-mobile.handlebars->11->861",
+ "default.handlebars->47->1695",
+ "default.handlebars->47->1698",
+ "default.handlebars->47->1701",
+ "default3.handlebars->35->1677",
+ "default3.handlebars->35->1680",
+ "default3.handlebars->35->1683"
]
},
{
@@ -55264,10 +55273,10 @@
"zh-cht": "沒有AMT",
"uk": "Немає AMT",
"xloc": [
- "default.handlebars->47->1131",
- "default.handlebars->47->1156",
- "default3.handlebars->35->1126",
- "default3.handlebars->35->1151"
+ "default.handlebars->47->1132",
+ "default.handlebars->47->1157",
+ "default3.handlebars->35->1127",
+ "default3.handlebars->35->1152"
]
},
{
@@ -55353,8 +55362,8 @@
"zh-cht": "無代理控制台",
"uk": "Немає Консолі Агента",
"xloc": [
- "default.handlebars->47->3056",
- "default3.handlebars->35->3049"
+ "default.handlebars->47->3057",
+ "default3.handlebars->35->3050"
]
},
{
@@ -55363,8 +55372,8 @@
"nl": "Geen toestemming",
"uk": "Нема Згоди",
"xloc": [
- "default.handlebars->47->1246",
- "default3.handlebars->35->1241"
+ "default.handlebars->47->1247",
+ "default3.handlebars->35->1242"
]
},
{
@@ -55393,8 +55402,8 @@
"zh-cht": "沒有控制台",
"uk": "Немає Консолі",
"xloc": [
- "default.handlebars->47->2954",
- "default3.handlebars->35->2947"
+ "default.handlebars->47->2955",
+ "default3.handlebars->35->2948"
]
},
{
@@ -55457,14 +55466,14 @@
"zh-cht": "沒有桌面",
"uk": "Немає Стільниці",
"xloc": [
- "default.handlebars->47->1133",
- "default.handlebars->47->1158",
- "default.handlebars->47->2397",
- "default.handlebars->47->2950",
- "default3.handlebars->35->1128",
- "default3.handlebars->35->1153",
- "default3.handlebars->35->2393",
- "default3.handlebars->35->2943"
+ "default.handlebars->47->1134",
+ "default.handlebars->47->1159",
+ "default.handlebars->47->2398",
+ "default.handlebars->47->2951",
+ "default3.handlebars->35->1129",
+ "default3.handlebars->35->1154",
+ "default3.handlebars->35->2394",
+ "default3.handlebars->35->2944"
]
},
{
@@ -55493,10 +55502,10 @@
"zh-cht": "不能訪問桌面",
"uk": "Немає Доступу до Стільниці",
"xloc": [
- "default.handlebars->47->2356",
- "default.handlebars->47->3052",
- "default3.handlebars->35->2352",
- "default3.handlebars->35->3045"
+ "default.handlebars->47->2357",
+ "default.handlebars->47->3053",
+ "default3.handlebars->35->2353",
+ "default3.handlebars->35->3046"
]
},
{
@@ -55551,12 +55560,12 @@
"zh-cht": "找不到事件",
"uk": "Подій не знайдено",
"xloc": [
- "default.handlebars->47->1600",
- "default.handlebars->47->2695",
- "default.handlebars->47->3118",
- "default3.handlebars->35->1584",
- "default3.handlebars->35->2691",
- "default3.handlebars->35->3105"
+ "default.handlebars->47->1601",
+ "default.handlebars->47->2696",
+ "default.handlebars->47->3119",
+ "default3.handlebars->35->1585",
+ "default3.handlebars->35->2692",
+ "default3.handlebars->35->3106"
]
},
{
@@ -55585,11 +55594,11 @@
"zh-cht": "不能存取檔案",
"uk": "Немає Доступу до Файлів",
"xloc": [
- "default-mobile.handlebars->11->983",
- "default.handlebars->47->2358",
- "default.handlebars->47->3055",
- "default3.handlebars->35->2354",
- "default3.handlebars->35->3048"
+ "default-mobile.handlebars->11->984",
+ "default.handlebars->47->2359",
+ "default.handlebars->47->3056",
+ "default3.handlebars->35->2355",
+ "default3.handlebars->35->3049"
]
},
{
@@ -55618,15 +55627,15 @@
"zh-cht": "沒有檔案",
"uk": "Немає Файлів",
"xloc": [
- "default-mobile.handlebars->11->1006",
- "default.handlebars->47->1130",
- "default.handlebars->47->1155",
- "default.handlebars->47->2399",
- "default.handlebars->47->2953",
- "default3.handlebars->35->1125",
- "default3.handlebars->35->1150",
- "default3.handlebars->35->2395",
- "default3.handlebars->35->2946"
+ "default-mobile.handlebars->11->1007",
+ "default.handlebars->47->1131",
+ "default.handlebars->47->1156",
+ "default.handlebars->47->2400",
+ "default.handlebars->47->2954",
+ "default3.handlebars->35->1126",
+ "default3.handlebars->35->1151",
+ "default3.handlebars->35->2396",
+ "default3.handlebars->35->2947"
]
},
{
@@ -55655,10 +55664,10 @@
"zh-cht": "無輸入",
"uk": "Без пристроїв Введення",
"xloc": [
- "default.handlebars->47->1128",
- "default.handlebars->47->1153",
- "default3.handlebars->35->1123",
- "default3.handlebars->35->1148"
+ "default.handlebars->47->1129",
+ "default.handlebars->47->1154",
+ "default3.handlebars->35->1124",
+ "default3.handlebars->35->1149"
]
},
{
@@ -55687,12 +55696,12 @@
"zh-cht": "沒有Intel® AMT",
"uk": "Немає Intel® AMT",
"xloc": [
- "default-mobile.handlebars->11->1007",
- "default-mobile.handlebars->11->984",
- "default.handlebars->47->2359",
- "default.handlebars->47->2400",
- "default3.handlebars->35->2355",
- "default3.handlebars->35->2396"
+ "default-mobile.handlebars->11->1008",
+ "default-mobile.handlebars->11->985",
+ "default.handlebars->47->2360",
+ "default.handlebars->47->2401",
+ "default3.handlebars->35->2356",
+ "default3.handlebars->35->2397"
]
},
{
@@ -55836,8 +55845,8 @@
"zh-cht": "沒有成員",
"uk": "Немає Учасників",
"xloc": [
- "default.handlebars->47->2891",
- "default3.handlebars->35->2884"
+ "default.handlebars->47->2892",
+ "default3.handlebars->35->2885"
]
},
{
@@ -55866,8 +55875,8 @@
"zh-cht": "沒有新的裝置群",
"uk": "Немає Нових Груп Пристроїв",
"xloc": [
- "default.handlebars->47->2831",
- "default3.handlebars->35->2824"
+ "default.handlebars->47->2832",
+ "default3.handlebars->35->2825"
]
},
{
@@ -55896,8 +55905,8 @@
"zh-cht": "沒有新設備",
"uk": "Немає Нових Пристроїв",
"xloc": [
- "default.handlebars->47->2832",
- "default3.handlebars->35->2825"
+ "default.handlebars->47->2833",
+ "default3.handlebars->35->2826"
]
},
{
@@ -55926,10 +55935,10 @@
"zh-cht": "沒有政策",
"uk": "Немає полісі",
"xloc": [
- "default.handlebars->47->2211",
- "default.handlebars->47->2275",
- "default3.handlebars->35->2206",
- "default3.handlebars->35->2268"
+ "default.handlebars->47->2212",
+ "default.handlebars->47->2276",
+ "default3.handlebars->35->2207",
+ "default3.handlebars->35->2269"
]
},
{
@@ -55983,10 +55992,10 @@
"zh-cht": "沒有遙控器",
"uk": "Немає Віддалених Команд",
"xloc": [
- "default.handlebars->47->2956",
- "default.handlebars->47->3058",
- "default3.handlebars->35->2949",
- "default3.handlebars->35->3051"
+ "default.handlebars->47->2957",
+ "default.handlebars->47->3059",
+ "default3.handlebars->35->2950",
+ "default3.handlebars->35->3052"
]
},
{
@@ -56015,10 +56024,10 @@
"zh-cht": "沒有遙控器",
"uk": "Немає Віддаленого Керування",
"xloc": [
- "default.handlebars->47->2949",
- "default.handlebars->47->3051",
- "default3.handlebars->35->2942",
- "default3.handlebars->35->3044"
+ "default.handlebars->47->2950",
+ "default.handlebars->47->3052",
+ "default3.handlebars->35->2943",
+ "default3.handlebars->35->3045"
]
},
{
@@ -56047,10 +56056,10 @@
"zh-cht": "無重置/關閉",
"uk": "Немає Перезапуску/Вимикання",
"xloc": [
- "default.handlebars->47->2958",
- "default.handlebars->47->3060",
- "default3.handlebars->35->2951",
- "default3.handlebars->35->3053"
+ "default.handlebars->47->2959",
+ "default.handlebars->47->3061",
+ "default3.handlebars->35->2952",
+ "default3.handlebars->35->3054"
]
},
{
@@ -56079,17 +56088,17 @@
"zh-cht": "沒有權利",
"uk": "Немає Дозволів",
"xloc": [
- "default-mobile.handlebars->11->1014",
+ "default-mobile.handlebars->11->1015",
"default-mobile.handlebars->11->353",
- "default-mobile.handlebars->11->958",
- "default.handlebars->47->1148",
- "default.handlebars->47->1173",
- "default.handlebars->47->2127",
- "default.handlebars->47->2410",
- "default3.handlebars->35->1143",
- "default3.handlebars->35->1168",
- "default3.handlebars->35->2126",
- "default3.handlebars->35->2406"
+ "default-mobile.handlebars->11->959",
+ "default.handlebars->47->1149",
+ "default.handlebars->47->1174",
+ "default.handlebars->47->2128",
+ "default.handlebars->47->2411",
+ "default3.handlebars->35->1144",
+ "default3.handlebars->35->1169",
+ "default3.handlebars->35->2127",
+ "default3.handlebars->35->2407"
]
},
{
@@ -56145,9 +56154,9 @@
"uk": "Немає безпеки TLS",
"xloc": [
"default-mobile.handlebars->11->624",
- "default.handlebars->47->1305",
+ "default.handlebars->47->1306",
"default.handlebars->47->516",
- "default3.handlebars->35->1296",
+ "default3.handlebars->35->1297",
"default3.handlebars->35->513"
]
},
@@ -56177,15 +56186,15 @@
"zh-cht": "沒有終端",
"uk": "Немає Терміналу",
"xloc": [
- "default-mobile.handlebars->11->1005",
- "default.handlebars->47->1129",
- "default.handlebars->47->1154",
- "default.handlebars->47->2398",
- "default.handlebars->47->2952",
- "default3.handlebars->35->1124",
- "default3.handlebars->35->1149",
- "default3.handlebars->35->2394",
- "default3.handlebars->35->2945"
+ "default-mobile.handlebars->11->1006",
+ "default.handlebars->47->1130",
+ "default.handlebars->47->1155",
+ "default.handlebars->47->2399",
+ "default.handlebars->47->2953",
+ "default3.handlebars->35->1125",
+ "default3.handlebars->35->1150",
+ "default3.handlebars->35->2395",
+ "default3.handlebars->35->2946"
]
},
{
@@ -56214,11 +56223,11 @@
"zh-cht": "不能訪問終端",
"uk": "Немає Термінального Доступу",
"xloc": [
- "default-mobile.handlebars->11->982",
- "default.handlebars->47->2357",
- "default.handlebars->47->3054",
- "default3.handlebars->35->2353",
- "default3.handlebars->35->3047"
+ "default-mobile.handlebars->11->983",
+ "default.handlebars->47->2358",
+ "default.handlebars->47->3055",
+ "default3.handlebars->35->2354",
+ "default3.handlebars->35->3048"
]
},
{
@@ -56247,8 +56256,8 @@
"zh-cht": "沒有工具(MeshCmd /路由器)",
"uk": "Немає Засобів (MeshCmd/Router)",
"xloc": [
- "default.handlebars->47->2833",
- "default3.handlebars->35->2826"
+ "default.handlebars->47->2834",
+ "default3.handlebars->35->2827"
]
},
{
@@ -56277,10 +56286,10 @@
"zh-cht": "無卸載",
"uk": "Немає Видалення",
"xloc": [
- "default.handlebars->47->2955",
- "default.handlebars->47->3057",
- "default3.handlebars->35->2948",
- "default3.handlebars->35->3050"
+ "default.handlebars->47->2956",
+ "default.handlebars->47->3058",
+ "default3.handlebars->35->2949",
+ "default3.handlebars->35->3051"
]
},
{
@@ -56309,10 +56318,10 @@
"zh-cht": "沒有喚醒",
"uk": "Немає пробудження",
"xloc": [
- "default.handlebars->47->2957",
- "default.handlebars->47->3059",
- "default3.handlebars->35->2950",
- "default3.handlebars->35->3052"
+ "default.handlebars->47->2958",
+ "default.handlebars->47->3060",
+ "default3.handlebars->35->2951",
+ "default3.handlebars->35->3053"
]
},
{
@@ -56342,8 +56351,8 @@
"uk": "Наразі немає доступних дій для цього пристрою.",
"xloc": [
"default-mobile.handlebars->11->593",
- "default.handlebars->47->1273",
- "default3.handlebars->35->1268"
+ "default.handlebars->47->1274",
+ "default3.handlebars->35->1269"
]
},
{
@@ -56398,11 +56407,11 @@
"zh-cht": "沒有代理設備通過代理中繼",
"uk": "Немає агентських пристроїв для ретранслювання через агента",
"xloc": [
- "default-mobile.handlebars->11->941",
- "default.handlebars->47->2104",
- "default.handlebars->47->2169",
- "default3.handlebars->35->2103",
- "default3.handlebars->35->2164"
+ "default-mobile.handlebars->11->942",
+ "default.handlebars->47->2105",
+ "default.handlebars->47->2170",
+ "default3.handlebars->35->2104",
+ "default3.handlebars->35->2165"
]
},
{
@@ -56431,10 +56440,10 @@
"zh-cht": "沒有自動更新",
"uk": "Немає автоматичного оновлення",
"xloc": [
- "default.handlebars->47->2460",
- "default.handlebars->47->2474",
- "default3.handlebars->35->2456",
- "default3.handlebars->35->2470"
+ "default.handlebars->47->2461",
+ "default.handlebars->47->2475",
+ "default3.handlebars->35->2457",
+ "default3.handlebars->35->2471"
]
},
{
@@ -56463,10 +56472,10 @@
"zh-cht": "沒有共同的裝置群",
"uk": "Немає пов'язаних груп пристроїв",
"xloc": [
- "default.handlebars->47->2897",
- "default.handlebars->47->3086",
- "default3.handlebars->35->2890",
- "default3.handlebars->35->3073"
+ "default.handlebars->47->2898",
+ "default.handlebars->47->3087",
+ "default3.handlebars->35->2891",
+ "default3.handlebars->35->3074"
]
},
{
@@ -56644,10 +56653,10 @@
"zh-cht": "沒有共同的裝置",
"uk": "Немає пов'язаних пристроїв",
"xloc": [
- "default.handlebars->47->2903",
- "default.handlebars->47->3098",
- "default3.handlebars->35->2896",
- "default3.handlebars->35->3085"
+ "default.handlebars->47->2904",
+ "default.handlebars->47->3099",
+ "default3.handlebars->35->2897",
+ "default3.handlebars->35->3086"
]
},
{
@@ -56708,8 +56717,8 @@
"zh-cht": "該裝置群中沒有裝置。",
"uk": "У цій групі пристроїв немає пристроїв.",
"xloc": [
- "default.handlebars->47->2478",
- "default3.handlebars->35->2474"
+ "default.handlebars->47->2479",
+ "default3.handlebars->35->2475"
]
},
{
@@ -56829,8 +56838,8 @@
"zh-cht": "找不到文件",
"uk": "Файл не знайдено",
"xloc": [
- "default.handlebars->47->1530",
- "default3.handlebars->35->1515",
+ "default.handlebars->47->1531",
+ "default3.handlebars->35->1516",
"sharing.handlebars->11->45"
]
},
@@ -56860,8 +56869,8 @@
"zh-cht": "找不到群組。",
"uk": "Групи не знайдено.",
"xloc": [
- "default.handlebars->47->2836",
- "default3.handlebars->35->2829"
+ "default.handlebars->47->2837",
+ "default3.handlebars->35->2830"
]
},
{
@@ -56890,9 +56899,9 @@
"zh-cht": "沒有此裝置的訊息。",
"uk": "Немає інформації про цей пристрій.",
"xloc": [
- "default-mobile.handlebars->11->912",
- "default.handlebars->47->1752",
- "default3.handlebars->35->1734"
+ "default-mobile.handlebars->11->913",
+ "default.handlebars->47->1753",
+ "default3.handlebars->35->1735"
]
},
{
@@ -56952,8 +56961,8 @@
"uk": "Сполучення клавіш не визначено",
"xloc": [
"default-mobile.handlebars->11->676",
- "default.handlebars->47->1441",
- "default3.handlebars->35->1428"
+ "default.handlebars->47->1442",
+ "default3.handlebars->35->1429"
]
},
{
@@ -56982,8 +56991,8 @@
"zh-cht": "未定義鍵盤字符串",
"uk": "Не визначено рядки клавіатури",
"xloc": [
- "default.handlebars->47->1446",
- "default3.handlebars->35->1433"
+ "default.handlebars->47->1447",
+ "default3.handlebars->35->1434"
]
},
{
@@ -57104,8 +57113,8 @@
"zh-cht": "不再是“{0}”的中繼。",
"uk": "Більше не ретранслятор для \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2676",
- "default3.handlebars->35->2672"
+ "default.handlebars->47->2677",
+ "default3.handlebars->35->2673"
]
},
{
@@ -57164,7 +57173,7 @@
"zh-cht": "沒有其他相同類型的裝置群。",
"uk": "Немає іншої групи пристроїв такого ж типу.",
"xloc": [
- "default.handlebars->47->1322"
+ "default.handlebars->47->1323"
]
},
{
@@ -57193,9 +57202,9 @@
"zh-cht": "沒有此用戶的電話號碼",
"uk": "Немає номера телефону для цього користувача",
"xloc": [
- "default-mobile.handlebars->11->1057",
- "default.handlebars->47->3292",
- "default3.handlebars->35->3279"
+ "default-mobile.handlebars->11->1058",
+ "default.handlebars->47->3293",
+ "default3.handlebars->35->3280"
]
},
{
@@ -57254,8 +57263,8 @@
"zh-cht": "沒有錄音。",
"uk": "Немає записів.",
"xloc": [
- "default.handlebars->47->3123",
- "default3.handlebars->35->3110"
+ "default.handlebars->47->3124",
+ "default3.handlebars->35->3111"
]
},
{
@@ -57284,10 +57293,10 @@
"zh-cht": "沒有可用的中繼設備。",
"uk": "Немає пристроїв ретрансляції.",
"xloc": [
- "default-mobile.handlebars->11->964",
- "default.handlebars->47->2307",
- "default3.handlebars->35->2299",
- "default3.handlebars->35->2301"
+ "default-mobile.handlebars->11->965",
+ "default.handlebars->47->2308",
+ "default3.handlebars->35->2300",
+ "default3.handlebars->35->2302"
]
},
{
@@ -57342,8 +57351,8 @@
"zh-cht": "沒有伺服器權限",
"uk": "Немає дозволів на сервер",
"xloc": [
- "default.handlebars->47->2925",
- "default3.handlebars->35->2918"
+ "default.handlebars->47->2926",
+ "default3.handlebars->35->2919"
]
},
{
@@ -57398,8 +57407,8 @@
"zh-cht": "沒有用戶群成員身份",
"uk": "Не належить до групи користувачів",
"xloc": [
- "default.handlebars->47->3092",
- "default3.handlebars->35->3079"
+ "default.handlebars->47->3093",
+ "default3.handlebars->35->3080"
]
},
{
@@ -57428,9 +57437,9 @@
"zh-cht": "沒有用戶管理權限",
"uk": "Немає прав керування користувачами",
"xloc": [
- "default-mobile.handlebars->11->1055",
- "default.handlebars->47->3290",
- "default3.handlebars->35->3277"
+ "default-mobile.handlebars->11->1056",
+ "default.handlebars->47->3291",
+ "default3.handlebars->35->3278"
]
},
{
@@ -57459,8 +57468,8 @@
"zh-cht": "未找到相應的用戶。",
"uk": "Користувачів не знайдено.",
"xloc": [
- "default.handlebars->47->2727",
- "default3.handlebars->35->2723"
+ "default.handlebars->47->2728",
+ "default3.handlebars->35->2724"
]
},
{
@@ -57489,8 +57498,8 @@
"zh-cht": "沒有擁有特殊裝置權限的用戶",
"uk": "Немає користувачів зі спеціальними дозволами для пристроїв",
"xloc": [
- "default.handlebars->47->1087",
- "default3.handlebars->35->1084"
+ "default.handlebars->47->1088",
+ "default3.handlebars->35->1085"
]
},
{
@@ -57618,78 +57627,78 @@
"default-mobile.handlebars->11->538",
"default-mobile.handlebars->11->666",
"default-mobile.handlebars->11->714",
- "default-mobile.handlebars->11->946",
- "default.handlebars->47->1429",
- "default.handlebars->47->2163",
- "default.handlebars->47->2174",
- "default.handlebars->47->2188",
- "default.handlebars->47->2200",
- "default.handlebars->47->2207",
- "default.handlebars->47->2209",
- "default.handlebars->47->2263",
- "default.handlebars->47->2463",
- "default.handlebars->47->2488",
- "default.handlebars->47->2493",
- "default.handlebars->47->2703",
+ "default-mobile.handlebars->11->947",
+ "default.handlebars->47->1430",
+ "default.handlebars->47->2164",
+ "default.handlebars->47->2175",
+ "default.handlebars->47->2189",
+ "default.handlebars->47->2201",
+ "default.handlebars->47->2208",
+ "default.handlebars->47->2210",
+ "default.handlebars->47->2264",
+ "default.handlebars->47->2464",
+ "default.handlebars->47->2489",
+ "default.handlebars->47->2494",
+ "default.handlebars->47->2704",
"default.handlebars->47->280",
- "default.handlebars->47->2857",
- "default.handlebars->47->2859",
- "default.handlebars->47->2868",
- "default.handlebars->47->2880",
- "default.handlebars->47->2944",
- "default.handlebars->47->2947",
- "default.handlebars->47->2959",
- "default.handlebars->47->2969",
- "default.handlebars->47->2973",
- "default.handlebars->47->2985",
- "default.handlebars->47->3022",
+ "default.handlebars->47->2858",
+ "default.handlebars->47->2860",
+ "default.handlebars->47->2869",
+ "default.handlebars->47->2881",
+ "default.handlebars->47->2945",
+ "default.handlebars->47->2948",
+ "default.handlebars->47->2960",
+ "default.handlebars->47->2970",
+ "default.handlebars->47->2974",
+ "default.handlebars->47->2986",
+ "default.handlebars->47->3023",
"default.handlebars->47->308",
- "default.handlebars->47->3217",
+ "default.handlebars->47->3218",
"default.handlebars->47->406",
"default.handlebars->47->407",
"default.handlebars->47->88",
"default.handlebars->47->886",
"default.handlebars->47->897",
"default.handlebars->47->898",
- "default.handlebars->47->977",
- "default.handlebars->47->984",
- "default.handlebars->47->997",
+ "default.handlebars->47->978",
+ "default.handlebars->47->985",
+ "default.handlebars->47->998",
"default.handlebars->container->column_l->p41->3->3->p41traceStatus",
- "default3.handlebars->35->1416",
- "default3.handlebars->35->2158",
- "default3.handlebars->35->2169",
- "default3.handlebars->35->2183",
- "default3.handlebars->35->2195",
- "default3.handlebars->35->2202",
- "default3.handlebars->35->2204",
- "default3.handlebars->35->2258",
- "default3.handlebars->35->2459",
- "default3.handlebars->35->2484",
- "default3.handlebars->35->2489",
- "default3.handlebars->35->2699",
+ "default3.handlebars->35->1417",
+ "default3.handlebars->35->2159",
+ "default3.handlebars->35->2170",
+ "default3.handlebars->35->2184",
+ "default3.handlebars->35->2196",
+ "default3.handlebars->35->2203",
+ "default3.handlebars->35->2205",
+ "default3.handlebars->35->2259",
+ "default3.handlebars->35->2460",
+ "default3.handlebars->35->2485",
+ "default3.handlebars->35->2490",
+ "default3.handlebars->35->2700",
"default3.handlebars->35->277",
- "default3.handlebars->35->2850",
- "default3.handlebars->35->2852",
- "default3.handlebars->35->2861",
- "default3.handlebars->35->2873",
- "default3.handlebars->35->2937",
- "default3.handlebars->35->2940",
- "default3.handlebars->35->2952",
- "default3.handlebars->35->2962",
- "default3.handlebars->35->2966",
- "default3.handlebars->35->2978",
- "default3.handlebars->35->3015",
+ "default3.handlebars->35->2851",
+ "default3.handlebars->35->2853",
+ "default3.handlebars->35->2862",
+ "default3.handlebars->35->2874",
+ "default3.handlebars->35->2938",
+ "default3.handlebars->35->2941",
+ "default3.handlebars->35->2953",
+ "default3.handlebars->35->2963",
+ "default3.handlebars->35->2967",
+ "default3.handlebars->35->2979",
+ "default3.handlebars->35->3016",
"default3.handlebars->35->305",
- "default3.handlebars->35->3204",
+ "default3.handlebars->35->3205",
"default3.handlebars->35->403",
"default3.handlebars->35->404",
"default3.handlebars->35->88",
"default3.handlebars->35->883",
"default3.handlebars->35->894",
"default3.handlebars->35->895",
- "default3.handlebars->35->974",
- "default3.handlebars->35->981",
- "default3.handlebars->35->994",
+ "default3.handlebars->35->975",
+ "default3.handlebars->35->982",
+ "default3.handlebars->35->995",
"default3.handlebars->container->column_l->p41->3->1->p41traceStatus"
]
},
@@ -57775,8 +57784,8 @@
"uk": "Норвезька",
"xloc": [
"default-mobile.handlebars->11->234",
- "default.handlebars->47->1967",
- "default3.handlebars->35->1947",
+ "default.handlebars->47->1968",
+ "default3.handlebars->35->1948",
"login2.handlebars->7->122"
]
},
@@ -57807,8 +57816,8 @@
"uk": "Норвезька (Букмал)",
"xloc": [
"default-mobile.handlebars->11->235",
- "default.handlebars->47->1968",
- "default3.handlebars->35->1948",
+ "default.handlebars->47->1969",
+ "default3.handlebars->35->1949",
"login2.handlebars->7->123"
]
},
@@ -57839,8 +57848,8 @@
"uk": "Норвезька (Нюнорск)",
"xloc": [
"default-mobile.handlebars->11->236",
- "default.handlebars->47->1969",
- "default3.handlebars->35->1949",
+ "default.handlebars->47->1970",
+ "default3.handlebars->35->1950",
"login2.handlebars->7->124"
]
},
@@ -57870,8 +57879,8 @@
"zh-cht": "未激活",
"uk": "Не Активовано",
"xloc": [
- "default.handlebars->47->1661",
- "default3.handlebars->35->1643"
+ "default.handlebars->47->1662",
+ "default3.handlebars->35->1644"
]
},
{
@@ -57901,7 +57910,7 @@
"uk": "Не Активовано (всередині)",
"xloc": [
"default-mobile.handlebars->11->510",
- "default-mobile.handlebars->11->822",
+ "default-mobile.handlebars->11->823",
"default.handlebars->47->912",
"default3.handlebars->35->909"
]
@@ -57933,7 +57942,7 @@
"uk": "Не активовано (Поперед)",
"xloc": [
"default-mobile.handlebars->11->509",
- "default-mobile.handlebars->11->821",
+ "default-mobile.handlebars->11->822",
"default.handlebars->47->911",
"default3.handlebars->35->908"
]
@@ -57964,10 +57973,10 @@
"zh-cht": "未連接",
"uk": "Не Підключено",
"xloc": [
- "default.handlebars->47->2454",
- "default.handlebars->47->2467",
- "default3.handlebars->35->2450",
- "default3.handlebars->35->2463"
+ "default.handlebars->47->2455",
+ "default.handlebars->47->2468",
+ "default3.handlebars->35->2451",
+ "default3.handlebars->35->2464"
]
},
{
@@ -57996,9 +58005,9 @@
"zh-cht": "未知",
"uk": "Невідомо",
"xloc": [
- "default-mobile.handlebars->11->832",
- "default.handlebars->47->1672",
- "default3.handlebars->35->1654"
+ "default-mobile.handlebars->11->833",
+ "default.handlebars->47->1673",
+ "default3.handlebars->35->1655"
]
},
{
@@ -58057,8 +58066,8 @@
"zh-cht": "不在伺服器上",
"uk": "Не на сервері",
"xloc": [
- "default.handlebars->47->3145",
- "default3.handlebars->35->3132"
+ "default.handlebars->47->3146",
+ "default3.handlebars->35->3133"
]
},
{
@@ -58087,10 +58096,10 @@
"zh-cht": "沒有設置",
"uk": "Не визначено",
"xloc": [
- "default.handlebars->47->2931",
"default.handlebars->47->2932",
- "default3.handlebars->35->2924",
- "default3.handlebars->35->2925"
+ "default.handlebars->47->2933",
+ "default3.handlebars->35->2925",
+ "default3.handlebars->35->2926"
]
},
{
@@ -58119,8 +58128,8 @@
"zh-cht": "未經審核的",
"uk": "Не веріфіковано",
"xloc": [
- "default.handlebars->47->3066",
- "default3.handlebars->35->3057"
+ "default.handlebars->47->3067",
+ "default3.handlebars->35->3058"
]
},
{
@@ -58151,20 +58160,20 @@
"xloc": [
"default-mobile.handlebars->11->551",
"default-mobile.handlebars->11->602",
- "default-mobile.handlebars->11->952",
- "default.handlebars->47->1014",
- "default.handlebars->47->1139",
- "default.handlebars->47->1164",
- "default.handlebars->47->1178",
- "default.handlebars->47->2219",
- "default.handlebars->47->2997",
+ "default-mobile.handlebars->11->953",
+ "default.handlebars->47->1015",
+ "default.handlebars->47->1140",
+ "default.handlebars->47->1165",
+ "default.handlebars->47->1179",
+ "default.handlebars->47->2220",
+ "default.handlebars->47->2998",
"default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0",
- "default3.handlebars->35->1011",
- "default3.handlebars->35->1134",
- "default3.handlebars->35->1159",
- "default3.handlebars->35->1173",
- "default3.handlebars->35->2214",
- "default3.handlebars->35->2990",
+ "default3.handlebars->35->1012",
+ "default3.handlebars->35->1135",
+ "default3.handlebars->35->1160",
+ "default3.handlebars->35->1174",
+ "default3.handlebars->35->2215",
+ "default3.handlebars->35->2991",
"default3.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->1"
]
},
@@ -58224,13 +58233,13 @@
"zh-cht": "通知設定",
"uk": "Налаштування Сповіщень",
"xloc": [
- "default.handlebars->47->1126",
- "default.handlebars->47->2077",
- "default.handlebars->47->2453",
+ "default.handlebars->47->1127",
+ "default.handlebars->47->2078",
+ "default.handlebars->47->2454",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->14",
- "default3.handlebars->35->1121",
- "default3.handlebars->35->2058",
- "default3.handlebars->35->2449",
+ "default3.handlebars->35->1122",
+ "default3.handlebars->35->2059",
+ "default3.handlebars->35->2450",
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->12"
]
},
@@ -58312,8 +58321,8 @@
"zh-cht": "通知音效",
"uk": "Звук сповіщення",
"xloc": [
- "default.handlebars->47->2072",
- "default3.handlebars->35->2053"
+ "default.handlebars->47->2073",
+ "default3.handlebars->35->2054"
]
},
{
@@ -58342,10 +58351,10 @@
"zh-cht": "通知",
"uk": "Сповіщення",
"xloc": [
- "default.handlebars->47->2208",
- "default.handlebars->47->985",
- "default3.handlebars->35->2203",
- "default3.handlebars->35->982"
+ "default.handlebars->47->2209",
+ "default.handlebars->47->986",
+ "default3.handlebars->35->2204",
+ "default3.handlebars->35->983"
]
},
{
@@ -58374,9 +58383,9 @@
"zh-cht": "通知",
"uk": "Сповіщати",
"xloc": [
- "default.handlebars->47->3005",
+ "default.handlebars->47->3006",
"default.handlebars->47->305",
- "default3.handlebars->35->2998",
+ "default3.handlebars->35->2999",
"default3.handlebars->35->302"
]
},
@@ -58406,8 +58415,8 @@
"zh-cht": "只通知",
"uk": "Лише Сповіщати",
"xloc": [
- "default.handlebars->47->1244",
- "default3.handlebars->35->1239"
+ "default.handlebars->47->1245",
+ "default3.handlebars->35->1240"
]
},
{
@@ -58436,12 +58445,12 @@
"zh-cht": "通知使用者",
"uk": "Повідомити користувачів",
"xloc": [
- "default.handlebars->47->2318",
- "default.handlebars->47->2322",
- "default.handlebars->47->2325",
- "default3.handlebars->35->2314",
- "default3.handlebars->35->2318",
- "default3.handlebars->35->2321"
+ "default.handlebars->47->2319",
+ "default.handlebars->47->2323",
+ "default.handlebars->47->2326",
+ "default3.handlebars->35->2315",
+ "default3.handlebars->35->2319",
+ "default3.handlebars->35->2322"
]
},
{
@@ -58470,8 +58479,8 @@
"zh-cht": "通知{0}",
"uk": "Сповіщення {0}",
"xloc": [
- "default.handlebars->47->2769",
- "default3.handlebars->35->2764"
+ "default.handlebars->47->2770",
+ "default3.handlebars->35->2765"
]
},
{
@@ -58500,8 +58509,8 @@
"zh-cht": "無效的",
"uk": "Null",
"xloc": [
- "default.handlebars->47->3363",
- "default3.handlebars->35->3350"
+ "default.handlebars->47->3364",
+ "default3.handlebars->35->3351"
]
},
{
@@ -58563,9 +58572,9 @@
"default-mobile.handlebars->11->781",
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->7",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->47->2151",
- "default.handlebars->47->2458",
- "default.handlebars->47->2472",
+ "default.handlebars->47->2152",
+ "default.handlebars->47->2459",
+ "default.handlebars->47->2473",
"default.handlebars->47->428",
"default.handlebars->47->430",
"default.handlebars->47->432",
@@ -58574,8 +58583,8 @@
"default.handlebars->47->948",
"default.handlebars->47->963",
"default.handlebars->container->dialog->idx_dlgButtonBar",
- "default3.handlebars->35->2454",
- "default3.handlebars->35->2468",
+ "default3.handlebars->35->2455",
+ "default3.handlebars->35->2469",
"default3.handlebars->35->425",
"default3.handlebars->35->427",
"default3.handlebars->35->429",
@@ -58714,8 +58723,8 @@
"uk": "Окситанська",
"xloc": [
"default-mobile.handlebars->11->237",
- "default.handlebars->47->1970",
- "default3.handlebars->35->1950",
+ "default.handlebars->47->1971",
+ "default3.handlebars->35->1951",
"login2.handlebars->7->125"
]
},
@@ -58745,9 +58754,9 @@
"zh-cht": "發生在{0}",
"uk": "Це сталося в {0}",
"xloc": [
- "default-mobile.handlebars->11->1023",
- "default.handlebars->47->3258",
- "default3.handlebars->35->3245"
+ "default-mobile.handlebars->11->1024",
+ "default.handlebars->47->3259",
+ "default3.handlebars->35->3246"
]
},
{
@@ -58844,8 +58853,8 @@
"zh-cht": "離線用戶",
"uk": "Офлайн Користувачі",
"xloc": [
- "default.handlebars->47->2724",
- "default3.handlebars->35->2720"
+ "default.handlebars->47->2725",
+ "default3.handlebars->35->2721"
]
},
{
@@ -58905,7 +58914,7 @@
"uk": "Старий пароль:",
"xloc": [
"default-mobile.handlebars->11->332",
- "default.handlebars->47->2089"
+ "default.handlebars->47->2090"
]
},
{
@@ -58949,8 +58958,8 @@
"zh-cht": "一天",
"uk": "Один День",
"xloc": [
- "default.handlebars->47->2700",
- "default3.handlebars->35->2696"
+ "default.handlebars->47->2701",
+ "default3.handlebars->35->2697"
]
},
{
@@ -59010,8 +59019,8 @@
"zh-cht": "一次性密碼",
"uk": "Одноразовий пароль (OTP)",
"xloc": [
- "default.handlebars->47->3224",
- "default3.handlebars->35->3211"
+ "default.handlebars->47->3225",
+ "default3.handlebars->35->3212"
]
},
{
@@ -59073,8 +59082,8 @@
"zh-cht": "在線用戶",
"uk": "Користувачі Онлайн",
"xloc": [
- "default.handlebars->47->2723",
- "default3.handlebars->35->2719"
+ "default.handlebars->47->2724",
+ "default3.handlebars->35->2720"
]
},
{
@@ -59103,8 +59112,8 @@
"zh-cht": "僅顯示前 100 個用戶",
"uk": "Показувати лише перші 100 користувачів",
"xloc": [
- "default.handlebars->47->2770",
- "default3.handlebars->35->2765"
+ "default.handlebars->47->2771",
+ "default3.handlebars->35->2766"
]
},
{
@@ -59133,8 +59142,8 @@
"zh-cht": "僅當你知道自己在做什麼時才這樣做。",
"uk": "Запускайте це, лише якщо знаєте, що робите.",
"xloc": [
- "default.handlebars->47->2149",
- "default3.handlebars->35->2148"
+ "default.handlebars->47->2150",
+ "default3.handlebars->35->2149"
]
},
{
@@ -59164,11 +59173,11 @@
"uk": "Можна редагувати лише файли розміром менше 200 кБ.",
"xloc": [
"default-mobile.handlebars->11->725",
- "default.handlebars->47->1566",
- "default.handlebars->47->2515",
+ "default.handlebars->47->1567",
+ "default.handlebars->47->2516",
"default.handlebars->47->857",
- "default3.handlebars->35->1550",
- "default3.handlebars->35->2511",
+ "default3.handlebars->35->1551",
+ "default3.handlebars->35->2512",
"default3.handlebars->35->854",
"sharing.handlebars->11->67"
]
@@ -59249,8 +59258,8 @@
"nl": "Open bestand/map",
"uk": "Відкрити Файл/Теку",
"xloc": [
- "default.handlebars->47->1546",
- "default3.handlebars->35->1531"
+ "default.handlebars->47->1547",
+ "default3.handlebars->35->1532"
]
},
{
@@ -59280,8 +59289,8 @@
"uk": "Відкрити Сторінку на Пристрої",
"xloc": [
"default-mobile.handlebars->11->607",
- "default.handlebars->47->1179",
- "default3.handlebars->35->1174"
+ "default.handlebars->47->1180",
+ "default3.handlebars->35->1175"
]
},
{
@@ -59394,8 +59403,8 @@
"zh-cht": "打開XTerm終端",
"uk": "Відкрити термінал XTerm",
"xloc": [
- "default.handlebars->47->1042",
- "default3.handlebars->35->1039"
+ "default.handlebars->47->1043",
+ "default3.handlebars->35->1040"
]
},
{
@@ -59454,9 +59463,9 @@
"zh-cht": "打開此電腦的聊天窗口",
"uk": "Відкрити вікно чату на цьому комп'ютері",
"xloc": [
- "default.handlebars->47->1023",
+ "default.handlebars->47->1024",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->1",
- "default3.handlebars->35->1020",
+ "default3.handlebars->35->1021",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea4->3"
]
},
@@ -59600,8 +59609,8 @@
"zh-cht": "開場:{0}",
"uk": "Відкриття: {0}",
"xloc": [
- "default.handlebars->47->2544",
- "default3.handlebars->35->2540"
+ "default.handlebars->47->2545",
+ "default3.handlebars->35->2541"
]
},
{
@@ -59630,17 +59639,17 @@
"zh-cht": "操作系統",
"uk": "Операційна система",
"xloc": [
- "default-mobile.handlebars->11->785",
- "default.handlebars->47->1346",
- "default.handlebars->47->1615",
- "default.handlebars->47->3190",
+ "default-mobile.handlebars->11->786",
+ "default.handlebars->47->1347",
+ "default.handlebars->47->1616",
+ "default.handlebars->47->3191",
"default.handlebars->47->348",
"default.handlebars->47->553",
"default.handlebars->47->603",
"default.handlebars->47->938",
- "default3.handlebars->35->1334",
- "default3.handlebars->35->1599",
- "default3.handlebars->35->3177",
+ "default3.handlebars->35->1335",
+ "default3.handlebars->35->1600",
+ "default3.handlebars->35->3178",
"default3.handlebars->35->345",
"default3.handlebars->35->550",
"default3.handlebars->35->600",
@@ -59674,14 +59683,14 @@
"uk": "Операція",
"xloc": [
"default-mobile.handlebars->11->592",
- "default.handlebars->47->1272",
- "default.handlebars->47->2752",
- "default.handlebars->47->2844",
+ "default.handlebars->47->1273",
+ "default.handlebars->47->2753",
+ "default.handlebars->47->2845",
"default.handlebars->47->752",
"default.handlebars->47->764",
- "default3.handlebars->35->1267",
- "default3.handlebars->35->2748",
- "default3.handlebars->35->2837",
+ "default3.handlebars->35->1268",
+ "default3.handlebars->35->2749",
+ "default3.handlebars->35->2838",
"default3.handlebars->35->749",
"default3.handlebars->35->761"
]
@@ -59769,8 +59778,8 @@
"uk": "Орія",
"xloc": [
"default-mobile.handlebars->11->238",
- "default.handlebars->47->1971",
- "default3.handlebars->35->1951",
+ "default.handlebars->47->1972",
+ "default3.handlebars->35->1952",
"login2.handlebars->7->126"
]
},
@@ -59801,8 +59810,8 @@
"uk": "Оромо",
"xloc": [
"default-mobile.handlebars->11->239",
- "default.handlebars->47->1972",
- "default3.handlebars->35->1952",
+ "default.handlebars->47->1973",
+ "default3.handlebars->35->1953",
"login2.handlebars->7->127"
]
},
@@ -60087,8 +60096,8 @@
"zh-cht": "自己的過程",
"uk": "Власний процес",
"xloc": [
- "default.handlebars->47->1467",
- "default3.handlebars->35->1453"
+ "default.handlebars->47->1468",
+ "default3.handlebars->35->1454"
]
},
{
@@ -60117,9 +60126,9 @@
"zh-cht": "PID",
"uk": "PID",
"xloc": [
- "default.handlebars->47->1463",
+ "default.handlebars->47->1464",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1",
- "default3.handlebars->35->1449",
+ "default3.handlebars->35->1450",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
]
},
@@ -60158,9 +60167,9 @@
"zh-cht": "推",
"uk": "НАТИСНІТЬ",
"xloc": [
- "default-mobile.handlebars->11->923",
- "default.handlebars->47->1764",
- "default3.handlebars->35->1746"
+ "default-mobile.handlebars->11->924",
+ "default.handlebars->47->1765",
+ "default3.handlebars->35->1747"
]
},
{
@@ -60190,8 +60199,8 @@
"uk": "Page Down",
"xloc": [
"default-mobile.handlebars->11->661",
- "default.handlebars->47->1424",
- "default3.handlebars->35->1411"
+ "default.handlebars->47->1425",
+ "default3.handlebars->35->1412"
]
},
{
@@ -60221,8 +60230,8 @@
"uk": "Page Up",
"xloc": [
"default-mobile.handlebars->11->660",
- "default.handlebars->47->1423",
- "default3.handlebars->35->1410"
+ "default.handlebars->47->1424",
+ "default3.handlebars->35->1411"
]
},
{
@@ -60281,15 +60290,15 @@
"zh-cht": "零件號",
"uk": "Номер деталі (P/N)",
"xloc": [
- "default-mobile.handlebars->11->866",
- "default-mobile.handlebars->11->872",
- "default-mobile.handlebars->11->878",
- "default.handlebars->47->1706",
- "default.handlebars->47->1712",
- "default.handlebars->47->1718",
- "default3.handlebars->35->1688",
- "default3.handlebars->35->1694",
- "default3.handlebars->35->1700"
+ "default-mobile.handlebars->11->867",
+ "default-mobile.handlebars->11->873",
+ "default-mobile.handlebars->11->879",
+ "default.handlebars->47->1707",
+ "default.handlebars->47->1713",
+ "default.handlebars->47->1719",
+ "default3.handlebars->35->1689",
+ "default3.handlebars->35->1695",
+ "default3.handlebars->35->1701"
]
},
{
@@ -60318,8 +60327,8 @@
"zh-cht": "部分的",
"uk": "Частково",
"xloc": [
- "default.handlebars->47->2739",
- "default3.handlebars->35->2735"
+ "default.handlebars->47->2740",
+ "default3.handlebars->35->2736"
]
},
{
@@ -60401,9 +60410,9 @@
"uk": "Часткові Дозволи",
"xloc": [
"default-mobile.handlebars->11->351",
- "default-mobile.handlebars->11->956",
- "default.handlebars->47->2125",
- "default3.handlebars->35->2124"
+ "default-mobile.handlebars->11->957",
+ "default.handlebars->47->2126",
+ "default3.handlebars->35->2125"
]
},
{
@@ -60432,8 +60441,8 @@
"zh-cht": "部分權限",
"uk": "Часткові дозволи",
"xloc": [
- "default.handlebars->47->2928",
- "default3.handlebars->35->2921"
+ "default.handlebars->47->2929",
+ "default3.handlebars->35->2922"
]
},
{
@@ -60494,29 +60503,29 @@
"default-mobile.handlebars->11->622",
"default-mobile.handlebars->11->692",
"default-mobile.handlebars->11->699",
- "default.handlebars->47->1303",
- "default.handlebars->47->1395",
- "default.handlebars->47->1506",
- "default.handlebars->47->1513",
- "default.handlebars->47->2117",
- "default.handlebars->47->2281",
- "default.handlebars->47->2806",
+ "default.handlebars->47->1304",
+ "default.handlebars->47->1396",
+ "default.handlebars->47->1507",
+ "default.handlebars->47->1514",
+ "default.handlebars->47->2118",
+ "default.handlebars->47->2282",
"default.handlebars->47->2807",
- "default.handlebars->47->2965",
- "default.handlebars->47->2967",
- "default.handlebars->47->3071",
+ "default.handlebars->47->2808",
+ "default.handlebars->47->2966",
+ "default.handlebars->47->2968",
"default.handlebars->47->3072",
+ "default.handlebars->47->3073",
"default.handlebars->47->342",
"default.handlebars->47->514",
- "default3.handlebars->35->1294",
- "default3.handlebars->35->1382",
- "default3.handlebars->35->1491",
- "default3.handlebars->35->1498",
- "default3.handlebars->35->2116",
- "default3.handlebars->35->2274",
- "default3.handlebars->35->2801",
- "default3.handlebars->35->2958",
- "default3.handlebars->35->2960",
+ "default3.handlebars->35->1295",
+ "default3.handlebars->35->1383",
+ "default3.handlebars->35->1492",
+ "default3.handlebars->35->1499",
+ "default3.handlebars->35->2117",
+ "default3.handlebars->35->2275",
+ "default3.handlebars->35->2802",
+ "default3.handlebars->35->2959",
+ "default3.handlebars->35->2961",
"default3.handlebars->35->339",
"default3.handlebars->35->511",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1",
@@ -60685,9 +60694,9 @@
"zh-cht": "密碼已更改。",
"uk": "Пароль змінено.",
"xloc": [
- "default-mobile.handlebars->11->1051",
- "default.handlebars->47->3286",
- "default3.handlebars->35->3273"
+ "default-mobile.handlebars->11->1052",
+ "default.handlebars->47->3287",
+ "default3.handlebars->35->3274"
]
},
{
@@ -60746,7 +60755,7 @@
"zh-cht": "密碼提示",
"uk": "Натяк пароля",
"xloc": [
- "default.handlebars->47->3073"
+ "default.handlebars->47->3074"
]
},
{
@@ -60776,7 +60785,7 @@
"uk": "Натяк пароля:",
"xloc": [
"default-mobile.handlebars->11->335",
- "default.handlebars->47->2092"
+ "default.handlebars->47->2093"
]
},
{
@@ -60891,8 +60900,8 @@
"account-invite.html->2->5",
"default-mobile.handlebars->11->327",
"default-mobile.handlebars->11->328",
- "default.handlebars->47->2084",
"default.handlebars->47->2085",
+ "default.handlebars->47->2086",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -60939,15 +60948,15 @@
"default-mobile.handlebars->11->730",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
- "default.handlebars->47->1527",
- "default.handlebars->47->1573",
- "default.handlebars->47->2517",
+ "default.handlebars->47->1528",
+ "default.handlebars->47->1574",
+ "default.handlebars->47->2518",
"default.handlebars->container->column_l->p12->termTable->1->1->4->1->3",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
- "default3.handlebars->35->1512",
- "default3.handlebars->35->1557",
- "default3.handlebars->35->2513",
+ "default3.handlebars->35->1513",
+ "default3.handlebars->35->1558",
+ "default3.handlebars->35->2514",
"default3.handlebars->container->column_l->p12->termTable->1->1->4->1->1",
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -61159,9 +61168,9 @@
"zh-cht": "執行代理指令",
"uk": "Виконати дію агента",
"xloc": [
- "default-mobile.handlebars->11->926",
- "default.handlebars->47->1767",
- "default3.handlebars->35->1749"
+ "default-mobile.handlebars->11->927",
+ "default.handlebars->47->1768",
+ "default3.handlebars->35->1750"
]
},
{
@@ -61242,9 +61251,9 @@
"zh-cht": "執行英特爾®AMT激活和配置。",
"uk": "Виконати активацію та налаштування Intel® AMT.",
"xloc": [
- "default.handlebars->47->2225",
+ "default.handlebars->47->2226",
"default.handlebars->47->491",
- "default3.handlebars->35->2220",
+ "default3.handlebars->35->2221",
"default3.handlebars->35->488"
]
},
@@ -61386,8 +61395,8 @@
"uk": "Вимкнути живлення через Intel® AMT?
ПРИМІТКА: якщо є активний сеанс AMT, команда вимкнення живлення буде відхилена, бо ви повинні спочатку від’єднати сеанси AMT!",
"xloc": [
"default-mobile.handlebars->11->598",
- "default.handlebars->47->1287",
- "default3.handlebars->35->1282"
+ "default.handlebars->47->1288",
+ "default3.handlebars->35->1283"
]
},
{
@@ -61402,15 +61411,15 @@
"pl": "Czy wykonać Intel® AMT uruchomienie do BIOS?",
"uk": "Увімкнути живлення Intel® AMT у BIOS?",
"xloc": [
- "default.handlebars->47->1291",
- "default3.handlebars->35->1286"
+ "default.handlebars->47->1292",
+ "default3.handlebars->35->1287"
]
},
{
"en": "Perform Intel® AMT power on to PXE?",
"nl": "Intel® AMT opstarten naar PXE?",
"xloc": [
- "default.handlebars->47->1295"
+ "default.handlebars->47->1296"
]
},
{
@@ -61440,8 +61449,8 @@
"uk": "Увімкнути живлення Intel® AMT?",
"xloc": [
"default-mobile.handlebars->11->596",
- "default.handlebars->47->1285",
- "default3.handlebars->35->1280"
+ "default.handlebars->47->1286",
+ "default3.handlebars->35->1281"
]
},
{
@@ -61456,15 +61465,15 @@
"pl": "Czy wykonać Intel® AMT resetowanie do BIOS?",
"uk": "Виконати скидання Intel® AMT у BIOS?",
"xloc": [
- "default.handlebars->47->1293",
- "default3.handlebars->35->1288"
+ "default.handlebars->47->1294",
+ "default3.handlebars->35->1289"
]
},
{
"en": "Perform Intel® AMT reset to PXE?",
"nl": "Intel® AMT reset naar PXE?",
"xloc": [
- "default.handlebars->47->1297"
+ "default.handlebars->47->1298"
]
},
{
@@ -61494,8 +61503,8 @@
"uk": "Виконати скидання Intel® AMT?",
"xloc": [
"default-mobile.handlebars->11->600",
- "default.handlebars->47->1289",
- "default3.handlebars->35->1284"
+ "default.handlebars->47->1290",
+ "default3.handlebars->35->1285"
]
},
{
@@ -61585,11 +61594,11 @@
"uk": "Увімкнути живлення на пристрої",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea4->1->3",
- "default.handlebars->47->1013",
+ "default.handlebars->47->1014",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1",
- "default3.handlebars->35->1010",
+ "default3.handlebars->35->1011",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea1->3",
"default3.handlebars->container->column_l->p12->termTable->1->1->0->1->3",
"default3.handlebars->container->column_l->p13->p13toolbar->1->0->1->3"
@@ -61622,7 +61631,7 @@
"uk": "Вимкнути живлення?",
"xloc": [
"default-mobile.handlebars->11->568",
- "default.handlebars->47->1111"
+ "default.handlebars->47->1112"
]
},
{
@@ -61652,7 +61661,7 @@
"uk": "Увімкнути живлення?",
"xloc": [
"default-mobile.handlebars->11->570",
- "default.handlebars->47->1113"
+ "default.handlebars->47->1114"
]
},
{
@@ -61681,8 +61690,8 @@
"zh-cht": "執行電源操作= {0},強制執行= {1}",
"uk": "Виконання керування живленням={0}, примусове={1}",
"xloc": [
- "default.handlebars->47->2549",
- "default3.handlebars->35->2545"
+ "default.handlebars->47->2550",
+ "default3.handlebars->35->2546"
]
},
{
@@ -61711,9 +61720,9 @@
"zh-cht": "沒有權限",
"uk": "У дозволі відмовлено",
"xloc": [
- "default-mobile.handlebars->11->1032",
- "default.handlebars->47->3267",
- "default3.handlebars->35->3254"
+ "default-mobile.handlebars->11->1033",
+ "default.handlebars->47->3268",
+ "default3.handlebars->35->3255"
]
},
{
@@ -61742,11 +61751,11 @@
"zh-cht": "權限",
"uk": "Дозволи",
"xloc": [
- "default-mobile.handlebars->11->1017",
- "default.handlebars->47->2413",
- "default.handlebars->47->2722",
- "default3.handlebars->35->2409",
- "default3.handlebars->35->2718"
+ "default-mobile.handlebars->11->1018",
+ "default.handlebars->47->2414",
+ "default.handlebars->47->2723",
+ "default3.handlebars->35->2410",
+ "default3.handlebars->35->2719"
]
},
{
@@ -61776,8 +61785,8 @@
"uk": "Перська/Іранська",
"xloc": [
"default-mobile.handlebars->11->240",
- "default.handlebars->47->1973",
- "default3.handlebars->35->1953",
+ "default.handlebars->47->1974",
+ "default3.handlebars->35->1954",
"login2.handlebars->7->128"
]
},
@@ -61869,14 +61878,14 @@
"default-mobile.handlebars->11->107",
"default-mobile.handlebars->11->109",
"default-mobile.handlebars->11->90",
- "default.handlebars->47->1783",
- "default.handlebars->47->1786",
+ "default.handlebars->47->1784",
+ "default.handlebars->47->1787",
"default.handlebars->47->260",
- "default.handlebars->47->3020",
- "default3.handlebars->35->1764",
- "default3.handlebars->35->1767",
+ "default.handlebars->47->3021",
+ "default3.handlebars->35->1765",
+ "default3.handlebars->35->1768",
"default3.handlebars->35->257",
- "default3.handlebars->35->3013"
+ "default3.handlebars->35->3014"
]
},
{
@@ -61905,8 +61914,8 @@
"zh-cht": "電話號碼",
"uk": "Номер Телефону",
"xloc": [
- "default.handlebars->47->2943",
- "default3.handlebars->35->2936"
+ "default.handlebars->47->2944",
+ "default3.handlebars->35->2937"
]
},
{
@@ -61936,10 +61945,10 @@
"uk": "Номер телефону:",
"xloc": [
"default-mobile.handlebars->11->108",
- "default.handlebars->47->1785",
- "default.handlebars->47->3019",
- "default3.handlebars->35->1766",
- "default3.handlebars->35->3012"
+ "default.handlebars->47->1786",
+ "default.handlebars->47->3020",
+ "default3.handlebars->35->1767",
+ "default3.handlebars->35->3013"
]
},
{
@@ -62173,8 +62182,8 @@
"uk": "Будь ласка, зачекайте трохи часу, поки буде отримано підтвердження.",
"xloc": [
"default-mobile.handlebars->11->323",
- "default.handlebars->47->2079",
- "default3.handlebars->35->2060"
+ "default.handlebars->47->2080",
+ "default3.handlebars->35->2061"
]
},
{
@@ -62204,9 +62213,9 @@
"uk": "Дія Плаґіна",
"xloc": [
"default.handlebars->47->323",
- "default.handlebars->47->3401",
+ "default.handlebars->47->3402",
"default3.handlebars->35->320",
- "default3.handlebars->35->3388"
+ "default3.handlebars->35->3389"
]
},
{
@@ -62421,8 +62430,8 @@
"uk": "Поліс",
"xloc": [
"default-mobile.handlebars->11->350",
- "default.handlebars->47->2124",
- "default3.handlebars->35->2123"
+ "default.handlebars->47->2125",
+ "default3.handlebars->35->2124"
]
},
{
@@ -62452,8 +62461,8 @@
"uk": "Польська",
"xloc": [
"default-mobile.handlebars->11->241",
- "default.handlebars->47->1974",
- "default3.handlebars->35->1954",
+ "default.handlebars->47->1975",
+ "default3.handlebars->35->1955",
"login2.handlebars->7->129"
]
},
@@ -62469,10 +62478,10 @@
"pl": "Port",
"uk": "Порт",
"xloc": [
- "default.handlebars->47->1247",
"default.handlebars->47->1248",
- "default3.handlebars->35->1242",
- "default3.handlebars->35->1243"
+ "default.handlebars->47->1249",
+ "default3.handlebars->35->1243",
+ "default3.handlebars->35->1244"
]
},
{
@@ -62553,8 +62562,8 @@
"zh-cht": "端口名稱同步",
"uk": "Синхронізація імен портів",
"xloc": [
- "default.handlebars->47->2184",
- "default3.handlebars->35->2179"
+ "default.handlebars->47->2185",
+ "default3.handlebars->35->2180"
]
},
{
@@ -62698,8 +62707,8 @@
"uk": "Португальська",
"xloc": [
"default-mobile.handlebars->11->242",
- "default.handlebars->47->1975",
- "default3.handlebars->35->1955",
+ "default.handlebars->47->1976",
+ "default3.handlebars->35->1956",
"login2.handlebars->7->130"
]
},
@@ -62730,8 +62739,8 @@
"uk": "Португальська (Бразилія)",
"xloc": [
"default-mobile.handlebars->11->243",
- "default.handlebars->47->1976",
- "default3.handlebars->35->1956",
+ "default.handlebars->47->1977",
+ "default3.handlebars->35->1957",
"login2.handlebars->7->131"
]
},
@@ -62824,10 +62833,10 @@
"xloc": [
"default-mobile.handlebars->11->567",
"default-mobile.handlebars->11->569",
- "default.handlebars->47->1110",
- "default.handlebars->47->1112",
- "default3.handlebars->35->1107",
- "default3.handlebars->35->1108"
+ "default.handlebars->47->1111",
+ "default.handlebars->47->1113",
+ "default3.handlebars->35->1108",
+ "default3.handlebars->35->1109"
]
},
{
@@ -62885,9 +62894,9 @@
"zh-cht": "電源狀態",
"uk": "Стани Живлення",
"xloc": [
- "default.handlebars->47->2465",
+ "default.handlebars->47->2466",
"default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1",
- "default3.handlebars->35->2461",
+ "default3.handlebars->35->2462",
"default3.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1"
]
},
@@ -62919,9 +62928,9 @@
"xloc": [
"default-mobile.handlebars->11->454",
"default-mobile.handlebars->11->588",
- "default.handlebars->47->1261",
+ "default.handlebars->47->1262",
"default.handlebars->47->6",
- "default3.handlebars->35->1256",
+ "default3.handlebars->35->1257",
"default3.handlebars->35->6"
]
},
@@ -63055,8 +63064,8 @@
"zh-cht": "預激活",
"uk": "Попередня активація",
"xloc": [
- "default.handlebars->47->1662",
- "default3.handlebars->35->1644"
+ "default.handlebars->47->1663",
+ "default3.handlebars->35->1645"
]
},
{
@@ -63119,8 +63128,8 @@
"zh-cht": "存在於伺服器上",
"uk": "Присутній на сервері",
"xloc": [
- "default.handlebars->47->3144",
- "default3.handlebars->35->3131"
+ "default.handlebars->47->3145",
+ "default3.handlebars->35->3132"
]
},
{
@@ -63271,13 +63280,13 @@
"xloc": [
"default-mobile.handlebars->11->95",
"default-mobile.handlebars->11->98",
- "default.handlebars->47->1778",
- "default.handlebars->47->3014",
- "default.handlebars->47->3069",
+ "default.handlebars->47->1779",
+ "default.handlebars->47->3015",
+ "default.handlebars->47->3070",
"default.handlebars->47->335",
- "default3.handlebars->35->1760",
- "default3.handlebars->35->3007",
- "default3.handlebars->35->3060",
+ "default3.handlebars->35->1761",
+ "default3.handlebars->35->3008",
+ "default3.handlebars->35->3061",
"default3.handlebars->35->332"
]
},
@@ -63308,8 +63317,8 @@
"uk": "Знімок Екрану",
"xloc": [
"default-mobile.handlebars->11->654",
- "default.handlebars->47->1418",
- "default3.handlebars->35->1405"
+ "default.handlebars->47->1419",
+ "default3.handlebars->35->1406"
]
},
{
@@ -63514,8 +63523,8 @@
"zh-cht": "進程控制",
"uk": "Керування процесом",
"xloc": [
- "default.handlebars->47->1491",
- "default3.handlebars->35->1476"
+ "default.handlebars->47->1492",
+ "default3.handlebars->35->1477"
]
},
{
@@ -63544,8 +63553,8 @@
"zh-cht": "流程詳情,#{0}",
"uk": "Деталі Процесу, #{0}",
"xloc": [
- "default.handlebars->47->1454",
- "default3.handlebars->35->1441"
+ "default.handlebars->47->1455",
+ "default3.handlebars->35->1442"
]
},
{
@@ -63634,8 +63643,8 @@
"zh-cht": "處理控制台命令:“{0}”",
"uk": "Обробка консольної команди: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2541",
- "default3.handlebars->35->2537"
+ "default.handlebars->47->2542",
+ "default3.handlebars->35->2538"
]
},
{
@@ -63694,8 +63703,8 @@
"zh-cht": "用戶同意提示",
"uk": "Запитати згоди",
"xloc": [
- "default.handlebars->47->1245",
- "default3.handlebars->35->1240"
+ "default.handlebars->47->1246",
+ "default3.handlebars->35->1241"
]
},
{
@@ -63724,12 +63733,12 @@
"zh-cht": "用戶同意提示",
"uk": "Запит згоди користувача",
"xloc": [
- "default.handlebars->47->2319",
- "default.handlebars->47->2323",
- "default.handlebars->47->2326",
- "default3.handlebars->35->2315",
- "default3.handlebars->35->2319",
- "default3.handlebars->35->2322"
+ "default.handlebars->47->2320",
+ "default.handlebars->47->2324",
+ "default.handlebars->47->2327",
+ "default3.handlebars->35->2316",
+ "default3.handlebars->35->2320",
+ "default3.handlebars->35->2323"
]
},
{
@@ -63758,8 +63767,8 @@
"zh-cht": "協議",
"uk": "Протокол",
"xloc": [
- "default.handlebars->47->3142",
- "default3.handlebars->35->3129",
+ "default.handlebars->47->3143",
+ "default3.handlebars->35->3130",
"player.handlebars->3->32"
]
},
@@ -63789,8 +63798,8 @@
"zh-cht": "協議協商失敗 ({0})",
"uk": "Помилка узгодження протоколу ({0})",
"xloc": [
- "default.handlebars->47->1380",
- "default3.handlebars->35->1367"
+ "default.handlebars->47->1381",
+ "default3.handlebars->35->1368"
]
},
{
@@ -63845,9 +63854,9 @@
"zh-cht": "配置狀態",
"uk": "Стан Ініціалізації",
"xloc": [
- "default-mobile.handlebars->11->826",
- "default.handlebars->47->1666",
- "default3.handlebars->35->1648"
+ "default-mobile.handlebars->11->827",
+ "default.handlebars->47->1667",
+ "default3.handlebars->35->1649"
]
},
{
@@ -63903,8 +63912,8 @@
"uk": "Публічне Посилання",
"xloc": [
"default-mobile.handlebars->11->365",
- "default.handlebars->47->2500",
- "default3.handlebars->35->2496"
+ "default.handlebars->47->2501",
+ "default3.handlebars->35->2497"
]
},
{
@@ -63936,7 +63945,7 @@
{
"en": "Pulse",
"xloc": [
- "default3.handlebars->35->2083"
+ "default3.handlebars->35->2084"
]
},
{
@@ -63966,8 +63975,8 @@
"uk": "Пенджабі",
"xloc": [
"default-mobile.handlebars->11->244",
- "default.handlebars->47->1977",
- "default3.handlebars->35->1957",
+ "default.handlebars->47->1978",
+ "default3.handlebars->35->1958",
"login2.handlebars->7->132"
]
},
@@ -63998,8 +64007,8 @@
"uk": "Пенджабі (Індія)",
"xloc": [
"default-mobile.handlebars->11->245",
- "default.handlebars->47->1978",
- "default3.handlebars->35->1958",
+ "default.handlebars->47->1979",
+ "default3.handlebars->35->1959",
"login2.handlebars->7->133"
]
},
@@ -64030,8 +64039,8 @@
"uk": "Пенджабі (Пакистан)",
"xloc": [
"default-mobile.handlebars->11->246",
- "default.handlebars->47->1979",
- "default3.handlebars->35->1959",
+ "default.handlebars->47->1980",
+ "default3.handlebars->35->1960",
"login2.handlebars->7->134"
]
},
@@ -64092,8 +64101,8 @@
"zh-cht": "推送通知",
"uk": "Push-повідомлення",
"xloc": [
- "default.handlebars->47->3223",
- "default3.handlebars->35->3210"
+ "default.handlebars->47->3224",
+ "default3.handlebars->35->3211"
]
},
{
@@ -64161,10 +64170,10 @@
"pl": "Pushover",
"uk": "Pushover",
"xloc": [
- "default.handlebars->47->1795",
- "default.handlebars->47->3027",
- "default3.handlebars->35->1776",
- "default3.handlebars->35->3020"
+ "default.handlebars->47->1796",
+ "default.handlebars->47->3028",
+ "default3.handlebars->35->1777",
+ "default3.handlebars->35->3021"
]
},
{
@@ -64253,8 +64262,8 @@
"uk": "Кечуа",
"xloc": [
"default-mobile.handlebars->11->247",
- "default.handlebars->47->1980",
- "default3.handlebars->35->1960",
+ "default.handlebars->47->1981",
+ "default3.handlebars->35->1961",
"login2.handlebars->7->135"
]
},
@@ -64376,15 +64385,15 @@
"xloc": [
"default-mobile.handlebars->11->544",
"default-mobile.handlebars->11->548",
- "default.handlebars->47->1003",
- "default.handlebars->47->1007",
- "default.handlebars->47->1047",
+ "default.handlebars->47->1004",
+ "default.handlebars->47->1008",
+ "default.handlebars->47->1048",
"default.handlebars->47->446",
"default.handlebars->container->dialog->dialogBody->dialog7->1->td7rdpkvm",
"default.handlebars->contextMenu->cxrdp",
- "default3.handlebars->35->1000",
- "default3.handlebars->35->1004",
- "default3.handlebars->35->1044",
+ "default3.handlebars->35->1001",
+ "default3.handlebars->35->1005",
+ "default3.handlebars->35->1045",
"default3.handlebars->35->443",
"default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog7->1->td7rdpkvm",
"default3.handlebars->contextMenu->cxrdp"
@@ -64476,8 +64485,8 @@
"zh-cht": "RDP 憑證",
"uk": "Облікові дані RDP",
"xloc": [
- "default.handlebars->47->1399",
- "default3.handlebars->35->1386"
+ "default.handlebars->47->1400",
+ "default3.handlebars->35->1387"
]
},
{
@@ -64512,8 +64521,8 @@
"nl": "RDP Poort {0}",
"uk": "RDP порт {0}",
"xloc": [
- "default.handlebars->47->1373",
- "default3.handlebars->35->1360"
+ "default.handlebars->47->1374",
+ "default3.handlebars->35->1361"
]
},
{
@@ -64662,8 +64671,8 @@
"zh-cht": "RSS",
"uk": "RSS",
"xloc": [
- "default.handlebars->47->3359",
- "default3.handlebars->35->3346"
+ "default.handlebars->47->3360",
+ "default3.handlebars->35->3347"
]
},
{
@@ -64721,8 +64730,8 @@
"zh-cht": "隨機密碼",
"uk": "Випадковий пароль",
"xloc": [
- "default.handlebars->47->2282",
- "default3.handlebars->35->2275"
+ "default.handlebars->47->2283",
+ "default3.handlebars->35->2276"
]
},
{
@@ -64751,8 +64760,8 @@
"zh-cht": "隨機密碼。",
"uk": "Випадковий пароль.",
"xloc": [
- "default.handlebars->47->2808",
- "default3.handlebars->35->2803"
+ "default.handlebars->47->2809",
+ "default3.handlebars->35->2804"
]
},
{
@@ -64781,8 +64790,8 @@
"zh-cht": "力登 Dominion KX III",
"uk": "Raritan Dominion KX III",
"xloc": [
- "default.handlebars->47->2113",
- "default3.handlebars->35->2112"
+ "default.handlebars->47->2114",
+ "default3.handlebars->35->2113"
]
},
{
@@ -64897,11 +64906,11 @@
"zh-cht": "真正的名字",
"uk": "Справжнє Ім'я",
"xloc": [
- "default.handlebars->47->2940",
- "default.handlebars->47->2942",
- "default.handlebars->47->3062",
- "default3.handlebars->35->2933",
- "default3.handlebars->35->2935"
+ "default.handlebars->47->2941",
+ "default.handlebars->47->2943",
+ "default.handlebars->47->3063",
+ "default3.handlebars->35->2934",
+ "default3.handlebars->35->2936"
]
},
{
@@ -64945,7 +64954,7 @@
"zh-cht": "境界",
"uk": "Області",
"xloc": [
- "default.handlebars->47->2817"
+ "default.handlebars->47->2818"
]
},
{
@@ -64975,8 +64984,8 @@
"uk": "Отримано недійсні дані мережі",
"xloc": [
"default-mobile.handlebars->11->645",
- "default.handlebars->47->1378",
- "default3.handlebars->35->1365",
+ "default.handlebars->47->1379",
+ "default3.handlebars->35->1366",
"sharing.handlebars->11->10",
"sharing.handlebars->11->32"
]
@@ -64984,7 +64993,7 @@
{
"en": "Recent Themes",
"xloc": [
- "default3.handlebars->35->2094"
+ "default3.handlebars->35->2095"
]
},
{
@@ -65013,12 +65022,12 @@
"zh-cht": "記錄會議",
"uk": "Запис Сеансів",
"xloc": [
- "default.handlebars->47->2186",
- "default.handlebars->47->2867",
- "default.handlebars->47->2948",
- "default3.handlebars->35->2181",
- "default3.handlebars->35->2860",
- "default3.handlebars->35->2941"
+ "default.handlebars->47->2187",
+ "default.handlebars->47->2868",
+ "default.handlebars->47->2949",
+ "default3.handlebars->35->2182",
+ "default3.handlebars->35->2861",
+ "default3.handlebars->35->2942"
]
},
{
@@ -65077,12 +65086,12 @@
"zh-cht": "記錄會議",
"uk": "Запис сеансу",
"xloc": [
- "default.handlebars->47->2327",
- "default.handlebars->47->2905",
- "default.handlebars->47->3050",
- "default3.handlebars->35->2323",
- "default3.handlebars->35->2898",
- "default3.handlebars->35->3043"
+ "default.handlebars->47->2328",
+ "default.handlebars->47->2906",
+ "default.handlebars->47->3051",
+ "default3.handlebars->35->2324",
+ "default3.handlebars->35->2899",
+ "default3.handlebars->35->3044"
]
},
{
@@ -65111,8 +65120,8 @@
"zh-cht": "記錄細節",
"uk": "Деталі запису",
"xloc": [
- "default.handlebars->47->3156",
- "default3.handlebars->35->3143"
+ "default.handlebars->47->3157",
+ "default3.handlebars->35->3144"
]
},
{
@@ -65152,9 +65161,9 @@
"pl": "Hasło Odzyskiwania",
"uk": "Відновлення Пароля",
"xloc": [
- "default-mobile.handlebars->11->915",
- "default.handlebars->47->1755",
- "default3.handlebars->35->1737"
+ "default-mobile.handlebars->11->916",
+ "default.handlebars->47->1756",
+ "default3.handlebars->35->1738"
]
},
{
@@ -65215,8 +65224,8 @@
"zh-cht": "每天重複",
"uk": "Повторювати щодня",
"xloc": [
- "default.handlebars->47->1235",
- "default3.handlebars->35->1230"
+ "default.handlebars->47->1236",
+ "default3.handlebars->35->1231"
]
},
{
@@ -65245,8 +65254,8 @@
"zh-cht": "每週重複",
"uk": "Повторювати щотижня",
"xloc": [
- "default.handlebars->47->1236",
- "default3.handlebars->35->1231"
+ "default.handlebars->47->1237",
+ "default3.handlebars->35->1232"
]
},
{
@@ -65303,10 +65312,10 @@
"xloc": [
"default-mobile.handlebars->11->371",
"default-mobile.handlebars->11->718",
- "default.handlebars->47->1559",
- "default.handlebars->47->2507",
- "default3.handlebars->35->1543",
- "default3.handlebars->35->2503",
+ "default.handlebars->47->1560",
+ "default.handlebars->47->2508",
+ "default3.handlebars->35->1544",
+ "default3.handlebars->35->2504",
"sharing.handlebars->11->60"
]
},
@@ -65501,17 +65510,17 @@
"uk": "Ретрансляція",
"xloc": [
"default-mobile.handlebars->11->478",
- "default.handlebars->47->1147",
- "default.handlebars->47->1172",
- "default.handlebars->47->2409",
- "default.handlebars->47->3341",
+ "default.handlebars->47->1148",
+ "default.handlebars->47->1173",
+ "default.handlebars->47->2410",
+ "default.handlebars->47->3342",
"default.handlebars->47->421",
"default.handlebars->47->425",
"default.handlebars->47->727",
- "default3.handlebars->35->1142",
- "default3.handlebars->35->1167",
- "default3.handlebars->35->2405",
- "default3.handlebars->35->3328",
+ "default3.handlebars->35->1143",
+ "default3.handlebars->35->1168",
+ "default3.handlebars->35->2406",
+ "default3.handlebars->35->3329",
"default3.handlebars->35->418",
"default3.handlebars->35->422",
"default3.handlebars->35->724"
@@ -65543,8 +65552,8 @@
"zh-cht": "中繼數量",
"uk": "Лічильник Ретрансляцій",
"xloc": [
- "default.handlebars->47->3326",
- "default3.handlebars->35->3313"
+ "default.handlebars->47->3327",
+ "default3.handlebars->35->3314"
]
},
{
@@ -65573,14 +65582,14 @@
"zh-cht": "繼電器裝置",
"uk": "Пристрій Ретрансляції",
"xloc": [
- "default-mobile.handlebars->11->949",
- "default-mobile.handlebars->11->965",
- "default.handlebars->47->2110",
- "default.handlebars->47->2177",
- "default.handlebars->47->2308",
- "default3.handlebars->35->2109",
- "default3.handlebars->35->2172",
- "default3.handlebars->35->2302"
+ "default-mobile.handlebars->11->950",
+ "default-mobile.handlebars->11->966",
+ "default.handlebars->47->2111",
+ "default.handlebars->47->2178",
+ "default.handlebars->47->2309",
+ "default3.handlebars->35->2110",
+ "default3.handlebars->35->2173",
+ "default3.handlebars->35->2303"
]
},
{
@@ -65609,8 +65618,8 @@
"zh-cht": "中繼錯誤",
"uk": "Помилки Ретрансляції",
"xloc": [
- "default.handlebars->47->3319",
- "default3.handlebars->35->3306"
+ "default.handlebars->47->3320",
+ "default3.handlebars->35->3307"
]
},
{
@@ -65679,10 +65688,10 @@
"zh-cht": "中繼連接",
"uk": "Сеанси Ретрансляції",
"xloc": [
- "default.handlebars->47->3325",
- "default.handlebars->47->3353",
- "default3.handlebars->35->3312",
- "default3.handlebars->35->3340"
+ "default.handlebars->47->3326",
+ "default.handlebars->47->3354",
+ "default3.handlebars->35->3313",
+ "default3.handlebars->35->3341"
]
},
{
@@ -65711,8 +65720,8 @@
"zh-cht": "繼電器裝置",
"uk": "Пристрій Рестранслятор",
"xloc": [
- "default.handlebars->47->2692",
- "default3.handlebars->35->2688"
+ "default.handlebars->47->2693",
+ "default3.handlebars->35->2689"
]
},
{
@@ -65741,8 +65750,8 @@
"zh-cht": "繼電器",
"uk": "Ретрансляція для",
"xloc": [
- "default.handlebars->47->1010",
- "default3.handlebars->35->1007"
+ "default.handlebars->47->1011",
+ "default3.handlebars->35->1008"
]
},
{
@@ -65797,8 +65806,8 @@
"zh-cht": "記住設備",
"uk": "Запам'ятати пристрій",
"xloc": [
- "default.handlebars->47->3225",
- "default3.handlebars->35->3212"
+ "default.handlebars->47->3226",
+ "default3.handlebars->35->3213"
]
},
{
@@ -65828,10 +65837,10 @@
"uk": "Запам'ятати облікові дані",
"xloc": [
"default-mobile.handlebars->11->693",
- "default.handlebars->47->1396",
- "default.handlebars->47->1507",
- "default3.handlebars->35->1383",
- "default3.handlebars->35->1492",
+ "default.handlebars->47->1397",
+ "default.handlebars->47->1508",
+ "default3.handlebars->35->1384",
+ "default3.handlebars->35->1493",
"mstsc.handlebars->main->1->3->1->rowremember->3->0",
"ssh.handlebars->3->14"
]
@@ -65863,8 +65872,8 @@
"uk": "Запам'ятати пароль",
"xloc": [
"default-mobile.handlebars->11->698",
- "default.handlebars->47->1512",
- "default3.handlebars->35->1497",
+ "default.handlebars->47->1513",
+ "default3.handlebars->35->1498",
"ssh.handlebars->3->19"
]
},
@@ -65979,8 +65988,8 @@
"uk": "Запам'ятати користувача та ключ",
"xloc": [
"default-mobile.handlebars->11->697",
- "default.handlebars->47->1511",
- "default3.handlebars->35->1496",
+ "default.handlebars->47->1512",
+ "default3.handlebars->35->1497",
"ssh.handlebars->3->18"
]
},
@@ -66124,8 +66133,8 @@
"zh-cht": "遠程剪貼板",
"uk": "Віддалений Буфер Обміну",
"xloc": [
- "default.handlebars->47->1452",
- "default3.handlebars->35->1439"
+ "default.handlebars->47->1453",
+ "default3.handlebars->35->1440"
]
},
{
@@ -66154,9 +66163,9 @@
"zh-cht": "遠程命令",
"uk": "Віддалені Команди",
"xloc": [
- "default-mobile.handlebars->11->992",
- "default.handlebars->47->2367",
- "default3.handlebars->35->2363"
+ "default-mobile.handlebars->11->993",
+ "default.handlebars->47->2368",
+ "default3.handlebars->35->2364"
]
},
{
@@ -66185,16 +66194,16 @@
"zh-cht": "遙控",
"uk": "Дистанційне Керування",
"xloc": [
+ "default-mobile.handlebars->11->1000",
"default-mobile.handlebars->11->556",
"default-mobile.handlebars->11->557",
- "default-mobile.handlebars->11->979",
- "default-mobile.handlebars->11->999",
- "default.handlebars->47->1030",
+ "default-mobile.handlebars->11->980",
"default.handlebars->47->1031",
- "default.handlebars->47->2391",
- "default3.handlebars->35->1027",
+ "default.handlebars->47->1032",
+ "default.handlebars->47->2392",
"default3.handlebars->35->1028",
- "default3.handlebars->35->2387"
+ "default3.handlebars->35->1029",
+ "default3.handlebars->35->2388"
]
},
{
@@ -66208,8 +66217,8 @@
"pl": "Zdalne Sterowanie i Przekierowanie",
"uk": "Дистанційне Керування та Перенаправлення",
"xloc": [
- "default.handlebars->47->2352",
- "default3.handlebars->35->2348"
+ "default.handlebars->47->2353",
+ "default3.handlebars->35->2349"
]
},
{
@@ -66362,10 +66371,10 @@
"zh-cht": "遠程桌面連接欄已激活/更新",
"uk": "Панель підключення до віддаленої стільниці активовано/оновлено",
"xloc": [
- "default.handlebars->47->2555",
- "default.handlebars->47->2561",
- "default3.handlebars->35->2551",
- "default3.handlebars->35->2557"
+ "default.handlebars->47->2556",
+ "default.handlebars->47->2562",
+ "default3.handlebars->35->2552",
+ "default3.handlebars->35->2558"
]
},
{
@@ -66394,8 +66403,8 @@
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"uk": "Панель підключення до віддаленої стільниці не працює або не підтримується",
"xloc": [
- "default.handlebars->47->2556",
- "default3.handlebars->35->2552"
+ "default.handlebars->47->2557",
+ "default3.handlebars->35->2553"
]
},
{
@@ -66424,8 +66433,8 @@
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"uk": "Панель підключення до віддаленої стільниці не працює або не підтримується",
"xloc": [
- "default.handlebars->47->2562",
- "default3.handlebars->35->2558"
+ "default.handlebars->47->2563",
+ "default3.handlebars->35->2559"
]
},
{
@@ -66454,12 +66463,12 @@
"zh-cht": "本地用戶強行關閉了遠程桌面連接",
"uk": "Локальний користувач примусово закрив підключення до віддаленої стільниці",
"xloc": [
- "default.handlebars->47->2553",
- "default.handlebars->47->2557",
- "default.handlebars->47->2563",
- "default3.handlebars->35->2549",
- "default3.handlebars->35->2553",
- "default3.handlebars->35->2559"
+ "default.handlebars->47->2554",
+ "default.handlebars->47->2558",
+ "default.handlebars->47->2564",
+ "default3.handlebars->35->2550",
+ "default3.handlebars->35->2554",
+ "default3.handlebars->35->2560"
]
},
{
@@ -66545,9 +66554,9 @@
"uk": "Налаштування Віддаленої Стільниці",
"xloc": [
"default-mobile.handlebars->11->647",
- "default.handlebars->47->1408",
+ "default.handlebars->47->1409",
"default.handlebars->47->486",
- "default3.handlebars->35->1395",
+ "default3.handlebars->35->1396",
"default3.handlebars->35->483",
"sharing.handlebars->11->20"
]
@@ -66764,8 +66773,8 @@
"zh-cht": "遠程輸入鎖定",
"uk": "Віддалене Блокування Введення",
"xloc": [
- "default.handlebars->47->1188",
- "default3.handlebars->35->1183"
+ "default.handlebars->47->1189",
+ "default3.handlebars->35->1184"
]
},
{
@@ -66794,8 +66803,8 @@
"zh-cht": "遠程鍵盤輸入",
"uk": "Віддалене Введення з Клавіатури",
"xloc": [
- "default.handlebars->47->1448",
- "default3.handlebars->35->1435",
+ "default.handlebars->47->1449",
+ "default3.handlebars->35->1436",
"sharing.handlebars->11->22"
]
},
@@ -66825,7 +66834,7 @@
"zh-cht": "遠程網格用戶",
"uk": "Віддалений Користувач Mesh",
"xloc": [
- "default-mobile.handlebars->11->1020"
+ "default-mobile.handlebars->11->1021"
]
},
{
@@ -66880,8 +66889,8 @@
"zh-cht": "遠程會話",
"uk": "Віддалені Сеанси",
"xloc": [
- "default.handlebars->47->3158",
- "default3.handlebars->35->3145"
+ "default.handlebars->47->3159",
+ "default3.handlebars->35->3146"
]
},
{
@@ -67048,14 +67057,14 @@
"zh-cht": "僅遠程查看",
"uk": "Лише Віддалений Перегляд",
"xloc": [
- "default-mobile.handlebars->11->1004",
- "default-mobile.handlebars->11->980",
- "default.handlebars->47->2353",
- "default.handlebars->47->2396",
- "default.handlebars->47->3053",
- "default3.handlebars->35->2349",
- "default3.handlebars->35->2392",
- "default3.handlebars->35->3046"
+ "default-mobile.handlebars->11->1005",
+ "default-mobile.handlebars->11->981",
+ "default.handlebars->47->2354",
+ "default.handlebars->47->2397",
+ "default.handlebars->47->3054",
+ "default3.handlebars->35->2350",
+ "default3.handlebars->35->2393",
+ "default3.handlebars->35->3047"
]
},
{
@@ -67084,8 +67093,8 @@
"zh-cht": "遠程剪貼板的有效期為60秒。",
"uk": "Віддалений буфер дійсний впродовж 60 секунд.",
"xloc": [
- "default.handlebars->47->1451",
- "default3.handlebars->35->1438"
+ "default.handlebars->47->1452",
+ "default3.handlebars->35->1439"
]
},
{
@@ -67214,15 +67223,15 @@
"pl": "Wyjmowane",
"uk": "Змінний",
"xloc": [
- "default-mobile.handlebars->11->888",
- "default-mobile.handlebars->11->900",
- "default-mobile.handlebars->11->907",
- "default.handlebars->47->1728",
- "default.handlebars->47->1740",
- "default.handlebars->47->1747",
- "default3.handlebars->35->1710",
- "default3.handlebars->35->1722",
- "default3.handlebars->35->1729"
+ "default-mobile.handlebars->11->889",
+ "default-mobile.handlebars->11->901",
+ "default-mobile.handlebars->11->908",
+ "default.handlebars->47->1729",
+ "default.handlebars->47->1741",
+ "default.handlebars->47->1748",
+ "default3.handlebars->35->1711",
+ "default3.handlebars->35->1723",
+ "default3.handlebars->35->1730"
]
},
{
@@ -67307,8 +67316,8 @@
"zh-cht": "刪除配置",
"uk": "Видалити Конфігурацію",
"xloc": [
- "default.handlebars->47->2145",
- "default3.handlebars->35->2144"
+ "default.handlebars->47->2146",
+ "default3.handlebars->35->2145"
]
},
{
@@ -67389,10 +67398,10 @@
"zh-cht": "刪除裝置群權限",
"uk": "Видалити дозволи групи пристроїв",
"xloc": [
- "default.handlebars->47->2909",
- "default.handlebars->47->3114",
- "default3.handlebars->35->2902",
- "default3.handlebars->35->3101"
+ "default.handlebars->47->2910",
+ "default.handlebars->47->3115",
+ "default3.handlebars->35->2903",
+ "default3.handlebars->35->3102"
]
},
{
@@ -67421,10 +67430,10 @@
"zh-cht": "刪除裝置權限",
"uk": "Видалити дозволи пристрою",
"xloc": [
- "default.handlebars->47->2907",
- "default.handlebars->47->3101",
- "default3.handlebars->35->2900",
- "default3.handlebars->35->3088"
+ "default.handlebars->47->2908",
+ "default.handlebars->47->3102",
+ "default3.handlebars->35->2901",
+ "default3.handlebars->35->3089"
]
},
{
@@ -67453,8 +67462,8 @@
"zh-cht": "刪除設備共享",
"uk": "Видалити поширення до пристрою",
"xloc": [
- "default.handlebars->47->3099",
- "default3.handlebars->35->3086"
+ "default.handlebars->47->3100",
+ "default3.handlebars->35->3087"
]
},
{
@@ -67483,8 +67492,8 @@
"zh-cht": "刪除登錄令牌",
"uk": "Видалити токен входу",
"xloc": [
- "default.handlebars->47->2137",
- "default3.handlebars->35->2136"
+ "default.handlebars->47->2138",
+ "default3.handlebars->35->2137"
]
},
{
@@ -67553,8 +67562,8 @@
"zh-cht": "刪除用戶群成員身份",
"uk": "Видалити належність до групи користувачів",
"xloc": [
- "default.handlebars->47->3110",
- "default3.handlebars->35->3097"
+ "default.handlebars->47->3111",
+ "default3.handlebars->35->3098"
]
},
{
@@ -67583,10 +67592,10 @@
"zh-cht": "刪除用戶群權限",
"uk": "Видалити дозволи групи користувачів",
"xloc": [
- "default.handlebars->47->2418",
- "default.handlebars->47->3106",
- "default3.handlebars->35->2414",
- "default3.handlebars->35->3093"
+ "default.handlebars->47->2419",
+ "default.handlebars->47->3107",
+ "default3.handlebars->35->2415",
+ "default3.handlebars->35->3094"
]
},
{
@@ -67615,8 +67624,8 @@
"zh-cht": "刪除用戶成員資格",
"uk": "Видалити приналежність користувача",
"xloc": [
- "default.handlebars->47->2917",
- "default3.handlebars->35->2910"
+ "default.handlebars->47->2918",
+ "default3.handlebars->35->2911"
]
},
{
@@ -67645,10 +67654,10 @@
"zh-cht": "刪除用戶權限",
"uk": "Видалити дозволи користувача",
"xloc": [
- "default.handlebars->47->2416",
- "default.handlebars->47->3103",
- "default3.handlebars->35->2412",
- "default3.handlebars->35->3090"
+ "default.handlebars->47->2417",
+ "default.handlebars->47->3104",
+ "default3.handlebars->35->2413",
+ "default3.handlebars->35->3091"
]
},
{
@@ -67677,8 +67686,8 @@
"zh-cht": "刪除所有二因子鑑別。",
"uk": "Видалити всі двофакторні автентифікації.",
"xloc": [
- "default.handlebars->47->3076",
- "default3.handlebars->35->3063"
+ "default.handlebars->47->3077",
+ "default3.handlebars->35->3064"
]
},
{
@@ -67707,8 +67716,8 @@
"zh-cht": "刪除此用戶標識的所有先前事件。",
"uk": "Видалити всі попередні події для цього ідентифікатора користувача.",
"xloc": [
- "default.handlebars->47->2809",
- "default3.handlebars->35->2804"
+ "default.handlebars->47->2810",
+ "default3.handlebars->35->2805"
]
},
{
@@ -67737,8 +67746,8 @@
"zh-cht": "斷開連接後删除裝置",
"uk": "Видалити пристрій після відключення",
"xloc": [
- "default.handlebars->47->2330",
- "default3.handlebars->35->2326"
+ "default.handlebars->47->2331",
+ "default3.handlebars->35->2327"
]
},
{
@@ -67767,10 +67776,10 @@
"zh-cht": "刪除設備共享",
"uk": "Видалити поширення до пристрою",
"xloc": [
- "default.handlebars->47->1090",
- "default.handlebars->47->2240",
- "default3.handlebars->35->1087",
- "default3.handlebars->35->2235"
+ "default.handlebars->47->1091",
+ "default.handlebars->47->2241",
+ "default3.handlebars->35->1088",
+ "default3.handlebars->35->2236"
]
},
{
@@ -67799,8 +67808,8 @@
"zh-cht": "刪除非活動",
"uk": "Видалити неактивний",
"xloc": [
- "default.handlebars->47->2187",
- "default3.handlebars->35->2182"
+ "default.handlebars->47->2188",
+ "default3.handlebars->35->2183"
]
},
{
@@ -67829,8 +67838,8 @@
"zh-cht": "刪除登錄令牌",
"uk": "Видалити токен входу",
"xloc": [
- "default.handlebars->47->2132",
- "default3.handlebars->35->2131"
+ "default.handlebars->47->2133",
+ "default3.handlebars->35->2132"
]
},
{
@@ -67844,8 +67853,8 @@
"pl": "Usuń obsługę komunikatora",
"uk": "Видалити підтримку месенджера",
"xloc": [
- "default.handlebars->47->1788",
- "default3.handlebars->35->1769"
+ "default.handlebars->47->1789",
+ "default3.handlebars->35->1770"
]
},
{
@@ -67905,8 +67914,8 @@
"uk": "Видалити номер телефону",
"xloc": [
"default-mobile.handlebars->11->106",
- "default.handlebars->47->1782",
- "default3.handlebars->35->1763"
+ "default.handlebars->47->1783",
+ "default3.handlebars->35->1764"
]
},
{
@@ -67965,8 +67974,8 @@
"zh-cht": "刪除此裝置",
"uk": "Видалити цей пристрій",
"xloc": [
- "default.handlebars->47->1034",
- "default3.handlebars->35->1031"
+ "default.handlebars->47->1035",
+ "default3.handlebars->35->1032"
]
},
{
@@ -67995,8 +68004,8 @@
"zh-cht": "刪除此用戶",
"uk": "Видалити цього користувача",
"xloc": [
- "default.handlebars->47->3009",
- "default3.handlebars->35->3002"
+ "default.handlebars->47->3010",
+ "default3.handlebars->35->3003"
]
},
{
@@ -68025,8 +68034,8 @@
"zh-cht": "刪除用戶群成員身份",
"uk": "Видалити приналежність до групи користувачів",
"xloc": [
- "default.handlebars->47->3090",
- "default3.handlebars->35->3077"
+ "default.handlebars->47->3091",
+ "default3.handlebars->35->3078"
]
},
{
@@ -68055,8 +68064,8 @@
"zh-cht": "刪除此裝置的用戶群權限",
"uk": "Видалити права групи користувачів на цьому пристрої",
"xloc": [
- "default.handlebars->47->2901",
- "default3.handlebars->35->2894"
+ "default.handlebars->47->2902",
+ "default3.handlebars->35->2895"
]
},
{
@@ -68085,10 +68094,10 @@
"zh-cht": "刪除此裝置群的用戶群權限",
"uk": "Видалити права групи користувачів на цю групу пристроїв",
"xloc": [
- "default.handlebars->47->1083",
- "default.handlebars->47->2895",
- "default3.handlebars->35->1080",
- "default3.handlebars->35->2888"
+ "default.handlebars->47->1084",
+ "default.handlebars->47->2896",
+ "default3.handlebars->35->1081",
+ "default3.handlebars->35->2889"
]
},
{
@@ -68117,16 +68126,16 @@
"zh-cht": "刪除此裝置群的用戶權限",
"uk": "Видалити права користувача для цієї групи пристроїв",
"xloc": [
- "default.handlebars->47->1084",
- "default.handlebars->47->2236",
- "default.handlebars->47->2889",
- "default.handlebars->47->3084",
- "default.handlebars->47->3096",
- "default3.handlebars->35->1081",
- "default3.handlebars->35->2231",
- "default3.handlebars->35->2882",
- "default3.handlebars->35->3071",
- "default3.handlebars->35->3083"
+ "default.handlebars->47->1085",
+ "default.handlebars->47->2237",
+ "default.handlebars->47->2890",
+ "default.handlebars->47->3085",
+ "default.handlebars->47->3097",
+ "default3.handlebars->35->1082",
+ "default3.handlebars->35->2232",
+ "default3.handlebars->35->2883",
+ "default3.handlebars->35->3072",
+ "default3.handlebars->35->3084"
]
},
{
@@ -68181,8 +68190,8 @@
"zh-cht": "刪除了帳戶顯示名稱。",
"uk": "Відображене ім'я акаунту видалено.",
"xloc": [
- "default.handlebars->47->2653",
- "default3.handlebars->35->2649"
+ "default.handlebars->47->2654",
+ "default3.handlebars->35->2650"
]
},
{
@@ -68211,8 +68220,8 @@
"zh-cht": "刪除身份驗證應用程序",
"uk": "Програму автентифікації видалено",
"xloc": [
- "default.handlebars->47->2615",
- "default3.handlebars->35->2611"
+ "default.handlebars->47->2616",
+ "default3.handlebars->35->2612"
]
},
{
@@ -68241,8 +68250,8 @@
"zh-cht": "刪除的設備共享{0}",
"uk": "Спільний доступ до пристрою видалено {0}",
"xloc": [
- "default.handlebars->47->2626",
- "default3.handlebars->35->2622"
+ "default.handlebars->47->2627",
+ "default3.handlebars->35->2623"
]
},
{
@@ -68271,8 +68280,8 @@
"zh-cht": "從設備組{1}中刪除了設備{0}",
"uk": "Пристрій {0} видалено з групи пристроїв {1}",
"xloc": [
- "default.handlebars->47->2611",
- "default3.handlebars->35->2607"
+ "default.handlebars->47->2612",
+ "default3.handlebars->35->2608"
]
},
{
@@ -68301,8 +68310,8 @@
"zh-cht": "刪除了登錄令牌",
"uk": "Токен входу видалено",
"xloc": [
- "default.handlebars->47->2640",
- "default3.handlebars->35->2636"
+ "default.handlebars->47->2641",
+ "default3.handlebars->35->2637"
]
},
{
@@ -68316,8 +68325,8 @@
"pl": "Usunięto konto komunikatora użytkownika {0}",
"uk": "токен входу видалено",
"xloc": [
- "default.handlebars->47->2681",
- "default3.handlebars->35->2677"
+ "default.handlebars->47->2682",
+ "default3.handlebars->35->2678"
]
},
{
@@ -68346,8 +68355,8 @@
"zh-cht": "已刪除用戶{0}的電話號碼",
"uk": "Видалено номер телефону користувача {0}",
"xloc": [
- "default.handlebars->47->2621",
- "default3.handlebars->35->2617"
+ "default.handlebars->47->2622",
+ "default3.handlebars->35->2618"
]
},
{
@@ -68376,8 +68385,8 @@
"zh-cht": "移除推送通知認證設備",
"uk": "Видалено пристрій автентифікації push-повідомлень",
"xloc": [
- "default.handlebars->47->2638",
- "default3.handlebars->35->2634"
+ "default.handlebars->47->2639",
+ "default3.handlebars->35->2635"
]
},
{
@@ -68406,8 +68415,8 @@
"zh-cht": "移除安全密鑰",
"uk": "Ключ безпеки видалено",
"xloc": [
- "default.handlebars->47->2618",
- "default3.handlebars->35->2614"
+ "default.handlebars->47->2619",
+ "default3.handlebars->35->2615"
]
},
{
@@ -68436,12 +68445,12 @@
"zh-cht": "刪除了{0}的用戶設備權限",
"uk": "Права користувача пристрою видалено для {0}",
"xloc": [
- "default.handlebars->47->2584",
- "default.handlebars->47->2605",
- "default.handlebars->47->2610",
- "default3.handlebars->35->2580",
- "default3.handlebars->35->2601",
- "default3.handlebars->35->2606"
+ "default.handlebars->47->2585",
+ "default.handlebars->47->2606",
+ "default.handlebars->47->2611",
+ "default3.handlebars->35->2581",
+ "default3.handlebars->35->2602",
+ "default3.handlebars->35->2607"
]
},
{
@@ -68470,8 +68479,8 @@
"zh-cht": "從設備組{1}中刪除了用戶組{0}",
"uk": "Групу користувачів {0} видалено з групи пристроїв {1}",
"xloc": [
- "default.handlebars->47->2594",
- "default3.handlebars->35->2590"
+ "default.handlebars->47->2595",
+ "default3.handlebars->35->2591"
]
},
{
@@ -68500,8 +68509,8 @@
"zh-cht": "已從設備組{1}中刪除用戶{0}",
"uk": "Користувача {0} видалено з групи пристроїв {1}",
"xloc": [
- "default.handlebars->47->2607",
- "default3.handlebars->35->2603"
+ "default.handlebars->47->2608",
+ "default3.handlebars->35->2604"
]
},
{
@@ -68530,10 +68539,10 @@
"zh-cht": "從用戶組{1}中刪除了用戶{0}",
"uk": "Користувача {0} видалено з групи користувачів {1}",
"xloc": [
- "default.handlebars->47->2586",
- "default.handlebars->47->2596",
- "default3.handlebars->35->2582",
- "default3.handlebars->35->2592"
+ "default.handlebars->47->2587",
+ "default.handlebars->47->2597",
+ "default3.handlebars->35->2583",
+ "default3.handlebars->35->2593"
]
},
{
@@ -68566,14 +68575,14 @@
"default-mobile.handlebars->11->722",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->47->1563",
- "default.handlebars->47->2511",
+ "default.handlebars->47->1564",
+ "default.handlebars->47->2512",
"default.handlebars->47->855",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->filesContextMenu->1",
- "default3.handlebars->35->1547",
- "default3.handlebars->35->2507",
+ "default3.handlebars->35->1548",
+ "default3.handlebars->35->2508",
"default3.handlebars->35->852",
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -68634,8 +68643,8 @@
"zh-cht": "重命名:“{0}”為“{1}”",
"uk": "Перейменувати: \\\"{0}\\\" на \\\"{1}\\\"",
"xloc": [
- "default.handlebars->47->2572",
- "default3.handlebars->35->2568"
+ "default.handlebars->47->2573",
+ "default3.handlebars->35->2569"
]
},
{
@@ -68664,8 +68673,8 @@
"zh-cht": "報告日",
"uk": "Звітний день",
"xloc": [
- "default.handlebars->47->2701",
- "default3.handlebars->35->2697"
+ "default.handlebars->47->2702",
+ "default3.handlebars->35->2698"
]
},
{
@@ -68694,8 +68703,8 @@
"zh-cht": "報告類型",
"uk": "Тип звіту",
"xloc": [
- "default.handlebars->47->2696",
- "default3.handlebars->35->2692"
+ "default.handlebars->47->2697",
+ "default3.handlebars->35->2693"
]
},
{
@@ -68724,8 +68733,8 @@
"zh-cht": "報告未返回任何內容。",
"uk": "Звіт не повернув жодних записів.",
"xloc": [
- "default.handlebars->47->3195",
- "default3.handlebars->35->3182"
+ "default.handlebars->47->3196",
+ "default3.handlebars->35->3183"
]
},
{
@@ -68754,8 +68763,8 @@
"zh-cht": "報告.csv",
"uk": "Report.csv",
"xloc": [
- "default.handlebars->47->3256",
- "default3.handlebars->35->3243"
+ "default.handlebars->47->3257",
+ "default3.handlebars->35->3244"
]
},
{
@@ -68935,7 +68944,7 @@
"pl": "Pobieram Informacje o Procesie...",
"uk": "Запит Деталей Процесу...",
"xloc": [
- "default.handlebars->47->1455"
+ "default.handlebars->47->1456"
]
},
{
@@ -68945,7 +68954,7 @@
"pl": "Pobieram Informacje o Usłudze...",
"uk": "Запит на Сервісну Інформацію...",
"xloc": [
- "default.handlebars->47->1485"
+ "default.handlebars->47->1486"
]
},
{
@@ -69000,8 +69009,8 @@
"zh-cht": "要求:",
"uk": "Вимоги:",
"xloc": [
- "default.handlebars->47->2093",
- "default3.handlebars->35->2068"
+ "default.handlebars->47->2094",
+ "default3.handlebars->35->2069"
]
},
{
@@ -69031,10 +69040,10 @@
"uk": "Вимоги: {0}.",
"xloc": [
"default-mobile.handlebars->11->336",
- "default.handlebars->47->2814",
- "default.handlebars->47->3074",
- "default3.handlebars->35->2809",
- "default3.handlebars->35->3061"
+ "default.handlebars->47->2815",
+ "default.handlebars->47->3075",
+ "default3.handlebars->35->2810",
+ "default3.handlebars->35->3062"
]
},
{
@@ -69063,8 +69072,8 @@
"zh-cht": "需要安裝MeshCentral路由器",
"uk": "Потрібна інсталяція MeshCentral Router",
"xloc": [
- "default.handlebars->47->1046",
- "default3.handlebars->35->1043"
+ "default.handlebars->47->1047",
+ "default3.handlebars->35->1044"
]
},
{
@@ -69093,12 +69102,12 @@
"zh-cht": "需要安裝MeshCentral Router。",
"uk": "Потрібно інсталювати MeshCentral Router.",
"xloc": [
- "default.handlebars->47->1048",
- "default.handlebars->47->1050",
- "default.handlebars->47->1052",
- "default3.handlebars->35->1045",
- "default3.handlebars->35->1047",
- "default3.handlebars->35->1049"
+ "default.handlebars->47->1049",
+ "default.handlebars->47->1051",
+ "default.handlebars->47->1053",
+ "default3.handlebars->35->1046",
+ "default3.handlebars->35->1048",
+ "default3.handlebars->35->1050"
]
},
{
@@ -69159,9 +69168,9 @@
"uk": "Перезапустити",
"xloc": [
"default-mobile.handlebars->11->587",
- "default.handlebars->47->1260",
+ "default.handlebars->47->1261",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar",
- "default3.handlebars->35->1255",
+ "default3.handlebars->35->1256",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devMapToolbar"
]
},
@@ -69191,9 +69200,9 @@
"zh-cht": "重置/關閉電源",
"uk": "Перезапустити / Вимкнути",
"xloc": [
- "default-mobile.handlebars->11->993",
- "default.handlebars->47->2368",
- "default3.handlebars->35->2364"
+ "default-mobile.handlebars->11->994",
+ "default.handlebars->47->2369",
+ "default3.handlebars->35->2365"
]
},
{
@@ -69375,13 +69384,13 @@
"zh-cht": "重置/關閉",
"uk": "Перезапустити/Вимкнути",
"xloc": [
- "default-mobile.handlebars->11->1013",
- "default.handlebars->47->1144",
- "default.handlebars->47->1169",
- "default.handlebars->47->2406",
- "default3.handlebars->35->1139",
- "default3.handlebars->35->1164",
- "default3.handlebars->35->2402"
+ "default-mobile.handlebars->11->1014",
+ "default.handlebars->47->1145",
+ "default.handlebars->47->1170",
+ "default.handlebars->47->2407",
+ "default3.handlebars->35->1140",
+ "default3.handlebars->35->1165",
+ "default3.handlebars->35->2403"
]
},
{
@@ -69410,8 +69419,8 @@
"zh-cht": "重新啟動",
"uk": "Перезапустити",
"xloc": [
- "default.handlebars->47->1481",
- "default3.handlebars->35->1467",
+ "default.handlebars->47->1482",
+ "default3.handlebars->35->1468",
"player.handlebars->p11->deskarea0->deskarea4->3"
]
},
@@ -69422,16 +69431,16 @@
"pl": "Restart licznika niepowodzeń po ",
"uk": "Перезапустити лічильник помилок після ",
"xloc": [
- "default.handlebars->47->1474",
- "default3.handlebars->35->1460"
+ "default.handlebars->47->1475",
+ "default3.handlebars->35->1461"
]
},
{
"en": "Restart agent service",
"xloc": [
- "default-mobile.handlebars->11->935",
- "default.handlebars->47->1776",
- "default3.handlebars->35->1758"
+ "default-mobile.handlebars->11->936",
+ "default.handlebars->47->1777",
+ "default3.handlebars->35->1759"
]
},
{
@@ -69441,8 +69450,8 @@
"uk": "Відновити стандартні комбінації клавіш",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5",
- "default.handlebars->47->1439",
- "default3.handlebars->35->1426"
+ "default.handlebars->47->1440",
+ "default3.handlebars->35->1427"
]
},
{
@@ -69471,8 +69480,8 @@
"zh-cht": "還原伺服器",
"uk": "Відновити сервер",
"xloc": [
- "default.handlebars->47->2152",
- "default3.handlebars->35->2149"
+ "default.handlebars->47->2153",
+ "default3.handlebars->35->2150"
]
},
{
@@ -69531,8 +69540,8 @@
"zh-cht": "使用備份還原伺服器,",
"uk": "Відновити сервер за допомогою резервної копії,",
"xloc": [
- "default.handlebars->47->2147",
- "default3.handlebars->35->2146"
+ "default.handlebars->47->2148",
+ "default3.handlebars->35->2147"
]
},
{
@@ -69562,9 +69571,9 @@
"uk": "Обмежено",
"xloc": [
"default-mobile.handlebars->11->507",
- "default.handlebars->47->1062",
+ "default.handlebars->47->1063",
"default.handlebars->47->909",
- "default3.handlebars->35->1059",
+ "default3.handlebars->35->1060",
"default3.handlebars->35->906"
]
},
@@ -69594,8 +69603,8 @@
"zh-cht": "限制條件",
"uk": "Обмеження",
"xloc": [
- "default.handlebars->47->2929",
- "default3.handlebars->35->2922"
+ "default.handlebars->47->2930",
+ "default3.handlebars->35->2923"
]
},
{
@@ -69658,8 +69667,8 @@
"uk": "Ретороманська",
"xloc": [
"default-mobile.handlebars->11->248",
- "default.handlebars->47->1981",
- "default3.handlebars->35->1961",
+ "default.handlebars->47->1982",
+ "default3.handlebars->35->1962",
"login2.handlebars->7->136"
]
},
@@ -69690,8 +69699,8 @@
"uk": "Вірно",
"xloc": [
"default-mobile.handlebars->11->664",
- "default.handlebars->47->1427",
- "default3.handlebars->35->1414"
+ "default.handlebars->47->1428",
+ "default3.handlebars->35->1415"
]
},
{
@@ -69721,8 +69730,8 @@
"uk": "Румунська",
"xloc": [
"default-mobile.handlebars->11->249",
- "default.handlebars->47->1982",
- "default3.handlebars->35->1962",
+ "default.handlebars->47->1983",
+ "default3.handlebars->35->1963",
"login2.handlebars->7->137"
]
},
@@ -69753,8 +69762,8 @@
"uk": "Румунська (Молдова)",
"xloc": [
"default-mobile.handlebars->11->250",
- "default.handlebars->47->1983",
- "default3.handlebars->35->1963",
+ "default.handlebars->47->1984",
+ "default3.handlebars->35->1964",
"login2.handlebars->7->138"
]
},
@@ -69786,10 +69795,10 @@
"xloc": [
"default-mobile.handlebars->11->357",
"default-mobile.handlebars->11->711",
- "default.handlebars->47->1542",
- "default.handlebars->47->2479",
- "default3.handlebars->35->1527",
- "default3.handlebars->35->2475",
+ "default.handlebars->47->1543",
+ "default.handlebars->47->2480",
+ "default3.handlebars->35->1528",
+ "default3.handlebars->35->2476",
"sharing.handlebars->11->49"
]
},
@@ -70033,8 +70042,8 @@
"pl": "Wykonaj",
"uk": "Виконати",
"xloc": [
- "default.handlebars->47->1018",
- "default3.handlebars->35->1015"
+ "default.handlebars->47->1019",
+ "default3.handlebars->35->1016"
]
},
{
@@ -70078,11 +70087,11 @@
"uk": "Виконати команди",
"xloc": [
"default-mobile.handlebars->11->618",
- "default.handlebars->47->1258",
- "default.handlebars->47->1282",
+ "default.handlebars->47->1259",
+ "default.handlebars->47->1283",
"default.handlebars->47->818",
- "default3.handlebars->35->1253",
- "default3.handlebars->35->1277",
+ "default3.handlebars->35->1254",
+ "default3.handlebars->35->1278",
"default3.handlebars->35->815"
]
},
@@ -70112,8 +70121,8 @@
"zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。",
"uk": "Запустіть MeshCentral Router і натисніть \\\"інсталяція\\\", щоб виконати його з браузера.",
"xloc": [
- "default.handlebars->47->1332",
- "default3.handlebars->35->1320"
+ "default.handlebars->47->1333",
+ "default3.handlebars->35->1321"
]
},
{
@@ -70160,9 +70169,9 @@
"uk": "Запустити як агент",
"xloc": [
"default-mobile.handlebars->11->612",
- "default.handlebars->47->1279",
+ "default.handlebars->47->1280",
"default.handlebars->47->812",
- "default3.handlebars->35->1274",
+ "default3.handlebars->35->1275",
"default3.handlebars->35->809"
]
},
@@ -70193,9 +70202,9 @@
"uk": "Запустити від користувача або від агента(якщо користувача не існує)",
"xloc": [
"default-mobile.handlebars->11->613",
- "default.handlebars->47->1280",
+ "default.handlebars->47->1281",
"default.handlebars->47->813",
- "default3.handlebars->35->1275",
+ "default3.handlebars->35->1276",
"default3.handlebars->35->810"
]
},
@@ -70255,9 +70264,9 @@
"zh-cht": "在所選裝置上運行命令。",
"uk": "Виконувати команди на відібраних пристроях.",
"xloc": [
- "default.handlebars->47->1275",
+ "default.handlebars->47->1276",
"default.handlebars->47->762",
- "default3.handlebars->35->1270",
+ "default3.handlebars->35->1271",
"default3.handlebars->35->759"
]
},
@@ -70287,8 +70296,8 @@
"zh-cht": "在此裝置上運行命令。",
"uk": "Виконувати команди на цьому пристрої",
"xloc": [
- "default.handlebars->47->1019",
- "default3.handlebars->35->1016"
+ "default.handlebars->47->1020",
+ "default3.handlebars->35->1017"
]
},
{
@@ -70317,10 +70326,10 @@
"zh-cht": "跑步",
"uk": "Виконується",
"xloc": [
- "default.handlebars->47->1457",
- "default.handlebars->47->1461",
- "default3.handlebars->35->1443",
- "default3.handlebars->35->1447"
+ "default.handlebars->47->1458",
+ "default.handlebars->47->1462",
+ "default3.handlebars->35->1444",
+ "default3.handlebars->35->1448"
]
},
{
@@ -70349,8 +70358,8 @@
"zh-cht": "運行命令",
"uk": "Запущені команди",
"xloc": [
- "default.handlebars->47->2548",
- "default3.handlebars->35->2544"
+ "default.handlebars->47->2549",
+ "default3.handlebars->35->2545"
]
},
{
@@ -70379,8 +70388,8 @@
"zh-cht": "以用戶身份運行命令",
"uk": "Виконання команд від імені користувача",
"xloc": [
- "default.handlebars->47->2623",
- "default3.handlebars->35->2619"
+ "default.handlebars->47->2624",
+ "default3.handlebars->35->2620"
]
},
{
@@ -70409,8 +70418,8 @@
"zh-cht": "如果可能,以用戶身份運行命令",
"uk": "Виконання команд від імені користувача, якщо можливо",
"xloc": [
- "default.handlebars->47->2624",
- "default3.handlebars->35->2620"
+ "default.handlebars->47->2625",
+ "default3.handlebars->35->2621"
]
},
{
@@ -70440,8 +70449,8 @@
"uk": "московитська",
"xloc": [
"default-mobile.handlebars->11->251",
- "default.handlebars->47->1984",
- "default3.handlebars->35->1964",
+ "default.handlebars->47->1985",
+ "default3.handlebars->35->1965",
"login2.handlebars->7->139"
]
},
@@ -70472,8 +70481,8 @@
"uk": "московитська (Молдова)",
"xloc": [
"default-mobile.handlebars->11->252",
- "default.handlebars->47->1985",
- "default3.handlebars->35->1965",
+ "default.handlebars->47->1986",
+ "default3.handlebars->35->1966",
"login2.handlebars->7->140"
]
},
@@ -70555,9 +70564,9 @@
"zh-cht": "SCP",
"uk": "SCP",
"xloc": [
- "default.handlebars->47->1051",
+ "default.handlebars->47->1052",
"default.handlebars->47->448",
- "default3.handlebars->35->1048",
+ "default3.handlebars->35->1049",
"default3.handlebars->35->445"
]
},
@@ -70648,10 +70657,10 @@
"zh-cht": "短信",
"uk": "SMS",
"xloc": [
- "default.handlebars->47->2993",
- "default.handlebars->47->2999",
- "default3.handlebars->35->2986",
- "default3.handlebars->35->2992",
+ "default.handlebars->47->2994",
+ "default.handlebars->47->3000",
+ "default3.handlebars->35->2987",
+ "default3.handlebars->35->2993",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -70686,8 +70695,8 @@
"zh-cht": "此用戶的短信功能電話號碼。",
"uk": "Номер телефону цього користувача з можливістю відправки SMS.",
"xloc": [
- "default.handlebars->47->3017",
- "default3.handlebars->35->3010"
+ "default.handlebars->47->3018",
+ "default3.handlebars->35->3011"
]
},
{
@@ -70716,9 +70725,9 @@
"zh-cht": "短信錯誤",
"uk": "Помилка SMS",
"xloc": [
- "default-mobile.handlebars->11->1059",
- "default.handlebars->47->3294",
- "default3.handlebars->35->3281"
+ "default-mobile.handlebars->11->1060",
+ "default.handlebars->47->3295",
+ "default3.handlebars->35->3282"
]
},
{
@@ -70747,9 +70756,9 @@
"zh-cht": "短信錯誤:{0}",
"uk": "Помилка SMS: {0}",
"xloc": [
- "default-mobile.handlebars->11->1060",
- "default.handlebars->47->3295",
- "default3.handlebars->35->3282"
+ "default-mobile.handlebars->11->1061",
+ "default.handlebars->47->3296",
+ "default3.handlebars->35->3283"
]
},
{
@@ -70808,9 +70817,9 @@
"zh-cht": "短信網關未啟用",
"uk": "Шлюз SMS вимкнено",
"xloc": [
- "default-mobile.handlebars->11->1054",
- "default.handlebars->47->3289",
- "default3.handlebars->35->3276"
+ "default-mobile.handlebars->11->1055",
+ "default.handlebars->47->3290",
+ "default3.handlebars->35->3277"
]
},
{
@@ -70839,8 +70848,8 @@
"zh-cht": "短信",
"uk": "SMS-повідомлення",
"xloc": [
- "default.handlebars->47->3220",
- "default3.handlebars->35->3207"
+ "default.handlebars->47->3221",
+ "default3.handlebars->35->3208"
]
},
{
@@ -70911,8 +70920,8 @@
"pl": "Sukces wysyłania SMS.",
"uk": "SMS успішно надіслано.",
"xloc": [
- "default.handlebars->47->3293",
- "default3.handlebars->35->3280"
+ "default.handlebars->47->3294",
+ "default3.handlebars->35->3281"
]
},
{
@@ -70941,7 +70950,7 @@
"zh-cht": "短信成功發送。",
"uk": "SMS успішно надіслано.",
"xloc": [
- "default-mobile.handlebars->11->1058"
+ "default-mobile.handlebars->11->1059"
]
},
{
@@ -71000,9 +71009,9 @@
"zh-cht": "SSH",
"uk": "SSH",
"xloc": [
- "default.handlebars->47->1049",
+ "default.handlebars->47->1050",
"default.handlebars->47->447",
- "default3.handlebars->35->1046",
+ "default3.handlebars->35->1047",
"default3.handlebars->35->444"
]
},
@@ -71096,10 +71105,10 @@
"xloc": [
"default-mobile.handlebars->11->680",
"default-mobile.handlebars->11->716",
- "default.handlebars->47->1493",
- "default.handlebars->47->1557",
- "default3.handlebars->35->1478",
- "default3.handlebars->35->1541"
+ "default.handlebars->47->1494",
+ "default.handlebars->47->1558",
+ "default3.handlebars->35->1479",
+ "default3.handlebars->35->1542"
]
},
{
@@ -71213,10 +71222,10 @@
"xloc": [
"default-mobile.handlebars->11->543",
"default-mobile.handlebars->11->547",
- "default.handlebars->47->1002",
- "default.handlebars->47->1006",
- "default3.handlebars->35->1003",
- "default3.handlebars->35->999"
+ "default.handlebars->47->1003",
+ "default.handlebars->47->1007",
+ "default3.handlebars->35->1000",
+ "default3.handlebars->35->1004"
]
},
{
@@ -71247,10 +71256,10 @@
"xloc": [
"default-mobile.handlebars->11->542",
"default-mobile.handlebars->11->546",
- "default.handlebars->47->1001",
- "default.handlebars->47->1005",
- "default3.handlebars->35->1002",
- "default3.handlebars->35->998"
+ "default.handlebars->47->1002",
+ "default.handlebars->47->1006",
+ "default3.handlebars->35->1003",
+ "default3.handlebars->35->999"
]
},
{
@@ -71281,10 +71290,10 @@
"xloc": [
"default-mobile.handlebars->11->541",
"default-mobile.handlebars->11->545",
- "default.handlebars->47->1000",
- "default.handlebars->47->1004",
- "default3.handlebars->35->1001",
- "default3.handlebars->35->997"
+ "default.handlebars->47->1001",
+ "default.handlebars->47->1005",
+ "default3.handlebars->35->1002",
+ "default3.handlebars->35->998"
]
},
{
@@ -71313,8 +71322,8 @@
"zh-cht": "SSL 證書不在服務器上",
"uk": "Сертифікат SSL відсутній на сервері",
"xloc": [
- "default.handlebars->47->1384",
- "default3.handlebars->35->1371"
+ "default.handlebars->47->1385",
+ "default3.handlebars->35->1372"
]
},
{
@@ -71343,8 +71352,8 @@
"zh-cht": "服務器不允許 SSL",
"uk": "SSL не дозволено сервером",
"xloc": [
- "default.handlebars->47->1383",
- "default3.handlebars->35->1370"
+ "default.handlebars->47->1384",
+ "default3.handlebars->35->1371"
]
},
{
@@ -71373,8 +71382,8 @@
"zh-cht": "服務器需要 SSL",
"uk": "Сервер вимагає SSL сертифікат",
"xloc": [
- "default.handlebars->47->1382",
- "default3.handlebars->35->1369"
+ "default.handlebars->47->1383",
+ "default3.handlebars->35->1370"
]
},
{
@@ -71403,8 +71412,8 @@
"zh-cht": "服務器需要具有用戶身份驗證的 SSL",
"uk": "SSL з авторизацією користувача вимагає сервер",
"xloc": [
- "default.handlebars->47->1387",
- "default3.handlebars->35->1374"
+ "default.handlebars->47->1388",
+ "default3.handlebars->35->1375"
]
},
{
@@ -71466,8 +71475,8 @@
"uk": "Самі (Самі)",
"xloc": [
"default-mobile.handlebars->11->253",
- "default.handlebars->47->1986",
- "default3.handlebars->35->1966",
+ "default.handlebars->47->1987",
+ "default3.handlebars->35->1967",
"login2.handlebars->7->141"
]
},
@@ -71534,7 +71543,7 @@
{
"en": "Sandstone",
"xloc": [
- "default3.handlebars->35->2084"
+ "default3.handlebars->35->2085"
]
},
{
@@ -71564,8 +71573,8 @@
"uk": "Санго",
"xloc": [
"default-mobile.handlebars->11->254",
- "default.handlebars->47->1987",
- "default3.handlebars->35->1967",
+ "default.handlebars->47->1988",
+ "default3.handlebars->35->1968",
"login2.handlebars->7->142"
]
},
@@ -71596,8 +71605,8 @@
"uk": "Санскрит",
"xloc": [
"default-mobile.handlebars->11->255",
- "default.handlebars->47->1988",
- "default3.handlebars->35->1968",
+ "default.handlebars->47->1989",
+ "default3.handlebars->35->1969",
"login2.handlebars->7->143"
]
},
@@ -71628,8 +71637,8 @@
"uk": "Сардинська",
"xloc": [
"default-mobile.handlebars->11->256",
- "default.handlebars->47->1989",
- "default3.handlebars->35->1969",
+ "default.handlebars->47->1990",
+ "default3.handlebars->35->1970",
"login2.handlebars->7->144"
]
},
@@ -72089,10 +72098,10 @@
"zh-cht": "搜尋",
"uk": "Пошук",
"xloc": [
- "default.handlebars->47->1551",
+ "default.handlebars->47->1552",
"default.handlebars->47->875",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar",
- "default3.handlebars->35->1535",
+ "default3.handlebars->35->1536",
"default3.handlebars->35->872",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devMapToolbar",
"sharing.handlebars->11->53"
@@ -72165,8 +72174,8 @@
"pl": "Druga Awaria",
"uk": "Друга Невдача",
"xloc": [
- "default.handlebars->47->1476",
- "default3.handlebars->35->1462"
+ "default.handlebars->47->1477",
+ "default3.handlebars->35->1463"
]
},
{
@@ -72257,9 +72266,9 @@
"zh-cht": "已使用TLS保安",
"uk": "Захищено за допомогою TLS",
"xloc": [
- "default-mobile.handlebars->11->829",
- "default.handlebars->47->1669",
- "default3.handlebars->35->1651"
+ "default-mobile.handlebars->11->830",
+ "default.handlebars->47->1670",
+ "default3.handlebars->35->1652"
]
},
{
@@ -72289,17 +72298,17 @@
"uk": "Безпека",
"xloc": [
"default-mobile.handlebars->11->623",
- "default-mobile.handlebars->11->828",
- "default.handlebars->47->1304",
- "default.handlebars->47->1668",
- "default.handlebars->47->2477",
- "default.handlebars->47->2995",
+ "default-mobile.handlebars->11->829",
+ "default.handlebars->47->1305",
+ "default.handlebars->47->1669",
+ "default.handlebars->47->2478",
+ "default.handlebars->47->2996",
"default.handlebars->47->515",
"default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1",
- "default3.handlebars->35->1295",
- "default3.handlebars->35->1650",
- "default3.handlebars->35->2473",
- "default3.handlebars->35->2988",
+ "default3.handlebars->35->1296",
+ "default3.handlebars->35->1651",
+ "default3.handlebars->35->2474",
+ "default3.handlebars->35->2989",
"default3.handlebars->35->512",
"default3.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1"
]
@@ -72347,8 +72356,8 @@
"zh-cht": "安全密鑰",
"uk": "Ключ безпеки",
"xloc": [
- "default.handlebars->47->2988",
- "default3.handlebars->35->2981"
+ "default.handlebars->47->2989",
+ "default3.handlebars->35->2982"
]
},
{
@@ -72377,9 +72386,9 @@
"zh-cht": "安全警告",
"uk": "Попередження системи безпеки",
"xloc": [
- "default-mobile.handlebars->11->1028",
- "default.handlebars->47->3263",
- "default3.handlebars->35->3250"
+ "default-mobile.handlebars->11->1029",
+ "default.handlebars->47->3264",
+ "default3.handlebars->35->3251"
]
},
{
@@ -72480,11 +72489,11 @@
"zh-cht": "全選",
"uk": "Обрати Все",
"xloc": [
- "default.handlebars->47->1554",
- "default.handlebars->47->1556",
- "default.handlebars->47->2503",
- "default.handlebars->47->2748",
- "default.handlebars->47->2842",
+ "default.handlebars->47->1555",
+ "default.handlebars->47->1557",
+ "default.handlebars->47->2504",
+ "default.handlebars->47->2749",
+ "default.handlebars->47->2843",
"default.handlebars->47->542",
"default.handlebars->47->732",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
@@ -72493,11 +72502,11 @@
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->column_l->p50->3->1->0->3->p50userGroupOps",
"default.handlebars->meshContextMenu->cxselectall",
- "default3.handlebars->35->1538",
- "default3.handlebars->35->1540",
- "default3.handlebars->35->2499",
- "default3.handlebars->35->2744",
- "default3.handlebars->35->2835",
+ "default3.handlebars->35->1539",
+ "default3.handlebars->35->1541",
+ "default3.handlebars->35->2500",
+ "default3.handlebars->35->2745",
+ "default3.handlebars->35->2836",
"default3.handlebars->35->539",
"default3.handlebars->35->729",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->devListToolbar",
@@ -72537,12 +72546,12 @@
"zh-cht": "選擇日期和時間...",
"uk": "Оберіть Дату та Час...",
"xloc": [
- "default.handlebars->47->1239",
- "default.handlebars->47->1241",
- "default.handlebars->47->3178",
- "default3.handlebars->35->1234",
- "default3.handlebars->35->1236",
- "default3.handlebars->35->3165"
+ "default.handlebars->47->1240",
+ "default.handlebars->47->1242",
+ "default.handlebars->47->3179",
+ "default3.handlebars->35->1235",
+ "default3.handlebars->35->1237",
+ "default3.handlebars->35->3166"
]
},
{
@@ -72571,16 +72580,16 @@
"zh-cht": "選擇無",
"uk": "Скинути вибір",
"xloc": [
- "default.handlebars->47->1555",
- "default.handlebars->47->2502",
- "default.handlebars->47->2747",
- "default.handlebars->47->2841",
+ "default.handlebars->47->1556",
+ "default.handlebars->47->2503",
+ "default.handlebars->47->2748",
+ "default.handlebars->47->2842",
"default.handlebars->47->731",
"default.handlebars->meshContextMenu->cxselectnone",
- "default3.handlebars->35->1539",
- "default3.handlebars->35->2498",
- "default3.handlebars->35->2743",
- "default3.handlebars->35->2834",
+ "default3.handlebars->35->1540",
+ "default3.handlebars->35->2499",
+ "default3.handlebars->35->2744",
+ "default3.handlebars->35->2835",
"default3.handlebars->35->728",
"default3.handlebars->meshContextMenu->cxselectnone",
"sharing.handlebars->11->57"
@@ -72612,8 +72621,8 @@
"zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。",
"uk": "Виберіть пристрій для реєстрації та автентифікації push-сповіщень. Після вибору пристрій запитає підтвердження.",
"xloc": [
- "default.handlebars->47->1833",
- "default3.handlebars->35->1813"
+ "default.handlebars->47->1834",
+ "default3.handlebars->35->1814"
]
},
{
@@ -72642,8 +72651,8 @@
"zh-cht": "為所選裝置選擇一個新群",
"uk": "Виберіть нову групу для вибраних пристроїв",
"xloc": [
- "default.handlebars->47->1318",
- "default3.handlebars->35->1309"
+ "default.handlebars->47->1319",
+ "default3.handlebars->35->1310"
]
},
{
@@ -72672,8 +72681,8 @@
"zh-cht": "選擇此裝置的新群",
"uk": "Виберіть нову групу для цього пристрою",
"xloc": [
- "default.handlebars->47->1317",
- "default3.handlebars->35->1308"
+ "default.handlebars->47->1318",
+ "default3.handlebars->35->1309"
]
},
{
@@ -72709,7 +72718,7 @@
{
"en": "Select a theme",
"xloc": [
- "default3.handlebars->35->2093"
+ "default3.handlebars->35->2094"
]
},
{
@@ -72768,10 +72777,10 @@
"zh-cht": "選擇要對所有選定用戶執行的操作。",
"uk": "Виберіть операцію для виконання з усіма вибраними користувачами.",
"xloc": [
- "default.handlebars->47->2751",
- "default.handlebars->47->2843",
- "default3.handlebars->35->2747",
- "default3.handlebars->35->2836"
+ "default.handlebars->47->2752",
+ "default.handlebars->47->2844",
+ "default3.handlebars->35->2748",
+ "default3.handlebars->35->2837"
]
},
{
@@ -72801,8 +72810,8 @@
"uk": "Виберіть операцію, яку ви хочете виконати на цьому пристрої.",
"xloc": [
"default-mobile.handlebars->11->578",
- "default.handlebars->47->1250",
- "default3.handlebars->35->1245"
+ "default.handlebars->47->1251",
+ "default3.handlebars->35->1246"
]
},
{
@@ -72831,8 +72840,8 @@
"zh-cht": "選擇新密碼",
"uk": "Виберіть новий пароль",
"xloc": [
- "default.handlebars->47->2283",
- "default3.handlebars->35->2276"
+ "default.handlebars->47->2284",
+ "default3.handlebars->35->2277"
]
},
{
@@ -72891,9 +72900,9 @@
"zh-cht": "僅自我事件",
"uk": "Лише події",
"xloc": [
- "default-mobile.handlebars->11->1009",
- "default.handlebars->47->2402",
- "default3.handlebars->35->2398"
+ "default-mobile.handlebars->11->1010",
+ "default.handlebars->47->2403",
+ "default3.handlebars->35->2399"
]
},
{
@@ -72983,8 +72992,8 @@
"zh-cht": "發電郵",
"uk": "Надіслати е-пошту",
"xloc": [
- "default.handlebars->47->2763",
- "default3.handlebars->35->2758"
+ "default.handlebars->47->2764",
+ "default3.handlebars->35->2759"
]
},
{
@@ -73013,9 +73022,9 @@
"zh-cht": "發送MQTT消息",
"uk": "Надіслати повідомлення MQTT",
"xloc": [
- "default.handlebars->47->1262",
+ "default.handlebars->47->1263",
"default.handlebars->47->735",
- "default3.handlebars->35->1257",
+ "default3.handlebars->35->1258",
"default3.handlebars->35->732"
]
},
@@ -73045,8 +73054,8 @@
"zh-cht": "發送MQTT消息",
"uk": "Надіслати повідомлення MQTT",
"xloc": [
- "default.handlebars->47->1310",
- "default3.handlebars->35->1301"
+ "default.handlebars->47->1311",
+ "default3.handlebars->35->1302"
]
},
{
@@ -73060,8 +73069,8 @@
"pl": "Wyślij Wiadomość",
"uk": "Надіслати повідомлення",
"xloc": [
- "default.handlebars->47->2761",
- "default3.handlebars->35->2756"
+ "default.handlebars->47->2762",
+ "default3.handlebars->35->2757"
]
},
{
@@ -73090,8 +73099,8 @@
"zh-cht": "發送簡訊",
"uk": "Надіслати SMS",
"xloc": [
- "default.handlebars->47->2760",
- "default3.handlebars->35->2755"
+ "default.handlebars->47->2761",
+ "default3.handlebars->35->2756"
]
},
{
@@ -73120,8 +73129,8 @@
"zh-cht": "發送短信給該用戶",
"uk": "Надіслати SMS цьому користувачеві",
"xloc": [
- "default.handlebars->47->3000",
- "default3.handlebars->35->2993"
+ "default.handlebars->47->3001",
+ "default3.handlebars->35->2994"
]
},
{
@@ -73150,8 +73159,8 @@
"zh-cht": "發送電郵給該用戶",
"uk": "Надіслати електронного листа цьому користувачеві",
"xloc": [
- "default.handlebars->47->3004",
- "default3.handlebars->35->2997"
+ "default.handlebars->47->3005",
+ "default3.handlebars->35->2998"
]
},
{
@@ -73165,8 +73174,8 @@
"pl": "Wyślij wiadomość do tego użytkownika",
"uk": "Надіслати повідомлення цьому користувачеві",
"xloc": [
- "default.handlebars->47->3002",
- "default3.handlebars->35->2995"
+ "default.handlebars->47->3003",
+ "default3.handlebars->35->2996"
]
},
{
@@ -73195,8 +73204,8 @@
"zh-cht": "向該群中的所有用戶發送通知。",
"uk": "Надіслати сповіщення всім користувачам цієї групи.",
"xloc": [
- "default.handlebars->47->2886",
- "default3.handlebars->35->2879"
+ "default.handlebars->47->2887",
+ "default3.handlebars->35->2880"
]
},
{
@@ -73225,8 +73234,8 @@
"zh-cht": "向該用戶發送文本通知。",
"uk": "Надіслати текстове сповіщення цьому користувачеві.",
"xloc": [
- "default.handlebars->47->2764",
- "default3.handlebars->35->2759"
+ "default.handlebars->47->2765",
+ "default3.handlebars->35->2760"
]
},
{
@@ -73255,8 +73264,8 @@
"zh-cht": "發送電郵給用戶",
"uk": "Надіслати електронний лист користувачеві",
"xloc": [
- "default.handlebars->47->2742",
- "default3.handlebars->35->2738"
+ "default.handlebars->47->2743",
+ "default3.handlebars->35->2739"
]
},
{
@@ -73315,8 +73324,8 @@
"zh-cht": "發送邀請電郵。",
"uk": "Надіслати запрошення е-поштою.",
"xloc": [
- "default.handlebars->47->2813",
- "default3.handlebars->35->2808"
+ "default.handlebars->47->2814",
+ "default3.handlebars->35->2809"
]
},
{
@@ -73509,8 +73518,8 @@
"zh-cht": "發送用戶通知",
"uk": "Надіслати сповіщення користувачеві",
"xloc": [
- "default.handlebars->47->3006",
- "default3.handlebars->35->2999"
+ "default.handlebars->47->3007",
+ "default3.handlebars->35->3000"
]
},
{
@@ -73629,8 +73638,8 @@
"uk": "Сербська",
"xloc": [
"default-mobile.handlebars->11->259",
- "default.handlebars->47->1992",
- "default3.handlebars->35->1972",
+ "default.handlebars->47->1993",
+ "default3.handlebars->35->1973",
"login2.handlebars->7->147"
]
},
@@ -73660,12 +73669,12 @@
"zh-cht": "序列號",
"uk": "Серійний номер",
"xloc": [
- "default-mobile.handlebars->11->838",
- "default-mobile.handlebars->11->843",
- "default.handlebars->47->1678",
- "default.handlebars->47->1683",
- "default3.handlebars->35->1660",
- "default3.handlebars->35->1665"
+ "default-mobile.handlebars->11->839",
+ "default-mobile.handlebars->11->844",
+ "default.handlebars->47->1679",
+ "default.handlebars->47->1684",
+ "default3.handlebars->35->1661",
+ "default3.handlebars->35->1666"
]
},
{
@@ -73720,8 +73729,8 @@
"zh-cht": "伺服器備份",
"uk": "Сервер резервного копіювання",
"xloc": [
- "default.handlebars->47->2823",
- "default3.handlebars->35->2816"
+ "default.handlebars->47->2824",
+ "default3.handlebars->35->2817"
]
},
{
@@ -73750,8 +73759,8 @@
"zh-cht": "伺服器憑證",
"uk": "Сертифікат Сервера",
"xloc": [
- "default.handlebars->47->3374",
- "default3.handlebars->35->3361"
+ "default.handlebars->47->3375",
+ "default3.handlebars->35->3362"
]
},
{
@@ -73763,7 +73772,7 @@
"xloc": [
"default.handlebars->47->208",
"default.handlebars->47->210",
- "default.handlebars->47->2160",
+ "default.handlebars->47->2161",
"default3.handlebars->35->208",
"default3.handlebars->35->209"
]
@@ -73824,8 +73833,8 @@
"zh-cht": "伺服器數據庫",
"uk": "База даних сервера",
"xloc": [
- "default.handlebars->47->3375",
- "default3.handlebars->35->3362"
+ "default.handlebars->47->3376",
+ "default3.handlebars->35->3363"
]
},
{
@@ -73836,9 +73845,9 @@
"uk": "Помилки Сервера",
"xloc": [
"default.handlebars->47->203",
- "default.handlebars->47->2157",
+ "default.handlebars->47->2158",
"default3.handlebars->35->203",
- "default3.handlebars->35->2154"
+ "default3.handlebars->35->2155"
]
},
{
@@ -73867,18 +73876,18 @@
"zh-cht": "伺服器檔案",
"uk": "Файли Сервера",
"xloc": [
- "default-mobile.handlebars->11->1001",
- "default-mobile.handlebars->11->986",
- "default.handlebars->47->1137",
- "default.handlebars->47->1162",
- "default.handlebars->47->2361",
- "default.handlebars->47->2393",
- "default.handlebars->47->2820",
- "default3.handlebars->35->1132",
- "default3.handlebars->35->1157",
- "default3.handlebars->35->2357",
- "default3.handlebars->35->2389",
- "default3.handlebars->35->2813"
+ "default-mobile.handlebars->11->1002",
+ "default-mobile.handlebars->11->987",
+ "default.handlebars->47->1138",
+ "default.handlebars->47->1163",
+ "default.handlebars->47->2362",
+ "default.handlebars->47->2394",
+ "default.handlebars->47->2821",
+ "default3.handlebars->35->1133",
+ "default3.handlebars->35->1158",
+ "default3.handlebars->35->2358",
+ "default3.handlebars->35->2390",
+ "default3.handlebars->35->2814"
]
},
{
@@ -73936,9 +73945,9 @@
"zh-cht": "服務器限制",
"uk": "Ліміт сервера",
"xloc": [
- "default-mobile.handlebars->11->1027",
- "default.handlebars->47->3262",
- "default3.handlebars->35->3249"
+ "default-mobile.handlebars->11->1028",
+ "default.handlebars->47->3263",
+ "default3.handlebars->35->3250"
]
},
{
@@ -73996,10 +74005,10 @@
"zh-cht": "伺服器權限",
"uk": "Дозволи серверу",
"xloc": [
- "default.handlebars->47->2734",
- "default.handlebars->47->2835",
- "default3.handlebars->35->2730",
- "default3.handlebars->35->2828"
+ "default.handlebars->47->2735",
+ "default.handlebars->47->2836",
+ "default3.handlebars->35->2731",
+ "default3.handlebars->35->2829"
]
},
{
@@ -74028,8 +74037,8 @@
"zh-cht": "伺服器配額",
"uk": "Квота серверу",
"xloc": [
- "default.handlebars->47->2962",
- "default3.handlebars->35->2955"
+ "default.handlebars->47->2963",
+ "default3.handlebars->35->2956"
]
},
{
@@ -74058,8 +74067,8 @@
"zh-cht": "伺服器還原",
"uk": "Відновити сервер",
"xloc": [
- "default.handlebars->47->2824",
- "default3.handlebars->35->2817"
+ "default.handlebars->47->2825",
+ "default3.handlebars->35->2818"
]
},
{
@@ -74088,8 +74097,8 @@
"zh-cht": "伺服器權限",
"uk": "Права сервера",
"xloc": [
- "default.handlebars->47->2961",
- "default3.handlebars->35->2954"
+ "default.handlebars->47->2962",
+ "default3.handlebars->35->2955"
]
},
{
@@ -74118,8 +74127,8 @@
"zh-cht": "伺服器狀態",
"uk": "Стан сервера",
"xloc": [
- "default.handlebars->47->3305",
- "default3.handlebars->35->3292"
+ "default.handlebars->47->3306",
+ "default3.handlebars->35->3293"
]
},
{
@@ -74178,8 +74187,8 @@
"zh-cht": "伺服器追蹤",
"uk": "Моніторинг сервера",
"xloc": [
- "default.handlebars->47->3388",
- "default3.handlebars->35->3375"
+ "default.handlebars->47->3389",
+ "default3.handlebars->35->3376"
]
},
{
@@ -74208,8 +74217,8 @@
"zh-cht": "服務器跟踪事件",
"uk": "Подія трасування сервера",
"xloc": [
- "default.handlebars->47->3366",
- "default3.handlebars->35->3353"
+ "default.handlebars->47->3367",
+ "default3.handlebars->35->3354"
]
},
{
@@ -74297,8 +74306,8 @@
"zh-cht": "伺服器更新",
"uk": "Оновлення сервера",
"xloc": [
- "default.handlebars->47->2825",
- "default3.handlebars->35->2818"
+ "default.handlebars->47->2826",
+ "default3.handlebars->35->2819"
]
},
{
@@ -74539,8 +74548,8 @@
"pl": "Serwer nie może pobrać zapisów z bazy danych.",
"uk": "Сервер не може отримати записи з бази даних.",
"xloc": [
- "default.handlebars->47->3121",
- "default3.handlebars->35->3108"
+ "default.handlebars->47->3122",
+ "default3.handlebars->35->3109"
]
},
{
@@ -74555,8 +74564,8 @@
"pl": "Serwer nie może odczytać zapisów z folderu.",
"uk": "Сервер не може читати з теки записів.",
"xloc": [
- "default.handlebars->47->3120",
- "default3.handlebars->35->3107"
+ "default.handlebars->47->3121",
+ "default3.handlebars->35->3108"
]
},
{
@@ -74571,8 +74580,8 @@
"pl": "Zapisy statystyk serwera",
"uk": "Записи статистики сервера",
"xloc": [
- "default.handlebars->47->3240",
- "default3.handlebars->35->3227"
+ "default.handlebars->47->3241",
+ "default3.handlebars->35->3228"
]
},
{
@@ -74658,8 +74667,8 @@
"zh-cht": "ServerStats.csv",
"uk": "ServerStats.csv",
"xloc": [
- "default.handlebars->47->3365",
- "default3.handlebars->35->3352"
+ "default.handlebars->47->3366",
+ "default3.handlebars->35->3353"
]
},
{
@@ -74673,10 +74682,10 @@
"pl": "Usługa",
"uk": "Сервіс",
"xloc": [
- "default.handlebars->47->1799",
- "default.handlebars->47->3031",
- "default3.handlebars->35->1780",
- "default3.handlebars->35->3024"
+ "default.handlebars->47->1800",
+ "default.handlebars->47->3032",
+ "default3.handlebars->35->1781",
+ "default3.handlebars->35->3025"
]
},
{
@@ -74705,10 +74714,10 @@
"zh-cht": "服務詳情",
"uk": "Деталі сервісу",
"xloc": [
- "default.handlebars->47->1482",
- "default.handlebars->47->1484",
- "default3.handlebars->35->1469",
- "default3.handlebars->35->1471"
+ "default.handlebars->47->1483",
+ "default.handlebars->47->1485",
+ "default3.handlebars->35->1470",
+ "default3.handlebars->35->1472"
]
},
{
@@ -74767,10 +74776,10 @@
"zh-cht": "節",
"uk": "Сеанс",
"xloc": [
- "default.handlebars->47->3124",
- "default.handlebars->47->3183",
- "default3.handlebars->35->3111",
- "default3.handlebars->35->3170",
+ "default.handlebars->47->3125",
+ "default.handlebars->47->3184",
+ "default3.handlebars->35->3112",
+ "default3.handlebars->35->3171",
"ssh.handlebars->3->24",
"ssh.handlebars->3->26"
]
@@ -74831,8 +74840,8 @@
"zh-cht": "會議訊息",
"uk": "Інформація про сеанс",
"xloc": [
- "default.handlebars->47->1404",
- "default3.handlebars->35->1391",
+ "default.handlebars->47->1405",
+ "default3.handlebars->35->1392",
"sharing.handlebars->11->18"
]
},
@@ -74864,10 +74873,10 @@
"xloc": [
"default-mobile.handlebars->11->702",
"default-mobile.handlebars->11->709",
- "default.handlebars->47->1517",
- "default.handlebars->47->1533",
- "default3.handlebars->35->1502",
- "default3.handlebars->35->1518"
+ "default.handlebars->47->1518",
+ "default.handlebars->47->1534",
+ "default3.handlebars->35->1503",
+ "default3.handlebars->35->1519"
]
},
{
@@ -74961,10 +74970,10 @@
"xloc": [
"default-mobile.handlebars->11->703",
"default-mobile.handlebars->11->710",
- "default.handlebars->47->1518",
- "default.handlebars->47->1534",
- "default3.handlebars->35->1503",
- "default3.handlebars->35->1519"
+ "default.handlebars->47->1519",
+ "default.handlebars->47->1535",
+ "default3.handlebars->35->1504",
+ "default3.handlebars->35->1520"
]
},
{
@@ -75084,8 +75093,8 @@
"zh-cht": "設置剪貼板",
"uk": "Установити буфер",
"xloc": [
- "default.handlebars->47->1450",
- "default3.handlebars->35->1437"
+ "default.handlebars->47->1451",
+ "default3.handlebars->35->1438"
]
},
{
@@ -75199,8 +75208,8 @@
"zh-cht": "設置剪貼板內容,{0}個字節",
"uk": "Налаштування вмісту буфера, {0} байт(ів)",
"xloc": [
- "default.handlebars->47->2546",
- "default3.handlebars->35->2542"
+ "default.handlebars->47->2547",
+ "default3.handlebars->35->2543"
]
},
{
@@ -75323,9 +75332,9 @@
"uk": "Налаштувати",
"xloc": [
"agent-translations.json",
- "default.handlebars->47->2226",
+ "default.handlebars->47->2227",
"default.handlebars->47->492",
- "default3.handlebars->35->2221",
+ "default3.handlebars->35->2222",
"default3.handlebars->35->489"
]
},
@@ -75407,8 +75416,8 @@
"zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。",
"uk": "Налаштувати цей сервер на автоматичне завантаження резервних копій на Google Drive. Почніть із створення та введення ClientID і ClientSecret Google Drive для власного акаунту.",
"xloc": [
- "default.handlebars->47->2138",
- "default3.handlebars->35->2137"
+ "default.handlebars->47->2139",
+ "default3.handlebars->35->2138"
]
},
{
@@ -75477,8 +75486,8 @@
"zh-cht": "共享",
"uk": "Поширити",
"xloc": [
- "default.handlebars->47->1024",
- "default3.handlebars->35->1021"
+ "default.handlebars->47->1025",
+ "default3.handlebars->35->1022"
]
},
{
@@ -75507,9 +75516,9 @@
"zh-cht": "共享裝置",
"uk": "Надати доступ до пристрою",
"xloc": [
- "default.handlebars->47->1249",
+ "default.handlebars->47->1250",
"default.handlebars->47->320",
- "default3.handlebars->35->1244",
+ "default3.handlebars->35->1245",
"default3.handlebars->35->317"
]
},
@@ -75598,8 +75607,8 @@
"zh-cht": "共享過程",
"uk": "Поширений процес",
"xloc": [
- "default.handlebars->47->1468",
- "default3.handlebars->35->1454"
+ "default.handlebars->47->1469",
+ "default3.handlebars->35->1455"
]
},
{
@@ -75628,12 +75637,12 @@
"zh-cht": "分享",
"uk": "Поширити",
"xloc": [
- "default.handlebars->47->1145",
- "default.handlebars->47->1170",
- "default.handlebars->47->2407",
- "default3.handlebars->35->1140",
- "default3.handlebars->35->1165",
- "default3.handlebars->35->2403"
+ "default.handlebars->47->1146",
+ "default.handlebars->47->1171",
+ "default.handlebars->47->2408",
+ "default3.handlebars->35->1141",
+ "default3.handlebars->35->1166",
+ "default3.handlebars->35->2404"
]
},
{
@@ -75753,10 +75762,10 @@
"xloc": [
"default-mobile.handlebars->11->667",
"default-mobile.handlebars->11->671",
- "default.handlebars->47->1430",
- "default.handlebars->47->1434",
- "default3.handlebars->35->1417",
- "default3.handlebars->35->1421"
+ "default.handlebars->47->1431",
+ "default.handlebars->47->1435",
+ "default3.handlebars->35->1418",
+ "default3.handlebars->35->1422"
]
},
{
@@ -76129,9 +76138,9 @@
"zh-cht": "只顯示自己的事件",
"uk": "Тільки Показати Свої Дії",
"xloc": [
- "default-mobile.handlebars->11->989",
- "default.handlebars->47->2364",
- "default3.handlebars->35->2360"
+ "default-mobile.handlebars->11->990",
+ "default.handlebars->47->2365",
+ "default3.handlebars->35->2361"
]
},
{
@@ -76186,8 +76195,8 @@
"zh-cht": "顯示流量",
"uk": "Показати трафік",
"xloc": [
- "default.handlebars->47->3179",
- "default3.handlebars->35->3166"
+ "default.handlebars->47->3180",
+ "default3.handlebars->35->3167"
]
},
{
@@ -76216,8 +76225,8 @@
"zh-cht": "顯示連接工具欄",
"uk": "Показати панель засобів підключення",
"xloc": [
- "default.handlebars->47->2320",
- "default3.handlebars->35->2316"
+ "default.handlebars->47->2321",
+ "default3.handlebars->35->2317"
]
},
{
@@ -76276,8 +76285,8 @@
"zh-cht": "顯示裝置位置訊息",
"uk": "Показати інформацію про місцезнаходження пристрою",
"xloc": [
- "default.handlebars->47->1038",
- "default3.handlebars->35->1035"
+ "default.handlebars->47->1039",
+ "default3.handlebars->35->1036"
]
},
{
@@ -76306,8 +76315,8 @@
"zh-cht": "顯示裝置網絡介面訊息",
"uk": "Перегляд інформації про мережевий інтерфейс пристрою",
"xloc": [
- "default.handlebars->47->1036",
- "default3.handlebars->35->1033"
+ "default.handlebars->47->1037",
+ "default3.handlebars->35->1034"
]
},
{
@@ -76366,10 +76375,10 @@
"zh-cht": "顯示1分鐘",
"uk": "Показувати 1 хвилину",
"xloc": [
- "default.handlebars->47->2767",
- "default.handlebars->47->2799",
- "default3.handlebars->35->2762",
- "default3.handlebars->35->2794"
+ "default.handlebars->47->2768",
+ "default.handlebars->47->2800",
+ "default3.handlebars->35->2763",
+ "default3.handlebars->35->2795"
]
},
{
@@ -76379,11 +76388,11 @@
"pl": "Pokazuj przez 10 minut",
"uk": "Показувати 10 хвилин",
"xloc": [
- "default.handlebars->47->1182",
- "default.handlebars->47->1196",
+ "default.handlebars->47->1183",
+ "default.handlebars->47->1197",
"default.handlebars->47->777",
- "default3.handlebars->35->1177",
- "default3.handlebars->35->1191",
+ "default3.handlebars->35->1178",
+ "default3.handlebars->35->1192",
"default3.handlebars->35->774"
]
},
@@ -76413,10 +76422,10 @@
"zh-cht": "顯示10秒",
"uk": "Показувати 10 секунд",
"xloc": [
- "default.handlebars->47->2766",
- "default.handlebars->47->2798",
- "default3.handlebars->35->2761",
- "default3.handlebars->35->2793"
+ "default.handlebars->47->2767",
+ "default.handlebars->47->2799",
+ "default3.handlebars->35->2762",
+ "default3.handlebars->35->2794"
]
},
{
@@ -76426,11 +76435,11 @@
"pl": "Pokazuj przez 2 minuty (Domyślnie)",
"uk": "Показувати 2 хвилини (Типово)",
"xloc": [
- "default.handlebars->47->1181",
- "default.handlebars->47->1195",
+ "default.handlebars->47->1182",
+ "default.handlebars->47->1196",
"default.handlebars->47->776",
- "default3.handlebars->35->1176",
- "default3.handlebars->35->1190",
+ "default3.handlebars->35->1177",
+ "default3.handlebars->35->1191",
"default3.handlebars->35->773"
]
},
@@ -76441,11 +76450,11 @@
"pl": "Pokazuj przez 30 minut",
"uk": "Показувати 30 хвилин",
"xloc": [
- "default.handlebars->47->1183",
- "default.handlebars->47->1197",
+ "default.handlebars->47->1184",
+ "default.handlebars->47->1198",
"default.handlebars->47->778",
- "default3.handlebars->35->1178",
- "default3.handlebars->35->1192",
+ "default3.handlebars->35->1179",
+ "default3.handlebars->35->1193",
"default3.handlebars->35->775"
]
},
@@ -76475,10 +76484,10 @@
"zh-cht": "顯示5分鐘",
"uk": "Показувати 5 хвилин",
"xloc": [
- "default.handlebars->47->2768",
- "default.handlebars->47->2800",
- "default3.handlebars->35->2763",
- "default3.handlebars->35->2795"
+ "default.handlebars->47->2769",
+ "default.handlebars->47->2801",
+ "default3.handlebars->35->2764",
+ "default3.handlebars->35->2796"
]
},
{
@@ -76488,11 +76497,11 @@
"pl": "Pokazuj przez 60 minut",
"uk": "Показувати 60 хвилин",
"xloc": [
- "default.handlebars->47->1184",
- "default.handlebars->47->1198",
+ "default.handlebars->47->1185",
+ "default.handlebars->47->1199",
"default.handlebars->47->779",
- "default3.handlebars->35->1179",
- "default3.handlebars->35->1193",
+ "default3.handlebars->35->1180",
+ "default3.handlebars->35->1194",
"default3.handlebars->35->776"
]
},
@@ -76522,15 +76531,15 @@
"zh-cht": "顯示消息,直到被用戶拒絕",
"uk": "Показувати повідомлення, доки користувач не закриє його",
"xloc": [
- "default.handlebars->47->1185",
- "default.handlebars->47->1199",
- "default.handlebars->47->2765",
- "default.handlebars->47->2797",
+ "default.handlebars->47->1186",
+ "default.handlebars->47->1200",
+ "default.handlebars->47->2766",
+ "default.handlebars->47->2798",
"default.handlebars->47->780",
- "default3.handlebars->35->1180",
- "default3.handlebars->35->1194",
- "default3.handlebars->35->2760",
- "default3.handlebars->35->2792",
+ "default3.handlebars->35->1181",
+ "default3.handlebars->35->1195",
+ "default3.handlebars->35->2761",
+ "default3.handlebars->35->2793",
"default3.handlebars->35->777"
]
},
@@ -76877,10 +76886,10 @@
"pl": "Signal",
"uk": "Signal",
"xloc": [
- "default.handlebars->47->1802",
- "default.handlebars->47->3034",
- "default3.handlebars->35->1783",
- "default3.handlebars->35->3027"
+ "default.handlebars->47->1803",
+ "default.handlebars->47->3035",
+ "default3.handlebars->35->1784",
+ "default3.handlebars->35->3028"
]
},
{
@@ -76919,10 +76928,10 @@
"zh-cht": "簡單管理員控制模式(ACM)",
"uk": "Простий режим адміністратора (ACM)",
"xloc": [
- "default.handlebars->47->2215",
- "default.handlebars->47->2273",
- "default3.handlebars->35->2210",
- "default3.handlebars->35->2266"
+ "default.handlebars->47->2216",
+ "default.handlebars->47->2274",
+ "default3.handlebars->35->2211",
+ "default3.handlebars->35->2267"
]
},
{
@@ -76951,16 +76960,16 @@
"zh-cht": "簡單客戶端控制模式(CCM)",
"uk": "Простий режим керування клієнтом (CCM)",
"xloc": [
- "default.handlebars->47->2213",
- "default.handlebars->47->2277",
- "default3.handlebars->35->2208",
- "default3.handlebars->35->2270"
+ "default.handlebars->47->2214",
+ "default.handlebars->47->2278",
+ "default3.handlebars->35->2209",
+ "default3.handlebars->35->2271"
]
},
{
"en": "Simplex",
"xloc": [
- "default3.handlebars->35->2085"
+ "default3.handlebars->35->2086"
]
},
{
@@ -76990,8 +76999,8 @@
"uk": "Сіндхі",
"xloc": [
"default-mobile.handlebars->11->257",
- "default.handlebars->47->1990",
- "default3.handlebars->35->1970",
+ "default.handlebars->47->1991",
+ "default3.handlebars->35->1971",
"login2.handlebars->7->145"
]
},
@@ -77022,8 +77031,8 @@
"uk": "Сінгальська",
"xloc": [
"default-mobile.handlebars->11->258",
- "default.handlebars->47->1991",
- "default3.handlebars->35->1971",
+ "default.handlebars->47->1992",
+ "default3.handlebars->35->1972",
"login2.handlebars->7->146"
]
},
@@ -77084,8 +77093,8 @@
"zh-cht": "單點登錄",
"uk": "Єдиний вхід (SSO)",
"xloc": [
- "default.handlebars->47->3228",
- "default3.handlebars->35->3215"
+ "default.handlebars->47->3229",
+ "default3.handlebars->35->3216"
]
},
{
@@ -77140,11 +77149,11 @@
"zh-cht": "尺寸",
"uk": "Величина",
"xloc": [
- "default.handlebars->47->3127",
- "default.handlebars->47->3148",
+ "default.handlebars->47->3128",
+ "default.handlebars->47->3149",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize",
- "default3.handlebars->35->3114",
- "default3.handlebars->35->3135",
+ "default3.handlebars->35->3115",
+ "default3.handlebars->35->3136",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSize"
]
},
@@ -77174,8 +77183,8 @@
"zh-cht": "縮放:100%",
"uk": "Розмір: 100%",
"xloc": [
- "default.handlebars->47->1585",
- "default3.handlebars->35->1569",
+ "default.handlebars->47->1586",
+ "default3.handlebars->35->1570",
"sharing.handlebars->11->85"
]
},
@@ -77205,8 +77214,8 @@
"zh-cht": "縮放:125%",
"uk": "Розмір: 125%",
"xloc": [
- "default.handlebars->47->1586",
- "default3.handlebars->35->1570",
+ "default.handlebars->47->1587",
+ "default3.handlebars->35->1571",
"sharing.handlebars->11->86"
]
},
@@ -77236,8 +77245,8 @@
"zh-cht": "縮放:150%",
"uk": "Розмір: 150%",
"xloc": [
- "default.handlebars->47->1587",
- "default3.handlebars->35->1571",
+ "default.handlebars->47->1588",
+ "default3.handlebars->35->1572",
"sharing.handlebars->11->87"
]
},
@@ -77267,15 +77276,15 @@
"zh-cht": "縮放:200%",
"uk": "Розмір: 200%",
"xloc": [
- "default.handlebars->47->1588",
- "default3.handlebars->35->1572",
+ "default.handlebars->47->1589",
+ "default3.handlebars->35->1573",
"sharing.handlebars->11->88"
]
},
{
"en": "Sketchy",
"xloc": [
- "default3.handlebars->35->2086"
+ "default3.handlebars->35->2087"
]
},
{
@@ -77285,10 +77294,10 @@
"pl": "Slack",
"uk": "Slack",
"xloc": [
- "default.handlebars->47->1798",
- "default.handlebars->47->3030",
- "default3.handlebars->35->1779",
- "default3.handlebars->35->3023"
+ "default.handlebars->47->1799",
+ "default.handlebars->47->3031",
+ "default3.handlebars->35->1780",
+ "default3.handlebars->35->3024"
]
},
{
@@ -77298,10 +77307,10 @@
"pl": "Instalacja Slack Webhook",
"uk": "Інсталяція Slack Webhook",
"xloc": [
- "default.handlebars->47->1808",
- "default.handlebars->47->3040",
- "default3.handlebars->35->1789",
- "default3.handlebars->35->3033"
+ "default.handlebars->47->1809",
+ "default.handlebars->47->3041",
+ "default3.handlebars->35->1790",
+ "default3.handlebars->35->3034"
]
},
{
@@ -77334,11 +77343,11 @@
"default-mobile.handlebars->11->451",
"default-mobile.handlebars->11->452",
"default-mobile.handlebars->11->586",
- "default.handlebars->47->1259",
+ "default.handlebars->47->1260",
"default.handlebars->47->2",
"default.handlebars->47->3",
"default.handlebars->47->4",
- "default3.handlebars->35->1254",
+ "default3.handlebars->35->1255",
"default3.handlebars->35->2",
"default3.handlebars->35->3",
"default3.handlebars->35->4"
@@ -77435,8 +77444,8 @@
"uk": "Словацька",
"xloc": [
"default-mobile.handlebars->11->260",
- "default.handlebars->47->1993",
- "default3.handlebars->35->1973",
+ "default.handlebars->47->1994",
+ "default3.handlebars->35->1974",
"login2.handlebars->7->148"
]
},
@@ -77467,8 +77476,8 @@
"uk": "Словенська",
"xloc": [
"default-mobile.handlebars->11->261",
- "default.handlebars->47->1994",
- "default3.handlebars->35->1974",
+ "default.handlebars->47->1995",
+ "default3.handlebars->35->1975",
"login2.handlebars->7->149"
]
},
@@ -77563,8 +77572,8 @@
"zh-cht": "小焦點",
"uk": "Малий фокус",
"xloc": [
- "default.handlebars->47->1411",
- "default3.handlebars->35->1398"
+ "default.handlebars->47->1412",
+ "default3.handlebars->35->1399"
]
},
{
@@ -77593,9 +77602,9 @@
"zh-cht": "軟斷開代理",
"uk": "М'яке відключення агенту",
"xloc": [
- "default-mobile.handlebars->11->933",
- "default.handlebars->47->1774",
- "default3.handlebars->35->1756"
+ "default-mobile.handlebars->11->934",
+ "default.handlebars->47->1775",
+ "default3.handlebars->35->1757"
]
},
{
@@ -77661,7 +77670,7 @@
{
"en": "Solar",
"xloc": [
- "default3.handlebars->35->2087"
+ "default3.handlebars->35->2088"
]
},
{
@@ -77691,8 +77700,8 @@
"uk": "Сомані",
"xloc": [
"default-mobile.handlebars->11->262",
- "default.handlebars->47->1995",
- "default3.handlebars->35->1975",
+ "default.handlebars->47->1996",
+ "default3.handlebars->35->1976",
"login2.handlebars->7->150"
]
},
@@ -77723,8 +77732,8 @@
"uk": "Лужицька",
"xloc": [
"default-mobile.handlebars->11->263",
- "default.handlebars->47->1996",
- "default3.handlebars->35->1976",
+ "default.handlebars->47->1997",
+ "default3.handlebars->35->1977",
"login2.handlebars->7->151"
]
},
@@ -77988,14 +77997,14 @@
"uk": "Простір",
"xloc": [
"default-mobile.handlebars->11->653",
- "default.handlebars->47->1417",
- "default3.handlebars->35->1404"
+ "default.handlebars->47->1418",
+ "default3.handlebars->35->1405"
]
},
{
"en": "Spacelab",
"xloc": [
- "default3.handlebars->35->2088"
+ "default3.handlebars->35->2089"
]
},
{
@@ -78025,8 +78034,8 @@
"uk": "Іспанська",
"xloc": [
"default-mobile.handlebars->11->264",
- "default.handlebars->47->1997",
- "default3.handlebars->35->1977",
+ "default.handlebars->47->1998",
+ "default3.handlebars->35->1978",
"login2.handlebars->7->152"
]
},
@@ -78057,8 +78066,8 @@
"uk": "Іспанська (Аргентина)",
"xloc": [
"default-mobile.handlebars->11->265",
- "default.handlebars->47->1998",
- "default3.handlebars->35->1978",
+ "default.handlebars->47->1999",
+ "default3.handlebars->35->1979",
"login2.handlebars->7->153"
]
},
@@ -78089,8 +78098,8 @@
"uk": "Іспанська (Болівія)",
"xloc": [
"default-mobile.handlebars->11->266",
- "default.handlebars->47->1999",
- "default3.handlebars->35->1979",
+ "default.handlebars->47->2000",
+ "default3.handlebars->35->1980",
"login2.handlebars->7->154"
]
},
@@ -78121,8 +78130,8 @@
"uk": "Іспанська (Чилі)",
"xloc": [
"default-mobile.handlebars->11->267",
- "default.handlebars->47->2000",
- "default3.handlebars->35->1980",
+ "default.handlebars->47->2001",
+ "default3.handlebars->35->1981",
"login2.handlebars->7->155"
]
},
@@ -78153,8 +78162,8 @@
"uk": "Іспанська (Колумбія)",
"xloc": [
"default-mobile.handlebars->11->268",
- "default.handlebars->47->2001",
- "default3.handlebars->35->1981",
+ "default.handlebars->47->2002",
+ "default3.handlebars->35->1982",
"login2.handlebars->7->156"
]
},
@@ -78185,8 +78194,8 @@
"uk": "Іспанська (Коста-Ріка)",
"xloc": [
"default-mobile.handlebars->11->269",
- "default.handlebars->47->2002",
- "default3.handlebars->35->1982",
+ "default.handlebars->47->2003",
+ "default3.handlebars->35->1983",
"login2.handlebars->7->157"
]
},
@@ -78217,8 +78226,8 @@
"uk": "Іспанська (Домініканська Республіка)",
"xloc": [
"default-mobile.handlebars->11->270",
- "default.handlebars->47->2003",
- "default3.handlebars->35->1983",
+ "default.handlebars->47->2004",
+ "default3.handlebars->35->1984",
"login2.handlebars->7->158"
]
},
@@ -78249,8 +78258,8 @@
"uk": "Іспанська (Еквадор)",
"xloc": [
"default-mobile.handlebars->11->271",
- "default.handlebars->47->2004",
- "default3.handlebars->35->1984",
+ "default.handlebars->47->2005",
+ "default3.handlebars->35->1985",
"login2.handlebars->7->159"
]
},
@@ -78281,8 +78290,8 @@
"uk": "Іспанська (Сальвадор)",
"xloc": [
"default-mobile.handlebars->11->272",
- "default.handlebars->47->2005",
- "default3.handlebars->35->1985",
+ "default.handlebars->47->2006",
+ "default3.handlebars->35->1986",
"login2.handlebars->7->160"
]
},
@@ -78313,8 +78322,8 @@
"uk": "Іспанська (Гватемала)",
"xloc": [
"default-mobile.handlebars->11->273",
- "default.handlebars->47->2006",
- "default3.handlebars->35->1986",
+ "default.handlebars->47->2007",
+ "default3.handlebars->35->1987",
"login2.handlebars->7->161"
]
},
@@ -78345,8 +78354,8 @@
"uk": "Іспанська (Гондурас)",
"xloc": [
"default-mobile.handlebars->11->274",
- "default.handlebars->47->2007",
- "default3.handlebars->35->1987",
+ "default.handlebars->47->2008",
+ "default3.handlebars->35->1988",
"login2.handlebars->7->162"
]
},
@@ -78377,8 +78386,8 @@
"uk": "Іспанська (Мексика)",
"xloc": [
"default-mobile.handlebars->11->275",
- "default.handlebars->47->2008",
- "default3.handlebars->35->1988",
+ "default.handlebars->47->2009",
+ "default3.handlebars->35->1989",
"login2.handlebars->7->163"
]
},
@@ -78409,8 +78418,8 @@
"uk": "Іспанська (Нікарагуа)",
"xloc": [
"default-mobile.handlebars->11->276",
- "default.handlebars->47->2009",
- "default3.handlebars->35->1989",
+ "default.handlebars->47->2010",
+ "default3.handlebars->35->1990",
"login2.handlebars->7->164"
]
},
@@ -78441,8 +78450,8 @@
"uk": "Іспанська (Панама)",
"xloc": [
"default-mobile.handlebars->11->277",
- "default.handlebars->47->2010",
- "default3.handlebars->35->1990",
+ "default.handlebars->47->2011",
+ "default3.handlebars->35->1991",
"login2.handlebars->7->165"
]
},
@@ -78473,8 +78482,8 @@
"uk": "Іспанська (Парагвай)",
"xloc": [
"default-mobile.handlebars->11->278",
- "default.handlebars->47->2011",
- "default3.handlebars->35->1991",
+ "default.handlebars->47->2012",
+ "default3.handlebars->35->1992",
"login2.handlebars->7->166"
]
},
@@ -78505,8 +78514,8 @@
"uk": "Іспанська (Перу)",
"xloc": [
"default-mobile.handlebars->11->279",
- "default.handlebars->47->2012",
- "default3.handlebars->35->1992",
+ "default.handlebars->47->2013",
+ "default3.handlebars->35->1993",
"login2.handlebars->7->167"
]
},
@@ -78537,8 +78546,8 @@
"uk": "Іспанська (Пуерто-Ріко)",
"xloc": [
"default-mobile.handlebars->11->280",
- "default.handlebars->47->2013",
- "default3.handlebars->35->1993",
+ "default.handlebars->47->2014",
+ "default3.handlebars->35->1994",
"login2.handlebars->7->168"
]
},
@@ -78569,8 +78578,8 @@
"uk": "Іспанська (Іспанія)",
"xloc": [
"default-mobile.handlebars->11->281",
- "default.handlebars->47->2014",
- "default3.handlebars->35->1994",
+ "default.handlebars->47->2015",
+ "default3.handlebars->35->1995",
"login2.handlebars->7->169"
]
},
@@ -78601,8 +78610,8 @@
"uk": "Іспанська (Уругвай)",
"xloc": [
"default-mobile.handlebars->11->282",
- "default.handlebars->47->2015",
- "default3.handlebars->35->1995",
+ "default.handlebars->47->2016",
+ "default3.handlebars->35->1996",
"login2.handlebars->7->170"
]
},
@@ -78633,8 +78642,8 @@
"uk": "Іспанська (Венесуела)",
"xloc": [
"default-mobile.handlebars->11->283",
- "default.handlebars->47->2016",
- "default3.handlebars->35->1996",
+ "default.handlebars->47->2017",
+ "default3.handlebars->35->1997",
"login2.handlebars->7->171"
]
},
@@ -78645,9 +78654,9 @@
"pl": "Wersja",
"uk": "СпецВерсія",
"xloc": [
- "default-mobile.handlebars->11->849",
- "default.handlebars->47->1689",
- "default3.handlebars->35->1671"
+ "default-mobile.handlebars->11->850",
+ "default.handlebars->47->1690",
+ "default3.handlebars->35->1672"
]
},
{
@@ -78766,8 +78775,8 @@
"zh-cht": "開始",
"uk": "Запуск",
"xloc": [
- "default.handlebars->47->1479",
- "default3.handlebars->35->1465"
+ "default.handlebars->47->1480",
+ "default3.handlebars->35->1466"
]
},
{
@@ -78822,20 +78831,20 @@
"zh-cht": "開始時間",
"uk": "Час запуску",
"xloc": [
- "default.handlebars->47->1240",
+ "default.handlebars->47->1241",
"default.handlebars->47->132",
- "default.handlebars->47->1401",
+ "default.handlebars->47->1402",
"default.handlebars->47->294",
"default.handlebars->47->299",
- "default.handlebars->47->3125",
- "default.handlebars->47->3150",
- "default3.handlebars->35->1235",
+ "default.handlebars->47->3126",
+ "default.handlebars->47->3151",
+ "default3.handlebars->35->1236",
"default3.handlebars->35->132",
- "default3.handlebars->35->1388",
+ "default3.handlebars->35->1389",
"default3.handlebars->35->291",
"default3.handlebars->35->296",
- "default3.handlebars->35->3112",
- "default3.handlebars->35->3137",
+ "default3.handlebars->35->3113",
+ "default3.handlebars->35->3138",
"sharing.handlebars->11->14"
]
},
@@ -78846,8 +78855,8 @@
"pl": "Typ Rozruchu",
"uk": "Тип запуску",
"xloc": [
- "default.handlebars->47->1470",
- "default3.handlebars->35->1456"
+ "default.handlebars->47->1471",
+ "default3.handlebars->35->1457"
]
},
{
@@ -78935,8 +78944,8 @@
"zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。",
"uk": "Розпочато сеанс Web-RDP \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2674",
- "default3.handlebars->35->2670"
+ "default.handlebars->47->2675",
+ "default3.handlebars->35->2671"
]
},
{
@@ -78965,8 +78974,8 @@
"zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。",
"uk": "Розпочато сеанс Web-SFTP \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2673",
- "default3.handlebars->35->2669"
+ "default.handlebars->47->2674",
+ "default3.handlebars->35->2670"
]
},
{
@@ -78995,8 +79004,8 @@
"zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。",
"uk": "Розпочато сеанс Web-SSH \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2672",
- "default3.handlebars->35->2668"
+ "default.handlebars->47->2673",
+ "default3.handlebars->35->2669"
]
},
{
@@ -79025,8 +79034,8 @@
"zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。",
"uk": "Розпочато сеанс Web-VNC \\\"{0}\\\".",
"xloc": [
- "default.handlebars->47->2675",
- "default3.handlebars->35->2671"
+ "default.handlebars->47->2676",
+ "default3.handlebars->35->2672"
]
},
{
@@ -79055,8 +79064,8 @@
"zh-cht": "啟動桌面多路復用會話",
"uk": "Розпочато мультиплексний сеанс стільниці",
"xloc": [
- "default.handlebars->47->2530",
- "default3.handlebars->35->2526"
+ "default.handlebars->47->2531",
+ "default3.handlebars->35->2527"
]
},
{
@@ -79085,8 +79094,8 @@
"zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"",
"uk": "Розпочато мультиплексний сеанс стільниці \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2669",
- "default3.handlebars->35->2665"
+ "default.handlebars->47->2670",
+ "default3.handlebars->35->2666"
]
},
{
@@ -79115,8 +79124,8 @@
"zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
"uk": "Розпочато робочий сеанс \\\"{0}\\\" від {1} до {2}",
"xloc": [
- "default.handlebars->47->2539",
- "default3.handlebars->35->2535"
+ "default.handlebars->47->2540",
+ "default3.handlebars->35->2536"
]
},
{
@@ -79145,8 +79154,8 @@
"zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
"uk": "Розпочато сеанс керування файлами \\\"{0}\\\" від {1} до {2}",
"xloc": [
- "default.handlebars->47->2540",
- "default3.handlebars->35->2536"
+ "default.handlebars->47->2541",
+ "default3.handlebars->35->2537"
]
},
{
@@ -79175,8 +79184,8 @@
"zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}",
"uk": "Розпочато локальний сеанс ретрансляції \\\"{0}\\\", протокол {1} до {2}",
"xloc": [
- "default.handlebars->47->2644",
- "default3.handlebars->35->2640"
+ "default.handlebars->47->2645",
+ "default3.handlebars->35->2641"
]
},
{
@@ -79205,8 +79214,8 @@
"zh-cht": "從{1}到{2}開始中繼會話“{0}”",
"uk": "Розпочато сеанс ретрансляції \\\"{0}\\\" від {1} до {2}",
"xloc": [
- "default.handlebars->47->2537",
- "default3.handlebars->35->2533"
+ "default.handlebars->47->2538",
+ "default3.handlebars->35->2534"
]
},
{
@@ -79235,8 +79244,8 @@
"zh-cht": "使用Toast通知啟動遠程桌面",
"uk": "Віддалену стільницю запущено із висувним сповіщенням",
"xloc": [
- "default.handlebars->47->2559",
- "default3.handlebars->35->2555"
+ "default.handlebars->47->2560",
+ "default3.handlebars->35->2556"
]
},
{
@@ -79265,8 +79274,8 @@
"zh-cht": "啟動遠程桌面,而無需通知",
"uk": "Віддалену стільницю запущено без сповіщення",
"xloc": [
- "default.handlebars->47->2560",
- "default3.handlebars->35->2556"
+ "default.handlebars->47->2561",
+ "default3.handlebars->35->2557"
]
},
{
@@ -79295,8 +79304,8 @@
"zh-cht": "啟動帶有Toast通知的遠程文件",
"uk": "Запускати віддалені файли із висувним сповіщенням",
"xloc": [
- "default.handlebars->47->2566",
- "default3.handlebars->35->2562"
+ "default.handlebars->47->2567",
+ "default3.handlebars->35->2563"
]
},
{
@@ -79325,8 +79334,8 @@
"zh-cht": "已啟動的遠程文件,恕不另行通知",
"uk": "Запускати віддалені файли без сповіщення",
"xloc": [
- "default.handlebars->47->2567",
- "default3.handlebars->35->2563"
+ "default.handlebars->47->2568",
+ "default3.handlebars->35->2564"
]
},
{
@@ -79355,8 +79364,8 @@
"zh-cht": "從{1}到{2}開始了終端會話“{0}”",
"uk": "Розпочато термінальний сеанс \\\"{0}\\\" від {1} до {2}",
"xloc": [
- "default.handlebars->47->2538",
- "default3.handlebars->35->2534"
+ "default.handlebars->47->2539",
+ "default3.handlebars->35->2535"
]
},
{
@@ -79385,8 +79394,8 @@
"zh-cht": "現在開始",
"uk": "Запустити зараз",
"xloc": [
- "default.handlebars->47->1233",
- "default3.handlebars->35->1228"
+ "default.handlebars->47->1234",
+ "default3.handlebars->35->1229"
]
},
{
@@ -79415,8 +79424,8 @@
"zh-cht": "接受本地用戶後啟動遠程桌面",
"uk": "Запуск віддаленої стільниці після згоди локального користувача",
"xloc": [
- "default.handlebars->47->2554",
- "default3.handlebars->35->2550"
+ "default.handlebars->47->2555",
+ "default3.handlebars->35->2551"
]
},
{
@@ -79445,8 +79454,8 @@
"zh-cht": "本地用戶接受後啟動遠程文件",
"uk": "Запуск віддалених файлів після згоди локального користувача",
"xloc": [
- "default.handlebars->47->2564",
- "default3.handlebars->35->2560"
+ "default.handlebars->47->2565",
+ "default3.handlebars->35->2561"
]
},
{
@@ -79501,9 +79510,9 @@
"zh-cht": "狀態",
"uk": "Стан",
"xloc": [
- "default.handlebars->47->1462",
+ "default.handlebars->47->1463",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1",
- "default3.handlebars->35->1448",
+ "default3.handlebars->35->1449",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1"
]
},
@@ -79589,14 +79598,14 @@
"zh-cht": "狀態",
"uk": "Стан",
"xloc": [
- "default-mobile.handlebars->11->884",
- "default.handlebars->47->1724",
- "default.handlebars->47->3065",
- "default.handlebars->47->3143",
+ "default-mobile.handlebars->11->885",
+ "default.handlebars->47->1725",
+ "default.handlebars->47->3066",
+ "default.handlebars->47->3144",
"default.handlebars->container->column_l->p42->p42tbl->1->0->7",
- "default3.handlebars->35->1706",
- "default3.handlebars->35->3056",
- "default3.handlebars->35->3130",
+ "default3.handlebars->35->1707",
+ "default3.handlebars->35->3057",
+ "default3.handlebars->35->3131",
"default3.handlebars->container->column_l->p42->p42tbl->1->0->15"
]
},
@@ -79626,8 +79635,8 @@
"zh-cht": "停止",
"uk": "Стоп",
"xloc": [
- "default.handlebars->47->1480",
- "default3.handlebars->35->1466"
+ "default.handlebars->47->1481",
+ "default3.handlebars->35->1467"
]
},
{
@@ -79656,8 +79665,8 @@
"zh-cht": "停止進程",
"uk": "Зупинити процес",
"xloc": [
- "default.handlebars->47->1453",
- "default3.handlebars->35->1440"
+ "default.handlebars->47->1454",
+ "default3.handlebars->35->1441"
]
},
{
@@ -79686,8 +79695,8 @@
"zh-cht": "停止進程 #{0} \\\"{1}\\\"?",
"uk": "Зупинити процес #{0} \\\"{1}\\\"?",
"xloc": [
- "default.handlebars->47->1492",
- "default3.handlebars->35->1477"
+ "default.handlebars->47->1493",
+ "default3.handlebars->35->1478"
]
},
{
@@ -79742,10 +79751,10 @@
"zh-cht": "停止",
"uk": "Зупинено",
"xloc": [
- "default.handlebars->47->1456",
- "default.handlebars->47->1460",
- "default3.handlebars->35->1442",
- "default3.handlebars->35->1446"
+ "default.handlebars->47->1457",
+ "default.handlebars->47->1461",
+ "default3.handlebars->35->1443",
+ "default3.handlebars->35->1447"
]
},
{
@@ -79800,9 +79809,9 @@
"zh-cht": "儲存",
"uk": "Сховище",
"xloc": [
- "default-mobile.handlebars->11->885",
- "default.handlebars->47->1725",
- "default3.handlebars->35->1707"
+ "default-mobile.handlebars->11->886",
+ "default.handlebars->47->1726",
+ "default3.handlebars->35->1708"
]
},
{
@@ -79812,15 +79821,15 @@
"pl": "Woluminy Pamięci",
"uk": "Томи Сховища",
"xloc": [
- "default-mobile.handlebars->11->897",
- "default-mobile.handlebars->11->904",
- "default-mobile.handlebars->11->911",
- "default.handlebars->47->1737",
- "default.handlebars->47->1744",
- "default.handlebars->47->1751",
- "default3.handlebars->35->1719",
- "default3.handlebars->35->1726",
- "default3.handlebars->35->1733"
+ "default-mobile.handlebars->11->898",
+ "default-mobile.handlebars->11->905",
+ "default-mobile.handlebars->11->912",
+ "default.handlebars->47->1738",
+ "default.handlebars->47->1745",
+ "default.handlebars->47->1752",
+ "default3.handlebars->35->1720",
+ "default3.handlebars->35->1727",
+ "default3.handlebars->35->1734"
]
},
{
@@ -79878,8 +79887,8 @@
"zh-cht": "超出儲存空間",
"uk": "Ліміт сховища переповнено",
"xloc": [
- "default.handlebars->47->2483",
- "default3.handlebars->35->2479"
+ "default.handlebars->47->2484",
+ "default3.handlebars->35->2480"
]
},
{
@@ -79909,8 +79918,8 @@
"uk": "Збережений ключ",
"xloc": [
"default-mobile.handlebars->11->685",
- "default.handlebars->47->1499",
- "default3.handlebars->35->1484",
+ "default.handlebars->47->1500",
+ "default3.handlebars->35->1485",
"ssh.handlebars->3->6"
]
},
@@ -79940,8 +79949,8 @@
"zh-cht": "強",
"uk": "Надійний",
"xloc": [
- "default.handlebars->47->2121",
- "default3.handlebars->35->2120"
+ "default.handlebars->47->2122",
+ "default3.handlebars->35->2121"
]
},
{
@@ -80004,8 +80013,8 @@
"zh-cht": "主題",
"uk": "Тема",
"xloc": [
- "default.handlebars->47->2762",
- "default3.handlebars->35->2757"
+ "default.handlebars->47->2763",
+ "default3.handlebars->35->2758"
]
},
{
@@ -80044,8 +80053,8 @@
"pl": "Późniejsze Awarie",
"uk": "Подальші Невдачі",
"xloc": [
- "default.handlebars->47->1477",
- "default3.handlebars->35->1463"
+ "default.handlebars->47->1478",
+ "default3.handlebars->35->1464"
]
},
{
@@ -80074,10 +80083,10 @@
"zh-cht": "成功登錄",
"uk": "Вхід успішний",
"xloc": [
- "default.handlebars->47->3213",
- "default.handlebars->47->3252",
- "default3.handlebars->35->3200",
- "default3.handlebars->35->3239"
+ "default.handlebars->47->3214",
+ "default.handlebars->47->3253",
+ "default3.handlebars->35->3201",
+ "default3.handlebars->35->3240"
]
},
{
@@ -80197,8 +80206,8 @@
"uk": "Суту",
"xloc": [
"default-mobile.handlebars->11->284",
- "default.handlebars->47->2017",
- "default3.handlebars->35->1997",
+ "default.handlebars->47->2018",
+ "default3.handlebars->35->1998",
"login2.handlebars->7->172"
]
},
@@ -80229,8 +80238,8 @@
"uk": "Суахілі",
"xloc": [
"default-mobile.handlebars->11->285",
- "default.handlebars->47->2018",
- "default3.handlebars->35->1998",
+ "default.handlebars->47->2019",
+ "default3.handlebars->35->1999",
"login2.handlebars->7->173"
]
},
@@ -80294,8 +80303,8 @@
"uk": "Шведська",
"xloc": [
"default-mobile.handlebars->11->286",
- "default.handlebars->47->2019",
- "default3.handlebars->35->1999",
+ "default.handlebars->47->2020",
+ "default3.handlebars->35->2000",
"login2.handlebars->7->174"
]
},
@@ -80326,8 +80335,8 @@
"uk": "Шведська (Фінляндія)",
"xloc": [
"default-mobile.handlebars->11->287",
- "default.handlebars->47->2020",
- "default3.handlebars->35->2000",
+ "default.handlebars->47->2021",
+ "default3.handlebars->35->2001",
"login2.handlebars->7->175"
]
},
@@ -80358,8 +80367,8 @@
"uk": "Шведська (Швеція)",
"xloc": [
"default-mobile.handlebars->11->288",
- "default.handlebars->47->2021",
- "default3.handlebars->35->2001",
+ "default.handlebars->47->2022",
+ "default3.handlebars->35->2002",
"login2.handlebars->7->176"
]
},
@@ -80424,8 +80433,8 @@
"zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。",
"uk": "Перемикач Intel AMT у режимі Admin Control Mode (ACM).",
"xloc": [
- "default.handlebars->47->2233",
- "default3.handlebars->35->2228"
+ "default.handlebars->47->2234",
+ "default3.handlebars->35->2229"
]
},
{
@@ -80454,10 +80463,10 @@
"zh-cht": "交換機端口已連接",
"uk": "Перемикач підключеного порту",
"xloc": [
- "default.handlebars->47->1063",
"default.handlebars->47->1064",
- "default3.handlebars->35->1060",
- "default3.handlebars->35->1061"
+ "default.handlebars->47->1065",
+ "default3.handlebars->35->1061",
+ "default3.handlebars->35->1062"
]
},
{
@@ -80493,7 +80502,7 @@
{
"en": "Switch theme",
"xloc": [
- "default3.handlebars->35->2096",
+ "default3.handlebars->35->2097",
"default3.handlebars->container->column_l->p2->p2info->p2AccountActions->3->19"
]
},
@@ -80523,8 +80532,8 @@
"zh-cht": "將伺服器裝置名稱同步到主機名稱",
"uk": "Синхронізувати назву пристрою сервера з іменем хоста",
"xloc": [
- "default.handlebars->47->2329",
- "default3.handlebars->35->2325"
+ "default.handlebars->47->2330",
+ "default3.handlebars->35->2326"
]
},
{
@@ -80553,8 +80562,8 @@
"zh-cht": "將服務器設備名稱同步到端口名稱",
"uk": "Синхронізувати назву пристрою сервера з назвою порту",
"xloc": [
- "default.handlebars->47->2328",
- "default3.handlebars->35->2324"
+ "default.handlebars->47->2329",
+ "default3.handlebars->35->2325"
]
},
{
@@ -80947,9 +80956,9 @@
"zh-cht": "未設置TLS",
"uk": "TLS не встановлено",
"xloc": [
- "default-mobile.handlebars->11->830",
- "default.handlebars->47->1670",
- "default3.handlebars->35->1652"
+ "default-mobile.handlebars->11->831",
+ "default.handlebars->47->1671",
+ "default3.handlebars->35->1653"
]
},
{
@@ -80979,9 +80988,9 @@
"uk": "Необхідна безпека TLS",
"xloc": [
"default-mobile.handlebars->11->625",
- "default.handlebars->47->1306",
+ "default.handlebars->47->1307",
"default.handlebars->47->517",
- "default3.handlebars->35->1297",
+ "default3.handlebars->35->1298",
"default3.handlebars->35->514"
]
},
@@ -80990,9 +80999,9 @@
"en": "TPM",
"nl": "TPM",
"xloc": [
- "default-mobile.handlebars->11->861",
- "default.handlebars->47->1701",
- "default3.handlebars->35->1683"
+ "default-mobile.handlebars->11->862",
+ "default.handlebars->47->1702",
+ "default3.handlebars->35->1684"
]
},
{
@@ -81023,8 +81032,8 @@
"xloc": [
"default-mobile.handlebars->11->650",
"default-mobile.handlebars->dialog->3->dialog3->deskkeys->3",
- "default.handlebars->47->1414",
- "default3.handlebars->35->1401"
+ "default.handlebars->47->1415",
+ "default3.handlebars->35->1402"
]
},
{
@@ -81053,9 +81062,9 @@
"zh-cht": "標籤1,標籤2,標籤3",
"uk": "Тег1, Тег2, Тег3",
"xloc": [
- "default.handlebars->47->1371",
+ "default.handlebars->47->1372",
"default.handlebars->47->769",
- "default3.handlebars->35->1357",
+ "default3.handlebars->35->1358",
"default3.handlebars->35->766"
]
},
@@ -81118,19 +81127,19 @@
"default-mobile.handlebars->11->539",
"default-mobile.handlebars->11->540",
"default-mobile.handlebars->11->638",
- "default.handlebars->47->1370",
+ "default.handlebars->47->1000",
+ "default.handlebars->47->1371",
"default.handlebars->47->349",
"default.handlebars->47->381",
"default.handlebars->47->768",
- "default.handlebars->47->998",
"default.handlebars->47->999",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7",
- "default3.handlebars->35->1356",
+ "default3.handlebars->35->1357",
"default3.handlebars->35->346",
"default3.handlebars->35->378",
"default3.handlebars->35->765",
- "default3.handlebars->35->995",
"default3.handlebars->35->996",
+ "default3.handlebars->35->997",
"default3.handlebars->container->column_l->p1->devListToolbarSpan->7->devListToolbarSort->sortselect->7"
]
},
@@ -81191,8 +81200,8 @@
"uk": "Тамільська",
"xloc": [
"default-mobile.handlebars->11->289",
- "default.handlebars->47->2022",
- "default3.handlebars->35->2002",
+ "default.handlebars->47->2023",
+ "default3.handlebars->35->2003",
"login2.handlebars->7->177"
]
},
@@ -81238,8 +81247,8 @@
"uk": "Татарська",
"xloc": [
"default-mobile.handlebars->11->290",
- "default.handlebars->47->2023",
- "default3.handlebars->35->2003",
+ "default.handlebars->47->2024",
+ "default3.handlebars->35->2004",
"login2.handlebars->7->178"
]
},
@@ -81253,14 +81262,14 @@
"nl": "Telegram",
"pl": "Telegram",
"xloc": [
- "default.handlebars->47->1791",
- "default.handlebars->47->1805",
- "default.handlebars->47->3023",
- "default.handlebars->47->3037",
- "default3.handlebars->35->1772",
- "default3.handlebars->35->1786",
- "default3.handlebars->35->3016",
- "default3.handlebars->35->3030"
+ "default.handlebars->47->1792",
+ "default.handlebars->47->1806",
+ "default.handlebars->47->3024",
+ "default.handlebars->47->3038",
+ "default3.handlebars->35->1773",
+ "default3.handlebars->35->1787",
+ "default3.handlebars->35->3017",
+ "default3.handlebars->35->3031"
]
},
{
@@ -81290,8 +81299,8 @@
"uk": "Телуга",
"xloc": [
"default-mobile.handlebars->11->291",
- "default.handlebars->47->2024",
- "default3.handlebars->35->2004",
+ "default.handlebars->47->2025",
+ "default3.handlebars->35->2005",
"login2.handlebars->7->179"
]
},
@@ -81323,26 +81332,26 @@
"xloc": [
"default-mobile.handlebars->11->431",
"default-mobile.handlebars->11->574",
- "default.handlebars->47->1091",
- "default.handlebars->47->1207",
- "default.handlebars->47->2241",
- "default.handlebars->47->2321",
- "default.handlebars->47->3137",
- "default.handlebars->47->3197",
- "default.handlebars->47->3247",
- "default.handlebars->47->3342",
+ "default.handlebars->47->1092",
+ "default.handlebars->47->1208",
+ "default.handlebars->47->2242",
+ "default.handlebars->47->2322",
+ "default.handlebars->47->3138",
+ "default.handlebars->47->3198",
+ "default.handlebars->47->3248",
+ "default.handlebars->47->3343",
"default.handlebars->47->462",
"default.handlebars->47->865",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
"default.handlebars->contextMenu->cxterminal",
- "default3.handlebars->35->1088",
- "default3.handlebars->35->1202",
- "default3.handlebars->35->2236",
- "default3.handlebars->35->2317",
- "default3.handlebars->35->3124",
- "default3.handlebars->35->3184",
- "default3.handlebars->35->3234",
- "default3.handlebars->35->3329",
+ "default3.handlebars->35->1089",
+ "default3.handlebars->35->1203",
+ "default3.handlebars->35->2237",
+ "default3.handlebars->35->2318",
+ "default3.handlebars->35->3125",
+ "default3.handlebars->35->3185",
+ "default3.handlebars->35->3235",
+ "default3.handlebars->35->3330",
"default3.handlebars->35->459",
"default3.handlebars->35->862",
"default3.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
@@ -81376,12 +81385,12 @@
"zh-cht": "終端 + 文件",
"uk": "Термінал + Файли",
"xloc": [
- "default.handlebars->47->1095",
- "default.handlebars->47->1210",
- "default.handlebars->47->2245",
- "default3.handlebars->35->1092",
- "default3.handlebars->35->1205",
- "default3.handlebars->35->2240"
+ "default.handlebars->47->1096",
+ "default.handlebars->47->1211",
+ "default.handlebars->47->2246",
+ "default3.handlebars->35->1093",
+ "default3.handlebars->35->1206",
+ "default3.handlebars->35->2241"
]
},
{
@@ -81440,14 +81449,14 @@
"zh-cht": "終端機通知",
"uk": "Повідомлення про термінал",
"xloc": [
- "default.handlebars->47->2195",
- "default.handlebars->47->2875",
- "default.handlebars->47->2980",
- "default.handlebars->47->972",
- "default3.handlebars->35->2190",
- "default3.handlebars->35->2868",
- "default3.handlebars->35->2973",
- "default3.handlebars->35->969"
+ "default.handlebars->47->2196",
+ "default.handlebars->47->2876",
+ "default.handlebars->47->2981",
+ "default.handlebars->47->973",
+ "default3.handlebars->35->2191",
+ "default3.handlebars->35->2869",
+ "default3.handlebars->35->2974",
+ "default3.handlebars->35->970"
]
},
{
@@ -81476,14 +81485,14 @@
"zh-cht": "終端機提示",
"uk": "Запит Терміналу",
"xloc": [
- "default.handlebars->47->2194",
- "default.handlebars->47->2874",
- "default.handlebars->47->2979",
- "default.handlebars->47->971",
- "default3.handlebars->35->2189",
- "default3.handlebars->35->2867",
- "default3.handlebars->35->2972",
- "default3.handlebars->35->968"
+ "default.handlebars->47->2195",
+ "default.handlebars->47->2875",
+ "default.handlebars->47->2980",
+ "default.handlebars->47->972",
+ "default3.handlebars->35->2190",
+ "default3.handlebars->35->2868",
+ "default3.handlebars->35->2973",
+ "default3.handlebars->35->969"
]
},
{
@@ -81512,8 +81521,8 @@
"zh-cht": "終端會話",
"uk": "Термінальна сесія",
"xloc": [
- "default.handlebars->47->3130",
- "default3.handlebars->35->3117"
+ "default.handlebars->47->3131",
+ "default3.handlebars->35->3118"
]
},
{
@@ -81654,8 +81663,8 @@
"pl": "Zapisy notatek tekstowych",
"uk": "Записи текстових приміток",
"xloc": [
- "default.handlebars->47->3234",
- "default3.handlebars->35->3221"
+ "default.handlebars->47->3235",
+ "default3.handlebars->35->3222"
]
},
{
@@ -81685,8 +81694,8 @@
"uk": "Тайський",
"xloc": [
"default-mobile.handlebars->11->292",
- "default.handlebars->47->2025",
- "default3.handlebars->35->2005",
+ "default.handlebars->47->2026",
+ "default3.handlebars->35->2006",
"login2.handlebars->7->180"
]
},
@@ -81980,9 +81989,9 @@
"zh-cht": "目前沒有任何通知",
"uk": "Наразі немає сповіщень",
"xloc": [
- "default-mobile.handlebars->11->1022",
- "default.handlebars->47->3257",
- "default3.handlebars->35->3244"
+ "default-mobile.handlebars->11->1023",
+ "default.handlebars->47->3258",
+ "default3.handlebars->35->3245"
]
},
{
@@ -82011,9 +82020,9 @@
"zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。",
"uk": "Після останнього входу в акаунт кількість спроб невдалого входу дорівнює: {0}",
"xloc": [
- "default-mobile.handlebars->11->1043",
- "default.handlebars->47->3278",
- "default3.handlebars->35->3265"
+ "default-mobile.handlebars->11->1044",
+ "default.handlebars->47->3279",
+ "default3.handlebars->35->3266"
]
},
{
@@ -82160,7 +82169,7 @@
"uk": "Цей акаунт не має права на створення нової групи пристроїв.",
"xloc": [
"default-mobile.handlebars->11->339",
- "default.handlebars->47->2096"
+ "default.handlebars->47->2097"
]
},
{
@@ -82189,8 +82198,8 @@
"zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。",
"uk": "Цей агент має застарілий механізм перевірки сертифіката, розгляньте можливість оновлення.",
"xloc": [
- "default.handlebars->47->2642",
- "default3.handlebars->35->2638"
+ "default.handlebars->47->2643",
+ "default3.handlebars->35->2639"
]
},
{
@@ -82219,8 +82228,8 @@
"zh-cht": "此代理正在使用不安全的隧道,請考慮更新。",
"uk": "Цей агент використовує незахищені тунелі, розгляньте можливість оновлення.",
"xloc": [
- "default.handlebars->47->2643",
- "default3.handlebars->35->2639"
+ "default.handlebars->47->2644",
+ "default3.handlebars->35->2640"
]
},
{
@@ -82312,14 +82321,14 @@
"zh-cht": "這是一個嘉賓分享會",
"uk": "Це гостьовий сеанс спільного доступу",
"xloc": [
- "default.handlebars->47->1599",
- "default.handlebars->47->2694",
- "default.handlebars->47->3116",
+ "default.handlebars->47->1600",
+ "default.handlebars->47->2695",
"default.handlebars->47->3117",
- "default3.handlebars->35->1583",
- "default3.handlebars->35->2690",
- "default3.handlebars->35->3103",
- "default3.handlebars->35->3104"
+ "default.handlebars->47->3118",
+ "default3.handlebars->35->1584",
+ "default3.handlebars->35->2691",
+ "default3.handlebars->35->3104",
+ "default3.handlebars->35->3105"
]
},
{
@@ -82377,8 +82386,8 @@
"zh-cht": "這是舊代理版本,請考慮更新。",
"uk": "Це стара версія агента, розгляньте можливість оновлення.",
"xloc": [
- "default.handlebars->47->2641",
- "default3.handlebars->35->2637"
+ "default.handlebars->47->2642",
+ "default3.handlebars->35->2638"
]
},
{
@@ -82433,8 +82442,8 @@
"zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。",
"uk": "Це рекомендована політика. Активація та керування Intel® AMT повністю автоматизовано, і сервер намагатиметься якнайкраще використовувати керування обладнанням.",
"xloc": [
- "default.handlebars->47->2302",
- "default3.handlebars->35->2295"
+ "default.handlebars->47->2303",
+ "default3.handlebars->35->2296"
]
},
{
@@ -82493,8 +82502,8 @@
"zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
"uk": "Ця політика не впливатиме на пристрої з Intel® AMT у режимі ACM.",
"xloc": [
- "default.handlebars->47->2299",
- "default3.handlebars->35->2292"
+ "default.handlebars->47->2300",
+ "default3.handlebars->35->2293"
]
},
{
@@ -82639,8 +82648,8 @@
"zh-cht": "這會在此裝置的事件日誌中增加一個記錄。",
"uk": "Це додасть запис до журналу подій цього пристрою.",
"xloc": [
- "default.handlebars->47->1175",
- "default3.handlebars->35->1170"
+ "default.handlebars->47->1176",
+ "default3.handlebars->35->1171"
]
},
{
@@ -82695,8 +82704,8 @@
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"uk": "Це не призведе до видалення пристроїв із сервера, але пристрої більше не зможуть підключитися до сервера. Віддалений доступ до пристроїв буде втрачено. Пристрої мають бути підключеними, щоб ця команда виконалась.",
"xloc": [
- "default.handlebars->47->1313",
- "default3.handlebars->35->1304"
+ "default.handlebars->47->1314",
+ "default3.handlebars->35->1305"
]
},
{
@@ -82725,8 +82734,8 @@
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"uk": "Це не видалить цей пристрій із сервера, але пристрій більше не зможе підключитися до сервера. Віддалений доступ до пристрою буде втрачено. Пристрій має бути підключеним, щоб ця команда виконалась.",
"xloc": [
- "default.handlebars->47->1314",
- "default3.handlebars->35->1305"
+ "default.handlebars->47->1315",
+ "default3.handlebars->35->1306"
]
},
{
@@ -82756,8 +82765,8 @@
"uk": "Тигре",
"xloc": [
"default-mobile.handlebars->11->293",
- "default.handlebars->47->2026",
- "default3.handlebars->35->2006",
+ "default.handlebars->47->2027",
+ "default3.handlebars->35->2007",
"login2.handlebars->7->181"
]
},
@@ -82788,12 +82797,12 @@
"uk": "Період",
"xloc": [
"default-mobile.handlebars->11->581",
- "default.handlebars->47->1253",
- "default.handlebars->47->3176",
- "default.handlebars->47->3181",
- "default3.handlebars->35->1248",
- "default3.handlebars->35->3163",
- "default3.handlebars->35->3168",
+ "default.handlebars->47->1254",
+ "default.handlebars->47->3177",
+ "default.handlebars->47->3182",
+ "default3.handlebars->35->1249",
+ "default3.handlebars->35->3164",
+ "default3.handlebars->35->3169",
"player.handlebars->3->17"
]
},
@@ -82823,10 +82832,10 @@
"zh-cht": "時間範圍",
"uk": "Діапазон часу",
"xloc": [
- "default.handlebars->47->1238",
- "default.handlebars->47->3177",
- "default3.handlebars->35->1233",
- "default3.handlebars->35->3164"
+ "default.handlebars->47->1239",
+ "default.handlebars->47->3178",
+ "default3.handlebars->35->1234",
+ "default3.handlebars->35->3165"
]
},
{
@@ -82855,8 +82864,8 @@
"zh-cht": "時間跨度",
"uk": "Проміжок часу",
"xloc": [
- "default.handlebars->47->2698",
- "default3.handlebars->35->2694"
+ "default.handlebars->47->2699",
+ "default3.handlebars->35->2695"
]
},
{
@@ -82885,10 +82894,10 @@
"zh-cht": "時間範圍",
"uk": "Діапазон часу",
"xloc": [
- "default.handlebars->47->1234",
- "default.handlebars->47->3175",
- "default3.handlebars->35->1229",
- "default3.handlebars->35->3162"
+ "default.handlebars->47->1235",
+ "default.handlebars->47->3176",
+ "default3.handlebars->35->1230",
+ "default3.handlebars->35->3163"
]
},
{
@@ -82918,8 +82927,8 @@
"uk": "Час минув",
"xloc": [
"default-mobile.handlebars->11->644",
- "default.handlebars->47->1377",
- "default3.handlebars->35->1364",
+ "default.handlebars->47->1378",
+ "default3.handlebars->35->1365",
"sharing.handlebars->11->31",
"sharing.handlebars->11->9"
]
@@ -82950,9 +82959,9 @@
"zh-cht": "標題",
"uk": "Назва",
"xloc": [
- "default.handlebars->47->1194",
+ "default.handlebars->47->1195",
"default.handlebars->47->775",
- "default3.handlebars->35->1189",
+ "default3.handlebars->35->1190",
"default3.handlebars->35->772"
]
},
@@ -83180,8 +83189,8 @@
"zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。",
"uk": "Щоб видалити цей акаунт, введіть пароль акаунту в обидва поля нижче та натисніть \\\"Ok\\\".",
"xloc": [
- "default.handlebars->47->2083",
- "default3.handlebars->35->2064"
+ "default.handlebars->47->2084",
+ "default3.handlebars->35->2065"
]
},
{
@@ -83484,9 +83493,9 @@
"zh-cht": "吐司通知",
"uk": "Висувне Сповіщення",
"xloc": [
- "default.handlebars->47->1191",
+ "default.handlebars->47->1192",
"default.handlebars->47->772",
- "default3.handlebars->35->1186",
+ "default3.handlebars->35->1187",
"default3.handlebars->35->769"
]
},
@@ -83990,9 +83999,9 @@
"zh-cht": "令牌名稱",
"uk": "Ім'я Токена",
"xloc": [
- "default.handlebars->47->2069",
- "default3.handlebars->35->2049",
- "default3.handlebars->35->2050"
+ "default.handlebars->47->2070",
+ "default3.handlebars->35->2050",
+ "default3.handlebars->35->2051"
]
},
{
@@ -84116,12 +84125,12 @@
"zh-cht": "主題",
"uk": "Тема",
"xloc": [
- "default.handlebars->47->1308",
- "default.handlebars->47->1814",
- "default.handlebars->47->3046",
- "default3.handlebars->35->1299",
- "default3.handlebars->35->1795",
- "default3.handlebars->35->3039"
+ "default.handlebars->47->1309",
+ "default.handlebars->47->1815",
+ "default.handlebars->47->3047",
+ "default3.handlebars->35->1300",
+ "default3.handlebars->35->1796",
+ "default3.handlebars->35->3040"
]
},
{
@@ -84240,8 +84249,8 @@
"zh-cht": "用於通過此伺服器連接到裝置的流量路由器",
"uk": "Маршрутизатор трафіку, який використовується для підключення до пристрою через цей сервер",
"xloc": [
- "default.handlebars->47->1040",
- "default3.handlebars->35->1037"
+ "default.handlebars->47->1041",
+ "default3.handlebars->35->1038"
]
},
{
@@ -84421,8 +84430,8 @@
"uk": "Тсонга",
"xloc": [
"default-mobile.handlebars->11->294",
- "default.handlebars->47->2027",
- "default3.handlebars->35->2007",
+ "default.handlebars->47->2028",
+ "default3.handlebars->35->2008",
"login2.handlebars->7->182"
]
},
@@ -84453,8 +84462,8 @@
"uk": "Тсвана",
"xloc": [
"default-mobile.handlebars->11->295",
- "default.handlebars->47->2028",
- "default3.handlebars->35->2008",
+ "default.handlebars->47->2029",
+ "default3.handlebars->35->2009",
"login2.handlebars->7->183"
]
},
@@ -84511,8 +84520,8 @@
"uk": "Турецька",
"xloc": [
"default-mobile.handlebars->11->296",
- "default.handlebars->47->2029",
- "default3.handlebars->35->2009",
+ "default.handlebars->47->2030",
+ "default3.handlebars->35->2010",
"login2.handlebars->7->184"
]
},
@@ -84543,8 +84552,8 @@
"uk": "Туркменська",
"xloc": [
"default-mobile.handlebars->11->297",
- "default.handlebars->47->2030",
- "default3.handlebars->35->2010",
+ "default.handlebars->47->2031",
+ "default3.handlebars->35->2011",
"login2.handlebars->7->185"
]
},
@@ -84576,10 +84585,10 @@
"xloc": [
"default-mobile.handlebars->11->552",
"default-mobile.handlebars->11->553",
- "default.handlebars->47->1026",
"default.handlebars->47->1027",
- "default3.handlebars->35->1023",
- "default3.handlebars->35->1024"
+ "default.handlebars->47->1028",
+ "default3.handlebars->35->1024",
+ "default3.handlebars->35->1025"
]
},
{
@@ -84608,8 +84617,8 @@
"zh-cht": "關掉。",
"uk": "Вимкнути.",
"xloc": [
- "default.handlebars->47->2657",
- "default3.handlebars->35->2653"
+ "default.handlebars->47->2658",
+ "default3.handlebars->35->2654"
]
},
{
@@ -84640,10 +84649,10 @@
"xloc": [
"default-mobile.handlebars->11->554",
"default-mobile.handlebars->11->555",
- "default.handlebars->47->1028",
"default.handlebars->47->1029",
- "default3.handlebars->35->1025",
- "default3.handlebars->35->1026"
+ "default.handlebars->47->1030",
+ "default3.handlebars->35->1026",
+ "default3.handlebars->35->1027"
]
},
{
@@ -84672,8 +84681,8 @@
"zh-cht": "打開。",
"uk": "Увімкнути.",
"xloc": [
- "default.handlebars->47->2656",
- "default3.handlebars->35->2652"
+ "default.handlebars->47->2657",
+ "default3.handlebars->35->2653"
]
},
{
@@ -84759,21 +84768,21 @@
"uk": "Тип",
"xloc": [
"default-mobile.handlebars->11->345",
- "default-mobile.handlebars->11->947",
- "default.handlebars->47->1215",
- "default.handlebars->47->1469",
- "default.handlebars->47->2107",
- "default.handlebars->47->2175",
- "default.handlebars->47->2274",
- "default.handlebars->47->3162",
+ "default-mobile.handlebars->11->948",
+ "default.handlebars->47->1216",
+ "default.handlebars->47->1470",
+ "default.handlebars->47->2108",
+ "default.handlebars->47->2176",
+ "default.handlebars->47->2275",
+ "default.handlebars->47->3163",
"default.handlebars->47->503",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->5",
- "default3.handlebars->35->1210",
- "default3.handlebars->35->1455",
- "default3.handlebars->35->2106",
- "default3.handlebars->35->2170",
- "default3.handlebars->35->2267",
- "default3.handlebars->35->3149",
+ "default3.handlebars->35->1211",
+ "default3.handlebars->35->1456",
+ "default3.handlebars->35->2107",
+ "default3.handlebars->35->2171",
+ "default3.handlebars->35->2268",
+ "default3.handlebars->35->3150",
"default3.handlebars->35->500",
"default3.handlebars->container->column_l->p11->deskarea0->deskarea4->1",
"sharing.handlebars->p11->deskarea0->deskarea4->3"
@@ -84805,8 +84814,8 @@
"zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。",
"uk": "Введіть назву ключа, виберіть поле OTP і натисніть кнопку на YubiKey™.",
"xloc": [
- "default.handlebars->47->1839",
- "default3.handlebars->35->1819"
+ "default.handlebars->47->1840",
+ "default3.handlebars->35->1820"
]
},
{
@@ -84835,8 +84844,8 @@
"zh-cht": "輸入要新增的密鑰的名稱。",
"uk": "Введіть назву ключа, який ви бажаєте додати",
"xloc": [
- "default.handlebars->47->1836",
- "default3.handlebars->35->1816"
+ "default.handlebars->47->1837",
+ "default3.handlebars->35->1817"
]
},
{
@@ -84948,8 +84957,8 @@
"zh-cht": "UTF8終端",
"uk": "Термінал UTF8",
"xloc": [
- "default.handlebars->47->1519",
- "default3.handlebars->35->1504",
+ "default.handlebars->47->1520",
+ "default3.handlebars->35->1505",
"sharing.handlebars->11->33"
]
},
@@ -84980,8 +84989,8 @@
"uk": "Українська",
"xloc": [
"default-mobile.handlebars->11->298",
- "default.handlebars->47->2031",
- "default3.handlebars->35->2011",
+ "default.handlebars->47->2032",
+ "default3.handlebars->35->2012",
"login2.handlebars->7->186"
]
},
@@ -85123,7 +85132,7 @@
"zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。",
"uk": "Неможливо отримати доступ до цієї властивості, доки не буде підтверджено адресу е-пошти. Це потрібно для відновлення пароля. Перейдіть на вкладку \\\"Мій Акаунт\\\", щоб змінити та підтвердити свою адресу е-пошти. ",
"xloc": [
- "default.handlebars->47->2098",
+ "default.handlebars->47->2099",
"default.handlebars->47->881",
"default3.handlebars->35->878"
]
@@ -85136,7 +85145,7 @@
"xloc": [
"default-mobile.handlebars->11->355",
"default-mobile.handlebars->11->97",
- "default3.handlebars->35->3379"
+ "default3.handlebars->35->3380"
]
},
{
@@ -85165,8 +85174,8 @@
"zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
"uk": "Неможливо отримати доступ до цієї властивості, доки не ввімкнено двофакторну автентифікацію. Це потрібно для додаткової безпеки. Перейдіть на вкладку \\\"Мій Акаунт\\\" і перегляньте розділ \\\"Безпека Акаунту \\\".",
"xloc": [
- "default.handlebars->47->2100",
- "default.handlebars->47->3394",
+ "default.handlebars->47->2101",
+ "default.handlebars->47->3395",
"default.handlebars->47->734",
"default.handlebars->47->883",
"default3.handlebars->35->731",
@@ -85199,9 +85208,9 @@
"zh-cht": "此模式下無法添加用戶",
"uk": "Неможливо додати користувача в цьому режимі",
"xloc": [
- "default-mobile.handlebars->11->1039",
- "default.handlebars->47->3274",
- "default3.handlebars->35->3261"
+ "default-mobile.handlebars->11->1040",
+ "default.handlebars->47->3275",
+ "default3.handlebars->35->3262"
]
},
{
@@ -85285,8 +85294,8 @@
"zh-cht": "無法捕獲顯示",
"uk": "Не вдається захопити дисплей",
"xloc": [
- "default.handlebars->47->1379",
- "default3.handlebars->35->1366"
+ "default.handlebars->47->1380",
+ "default3.handlebars->35->1367"
]
},
{
@@ -85403,7 +85412,7 @@
"zh-cht": "無法導入任何設備。",
"uk": "Не вдалося імпортувати пристрої.",
"xloc": [
- "default.handlebars->47->2270"
+ "default.handlebars->47->2271"
]
},
{
@@ -85791,13 +85800,13 @@
"uk": "Видалити",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->1011",
- "default.handlebars->47->1142",
- "default.handlebars->47->1167",
- "default.handlebars->47->2404",
- "default3.handlebars->35->1137",
- "default3.handlebars->35->1162",
- "default3.handlebars->35->2400"
+ "default-mobile.handlebars->11->1012",
+ "default.handlebars->47->1143",
+ "default.handlebars->47->1168",
+ "default.handlebars->47->2405",
+ "default3.handlebars->35->1138",
+ "default3.handlebars->35->1163",
+ "default3.handlebars->35->2401"
]
},
{
@@ -85826,10 +85835,10 @@
"zh-cht": "卸載代理",
"uk": "Видалити Агента",
"xloc": [
- "default-mobile.handlebars->11->991",
- "default.handlebars->47->1271",
+ "default-mobile.handlebars->11->992",
+ "default.handlebars->47->1272",
"default.handlebars->47->738",
- "default3.handlebars->35->1266",
+ "default3.handlebars->35->1267",
"default3.handlebars->35->735"
]
},
@@ -85859,8 +85868,8 @@
"zh-cht": "卸載代理/刪除設備",
"uk": "Видалити Агента / Видалити Пристрій",
"xloc": [
- "default.handlebars->47->2366",
- "default3.handlebars->35->2362"
+ "default.handlebars->47->2367",
+ "default3.handlebars->35->2363"
]
},
{
@@ -85889,14 +85898,14 @@
"zh-cht": "卸載代理",
"uk": "Видалити агента",
"xloc": [
- "default.handlebars->47->1316",
- "default3.handlebars->35->1307"
+ "default.handlebars->47->1317",
+ "default3.handlebars->35->1308"
]
},
{
"en": "United",
"xloc": [
- "default3.handlebars->35->2089"
+ "default3.handlebars->35->2090"
]
},
{
@@ -85942,70 +85951,70 @@
"default-mobile.handlebars->11->45",
"default-mobile.handlebars->11->480",
"default-mobile.handlebars->11->6",
- "default-mobile.handlebars->11->818",
- "default-mobile.handlebars->11->820",
- "default-mobile.handlebars->11->827",
- "default-mobile.handlebars->11->891",
- "default-mobile.handlebars->11->903",
- "default-mobile.handlebars->11->910",
- "default-mobile.handlebars->11->914",
- "default-mobile.handlebars->11->916",
- "default-mobile.handlebars->11->948",
+ "default-mobile.handlebars->11->819",
+ "default-mobile.handlebars->11->821",
+ "default-mobile.handlebars->11->828",
+ "default-mobile.handlebars->11->892",
+ "default-mobile.handlebars->11->904",
+ "default-mobile.handlebars->11->911",
+ "default-mobile.handlebars->11->915",
+ "default-mobile.handlebars->11->917",
+ "default-mobile.handlebars->11->949",
"default.handlebars->47->13",
- "default.handlebars->47->1658",
- "default.handlebars->47->1660",
- "default.handlebars->47->1667",
- "default.handlebars->47->1731",
- "default.handlebars->47->1743",
- "default.handlebars->47->1750",
- "default.handlebars->47->1754",
- "default.handlebars->47->1756",
+ "default.handlebars->47->1659",
+ "default.handlebars->47->1661",
+ "default.handlebars->47->1668",
+ "default.handlebars->47->1732",
+ "default.handlebars->47->1744",
+ "default.handlebars->47->1751",
+ "default.handlebars->47->1755",
+ "default.handlebars->47->1757",
"default.handlebars->47->192",
"default.handlebars->47->193",
"default.handlebars->47->194",
"default.handlebars->47->196",
"default.handlebars->47->198",
- "default.handlebars->47->2155",
"default.handlebars->47->2156",
- "default.handlebars->47->2176",
- "default.handlebars->47->3109",
- "default.handlebars->47->3129",
- "default.handlebars->47->3136",
- "default.handlebars->47->3207",
+ "default.handlebars->47->2157",
+ "default.handlebars->47->2177",
+ "default.handlebars->47->3110",
+ "default.handlebars->47->3130",
+ "default.handlebars->47->3137",
"default.handlebars->47->3208",
"default.handlebars->47->3209",
"default.handlebars->47->3210",
"default.handlebars->47->3211",
- "default.handlebars->47->3250",
+ "default.handlebars->47->3212",
+ "default.handlebars->47->3251",
"default.handlebars->47->44",
"default.handlebars->47->51",
"default.handlebars->47->52",
"default.handlebars->47->730",
"default3.handlebars->35->13",
- "default3.handlebars->35->1642",
- "default3.handlebars->35->1649",
- "default3.handlebars->35->1713",
- "default3.handlebars->35->1725",
- "default3.handlebars->35->1732",
- "default3.handlebars->35->1736",
- "default3.handlebars->35->1738",
+ "default3.handlebars->35->1643",
+ "default3.handlebars->35->1650",
+ "default3.handlebars->35->1714",
+ "default3.handlebars->35->1726",
+ "default3.handlebars->35->1733",
+ "default3.handlebars->35->1737",
+ "default3.handlebars->35->1739",
"default3.handlebars->35->192",
"default3.handlebars->35->193",
"default3.handlebars->35->194",
"default3.handlebars->35->196",
"default3.handlebars->35->198",
- "default3.handlebars->35->2152",
"default3.handlebars->35->2153",
- "default3.handlebars->35->2171",
- "default3.handlebars->35->3096",
- "default3.handlebars->35->3116",
- "default3.handlebars->35->3123",
- "default3.handlebars->35->3194",
+ "default3.handlebars->35->2154",
+ "default3.handlebars->35->2172",
+ "default3.handlebars->35->3097",
+ "default3.handlebars->35->3117",
+ "default3.handlebars->35->3124",
"default3.handlebars->35->3195",
"default3.handlebars->35->3196",
"default3.handlebars->35->3197",
"default3.handlebars->35->3198",
- "default3.handlebars->35->3237",
+ "default3.handlebars->35->3199",
+ "default3.handlebars->35->3238",
"default3.handlebars->35->44",
"default3.handlebars->35->51",
"default3.handlebars->35->52",
@@ -86038,9 +86047,9 @@
"zh-cht": "未知#{0}",
"uk": "Невідоме #{0}",
"xloc": [
- "default-mobile.handlebars->11->937",
- "default.handlebars->47->2165",
- "default3.handlebars->35->2160"
+ "default-mobile.handlebars->11->938",
+ "default.handlebars->47->2166",
+ "default3.handlebars->35->2161"
]
},
{
@@ -86069,8 +86078,8 @@
"zh-cht": "未知動作",
"uk": "Невідома Дія",
"xloc": [
- "default.handlebars->47->3311",
- "default3.handlebars->35->3298"
+ "default.handlebars->47->3312",
+ "default3.handlebars->35->3299"
]
},
{
@@ -86099,10 +86108,10 @@
"zh-cht": "未知裝置",
"uk": "Невідомий Пристрій",
"xloc": [
- "default.handlebars->47->2900",
- "default.handlebars->47->3095",
- "default3.handlebars->35->2893",
- "default3.handlebars->35->3082"
+ "default.handlebars->47->2901",
+ "default.handlebars->47->3096",
+ "default3.handlebars->35->2894",
+ "default3.handlebars->35->3083"
]
},
{
@@ -86131,12 +86140,12 @@
"zh-cht": "未知裝置群",
"uk": "Невідома Група Пристроїв",
"xloc": [
- "default.handlebars->47->2894",
- "default.handlebars->47->3083",
- "default.handlebars->47->3315",
- "default3.handlebars->35->2887",
- "default3.handlebars->35->3070",
- "default3.handlebars->35->3302"
+ "default.handlebars->47->2895",
+ "default.handlebars->47->3084",
+ "default.handlebars->47->3316",
+ "default3.handlebars->35->2888",
+ "default3.handlebars->35->3071",
+ "default3.handlebars->35->3303"
]
},
{
@@ -86165,8 +86174,8 @@
"zh-cht": "未知群組",
"uk": "Невідома Група",
"xloc": [
- "default.handlebars->47->3307",
- "default3.handlebars->35->3294"
+ "default.handlebars->47->3308",
+ "default3.handlebars->35->3295"
]
},
{
@@ -86226,10 +86235,10 @@
"zh-cht": "未知用戶",
"uk": "Невідомий користувач",
"xloc": [
- "default.handlebars->47->3212",
- "default.handlebars->47->3251",
- "default3.handlebars->35->3199",
- "default3.handlebars->35->3238"
+ "default.handlebars->47->3213",
+ "default.handlebars->47->3252",
+ "default3.handlebars->35->3200",
+ "default3.handlebars->35->3239"
]
},
{
@@ -86258,8 +86267,8 @@
"zh-cht": "未知用戶群",
"uk": "Невідома група користувачів",
"xloc": [
- "default.handlebars->47->3089",
- "default3.handlebars->35->3076"
+ "default.handlebars->47->3090",
+ "default3.handlebars->35->3077"
]
},
{
@@ -86319,8 +86328,8 @@
"zh-cht": "密碼未知",
"uk": "Невідомий пароль",
"xloc": [
- "default.handlebars->47->2290",
- "default3.handlebars->35->2283"
+ "default.handlebars->47->2291",
+ "default3.handlebars->35->2284"
]
},
{
@@ -86349,13 +86358,13 @@
"zh-cht": "無限",
"uk": "Необмежено",
"xloc": [
- "default.handlebars->47->1231",
- "default.handlebars->47->2052",
+ "default.handlebars->47->1232",
+ "default.handlebars->47->2053",
"default.handlebars->47->287",
"default.handlebars->47->566",
"default.handlebars->47->580",
- "default3.handlebars->35->1226",
- "default3.handlebars->35->2032",
+ "default3.handlebars->35->1227",
+ "default3.handlebars->35->2033",
"default3.handlebars->35->284",
"default3.handlebars->35->563",
"default3.handlebars->35->577"
@@ -86387,8 +86396,8 @@
"zh-cht": "解鎖帳戶",
"uk": "Розблокувати обліковий запис",
"xloc": [
- "default.handlebars->47->2754",
- "default3.handlebars->35->2750"
+ "default.handlebars->47->2755",
+ "default3.handlebars->35->2751"
]
},
{
@@ -86417,8 +86426,8 @@
"zh-cht": "解鎖遠程用戶的鼠標和鍵盤?",
"uk": "Розблокувати мишу та клавіатуру віддаленого користувача?",
"xloc": [
- "default.handlebars->47->1190",
- "default3.handlebars->35->1185"
+ "default.handlebars->47->1191",
+ "default3.handlebars->35->1186"
]
},
{
@@ -86497,8 +86506,8 @@
"nl": "Uitpakken naar map",
"uk": "Розпакувати до теки",
"xloc": [
- "default.handlebars->47->1567",
- "default3.handlebars->35->1551"
+ "default.handlebars->47->1568",
+ "default3.handlebars->35->1552"
]
},
{
@@ -86507,8 +86516,8 @@
"nl": "Fout bij uitpakken",
"uk": "Помилка розпаковування",
"xloc": [
- "default.handlebars->47->1540",
- "default3.handlebars->35->1525"
+ "default.handlebars->47->1541",
+ "default3.handlebars->35->1526"
]
},
{
@@ -86517,8 +86526,8 @@
"nl": "Bestand uitpakken...",
"uk": "Розпаковування файлу...",
"xloc": [
- "default.handlebars->47->1538",
- "default3.handlebars->35->1523"
+ "default.handlebars->47->1539",
+ "default3.handlebars->35->1524"
]
},
{
@@ -86551,11 +86560,11 @@
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
"default-mobile.handlebars->dialog->3->dialog4->d3servermode->d3serveraction",
- "default.handlebars->47->1426",
+ "default.handlebars->47->1427",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction",
- "default3.handlebars->35->1413",
+ "default3.handlebars->35->1414",
"default3.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default3.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog3->d3servermode->d3serveraction",
@@ -86588,8 +86597,8 @@
"zh-cht": "最新",
"uk": "Оновлено",
"xloc": [
- "default.handlebars->47->3399",
- "default3.handlebars->35->3386"
+ "default.handlebars->47->3400",
+ "default3.handlebars->35->3387"
]
},
{
@@ -86720,17 +86729,17 @@
"default-mobile.handlebars->11->741",
"default-mobile.handlebars->11->744",
"default-mobile.handlebars->dialog->3->dialog4->d3localmode->1",
- "default.handlebars->47->1564",
- "default.handlebars->47->1594",
- "default.handlebars->47->1597",
- "default.handlebars->47->2512",
- "default.handlebars->47->2522",
+ "default.handlebars->47->1565",
+ "default.handlebars->47->1595",
+ "default.handlebars->47->1598",
+ "default.handlebars->47->2513",
+ "default.handlebars->47->2523",
"default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1",
- "default3.handlebars->35->1548",
- "default3.handlebars->35->1578",
- "default3.handlebars->35->1581",
- "default3.handlebars->35->2508",
- "default3.handlebars->35->2518",
+ "default3.handlebars->35->1549",
+ "default3.handlebars->35->1579",
+ "default3.handlebars->35->1582",
+ "default3.handlebars->35->2509",
+ "default3.handlebars->35->2519",
"default3.handlebars->container->xxAddAgentModal->xxAddAgentModalConf->1->xxAddAgentBody->dialog3->d3localmode->1",
"sharing.handlebars->11->65",
"sharing.handlebars->11->94",
@@ -86763,9 +86772,9 @@
"zh-cht": "上載mesh agent核心",
"uk": "Завантажити ядро Mesh Agent",
"xloc": [
- "default-mobile.handlebars->11->936",
- "default.handlebars->47->1777",
- "default3.handlebars->35->1759"
+ "default-mobile.handlebars->11->937",
+ "default.handlebars->47->1778",
+ "default3.handlebars->35->1760"
]
},
{
@@ -86794,9 +86803,9 @@
"zh-cht": "上載核心檔案",
"uk": "Передати файл ядра",
"xloc": [
- "default-mobile.handlebars->11->932",
- "default.handlebars->47->1773",
- "default3.handlebars->35->1755"
+ "default-mobile.handlebars->11->933",
+ "default.handlebars->47->1774",
+ "default3.handlebars->35->1756"
]
},
{
@@ -86825,11 +86834,11 @@
"zh-cht": "上載默認伺服器核心",
"uk": "Передати ядро сервера за умовчанням",
"xloc": [
- "default-mobile.handlebars->11->928",
- "default.handlebars->47->1769",
+ "default-mobile.handlebars->11->929",
+ "default.handlebars->47->1770",
"default.handlebars->47->750",
"default.handlebars->47->793",
- "default3.handlebars->35->1751",
+ "default3.handlebars->35->1752",
"default3.handlebars->35->747",
"default3.handlebars->35->790"
]
@@ -86950,9 +86959,9 @@
"zh-cht": "上傳恢復核心",
"uk": "Передати ядро для відновлення",
"xloc": [
- "default-mobile.handlebars->11->930",
- "default.handlebars->47->1771",
- "default3.handlebars->35->1753"
+ "default-mobile.handlebars->11->931",
+ "default.handlebars->47->1772",
+ "default3.handlebars->35->1754"
]
},
{
@@ -87011,9 +87020,9 @@
"zh-cht": "上傳小核心",
"uk": "Передати спрощене ядро",
"xloc": [
- "default-mobile.handlebars->11->931",
- "default.handlebars->47->1772",
- "default3.handlebars->35->1754"
+ "default-mobile.handlebars->11->932",
+ "default.handlebars->47->1773",
+ "default3.handlebars->35->1755"
]
},
{
@@ -87043,10 +87052,10 @@
"uk": "Передавання перезапише 1 файл. Продовжити?",
"xloc": [
"default-mobile.handlebars->11->742",
- "default.handlebars->47->1595",
- "default.handlebars->47->2523",
- "default3.handlebars->35->1579",
- "default3.handlebars->35->2519",
+ "default.handlebars->47->1596",
+ "default.handlebars->47->2524",
+ "default3.handlebars->35->1580",
+ "default3.handlebars->35->2520",
"sharing.handlebars->11->95"
]
},
@@ -87077,10 +87086,10 @@
"uk": "Передавання перезапише {0} файлів. Продовжити?",
"xloc": [
"default-mobile.handlebars->11->743",
- "default.handlebars->47->1596",
- "default.handlebars->47->2524",
- "default3.handlebars->35->1580",
- "default3.handlebars->35->2520",
+ "default.handlebars->47->1597",
+ "default.handlebars->47->2525",
+ "default3.handlebars->35->1581",
+ "default3.handlebars->35->2521",
"sharing.handlebars->11->96"
]
},
@@ -87136,8 +87145,8 @@
"zh-cht": "上傳:“{0}”",
"uk": "Передати: \\\"{0}\\\"",
"xloc": [
- "default.handlebars->47->2574",
- "default3.handlebars->35->2570"
+ "default.handlebars->47->2575",
+ "default3.handlebars->35->2571"
]
},
{
@@ -87166,8 +87175,8 @@
"zh-cht": "上傳:\\\"{0}\\\",大小:{1}",
"uk": "Передати: \\\"{0}\\\", Розмір: {1}",
"xloc": [
- "default.handlebars->47->2629",
- "default3.handlebars->35->2625"
+ "default.handlebars->47->2630",
+ "default3.handlebars->35->2626"
]
},
{
@@ -87197,8 +87206,8 @@
"uk": "Верхньолужицька",
"xloc": [
"default-mobile.handlebars->11->299",
- "default.handlebars->47->2032",
- "default3.handlebars->35->2012",
+ "default.handlebars->47->2033",
+ "default3.handlebars->35->2013",
"login2.handlebars->7->187"
]
},
@@ -87229,8 +87238,8 @@
"uk": "Урду",
"xloc": [
"default-mobile.handlebars->11->300",
- "default.handlebars->47->2033",
- "default3.handlebars->35->2013",
+ "default.handlebars->47->2034",
+ "default3.handlebars->35->2014",
"login2.handlebars->7->188"
]
},
@@ -87260,8 +87269,8 @@
"zh-cht": "用法",
"uk": "Споживання",
"xloc": [
- "default.handlebars->47->3361",
- "default3.handlebars->35->3348"
+ "default.handlebars->47->3362",
+ "default3.handlebars->35->3349"
]
},
{
@@ -87371,8 +87380,8 @@
"pl": "Używaj do Przekierowania",
"uk": "Використання Ретрансляції",
"xloc": [
- "default.handlebars->47->2370",
- "default3.handlebars->35->2366"
+ "default.handlebars->47->2371",
+ "default3.handlebars->35->2367"
]
},
{
@@ -87431,8 +87440,8 @@
"zh-cht": "使用新憑據",
"uk": "Використовувати нові облікові дані",
"xloc": [
- "default.handlebars->47->1392",
- "default3.handlebars->35->1379",
+ "default.handlebars->47->1393",
+ "default3.handlebars->35->1380",
"mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->1"
]
},
@@ -87462,8 +87471,8 @@
"zh-cht": "使用服務器憑據",
"uk": "Використовуйте акредитивний сервер",
"xloc": [
- "default.handlebars->47->1391",
- "default3.handlebars->35->1378",
+ "default.handlebars->47->1392",
+ "default3.handlebars->35->1379",
"mstsc.handlebars->main->1->3->1->dropdowndomain->1->d3coreMode->0"
]
},
@@ -87522,10 +87531,10 @@
"zh-cht": "用過的",
"uk": "Використаний",
"xloc": [
- "default.handlebars->47->3301",
- "default.handlebars->47->3303",
- "default3.handlebars->35->3288",
- "default3.handlebars->35->3290"
+ "default.handlebars->47->3302",
+ "default.handlebars->47->3304",
+ "default3.handlebars->35->3289",
+ "default3.handlebars->35->3291"
]
},
{
@@ -87554,29 +87563,29 @@
"zh-cht": "用戶",
"uk": "Користувач",
"xloc": [
- "default.handlebars->47->1086",
+ "default.handlebars->47->1087",
"default.handlebars->47->130",
- "default.handlebars->47->1471",
- "default.handlebars->47->2237",
- "default.handlebars->47->2705",
- "default.handlebars->47->2735",
- "default.handlebars->47->2890",
- "default.handlebars->47->3155",
- "default.handlebars->47->3163",
- "default.handlebars->47->3167",
- "default.handlebars->47->3184",
+ "default.handlebars->47->1472",
+ "default.handlebars->47->2238",
+ "default.handlebars->47->2706",
+ "default.handlebars->47->2736",
+ "default.handlebars->47->2891",
+ "default.handlebars->47->3156",
+ "default.handlebars->47->3164",
+ "default.handlebars->47->3168",
+ "default.handlebars->47->3185",
"default.handlebars->47->387",
- "default3.handlebars->35->1083",
+ "default3.handlebars->35->1084",
"default3.handlebars->35->130",
- "default3.handlebars->35->1457",
- "default3.handlebars->35->2232",
- "default3.handlebars->35->2701",
- "default3.handlebars->35->2731",
- "default3.handlebars->35->2883",
- "default3.handlebars->35->3142",
- "default3.handlebars->35->3150",
- "default3.handlebars->35->3154",
- "default3.handlebars->35->3171",
+ "default3.handlebars->35->1458",
+ "default3.handlebars->35->2233",
+ "default3.handlebars->35->2702",
+ "default3.handlebars->35->2732",
+ "default3.handlebars->35->2884",
+ "default3.handlebars->35->3143",
+ "default3.handlebars->35->3151",
+ "default3.handlebars->35->3155",
+ "default3.handlebars->35->3172",
"default3.handlebars->35->384"
]
},
@@ -87606,8 +87615,8 @@
"zh-cht": "用戶+檔案",
"uk": "Користувач + Файли",
"xloc": [
- "default.handlebars->47->2736",
- "default3.handlebars->35->2732"
+ "default.handlebars->47->2737",
+ "default3.handlebars->35->2733"
]
},
{
@@ -87636,20 +87645,20 @@
"zh-cht": "用戶帳戶導入",
"uk": "Імпортувати Акаунт Користувача",
"xloc": [
- "default.handlebars->47->2269",
- "default.handlebars->47->2775",
- "default.handlebars->47->2777",
- "default.handlebars->47->2779",
- "default.handlebars->47->2781",
- "default.handlebars->47->2783",
- "default.handlebars->47->2785",
- "default3.handlebars->35->2264",
- "default3.handlebars->35->2770",
- "default3.handlebars->35->2772",
- "default3.handlebars->35->2774",
- "default3.handlebars->35->2776",
- "default3.handlebars->35->2778",
- "default3.handlebars->35->2780"
+ "default.handlebars->47->2270",
+ "default.handlebars->47->2776",
+ "default.handlebars->47->2778",
+ "default.handlebars->47->2780",
+ "default.handlebars->47->2782",
+ "default.handlebars->47->2784",
+ "default.handlebars->47->2786",
+ "default3.handlebars->35->2265",
+ "default3.handlebars->35->2771",
+ "default3.handlebars->35->2773",
+ "default3.handlebars->35->2775",
+ "default3.handlebars->35->2777",
+ "default3.handlebars->35->2779",
+ "default3.handlebars->35->2781"
]
},
{
@@ -87678,8 +87687,8 @@
"zh-cht": "用戶帳戶",
"uk": "Акаунти Користувачів",
"xloc": [
- "default.handlebars->47->3320",
- "default3.handlebars->35->3307"
+ "default.handlebars->47->3321",
+ "default3.handlebars->35->3308"
]
},
{
@@ -87694,8 +87703,8 @@
"pl": "Dziennik Autentykacji Użytkownika",
"uk": "Журнал Автентифікації Користувача",
"xloc": [
- "default.handlebars->47->3382",
- "default3.handlebars->35->3369"
+ "default.handlebars->47->3383",
+ "default3.handlebars->35->3370"
]
},
{
@@ -87724,11 +87733,11 @@
"zh-cht": "用戶授權",
"uk": "Авторизація користувача",
"xloc": [
- "default-mobile.handlebars->11->955",
- "default.handlebars->47->1082",
- "default.handlebars->47->2235",
- "default3.handlebars->35->1079",
- "default3.handlebars->35->2230"
+ "default-mobile.handlebars->11->956",
+ "default.handlebars->47->1083",
+ "default.handlebars->47->2236",
+ "default3.handlebars->35->1080",
+ "default3.handlebars->35->2231"
]
},
{
@@ -87757,18 +87766,18 @@
"zh-cht": "用戶同意",
"uk": "Згода користувача",
"xloc": [
- "default.handlebars->47->1243",
- "default.handlebars->47->2201",
- "default.handlebars->47->2881",
- "default.handlebars->47->2986",
+ "default.handlebars->47->1244",
+ "default.handlebars->47->2202",
+ "default.handlebars->47->2882",
+ "default.handlebars->47->2987",
"default.handlebars->47->309",
- "default.handlebars->47->978",
- "default3.handlebars->35->1238",
- "default3.handlebars->35->2196",
- "default3.handlebars->35->2874",
- "default3.handlebars->35->2979",
+ "default.handlebars->47->979",
+ "default3.handlebars->35->1239",
+ "default3.handlebars->35->2197",
+ "default3.handlebars->35->2875",
+ "default3.handlebars->35->2980",
"default3.handlebars->35->306",
- "default3.handlebars->35->975"
+ "default3.handlebars->35->976"
]
},
{
@@ -87797,18 +87806,18 @@
"zh-cht": "用戶群",
"uk": "Група користувачів",
"xloc": [
- "default.handlebars->47->1085",
- "default.handlebars->47->2341",
+ "default.handlebars->47->1086",
"default.handlebars->47->2342",
- "default.handlebars->47->2850",
- "default.handlebars->47->3091",
- "default.handlebars->47->3112",
- "default3.handlebars->35->1082",
- "default3.handlebars->35->2337",
+ "default.handlebars->47->2343",
+ "default.handlebars->47->2851",
+ "default.handlebars->47->3092",
+ "default.handlebars->47->3113",
+ "default3.handlebars->35->1083",
"default3.handlebars->35->2338",
- "default3.handlebars->35->2843",
- "default3.handlebars->35->3078",
- "default3.handlebars->35->3099"
+ "default3.handlebars->35->2339",
+ "default3.handlebars->35->2844",
+ "default3.handlebars->35->3079",
+ "default3.handlebars->35->3100"
]
},
{
@@ -87867,8 +87876,8 @@
"zh-cht": "用戶群成員",
"uk": "Належність до груп користувачів",
"xloc": [
- "default.handlebars->47->3088",
- "default3.handlebars->35->3075"
+ "default.handlebars->47->3089",
+ "default3.handlebars->35->3076"
]
},
{
@@ -87897,7 +87906,7 @@
"zh-cht": "用戶識別碼",
"uk": "Номер користувача",
"xloc": [
- "default-mobile.handlebars->11->1016"
+ "default-mobile.handlebars->11->1017"
]
},
{
@@ -87926,12 +87935,12 @@
"zh-cht": "用戶識別碼",
"uk": "Ідентифікатор користувача",
"xloc": [
- "default.handlebars->47->2412",
- "default.handlebars->47->2937",
+ "default.handlebars->47->2413",
"default.handlebars->47->2938",
- "default3.handlebars->35->2408",
- "default3.handlebars->35->2930",
- "default3.handlebars->35->2931"
+ "default.handlebars->47->2939",
+ "default3.handlebars->35->2409",
+ "default3.handlebars->35->2931",
+ "default3.handlebars->35->2932"
]
},
{
@@ -87960,10 +87969,10 @@
"zh-cht": "用戶標識符",
"uk": "Ідентифікатори користувачів",
"xloc": [
- "default.handlebars->47->2339",
- "default.handlebars->47->2921",
- "default3.handlebars->35->2335",
- "default3.handlebars->35->2914"
+ "default.handlebars->47->2340",
+ "default.handlebars->47->2922",
+ "default3.handlebars->35->2336",
+ "default3.handlebars->35->2915"
]
},
{
@@ -88029,8 +88038,8 @@
"zh-cht": "用戶列表輸出",
"uk": "Експортувати список користувачів",
"xloc": [
- "default.handlebars->47->2792",
- "default3.handlebars->35->2787"
+ "default.handlebars->47->2793",
+ "default3.handlebars->35->2788"
]
},
{
@@ -88059,8 +88068,8 @@
"zh-cht": "用戶登錄",
"uk": "Лоґіни Користувача",
"xloc": [
- "default.handlebars->47->3160",
- "default3.handlebars->35->3147"
+ "default.handlebars->47->3161",
+ "default3.handlebars->35->3148"
]
},
{
@@ -88089,9 +88098,9 @@
"zh-cht": "用戶名",
"uk": "Ім'я користувача",
"xloc": [
- "default-mobile.handlebars->11->1015",
- "default.handlebars->47->2411",
- "default3.handlebars->35->2407"
+ "default-mobile.handlebars->11->1016",
+ "default.handlebars->47->2412",
+ "default3.handlebars->35->2408"
]
},
{
@@ -88235,8 +88244,8 @@
"zh-cht": "用戶節",
"uk": "Сеанси Користувачів",
"xloc": [
- "default.handlebars->47->3352",
- "default3.handlebars->35->3339"
+ "default.handlebars->47->3353",
+ "default3.handlebars->35->3340"
]
},
{
@@ -88301,8 +88310,8 @@
"zh-cht": "用戶流量使用",
"uk": "Використання Трафіку Користувачами",
"xloc": [
- "default.handlebars->47->3159",
- "default3.handlebars->35->3146"
+ "default.handlebars->47->3160",
+ "default3.handlebars->35->3147"
]
},
{
@@ -88418,9 +88427,9 @@
"zh-cht": "用戶已存在",
"uk": "Користувач вже існує",
"xloc": [
- "default-mobile.handlebars->11->1038",
- "default.handlebars->47->3273",
- "default3.handlebars->35->3260"
+ "default-mobile.handlebars->11->1039",
+ "default.handlebars->47->3274",
+ "default3.handlebars->35->3261"
]
},
{
@@ -88451,10 +88460,10 @@
"xloc": [
"default-mobile.handlebars->11->311",
"default-mobile.handlebars->11->313",
- "default.handlebars->47->2044",
- "default.handlebars->47->2046",
- "default3.handlebars->35->2024",
- "default3.handlebars->35->2026"
+ "default.handlebars->47->2045",
+ "default.handlebars->47->2047",
+ "default3.handlebars->35->2025",
+ "default3.handlebars->35->2027"
]
},
{
@@ -88483,8 +88492,8 @@
"zh-cht": "用戶組已更改:{0}",
"uk": "Змінено групу користувачів: {0}",
"xloc": [
- "default.handlebars->47->2603",
- "default3.handlebars->35->2599"
+ "default.handlebars->47->2604",
+ "default3.handlebars->35->2600"
]
},
{
@@ -88513,8 +88522,8 @@
"zh-cht": "已創建用戶組:{0}",
"uk": "Створена група користувачів: {0}",
"xloc": [
- "default.handlebars->47->2593",
- "default3.handlebars->35->2589"
+ "default.handlebars->47->2594",
+ "default3.handlebars->35->2590"
]
},
{
@@ -88543,8 +88552,8 @@
"zh-cht": "用戶組成員身份已更改:{0}",
"uk": "Змінено членство в групі користувачів: {0}",
"xloc": [
- "default.handlebars->47->2591",
- "default3.handlebars->35->2587"
+ "default.handlebars->47->2592",
+ "default3.handlebars->35->2588"
]
},
{
@@ -88559,8 +88568,8 @@
"pl": "Zapisy grupy użytkownika",
"uk": "Записи групи користувачів",
"xloc": [
- "default.handlebars->47->3241",
- "default3.handlebars->35->3228"
+ "default.handlebars->47->3242",
+ "default3.handlebars->35->3229"
]
},
{
@@ -88609,10 +88618,10 @@
"pl": "Klucz Użytkownika",
"uk": "Ключ користувача",
"xloc": [
- "default.handlebars->47->1813",
- "default.handlebars->47->3045",
- "default3.handlebars->35->1794",
- "default3.handlebars->35->3038"
+ "default.handlebars->47->1814",
+ "default.handlebars->47->3046",
+ "default3.handlebars->35->1795",
+ "default3.handlebars->35->3039"
]
},
{
@@ -88641,8 +88650,8 @@
"zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶",
"uk": "Спроба входу користувача до заблокованого акаунту {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2633",
- "default3.handlebars->35->2629"
+ "default.handlebars->47->2634",
+ "default3.handlebars->35->2630"
]
},
{
@@ -88671,8 +88680,8 @@
"zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試",
"uk": "Спроба входу користувача з некоректною двофакторною автентифікацією {0}, {1}, {2}",
"xloc": [
- "default.handlebars->47->2632",
- "default3.handlebars->35->2628"
+ "default.handlebars->47->2633",
+ "default3.handlebars->35->2629"
]
},
{
@@ -88701,8 +88710,8 @@
"zh-cht": "用戶通知已更改",
"uk": "Сповіщення користувачів змінено",
"xloc": [
- "default.handlebars->47->2654",
- "default3.handlebars->35->2650"
+ "default.handlebars->47->2655",
+ "default3.handlebars->35->2651"
]
},
{
@@ -88717,8 +88726,8 @@
"pl": "Zapisy użytkownika",
"uk": "Записи користувача",
"xloc": [
- "default.handlebars->47->3231",
- "default3.handlebars->35->3218"
+ "default.handlebars->47->3232",
+ "default3.handlebars->35->3219"
]
},
{
@@ -88747,9 +88756,9 @@
"zh-cht": "未找到用戶 {0}。",
"uk": "Користувача {0} не знайдено.",
"xloc": [
- "default-mobile.handlebars->11->1046",
- "default.handlebars->47->3281",
- "default3.handlebars->35->3268"
+ "default-mobile.handlebars->11->1047",
+ "default.handlebars->47->3282",
+ "default3.handlebars->35->3269"
]
},
{
@@ -88839,29 +88848,29 @@
"xloc": [
"default-mobile.handlebars->11->621",
"default-mobile.handlebars->11->691",
- "default-mobile.handlebars->11->951",
- "default.handlebars->47->1302",
- "default.handlebars->47->1394",
- "default.handlebars->47->1505",
- "default.handlebars->47->1817",
- "default.handlebars->47->2116",
- "default.handlebars->47->2131",
- "default.handlebars->47->2136",
- "default.handlebars->47->2179",
- "default.handlebars->47->2804",
- "default.handlebars->47->3049",
+ "default-mobile.handlebars->11->952",
+ "default.handlebars->47->1303",
+ "default.handlebars->47->1395",
+ "default.handlebars->47->1506",
+ "default.handlebars->47->1818",
+ "default.handlebars->47->2117",
+ "default.handlebars->47->2132",
+ "default.handlebars->47->2137",
+ "default.handlebars->47->2180",
+ "default.handlebars->47->2805",
+ "default.handlebars->47->3050",
"default.handlebars->47->340",
"default.handlebars->47->512",
- "default3.handlebars->35->1293",
- "default3.handlebars->35->1381",
- "default3.handlebars->35->1490",
- "default3.handlebars->35->1798",
- "default3.handlebars->35->2115",
- "default3.handlebars->35->2130",
- "default3.handlebars->35->2135",
- "default3.handlebars->35->2174",
- "default3.handlebars->35->2799",
- "default3.handlebars->35->3042",
+ "default3.handlebars->35->1294",
+ "default3.handlebars->35->1382",
+ "default3.handlebars->35->1491",
+ "default3.handlebars->35->1799",
+ "default3.handlebars->35->2116",
+ "default3.handlebars->35->2131",
+ "default3.handlebars->35->2136",
+ "default3.handlebars->35->2175",
+ "default3.handlebars->35->2800",
+ "default3.handlebars->35->3043",
"default3.handlebars->35->337",
"default3.handlebars->35->509",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1",
@@ -88900,10 +88909,10 @@
"xloc": [
"default-mobile.handlebars->11->686",
"default-mobile.handlebars->11->689",
- "default.handlebars->47->1500",
- "default.handlebars->47->1503",
- "default3.handlebars->35->1485",
- "default3.handlebars->35->1488",
+ "default.handlebars->47->1501",
+ "default.handlebars->47->1504",
+ "default3.handlebars->35->1486",
+ "default3.handlebars->35->1489",
"ssh.handlebars->3->10",
"ssh.handlebars->3->7"
]
@@ -88967,10 +88976,10 @@
"xloc": [
"default-mobile.handlebars->11->687",
"default-mobile.handlebars->11->690",
- "default.handlebars->47->1501",
- "default.handlebars->47->1504",
- "default3.handlebars->35->1486",
- "default3.handlebars->35->1489",
+ "default.handlebars->47->1502",
+ "default.handlebars->47->1505",
+ "default3.handlebars->35->1487",
+ "default3.handlebars->35->1490",
"ssh.handlebars->3->11",
"ssh.handlebars->3->8"
]
@@ -89020,10 +89029,10 @@
"pl": "Username:0000",
"uk": "Username:0000",
"xloc": [
- "default.handlebars->47->1810",
- "default.handlebars->47->3042",
- "default3.handlebars->35->1791",
- "default3.handlebars->35->3035"
+ "default.handlebars->47->1811",
+ "default.handlebars->47->3043",
+ "default3.handlebars->35->1792",
+ "default3.handlebars->35->3036"
]
},
{
@@ -89052,13 +89061,13 @@
"zh-cht": "用戶",
"uk": "Користувачі",
"xloc": [
- "default.handlebars->47->2838",
- "default.handlebars->47->2882",
- "default.handlebars->47->3351",
+ "default.handlebars->47->2839",
+ "default.handlebars->47->2883",
+ "default.handlebars->47->3352",
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral",
- "default3.handlebars->35->2831",
- "default3.handlebars->35->2875",
- "default3.handlebars->35->3338",
+ "default3.handlebars->35->2832",
+ "default3.handlebars->35->2876",
+ "default3.handlebars->35->3339",
"default3.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
]
},
@@ -89088,8 +89097,8 @@
"zh-cht": "用戶節",
"uk": "Сеанси Користувачів",
"xloc": [
- "default.handlebars->47->3324",
- "default3.handlebars->35->3311"
+ "default.handlebars->47->3325",
+ "default3.handlebars->35->3312"
]
},
{
@@ -89118,8 +89127,8 @@
"zh-cht": "用戶視圖",
"uk": "Перегляд користувачів",
"xloc": [
- "default.handlebars->47->2771",
- "default3.handlebars->35->2766"
+ "default.handlebars->47->2772",
+ "default3.handlebars->35->2767"
]
},
{
@@ -89148,9 +89157,9 @@
"zh-cht": "未找到用戶 {0}。",
"uk": "Користувачів {0} не знайдено.",
"xloc": [
- "default-mobile.handlebars->11->1047",
- "default.handlebars->47->3282",
- "default3.handlebars->35->3269"
+ "default-mobile.handlebars->11->1048",
+ "default.handlebars->47->3283",
+ "default3.handlebars->35->3270"
]
},
{
@@ -89239,8 +89248,8 @@
"zh-cht": "VT100 +(F10 = ESC + [OY)",
"uk": "VT100+ (F10 = ESC+[OY)",
"xloc": [
- "default.handlebars->47->1524",
- "default3.handlebars->35->1509",
+ "default.handlebars->47->1525",
+ "default3.handlebars->35->1510",
"sharing.handlebars->11->38"
]
},
@@ -89301,8 +89310,8 @@
"zh-cht": "驗證電郵",
"uk": "Валідація е-пошти",
"xloc": [
- "default.handlebars->47->2749",
- "default3.handlebars->35->2745"
+ "default.handlebars->47->2750",
+ "default3.handlebars->35->2746"
]
},
{
@@ -89331,9 +89340,9 @@
"zh-cht": "驗證異常",
"uk": "Валідний виняток",
"xloc": [
- "default-mobile.handlebars->11->1040",
- "default.handlebars->47->3275",
- "default3.handlebars->35->3262"
+ "default-mobile.handlebars->11->1041",
+ "default.handlebars->47->3276",
+ "default3.handlebars->35->3263"
]
},
{
@@ -89362,8 +89371,8 @@
"zh-cht": "有效期",
"uk": "Валідний",
"xloc": [
- "default.handlebars->47->1232",
- "default3.handlebars->35->1227"
+ "default.handlebars->47->1233",
+ "default3.handlebars->35->1228"
]
},
{
@@ -89392,14 +89401,14 @@
"zh-cht": "價值",
"uk": "Значення",
"xloc": [
- "default.handlebars->47->1443",
- "default3.handlebars->35->1430"
+ "default.handlebars->47->1444",
+ "default3.handlebars->35->1431"
]
},
{
"en": "Vapor",
"xloc": [
- "default3.handlebars->35->2090"
+ "default3.handlebars->35->2091"
]
},
{
@@ -89429,8 +89438,8 @@
"uk": "Венда",
"xloc": [
"default-mobile.handlebars->11->301",
- "default.handlebars->47->2034",
- "default3.handlebars->35->2014",
+ "default.handlebars->47->2035",
+ "default3.handlebars->35->2015",
"login2.handlebars->7->189"
]
},
@@ -89460,12 +89469,12 @@
"zh-cht": "供應商",
"uk": "Постачальник",
"xloc": [
- "default-mobile.handlebars->11->836",
- "default-mobile.handlebars->11->841",
- "default.handlebars->47->1676",
- "default.handlebars->47->1681",
- "default3.handlebars->35->1658",
- "default3.handlebars->35->1663"
+ "default-mobile.handlebars->11->837",
+ "default-mobile.handlebars->11->842",
+ "default.handlebars->47->1677",
+ "default.handlebars->47->1682",
+ "default3.handlebars->35->1659",
+ "default3.handlebars->35->1664"
]
},
{
@@ -89527,8 +89536,8 @@
"zh-cht": "已驗證",
"uk": "Верифіковано",
"xloc": [
- "default.handlebars->47->3067",
- "default3.handlebars->35->3058"
+ "default.handlebars->47->3068",
+ "default3.handlebars->35->3059"
]
},
{
@@ -89572,8 +89581,8 @@
"pl": "Zweryfikowano logowanie",
"uk": "Вхід підтверджено",
"xloc": [
- "default.handlebars->47->1787",
- "default3.handlebars->35->1768"
+ "default.handlebars->47->1788",
+ "default3.handlebars->35->1769"
]
},
{
@@ -89587,8 +89596,8 @@
"pl": "Zweryfikowano konto komunikatora",
"uk": "Обліковий запис месенджера верифіковано",
"xloc": [
- "default.handlebars->47->2746",
- "default3.handlebars->35->2742"
+ "default.handlebars->47->2747",
+ "default3.handlebars->35->2743"
]
},
{
@@ -89602,8 +89611,8 @@
"pl": "Zweryfikowano konto komunikatora użytkownika {0}",
"uk": "Обліковий запис месенджера {0} верифіковано",
"xloc": [
- "default.handlebars->47->2680",
- "default3.handlebars->35->2676"
+ "default.handlebars->47->2681",
+ "default3.handlebars->35->2677"
]
},
{
@@ -89633,10 +89642,10 @@
"uk": "Верифіковано номер телефону",
"xloc": [
"default-mobile.handlebars->11->105",
- "default.handlebars->47->1781",
- "default.handlebars->47->2744",
- "default3.handlebars->35->1762",
- "default3.handlebars->35->2740"
+ "default.handlebars->47->1782",
+ "default.handlebars->47->2745",
+ "default3.handlebars->35->1763",
+ "default3.handlebars->35->2741"
]
},
{
@@ -89665,8 +89674,8 @@
"zh-cht": "用戶{0}的已驗證電話號碼",
"uk": "Підтверджений номер телефону користувача {0}",
"xloc": [
- "default.handlebars->47->2620",
- "default3.handlebars->35->2616"
+ "default.handlebars->47->2621",
+ "default3.handlebars->35->2617"
]
},
{
@@ -89757,18 +89766,18 @@
"uk": "Версія",
"xloc": [
"default-mobile.handlebars->11->748",
- "default-mobile.handlebars->11->817",
- "default-mobile.handlebars->11->837",
- "default-mobile.handlebars->11->844",
- "default.handlebars->47->1606",
- "default.handlebars->47->1657",
- "default.handlebars->47->1677",
- "default.handlebars->47->1684",
+ "default-mobile.handlebars->11->818",
+ "default-mobile.handlebars->11->838",
+ "default-mobile.handlebars->11->845",
+ "default.handlebars->47->1607",
+ "default.handlebars->47->1658",
+ "default.handlebars->47->1678",
+ "default.handlebars->47->1685",
"default.handlebars->container->column_l->p42->p42tbl->1->0->5",
- "default3.handlebars->35->1590",
- "default3.handlebars->35->1641",
- "default3.handlebars->35->1659",
- "default3.handlebars->35->1666",
+ "default3.handlebars->35->1591",
+ "default3.handlebars->35->1642",
+ "default3.handlebars->35->1660",
+ "default3.handlebars->35->1667",
"default3.handlebars->container->column_l->p42->p42tbl->1->0->11"
]
},
@@ -89798,9 +89807,9 @@
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
"uk": "Версія несумісна, спочатку оновіть встановлення MeshCentral",
"xloc": [
- "default.handlebars->47->3395",
- "default3.handlebars->35->3381",
- "default3.handlebars->35->3382"
+ "default.handlebars->47->3396",
+ "default3.handlebars->35->3382",
+ "default3.handlebars->35->3383"
]
},
{
@@ -89888,8 +89897,8 @@
"uk": "Вібрувати",
"xloc": [
"default-mobile.handlebars->11->580",
- "default.handlebars->47->1252",
- "default3.handlebars->35->1247"
+ "default.handlebars->47->1253",
+ "default3.handlebars->35->1248"
]
},
{
@@ -89919,8 +89928,8 @@
"uk": "В'єтнамська",
"xloc": [
"default-mobile.handlebars->11->302",
- "default.handlebars->47->2035",
- "default3.handlebars->35->2015",
+ "default.handlebars->47->2036",
+ "default3.handlebars->35->2016",
"login2.handlebars->7->190"
]
},
@@ -89980,8 +89989,8 @@
"zh-cht": "查看所有事件",
"uk": "Показати всі події",
"xloc": [
- "default.handlebars->47->2829",
- "default3.handlebars->35->2822"
+ "default.handlebars->47->2830",
+ "default3.handlebars->35->2823"
]
},
{
@@ -90036,10 +90045,10 @@
"zh-cht": "查看變更日誌",
"uk": "Переглянути Журнал Змін",
"xloc": [
- "default.handlebars->47->3398",
- "default.handlebars->47->3400",
- "default3.handlebars->35->3385",
- "default3.handlebars->35->3387"
+ "default.handlebars->47->3399",
+ "default.handlebars->47->3401",
+ "default3.handlebars->35->3386",
+ "default3.handlebars->35->3388"
]
},
{
@@ -90068,8 +90077,8 @@
"zh-cht": "查看有關此裝置的註釋",
"uk": "Див. примітки щодо цього пристрою",
"xloc": [
- "default.handlebars->47->1015",
- "default3.handlebars->35->1012"
+ "default.handlebars->47->1016",
+ "default3.handlebars->35->1013"
]
},
{
@@ -90098,8 +90107,8 @@
"zh-cht": "查看有關此裝置群的註釋",
"uk": "Див. примітки щодо цієї групи пристроїв",
"xloc": [
- "default.handlebars->47->2220",
- "default3.handlebars->35->2215"
+ "default.handlebars->47->2221",
+ "default3.handlebars->35->2216"
]
},
{
@@ -90128,8 +90137,8 @@
"zh-cht": "查看有關此用戶的註釋",
"uk": "Переглянути нотатки про цього користувача",
"xloc": [
- "default.handlebars->47->2998",
- "default3.handlebars->35->2991"
+ "default.handlebars->47->2999",
+ "default3.handlebars->35->2992"
]
},
{
@@ -90189,8 +90198,8 @@
"zh-cht": "查看此用戶以前的登錄信息",
"uk": "Переглянути попередні входи цього користувача",
"xloc": [
- "default.handlebars->47->3013",
- "default3.handlebars->35->3006"
+ "default.handlebars->47->3014",
+ "default3.handlebars->35->3007"
]
},
{
@@ -90250,8 +90259,8 @@
"uk": "Волапюк",
"xloc": [
"default-mobile.handlebars->11->303",
- "default.handlebars->47->2036",
- "default3.handlebars->35->2016",
+ "default.handlebars->47->2037",
+ "default3.handlebars->35->2017",
"login2.handlebars->7->191"
]
},
@@ -90511,8 +90520,8 @@
"uk": "Очікування доступу від користувача...",
"xloc": [
"default-mobile.handlebars->11->641",
- "default.handlebars->47->1374",
- "default3.handlebars->35->1361",
+ "default.handlebars->47->1375",
+ "default3.handlebars->35->1362",
"sharing.handlebars->11->28",
"sharing.handlebars->11->6"
]
@@ -90543,10 +90552,10 @@
"zh-cht": "喚醒",
"uk": "Пробудити",
"xloc": [
- "default.handlebars->47->1138",
- "default.handlebars->47->1163",
- "default3.handlebars->35->1133",
- "default3.handlebars->35->1158"
+ "default.handlebars->47->1139",
+ "default.handlebars->47->1164",
+ "default3.handlebars->35->1134",
+ "default3.handlebars->35->1159"
]
},
{
@@ -90575,12 +90584,12 @@
"zh-cht": "喚醒裝置",
"uk": "Пробудити Пристрої",
"xloc": [
- "default-mobile.handlebars->11->1002",
- "default-mobile.handlebars->11->987",
- "default.handlebars->47->2362",
- "default.handlebars->47->2394",
- "default3.handlebars->35->2358",
- "default3.handlebars->35->2390"
+ "default-mobile.handlebars->11->1003",
+ "default-mobile.handlebars->11->988",
+ "default.handlebars->47->2363",
+ "default.handlebars->47->2395",
+ "default3.handlebars->35->2359",
+ "default3.handlebars->35->2391"
]
},
{
@@ -90610,8 +90619,8 @@
"uk": "Пробудити",
"xloc": [
"default-mobile.handlebars->11->585",
- "default.handlebars->47->1257",
- "default3.handlebars->35->1252"
+ "default.handlebars->47->1258",
+ "default3.handlebars->35->1253"
]
},
{
@@ -90671,8 +90680,8 @@
"uk": "Walloon / Валлонська",
"xloc": [
"default-mobile.handlebars->11->304",
- "default.handlebars->47->2037",
- "default3.handlebars->35->2017",
+ "default.handlebars->47->2038",
+ "default3.handlebars->35->2018",
"login2.handlebars->7->192"
]
},
@@ -90702,8 +90711,8 @@
"zh-cht": "弱",
"uk": "Хиткий",
"xloc": [
- "default.handlebars->47->2123",
- "default3.handlebars->35->2122"
+ "default.handlebars->47->2124",
+ "default3.handlebars->35->2123"
]
},
{
@@ -90766,10 +90775,10 @@
"zh-cht": "網頁通知",
"uk": "Сповіщення веб-сайту",
"xloc": [
- "default.handlebars->47->1114",
- "default.handlebars->47->2441",
- "default3.handlebars->35->1109",
- "default3.handlebars->35->2437"
+ "default.handlebars->47->1115",
+ "default.handlebars->47->2442",
+ "default3.handlebars->35->1110",
+ "default3.handlebars->35->2438"
]
},
{
@@ -90798,8 +90807,8 @@
"zh-cht": "網頁電源開關 7",
"uk": "Веб-перемикач живлення 7",
"xloc": [
- "default.handlebars->47->2114",
- "default3.handlebars->35->2113"
+ "default.handlebars->47->2115",
+ "default3.handlebars->35->2114"
]
},
{
@@ -90828,10 +90837,10 @@
"zh-cht": "網絡伺服器",
"uk": "Веб-сервер",
"xloc": [
- "default.handlebars->47->3377",
"default.handlebars->47->3378",
- "default3.handlebars->35->3364",
- "default3.handlebars->35->3365"
+ "default.handlebars->47->3379",
+ "default3.handlebars->35->3365",
+ "default3.handlebars->35->3366"
]
},
{
@@ -90860,8 +90869,8 @@
"zh-cht": "Web 服務器 HTTP 標頭",
"uk": "HTTP-заголовки веб-сервера",
"xloc": [
- "default.handlebars->47->3381",
- "default3.handlebars->35->3368"
+ "default.handlebars->47->3382",
+ "default3.handlebars->35->3369"
]
},
{
@@ -90890,8 +90899,8 @@
"zh-cht": "Web伺服器請求",
"uk": "Запити веб-сервера",
"xloc": [
- "default.handlebars->47->3379",
- "default3.handlebars->35->3366"
+ "default.handlebars->47->3380",
+ "default3.handlebars->35->3367"
]
},
{
@@ -90920,8 +90929,8 @@
"zh-cht": "Web插座中繼",
"uk": "Web Socket Relay",
"xloc": [
- "default.handlebars->47->3380",
- "default3.handlebars->35->3367"
+ "default.handlebars->47->3381",
+ "default3.handlebars->35->3368"
]
},
{
@@ -90950,11 +90959,11 @@
"zh-cht": "網絡RDP",
"uk": "Web-RDP",
"xloc": [
- "default.handlebars->47->1056",
- "default.handlebars->47->3203",
+ "default.handlebars->47->1057",
+ "default.handlebars->47->3204",
"default.handlebars->contextMenu->cxwebrdp",
- "default3.handlebars->35->1053",
- "default3.handlebars->35->3190",
+ "default3.handlebars->35->1054",
+ "default3.handlebars->35->3191",
"default3.handlebars->contextMenu->cxwebrdp"
]
},
@@ -90984,8 +90993,8 @@
"zh-cht": "網絡SFTP",
"uk": "Web-SFTP",
"xloc": [
- "default.handlebars->47->3205",
- "default3.handlebars->35->3192"
+ "default.handlebars->47->3206",
+ "default3.handlebars->35->3193"
]
},
{
@@ -91014,11 +91023,11 @@
"zh-cht": "網絡SSH",
"uk": "Web-SSH",
"xloc": [
- "default.handlebars->47->1058",
- "default.handlebars->47->3204",
+ "default.handlebars->47->1059",
+ "default.handlebars->47->3205",
"default.handlebars->contextMenu->cxwebssh",
- "default3.handlebars->35->1055",
- "default3.handlebars->35->3191",
+ "default3.handlebars->35->1056",
+ "default3.handlebars->35->3192",
"default3.handlebars->contextMenu->cxwebssh"
]
},
@@ -91048,11 +91057,11 @@
"zh-cht": "網絡-VNC",
"uk": "Web-VNC",
"xloc": [
- "default.handlebars->47->1054",
- "default.handlebars->47->3206",
+ "default.handlebars->47->1055",
+ "default.handlebars->47->3207",
"default.handlebars->contextMenu->cxwebvnc",
- "default3.handlebars->35->1051",
- "default3.handlebars->35->3193",
+ "default3.handlebars->35->1052",
+ "default3.handlebars->35->3194",
"default3.handlebars->contextMenu->cxwebvnc"
]
},
@@ -91082,8 +91091,8 @@
"zh-cht": "WebRDP",
"uk": "WebRDP",
"xloc": [
- "default.handlebars->47->3345",
- "default3.handlebars->35->3332"
+ "default.handlebars->47->3346",
+ "default3.handlebars->35->3333"
]
},
{
@@ -91112,8 +91121,8 @@
"zh-cht": "網絡SSH",
"uk": "WebSSH",
"xloc": [
- "default.handlebars->47->3346",
- "default3.handlebars->35->3333"
+ "default.handlebars->47->3347",
+ "default3.handlebars->35->3334"
]
},
{
@@ -91172,8 +91181,8 @@
"zh-cht": "網絡VNC",
"uk": "WebVNC",
"xloc": [
- "default.handlebars->47->3347",
- "default3.handlebars->35->3334"
+ "default.handlebars->47->3348",
+ "default3.handlebars->35->3335"
]
},
{
@@ -91294,8 +91303,8 @@
"uk": "Валлійська",
"xloc": [
"default-mobile.handlebars->11->305",
- "default.handlebars->47->2038",
- "default3.handlebars->35->2018",
+ "default.handlebars->47->2039",
+ "default3.handlebars->35->2019",
"login2.handlebars->7->193"
]
},
@@ -91310,10 +91319,10 @@
"pl": "Whatsapp",
"uk": "WhatsApp",
"xloc": [
- "default.handlebars->47->1803",
- "default.handlebars->47->3035",
- "default3.handlebars->35->1784",
- "default3.handlebars->35->3028"
+ "default.handlebars->47->1804",
+ "default.handlebars->47->3036",
+ "default3.handlebars->35->1785",
+ "default3.handlebars->35->3029"
]
},
{
@@ -91342,8 +91351,8 @@
"zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"uk": "Коли ввімкнено, будь-хто може використовувати коди виклику, щоб приєднати пристрій до цієї групи пристроїв за допомогою такого публічного посилання:",
"xloc": [
- "default.handlebars->47->2420",
- "default3.handlebars->35->2416"
+ "default.handlebars->47->2421",
+ "default3.handlebars->35->2417"
]
},
{
@@ -91373,8 +91382,8 @@
"uk": "Якщо увімкнено, то під час кожного входу ви матимете можливість отримати токен входу для вашого акаунту електронною поштою для додаткової безпеки.",
"xloc": [
"default-mobile.handlebars->11->111",
- "default.handlebars->47->1819",
- "default3.handlebars->35->1800"
+ "default.handlebars->47->1820",
+ "default3.handlebars->35->1801"
]
},
{
@@ -91403,8 +91412,8 @@
"zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。",
"uk": "Якщо вибрано цю політику, Intel® AMT не керується цим сервером. Intel AMT усе ще можна використовувати, активувавши та налаштувавши його вручну.",
"xloc": [
- "default.handlebars->47->2300",
- "default3.handlebars->35->2293"
+ "default.handlebars->47->2301",
+ "default3.handlebars->35->2294"
]
},
{
@@ -91459,8 +91468,8 @@
"zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。",
"uk": "Якщо вибрано цю політику, будь-який Intel® AMT у режимі клієнта (CCM) буде вимкнено. Інші пристрої із CIRA буде очищено, і ними можна буде керувати вручну.",
"xloc": [
- "default.handlebars->47->2301",
- "default3.handlebars->35->2294"
+ "default.handlebars->47->2302",
+ "default3.handlebars->35->2295"
]
},
{
@@ -91489,8 +91498,8 @@
"zh-cht": "下次登入時將更改。",
"uk": "Буде змінено під час наступного входу.",
"xloc": [
- "default.handlebars->47->2966",
- "default3.handlebars->35->2959"
+ "default.handlebars->47->2967",
+ "default3.handlebars->35->2960"
]
},
{
@@ -91522,10 +91531,10 @@
"default-mobile.handlebars->11->670",
"default-mobile.handlebars->11->674",
"default-mobile.handlebars->dialog->3->dialog3->deskkeys->5",
- "default.handlebars->47->1433",
- "default.handlebars->47->1437",
- "default3.handlebars->35->1420",
- "default3.handlebars->35->1424",
+ "default.handlebars->47->1434",
+ "default.handlebars->47->1438",
+ "default3.handlebars->35->1421",
+ "default3.handlebars->35->1425",
"sharing.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3"
]
},
@@ -91763,7 +91772,7 @@
"zh-cht": "Win32可執行檔案",
"uk": "Виконуваний файл Win32",
"xloc": [
- "default.handlebars->47->1330"
+ "default.handlebars->47->1331"
]
},
{
@@ -92215,8 +92224,8 @@
"pl": "Windows ARM (64bit)",
"uk": "Windows ARM (64біт)",
"xloc": [
- "default.handlebars->47->1337",
- "default3.handlebars->35->1325"
+ "default.handlebars->47->1338",
+ "default3.handlebars->35->1326"
]
},
{
@@ -92311,9 +92320,9 @@
"uk": "Командний Рядок Windows",
"xloc": [
"default-mobile.handlebars->11->608",
- "default.handlebars->47->1276",
+ "default.handlebars->47->1277",
"default.handlebars->47->808",
- "default3.handlebars->35->1271",
+ "default3.handlebars->35->1272",
"default3.handlebars->35->805"
]
},
@@ -92366,9 +92375,9 @@
"zh-cht": "Windows MeshAgent",
"uk": "Windows MeshAgent",
"xloc": [
- "default.handlebars->47->2425",
+ "default.handlebars->47->2426",
"default.handlebars->47->583",
- "default3.handlebars->35->2421",
+ "default3.handlebars->35->2422",
"default3.handlebars->35->580"
]
},
@@ -92491,9 +92500,9 @@
"uk": "Windows PowerShell",
"xloc": [
"default-mobile.handlebars->11->609",
- "default.handlebars->47->1277",
+ "default.handlebars->47->1278",
"default.handlebars->47->809",
- "default3.handlebars->35->1272",
+ "default3.handlebars->35->1273",
"default3.handlebars->35->806"
]
},
@@ -92603,8 +92612,8 @@
"nl": "Windows x86 (32bit)",
"uk": "Windows x86 (32біт)",
"xloc": [
- "default.handlebars->47->1336",
- "default3.handlebars->35->1324"
+ "default.handlebars->47->1337",
+ "default3.handlebars->35->1325"
]
},
{
@@ -92615,8 +92624,8 @@
"nl": "Windows x86 (64bit)",
"uk": "Windows x86-64 (64біт)",
"xloc": [
- "default.handlebars->47->1335",
- "default3.handlebars->35->1323"
+ "default.handlebars->47->1336",
+ "default3.handlebars->35->1324"
]
},
{
@@ -92673,8 +92682,8 @@
"zh-cht": "工作目錄",
"uk": "Робоча тека",
"xloc": [
- "default.handlebars->47->1398",
- "default3.handlebars->35->1385"
+ "default.handlebars->47->1399",
+ "default3.handlebars->35->1386"
]
},
{
@@ -92764,8 +92773,8 @@
"zh-cht": "换行:關",
"uk": "Перенесення: ВИМК",
"xloc": [
- "default.handlebars->47->1584",
- "default3.handlebars->35->1568",
+ "default.handlebars->47->1585",
+ "default3.handlebars->35->1569",
"sharing.handlebars->11->84"
]
},
@@ -92795,8 +92804,8 @@
"zh-cht": "换行:開",
"uk": "Перенесення: УВІМК",
"xloc": [
- "default.handlebars->47->1583",
- "default3.handlebars->35->1567",
+ "default.handlebars->47->1584",
+ "default3.handlebars->35->1568",
"sharing.handlebars->11->83"
]
},
@@ -92826,8 +92835,8 @@
"zh-cht": "為此裝置寫一個事件",
"uk": "Записати подію для цього пристрою",
"xloc": [
- "default.handlebars->47->1017",
- "default3.handlebars->35->1014"
+ "default.handlebars->47->1018",
+ "default3.handlebars->35->1015"
]
},
{
@@ -92915,10 +92924,10 @@
"zh-cht": "XMPP",
"uk": "XMPP",
"xloc": [
- "default.handlebars->47->1793",
- "default.handlebars->47->3025",
- "default3.handlebars->35->1774",
- "default3.handlebars->35->3018"
+ "default.handlebars->47->1794",
+ "default.handlebars->47->3026",
+ "default3.handlebars->35->1775",
+ "default3.handlebars->35->3019"
]
},
{
@@ -92947,8 +92956,8 @@
"zh-cht": "XTerm",
"uk": "XTerm",
"xloc": [
- "default.handlebars->47->1043",
- "default3.handlebars->35->1040"
+ "default.handlebars->47->1044",
+ "default3.handlebars->35->1041"
]
},
{
@@ -92978,8 +92987,8 @@
"uk": "Кхоса",
"xloc": [
"default-mobile.handlebars->11->306",
- "default.handlebars->47->2039",
- "default3.handlebars->35->2019",
+ "default.handlebars->47->2040",
+ "default3.handlebars->35->2020",
"login2.handlebars->7->194"
]
},
@@ -92988,21 +92997,21 @@
"en": "Yes",
"nl": "Ja",
"xloc": [
- "default-mobile.handlebars->11->853",
- "default-mobile.handlebars->11->856",
- "default-mobile.handlebars->11->859",
- "default.handlebars->47->1693",
- "default.handlebars->47->1696",
- "default.handlebars->47->1699",
- "default3.handlebars->35->1675",
- "default3.handlebars->35->1678",
- "default3.handlebars->35->1681"
+ "default-mobile.handlebars->11->854",
+ "default-mobile.handlebars->11->857",
+ "default-mobile.handlebars->11->860",
+ "default.handlebars->47->1694",
+ "default.handlebars->47->1697",
+ "default.handlebars->47->1700",
+ "default3.handlebars->35->1676",
+ "default3.handlebars->35->1679",
+ "default3.handlebars->35->1682"
]
},
{
"en": "Yeti",
"xloc": [
- "default3.handlebars->35->2091"
+ "default3.handlebars->35->2092"
]
},
{
@@ -93032,8 +93041,8 @@
"uk": "Їдиш",
"xloc": [
"default-mobile.handlebars->11->307",
- "default.handlebars->47->2040",
- "default3.handlebars->35->2020",
+ "default.handlebars->47->2041",
+ "default3.handlebars->35->2021",
"login2.handlebars->7->195"
]
},
@@ -93250,14 +93259,14 @@
"zh-cht": "YubiKey™OTP",
"uk": "YubiKey™ OTP",
"xloc": [
- "default.handlebars->47->1842",
- "default3.handlebars->35->1822"
+ "default.handlebars->47->1843",
+ "default3.handlebars->35->1823"
]
},
{
"en": "Zephyr",
"xloc": [
- "default3.handlebars->35->2092"
+ "default3.handlebars->35->2093"
]
},
{
@@ -93317,8 +93326,8 @@
"zh-cht": "郵編檔案名",
"uk": "Назва zip-файлу",
"xloc": [
- "default.handlebars->47->1568",
- "default3.handlebars->35->1552",
+ "default.handlebars->47->1569",
+ "default3.handlebars->35->1553",
"sharing.handlebars->11->68"
]
},
@@ -93426,10 +93435,10 @@
"pl": "Zulip",
"uk": "Zulip",
"xloc": [
- "default.handlebars->47->1797",
- "default.handlebars->47->3029",
- "default3.handlebars->35->1778",
- "default3.handlebars->35->3022"
+ "default.handlebars->47->1798",
+ "default.handlebars->47->3030",
+ "default3.handlebars->35->1779",
+ "default3.handlebars->35->3023"
]
},
{
@@ -93459,8 +93468,8 @@
"uk": "Zulu",
"xloc": [
"default-mobile.handlebars->11->308",
- "default.handlebars->47->2041",
- "default3.handlebars->35->2021",
+ "default.handlebars->47->2042",
+ "default3.handlebars->35->2022",
"login2.handlebars->7->196"
]
},
@@ -94093,8 +94102,8 @@
"zh-cht": "\\\\'",
"uk": "\\\\'",
"xloc": [
- "default.handlebars->47->3396",
- "default3.handlebars->35->3383"
+ "default.handlebars->47->3397",
+ "default3.handlebars->35->3384"
]
},
{
@@ -94618,8 +94627,8 @@
"zh-cht": "config.json",
"uk": "config.json",
"xloc": [
- "default.handlebars->47->2162",
- "default3.handlebars->35->2157"
+ "default.handlebars->47->2163",
+ "default3.handlebars->35->2158"
]
},
{
@@ -94648,9 +94657,9 @@
"zh-cht": "console.txt",
"uk": "console.txt",
"xloc": [
- "default-mobile.handlebars->11->925",
- "default.handlebars->47->1766",
- "default3.handlebars->35->1748"
+ "default-mobile.handlebars->11->926",
+ "default.handlebars->47->1767",
+ "default3.handlebars->35->1749"
]
},
{
@@ -94680,8 +94689,8 @@
"uk": "копія",
"xloc": [
"default-mobile.handlebars->11->380",
- "default.handlebars->47->2519",
- "default3.handlebars->35->2515"
+ "default.handlebars->47->2520",
+ "default3.handlebars->35->2516"
]
},
{
@@ -94948,10 +94957,10 @@
"zh-cht": "eventslist.csv",
"uk": "eventslist.csv",
"xloc": [
- "default.handlebars->47->2712",
- "default.handlebars->47->2717",
- "default3.handlebars->35->2708",
- "default3.handlebars->35->2713"
+ "default.handlebars->47->2713",
+ "default.handlebars->47->2718",
+ "default3.handlebars->35->2709",
+ "default3.handlebars->35->2714"
]
},
{
@@ -94980,10 +94989,10 @@
"zh-cht": "eventslist.json",
"uk": "eventslist.json",
"xloc": [
- "default.handlebars->47->2714",
- "default.handlebars->47->2718",
- "default3.handlebars->35->2710",
- "default3.handlebars->35->2714"
+ "default.handlebars->47->2715",
+ "default.handlebars->47->2719",
+ "default3.handlebars->35->2711",
+ "default3.handlebars->35->2715"
]
},
{
@@ -95072,10 +95081,10 @@
"zh-cht": "免費",
"uk": "вільно",
"xloc": [
- "default.handlebars->47->3332",
- "default.handlebars->47->3335",
- "default3.handlebars->35->3319",
- "default3.handlebars->35->3322"
+ "default.handlebars->47->3333",
+ "default.handlebars->47->3336",
+ "default3.handlebars->35->3320",
+ "default3.handlebars->35->3323"
]
},
{
@@ -95307,10 +95316,10 @@
"nl": "https://api.callmebot.com/...",
"pl": "https://api.callmebot.com/...",
"xloc": [
- "default.handlebars->47->1812",
- "default.handlebars->47->3044",
- "default3.handlebars->35->1793",
- "default3.handlebars->35->3037"
+ "default.handlebars->47->1813",
+ "default.handlebars->47->3045",
+ "default3.handlebars->35->1794",
+ "default3.handlebars->35->3038"
]
},
{
@@ -95378,10 +95387,10 @@
"en": "https://hooks.slack.com/...",
"nl": "https://hooks.slack.com/...",
"xloc": [
- "default.handlebars->47->1816",
- "default.handlebars->47->3048",
- "default3.handlebars->35->1797",
- "default3.handlebars->35->3041"
+ "default.handlebars->47->1817",
+ "default.handlebars->47->3049",
+ "default3.handlebars->35->1798",
+ "default3.handlebars->35->3042"
]
},
{
@@ -95410,8 +95419,8 @@
"zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定",
"uk": "id,ім'я,е-пошта,створення,останній вхід,групи,параметри автентифікації,siteadmin,userradmin,заблоковано",
"xloc": [
- "default.handlebars->47->2793",
- "default3.handlebars->35->2788"
+ "default.handlebars->47->2794",
+ "default3.handlebars->35->2789"
]
},
{
@@ -95591,8 +95600,8 @@
"zh-cht": "k max,默認為空白",
"uk": "k max, порожнє за замовчуванням",
"xloc": [
- "default.handlebars->47->2821",
- "default3.handlebars->35->2814"
+ "default.handlebars->47->2822",
+ "default3.handlebars->35->2815"
]
},
{
@@ -95826,9 +95835,9 @@
"uk": "macOS ARM (64біт)",
"xloc": [
"agentinvite.handlebars->container->column_l->5->1->tmacostabarm64",
- "default.handlebars->47->1341",
+ "default.handlebars->47->1342",
"default.handlebars->47->641",
- "default3.handlebars->35->1329",
+ "default3.handlebars->35->1330",
"default3.handlebars->35->638"
]
},
@@ -95858,8 +95867,8 @@
"zh-cht": "macOS x86 (64位)",
"uk": "macOS x86-64 (64біт)",
"xloc": [
- "default.handlebars->47->1340",
- "default3.handlebars->35->1328"
+ "default.handlebars->47->1341",
+ "default3.handlebars->35->1329"
]
},
{
@@ -95985,8 +95994,8 @@
"uk": "рухати",
"xloc": [
"default-mobile.handlebars->11->381",
- "default.handlebars->47->2520",
- "default3.handlebars->35->2516"
+ "default.handlebars->47->2521",
+ "default3.handlebars->35->2517"
]
},
{
@@ -96077,10 +96086,10 @@
"pl": "ntfy",
"uk": "ntfy",
"xloc": [
- "default.handlebars->47->1796",
- "default.handlebars->47->3028",
- "default3.handlebars->35->1777",
- "default3.handlebars->35->3021"
+ "default.handlebars->47->1797",
+ "default.handlebars->47->3029",
+ "default3.handlebars->35->1778",
+ "default3.handlebars->35->3022"
]
},
{
@@ -96375,8 +96384,8 @@
"zh-cht": "servererrors.txt",
"uk": "servererrors.txt",
"xloc": [
- "default.handlebars->47->2159",
- "default3.handlebars->35->2156"
+ "default.handlebars->47->2160",
+ "default3.handlebars->35->2157"
]
},
{
@@ -96405,8 +96414,8 @@
"zh-cht": "servertrace.csv",
"uk": "servertrace.csv",
"xloc": [
- "default.handlebars->47->3390",
- "default3.handlebars->35->3377"
+ "default.handlebars->47->3391",
+ "default3.handlebars->35->3378"
]
},
{
@@ -96414,10 +96423,10 @@
"en": "service_",
"nl": "service_",
"xloc": [
- "default.handlebars->47->1483",
- "default.handlebars->47->1486",
- "default3.handlebars->35->1468",
- "default3.handlebars->35->1470"
+ "default.handlebars->47->1484",
+ "default.handlebars->47->1487",
+ "default3.handlebars->35->1469",
+ "default3.handlebars->35->1471"
]
},
{
@@ -96540,8 +96549,8 @@
"zh-cht": "這將刪除現有伺服器數據。",
"uk": "що призведе до видалення існуючих даних сервера.",
"xloc": [
- "default.handlebars->47->2148",
- "default3.handlebars->35->2147"
+ "default.handlebars->47->2149",
+ "default3.handlebars->35->2148"
]
},
{
@@ -96570,8 +96579,8 @@
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"uk": "час, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"xloc": [
- "default.handlebars->47->3364",
- "default3.handlebars->35->3351"
+ "default.handlebars->47->3365",
+ "default3.handlebars->35->3352"
]
},
{
@@ -96600,8 +96609,8 @@
"zh-cht": "時間,來源,訊息",
"uk": "час, джерело, повідомлення",
"xloc": [
- "default.handlebars->47->3389",
- "default3.handlebars->35->3376"
+ "default.handlebars->47->3390",
+ "default3.handlebars->35->3377"
]
},
{
@@ -96671,10 +96680,10 @@
"zh-cht": "總",
"uk": "усього",
"xloc": [
- "default.handlebars->47->3333",
- "default.handlebars->47->3336",
- "default3.handlebars->35->3320",
- "default3.handlebars->35->3323"
+ "default.handlebars->47->3334",
+ "default.handlebars->47->3337",
+ "default3.handlebars->35->3321",
+ "default3.handlebars->35->3324"
]
},
{
@@ -96711,8 +96720,8 @@
"en": "true",
"nl": "waar",
"xloc": [
- "default.handlebars->47->2776",
- "default3.handlebars->35->2771"
+ "default.handlebars->47->2777",
+ "default3.handlebars->35->2772"
]
},
{
@@ -96835,10 +96844,10 @@
"zh-cht": "userlist.csv",
"uk": "userlist.csv",
"xloc": [
- "default.handlebars->47->2789",
- "default.handlebars->47->2794",
- "default3.handlebars->35->2784",
- "default3.handlebars->35->2789"
+ "default.handlebars->47->2790",
+ "default.handlebars->47->2795",
+ "default3.handlebars->35->2785",
+ "default3.handlebars->35->2790"
]
},
{
@@ -96867,10 +96876,10 @@
"zh-cht": "userlist.json",
"uk": "userlist.json",
"xloc": [
- "default.handlebars->47->2791",
- "default.handlebars->47->2795",
- "default3.handlebars->35->2786",
- "default3.handlebars->35->2790"
+ "default.handlebars->47->2792",
+ "default.handlebars->47->2796",
+ "default3.handlebars->35->2787",
+ "default3.handlebars->35->2791"
]
},
{
@@ -96884,10 +96893,10 @@
"pl": "nazwauzytkownika@domena.pl",
"uk": "ім'я_користувача@server.ua",
"xloc": [
- "default.handlebars->47->1815",
- "default.handlebars->47->3047",
- "default3.handlebars->35->1796",
- "default3.handlebars->35->3040"
+ "default.handlebars->47->1816",
+ "default.handlebars->47->3048",
+ "default3.handlebars->35->1797",
+ "default3.handlebars->35->3041"
]
},
{
@@ -96901,10 +96910,10 @@
"pl": "nazwauzytkownika@serwer.pl",
"uk": "ім'я_користувача@server.ua",
"xloc": [
- "default.handlebars->47->1811",
- "default.handlebars->47->3043",
- "default3.handlebars->35->1792",
- "default3.handlebars->35->3036"
+ "default.handlebars->47->1812",
+ "default.handlebars->47->3044",
+ "default3.handlebars->35->1793",
+ "default3.handlebars->35->3037"
]
},
{
@@ -96933,8 +96942,8 @@
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
"uk": "utc, час, тип, дія, користувач, пристрій, повідомлення",
"xloc": [
- "default.handlebars->47->2716",
- "default3.handlebars->35->2712"
+ "default.handlebars->47->2717",
+ "default3.handlebars->35->2713"
]
},
{
@@ -97073,12 +97082,12 @@
"zh-cht": "{0}",
"uk": "{0}",
"xloc": [
- "default-mobile.handlebars->11->871",
- "default-mobile.handlebars->11->877",
- "default.handlebars->47->1711",
- "default.handlebars->47->1717",
- "default3.handlebars->35->1693",
- "default3.handlebars->35->1699"
+ "default-mobile.handlebars->11->872",
+ "default-mobile.handlebars->11->878",
+ "default.handlebars->47->1712",
+ "default.handlebars->47->1718",
+ "default3.handlebars->35->1694",
+ "default3.handlebars->35->1700"
]
},
{
@@ -97240,10 +97249,10 @@
"zh-cht": "{0} Gb",
"uk": "{0} ГБ",
"xloc": [
- "default.handlebars->47->2492",
- "default.handlebars->47->2497",
- "default3.handlebars->35->2488",
- "default3.handlebars->35->2493"
+ "default.handlebars->47->2493",
+ "default.handlebars->47->2498",
+ "default3.handlebars->35->2489",
+ "default3.handlebars->35->2494"
]
},
{
@@ -97298,12 +97307,12 @@
"zh-cht": "{0} Kb",
"uk": "{0} кБ",
"xloc": [
- "default.handlebars->47->2490",
- "default.handlebars->47->2495",
- "default.handlebars->47->3128",
- "default3.handlebars->35->2486",
- "default3.handlebars->35->2491",
- "default3.handlebars->35->3115"
+ "default.handlebars->47->2491",
+ "default.handlebars->47->2496",
+ "default.handlebars->47->3129",
+ "default3.handlebars->35->2487",
+ "default3.handlebars->35->2492",
+ "default3.handlebars->35->3116"
]
},
{
@@ -97358,16 +97367,16 @@
"zh-cht": "{0} Mb",
"uk": "{0} Мб",
"xloc": [
- "default-mobile.handlebars->11->865",
- "default-mobile.handlebars->11->882",
- "default.handlebars->47->1705",
- "default.handlebars->47->1722",
- "default.handlebars->47->2491",
- "default.handlebars->47->2496",
- "default3.handlebars->35->1687",
- "default3.handlebars->35->1704",
- "default3.handlebars->35->2487",
- "default3.handlebars->35->2492"
+ "default-mobile.handlebars->11->866",
+ "default-mobile.handlebars->11->883",
+ "default.handlebars->47->1706",
+ "default.handlebars->47->1723",
+ "default.handlebars->47->2492",
+ "default.handlebars->47->2497",
+ "default3.handlebars->35->1688",
+ "default3.handlebars->35->1705",
+ "default3.handlebars->35->2488",
+ "default3.handlebars->35->2493"
]
},
{
@@ -97396,9 +97405,9 @@
"zh-cht": "{0} Mb,{1} Mhz",
"uk": "{0} Мб, {1} МГц",
"xloc": [
- "default-mobile.handlebars->11->863",
- "default.handlebars->47->1703",
- "default3.handlebars->35->1685"
+ "default-mobile.handlebars->11->864",
+ "default.handlebars->47->1704",
+ "default3.handlebars->35->1686"
]
},
{
@@ -97453,8 +97462,8 @@
"zh-cht": "{0}個活躍節",
"uk": "{0} активних сеансів",
"xloc": [
- "default.handlebars->47->3016",
- "default3.handlebars->35->3009"
+ "default.handlebars->47->3017",
+ "default3.handlebars->35->3010"
]
},
{
@@ -97483,10 +97492,10 @@
"zh-cht": "{0} b",
"uk": "{0} Б",
"xloc": [
- "default.handlebars->47->2489",
- "default.handlebars->47->2494",
- "default3.handlebars->35->2485",
- "default3.handlebars->35->2490"
+ "default.handlebars->47->2490",
+ "default.handlebars->47->2495",
+ "default3.handlebars->35->2486",
+ "default3.handlebars->35->2491"
]
},
{
@@ -97516,10 +97525,10 @@
"uk": "{0} байт",
"xloc": [
"default-mobile.handlebars->11->369",
- "default.handlebars->47->2505",
- "default.handlebars->47->3149",
- "default3.handlebars->35->2501",
- "default3.handlebars->35->3136",
+ "default.handlebars->47->2506",
+ "default.handlebars->47->3150",
+ "default3.handlebars->35->2502",
+ "default3.handlebars->35->3137",
"download.handlebars->3->2",
"download2.handlebars->5->2",
"sharing.handlebars->11->102"
@@ -97551,8 +97560,8 @@
"zh-cht": "剩餘{0}個字節",
"uk": "Залишилося {0} байт",
"xloc": [
- "default.handlebars->47->2484",
- "default3.handlebars->35->2480"
+ "default.handlebars->47->2485",
+ "default3.handlebars->35->2481"
]
},
{
@@ -97607,8 +97616,8 @@
"zh-cht": "{0}個連接",
"uk": "{0} підключень",
"xloc": [
- "default.handlebars->47->1403",
- "default3.handlebars->35->1390",
+ "default.handlebars->47->1404",
+ "default3.handlebars->35->1391",
"sharing.handlebars->11->16"
]
},
@@ -97638,8 +97647,8 @@
"zh-cht": "{0} 從 {1} 到 {2}。",
"uk": "{0} від {1} до {2}.",
"xloc": [
- "default.handlebars->47->1298",
- "default3.handlebars->35->1289"
+ "default.handlebars->47->1299",
+ "default3.handlebars->35->1290"
]
},
{
@@ -97668,8 +97677,8 @@
"zh-cht": "剩餘{0} GB",
"uk": "Залишилося {0} гігабайт",
"xloc": [
- "default.handlebars->47->2487",
- "default3.handlebars->35->2483"
+ "default.handlebars->47->2488",
+ "default3.handlebars->35->2484"
]
},
{
@@ -97698,8 +97707,8 @@
"zh-cht": "{0}個群組",
"uk": "{0} груп",
"xloc": [
- "default.handlebars->47->2971",
- "default3.handlebars->35->2964"
+ "default.handlebars->47->2972",
+ "default3.handlebars->35->2965"
]
},
{
@@ -97784,8 +97793,8 @@
"zh-cht": "剩餘{0}千字節",
"uk": "Залишилося {0} кілобайт",
"xloc": [
- "default.handlebars->47->2485",
- "default3.handlebars->35->2481"
+ "default.handlebars->47->2486",
+ "default3.handlebars->35->2482"
]
},
{
@@ -97845,8 +97854,8 @@
"zh-cht": "剩餘{0}兆字節",
"uk": "Залишилося {0} мегабайт",
"xloc": [
- "default.handlebars->47->2486",
- "default3.handlebars->35->2482"
+ "default.handlebars->47->2487",
+ "default3.handlebars->35->2483"
]
},
{
@@ -97991,8 +98000,8 @@
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
"uk": "{0} користувачів не показано, використовуйте вікно пошуку для пошуку користувачів...",
"xloc": [
- "default.handlebars->47->2726",
- "default3.handlebars->35->2722"
+ "default.handlebars->47->2727",
+ "default3.handlebars->35->2723"
]
},
{
@@ -98490,7 +98499,7 @@
"default-mobile.handlebars->11->438",
"default-mobile.handlebars->11->442",
"default-mobile.handlebars->11->446",
- "default.handlebars->47->2730",
+ "default.handlebars->47->2731",
"default.handlebars->47->454",
"default.handlebars->47->457",
"default.handlebars->47->461",
@@ -98498,7 +98507,7 @@
"default.handlebars->47->469",
"default.handlebars->47->473",
"default.handlebars->47->477",
- "default3.handlebars->35->2726",
+ "default3.handlebars->35->2727",
"default3.handlebars->35->451",
"default3.handlebars->35->454",
"default3.handlebars->35->458",
@@ -98793,12 +98802,12 @@
"zh-cht": "{0}, {1}",
"uk": "{0}, {1}",
"xloc": [
- "default-mobile.handlebars->11->869",
- "default-mobile.handlebars->11->875",
- "default.handlebars->47->1709",
- "default.handlebars->47->1715",
- "default3.handlebars->35->1691",
- "default3.handlebars->35->1697"
+ "default-mobile.handlebars->11->870",
+ "default-mobile.handlebars->11->876",
+ "default.handlebars->47->1710",
+ "default.handlebars->47->1716",
+ "default3.handlebars->35->1692",
+ "default3.handlebars->35->1698"
]
},
{
@@ -98827,10 +98836,10 @@
"zh-cht": "{0}、{1} {2} 分鐘",
"uk": "{0}, {1} через {2} хвилини",
"xloc": [
- "default.handlebars->47->1101",
- "default.handlebars->47->2251",
- "default3.handlebars->35->1098",
- "default3.handlebars->35->2246"
+ "default.handlebars->47->1102",
+ "default.handlebars->47->2252",
+ "default3.handlebars->35->1099",
+ "default3.handlebars->35->2247"
]
},
{
@@ -98859,10 +98868,10 @@
"zh-cht": "{0}、{1} {2} 分鐘",
"uk": "{0}, {1} через {2} хвилин",
"xloc": [
- "default.handlebars->47->1102",
- "default.handlebars->47->2252",
- "default3.handlebars->35->1099",
- "default3.handlebars->35->2247"
+ "default.handlebars->47->1103",
+ "default.handlebars->47->2253",
+ "default3.handlebars->35->1100",
+ "default3.handlebars->35->2248"
]
},
{
@@ -98891,10 +98900,10 @@
"zh-cht": "{0},{1}至{2}",
"uk": "{0}, {1} виконати {2}",
"xloc": [
- "default.handlebars->47->1100",
- "default.handlebars->47->2250",
- "default3.handlebars->35->1097",
- "default3.handlebars->35->2245"
+ "default.handlebars->47->1101",
+ "default.handlebars->47->2251",
+ "default3.handlebars->35->1098",
+ "default3.handlebars->35->2246"
]
},
{
@@ -98981,8 +98990,8 @@
"zh-cht": "{0}k在1檔案內。最多{1}k",
"uk": "{0}кБ у 1 файлу. {1}кБ максимум",
"xloc": [
- "default.handlebars->47->2499",
- "default3.handlebars->35->2495"
+ "default.handlebars->47->2500",
+ "default3.handlebars->35->2496"
]
},
{
@@ -99011,8 +99020,8 @@
"zh-cht": "{1}k在{0}個檔案中。最多{2}k",
"uk": "{0}кБ у {1} файлах. {2}кБ максимум",
"xloc": [
- "default.handlebars->47->2498",
- "default3.handlebars->35->2494"
+ "default.handlebars->47->2499",
+ "default3.handlebars->35->2495"
]
},
{
diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars
index 45f389fd..7817260b 100644
--- a/views/default-mobile.handlebars
+++ b/views/default-mobile.handlebars
@@ -2031,6 +2031,8 @@
// Change the node
node.name = message.event.node.name;
node.rname = message.event.node.rname;
+ node.lusers = message.event.node.lusers;
+ node.users = message.event.node.users;
node.host = message.event.node.host;
node.desc = message.event.node.desc;
node.publicip = message.event.node.publicip;
@@ -6272,7 +6274,12 @@
}
// Active Users
- if (node.users && (node.users.length > 0)) { x += addDetailItem(((node.users.length > 1)?"Active Users":"Active User"), EscapeHtml(node.users.join(', '))); }
+ if (node.users && node.users.length > 0) {
+ var u = node.users.map(function(user) {
+ return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
+ }).join(', ');
+ x += addDetailItem((node.users.length > 1 ? "Active Users" : "Active User"), u);
+ }
if (x != '') { sections.push({ name: "Operating System", html: x, img: 'software' }); }
@@ -7584,7 +7591,7 @@
function addLink(x, f) { return '♦ ' + x + ''; }
function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
function addKeyLink(x, f) { return '' + x + '
'; }
- function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
+ function addKeyLinkConditional(x, t, c) { if (c) return '' + x + '
'; return x }
function passwordcheck(p) { var re = /(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%^&*()]).{8,}/; return re.test(p); }
function getFileSizeStr(size) { if (typeof size != 'number') { size = 0; } if (size == 1) return "1 byte"; return format('{0} bytes', size); }
function joinPaths() { var x = []; for (var i in arguments) { var w = arguments[i]; if ((w != null) && (w != '')) { while (w.endsWith('/') || w.endsWith('\\')) { w = w.substring(0, w.length - 1); } while (w.startsWith('/') || w.startsWith('\\')) { w = w.substring(1); } x.push(w); } } return x.join('/'); }
diff --git a/views/default.handlebars b/views/default.handlebars
index 0132c4cb..342bae84 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -3531,6 +3531,7 @@
// Change the node
node.name = message.event.node.name;
node.rname = message.event.node.rname;
+ node.lusers = message.event.node.lusers;
node.users = message.event.node.users;
node.host = message.event.node.host;
node.desc = message.event.node.desc;
@@ -7650,7 +7651,12 @@
}
// Active Users
- if (node.users && (node.users.length > 0)) { x += addDeviceAttribute(((node.users.length > 1)?"Active Users":"Active User"), EscapeHtml(node.users.join(', '))); }
+ if (node.users && node.users.length > 0) {
+ var u = node.users.map(function(user) {
+ return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
+ }).join(', ');
+ x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
+ }
// Display device user consent
if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
@@ -19195,7 +19201,7 @@
function addLink(x, f) { return '' + x + '
'; }
function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
function addKeyLink(x, f) { return '' + x + '
'; }
- function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
+ function addKeyLinkConditional(x, t, c) { if (c) return '' + x + '
'; return x }
function haltEvent(e) { if (e.preventDefault) e.preventDefault(); if (e.stopPropagation) e.stopPropagation(); return false; }
function addOption(q, t, i) { var option = document.createElement('option'); option.text = t; option.value = i; Q(q).add(option); }
function passwordcheck(p) { return (p.length > 7) && (/\d/.test(p)) && (/[a-z]/.test(p)) && (/[A-Z]/.test(p)) && (/\W/.test(p)); }
diff --git a/views/default3.handlebars b/views/default3.handlebars
index 529b1cd8..2345b5aa 100644
--- a/views/default3.handlebars
+++ b/views/default3.handlebars
@@ -3993,6 +3993,7 @@
// Change the node
node.name = message.event.node.name;
node.rname = message.event.node.rname;
+ node.lusers = message.event.node.lusers;
node.users = message.event.node.users;
node.host = message.event.node.host;
node.desc = message.event.node.desc;
@@ -8319,8 +8320,12 @@
}
// Active Users
- if (node.users && node.conn && (node.users.length > 0) && (node.conn & 1)) { x += addDeviceAttribute(((node.users.length > 1) ? "Active Users" : "Active User"), EscapeHtml(node.users.join(', '))); }
-
+ if (node.users && node.users.length > 0) {
+ var u = node.users.map(function(user) {
+ return addKeyLinkConditional(EscapeHtml(user), "Locked", (node.lusers && node.lusers.indexOf(user) >= 0));
+ }).join(', ');
+ x += addDeviceAttribute((node.users.length > 1 ? "Active Users" : "Active User"), u);
+ }
// Display device user consent
if ((node.agent != null) && (node.agent.id != 14) && (node.mtype != 3)) {
var meshFeatures = [];
@@ -20507,7 +20512,7 @@
function addLink(x, f) { return '' + x + ' '; }
function addLinkConditional(x, f, c) { if (c) return addLink(x, f); return x; }
function addKeyLink(x, f) { return '' + x + ' '; }
- function addKeyLinkConditional(x, f, c) { if (c) return addKeyLink(x, f); return x; }
+ function addKeyLinkConditional(x, t, c) { if (c) return '' + x + ' '; return x }
function haltEvent(e) { if (e.preventDefault) e.preventDefault(); if (e.stopPropagation) e.stopPropagation(); return false; }
function addOption(q, t, i) { var option = document.createElement('option'); option.text = t; option.value = i; Q(q).add(option); }
function passwordcheck(p) { return (p.length > 7) && (/\d/.test(p)) && (/[a-z]/.test(p)) && (/[A-Z]/.test(p)) && (/\W/.test(p)); }