From f2178defc9cd575ab83bea861386835d67611938 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Thu, 13 Aug 2020 14:03:41 -0700 Subject: [PATCH] First working zip feature in device files tab. --- agents/meshcore.js | 29 +- translate/translate.json | 2210 +++++++++++++++++++------------------- views/default.handlebars | 17 + 3 files changed, 1157 insertions(+), 1099 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index 6d5fc964..524394a5 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -2140,17 +2140,34 @@ function createMeshCore(agent) { } case 'zip': // Zip a bunch of files - sendConsoleText('Zip: ' + JSON.stringify(cmd)); - var p = []; - for (var i in cmd.files) { p.push(cmd.path + '/' + cmd.files[i]); } - var ofile = cmd.path + '/' + cmd.outfile; - sendConsoleText('Writing ' + ofile + '...'); + var fp, stat, p = []; + for (var i in cmd.files) { + // Right now, we only zip files. + // TODO: Support folder compression + // TODO: Support compression relative to a root path + // TODO: Support the 'cancel' operation below + fp = cmd.path + '/' + cmd.files[i]; + stat = null; + try { stat = fs.statSync(fp); } catch (e) { } + if ((stat != null) && (stat.isDirectory() == false) && (stat.size != null) && (stat.size > 0)) { p.push(fp); } + } + if (p.length == 0) return; + var ofile = cmd.path + '/' + cmd.output; + this.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: 'zipping' }))); var out = require('fs').createWriteStream(ofile, { flags: 'wb' }); out.fname = ofile; - out.on('close', function () { sendConsoleText('DONE writing ' + this.fname); }); + out.xws = this; + out.on('close', function () { + this.xws.write(Buffer.from(JSON.stringify({ action: 'dialogmessage', msg: null }))); + this.xws.write(Buffer.from(JSON.stringify({ action: 'refresh' }))); + }); var zip = require('zip-writer').write({ files: p }); zip.pipe(out); break; + case 'cancel': + // TODO: Cancel zip operation if present + //sendConsoleText('Cancel operation'); + break; default: // Unknown action, ignore it. break; diff --git a/translate/translate.json b/translate/translate.json index 24821a41..ff5e7a06 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -15,8 +15,8 @@ "zh-chs": " + CIRA", "fi": " + CIRA", "xloc": [ - "default.handlebars->27->1297", - "default.handlebars->27->1299" + "default.handlebars->27->1300", + "default.handlebars->27->1302" ] }, { @@ -177,7 +177,7 @@ "zh-chs": " 可以使用密碼提示,但不建議使用。", "fi": " Salasanavihjeitä voidaan käyttää, mutta niitä ei suositella.", "xloc": [ - "default.handlebars->27->1223" + "default.handlebars->27->1226" ] }, { @@ -195,8 +195,8 @@ "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "fi": " Käyttäjien on kirjauduttava sisään tähän palvelimeen kerran, ennen kuin heidät voidaan lisätä laiteryhmään.", "xloc": [ - "default.handlebars->27->1372", - "default.handlebars->27->1711" + "default.handlebars->27->1375", + "default.handlebars->27->1714" ] }, { @@ -406,7 +406,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->27->1344" + "default.handlebars->27->1347" ] }, { @@ -440,7 +440,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->449", - "default.handlebars->27->1439" + "default.handlebars->27->1442" ] }, { @@ -477,7 +477,7 @@ "zh-chs": ",MQTT在線", "fi": ", MQTT on online-tilassa", "xloc": [ - "default.handlebars->27->966" + "default.handlebars->27->969" ] }, { @@ -662,9 +662,9 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->295", - "default.handlebars->27->1480", - "default.handlebars->27->1866", - "default.handlebars->27->850" + "default.handlebars->27->1483", + "default.handlebars->27->1869", + "default.handlebars->27->852" ] }, { @@ -714,7 +714,7 @@ "zh-chs": "1個活動會話", "fi": "1 aktiivinen istunto", "xloc": [ - "default.handlebars->27->1780" + "default.handlebars->27->1783" ] }, { @@ -734,7 +734,7 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->453", - "default.handlebars->27->1499" + "default.handlebars->27->1502" ] }, { @@ -782,7 +782,7 @@ "zh-chs": "1組", "fi": "1 ryhmä", "xloc": [ - "default.handlebars->27->1745" + "default.handlebars->27->1748" ] }, { @@ -865,7 +865,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1548" + "default.handlebars->27->1551" ] }, { @@ -925,7 +925,7 @@ "default-mobile.handlebars->9->168", "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->174", - "default.handlebars->27->1552", + "default.handlebars->27->1555", "default.handlebars->27->239", "default.handlebars->27->242", "default.handlebars->27->245", @@ -1236,8 +1236,8 @@ "zh-chs": "啟用第二因素身份驗證", "fi": "kaksivaiheinen todennus käytössä", "xloc": [ - "default.handlebars->27->1565", - "default.handlebars->27->1767" + "default.handlebars->27->1568", + "default.handlebars->27->1770" ] }, { @@ -2007,7 +2007,7 @@ "zh-chs": "拒絕訪問", "fi": "Pääsy Evätty", "xloc": [ - "default.handlebars->27->967" + "default.handlebars->27->970" ] }, { @@ -2044,7 +2044,7 @@ "zh-chs": "訪問服務器文件", "fi": "Pääsy palvelintiedostoihin", "xloc": [ - "default.handlebars->27->1717" + "default.handlebars->27->1720" ] }, { @@ -2123,8 +2123,8 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->27->1232", - "default.handlebars->27->1234", + "default.handlebars->27->1235", + "default.handlebars->27->1237", "default.handlebars->27->529", "default.handlebars->27->531" ] @@ -2175,8 +2175,8 @@ "zh-chs": "帐户已被锁定", "fi": "Tili on lukittu", "xloc": [ - "default.handlebars->27->1567", - "default.handlebars->27->1714" + "default.handlebars->27->1570", + "default.handlebars->27->1717" ] }, { @@ -2269,7 +2269,7 @@ "zh-chs": "行動", "fi": "Toiminta", "xloc": [ - "default.handlebars->27->972", + "default.handlebars->27->975", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2372,7 +2372,7 @@ "default-mobile.handlebars->9->358", "default.handlebars->27->553", "default.handlebars->27->555", - "default.handlebars->27->930" + "default.handlebars->27->933" ] }, { @@ -2390,8 +2390,8 @@ "zh-chs": "激活", "fi": "Aktivointi", "xloc": [ - "default.handlebars->27->1310", - "default.handlebars->27->1312", + "default.handlebars->27->1313", + "default.handlebars->27->1315", "default.handlebars->27->272", "default.handlebars->27->274" ] @@ -2429,7 +2429,7 @@ "zh-chs": "添加代理", "fi": "Lisää agentti", "xloc": [ - "default.handlebars->27->1314", + "default.handlebars->27->1317", "default.handlebars->27->276" ] }, @@ -2466,8 +2466,8 @@ "zh-chs": "添加設備", "fi": "Lisää Laite", "xloc": [ - "default.handlebars->27->1691", - "default.handlebars->27->1815" + "default.handlebars->27->1694", + "default.handlebars->27->1818" ] }, { @@ -2503,9 +2503,9 @@ "zh-chs": "添加設備組", "fi": "Lisää laiteryhmä", "xloc": [ - "default.handlebars->27->1405", - "default.handlebars->27->1685", - "default.handlebars->27->1803", + "default.handlebars->27->1408", + "default.handlebars->27->1688", + "default.handlebars->27->1806", "default.handlebars->27->227" ] }, @@ -2521,7 +2521,7 @@ "zh-chs": "添加设备组权限", "fi": "Lisää laiteryhmän käyttöoikeudet", "xloc": [ - "default.handlebars->27->1402" + "default.handlebars->27->1405" ] }, { @@ -2538,8 +2538,8 @@ "zh-chs": "添加设备权限", "fi": "Lisää laitteen käyttöoikeudet", "xloc": [ - "default.handlebars->27->1407", - "default.handlebars->27->1409" + "default.handlebars->27->1410", + "default.handlebars->27->1412" ] }, { @@ -2629,7 +2629,7 @@ "zh-chs": "添加會員", "fi": "Lisää jäsenyys", "xloc": [ - "default.handlebars->27->1833" + "default.handlebars->27->1836" ] }, { @@ -2665,8 +2665,8 @@ "zh-chs": "添加安全密鑰", "fi": "Lisää suojausavain", "xloc": [ - "default.handlebars->27->1000", - "default.handlebars->27->1001", + "default.handlebars->27->1003", + "default.handlebars->27->1004", "default.handlebars->27->149", "default.handlebars->27->151", "default.handlebars->27->154", @@ -2706,7 +2706,7 @@ "zh-chs": "添加用户设备权限", "fi": "Lisää käyttäjän laitteen käyttöoikeudet", "xloc": [ - "default.handlebars->27->1412" + "default.handlebars->27->1415" ] }, { @@ -2724,9 +2724,9 @@ "zh-chs": "添加用戶組", "fi": "Lisää Käyttäjä Ryhmä", "xloc": [ - "default.handlebars->27->1304", - "default.handlebars->27->1404", - "default.handlebars->27->1809", + "default.handlebars->27->1307", + "default.handlebars->27->1407", + "default.handlebars->27->1812", "default.handlebars->27->649" ] }, @@ -2742,7 +2742,7 @@ "zh-chs": "添加用户组设备权限", "fi": "Lisää käyttäjäryhmän laiteoikeudet", "xloc": [ - "default.handlebars->27->1414" + "default.handlebars->27->1417" ] }, { @@ -2790,8 +2790,8 @@ "zh-chs": "添加用戶", "fi": "Lisää Käyttäjiä", "xloc": [ - "default.handlebars->27->1303", - "default.handlebars->27->1680" + "default.handlebars->27->1306", + "default.handlebars->27->1683" ] }, { @@ -2809,7 +2809,7 @@ "zh-chs": "將用戶添加到設備組", "fi": "Lisää käyttäjiä laiteryhmään", "xloc": [ - "default.handlebars->27->1401" + "default.handlebars->27->1404" ] }, { @@ -2827,7 +2827,7 @@ "zh-chs": "將用戶添加到用戶組", "fi": "Lisää käyttäjät käyttäjäryhmään", "xloc": [ - "default.handlebars->27->1713" + "default.handlebars->27->1716" ] }, { @@ -2881,7 +2881,7 @@ "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "fi": "Lisää uusi Intel® AMT-tietokone, joka sijaitsee Internetissä.", "xloc": [ - "default.handlebars->27->1305", + "default.handlebars->27->1308", "default.handlebars->27->265" ] }, @@ -2900,7 +2900,7 @@ "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "fi": "Lisää uusi Intel® AMT-tietokone, joka sijaitsee lähiverkossa.", "xloc": [ - "default.handlebars->27->1307", + "default.handlebars->27->1310", "default.handlebars->27->267" ] }, @@ -2934,7 +2934,7 @@ "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "fi": "Lisää uusi tietokone tähän laiteryhmään asentamalla MeshAgent.", "xloc": [ - "default.handlebars->27->1313", + "default.handlebars->27->1316", "default.handlebars->27->275" ] }, @@ -2997,7 +2997,7 @@ "zh-chs": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->9->360", - "default.handlebars->27->932" + "default.handlebars->27->935" ] }, { @@ -3015,7 +3015,7 @@ "zh-chs": "管理員憑證", "xloc": [ "default-mobile.handlebars->9->366", - "default.handlebars->27->938" + "default.handlebars->27->941" ] }, { @@ -3050,7 +3050,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1749" + "default.handlebars->27->1752" ] }, { @@ -3085,7 +3085,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1630" + "default.handlebars->27->1633" ] }, { @@ -3103,7 +3103,7 @@ "zh-chs": "管理員", "fi": "Järjestelmänvalvoja", "xloc": [ - "default.handlebars->27->1559" + "default.handlebars->27->1562" ] }, { @@ -3120,7 +3120,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->27->1003" + "default.handlebars->27->1006" ] }, { @@ -3141,8 +3141,8 @@ "default-mobile.handlebars->9->199", "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->239", - "default.handlebars->27->1466", - "default.handlebars->27->1474", + "default.handlebars->27->1469", + "default.handlebars->27->1477", "default.handlebars->27->206", "default.handlebars->27->431", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -3163,8 +3163,8 @@ "zh-chs": "代理+英特爾AMT", "fi": "Agentti + Intel AMT", "xloc": [ - "default.handlebars->27->1468", - "default.handlebars->27->1476" + "default.handlebars->27->1471", + "default.handlebars->27->1479" ] }, { @@ -3201,7 +3201,7 @@ "fi": "Agentin konsoli", "xloc": [ "default-mobile.handlebars->9->433", - "default.handlebars->27->1422" + "default.handlebars->27->1425" ] }, { @@ -3219,7 +3219,7 @@ "zh-chs": "座席錯誤計數器", "fi": "Agentin virhe laskurit", "xloc": [ - "default.handlebars->27->1876" + "default.handlebars->27->1879" ] }, { @@ -3300,7 +3300,7 @@ "zh-chs": "座席會議", "fi": "Agentin istunnot", "xloc": [ - "default.handlebars->27->1892" + "default.handlebars->27->1895" ] }, { @@ -3336,7 +3336,7 @@ "zh-chs": "代理類型", "fi": "Agenttityypit", "xloc": [ - "default.handlebars->27->1472", + "default.handlebars->27->1475", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3393,7 +3393,7 @@ "zh-chs": "代理離線", "fi": "Agentti on offline-tilassa", "xloc": [ - "default.handlebars->27->965" + "default.handlebars->27->968" ] }, { @@ -3411,7 +3411,7 @@ "zh-chs": "代理在線", "fi": "Agentti on online-tilassa", "xloc": [ - "default.handlebars->27->964" + "default.handlebars->27->967" ] }, { @@ -3429,7 +3429,7 @@ "zh-chs": "代理商", "fi": "Agentit", "xloc": [ - "default.handlebars->27->1905" + "default.handlebars->27->1908" ] }, { @@ -3446,7 +3446,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->27->1004" + "default.handlebars->27->1007" ] }, { @@ -3474,7 +3474,7 @@ "nl": "Alle beschikbare", "es": "Todo disponible", "xloc": [ - "default.handlebars->27->1522" + "default.handlebars->27->1525" ] }, { @@ -3498,7 +3498,7 @@ "fi": "Kaikki tapahtumat", "es": "Todos los eventos", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1523" ] }, { @@ -3535,8 +3535,8 @@ "zh-chs": "允許用戶管理此設備組和該組中的設備。", "fi": "Salli käyttäjien hallita tätä laiteryhmää ja tämän ryhmän laitteita.", "xloc": [ - "default.handlebars->27->1370", - "default.handlebars->27->1710" + "default.handlebars->27->1373", + "default.handlebars->27->1713" ] }, { @@ -3553,7 +3553,7 @@ "zh-chs": "允许用户管理此设备。", "fi": "Salli käyttäjien hallita tätä laitetta.", "xloc": [ - "default.handlebars->27->1371" + "default.handlebars->27->1374" ] }, { @@ -3646,8 +3646,8 @@ "zh-chs": "始終通知", "fi": "Ilmoita aina", "xloc": [ - "default.handlebars->27->1284", - "default.handlebars->27->1758", + "default.handlebars->27->1287", + "default.handlebars->27->1761", "default.handlebars->27->589" ] }, @@ -3666,8 +3666,8 @@ "zh-chs": "總是提示", "fi": "Kysy Aina", "xloc": [ - "default.handlebars->27->1285", - "default.handlebars->27->1759", + "default.handlebars->27->1288", + "default.handlebars->27->1762", "default.handlebars->27->590" ] }, @@ -3871,7 +3871,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->27->1006" + "default.handlebars->27->1009" ] }, { @@ -3888,7 +3888,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->27->1007" + "default.handlebars->27->1010" ] }, { @@ -3905,7 +3905,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->27->1008" + "default.handlebars->27->1011" ] }, { @@ -3922,7 +3922,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->27->1009" + "default.handlebars->27->1012" ] }, { @@ -3939,7 +3939,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->27->1010" + "default.handlebars->27->1013" ] }, { @@ -3956,7 +3956,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->27->1011" + "default.handlebars->27->1014" ] }, { @@ -3973,7 +3973,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->27->1012" + "default.handlebars->27->1015" ] }, { @@ -3990,7 +3990,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->27->1013" + "default.handlebars->27->1016" ] }, { @@ -4007,7 +4007,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->27->1014" + "default.handlebars->27->1017" ] }, { @@ -4024,7 +4024,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->27->1015" + "default.handlebars->27->1018" ] }, { @@ -4041,7 +4041,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->27->1016" + "default.handlebars->27->1019" ] }, { @@ -4058,7 +4058,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->27->1017" + "default.handlebars->27->1020" ] }, { @@ -4075,7 +4075,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->27->1005" + "default.handlebars->27->1008" ] }, { @@ -4092,7 +4092,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->27->1018" + "default.handlebars->27->1021" ] }, { @@ -4109,7 +4109,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->27->1019" + "default.handlebars->27->1022" ] }, { @@ -4126,7 +4126,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->27->1020" + "default.handlebars->27->1023" ] }, { @@ -4143,7 +4143,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->27->1021" + "default.handlebars->27->1024" ] }, { @@ -4160,7 +4160,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->27->1022" + "default.handlebars->27->1025" ] }, { @@ -4179,7 +4179,7 @@ "fi": "Arkkitehtuuri", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->27->892" + "default.handlebars->27->895" ] }, { @@ -4216,7 +4216,7 @@ "fi": "Haluatko varmasti poistaa ryhmän {0}? Laiteryhmän poistaminen poistaa myös kaikki tämän ryhmän laitteiden tiedot.", "xloc": [ "default-mobile.handlebars->9->404", - "default.handlebars->27->1348" + "default.handlebars->27->1351" ] }, { @@ -4288,7 +4288,7 @@ "zh-chs": "您確定要{0}插件嗎:{1}", "fi": "Haluatko varmasti {0} laajennuksen: {1}", "xloc": [ - "default.handlebars->27->1945" + "default.handlebars->27->1948" ] }, { @@ -4305,7 +4305,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->27->1023" + "default.handlebars->27->1026" ] }, { @@ -4352,7 +4352,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->27->1024" + "default.handlebars->27->1027" ] }, { @@ -4369,7 +4369,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->27->1025" + "default.handlebars->27->1028" ] }, { @@ -4387,7 +4387,7 @@ "zh-chs": "身份驗證應用", "fi": "Todennussovellus", "xloc": [ - "default.handlebars->27->1762" + "default.handlebars->27->1765" ] }, { @@ -4411,8 +4411,8 @@ "default-mobile.handlebars->9->73", "default.handlebars->27->125", "default.handlebars->27->130", - "default.handlebars->27->989", - "default.handlebars->27->991" + "default.handlebars->27->992", + "default.handlebars->27->994" ] }, { @@ -4482,7 +4482,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->27->1272" + "default.handlebars->27->1275" ] }, { @@ -4538,7 +4538,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->27->1026" + "default.handlebars->27->1029" ] }, { @@ -4556,7 +4556,7 @@ "zh-chs": "的BIOS", "xloc": [ "default-mobile.handlebars->9->372", - "default.handlebars->27->944" + "default.handlebars->27->947" ] }, { @@ -4657,8 +4657,8 @@ "zh-chs": "背景與互動", "fi": "Tausta ja vuorovaikutteinen", "xloc": [ - "default.handlebars->27->1449", - "default.handlebars->27->1456", + "default.handlebars->27->1452", + "default.handlebars->27->1459", "default.handlebars->27->346", "default.handlebars->27->360" ] @@ -4678,8 +4678,8 @@ "zh-chs": "僅背景", "fi": "Vain tausta", "xloc": [ - "default.handlebars->27->1450", - "default.handlebars->27->1457", + "default.handlebars->27->1453", + "default.handlebars->27->1460", "default.handlebars->27->347", "default.handlebars->27->361", "default.handlebars->27->375" @@ -4718,7 +4718,7 @@ "zh-chs": "備用碼", "fi": "Varmuuskoodit", "xloc": [ - "default.handlebars->27->1764" + "default.handlebars->27->1767" ] }, { @@ -4736,7 +4736,7 @@ "zh-chs": "錯誤的簽名", "fi": "Huono allekirjoitus", "xloc": [ - "default.handlebars->27->1883" + "default.handlebars->27->1886" ] }, { @@ -4754,7 +4754,7 @@ "zh-chs": "錯誤的網絡證書", "fi": "Huono Web-varmenne", "xloc": [ - "default.handlebars->27->1882" + "default.handlebars->27->1885" ] }, { @@ -4772,7 +4772,7 @@ "zh-chs": "巴斯克", "fi": "Baski", "xloc": [ - "default.handlebars->27->1027" + "default.handlebars->27->1030" ] }, { @@ -4806,7 +4806,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->27->1029" + "default.handlebars->27->1032" ] }, { @@ -4823,7 +4823,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->27->1030" + "default.handlebars->27->1033" ] }, { @@ -4859,7 +4859,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->27->1031" + "default.handlebars->27->1034" ] }, { @@ -4876,7 +4876,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->27->1032" + "default.handlebars->27->1035" ] }, { @@ -4893,7 +4893,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1678", + "default.handlebars->27->1681", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4912,7 +4912,7 @@ "zh-chs": "廣播消息", "fi": "Lähetä viesti", "xloc": [ - "default.handlebars->27->1612" + "default.handlebars->27->1615" ] }, { @@ -4930,7 +4930,7 @@ "zh-chs": "向所有連接的用戶廣播消息。", "fi": "Lähetä viesti kaikille yhteydessä oleville käyttäjille.", "xloc": [ - "default.handlebars->27->1607" + "default.handlebars->27->1610" ] }, { @@ -4947,7 +4947,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->27->1028" + "default.handlebars->27->1031" ] }, { @@ -4964,7 +4964,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->27->1033" + "default.handlebars->27->1036" ] }, { @@ -5000,8 +5000,8 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->200", - "default.handlebars->27->1336", - "default.handlebars->27->1341", + "default.handlebars->27->1339", + "default.handlebars->27->1344", "default.handlebars->27->208", "default.handlebars->27->433" ] @@ -5021,7 +5021,7 @@ "zh-chs": "CIRA服務器", "fi": "CIRA Palvelin", "xloc": [ - "default.handlebars->27->1933" + "default.handlebars->27->1936" ] }, { @@ -5038,7 +5038,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1934" + "default.handlebars->27->1937" ] }, { @@ -5055,7 +5055,7 @@ "zh-chs": "CPU", "xloc": [ "default-mobile.handlebars->9->378", - "default.handlebars->27->950" + "default.handlebars->27->953" ] }, { @@ -5072,7 +5072,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1897" + "default.handlebars->27->1900" ] }, { @@ -5089,7 +5089,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1900" + "default.handlebars->27->1903" ] }, { @@ -5106,7 +5106,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1899" + "default.handlebars->27->1902" ] }, { @@ -5123,7 +5123,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1898" + "default.handlebars->27->1901" ] }, { @@ -5158,7 +5158,7 @@ "ru": "CSV", "zh-chs": "CSV", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1533" ] }, { @@ -5175,8 +5175,8 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->27->1534", - "default.handlebars->27->1599", + "default.handlebars->27->1537", + "default.handlebars->27->1602", "default.handlebars->27->474" ] }, @@ -5194,7 +5194,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1946" + "default.handlebars->27->1949" ] }, { @@ -5214,7 +5214,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1253", + "default.handlebars->27->1256", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -5236,8 +5236,8 @@ "xloc": [ "default-mobile.handlebars->9->386", "default-mobile.handlebars->9->388", - "default.handlebars->27->958", - "default.handlebars->27->960" + "default.handlebars->27->961", + "default.handlebars->27->963" ] }, { @@ -5256,7 +5256,7 @@ "fi": "Kapasiteetti / Nopeus", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->27->953" + "default.handlebars->27->956" ] }, { @@ -5273,7 +5273,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->27->1034" + "default.handlebars->27->1037" ] }, { @@ -5308,7 +5308,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->27->1035" + "default.handlebars->27->1038" ] }, { @@ -5341,7 +5341,7 @@ "zh-chs": "更改{0}的電子郵件", "fi": "Vaihda sähköpostiosoite käyttäjälle {0}", "xloc": [ - "default.handlebars->27->1792" + "default.handlebars->27->1795" ] }, { @@ -5380,8 +5380,8 @@ "fi": "Vaihda Salasana", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->27->1229", - "default.handlebars->27->1779" + "default.handlebars->27->1232", + "default.handlebars->27->1782" ] }, { @@ -5399,7 +5399,7 @@ "zh-chs": "更改{0}的密碼", "fi": "Vaihda Salasana käyttäjälle {0}", "xloc": [ - "default.handlebars->27->1799" + "default.handlebars->27->1802" ] }, { @@ -5408,7 +5408,7 @@ "fi": "Vaihda Nimi käyttäjälle {0}", "es": "Cambiar nombre real por {0}", "xloc": [ - "default.handlebars->27->1787" + "default.handlebars->27->1790" ] }, { @@ -5481,7 +5481,7 @@ "zh-chs": "更改該用戶的密碼", "fi": "Vaihda tämän käyttäjän salasana", "xloc": [ - "default.handlebars->27->1778" + "default.handlebars->27->1781" ] }, { @@ -5515,7 +5515,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1219" ] }, { @@ -5532,7 +5532,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->27->1222" + "default.handlebars->27->1225" ] }, { @@ -5549,7 +5549,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->27->1201" + "default.handlebars->27->1204" ] }, { @@ -5566,7 +5566,7 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->27->1551", + "default.handlebars->27->1554", "default.handlebars->27->669", "default.handlebars->27->688" ] @@ -5587,8 +5587,8 @@ "xloc": [ "default-mobile.handlebars->9->425", "default-mobile.handlebars->9->443", - "default.handlebars->27->1398", - "default.handlebars->27->1433" + "default.handlebars->27->1401", + "default.handlebars->27->1436" ] }, { @@ -5613,7 +5613,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->27->1036" + "default.handlebars->27->1039" ] }, { @@ -5696,8 +5696,8 @@ "zh-chs": "檢查...", "fi": "Tarkistetaan...", "xloc": [ - "default.handlebars->27->1002", - "default.handlebars->27->1940" + "default.handlebars->27->1005", + "default.handlebars->27->1943" ] }, { @@ -5714,7 +5714,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->27->1037" + "default.handlebars->27->1040" ] }, { @@ -5731,7 +5731,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->27->1038" + "default.handlebars->27->1041" ] }, { @@ -5748,7 +5748,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->27->1039" + "default.handlebars->27->1042" ] }, { @@ -5765,7 +5765,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->27->1199" + "default.handlebars->27->1202" ] }, { @@ -5782,7 +5782,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->27->1040" + "default.handlebars->27->1043" ] }, { @@ -5799,7 +5799,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->27->1041" + "default.handlebars->27->1044" ] }, { @@ -5834,7 +5834,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->27->1042" + "default.handlebars->27->1045" ] }, { @@ -5875,11 +5875,11 @@ "default-mobile.handlebars->9->318", "default-mobile.handlebars->9->320", "default-mobile.handlebars->9->59", - "default.handlebars->27->1514", - "default.handlebars->27->869", - "default.handlebars->27->871", - "default.handlebars->27->873", - "default.handlebars->27->875", + "default.handlebars->27->1517", + "default.handlebars->27->872", + "default.handlebars->27->874", + "default.handlebars->27->876", + "default.handlebars->27->878", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -5914,7 +5914,7 @@ "zh-chs": "全部清除", "fi": "Tyhjennä kaikki", "xloc": [ - "default.handlebars->27->1870" + "default.handlebars->27->1873" ] }, { @@ -5931,7 +5931,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->27->974" + "default.handlebars->27->977" ] }, { @@ -5965,7 +5965,7 @@ "zh-chs": "清除此通知", "fi": "Kuittaa tämä ilmoitus", "xloc": [ - "default.handlebars->27->1869" + "default.handlebars->27->1872" ] }, { @@ -6010,8 +6010,8 @@ "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->27->1264", - "default.handlebars->27->1470" + "default.handlebars->27->1267", + "default.handlebars->27->1473" ] }, { @@ -6041,7 +6041,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1670" ] }, { @@ -6091,7 +6091,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->27->1213" + "default.handlebars->27->1216" ] }, { @@ -6126,7 +6126,7 @@ "zh-chs": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->9->359", - "default.handlebars->27->931" + "default.handlebars->27->934" ] }, { @@ -6144,8 +6144,8 @@ "zh-chs": "客戶端啟動的遠程訪問", "fi": "Asiakkaan aloittama etäkäyttö", "xloc": [ - "default.handlebars->27->1335", - "default.handlebars->27->1340" + "default.handlebars->27->1338", + "default.handlebars->27->1343" ] }, { @@ -6230,8 +6230,8 @@ "zh-chs": "通用設備組", "fi": "Yleiset laiteryhmät", "xloc": [ - "default.handlebars->27->1686", - "default.handlebars->27->1804" + "default.handlebars->27->1689", + "default.handlebars->27->1807" ] }, { @@ -6249,8 +6249,14 @@ "zh-chs": "通用設備", "fi": "Yleiset laitteet", "xloc": [ - "default.handlebars->27->1692", - "default.handlebars->27->1816" + "default.handlebars->27->1695", + "default.handlebars->27->1819" + ] + }, + { + "en": "Compressing files...", + "xloc": [ + "default.handlebars->27->850" ] }, { @@ -6268,7 +6274,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->27->1509" + "default.handlebars->27->1512" ] }, { @@ -6288,11 +6294,11 @@ "xloc": [ "default-mobile.handlebars->9->276", "default-mobile.handlebars->9->405", - "default.handlebars->27->1349", - "default.handlebars->27->1579", - "default.handlebars->27->1657", - "default.handlebars->27->1706", - "default.handlebars->27->1802", + "default.handlebars->27->1352", + "default.handlebars->27->1582", + "default.handlebars->27->1660", + "default.handlebars->27->1709", + "default.handlebars->27->1805", "default.handlebars->27->458", "default.handlebars->27->743", "default.handlebars->27->752" @@ -6313,7 +6319,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->309", - "default.handlebars->27->864" + "default.handlebars->27->867" ] }, { @@ -6331,7 +6337,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->27->863" + "default.handlebars->27->866" ] }, { @@ -6345,7 +6351,7 @@ "nl": "Bevestig verwijdering geselecteerde account(s)?", "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->27->1578" + "default.handlebars->27->1581" ] }, { @@ -6376,7 +6382,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->27->1656" + "default.handlebars->27->1659" ] }, { @@ -6393,7 +6399,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1801" + "default.handlebars->27->1804" ] }, { @@ -6407,7 +6413,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->27->1709" + "default.handlebars->27->1712" ] }, { @@ -6421,7 +6427,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1834" ] }, { @@ -6439,7 +6445,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->27->866" + "default.handlebars->27->869" ] }, { @@ -6457,7 +6463,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->310", - "default.handlebars->27->865" + "default.handlebars->27->868" ] }, { @@ -6474,7 +6480,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1508" + "default.handlebars->27->1511" ] }, { @@ -6488,8 +6494,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->27->1699", - "default.handlebars->27->1822" + "default.handlebars->27->1702", + "default.handlebars->27->1825" ] }, { @@ -6503,8 +6509,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1701", - "default.handlebars->27->1835" + "default.handlebars->27->1704", + "default.handlebars->27->1838" ] }, { @@ -6518,7 +6524,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->27->1824" + "default.handlebars->27->1827" ] }, { @@ -6532,7 +6538,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1827" + "default.handlebars->27->1830" ] }, { @@ -6546,8 +6552,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->27->1825", - "default.handlebars->27->1828" + "default.handlebars->27->1828", + "default.handlebars->27->1831" ] }, { @@ -6565,7 +6571,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->27->992" + "default.handlebars->27->995" ] }, { @@ -6620,7 +6626,7 @@ "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1442" + "default.handlebars->27->1445" ] }, { @@ -6634,7 +6640,7 @@ "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1447" ] }, { @@ -6682,7 +6688,7 @@ "default-mobile.handlebars->9->291", "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.handlebars->27->1288", + "default.handlebars->27->1291", "default.handlebars->27->846", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -6724,8 +6730,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->27->1339", - "default.handlebars->27->1343" + "default.handlebars->27->1342", + "default.handlebars->27->1346" ] }, { @@ -6798,7 +6804,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1888" + "default.handlebars->27->1891" ] }, { @@ -6815,7 +6821,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1893" + "default.handlebars->27->1896" ] }, { @@ -6833,7 +6839,7 @@ "zh-chs": "現在已連接", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->27->896" + "default.handlebars->27->899" ] }, { @@ -6873,7 +6879,7 @@ "default.handlebars->27->233", "default.handlebars->27->236", "default.handlebars->27->262", - "default.handlebars->27->887", + "default.handlebars->27->890", "default.handlebars->27->9", "desktop.handlebars->3->2", "xterm.handlebars->9->2" @@ -6893,7 +6899,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1904" + "default.handlebars->27->1907" ] }, { @@ -6910,7 +6916,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1932" + "default.handlebars->27->1935" ] }, { @@ -6962,7 +6968,7 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->244", - "default.handlebars->27->1477", + "default.handlebars->27->1480", "default.handlebars->27->224", "default.handlebars->27->603", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -7039,7 +7045,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1918" + "default.handlebars->27->1921" ] }, { @@ -7167,8 +7173,8 @@ "zh-chs": "複製鏈接到剪貼板", "fi": "Kopioi linkki leikepöydälle", "xloc": [ - "default.handlebars->27->1482", - "default.handlebars->27->1496", + "default.handlebars->27->1485", + "default.handlebars->27->1499", "default.handlebars->27->192", "default.handlebars->27->363" ] @@ -7364,7 +7370,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1917" + "default.handlebars->27->1920" ] }, { @@ -7381,7 +7387,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->27->1043" + "default.handlebars->27->1046" ] }, { @@ -7399,7 +7405,7 @@ "zh-chs": "創建帳號", "fi": "Luo käyttäjätunnus", "xloc": [ - "default.handlebars->27->1626", + "default.handlebars->27->1629", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" ] @@ -7435,7 +7441,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1664" + "default.handlebars->27->1667" ] }, { @@ -7459,7 +7465,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1239" ] }, { @@ -7493,7 +7499,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1593" ] }, { @@ -7535,7 +7541,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1738" + "default.handlebars->27->1741" ] }, { @@ -7570,7 +7576,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->27->1044" + "default.handlebars->27->1047" ] }, { @@ -7587,7 +7593,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->27->1045" + "default.handlebars->27->1048" ] }, { @@ -7731,7 +7737,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->27->1046" + "default.handlebars->27->1049" ] }, { @@ -7765,7 +7771,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->27->1047" + "default.handlebars->27->1050" ] }, { @@ -7800,7 +7806,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->27->1204" + "default.handlebars->27->1207" ] }, { @@ -7835,7 +7841,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1327" + "default.handlebars->27->1330" ] }, { @@ -7861,10 +7867,10 @@ "nl": "Standaard", "es": "Por defecto", "xloc": [ - "default.handlebars->27->1613", - "default.handlebars->27->1660", - "default.handlebars->27->1671", - "default.handlebars->27->1727" + "default.handlebars->27->1616", + "default.handlebars->27->1663", + "default.handlebars->27->1674", + "default.handlebars->27->1730" ] }, { @@ -7886,9 +7892,9 @@ "default-mobile.handlebars->9->301", "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->27->1503", + "default.handlebars->27->1506", "default.handlebars->27->507", - "default.handlebars->27->856", + "default.handlebars->27->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", @@ -7914,7 +7920,7 @@ "fi": "Poista Tili", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->27->1221" + "default.handlebars->27->1224" ] }, { @@ -7928,7 +7934,7 @@ "nl": "Verwijder accounts", "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1583" ] }, { @@ -7966,8 +7972,8 @@ "xloc": [ "default-mobile.handlebars->9->403", "default-mobile.handlebars->9->406", - "default.handlebars->27->1320", - "default.handlebars->27->1350" + "default.handlebars->27->1323", + "default.handlebars->27->1353" ] }, { @@ -8020,7 +8026,7 @@ "zh-chs": "刪除用戶", "fi": "Poista Käyttäjä", "xloc": [ - "default.handlebars->27->1777" + "default.handlebars->27->1780" ] }, { @@ -8038,8 +8044,8 @@ "zh-chs": "刪除用戶組", "fi": "Poista käyttäjäryhmä", "xloc": [ - "default.handlebars->27->1697", - "default.handlebars->27->1707" + "default.handlebars->27->1700", + "default.handlebars->27->1710" ] }, { @@ -8053,7 +8059,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->27->1658" + "default.handlebars->27->1661" ] }, { @@ -8070,7 +8076,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1800" + "default.handlebars->27->1803" ] }, { @@ -8089,7 +8095,7 @@ "fi": "Poista tili", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->27->1576", + "default.handlebars->27->1579", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -8122,7 +8128,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->27->1654" + "default.handlebars->27->1657" ] }, { @@ -8158,8 +8164,8 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->303", - "default.handlebars->27->1505", - "default.handlebars->27->858" + "default.handlebars->27->1508", + "default.handlebars->27->860" ] }, { @@ -8176,7 +8182,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1705" + "default.handlebars->27->1708" ] }, { @@ -8195,8 +8201,8 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->302", - "default.handlebars->27->1504", - "default.handlebars->27->857" + "default.handlebars->27->1507", + "default.handlebars->27->859" ] }, { @@ -8312,19 +8318,19 @@ "default-mobile.handlebars->9->340", "default-mobile.handlebars->9->395", "default-mobile.handlebars->9->408", - "default.handlebars->27->1241", - "default.handlebars->27->1269", - "default.handlebars->27->1352", - "default.handlebars->27->1663", - "default.handlebars->27->1673", - "default.handlebars->27->1674", - "default.handlebars->27->1703", + "default.handlebars->27->1244", + "default.handlebars->27->1272", + "default.handlebars->27->1355", + "default.handlebars->27->1666", + "default.handlebars->27->1676", + "default.handlebars->27->1677", + "default.handlebars->27->1706", "default.handlebars->27->548", "default.handlebars->27->549", "default.handlebars->27->77", "default.handlebars->27->786", - "default.handlebars->27->902", - "default.handlebars->27->912", + "default.handlebars->27->905", + "default.handlebars->27->915", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -8358,8 +8364,8 @@ "fi": "Työpöytä", "xloc": [ "default-mobile.handlebars->9->256", - "default.handlebars->27->1357", - "default.handlebars->27->1847", + "default.handlebars->27->1360", + "default.handlebars->27->1850", "default.handlebars->27->513", "default.handlebars->27->831", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", @@ -8400,8 +8406,8 @@ "zh-chs": "桌面通知", "fi": "Työpöytä ilmoitus", "xloc": [ - "default.handlebars->27->1279", - "default.handlebars->27->1753", + "default.handlebars->27->1282", + "default.handlebars->27->1756", "default.handlebars->27->584" ] }, @@ -8419,8 +8425,8 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->27->1278", - "default.handlebars->27->1752", + "default.handlebars->27->1281", + "default.handlebars->27->1755", "default.handlebars->27->583" ] }, @@ -8438,8 +8444,8 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->27->1276", - "default.handlebars->27->1750", + "default.handlebars->27->1279", + "default.handlebars->27->1753", "default.handlebars->27->581" ] }, @@ -8472,8 +8478,8 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->27->1277", - "default.handlebars->27->1751", + "default.handlebars->27->1280", + "default.handlebars->27->1754", "default.handlebars->27->582" ] }, @@ -8556,8 +8562,8 @@ "zh-chs": "設備", "fi": "Laite", "xloc": [ - "default.handlebars->27->1379", - "default.handlebars->27->1819", + "default.handlebars->27->1382", + "default.handlebars->27->1822", "default.handlebars->27->183", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] @@ -8596,14 +8602,14 @@ "zh-chs": "設備組", "fi": "Laiteryhmä", "xloc": [ - "default.handlebars->27->1374", "default.handlebars->27->1377", - "default.handlebars->27->1378", - "default.handlebars->27->1527", - "default.handlebars->27->1689", - "default.handlebars->27->1695", - "default.handlebars->27->1807", - "default.handlebars->27->1856" + "default.handlebars->27->1380", + "default.handlebars->27->1381", + "default.handlebars->27->1530", + "default.handlebars->27->1692", + "default.handlebars->27->1698", + "default.handlebars->27->1810", + "default.handlebars->27->1859" ] }, { @@ -8621,7 +8627,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->450", - "default.handlebars->27->1440" + "default.handlebars->27->1443" ] }, { @@ -8640,11 +8646,11 @@ "fi": "Laiteryhmät", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1543", - "default.handlebars->27->1648", - "default.handlebars->27->1676", - "default.handlebars->27->1747", - "default.handlebars->27->1891", + "default.handlebars->27->1546", + "default.handlebars->27->1651", + "default.handlebars->27->1679", + "default.handlebars->27->1750", + "default.handlebars->27->1894", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8707,7 +8713,7 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->27->1855", + "default.handlebars->27->1858", "default.handlebars->27->280", "default.handlebars->27->784", "player.handlebars->3->9" @@ -8761,8 +8767,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->27->1209", - "default.handlebars->27->1461" + "default.handlebars->27->1212", + "default.handlebars->27->1464" ] }, { @@ -8779,8 +8785,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->27->1210", - "default.handlebars->27->1462" + "default.handlebars->27->1213", + "default.handlebars->27->1465" ] }, { @@ -9112,8 +9118,8 @@ "zh-chs": "设备", "fi": "Laitteet", "xloc": [ - "default.handlebars->27->1649", - "default.handlebars->27->1677" + "default.handlebars->27->1652", + "default.handlebars->27->1680" ] }, { @@ -9149,7 +9155,7 @@ "xloc": [ "default-mobile.handlebars->9->292", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->27->1289", + "default.handlebars->27->1292", "default.handlebars->27->847", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -9253,7 +9259,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->27->1208" + "default.handlebars->27->1211" ] }, { @@ -9286,7 +9292,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->27->1481" + "default.handlebars->27->1484" ] }, { @@ -9303,7 +9309,7 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->27->1333" + "default.handlebars->27->1336" ] }, { @@ -9311,10 +9317,10 @@ "nl": "Domein", "es": "Dominio", "xloc": [ - "default.handlebars->27->1614", - "default.handlebars->27->1661", - "default.handlebars->27->1670", - "default.handlebars->27->1726", + "default.handlebars->27->1617", + "default.handlebars->27->1664", + "default.handlebars->27->1673", + "default.handlebars->27->1729", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -9329,8 +9335,8 @@ "nl": "Niet configureren", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->27->1337", - "default.handlebars->27->1342" + "default.handlebars->27->1340", + "default.handlebars->27->1345" ] }, { @@ -9343,7 +9349,7 @@ "nl": "Maak geen verbinding met de server", "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->27->1338" + "default.handlebars->27->1341" ] }, { @@ -9444,7 +9450,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->322", - "default.handlebars->27->876" + "default.handlebars->27->879" ] }, { @@ -9521,7 +9527,7 @@ "nl": "Rapport downloaden", "es": "Descargar reporte", "xloc": [ - "default.handlebars->27->1532", + "default.handlebars->27->1535", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -9676,7 +9682,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->27->1533" + "default.handlebars->27->1536" ] }, { @@ -9693,7 +9699,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1598" + "default.handlebars->27->1601" ] }, { @@ -9776,7 +9782,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->27->1887" + "default.handlebars->27->1890" ] }, { @@ -9810,7 +9816,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1665" + "default.handlebars->27->1668" ] }, { @@ -9841,8 +9847,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->27->1841", - "default.handlebars->27->1861", + "default.handlebars->27->1844", + "default.handlebars->27->1864", "player.handlebars->3->2" ] }, @@ -9860,7 +9866,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->27->1347" + "default.handlebars->27->1350" ] }, { @@ -9877,7 +9883,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->27->1049" + "default.handlebars->27->1052" ] }, { @@ -9894,7 +9900,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->27->1048" + "default.handlebars->27->1051" ] }, { @@ -10109,10 +10115,10 @@ "default-mobile.handlebars->9->409", "default-mobile.handlebars->9->411", "default-mobile.handlebars->9->429", - "default.handlebars->27->1353", - "default.handlebars->27->1383", - "default.handlebars->27->1406", - "default.handlebars->27->1418" + "default.handlebars->27->1356", + "default.handlebars->27->1386", + "default.handlebars->27->1409", + "default.handlebars->27->1421" ] }, { @@ -10129,7 +10135,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->27->1369" + "default.handlebars->27->1372" ] }, { @@ -10146,8 +10152,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->27->1403", - "default.handlebars->27->1415" + "default.handlebars->27->1406", + "default.handlebars->27->1418" ] }, { @@ -10164,7 +10170,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->27->1354" + "default.handlebars->27->1357" ] }, { @@ -10182,7 +10188,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->423", - "default.handlebars->27->1396" + "default.handlebars->27->1399" ] }, { @@ -10198,8 +10204,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->27->1408", - "default.handlebars->27->1410" + "default.handlebars->27->1411", + "default.handlebars->27->1413" ] }, { @@ -10221,7 +10227,7 @@ "nl": "Gebruikerstoestemming apparaat bewerken", "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->27->1356" + "default.handlebars->27->1359" ] }, { @@ -10276,7 +10282,7 @@ "fi": "Muokkaa muistiinpanoja", "xloc": [ "default-mobile.handlebars->9->436", - "default.handlebars->27->1425" + "default.handlebars->27->1428" ] }, { @@ -10290,7 +10296,7 @@ "nl": "Gebruikerstoestemming bewerken", "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->27->1355" + "default.handlebars->27->1358" ] }, { @@ -10307,7 +10313,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1419" ] }, { @@ -10323,7 +10329,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1414" ] }, { @@ -10340,7 +10346,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1704" + "default.handlebars->27->1707" ] }, { @@ -10354,7 +10360,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1416" ] }, { @@ -10399,11 +10405,11 @@ "fi": "Sähköposti", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1616", - "default.handlebars->27->1730", - "default.handlebars->27->1732", - "default.handlebars->27->1772", - "default.handlebars->27->1788", + "default.handlebars->27->1619", + "default.handlebars->27->1733", + "default.handlebars->27->1735", + "default.handlebars->27->1775", + "default.handlebars->27->1791", "default.handlebars->27->330", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -10426,7 +10432,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->27->1217" + "default.handlebars->27->1220" ] }, { @@ -10444,7 +10450,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->27->986" + "default.handlebars->27->989" ] }, { @@ -10489,7 +10495,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1215" + "default.handlebars->27->1218" ] }, { @@ -10519,7 +10525,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->27->1562" + "default.handlebars->27->1565" ] }, { @@ -10536,8 +10542,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->27->1563", - "default.handlebars->27->1724" + "default.handlebars->27->1566", + "default.handlebars->27->1727" ] }, { @@ -10554,7 +10560,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1622" + "default.handlebars->27->1625" ] }, { @@ -10571,7 +10577,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1725" + "default.handlebars->27->1728" ] }, { @@ -10611,7 +10617,7 @@ "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.", "es": "Se requiere restablecimiento de contraseña verificado y forzado por correo electrónico.", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1626" ] }, { @@ -10624,7 +10630,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->27->1926" + "default.handlebars->27->1929" ] }, { @@ -10664,7 +10670,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1449" ] }, { @@ -10699,7 +10705,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->27->988" + "default.handlebars->27->991" ] }, { @@ -10724,7 +10730,7 @@ "nl": "Ingeschakeld", "es": "Habilitado", "xloc": [ - "default.handlebars->27->1863" + "default.handlebars->27->1866" ] }, { @@ -10750,7 +10756,7 @@ "fi": "päättymisaika", "es": "Tiempo de finalización", "xloc": [ - "default.handlebars->27->1860" + "default.handlebars->27->1863" ] }, { @@ -10768,7 +10774,7 @@ "zh-chs": "英語", "fi": "Englanti", "xloc": [ - "default.handlebars->27->1050" + "default.handlebars->27->1053" ] }, { @@ -10786,7 +10792,7 @@ "zh-chs": "英文(澳洲)", "fi": "Englanti (Australia)", "xloc": [ - "default.handlebars->27->1051" + "default.handlebars->27->1054" ] }, { @@ -10803,7 +10809,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->27->1052" + "default.handlebars->27->1055" ] }, { @@ -10820,7 +10826,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->27->1053" + "default.handlebars->27->1056" ] }, { @@ -10837,7 +10843,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->27->1054" + "default.handlebars->27->1057" ] }, { @@ -10854,7 +10860,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->27->1055" + "default.handlebars->27->1058" ] }, { @@ -10871,7 +10877,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->27->1056" + "default.handlebars->27->1059" ] }, { @@ -10888,7 +10894,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->27->1057" + "default.handlebars->27->1060" ] }, { @@ -10905,7 +10911,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->27->1058" + "default.handlebars->27->1061" ] }, { @@ -10922,7 +10928,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->27->1059" + "default.handlebars->27->1062" ] }, { @@ -10939,7 +10945,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->27->1060" + "default.handlebars->27->1063" ] }, { @@ -10956,7 +10962,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->27->1061" + "default.handlebars->27->1064" ] }, { @@ -10973,7 +10979,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->27->1062" + "default.handlebars->27->1065" ] }, { @@ -10990,8 +10996,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->27->1243", - "default.handlebars->27->1244" + "default.handlebars->27->1246", + "default.handlebars->27->1247" ] }, { @@ -11008,7 +11014,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1627" + "default.handlebars->27->1630" ] }, { @@ -11091,7 +11097,7 @@ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->27->983" + "default.handlebars->27->986" ] }, { @@ -11142,7 +11148,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->27->1063" + "default.handlebars->27->1066" ] }, { @@ -11159,7 +11165,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->27->1064" + "default.handlebars->27->1067" ] }, { @@ -11177,7 +11183,7 @@ "zh-chs": "活動詳情", "fi": "Tapahtuman lisätiedot", "xloc": [ - "default.handlebars->27->889" + "default.handlebars->27->892" ] }, { @@ -11194,7 +11200,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1541" ] }, { @@ -11332,7 +11338,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1911" + "default.handlebars->27->1914" ] }, { @@ -11357,7 +11363,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->27->1114" + "default.handlebars->27->1117" ] }, { @@ -11374,7 +11380,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->27->1065" + "default.handlebars->27->1068" ] }, { @@ -11422,7 +11428,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->27->1066" + "default.handlebars->27->1069" ] }, { @@ -11458,7 +11464,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->27->1275" + "default.handlebars->27->1278" ] }, { @@ -11475,7 +11481,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->27->1067" + "default.handlebars->27->1070" ] }, { @@ -11494,7 +11500,13 @@ "xloc": [ "default-mobile.handlebars->9->306", "default.handlebars->27->505", - "default.handlebars->27->861" + "default.handlebars->27->863" + ] + }, + { + "en": "File Operation", + "xloc": [ + "default.handlebars->27->849" ] }, { @@ -11547,8 +11559,8 @@ "xloc": [ "default-mobile.handlebars->9->167", "default-mobile.handlebars->9->257", - "default.handlebars->27->1364", - "default.handlebars->27->1848", + "default.handlebars->27->1367", + "default.handlebars->27->1851", "default.handlebars->27->247", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -11585,8 +11597,8 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->27->1283", - "default.handlebars->27->1757", + "default.handlebars->27->1286", + "default.handlebars->27->1760", "default.handlebars->27->588" ] }, @@ -11604,8 +11616,8 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->27->1282", - "default.handlebars->27->1756", + "default.handlebars->27->1285", + "default.handlebars->27->1759", "default.handlebars->27->587" ] }, @@ -11644,7 +11656,7 @@ "zh-chs": "芬蘭", "fi": "Suomalainen", "xloc": [ - "default.handlebars->27->1068" + "default.handlebars->27->1071" ] }, { @@ -11768,8 +11780,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1621", - "default.handlebars->27->1797" + "default.handlebars->27->1624", + "default.handlebars->27->1800" ] }, { @@ -11829,7 +11841,7 @@ "nl": "Formaat", "es": "Formato", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1532" ] }, { @@ -11864,8 +11876,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1872", - "default.handlebars->27->1874" + "default.handlebars->27->1875", + "default.handlebars->27->1877" ] }, { @@ -11900,7 +11912,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->27->1070" + "default.handlebars->27->1073" ] }, { @@ -11917,7 +11929,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->27->1071" + "default.handlebars->27->1074" ] }, { @@ -11934,7 +11946,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->27->1072" + "default.handlebars->27->1075" ] }, { @@ -11951,7 +11963,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->27->1073" + "default.handlebars->27->1076" ] }, { @@ -11968,7 +11980,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->27->1074" + "default.handlebars->27->1077" ] }, { @@ -11985,7 +11997,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->27->1069" + "default.handlebars->27->1072" ] }, { @@ -12002,7 +12014,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->27->1075" + "default.handlebars->27->1078" ] }, { @@ -12019,7 +12031,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->27->1076" + "default.handlebars->27->1079" ] }, { @@ -12036,7 +12048,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->27->1077" + "default.handlebars->27->1080" ] }, { @@ -12058,9 +12070,9 @@ "default-mobile.handlebars->9->401", "default-mobile.handlebars->9->410", "default-mobile.handlebars->9->428", - "default.handlebars->27->1250", - "default.handlebars->27->1382", - "default.handlebars->27->1633" + "default.handlebars->27->1253", + "default.handlebars->27->1385", + "default.handlebars->27->1636" ] }, { @@ -12078,7 +12090,7 @@ "zh-chs": "正式管理員(保留所有權利)", "fi": "Täysi Järjestelmänvalvoja (kaikki oikeudet)", "xloc": [ - "default.handlebars->27->1417" + "default.handlebars->27->1420" ] }, { @@ -12163,7 +12175,7 @@ "zh-chs": "正式管理員", "fi": "Täysi järjestelmänvalvoja", "xloc": [ - "default.handlebars->27->1718" + "default.handlebars->27->1721" ] }, { @@ -12177,7 +12189,7 @@ "zh-chs": "显卡", "xloc": [ "default-mobile.handlebars->9->379", - "default.handlebars->27->951" + "default.handlebars->27->954" ] }, { @@ -12194,7 +12206,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->27->1079" + "default.handlebars->27->1082" ] }, { @@ -12211,7 +12223,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->27->1078" + "default.handlebars->27->1081" ] }, { @@ -12228,7 +12240,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->27->1080" + "default.handlebars->27->1083" ] }, { @@ -12338,7 +12350,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->27->1081" + "default.handlebars->27->1084" ] }, { @@ -12355,7 +12367,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->27->1083" + "default.handlebars->27->1086" ] }, { @@ -12372,7 +12384,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->27->1084" + "default.handlebars->27->1087" ] }, { @@ -12389,7 +12401,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->27->1085" + "default.handlebars->27->1088" ] }, { @@ -12406,7 +12418,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->27->1086" + "default.handlebars->27->1089" ] }, { @@ -12423,7 +12435,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->27->1082" + "default.handlebars->27->1085" ] }, { @@ -12440,7 +12452,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->27->1087" + "default.handlebars->27->1090" ] }, { @@ -12524,7 +12536,7 @@ "zh-chs": "好", "fi": "Hyvä", "xloc": [ - "default.handlebars->27->1246" + "default.handlebars->27->1249" ] }, { @@ -12562,7 +12574,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->27->1088" + "default.handlebars->27->1091" ] }, { @@ -12599,8 +12611,8 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->27->1577", - "default.handlebars->27->1655", + "default.handlebars->27->1580", + "default.handlebars->27->1658", "default.handlebars->27->456", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -12612,7 +12624,7 @@ "nl": "Groeperen op", "es": "Agrupar Por", "xloc": [ - "default.handlebars->27->1525" + "default.handlebars->27->1528" ] }, { @@ -12620,7 +12632,7 @@ "nl": "Groepsidentificatie", "es": "Identificador del Grupo", "xloc": [ - "default.handlebars->27->1672" + "default.handlebars->27->1675" ] }, { @@ -12637,7 +12649,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1681" + "default.handlebars->27->1684" ] }, { @@ -12654,7 +12666,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->27->1381" + "default.handlebars->27->1384" ] }, { @@ -12671,7 +12683,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->27->1380" + "default.handlebars->27->1383" ] }, { @@ -12730,7 +12742,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->27->1089" + "default.handlebars->27->1092" ] }, { @@ -12767,7 +12779,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->27->1090" + "default.handlebars->27->1093" ] }, { @@ -12801,7 +12813,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->27->978" + "default.handlebars->27->981" ] }, { @@ -12818,7 +12830,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1913" + "default.handlebars->27->1916" ] }, { @@ -12835,7 +12847,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1912" + "default.handlebars->27->1915" ] }, { @@ -12852,7 +12864,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->27->1091" + "default.handlebars->27->1094" ] }, { @@ -12888,7 +12900,7 @@ "zh-chs": "幫助翻譯MeshCentral", "fi": "Auto kääntämään MeshCentral", "xloc": [ - "default.handlebars->27->1205" + "default.handlebars->27->1208" ] }, { @@ -12976,7 +12988,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->27->1092" + "default.handlebars->27->1095" ] }, { @@ -13009,7 +13021,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->315", - "default.handlebars->27->870" + "default.handlebars->27->873" ] }, { @@ -13027,7 +13039,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->319", - "default.handlebars->27->874" + "default.handlebars->27->877" ] }, { @@ -13045,7 +13057,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->313", - "default.handlebars->27->868" + "default.handlebars->27->871" ] }, { @@ -13063,7 +13075,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->317", - "default.handlebars->27->872" + "default.handlebars->27->875" ] }, { @@ -13081,7 +13093,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->27->1511" + "default.handlebars->27->1514" ] }, { @@ -13123,7 +13135,7 @@ "zh-chs": "主機名同步", "fi": "Isäntänimen synkronointi", "xloc": [ - "default.handlebars->27->1273" + "default.handlebars->27->1276" ] }, { @@ -13140,7 +13152,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->27->1093" + "default.handlebars->27->1096" ] }, { @@ -13197,9 +13209,9 @@ "xloc": [ "default-mobile.handlebars->9->348", "default-mobile.handlebars->9->352", - "default.handlebars->27->910", - "default.handlebars->27->920", - "default.handlebars->27->924" + "default.handlebars->27->913", + "default.handlebars->27->923", + "default.handlebars->27->927" ] }, { @@ -13218,9 +13230,9 @@ "xloc": [ "default-mobile.handlebars->9->346", "default-mobile.handlebars->9->350", - "default.handlebars->27->908", - "default.handlebars->27->918", - "default.handlebars->27->922" + "default.handlebars->27->911", + "default.handlebars->27->921", + "default.handlebars->27->925" ] }, { @@ -13239,10 +13251,10 @@ "xloc": [ "default-mobile.handlebars->9->345", "default-mobile.handlebars->9->347", - "default.handlebars->27->907", - "default.handlebars->27->909", - "default.handlebars->27->917", - "default.handlebars->27->919" + "default.handlebars->27->910", + "default.handlebars->27->912", + "default.handlebars->27->920", + "default.handlebars->27->922" ] }, { @@ -13308,8 +13320,8 @@ "xloc": [ "default-mobile.handlebars->9->349", "default-mobile.handlebars->9->351", - "default.handlebars->27->921", - "default.handlebars->27->923" + "default.handlebars->27->924", + "default.handlebars->27->926" ] }, { @@ -13350,7 +13362,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->27->1094" + "default.handlebars->27->1097" ] }, { @@ -13386,7 +13398,7 @@ "zh-chs": "識別碼", "xloc": [ "default-mobile.handlebars->9->377", - "default.handlebars->27->949" + "default.handlebars->27->952" ] }, { @@ -13499,7 +13511,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->27->1095" + "default.handlebars->27->1098" ] }, { @@ -13619,7 +13631,7 @@ "zh-chs": "安裝CIRA", "fi": "Asenna CIRA", "xloc": [ - "default.handlebars->27->1306" + "default.handlebars->27->1309" ] }, { @@ -13637,7 +13649,7 @@ "zh-chs": "安裝本地", "fi": "Asenna paikallinen", "xloc": [ - "default.handlebars->27->1308" + "default.handlebars->27->1311" ] }, { @@ -13655,8 +13667,8 @@ "zh-chs": "安裝類型", "fi": "Asennustyyppi", "xloc": [ - "default.handlebars->27->1448", - "default.handlebars->27->1455", + "default.handlebars->27->1451", + "default.handlebars->27->1458", "default.handlebars->27->345", "default.handlebars->27->359", "default.handlebars->27->373" @@ -13694,10 +13706,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->27->1467", - "default.handlebars->27->1475", - "default.handlebars->27->1909", - "default.handlebars->27->1931" + "default.handlebars->27->1470", + "default.handlebars->27->1478", + "default.handlebars->27->1912", + "default.handlebars->27->1934" ] }, { @@ -13739,7 +13751,7 @@ "nl": "Intel AMT omleiding", "es": "Redirección de Intel AMT", "xloc": [ - "default.handlebars->27->1850" + "default.handlebars->27->1853" ] }, { @@ -13747,7 +13759,7 @@ "nl": "Intel AMT WSMAN", "es": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->27->1849" + "default.handlebars->27->1852" ] }, { @@ -13886,8 +13898,8 @@ "default-mobile.handlebars->9->201", "default-mobile.handlebars->9->236", "default-mobile.handlebars->9->241", - "default.handlebars->27->1290", - "default.handlebars->27->1300", + "default.handlebars->27->1293", + "default.handlebars->27->1303", "default.handlebars->27->515", "default.handlebars->27->570", "default.handlebars->27->598" @@ -13977,7 +13989,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->27->1329" + "default.handlebars->27->1332" ] }, { @@ -14082,8 +14094,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1211", - "default.handlebars->27->1463" + "default.handlebars->27->1214", + "default.handlebars->27->1466" ] }, { @@ -14172,8 +14184,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->392", - "default.handlebars->27->1240", - "default.handlebars->27->1266" + "default.handlebars->27->1243", + "default.handlebars->27->1269" ] }, { @@ -14208,7 +14220,7 @@ "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ "default-mobile.handlebars->9->369", - "default.handlebars->27->941" + "default.handlebars->27->944" ] }, { @@ -14393,8 +14405,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->27->1451", - "default.handlebars->27->1458", + "default.handlebars->27->1454", + "default.handlebars->27->1461", "default.handlebars->27->348", "default.handlebars->27->362", "default.handlebars->27->376" @@ -14431,7 +14443,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->27->1096" + "default.handlebars->27->1099" ] }, { @@ -14448,7 +14460,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1886" + "default.handlebars->27->1889" ] }, { @@ -14465,7 +14477,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1880" + "default.handlebars->27->1883" ] }, { @@ -14482,8 +14494,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1595", - "default.handlebars->27->1597" + "default.handlebars->27->1598", + "default.handlebars->27->1600" ] }, { @@ -14500,7 +14512,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1593" + "default.handlebars->27->1596" ] }, { @@ -14517,7 +14529,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1878" + "default.handlebars->27->1881" ] }, { @@ -14534,7 +14546,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1879" + "default.handlebars->27->1882" ] }, { @@ -14613,7 +14625,7 @@ "nl": "E-mail ongeldig maken", "es": "Correo invalido", "xloc": [ - "default.handlebars->27->1571" + "default.handlebars->27->1574" ] }, { @@ -14678,7 +14690,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1453" + "default.handlebars->27->1456" ] }, { @@ -14712,7 +14724,7 @@ "zh-chs": "邀請", "fi": "Kutsu", "xloc": [ - "default.handlebars->27->1316", + "default.handlebars->27->1319", "default.handlebars->27->278", "default.handlebars->27->364" ] @@ -14731,11 +14743,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->27->1294", - "default.handlebars->27->1447", - "default.handlebars->27->1452", - "default.handlebars->27->1454", - "default.handlebars->27->1459" + "default.handlebars->27->1297", + "default.handlebars->27->1450", + "default.handlebars->27->1455", + "default.handlebars->27->1457", + "default.handlebars->27->1462" ] }, { @@ -14767,7 +14779,7 @@ "zh-chs": "邀请某人在该设备组上安装网状代理。", "fi": "Kutsu joku asentamaan Mesh agentti tähän laiteryhmään.", "xloc": [ - "default.handlebars->27->1315", + "default.handlebars->27->1318", "default.handlebars->27->277" ] }, @@ -14802,7 +14814,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->27->1097" + "default.handlebars->27->1100" ] }, { @@ -14819,7 +14831,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->27->1098" + "default.handlebars->27->1101" ] }, { @@ -14836,7 +14848,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->27->1099" + "default.handlebars->27->1102" ] }, { @@ -14853,7 +14865,7 @@ "ru": "JSON", "zh-chs": "JSON", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1534" ] }, { @@ -14870,8 +14882,8 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->27->1536", - "default.handlebars->27->1601", + "default.handlebars->27->1539", + "default.handlebars->27->1604", "default.handlebars->27->476" ] }, @@ -14889,7 +14901,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->27->1100" + "default.handlebars->27->1103" ] }, { @@ -14906,7 +14918,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->27->1101" + "default.handlebars->27->1104" ] }, { @@ -14923,7 +14935,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->27->1102" + "default.handlebars->27->1105" ] }, { @@ -14940,7 +14952,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->27->1103" + "default.handlebars->27->1106" ] }, { @@ -14974,7 +14986,7 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->27->994", + "default.handlebars->27->1000", "default.handlebars->27->997" ] }, @@ -15018,7 +15030,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->27->1104" + "default.handlebars->27->1107" ] }, { @@ -15035,7 +15047,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->27->1105" + "default.handlebars->27->1108" ] }, { @@ -15052,7 +15064,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->27->1106" + "default.handlebars->27->1109" ] }, { @@ -15070,7 +15082,7 @@ "zh-chs": "已知的", "xloc": [ "default-mobile.handlebars->9->368", - "default.handlebars->27->940" + "default.handlebars->27->943" ] }, { @@ -15087,7 +15099,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->27->1107" + "default.handlebars->27->1110" ] }, { @@ -15104,7 +15116,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->27->1108" + "default.handlebars->27->1111" ] }, { @@ -15121,7 +15133,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->27->1109" + "default.handlebars->27->1112" ] }, { @@ -15157,7 +15169,7 @@ "zh-chs": "語言", "fi": "Kieli", "xloc": [ - "default.handlebars->27->1203" + "default.handlebars->27->1206" ] }, { @@ -15383,7 +15395,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1547" ] }, { @@ -15400,7 +15412,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1739" + "default.handlebars->27->1742" ] }, { @@ -15423,9 +15435,9 @@ "default.handlebars->27->69", "default.handlebars->27->71", "default.handlebars->27->73", - "default.handlebars->27->898", - "default.handlebars->27->899", - "default.handlebars->27->900" + "default.handlebars->27->901", + "default.handlebars->27->902", + "default.handlebars->27->903" ] }, { @@ -15445,8 +15457,8 @@ "default-mobile.handlebars->9->333", "default-mobile.handlebars->9->335", "default.handlebars->27->68", - "default.handlebars->27->895", - "default.handlebars->27->897" + "default.handlebars->27->898", + "default.handlebars->27->900" ] }, { @@ -15463,7 +15475,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1743" + "default.handlebars->27->1746" ] }, { @@ -15514,7 +15526,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->27->1554" + "default.handlebars->27->1557" ] }, { @@ -15602,7 +15614,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->27->1110" + "default.handlebars->27->1113" ] }, { @@ -15619,7 +15631,7 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->27->1111" + "default.handlebars->27->1114" ] }, { @@ -15657,7 +15669,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->27->1783" + "default.handlebars->27->1786" ] }, { @@ -15697,7 +15709,7 @@ "zh-chs": "減", "fi": "Vähemmän", "xloc": [ - "default.handlebars->27->1948" + "default.handlebars->27->1951" ] }, { @@ -15750,7 +15762,7 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->441", - "default.handlebars->27->1431", + "default.handlebars->27->1434", "default.handlebars->27->661", "default.handlebars->27->680" ] @@ -15770,7 +15782,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->416", - "default.handlebars->27->1388" + "default.handlebars->27->1391" ] }, { @@ -16125,7 +16137,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->27->1112" + "default.handlebars->27->1115" ] }, { @@ -16144,11 +16156,11 @@ "fi": "Ladataan...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->27->1257", - "default.handlebars->27->1261", - "default.handlebars->27->1837", + "default.handlebars->27->1260", + "default.handlebars->27->1264", + "default.handlebars->27->1840", "default.handlebars->27->756", - "default.handlebars->27->990" + "default.handlebars->27->993" ] }, { @@ -16219,7 +16231,7 @@ "zh-chs": "本地化設置", "fi": "Lokalisointiasetukset", "xloc": [ - "default.handlebars->27->1206", + "default.handlebars->27->1209", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -16273,15 +16285,15 @@ "zh-chs": "鎖定賬戶", "fi": "Lukitse Tili", "xloc": [ - "default.handlebars->27->1640" + "default.handlebars->27->1643" ] }, { "en": "Lock Account Settings", "es": "Bloquear configuración de la cuenta", "xloc": [ - "default.handlebars->27->1400", - "default.handlebars->27->1643" + "default.handlebars->27->1403", + "default.handlebars->27->1646" ] }, { @@ -16299,7 +16311,7 @@ "zh-chs": "鎖定賬戶", "fi": "Lukitse tili", "xloc": [ - "default.handlebars->27->1574" + "default.handlebars->27->1577" ] }, { @@ -16317,7 +16329,7 @@ "zh-chs": "已鎖定", "fi": "Lukittu", "xloc": [ - "default.handlebars->27->1555" + "default.handlebars->27->1558" ] }, { @@ -16335,7 +16347,7 @@ "zh-chs": "賬戶鎖定", "fi": "Lukittu tili", "xloc": [ - "default.handlebars->27->1715" + "default.handlebars->27->1718" ] }, { @@ -16525,7 +16537,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->27->1113" + "default.handlebars->27->1116" ] }, { @@ -16544,10 +16556,10 @@ "xloc": [ "default-mobile.handlebars->9->341", "default-mobile.handlebars->9->343", - "default.handlebars->27->903", - "default.handlebars->27->905", - "default.handlebars->27->913", - "default.handlebars->27->915" + "default.handlebars->27->906", + "default.handlebars->27->908", + "default.handlebars->27->916", + "default.handlebars->27->918" ] }, { @@ -16583,8 +16595,8 @@ "zh-chs": "MAC:{0}", "xloc": [ "default-mobile.handlebars->9->344", - "default.handlebars->27->906", - "default.handlebars->27->916" + "default.handlebars->27->909", + "default.handlebars->27->919" ] }, { @@ -16602,8 +16614,8 @@ "zh-chs": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->9->342", - "default.handlebars->27->904", - "default.handlebars->27->914" + "default.handlebars->27->907", + "default.handlebars->27->917" ] }, { @@ -16661,8 +16673,8 @@ "default.handlebars->27->214", "default.handlebars->27->439", "default.handlebars->27->602", - "default.handlebars->27->968", - "default.handlebars->27->969", + "default.handlebars->27->971", + "default.handlebars->27->972", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -16837,7 +16849,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1920" + "default.handlebars->27->1923" ] }, { @@ -16854,7 +16866,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->27->1115" + "default.handlebars->27->1118" ] }, { @@ -16871,7 +16883,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->27->1116" + "default.handlebars->27->1119" ] }, { @@ -16888,7 +16900,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->27->1117" + "default.handlebars->27->1120" ] }, { @@ -16927,8 +16939,8 @@ "xloc": [ "default-mobile.handlebars->9->413", "default-mobile.handlebars->9->431", - "default.handlebars->27->1385", - "default.handlebars->27->1420" + "default.handlebars->27->1388", + "default.handlebars->27->1423" ] }, { @@ -16948,8 +16960,8 @@ "xloc": [ "default-mobile.handlebars->9->412", "default-mobile.handlebars->9->430", - "default.handlebars->27->1384", - "default.handlebars->27->1419" + "default.handlebars->27->1387", + "default.handlebars->27->1422" ] }, { @@ -16975,7 +16987,7 @@ "fi": "Hallinnoi nauhoituksia", "es": "Administrar Grabaciones", "xloc": [ - "default.handlebars->27->1639" + "default.handlebars->27->1642" ] }, { @@ -17011,7 +17023,7 @@ "zh-chs": "管理用戶組", "fi": "Hallitse käyttäjäryhmiä", "xloc": [ - "default.handlebars->27->1638" + "default.handlebars->27->1641" ] }, { @@ -17029,7 +17041,7 @@ "zh-chs": "管理用戶", "fi": "Hallitse käyttäjiä", "xloc": [ - "default.handlebars->27->1637", + "default.handlebars->27->1640", "default.handlebars->27->674" ] }, @@ -17140,7 +17152,7 @@ "zh-chs": "使用軟件代理進行管理", "fi": "Hallitse ohjelmistoagentilla", "xloc": [ - "default.handlebars->27->1239" + "default.handlebars->27->1242" ] }, { @@ -17158,7 +17170,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->393", - "default.handlebars->27->1267" + "default.handlebars->27->1270" ] }, { @@ -17175,7 +17187,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->27->1560" + "default.handlebars->27->1563" ] }, { @@ -17226,7 +17238,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->27->1118" + "default.handlebars->27->1121" ] }, { @@ -17261,7 +17273,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->27->1119" + "default.handlebars->27->1122" ] }, { @@ -17278,7 +17290,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1884" + "default.handlebars->27->1887" ] }, { @@ -17333,7 +17345,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1910" + "default.handlebars->27->1913" ] }, { @@ -17351,8 +17363,8 @@ "zh-chs": "記憶", "xloc": [ "default-mobile.handlebars->9->384", - "default.handlebars->27->1901", - "default.handlebars->27->956", + "default.handlebars->27->1904", + "default.handlebars->27->959", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -17381,8 +17393,8 @@ "default.handlebars->27->403", "default.handlebars->27->550", "default.handlebars->27->594", - "default.handlebars->27->894", - "default.handlebars->27->901" + "default.handlebars->27->897", + "default.handlebars->27->904" ] }, { @@ -17400,7 +17412,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->420", - "default.handlebars->27->1393" + "default.handlebars->27->1396" ] }, { @@ -17490,7 +17502,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1922" + "default.handlebars->27->1925" ] }, { @@ -17507,7 +17519,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1923" + "default.handlebars->27->1926" ] }, { @@ -17541,7 +17553,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->27->1260" + "default.handlebars->27->1263" ] }, { @@ -17612,7 +17624,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1921" + "default.handlebars->27->1924" ] }, { @@ -17648,7 +17660,7 @@ "xloc": [ "default.handlebars->27->115", "default.handlebars->27->117", - "default.handlebars->27->1256" + "default.handlebars->27->1259" ] }, { @@ -17876,7 +17888,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1919" + "default.handlebars->27->1922" ] }, { @@ -17974,7 +17986,7 @@ "zh-chs": "模型", "xloc": [ "default-mobile.handlebars->9->385", - "default.handlebars->27->957" + "default.handlebars->27->960" ] }, { @@ -18008,7 +18020,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->27->1120" + "default.handlebars->27->1123" ] }, { @@ -18026,7 +18038,7 @@ "zh-chs": "更多", "fi": "Lisää", "xloc": [ - "default.handlebars->27->1947" + "default.handlebars->27->1950" ] }, { @@ -18044,7 +18056,7 @@ "zh-chs": "母板", "xloc": [ "default-mobile.handlebars->9->380", - "default.handlebars->27->952" + "default.handlebars->27->955" ] }, { @@ -18103,7 +18115,7 @@ "nl": "Multiplexor", "es": "Multiplexor", "xloc": [ - "default.handlebars->27->1862" + "default.handlebars->27->1865" ] }, { @@ -18220,7 +18232,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->27->963" + "default.handlebars->27->966" ] }, { @@ -18349,7 +18361,7 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->27->995", + "default.handlebars->27->1001", "default.handlebars->27->998" ] }, @@ -18375,21 +18387,21 @@ "default-mobile.handlebars->9->407", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->27->1237", - "default.handlebars->27->1268", - "default.handlebars->27->1351", - "default.handlebars->27->1542", - "default.handlebars->27->1646", - "default.handlebars->27->1662", - "default.handlebars->27->1669", - "default.handlebars->27->1702", - "default.handlebars->27->1721", + "default.handlebars->27->1240", + "default.handlebars->27->1271", + "default.handlebars->27->1354", + "default.handlebars->27->1545", + "default.handlebars->27->1649", + "default.handlebars->27->1665", + "default.handlebars->27->1672", + "default.handlebars->27->1705", + "default.handlebars->27->1724", "default.handlebars->27->538", "default.handlebars->27->76", "default.handlebars->27->815", - "default.handlebars->27->890", + "default.handlebars->27->893", "default.handlebars->27->90", - "default.handlebars->27->946", + "default.handlebars->27->949", "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" @@ -18427,7 +18439,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1629" + "default.handlebars->27->1632" ] }, { @@ -18444,7 +18456,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->27->1121" + "default.handlebars->27->1124" ] }, { @@ -18461,7 +18473,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->27->1122" + "default.handlebars->27->1125" ] }, { @@ -18478,7 +18490,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->27->1123" + "default.handlebars->27->1126" ] }, { @@ -18528,8 +18540,8 @@ "zh-chs": "聯網", "xloc": [ "default-mobile.handlebars->9->353", - "default.handlebars->27->911", - "default.handlebars->27->925" + "default.handlebars->27->914", + "default.handlebars->27->928" ] }, { @@ -18585,8 +18597,8 @@ "fi": "Uusi laiteryhmä", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1230", - "default.handlebars->27->1242", + "default.handlebars->27->1233", + "default.handlebars->27->1245", "default.handlebars->27->747" ] }, @@ -18607,8 +18619,8 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->299", - "default.handlebars->27->1501", - "default.handlebars->27->854", + "default.handlebars->27->1504", + "default.handlebars->27->856", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -18665,8 +18677,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->27->1225", - "default.handlebars->27->1226" + "default.handlebars->27->1228", + "default.handlebars->27->1229" ] }, { @@ -18752,7 +18764,7 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->27->1427", + "default.handlebars->27->1430", "default.handlebars->27->662", "default.handlebars->27->681" ] @@ -18771,7 +18783,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->27->1389" + "default.handlebars->27->1392" ] }, { @@ -18788,9 +18800,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->27->1518", - "default.handlebars->27->1836", - "default.handlebars->27->888" + "default.handlebars->27->1521", + "default.handlebars->27->1839", + "default.handlebars->27->891" ] }, { @@ -18808,7 +18820,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->418", - "default.handlebars->27->1391" + "default.handlebars->27->1394" ] }, { @@ -18827,7 +18839,7 @@ "fi": "Ei tiedostoja", "xloc": [ "default-mobile.handlebars->9->439", - "default.handlebars->27->1429", + "default.handlebars->27->1432", "default.handlebars->27->659", "default.handlebars->27->678" ] @@ -18865,8 +18877,8 @@ "xloc": [ "default-mobile.handlebars->9->419", "default-mobile.handlebars->9->440", - "default.handlebars->27->1392", - "default.handlebars->27->1430" + "default.handlebars->27->1395", + "default.handlebars->27->1433" ] }, { @@ -18934,7 +18946,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1684" + "default.handlebars->27->1687" ] }, { @@ -18952,7 +18964,7 @@ "zh-chs": "沒有新的設備組", "fi": "Ei uusia laiteryhmiä.", "xloc": [ - "default.handlebars->27->1641" + "default.handlebars->27->1644" ] }, { @@ -18969,9 +18981,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->27->1295", - "default.handlebars->27->1323", - "default.handlebars->27->1326" + "default.handlebars->27->1298", + "default.handlebars->27->1326", + "default.handlebars->27->1329" ] }, { @@ -18991,8 +19003,8 @@ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->402", "default-mobile.handlebars->9->445", - "default.handlebars->27->1251", - "default.handlebars->27->1435", + "default.handlebars->27->1254", + "default.handlebars->27->1438", "default.handlebars->27->671", "default.handlebars->27->690" ] @@ -19031,7 +19043,7 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->438", - "default.handlebars->27->1428", + "default.handlebars->27->1431", "default.handlebars->27->658", "default.handlebars->27->677" ] @@ -19051,7 +19063,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->417", - "default.handlebars->27->1390" + "default.handlebars->27->1393" ] }, { @@ -19069,7 +19081,7 @@ "zh-chs": "沒有工具(MeshCmd /路由器)", "fi": "Estä työkalut (MeshCmd/Router)", "xloc": [ - "default.handlebars->27->1642" + "default.handlebars->27->1645" ] }, { @@ -19086,8 +19098,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1690", - "default.handlebars->27->1808" + "default.handlebars->27->1693", + "default.handlebars->27->1811" ] }, { @@ -19184,8 +19196,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1696", - "default.handlebars->27->1820" + "default.handlebars->27->1699", + "default.handlebars->27->1823" ] }, { @@ -19203,7 +19215,7 @@ "zh-chs": "該設備組中沒有設備。", "fi": "Ei laitteita tässä laiteryhmässä", "xloc": [ - "default.handlebars->27->1478" + "default.handlebars->27->1481" ] }, { @@ -19274,7 +19286,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1648" ] }, { @@ -19292,7 +19304,7 @@ "zh-chs": "沒有此設備的信息。", "xloc": [ "default-mobile.handlebars->9->390", - "default.handlebars->27->962" + "default.handlebars->27->965" ] }, { @@ -19368,7 +19380,7 @@ "nl": "Geen opnames.", "es": "No hay Grabaciones.", "xloc": [ - "default.handlebars->27->1838" + "default.handlebars->27->1841" ] }, { @@ -19385,7 +19397,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1716" + "default.handlebars->27->1719" ] }, { @@ -19402,7 +19414,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1814" + "default.handlebars->27->1817" ] }, { @@ -19419,7 +19431,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1550" + "default.handlebars->27->1553" ] }, { @@ -19496,22 +19508,22 @@ "default-mobile.handlebars->9->245", "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->396", - "default.handlebars->27->1263", - "default.handlebars->27->1270", - "default.handlebars->27->1274", - "default.handlebars->27->1286", - "default.handlebars->27->1291", - "default.handlebars->27->1293", - "default.handlebars->27->1469", - "default.handlebars->27->1488", - "default.handlebars->27->1526", - "default.handlebars->27->1666", - "default.handlebars->27->1668", - "default.handlebars->27->1735", + "default.handlebars->27->1266", + "default.handlebars->27->1273", + "default.handlebars->27->1277", + "default.handlebars->27->1289", + "default.handlebars->27->1294", + "default.handlebars->27->1296", + "default.handlebars->27->1472", + "default.handlebars->27->1491", + "default.handlebars->27->1529", + "default.handlebars->27->1669", + "default.handlebars->27->1671", + "default.handlebars->27->1738", "default.handlebars->27->174", - "default.handlebars->27->1744", - "default.handlebars->27->1748", - "default.handlebars->27->1760", + "default.handlebars->27->1747", + "default.handlebars->27->1751", + "default.handlebars->27->1763", "default.handlebars->27->189", "default.handlebars->27->201", "default.handlebars->27->202", @@ -19555,7 +19567,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->27->1124" + "default.handlebars->27->1127" ] }, { @@ -19572,7 +19584,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->27->1125" + "default.handlebars->27->1128" ] }, { @@ -19589,7 +19601,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->27->1126" + "default.handlebars->27->1129" ] }, { @@ -19609,7 +19621,7 @@ "default-mobile.handlebars->9->225", "default-mobile.handlebars->9->357", "default.handlebars->27->552", - "default.handlebars->27->929" + "default.handlebars->27->932" ] }, { @@ -19629,7 +19641,7 @@ "default-mobile.handlebars->9->224", "default-mobile.handlebars->9->356", "default.handlebars->27->551", - "default.handlebars->27->928" + "default.handlebars->27->931" ] }, { @@ -19646,8 +19658,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->27->1465", - "default.handlebars->27->1473" + "default.handlebars->27->1468", + "default.handlebars->27->1476" ] }, { @@ -19665,7 +19677,7 @@ "zh-chs": "未知", "xloc": [ "default-mobile.handlebars->9->367", - "default.handlebars->27->939" + "default.handlebars->27->942" ] }, { @@ -19673,7 +19685,7 @@ "nl": "Niet op de server", "es": "No esta en el servidor", "xloc": [ - "default.handlebars->27->1854" + "default.handlebars->27->1857" ] }, { @@ -19690,8 +19702,8 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1722", - "default.handlebars->27->1723" + "default.handlebars->27->1725", + "default.handlebars->27->1726" ] }, { @@ -19708,7 +19720,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1790" + "default.handlebars->27->1793" ] }, { @@ -19726,8 +19738,8 @@ "zh-chs": "筆記", "fi": "Muistiinpanot", "xloc": [ - "default.handlebars->27->1301", - "default.handlebars->27->1768", + "default.handlebars->27->1304", + "default.handlebars->27->1771", "default.handlebars->27->607", "default.handlebars->27->667", "default.handlebars->27->686", @@ -19766,8 +19778,8 @@ "zh-chs": "通知設置", "fi": "Ilmoitusasetukset", "xloc": [ - "default.handlebars->27->1212", - "default.handlebars->27->1464", + "default.handlebars->27->1215", + "default.handlebars->27->1467", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -19786,7 +19798,7 @@ "zh-chs": "通知設置還必須在帳戶設置中啟用。", "fi": "Ilmoitusasetusten on oltava käytössä myös tiliasetuksissa.", "xloc": [ - "default.handlebars->27->1460" + "default.handlebars->27->1463" ] }, { @@ -19804,7 +19816,7 @@ "zh-chs": "通知聲音。", "fi": "Ilmoitusääni.", "xloc": [ - "default.handlebars->27->1207" + "default.handlebars->27->1210" ] }, { @@ -19821,7 +19833,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->27->1292" + "default.handlebars->27->1295" ] }, { @@ -19838,7 +19850,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1774", + "default.handlebars->27->1777", "default.handlebars->27->186" ] }, @@ -19863,9 +19875,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->27->1358", - "default.handlebars->27->1362", - "default.handlebars->27->1365" + "default.handlebars->27->1361", + "default.handlebars->27->1365", + "default.handlebars->27->1368" ] }, { @@ -19882,7 +19894,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1589" + "default.handlebars->27->1592" ] }, { @@ -19901,7 +19913,7 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->27->1254", + "default.handlebars->27->1257", "default.handlebars->27->578", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", @@ -19944,7 +19956,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->27->1127" + "default.handlebars->27->1130" ] }, { @@ -19961,7 +19973,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1868" + "default.handlebars->27->1871" ] }, { @@ -19979,7 +19991,7 @@ "zh-chs": "離線用戶", "fi": "Offline-tilassa olevat käyttäjät", "xloc": [ - "default.handlebars->27->1547" + "default.handlebars->27->1550" ] }, { @@ -19998,7 +20010,7 @@ "fi": "Vanha salasana:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->27->1224" + "default.handlebars->27->1227" ] }, { @@ -20006,7 +20018,7 @@ "nl": "één dag", "es": "Un día", "xloc": [ - "default.handlebars->27->1523" + "default.handlebars->27->1526" ] }, { @@ -20052,7 +20064,7 @@ "zh-chs": "在線用戶", "fi": "Online-tilassa olevat käyttäjät", "xloc": [ - "default.handlebars->27->1546" + "default.handlebars->27->1549" ] }, { @@ -20071,7 +20083,7 @@ "xloc": [ "default-mobile.handlebars->9->307", "default.handlebars->27->506", - "default.handlebars->27->862" + "default.handlebars->27->864" ] }, { @@ -20203,7 +20215,7 @@ "default.handlebars->27->365", "default.handlebars->27->575", "default.handlebars->27->770", - "default.handlebars->27->893" + "default.handlebars->27->896" ] }, { @@ -20221,8 +20233,8 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->27->1573", - "default.handlebars->27->1653", + "default.handlebars->27->1576", + "default.handlebars->27->1656", "default.handlebars->27->446", "default.handlebars->27->466", "default.handlebars->27->721" @@ -20259,7 +20271,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->27->1128" + "default.handlebars->27->1131" ] }, { @@ -20276,7 +20288,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->27->1129" + "default.handlebars->27->1132" ] }, { @@ -20382,7 +20394,7 @@ "zh-chs": "零件號", "xloc": [ "default-mobile.handlebars->9->383", - "default.handlebars->27->955" + "default.handlebars->27->958" ] }, { @@ -20399,7 +20411,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->27->1561" + "default.handlebars->27->1564" ] }, { @@ -20446,7 +20458,7 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->400", - "default.handlebars->27->1249" + "default.handlebars->27->1252" ] }, { @@ -20463,7 +20475,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1719" + "default.handlebars->27->1722" ] }, { @@ -20499,12 +20511,12 @@ "fi": "Salasana", "xloc": [ "default-mobile.handlebars->9->269", - "default.handlebars->27->1617", - "default.handlebars->27->1618", - "default.handlebars->27->1740", - "default.handlebars->27->1742", - "default.handlebars->27->1793", - "default.handlebars->27->1794", + "default.handlebars->27->1620", + "default.handlebars->27->1621", + "default.handlebars->27->1743", + "default.handlebars->27->1745", + "default.handlebars->27->1796", + "default.handlebars->27->1797", "default.handlebars->27->285", "default.handlebars->27->316", "default.handlebars->27->731", @@ -20619,7 +20631,7 @@ "zh-chs": "密碼提示", "fi": "Salasana vihje", "xloc": [ - "default.handlebars->27->1795" + "default.handlebars->27->1798" ] }, { @@ -20638,7 +20650,7 @@ "fi": "Salasana vihje", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->27->1227" + "default.handlebars->27->1230" ] }, { @@ -20656,7 +20668,7 @@ "zh-chs": "密碼不符合", "fi": "Salasanat eivät täsmää", "xloc": [ - "default.handlebars->27->1332" + "default.handlebars->27->1335" ] }, { @@ -20691,8 +20703,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->27->1330", - "default.handlebars->27->1331" + "default.handlebars->27->1333", + "default.handlebars->27->1334" ] }, { @@ -20712,8 +20724,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->27->1219", - "default.handlebars->27->1220", + "default.handlebars->27->1222", + "default.handlebars->27->1223", "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", @@ -20745,9 +20757,9 @@ "default-mobile.handlebars->9->312", "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->27->1510", + "default.handlebars->27->1513", "default.handlebars->27->845", - "default.handlebars->27->867", + "default.handlebars->27->870", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -20802,7 +20814,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->27->971" + "default.handlebars->27->974" ] }, { @@ -20836,7 +20848,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->27->1311", + "default.handlebars->27->1314", "default.handlebars->27->273" ] }, @@ -20871,7 +20883,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->27->1309", + "default.handlebars->27->1312", "default.handlebars->27->271" ] }, @@ -20919,8 +20931,8 @@ "fi": "Käyttöoikeudet", "xloc": [ "default-mobile.handlebars->9->448", - "default.handlebars->27->1438", - "default.handlebars->27->1545" + "default.handlebars->27->1441", + "default.handlebars->27->1548" ] }, { @@ -20937,7 +20949,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->27->1130" + "default.handlebars->27->1133" ] }, { @@ -20954,9 +20966,9 @@ "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", "default.handlebars->27->159", - "default.handlebars->27->1785", - "default.handlebars->27->982", - "default.handlebars->27->985" + "default.handlebars->27->1788", + "default.handlebars->27->985", + "default.handlebars->27->988" ] }, { @@ -20969,7 +20981,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->27->1734" + "default.handlebars->27->1737" ] }, { @@ -20983,8 +20995,8 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1784", - "default.handlebars->27->984" + "default.handlebars->27->1787", + "default.handlebars->27->987" ] }, { @@ -21103,7 +21115,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->27->1214" + "default.handlebars->27->1217" ] }, { @@ -21120,7 +21132,7 @@ "ru": "Действие плагина", "zh-chs": "插件動作", "xloc": [ - "default.handlebars->27->1944", + "default.handlebars->27->1947", "default.handlebars->27->196" ] }, @@ -21244,7 +21256,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->27->1248" + "default.handlebars->27->1251" ] }, { @@ -21261,7 +21273,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->27->1131" + "default.handlebars->27->1134" ] }, { @@ -21278,7 +21290,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->27->1132" + "default.handlebars->27->1135" ] }, { @@ -21295,7 +21307,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->27->1133" + "default.handlebars->27->1136" ] }, { @@ -21358,7 +21370,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->27->1471", + "default.handlebars->27->1474", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -21445,7 +21457,7 @@ "nl": "Aanwezig op de server", "es": "Presente en el Servidor", "xloc": [ - "default.handlebars->27->1853" + "default.handlebars->27->1856" ] }, { @@ -21566,9 +21578,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->27->1359", - "default.handlebars->27->1363", - "default.handlebars->27->1366" + "default.handlebars->27->1362", + "default.handlebars->27->1366", + "default.handlebars->27->1369" ] }, { @@ -21586,7 +21598,7 @@ "zh-chs": "協議", "fi": "Protokolla", "xloc": [ - "default.handlebars->27->1851", + "default.handlebars->27->1854", "player.handlebars->3->16" ] }, @@ -21619,7 +21631,7 @@ "zh-chs": "供應國", "xloc": [ "default-mobile.handlebars->9->361", - "default.handlebars->27->933" + "default.handlebars->27->936" ] }, { @@ -21637,7 +21649,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->27->1495" + "default.handlebars->27->1498" ] }, { @@ -21654,7 +21666,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->27->1134" + "default.handlebars->27->1137" ] }, { @@ -21671,7 +21683,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->27->1135" + "default.handlebars->27->1138" ] }, { @@ -21688,7 +21700,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->27->1136" + "default.handlebars->27->1139" ] }, { @@ -21741,7 +21753,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->27->1137" + "default.handlebars->27->1140" ] }, { @@ -21903,7 +21915,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1914" + "default.handlebars->27->1917" ] }, { @@ -21920,7 +21932,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1619" + "default.handlebars->27->1622" ] }, { @@ -21954,7 +21966,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->27->1334" + "default.handlebars->27->1337" ] }, { @@ -21963,9 +21975,9 @@ "fi": "Oikea nimi", "es": "Nombre Real", "xloc": [ - "default.handlebars->27->1731", - "default.handlebars->27->1733", - "default.handlebars->27->1786" + "default.handlebars->27->1734", + "default.handlebars->27->1736", + "default.handlebars->27->1789" ] }, { @@ -21982,7 +21994,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1628" + "default.handlebars->27->1631" ] }, { @@ -22012,7 +22024,7 @@ "nl": "Opname details", "es": "Detalles de la Grabación", "xloc": [ - "default.handlebars->27->1865" + "default.handlebars->27->1868" ] }, { @@ -22039,8 +22051,8 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->300", - "default.handlebars->27->1502", - "default.handlebars->27->855" + "default.handlebars->27->1505", + "default.handlebars->27->857" ] }, { @@ -22137,7 +22149,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1899" ] }, { @@ -22154,7 +22166,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1889" + "default.handlebars->27->1892" ] }, { @@ -22171,8 +22183,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1895", - "default.handlebars->27->1908" + "default.handlebars->27->1898", + "default.handlebars->27->1911" ] }, { @@ -22304,8 +22316,8 @@ "xloc": [ "default-mobile.handlebars->9->414", "default-mobile.handlebars->9->432", - "default.handlebars->27->1386", - "default.handlebars->27->1421" + "default.handlebars->27->1389", + "default.handlebars->27->1424" ] }, { @@ -22412,8 +22424,8 @@ "xloc": [ "default-mobile.handlebars->9->415", "default-mobile.handlebars->9->437", - "default.handlebars->27->1387", - "default.handlebars->27->1426" + "default.handlebars->27->1390", + "default.handlebars->27->1429" ] }, { @@ -22506,8 +22518,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->27->1700", - "default.handlebars->27->1834" + "default.handlebars->27->1703", + "default.handlebars->27->1837" ] }, { @@ -22521,8 +22533,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->27->1698", - "default.handlebars->27->1821" + "default.handlebars->27->1701", + "default.handlebars->27->1824" ] }, { @@ -22550,7 +22562,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->27->1830" + "default.handlebars->27->1833" ] }, { @@ -22564,8 +22576,8 @@ "nl": "Gebruikersgroepmachtigingen verwijderen", "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->27->1443", - "default.handlebars->27->1826" + "default.handlebars->27->1446", + "default.handlebars->27->1829" ] }, { @@ -22579,7 +22591,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->27->1708" + "default.handlebars->27->1711" ] }, { @@ -22593,8 +22605,8 @@ "nl": "Gebruikersmachtigingen verwijderen", "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->27->1441", - "default.handlebars->27->1823" + "default.handlebars->27->1444", + "default.handlebars->27->1826" ] }, { @@ -22611,7 +22623,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1798" + "default.handlebars->27->1801" ] }, { @@ -22628,7 +22640,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1620" + "default.handlebars->27->1623" ] }, { @@ -22645,7 +22657,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->27->1367" + "default.handlebars->27->1370" ] }, { @@ -22676,7 +22688,7 @@ "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->27->981" + "default.handlebars->27->984" ] }, { @@ -22717,7 +22729,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->27->1776" + "default.handlebars->27->1779" ] }, { @@ -22734,7 +22746,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1812" + "default.handlebars->27->1815" ] }, { @@ -22748,7 +22760,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->27->1694" + "default.handlebars->27->1697" ] }, { @@ -22765,7 +22777,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1688", + "default.handlebars->27->1691", "default.handlebars->27->651" ] }, @@ -22783,10 +22795,10 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->27->1318", - "default.handlebars->27->1682", - "default.handlebars->27->1806", - "default.handlebars->27->1818", + "default.handlebars->27->1321", + "default.handlebars->27->1685", + "default.handlebars->27->1809", + "default.handlebars->27->1821", "default.handlebars->27->652" ] }, @@ -22808,9 +22820,9 @@ "default-mobile.handlebars->9->304", "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->27->1506", + "default.handlebars->27->1509", "default.handlebars->27->504", - "default.handlebars->27->859", + "default.handlebars->27->861", "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" @@ -22821,7 +22833,7 @@ "nl": "Dag rapport", "es": "Reporte del día", "xloc": [ - "default.handlebars->27->1524" + "default.handlebars->27->1527" ] }, { @@ -22829,7 +22841,7 @@ "nl": "Rapporttype", "es": "Tipo de Reporte", "xloc": [ - "default.handlebars->27->1519" + "default.handlebars->27->1522" ] }, { @@ -22846,7 +22858,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->27->1228" + "default.handlebars->27->1231" ] }, { @@ -22864,8 +22876,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1625", - "default.handlebars->27->1796" + "default.handlebars->27->1628", + "default.handlebars->27->1799" ] }, { @@ -23057,7 +23069,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->27->1255" + "default.handlebars->27->1258" ] }, { @@ -23091,7 +23103,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->27->1252" + "default.handlebars->27->1255" ] }, { @@ -23108,7 +23120,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1720" + "default.handlebars->27->1723" ] }, { @@ -23125,7 +23137,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->27->1138" + "default.handlebars->27->1141" ] }, { @@ -23142,7 +23154,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->27->1139" + "default.handlebars->27->1142" ] }, { @@ -23159,7 +23171,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1140" + "default.handlebars->27->1143" ] }, { @@ -23178,8 +23190,8 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->294", - "default.handlebars->27->1479", - "default.handlebars->27->849" + "default.handlebars->27->1482", + "default.handlebars->27->851" ] }, { @@ -23347,7 +23359,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->27->1141" + "default.handlebars->27->1144" ] }, { @@ -23364,7 +23376,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->27->1142" + "default.handlebars->27->1145" ] }, { @@ -23378,8 +23390,8 @@ "zh-chs": "短信", "fi": "Tekstiviesti", "xloc": [ - "default.handlebars->27->1765", - "default.handlebars->27->1770", + "default.handlebars->27->1768", + "default.handlebars->27->1773", "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->tokenpanel->1->7->1->4->1->3" ] @@ -23394,7 +23406,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1785" ] }, { @@ -23443,7 +23455,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->27->1143" + "default.handlebars->27->1146" ] }, { @@ -23488,7 +23500,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->27->1144" + "default.handlebars->27->1147" ] }, { @@ -23505,7 +23517,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->27->1145" + "default.handlebars->27->1148" ] }, { @@ -23522,7 +23534,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->27->1146" + "default.handlebars->27->1149" ] }, { @@ -23797,7 +23809,7 @@ "zh-chs": "使用TLS保護", "xloc": [ "default-mobile.handlebars->9->364", - "default.handlebars->27->936" + "default.handlebars->27->939" ] }, { @@ -23817,10 +23829,10 @@ "xloc": [ "default-mobile.handlebars->9->270", "default-mobile.handlebars->9->363", - "default.handlebars->27->1766", + "default.handlebars->27->1769", "default.handlebars->27->286", "default.handlebars->27->732", - "default.handlebars->27->935" + "default.handlebars->27->938" ] }, { @@ -23837,7 +23849,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1763" + "default.handlebars->27->1766" ] }, { @@ -23872,12 +23884,12 @@ "zh-chs": "全選", "fi": "Valitse kaikki", "xloc": [ - "default.handlebars->27->1498", - "default.handlebars->27->1569", - "default.handlebars->27->1651", + "default.handlebars->27->1501", + "default.handlebars->27->1572", + "default.handlebars->27->1654", "default.handlebars->27->442", - "default.handlebars->27->851", "default.handlebars->27->853", + "default.handlebars->27->855", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -23901,11 +23913,11 @@ "zh-chs": "選擇無", "fi": "Poista valinta", "xloc": [ - "default.handlebars->27->1497", - "default.handlebars->27->1568", - "default.handlebars->27->1650", + "default.handlebars->27->1500", + "default.handlebars->27->1571", + "default.handlebars->27->1653", "default.handlebars->27->441", - "default.handlebars->27->852", + "default.handlebars->27->854", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -23988,8 +24000,8 @@ "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->27->1572", - "default.handlebars->27->1652" + "default.handlebars->27->1575", + "default.handlebars->27->1655" ] }, { @@ -24043,7 +24055,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->442", - "default.handlebars->27->1432" + "default.handlebars->27->1435" ] }, { @@ -24072,7 +24084,7 @@ "nl": "E-mail verzenden", "es": "Enviar Correo", "xloc": [ - "default.handlebars->27->1583" + "default.handlebars->27->1586" ] }, { @@ -24121,7 +24133,7 @@ "zh-chs": "发送短信", "fi": "Lähetä tekstiviesti", "xloc": [ - "default.handlebars->27->1581" + "default.handlebars->27->1584" ] }, { @@ -24134,7 +24146,7 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->27->1771" + "default.handlebars->27->1774" ] }, { @@ -24143,7 +24155,7 @@ "fr": "Envoyer un Mail à cet utilisateur", "es": "Enviar un mensaje de correo a este usuario", "xloc": [ - "default.handlebars->27->1773" + "default.handlebars->27->1776" ] }, { @@ -24160,7 +24172,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1679" + "default.handlebars->27->1682" ] }, { @@ -24177,7 +24189,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1587" ] }, { @@ -24193,7 +24205,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->27->1564" + "default.handlebars->27->1567" ] }, { @@ -24228,7 +24240,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1624" + "default.handlebars->27->1627" ] }, { @@ -24294,7 +24306,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1778" ] }, { @@ -24311,7 +24323,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1152" ] }, { @@ -24329,7 +24341,7 @@ "zh-chs": "序列號", "xloc": [ "default-mobile.handlebars->9->375", - "default.handlebars->27->947" + "default.handlebars->27->950" ] }, { @@ -24346,7 +24358,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1634" + "default.handlebars->27->1637" ] }, { @@ -24363,7 +24375,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1924" + "default.handlebars->27->1927" ] }, { @@ -24380,7 +24392,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1925" + "default.handlebars->27->1928" ] }, { @@ -24399,9 +24411,9 @@ "xloc": [ "default-mobile.handlebars->9->421", "default-mobile.handlebars->9->434", - "default.handlebars->27->1394", - "default.handlebars->27->1423", - "default.handlebars->27->1631", + "default.handlebars->27->1397", + "default.handlebars->27->1426", + "default.handlebars->27->1634", "default.handlebars->27->665", "default.handlebars->27->684" ] @@ -24420,8 +24432,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1556", - "default.handlebars->27->1644" + "default.handlebars->27->1559", + "default.handlebars->27->1647" ] }, { @@ -24438,7 +24450,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1737" + "default.handlebars->27->1740" ] }, { @@ -24455,7 +24467,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1635" + "default.handlebars->27->1638" ] }, { @@ -24472,7 +24484,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1736" + "default.handlebars->27->1739" ] }, { @@ -24489,7 +24501,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1875" + "default.handlebars->27->1878" ] }, { @@ -24523,7 +24535,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1935" + "default.handlebars->27->1938" ] }, { @@ -24540,7 +24552,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1636" + "default.handlebars->27->1639" ] }, { @@ -24663,7 +24675,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1916" + "default.handlebars->27->1919" ] }, { @@ -24705,7 +24717,7 @@ "nl": "Sessie", "es": "Sesión", "xloc": [ - "default.handlebars->27->1839" + "default.handlebars->27->1842" ] }, { @@ -25049,7 +25061,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->424", - "default.handlebars->27->1397" + "default.handlebars->27->1400" ] }, { @@ -25066,7 +25078,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->27->1360" + "default.handlebars->27->1363" ] }, { @@ -25125,8 +25137,8 @@ "nl": "Toon gedurende 1 minuut", "es": "Mostrar por 1 minuto", "xloc": [ - "default.handlebars->27->1587", - "default.handlebars->27->1610" + "default.handlebars->27->1590", + "default.handlebars->27->1613" ] }, { @@ -25134,8 +25146,8 @@ "nl": "Toon gedurende 10 seconden", "es": "Mostrar por 10 Segundos", "xloc": [ - "default.handlebars->27->1586", - "default.handlebars->27->1609" + "default.handlebars->27->1589", + "default.handlebars->27->1612" ] }, { @@ -25143,8 +25155,8 @@ "nl": "Toon gedurende 5 minuten", "es": "Mostrar por 5 minutos", "xloc": [ - "default.handlebars->27->1588", - "default.handlebars->27->1611" + "default.handlebars->27->1591", + "default.handlebars->27->1614" ] }, { @@ -25152,8 +25164,8 @@ "nl": "Toon bericht totdat het door de gebruiker wordt afgewezen", "es": "Mostrar mensaje hasta que el usuario lo descarte", "xloc": [ - "default.handlebars->27->1585", - "default.handlebars->27->1608" + "default.handlebars->27->1588", + "default.handlebars->27->1611" ] }, { @@ -25250,8 +25262,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->27->1298", - "default.handlebars->27->1321" + "default.handlebars->27->1301", + "default.handlebars->27->1324" ] }, { @@ -25268,9 +25280,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->27->1296", - "default.handlebars->27->1324", - "default.handlebars->27->1328" + "default.handlebars->27->1299", + "default.handlebars->27->1327", + "default.handlebars->27->1331" ] }, { @@ -25287,7 +25299,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->27->1147" + "default.handlebars->27->1150" ] }, { @@ -25304,7 +25316,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->27->1148" + "default.handlebars->27->1151" ] }, { @@ -25331,8 +25343,8 @@ "zh-chs": "尺寸", "fi": "Koko", "xloc": [ - "default.handlebars->27->1842", - "default.handlebars->27->1857", + "default.handlebars->27->1845", + "default.handlebars->27->1860", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -25350,7 +25362,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->27->879" + "default.handlebars->27->882" ] }, { @@ -25367,7 +25379,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->27->880" + "default.handlebars->27->883" ] }, { @@ -25384,7 +25396,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->27->881" + "default.handlebars->27->884" ] }, { @@ -25401,7 +25413,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->27->882" + "default.handlebars->27->885" ] }, { @@ -25479,7 +25491,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1153" ] }, { @@ -25496,7 +25508,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->27->1151" + "default.handlebars->27->1154" ] }, { @@ -25568,7 +25580,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->27->977" + "default.handlebars->27->980" ] }, { @@ -25620,7 +25632,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->27->1152" + "default.handlebars->27->1155" ] }, { @@ -25637,7 +25649,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->27->1153" + "default.handlebars->27->1156" ] }, { @@ -25767,7 +25779,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->27->1154" + "default.handlebars->27->1157" ] }, { @@ -25784,7 +25796,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->27->1155" + "default.handlebars->27->1158" ] }, { @@ -25801,7 +25813,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->27->1156" + "default.handlebars->27->1159" ] }, { @@ -25818,7 +25830,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->27->1157" + "default.handlebars->27->1160" ] }, { @@ -25835,7 +25847,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->27->1158" + "default.handlebars->27->1161" ] }, { @@ -25852,7 +25864,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->27->1159" + "default.handlebars->27->1162" ] }, { @@ -25869,7 +25881,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->27->1160" + "default.handlebars->27->1163" ] }, { @@ -25886,7 +25898,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->27->1161" + "default.handlebars->27->1164" ] }, { @@ -25903,7 +25915,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->27->1162" + "default.handlebars->27->1165" ] }, { @@ -25920,7 +25932,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->27->1163" + "default.handlebars->27->1166" ] }, { @@ -25937,7 +25949,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->27->1164" + "default.handlebars->27->1167" ] }, { @@ -25954,7 +25966,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->27->1165" + "default.handlebars->27->1168" ] }, { @@ -25971,7 +25983,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->27->1166" + "default.handlebars->27->1169" ] }, { @@ -25988,7 +26000,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->27->1167" + "default.handlebars->27->1170" ] }, { @@ -26005,7 +26017,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->27->1168" + "default.handlebars->27->1171" ] }, { @@ -26022,7 +26034,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->27->1169" + "default.handlebars->27->1172" ] }, { @@ -26039,7 +26051,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->27->1170" + "default.handlebars->27->1173" ] }, { @@ -26056,7 +26068,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->27->1171" + "default.handlebars->27->1174" ] }, { @@ -26073,7 +26085,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->27->1172" + "default.handlebars->27->1175" ] }, { @@ -26090,7 +26102,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1176" ] }, { @@ -26152,8 +26164,8 @@ "nl": "Start tijd", "es": "Tiempo de Inicio", "xloc": [ - "default.handlebars->27->1840", - "default.handlebars->27->1859", + "default.handlebars->27->1843", + "default.handlebars->27->1862", "default.handlebars->27->798", "desktop.handlebars->3->15" ] @@ -26207,8 +26219,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1789", - "default.handlebars->27->1852", + "default.handlebars->27->1792", + "default.handlebars->27->1855", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -26275,7 +26287,7 @@ "zh-chs": "存储", "xloc": [ "default-mobile.handlebars->9->389", - "default.handlebars->27->961" + "default.handlebars->27->964" ] }, { @@ -26309,7 +26321,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->27->1483" + "default.handlebars->27->1486" ] }, { @@ -26326,7 +26338,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->27->1245" + "default.handlebars->27->1248" ] }, { @@ -26356,7 +26368,7 @@ "fi": "Otsikko", "es": "Asunto", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1585" ] }, { @@ -26442,7 +26454,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->27->1174" + "default.handlebars->27->1177" ] }, { @@ -26459,7 +26471,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->27->1175" + "default.handlebars->27->1178" ] }, { @@ -26476,7 +26488,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->27->1176" + "default.handlebars->27->1179" ] }, { @@ -26493,7 +26505,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->27->1177" + "default.handlebars->27->1180" ] }, { @@ -26510,7 +26522,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->27->1178" + "default.handlebars->27->1181" ] }, { @@ -26527,7 +26539,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->27->1368" + "default.handlebars->27->1371" ] }, { @@ -26638,7 +26650,7 @@ "zh-chs": "未設置TLS", "xloc": [ "default-mobile.handlebars->9->365", - "default.handlebars->27->937" + "default.handlebars->27->940" ] }, { @@ -26731,7 +26743,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->27->1179" + "default.handlebars->27->1182" ] }, { @@ -26748,7 +26760,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->27->1180" + "default.handlebars->27->1183" ] }, { @@ -26765,7 +26777,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->27->1181" + "default.handlebars->27->1184" ] }, { @@ -26783,8 +26795,8 @@ "zh-chs": "終奌站", "xloc": [ "default-mobile.handlebars->9->164", - "default.handlebars->27->1361", - "default.handlebars->27->1846", + "default.handlebars->27->1364", + "default.handlebars->27->1849", "default.handlebars->27->244", "default.handlebars->27->514", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -26822,8 +26834,8 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->27->1281", - "default.handlebars->27->1755", + "default.handlebars->27->1284", + "default.handlebars->27->1758", "default.handlebars->27->586" ] }, @@ -26841,8 +26853,8 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->27->1280", - "default.handlebars->27->1754", + "default.handlebars->27->1283", + "default.handlebars->27->1757", "default.handlebars->27->585" ] }, @@ -26899,7 +26911,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->27->1182" + "default.handlebars->27->1185" ] }, { @@ -26986,7 +26998,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1867" + "default.handlebars->27->1870" ] }, { @@ -27038,7 +27050,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1231" + "default.handlebars->27->1234" ] }, { @@ -27085,7 +27097,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->27->1346" + "default.handlebars->27->1349" ] }, { @@ -27121,7 +27133,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->27->1345" + "default.handlebars->27->1348" ] }, { @@ -27252,7 +27264,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->27->1183" + "default.handlebars->27->1186" ] }, { @@ -27278,7 +27290,7 @@ "nl": "Tijdspanne", "es": "Espacio de Tiempo", "xloc": [ - "default.handlebars->27->1521" + "default.handlebars->27->1524" ] }, { @@ -27406,7 +27418,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->27->1218" + "default.handlebars->27->1221" ] }, { @@ -27853,7 +27865,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->27->1184" + "default.handlebars->27->1187" ] }, { @@ -27870,7 +27882,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->27->1185" + "default.handlebars->27->1188" ] }, { @@ -27887,7 +27899,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->27->1186" + "default.handlebars->27->1189" ] }, { @@ -27904,7 +27916,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->27->1187" + "default.handlebars->27->1190" ] }, { @@ -27940,10 +27952,10 @@ "xloc": [ "default-mobile.handlebars->9->397", "default-mobile.handlebars->9->98", - "default.handlebars->27->1238", - "default.handlebars->27->1271", - "default.handlebars->27->1322", + "default.handlebars->27->1241", + "default.handlebars->27->1274", "default.handlebars->27->1325", + "default.handlebars->27->1328", "default.handlebars->27->824", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3" @@ -27963,7 +27975,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->27->996" + "default.handlebars->27->999" ] }, { @@ -27980,7 +27992,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->27->993" + "default.handlebars->27->996" ] }, { @@ -28023,7 +28035,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->27->1188" + "default.handlebars->27->1191" ] }, { @@ -28040,7 +28052,7 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->27->1233", + "default.handlebars->27->1236", "default.handlebars->27->530" ] }, @@ -28094,7 +28106,7 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->27->1235", + "default.handlebars->27->1238", "default.handlebars->27->532" ] }, @@ -28202,7 +28214,7 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->444", - "default.handlebars->27->1434", + "default.handlebars->27->1437", "default.handlebars->27->670", "default.handlebars->27->689" ] @@ -28222,7 +28234,7 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->426", - "default.handlebars->27->1399", + "default.handlebars->27->1402", "default.handlebars->27->444", "default.handlebars->27->720" ] @@ -28269,17 +28281,17 @@ "default.handlebars->27->109", "default.handlebars->27->111", "default.handlebars->27->113", - "default.handlebars->27->1258", - "default.handlebars->27->1259", + "default.handlebars->27->1261", + "default.handlebars->27->1262", "default.handlebars->27->13", - "default.handlebars->27->1829", - "default.handlebars->27->1844", - "default.handlebars->27->1845", + "default.handlebars->27->1832", + "default.handlebars->27->1847", + "default.handlebars->27->1848", "default.handlebars->27->41", "default.handlebars->27->42", "default.handlebars->27->440", - "default.handlebars->27->927", - "default.handlebars->27->934" + "default.handlebars->27->930", + "default.handlebars->27->937" ] }, { @@ -28297,7 +28309,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->391", - "default.handlebars->27->1265" + "default.handlebars->27->1268" ] }, { @@ -28314,7 +28326,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1881" + "default.handlebars->27->1884" ] }, { @@ -28331,8 +28343,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1693", - "default.handlebars->27->1817" + "default.handlebars->27->1696", + "default.handlebars->27->1820" ] }, { @@ -28349,9 +28361,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1687", - "default.handlebars->27->1805", - "default.handlebars->27->1885" + "default.handlebars->27->1690", + "default.handlebars->27->1808", + "default.handlebars->27->1888" ] }, { @@ -28368,7 +28380,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1877" + "default.handlebars->27->1880" ] }, { @@ -28403,7 +28415,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1811" + "default.handlebars->27->1814" ] }, { @@ -28455,7 +28467,7 @@ "nl": "Account ontgrendelen", "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1578" ] }, { @@ -28493,7 +28505,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1942" + "default.handlebars->27->1945" ] }, { @@ -28535,11 +28547,11 @@ "default-mobile.handlebars->9->305", "default-mobile.handlebars->9->323", "default-mobile.handlebars->9->326", - "default.handlebars->27->1507", - "default.handlebars->27->1515", - "default.handlebars->27->860", - "default.handlebars->27->883", + "default.handlebars->27->1510", + "default.handlebars->27->1518", + "default.handlebars->27->862", "default.handlebars->27->886", + "default.handlebars->27->889", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -28557,7 +28569,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->27->979" + "default.handlebars->27->982" ] }, { @@ -28574,7 +28586,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->27->976" + "default.handlebars->27->979" ] }, { @@ -28591,7 +28603,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->27->973" + "default.handlebars->27->976" ] }, { @@ -28608,7 +28620,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->27->975" + "default.handlebars->27->978" ] }, { @@ -28626,8 +28638,8 @@ "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->27->1516", - "default.handlebars->27->884" + "default.handlebars->27->1519", + "default.handlebars->27->887" ] }, { @@ -28645,8 +28657,8 @@ "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->27->1517", - "default.handlebars->27->885" + "default.handlebars->27->1520", + "default.handlebars->27->888" ] }, { @@ -28677,7 +28689,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->27->1189" + "default.handlebars->27->1192" ] }, { @@ -28694,7 +28706,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->27->1190" + "default.handlebars->27->1193" ] }, { @@ -28746,8 +28758,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1871", - "default.handlebars->27->1873" + "default.handlebars->27->1874", + "default.handlebars->27->1876" ] }, { @@ -28764,11 +28776,11 @@ "ru": "Пользователь", "zh-chs": "用戶", "xloc": [ - "default.handlebars->27->1319", - "default.handlebars->27->1528", - "default.handlebars->27->1557", - "default.handlebars->27->1683", - "default.handlebars->27->1864", + "default.handlebars->27->1322", + "default.handlebars->27->1531", + "default.handlebars->27->1560", + "default.handlebars->27->1686", + "default.handlebars->27->1867", "default.handlebars->27->222", "default.handlebars->27->654" ] @@ -28787,7 +28799,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1561" ] }, { @@ -28804,10 +28816,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1591", - "default.handlebars->27->1592", "default.handlebars->27->1594", - "default.handlebars->27->1596" + "default.handlebars->27->1595", + "default.handlebars->27->1597", + "default.handlebars->27->1599" ] }, { @@ -28824,7 +28836,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1890" + "default.handlebars->27->1893" ] }, { @@ -28842,7 +28854,7 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->399", - "default.handlebars->27->1317", + "default.handlebars->27->1320", "default.handlebars->27->650" ] }, @@ -28860,8 +28872,8 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->27->1287", - "default.handlebars->27->1761", + "default.handlebars->27->1290", + "default.handlebars->27->1764", "default.handlebars->27->190", "default.handlebars->27->592", "default.handlebars->27->709" @@ -28881,11 +28893,11 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->27->1375", - "default.handlebars->27->1376", - "default.handlebars->27->1659", - "default.handlebars->27->1813", - "default.handlebars->27->1832", + "default.handlebars->27->1378", + "default.handlebars->27->1379", + "default.handlebars->27->1662", + "default.handlebars->27->1816", + "default.handlebars->27->1835", "default.handlebars->27->653" ] }, @@ -28920,7 +28932,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1810" + "default.handlebars->27->1813" ] }, { @@ -28945,9 +28957,9 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->27->1437", - "default.handlebars->27->1728", - "default.handlebars->27->1729" + "default.handlebars->27->1440", + "default.handlebars->27->1731", + "default.handlebars->27->1732" ] }, { @@ -28955,8 +28967,8 @@ "nl": "Gebruikers-ID's", "es": "Identificadores de Usuario", "xloc": [ - "default.handlebars->27->1373", - "default.handlebars->27->1712" + "default.handlebars->27->1376", + "default.handlebars->27->1715" ] }, { @@ -28973,7 +28985,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1603" + "default.handlebars->27->1606" ] }, { @@ -28991,7 +29003,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->446", - "default.handlebars->27->1436" + "default.handlebars->27->1439" ] }, { @@ -29053,7 +29065,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1907" + "default.handlebars->27->1910" ] }, { @@ -29131,8 +29143,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->27->1200", - "default.handlebars->27->1202" + "default.handlebars->27->1203", + "default.handlebars->27->1205" ] }, { @@ -29189,7 +29201,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->1615", + "default.handlebars->27->1618", "default.handlebars->27->283", "default.handlebars->27->315", "default.handlebars->27->730", @@ -29251,9 +29263,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1647", - "default.handlebars->27->1675", - "default.handlebars->27->1906", + "default.handlebars->27->1650", + "default.handlebars->27->1678", + "default.handlebars->27->1909", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -29271,7 +29283,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1894" + "default.handlebars->27->1897" ] }, { @@ -29296,7 +29308,7 @@ "nl": "E-mail valideren", "es": "Validar Correo", "xloc": [ - "default.handlebars->27->1570" + "default.handlebars->27->1573" ] }, { @@ -29313,7 +29325,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->27->1191" + "default.handlebars->27->1194" ] }, { @@ -29332,8 +29344,8 @@ "xloc": [ "default-mobile.handlebars->9->370", "default-mobile.handlebars->9->373", - "default.handlebars->27->942", - "default.handlebars->27->945" + "default.handlebars->27->945", + "default.handlebars->27->948" ] }, { @@ -29364,7 +29376,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1791" + "default.handlebars->27->1794" ] }, { @@ -29391,8 +29403,8 @@ "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->27->1566", - "default.handlebars->27->980" + "default.handlebars->27->1569", + "default.handlebars->27->983" ] }, { @@ -29449,10 +29461,10 @@ "default-mobile.handlebars->9->354", "default-mobile.handlebars->9->371", "default-mobile.handlebars->9->376", - "default.handlebars->27->891", - "default.handlebars->27->926", - "default.handlebars->27->943", - "default.handlebars->27->948", + "default.handlebars->27->894", + "default.handlebars->27->929", + "default.handlebars->27->946", + "default.handlebars->27->951", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -29469,7 +29481,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->27->1938" + "default.handlebars->27->1941" ] }, { @@ -29505,7 +29517,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->27->1192" + "default.handlebars->27->1195" ] }, { @@ -29539,8 +29551,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->27->1941", - "default.handlebars->27->1943" + "default.handlebars->27->1944", + "default.handlebars->27->1946" ] }, { @@ -29574,7 +29586,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->27->1302" + "default.handlebars->27->1305" ] }, { @@ -29591,7 +29603,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1769" + "default.handlebars->27->1772" ] }, { @@ -29608,7 +29620,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->27->1193" + "default.handlebars->27->1196" ] }, { @@ -29693,8 +29705,8 @@ "xloc": [ "default-mobile.handlebars->9->422", "default-mobile.handlebars->9->435", - "default.handlebars->27->1395", - "default.handlebars->27->1424" + "default.handlebars->27->1398", + "default.handlebars->27->1427" ] }, { @@ -29746,7 +29758,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->27->1194" + "default.handlebars->27->1197" ] }, { @@ -29764,7 +29776,7 @@ "zh-chs": "弱", "fi": "Heikko", "xloc": [ - "default.handlebars->27->1247" + "default.handlebars->27->1250" ] }, { @@ -29802,8 +29814,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1927", - "default.handlebars->27->1928" + "default.handlebars->27->1930", + "default.handlebars->27->1931" ] }, { @@ -29820,7 +29832,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1929" + "default.handlebars->27->1932" ] }, { @@ -29837,7 +29849,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1930" + "default.handlebars->27->1933" ] }, { @@ -29900,7 +29912,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->27->1195" + "default.handlebars->27->1198" ] }, { @@ -29917,7 +29929,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1445" + "default.handlebars->27->1448" ] }, { @@ -29935,7 +29947,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->27->987" + "default.handlebars->27->990" ] }, { @@ -29953,7 +29965,7 @@ "zh-chs": "下次登錄時將更改。", "fi": "Vaihdetaan seuraavan kirjautumisen yhteydessä", "xloc": [ - "default.handlebars->27->1741" + "default.handlebars->27->1744" ] }, { @@ -30453,7 +30465,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->27->878" + "default.handlebars->27->881" ] }, { @@ -30470,7 +30482,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->27->877" + "default.handlebars->27->880" ] }, { @@ -30558,7 +30570,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->27->1196" + "default.handlebars->27->1199" ] }, { @@ -30575,7 +30587,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->27->1197" + "default.handlebars->27->1200" ] }, { @@ -30651,7 +30663,19 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->27->999" + "default.handlebars->27->1002" + ] + }, + { + "en": "Zip", + "xloc": [ + "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3" + ] + }, + { + "en": "Zip Filename", + "xloc": [ + "default.handlebars->27->865" ] }, { @@ -30721,7 +30745,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->27->1198" + "default.handlebars->27->1201" ] }, { @@ -30942,7 +30966,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1939" + "default.handlebars->27->1942" ] }, { @@ -31127,7 +31151,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->27->970" + "default.handlebars->27->973" ] }, { @@ -31146,7 +31170,7 @@ "fi": "kopioi", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->27->1512" + "default.handlebars->27->1515" ] }, { @@ -31221,8 +31245,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->27->1535", - "default.handlebars->27->1540" + "default.handlebars->27->1538", + "default.handlebars->27->1543" ] }, { @@ -31239,8 +31263,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->27->1537", - "default.handlebars->27->1541" + "default.handlebars->27->1540", + "default.handlebars->27->1544" ] }, { @@ -31274,7 +31298,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1902" + "default.handlebars->27->1905" ] }, { @@ -31459,7 +31483,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1604" + "default.handlebars->27->1607" ] }, { @@ -31560,7 +31584,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->27->1632" + "default.handlebars->27->1635" ] }, { @@ -31665,7 +31689,7 @@ "fi": "siirrä", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->27->1513" + "default.handlebars->27->1516" ] }, { @@ -31721,7 +31745,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->27->1262" + "default.handlebars->27->1265" ] }, { @@ -31738,7 +31762,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1937" + "default.handlebars->27->1940" ] }, { @@ -31795,7 +31819,7 @@ "ru": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-chs": "時間,conn.agent,conn.users,conn.usersessions,conn.relaysession,conn.intelamt,mem.external,mem.heapused,mem.heaptotal,mem.rss", "xloc": [ - "default.handlebars->27->1915" + "default.handlebars->27->1918" ] }, { @@ -31812,7 +31836,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1936" + "default.handlebars->27->1939" ] }, { @@ -31843,7 +31867,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1903" + "default.handlebars->27->1906" ] }, { @@ -31914,8 +31938,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1600", - "default.handlebars->27->1605" + "default.handlebars->27->1603", + "default.handlebars->27->1608" ] }, { @@ -31932,8 +31956,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1602", - "default.handlebars->27->1606" + "default.handlebars->27->1605", + "default.handlebars->27->1609" ] }, { @@ -31950,7 +31974,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->27->1539" + "default.handlebars->27->1542" ] }, { @@ -31984,7 +32008,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->27->1492" + "default.handlebars->27->1495" ] }, { @@ -32001,8 +32025,8 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->27->1490", - "default.handlebars->27->1843" + "default.handlebars->27->1493", + "default.handlebars->27->1846" ] }, { @@ -32020,8 +32044,8 @@ "zh-chs": "{0} Mb", "xloc": [ "default-mobile.handlebars->9->387", - "default.handlebars->27->1491", - "default.handlebars->27->959" + "default.handlebars->27->1494", + "default.handlebars->27->962" ] }, { @@ -32039,7 +32063,7 @@ "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->9->382", - "default.handlebars->27->954" + "default.handlebars->27->957" ] }, { @@ -32056,7 +32080,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1781" + "default.handlebars->27->1784" ] }, { @@ -32073,7 +32097,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1492" ] }, { @@ -32092,8 +32116,8 @@ "fi": "{0} tavua", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->27->1500", - "default.handlebars->27->1858" + "default.handlebars->27->1503", + "default.handlebars->27->1861" ] }, { @@ -32111,7 +32135,7 @@ "zh-chs": "剩餘{0}個字節", "fi": "{0} tavua jäljellä", "xloc": [ - "default.handlebars->27->1484" + "default.handlebars->27->1487" ] }, { @@ -32138,7 +32162,7 @@ "zh-chs": "剩餘{0} GB", "fi": "{0} gigatavua jäljellä", "xloc": [ - "default.handlebars->27->1487" + "default.handlebars->27->1490" ] }, { @@ -32156,7 +32180,7 @@ "zh-chs": "{0}個群組", "fi": "{0} ryhmää", "xloc": [ - "default.handlebars->27->1746" + "default.handlebars->27->1749" ] }, { @@ -32206,7 +32230,7 @@ "zh-chs": "剩餘{0}千字節", "fi": "{0} kilotavua jäljellä", "xloc": [ - "default.handlebars->27->1485" + "default.handlebars->27->1488" ] }, { @@ -32242,7 +32266,7 @@ "zh-chs": "剩餘{0}兆字節", "fi": "{0} megatavua jäljellä", "xloc": [ - "default.handlebars->27->1486" + "default.handlebars->27->1489" ] }, { @@ -32276,7 +32300,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1552" ] }, { @@ -32415,7 +32439,7 @@ "default-mobile.handlebars->9->169", "default-mobile.handlebars->9->172", "default-mobile.handlebars->9->175", - "default.handlebars->27->1553", + "default.handlebars->27->1556", "default.handlebars->27->240", "default.handlebars->27->243", "default.handlebars->27->246", @@ -32541,7 +32565,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->27->1494" + "default.handlebars->27->1497" ] }, { @@ -32558,7 +32582,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->27->1493" + "default.handlebars->27->1496" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index f98f2c0c..49d4267e 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -7651,6 +7651,7 @@ QV('filesRecordIcon', false); p13setActions(); if (files != null) { files.Stop(); files = null; } + if (xxdialogTag == 'fileMsgDialog') { setDialogMode(0); } break; case 3: p13targetpath = ''; @@ -7709,6 +7710,8 @@ var p13targetpath = null; var p13filetreelocation = []; + function p13fileOperationDialogEx(b) { if ((b == 0) && (files != null)) { files.sendText({ action: 'cancel' }); } } + function p13gotFiles(data) { if ((data.length > 0) && (data.charCodeAt(0) != 123)) { p13gotDownloadBinaryData(data); return; } // This is ok because 4 first bytes is a control value. //console.log('p13gotFiles', data); @@ -7718,6 +7721,20 @@ // Process file upload commands if ((data.action != null) && (data.action.startsWith('upload'))) { p13gotUploadData(data); return; } + // Display a dialog message + if (data.action == 'dialogmessage') { + if ((data.msg == null) && (xxdialogTag == 'fileMsgDialog')) { + setDialogMode(0); // Close the dialog box + } else if ((data.msg == 'zipping') && ((!xxdialogMode) || (xxdialogTag == 'fileMsgDialog'))) { + // Show the dialog box message + setDialogMode(2, "File Operation", 10, p13fileOperationDialogEx, '
' + "Compressing files..." + '
', 'fileMsgDialog'); + } + return; + } + + // Refresh file folder + if (data.action == 'refresh') { p13folderup(9999); return; } + if (data.path != null) { data.path = data.path.replace(/\//g, '\\'); if ((p13filetree != null) && (data.path == p13filetree.path)) {