diff --git a/agents/meshagent_freebsd_x86-64 b/agents/meshagent_freebsd_x86-64 index ff471cb7..8c1f317f 100644 Binary files a/agents/meshagent_freebsd_x86-64 and b/agents/meshagent_freebsd_x86-64 differ diff --git a/agents/meshagent_osx-x86-64 b/agents/meshagent_osx-x86-64 index 7c46b30b..cd486dfe 100644 Binary files a/agents/meshagent_osx-x86-64 and b/agents/meshagent_osx-x86-64 differ diff --git a/meshuser.js b/meshuser.js index 62c9d992..7eaca491 100644 --- a/meshuser.js +++ b/meshuser.js @@ -2396,6 +2396,30 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'addmeshuser', responseid: command.responseid, result: 'ok', removed: removedCount, failed: failCount })); } catch (ex) { } } break; } + case 'adddeviceuser': { + if (typeof command.userid == 'string') { command.userids = [command.userid]; } + var err = null; + try { + if (common.validateString(command.nodeid, 1, 1024) == false) { err = 'Invalid nodeid'; } // Check the nodeid + else if (common.validateInt(command.rights) == false) { err = 'Invalid rights'; } // Device rights must be an integer + else if ((common.validateStrArray(command.usernames, 1, 64) == false) && (common.validateStrArray(command.userids, 1, 128) == false)) { err = 'Invalid usernames'; } // Username is between 1 and 64 characters + else { + if (command.nodeid.indexOf('/') == -1) { command.nodeid = 'node/' + domain.id + '/' + command.meshid; } + else if ((command.nodeid.split('/').length != 3) || (command.nodeid.split('/')[1] != domain.id)) { err = 'Invalid domain'; } // Invalid domain, operation only valid for current domain + } + } catch (ex) { err = 'Validation exception: ' + ex; } + + // Handle any errors + if (err != null) { + if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'adddeviceuser', responseid: command.responseid, result: err })); } catch (ex) { } } + break; + } + + // TODO + //console.log(command); + + break; + } case 'removemeshuser': { var err = null; diff --git a/translate/translate.json b/translate/translate.json index 71b08489..1bd85633 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -254,7 +254,7 @@ "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ "default.handlebars->27->1144", - "default.handlebars->27->1391" + "default.handlebars->27->1394" ] }, { @@ -470,7 +470,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->333", - "default.handlebars->27->1197" + "default.handlebars->27->1200" ] }, { @@ -652,8 +652,8 @@ "xloc": [ "default-mobile.handlebars->9->246", "default-mobile.handlebars->9->70", - "default.handlebars->27->1234", - "default.handlebars->27->1480", + "default.handlebars->27->1237", + "default.handlebars->27->1483", "default.handlebars->27->653" ] }, @@ -703,7 +703,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->27->1432" + "default.handlebars->27->1435" ] }, { @@ -722,7 +722,7 @@ "xloc": [ "default-mobile.handlebars->9->337", "default-mobile.handlebars->9->80", - "default.handlebars->27->1251" + "default.handlebars->27->1254" ] }, { @@ -758,7 +758,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->27->1415" + "default.handlebars->27->1418" ] }, { @@ -830,7 +830,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1286" + "default.handlebars->27->1289" ] }, { @@ -881,7 +881,7 @@ "ru": "1 сессия", "zh-chs": "1節", "xloc": [ - "default.handlebars->27->1290" + "default.handlebars->27->1293" ] }, { @@ -1146,7 +1146,7 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->27->1424" + "default.handlebars->27->1427" ] }, { @@ -1879,7 +1879,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->27->1396" + "default.handlebars->27->1399" ] }, { @@ -2238,7 +2238,8 @@ "pt": "Adicionar Dispositivo", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->27->1448" + "default.handlebars->27->1175", + "default.handlebars->27->1451" ] }, { @@ -2272,10 +2273,10 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->27->1170", "default.handlebars->27->1172", - "default.handlebars->27->1370", - "default.handlebars->27->1457", + "default.handlebars->27->1174", + "default.handlebars->27->1373", + "default.handlebars->27->1460", "default.handlebars->27->187" ] }, @@ -2360,7 +2361,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->27->1476" + "default.handlebars->27->1479" ] }, { @@ -2417,8 +2418,8 @@ "zh-chs": "添加用戶組", "xloc": [ "default.handlebars->27->1076", - "default.handlebars->27->1171", - "default.handlebars->27->1466" + "default.handlebars->27->1173", + "default.handlebars->27->1469" ] }, { @@ -2453,7 +2454,7 @@ "zh-chs": "添加用戶", "xloc": [ "default.handlebars->27->1075", - "default.handlebars->27->1365" + "default.handlebars->27->1368" ] }, { @@ -2470,7 +2471,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->27->1169" + "default.handlebars->27->1171" ] }, { @@ -2487,7 +2488,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->27->1393" + "default.handlebars->27->1396" ] }, { @@ -2689,7 +2690,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1419" + "default.handlebars->27->1422" ] }, { @@ -2723,7 +2724,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1335" + "default.handlebars->27->1338" ] }, { @@ -2740,7 +2741,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->27->1297" + "default.handlebars->27->1300" ] }, { @@ -2776,8 +2777,8 @@ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->177", "default-mobile.handlebars->9->193", - "default.handlebars->27->1222", - "default.handlebars->27->1228", + "default.handlebars->27->1225", + "default.handlebars->27->1231", "default.handlebars->27->166", "default.handlebars->27->355", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2796,8 +2797,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->27->1224", - "default.handlebars->27->1230" + "default.handlebars->27->1227", + "default.handlebars->27->1233" ] }, { @@ -2830,7 +2831,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->27->1180" + "default.handlebars->27->1183" ] }, { @@ -2846,7 +2847,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->27->1489" + "default.handlebars->27->1492" ] }, { @@ -2912,7 +2913,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->27->1505" + "default.handlebars->27->1508" ] }, { @@ -2946,7 +2947,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->27->1226", + "default.handlebars->27->1229", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3034,7 +3035,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->27->1518" + "default.handlebars->27->1521" ] }, { @@ -3122,7 +3123,7 @@ "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ "default.handlebars->27->1143", - "default.handlebars->27->1390" + "default.handlebars->27->1393" ] }, { @@ -3765,7 +3766,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->27->1555" + "default.handlebars->27->1558" ] }, { @@ -3827,7 +3828,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->27->1420" + "default.handlebars->27->1423" ] }, { @@ -4084,8 +4085,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->27->1205", - "default.handlebars->27->1212", + "default.handlebars->27->1208", + "default.handlebars->27->1215", "default.handlebars->27->282" ] }, @@ -4103,8 +4104,8 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->27->1206", - "default.handlebars->27->1213", + "default.handlebars->27->1209", + "default.handlebars->27->1216", "default.handlebars->27->283", "default.handlebars->27->305" ] @@ -4140,7 +4141,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->27->1422" + "default.handlebars->27->1425" ] }, { @@ -4157,7 +4158,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->27->1496" + "default.handlebars->27->1499" ] }, { @@ -4174,7 +4175,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->27->1495" + "default.handlebars->27->1498" ] }, { @@ -4286,7 +4287,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1363", + "default.handlebars->27->1366", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4304,7 +4305,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->27->1320" + "default.handlebars->27->1323" ] }, { @@ -4321,7 +4322,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1319" + "default.handlebars->27->1322" ] }, { @@ -4409,7 +4410,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->27->1546" + "default.handlebars->27->1549" ] }, { @@ -4426,7 +4427,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1547" + "default.handlebars->27->1550" ] }, { @@ -4443,7 +4444,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1510" + "default.handlebars->27->1513" ] }, { @@ -4460,7 +4461,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1513" + "default.handlebars->27->1516" ] }, { @@ -4477,7 +4478,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1512" + "default.handlebars->27->1515" ] }, { @@ -4494,7 +4495,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1511" + "default.handlebars->27->1514" ] }, { @@ -4530,8 +4531,8 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->27->1272", - "default.handlebars->27->1311", + "default.handlebars->27->1275", + "default.handlebars->27->1314", "default.handlebars->27->384" ] }, @@ -4549,7 +4550,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1556" + "default.handlebars->27->1559" ] }, { @@ -4656,7 +4657,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->27->1438" + "default.handlebars->27->1441" ] }, { @@ -4694,7 +4695,7 @@ "xloc": [ "default-mobile.handlebars->9->52", "default.handlebars->27->1005", - "default.handlebars->27->1431" + "default.handlebars->27->1434" ] }, { @@ -4711,7 +4712,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1445" + "default.handlebars->27->1448" ] }, { @@ -4777,7 +4778,7 @@ "pt": "Alterar a senha para este usuário", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1430" + "default.handlebars->27->1433" ] }, { @@ -4862,7 +4863,7 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->27->1289" + "default.handlebars->27->1292" ] }, { @@ -4881,8 +4882,8 @@ "xloc": [ "default-mobile.handlebars->9->310", "default-mobile.handlebars->9->328", - "default.handlebars->27->1167", - "default.handlebars->27->1191" + "default.handlebars->27->1169", + "default.handlebars->27->1194" ] }, { @@ -4967,7 +4968,7 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->27->1552", + "default.handlebars->27->1555", "default.handlebars->27->778" ] }, @@ -5131,7 +5132,7 @@ "default-mobile.handlebars->9->271", "default-mobile.handlebars->9->28", "default-mobile.handlebars->9->94", - "default.handlebars->27->1266", + "default.handlebars->27->1269", "default.handlebars->27->672", "default.handlebars->27->674", "default.handlebars->27->676", @@ -5196,7 +5197,7 @@ "en": "Clear this notification", "nl": "Wis deze melding", "xloc": [ - "default.handlebars->27->1483" + "default.handlebars->27->1486" ] }, { @@ -5354,8 +5355,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->27->1371", - "default.handlebars->27->1458" + "default.handlebars->27->1374", + "default.handlebars->27->1461" ] }, { @@ -5368,7 +5369,7 @@ "pt": "Dispositivos comuns", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->27->1449" + "default.handlebars->27->1452" ] }, { @@ -5385,7 +5386,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1261" + "default.handlebars->27->1264" ] }, { @@ -5405,7 +5406,7 @@ "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->290", "default.handlebars->27->1124", - "default.handlebars->27->1386", + "default.handlebars->27->1389", "default.handlebars->27->381", "default.handlebars->27->561", "default.handlebars->27->570" @@ -5472,7 +5473,7 @@ "pt": "Confirmar exclusão do usuário {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1447" + "default.handlebars->27->1450" ] }, { @@ -5523,7 +5524,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->27->1260" + "default.handlebars->27->1263" ] }, { @@ -5558,8 +5559,8 @@ "ru": "Подтвердить удаление группы устройств {0}?", "zh-chs": "確認刪除設備組{0}?", "xloc": [ - "default.handlebars->27->1381", - "default.handlebars->27->1478" + "default.handlebars->27->1384", + "default.handlebars->27->1481" ] }, { @@ -5576,7 +5577,7 @@ "ru": "Подтвердить удаление группы {0}?", "zh-chs": "確認刪除組{0}?", "xloc": [ - "default.handlebars->27->1474" + "default.handlebars->27->1477" ] }, { @@ -5594,8 +5595,8 @@ "zh-chs": "確認刪除用戶{0}?", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->27->1200", - "default.handlebars->27->1389" + "default.handlebars->27->1203", + "default.handlebars->27->1392" ] }, { @@ -5727,7 +5728,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1501" + "default.handlebars->27->1504" ] }, { @@ -5744,7 +5745,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1506" + "default.handlebars->27->1509" ] }, { @@ -5816,7 +5817,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1517" + "default.handlebars->27->1520" ] }, { @@ -5833,7 +5834,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1545" + "default.handlebars->27->1548" ] }, { @@ -5885,7 +5886,7 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->27->1231", + "default.handlebars->27->1234", "default.handlebars->27->184", "default.handlebars->27->493", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" @@ -5940,7 +5941,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1531" + "default.handlebars->27->1534" ] }, { @@ -6200,7 +6201,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1530" + "default.handlebars->27->1533" ] }, { @@ -6233,7 +6234,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->27->1331", + "default.handlebars->27->1334", "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" ] @@ -6269,7 +6270,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1354" + "default.handlebars->27->1357" ] }, { @@ -6320,7 +6321,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1302" + "default.handlebars->27->1305" ] }, { @@ -6355,7 +6356,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1408" + "default.handlebars->27->1411" ] }, { @@ -6681,7 +6682,7 @@ "default-mobile.handlebars->9->84", "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->1255", + "default.handlebars->27->1258", "default.handlebars->27->411", "default.handlebars->27->659", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -6797,7 +6798,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1429" + "default.handlebars->27->1432" ] }, { @@ -6814,8 +6815,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->27->1379", - "default.handlebars->27->1387" + "default.handlebars->27->1382", + "default.handlebars->27->1390" ] }, { @@ -6832,7 +6833,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1446" + "default.handlebars->27->1449" ] }, { @@ -6900,7 +6901,7 @@ "xloc": [ "default-mobile.handlebars->9->254", "default-mobile.handlebars->9->86", - "default.handlebars->27->1257", + "default.handlebars->27->1260", "default.handlebars->27->661" ] }, @@ -6918,7 +6919,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1385" + "default.handlebars->27->1388" ] }, { @@ -6937,7 +6938,7 @@ "xloc": [ "default-mobile.handlebars->9->253", "default-mobile.handlebars->9->85", - "default.handlebars->27->1256", + "default.handlebars->27->1259", "default.handlebars->27->660" ] }, @@ -7041,10 +7042,10 @@ "default.handlebars->27->1017", "default.handlebars->27->1041", "default.handlebars->27->1127", - "default.handlebars->27->1353", - "default.handlebars->27->1358", - "default.handlebars->27->1360", - "default.handlebars->27->1383", + "default.handlebars->27->1356", + "default.handlebars->27->1361", + "default.handlebars->27->1363", + "default.handlebars->27->1386", "default.handlebars->27->451", "default.handlebars->27->452", "default.handlebars->27->603", @@ -7233,6 +7234,7 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ + "default.handlebars->27->1150", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -7269,10 +7271,11 @@ "xloc": [ "default.handlebars->27->1146", "default.handlebars->27->1148", - "default.handlebars->27->1377", - "default.handlebars->27->1455", - "default.handlebars->27->1464", - "default.handlebars->27->1470" + "default.handlebars->27->1149", + "default.handlebars->27->1380", + "default.handlebars->27->1458", + "default.handlebars->27->1467", + "default.handlebars->27->1473" ] }, { @@ -7290,7 +7293,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->27->1198" + "default.handlebars->27->1201" ] }, { @@ -7308,10 +7311,10 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->27->1349", - "default.handlebars->27->1362", - "default.handlebars->27->1417", - "default.handlebars->27->1504", + "default.handlebars->27->1352", + "default.handlebars->27->1365", + "default.handlebars->27->1420", + "default.handlebars->27->1507", "default.handlebars->container->column_l->p2->9" ] }, @@ -7413,7 +7416,7 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->27->1217", + "default.handlebars->27->1220", "default.handlebars->27->985" ] }, @@ -7431,7 +7434,7 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->27->1218", + "default.handlebars->27->1221", "default.handlebars->27->986" ] }, @@ -8203,7 +8206,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->27->1271" + "default.handlebars->27->1274" ] }, { @@ -8220,7 +8223,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1310" + "default.handlebars->27->1313" ] }, { @@ -8306,7 +8309,7 @@ "ru": "Скопировать агент", "zh-chs": "代理重複", "xloc": [ - "default.handlebars->27->1500" + "default.handlebars->27->1503" ] }, { @@ -8340,7 +8343,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1355" + "default.handlebars->27->1358" ] }, { @@ -8514,8 +8517,8 @@ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->314", "default.handlebars->27->1128", - "default.handlebars->27->1152", - "default.handlebars->27->1176" + "default.handlebars->27->1154", + "default.handlebars->27->1179" ] }, { @@ -8549,7 +8552,7 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->27->1173" + "default.handlebars->27->1176" ] }, { @@ -8584,7 +8587,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->27->1165" + "default.handlebars->27->1167" ] }, { @@ -8622,7 +8625,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->27->1183" + "default.handlebars->27->1186" ] }, { @@ -8639,7 +8642,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->27->1174" + "default.handlebars->27->1177" ] }, { @@ -8656,7 +8659,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1384" + "default.handlebars->27->1387" ] }, { @@ -8690,10 +8693,10 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->40", - "default.handlebars->27->1322", - "default.handlebars->27->1404", - "default.handlebars->27->1405", - "default.handlebars->27->1434", + "default.handlebars->27->1325", + "default.handlebars->27->1407", + "default.handlebars->27->1408", + "default.handlebars->27->1437", "default.handlebars->27->266", "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" @@ -8735,7 +8738,7 @@ "en": "Email Traffic", "nl": "E-mailverkeer", "xloc": [ - "default.handlebars->27->1539" + "default.handlebars->27->1542" ] }, { @@ -8770,7 +8773,7 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->27->1401" + "default.handlebars->27->1404" ] }, { @@ -8787,7 +8790,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1328" + "default.handlebars->27->1331" ] }, { @@ -8804,7 +8807,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1402" + "default.handlebars->27->1405" ] }, { @@ -8852,7 +8855,7 @@ "pt": "Ativar códigos de convite", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->27->1202" + "default.handlebars->27->1205" ] }, { @@ -9159,7 +9162,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1332" + "default.handlebars->27->1335" ] }, { @@ -9327,7 +9330,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->27->1276" + "default.handlebars->27->1279" ] }, { @@ -9447,7 +9450,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1524" + "default.handlebars->27->1527" ] }, { @@ -9792,8 +9795,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1326", - "default.handlebars->27->1443" + "default.handlebars->27->1329", + "default.handlebars->27->1446" ] }, { @@ -9879,8 +9882,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1485", - "default.handlebars->27->1487" + "default.handlebars->27->1488", + "default.handlebars->27->1490" ] }, { @@ -10064,8 +10067,8 @@ "default-mobile.handlebars->9->313", "default-mobile.handlebars->9->67", "default.handlebars->27->1026", - "default.handlebars->27->1151", - "default.handlebars->27->1337" + "default.handlebars->27->1153", + "default.handlebars->27->1340" ] }, { @@ -10082,7 +10085,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->27->1175" + "default.handlebars->27->1178" ] }, { @@ -10100,8 +10103,8 @@ "zh-chs": "完整的設備組管理員", "xloc": [ "default.handlebars->27->1091", - "default.handlebars->27->1374", - "default.handlebars->27->1461" + "default.handlebars->27->1377", + "default.handlebars->27->1464" ] }, { @@ -10114,7 +10117,7 @@ "pt": "Direitos completos do dispositivo", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->27->1452" + "default.handlebars->27->1455" ] }, { @@ -10150,7 +10153,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->27->1397" + "default.handlebars->27->1400" ] }, { @@ -10560,7 +10563,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1366" + "default.handlebars->27->1369" ] }, { @@ -10577,7 +10580,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->27->1150" + "default.handlebars->27->1152" ] }, { @@ -10593,7 +10596,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->27->1149" + "default.handlebars->27->1151" ] }, { @@ -10627,7 +10630,7 @@ "ru": "Группы", "zh-chs": "團體", "xloc": [ - "default.handlebars->27->1281", + "default.handlebars->27->1284", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGroups" ] }, @@ -10728,7 +10731,7 @@ "pt": "Total da pilha", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1526" + "default.handlebars->27->1529" ] }, { @@ -10743,7 +10746,7 @@ "pt": "Pilha usada", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1525" + "default.handlebars->27->1528" ] }, { @@ -10916,7 +10919,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->27->1263" + "default.handlebars->27->1266" ] }, { @@ -11362,8 +11365,8 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->27->1204", - "default.handlebars->27->1211", + "default.handlebars->27->1207", + "default.handlebars->27->1214", "default.handlebars->27->281", "default.handlebars->27->303" ] @@ -11399,10 +11402,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->27->1223", - "default.handlebars->27->1229", - "default.handlebars->27->1522", - "default.handlebars->27->1544" + "default.handlebars->27->1226", + "default.handlebars->27->1232", + "default.handlebars->27->1525", + "default.handlebars->27->1547" ] }, { @@ -11752,7 +11755,7 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->27->1219", + "default.handlebars->27->1222", "default.handlebars->27->987" ] }, @@ -12043,8 +12046,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->27->1207", - "default.handlebars->27->1214", + "default.handlebars->27->1210", + "default.handlebars->27->1217", "default.handlebars->27->284", "default.handlebars->27->306" ] @@ -12095,7 +12098,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1499" + "default.handlebars->27->1502" ] }, { @@ -12112,7 +12115,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1493" + "default.handlebars->27->1496" ] }, { @@ -12129,8 +12132,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1307", - "default.handlebars->27->1309" + "default.handlebars->27->1310", + "default.handlebars->27->1312" ] }, { @@ -12147,7 +12150,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1305" + "default.handlebars->27->1308" ] }, { @@ -12164,7 +12167,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1491" + "default.handlebars->27->1494" ] }, { @@ -12181,7 +12184,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1492" + "default.handlebars->27->1495" ] }, { @@ -12295,7 +12298,7 @@ "pt": "Os códigos de convite podem ser usados por qualquer pessoa para associar dispositivos a este grupo de dispositivos usando o seguinte link público:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1209" + "default.handlebars->27->1212" ] }, { @@ -12341,10 +12344,10 @@ "zh-chs": "邀請碼", "xloc": [ "default.handlebars->27->1066", - "default.handlebars->27->1203", - "default.handlebars->27->1208", - "default.handlebars->27->1210", - "default.handlebars->27->1215" + "default.handlebars->27->1206", + "default.handlebars->27->1211", + "default.handlebars->27->1213", + "default.handlebars->27->1218" ] }, { @@ -12462,8 +12465,8 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->27->1274", - "default.handlebars->27->1313", + "default.handlebars->27->1277", + "default.handlebars->27->1316", "default.handlebars->27->386" ] }, @@ -12935,7 +12938,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->27->1282" + "default.handlebars->27->1285" ] }, { @@ -12952,7 +12955,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1409" + "default.handlebars->27->1412" ] }, { @@ -13010,7 +13013,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1413" + "default.handlebars->27->1416" ] }, { @@ -13061,7 +13064,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->27->1292" + "default.handlebars->27->1295" ] }, { @@ -13202,7 +13205,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->27->1558" + "default.handlebars->27->1561" ] }, { @@ -13237,7 +13240,7 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->326", - "default.handlebars->27->1189" + "default.handlebars->27->1192" ] }, { @@ -13254,7 +13257,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->301", - "default.handlebars->27->1157" + "default.handlebars->27->1159" ] }, { @@ -13272,7 +13275,7 @@ "zh-chs": "鏈接", "xloc": [ "default-mobile.handlebars->9->71", - "default.handlebars->27->1235", + "default.handlebars->27->1238", "default.handlebars->container->column_l->p42->p42tbl->1->0->4" ] }, @@ -13710,7 +13713,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1343" + "default.handlebars->27->1346" ] }, { @@ -13727,7 +13730,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->27->1293" + "default.handlebars->27->1296" ] }, { @@ -13744,7 +13747,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->27->1394" + "default.handlebars->27->1397" ] }, { @@ -14219,7 +14222,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1533" + "default.handlebars->27->1536" ] }, { @@ -14303,8 +14306,8 @@ "xloc": [ "default-mobile.handlebars->9->298", "default-mobile.handlebars->9->316", - "default.handlebars->27->1154", - "default.handlebars->27->1178" + "default.handlebars->27->1156", + "default.handlebars->27->1181" ] }, { @@ -14323,8 +14326,8 @@ "xloc": [ "default-mobile.handlebars->9->297", "default-mobile.handlebars->9->315", - "default.handlebars->27->1153", - "default.handlebars->27->1177" + "default.handlebars->27->1155", + "default.handlebars->27->1180" ] }, { @@ -14358,7 +14361,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->27->1342" + "default.handlebars->27->1345" ] }, { @@ -14375,7 +14378,7 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->27->1341" + "default.handlebars->27->1344" ] }, { @@ -14493,7 +14496,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->27->1298" + "default.handlebars->27->1301" ] }, { @@ -14593,7 +14596,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1497" + "default.handlebars->27->1500" ] }, { @@ -14647,7 +14650,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1523" + "default.handlebars->27->1526" ] }, { @@ -14664,7 +14667,7 @@ "ru": "ОЗУ", "zh-chs": "記憶", "xloc": [ - "default.handlebars->27->1514", + "default.handlebars->27->1517", "default.handlebars->27->743", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -14709,7 +14712,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->305", - "default.handlebars->27->1162" + "default.handlebars->27->1164" ] }, { @@ -14797,7 +14800,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1535" + "default.handlebars->27->1538" ] }, { @@ -14814,7 +14817,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1536" + "default.handlebars->27->1539" ] }, { @@ -14913,7 +14916,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1534" + "default.handlebars->27->1537" ] }, { @@ -15167,7 +15170,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1532" + "default.handlebars->27->1535" ] }, { @@ -15268,7 +15271,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->27->1557" + "default.handlebars->27->1560" ] }, { @@ -15598,12 +15601,12 @@ "default.handlebars->27->1013", "default.handlebars->27->1040", "default.handlebars->27->1126", - "default.handlebars->27->1280", - "default.handlebars->27->1348", - "default.handlebars->27->1352", - "default.handlebars->27->1357", - "default.handlebars->27->1359", - "default.handlebars->27->1382", + "default.handlebars->27->1283", + "default.handlebars->27->1351", + "default.handlebars->27->1355", + "default.handlebars->27->1360", + "default.handlebars->27->1362", + "default.handlebars->27->1385", "default.handlebars->27->444", "default.handlebars->27->620", "default.handlebars->27->693", @@ -15645,7 +15648,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1334" + "default.handlebars->27->1337" ] }, { @@ -15814,7 +15817,7 @@ "xloc": [ "default-mobile.handlebars->9->250", "default-mobile.handlebars->9->82", - "default.handlebars->27->1253", + "default.handlebars->27->1256", "default.handlebars->27->657", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -15922,7 +15925,7 @@ "pt": "No Desktop", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->27->1185" + "default.handlebars->27->1188" ] }, { @@ -15935,7 +15938,7 @@ "pt": "Sem acesso à área de trabalho", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->27->1158" + "default.handlebars->27->1160" ] }, { @@ -15952,8 +15955,8 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->27->1270", - "default.handlebars->27->1479", + "default.handlebars->27->1273", + "default.handlebars->27->1482", "default.handlebars->27->691" ] }, @@ -15972,7 +15975,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->303", - "default.handlebars->27->1160" + "default.handlebars->27->1162" ] }, { @@ -15990,7 +15993,7 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->324", - "default.handlebars->27->1187" + "default.handlebars->27->1190" ] }, { @@ -16009,8 +16012,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->9->325", - "default.handlebars->27->1161", - "default.handlebars->27->1188" + "default.handlebars->27->1163", + "default.handlebars->27->1191" ] }, { @@ -16077,7 +16080,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1369" + "default.handlebars->27->1372" ] }, { @@ -16094,7 +16097,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->27->1344" + "default.handlebars->27->1347" ] }, { @@ -16134,10 +16137,10 @@ "default-mobile.handlebars->9->68", "default.handlebars->27->1027", "default.handlebars->27->1092", - "default.handlebars->27->1193", - "default.handlebars->27->1375", - "default.handlebars->27->1453", - "default.handlebars->27->1462" + "default.handlebars->27->1196", + "default.handlebars->27->1378", + "default.handlebars->27->1456", + "default.handlebars->27->1465" ] }, { @@ -16174,7 +16177,7 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->27->1186" + "default.handlebars->27->1189" ] }, { @@ -16192,7 +16195,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->27->1159" + "default.handlebars->27->1161" ] }, { @@ -16208,7 +16211,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1345" + "default.handlebars->27->1348" ] }, { @@ -16225,8 +16228,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1378", - "default.handlebars->27->1465" + "default.handlebars->27->1381", + "default.handlebars->27->1468" ] }, { @@ -16308,7 +16311,7 @@ "pt": "Nenhum dispositivo em comum", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1456" + "default.handlebars->27->1459" ] }, { @@ -16325,7 +16328,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->27->1232" + "default.handlebars->27->1235" ] }, { @@ -16393,7 +16396,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1347" + "default.handlebars->27->1350" ] }, { @@ -16493,7 +16496,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1395" + "default.handlebars->27->1398" ] }, { @@ -16509,7 +16512,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1471" + "default.handlebars->27->1474" ] }, { @@ -16526,7 +16529,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->27->1288" + "default.handlebars->27->1291" ] }, { @@ -16592,10 +16595,10 @@ "default.handlebars->27->1058", "default.handlebars->27->1063", "default.handlebars->27->1065", - "default.handlebars->27->1241", - "default.handlebars->27->1356", - "default.handlebars->27->1414", - "default.handlebars->27->1418", + "default.handlebars->27->1244", + "default.handlebars->27->1359", + "default.handlebars->27->1417", + "default.handlebars->27->1421", "default.handlebars->27->148", "default.handlebars->27->163", "default.handlebars->27->164", @@ -16720,8 +16723,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->27->1221", - "default.handlebars->27->1227" + "default.handlebars->27->1224", + "default.handlebars->27->1230" ] }, { @@ -16751,7 +16754,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1400" + "default.handlebars->27->1403" ] }, { @@ -16764,7 +16767,7 @@ "pt": "Não verificado", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1436" + "default.handlebars->27->1439" ] }, { @@ -16782,7 +16785,7 @@ "zh-chs": "筆記", "xloc": [ "default.handlebars->27->1073", - "default.handlebars->27->1425", + "default.handlebars->27->1428", "default.handlebars->27->497", "default.handlebars->27->532" ] @@ -16817,7 +16820,7 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->27->1220", + "default.handlebars->27->1223", "default.handlebars->27->988", "default.handlebars->container->column_l->p2->p2AccountActions->3->8" ] @@ -16836,7 +16839,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->27->1216" + "default.handlebars->27->1219" ] }, { @@ -16887,7 +16890,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1427" + "default.handlebars->27->1430" ] }, { @@ -16923,7 +16926,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1300" + "default.handlebars->27->1303" ] }, { @@ -16997,7 +17000,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1482" + "default.handlebars->27->1485" ] }, { @@ -17014,7 +17017,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->27->1285" + "default.handlebars->27->1288" ] }, { @@ -17067,7 +17070,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->27->1284" + "default.handlebars->27->1287" ] }, { @@ -17376,7 +17379,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->27->1299" + "default.handlebars->27->1302" ] }, { @@ -17394,8 +17397,8 @@ "zh-chs": "部分設備組權限", "xloc": [ "default.handlebars->27->1090", - "default.handlebars->27->1372", - "default.handlebars->27->1459" + "default.handlebars->27->1375", + "default.handlebars->27->1462" ] }, { @@ -17408,7 +17411,7 @@ "pt": "Direitos Parciais do Dispositivo", "zh-chs": "部分設備權利", "xloc": [ - "default.handlebars->27->1450" + "default.handlebars->27->1453" ] }, { @@ -17444,7 +17447,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1398" + "default.handlebars->27->1401" ] }, { @@ -17478,12 +17481,12 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->27->1323", - "default.handlebars->27->1324", - "default.handlebars->27->1410", - "default.handlebars->27->1412", - "default.handlebars->27->1439", - "default.handlebars->27->1440", + "default.handlebars->27->1326", + "default.handlebars->27->1327", + "default.handlebars->27->1413", + "default.handlebars->27->1415", + "default.handlebars->27->1442", + "default.handlebars->27->1443", "default.handlebars->27->225", "default.handlebars->27->254", "default.handlebars->27->549" @@ -17579,7 +17582,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->27->1441" + "default.handlebars->27->1444" ] }, { @@ -17701,7 +17704,7 @@ "default-mobile.handlebars->9->90", "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->1262", + "default.handlebars->27->1265", "default.handlebars->27->648", "default.handlebars->27->670", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", @@ -17861,8 +17864,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->27->1196", - "default.handlebars->27->1283" + "default.handlebars->27->1199", + "default.handlebars->27->1286" ] }, { @@ -18012,7 +18015,7 @@ "ru": "Действие плагина", "zh-chs": "插件動作", "xloc": [ - "default.handlebars->27->1554", + "default.handlebars->27->1557", "default.handlebars->27->159" ] }, @@ -18234,7 +18237,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->27->1225", + "default.handlebars->27->1228", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -18459,7 +18462,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->27->1248" + "default.handlebars->27->1251" ] }, { @@ -18704,7 +18707,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1527" + "default.handlebars->27->1530" ] }, { @@ -18721,7 +18724,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1325" + "default.handlebars->27->1328" ] }, { @@ -18771,7 +18774,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1333" + "default.handlebars->27->1336" ] }, { @@ -18790,7 +18793,7 @@ "xloc": [ "default-mobile.handlebars->9->251", "default-mobile.handlebars->9->83", - "default.handlebars->27->1254", + "default.handlebars->27->1257", "default.handlebars->27->658" ] }, @@ -18883,7 +18886,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1509" + "default.handlebars->27->1512" ] }, { @@ -18899,7 +18902,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1502" + "default.handlebars->27->1505" ] }, { @@ -18915,8 +18918,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1508", - "default.handlebars->27->1521" + "default.handlebars->27->1511", + "default.handlebars->27->1524" ] }, { @@ -19030,8 +19033,8 @@ "xloc": [ "default-mobile.handlebars->9->299", "default-mobile.handlebars->9->317", - "default.handlebars->27->1155", - "default.handlebars->27->1179" + "default.handlebars->27->1157", + "default.handlebars->27->1182" ] }, { @@ -19084,7 +19087,7 @@ "zh-chs": "遠程網狀用戶", "xloc": [ "default-mobile.handlebars->9->335", - "default.handlebars->27->1199" + "default.handlebars->27->1202" ] }, { @@ -19101,7 +19104,7 @@ "ru": "Удаленный пользователь", "zh-chs": "遠程用戶", "xloc": [ - "default.handlebars->27->1388" + "default.handlebars->27->1391" ] }, { @@ -19119,8 +19122,8 @@ "xloc": [ "default-mobile.handlebars->9->300", "default-mobile.handlebars->9->322", - "default.handlebars->27->1156", - "default.handlebars->27->1184" + "default.handlebars->27->1158", + "default.handlebars->27->1187" ] }, { @@ -19189,8 +19192,8 @@ "ru": "Удалить группу устройств.", "zh-chs": "刪除設備組", "xloc": [ - "default.handlebars->27->1380", - "default.handlebars->27->1477" + "default.handlebars->27->1383", + "default.handlebars->27->1480" ] }, { @@ -19207,7 +19210,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1473" + "default.handlebars->27->1476" ] }, { @@ -19224,7 +19227,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1444" + "default.handlebars->27->1447" ] }, { @@ -19241,7 +19244,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1327" + "default.handlebars->27->1330" ] }, { @@ -19309,7 +19312,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1469" + "default.handlebars->27->1472" ] }, { @@ -19326,7 +19329,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1376" + "default.handlebars->27->1379" ] }, { @@ -19344,9 +19347,9 @@ "zh-chs": "刪除此設備組的用戶權限", "xloc": [ "default.handlebars->27->1093", - "default.handlebars->27->1367", - "default.handlebars->27->1454", - "default.handlebars->27->1463" + "default.handlebars->27->1370", + "default.handlebars->27->1457", + "default.handlebars->27->1466" ] }, { @@ -19367,7 +19370,7 @@ "default-mobile.handlebars->9->87", "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->1258", + "default.handlebars->27->1261", "default.handlebars->27->408", "default.handlebars->27->662", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", @@ -19407,8 +19410,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->51", - "default.handlebars->27->1330", - "default.handlebars->27->1442" + "default.handlebars->27->1333", + "default.handlebars->27->1445" ] }, { @@ -19636,7 +19639,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1399" + "default.handlebars->27->1402" ] }, { @@ -19702,7 +19705,7 @@ "xloc": [ "default-mobile.handlebars->9->245", "default-mobile.handlebars->9->69", - "default.handlebars->27->1233", + "default.handlebars->27->1236", "default.handlebars->27->652" ] }, @@ -20169,7 +20172,7 @@ "zh-chs": "安全", "xloc": [ "default-mobile.handlebars->9->217", - "default.handlebars->27->1423", + "default.handlebars->27->1426", "default.handlebars->27->226", "default.handlebars->27->550", "default.handlebars->27->724" @@ -20189,7 +20192,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1421" + "default.handlebars->27->1424" ] }, { @@ -20219,7 +20222,7 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->27->1250", + "default.handlebars->27->1253", "default.handlebars->27->366", "default.handlebars->27->654", "default.handlebars->27->656", @@ -20243,7 +20246,7 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->27->1249", + "default.handlebars->27->1252", "default.handlebars->27->365", "default.handlebars->27->655", "default.handlebars->meshContextMenu->cxselectnone" @@ -20366,7 +20369,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->327", - "default.handlebars->27->1190" + "default.handlebars->27->1193" ] }, { @@ -20437,7 +20440,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1364" + "default.handlebars->27->1367" ] }, { @@ -20454,7 +20457,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1301" + "default.handlebars->27->1304" ] }, { @@ -20488,7 +20491,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1329" + "default.handlebars->27->1332" ] }, { @@ -20536,7 +20539,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1428" + "default.handlebars->27->1431" ] }, { @@ -20584,7 +20587,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1338" + "default.handlebars->27->1341" ] }, { @@ -20600,7 +20603,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1537" + "default.handlebars->27->1540" ] }, { @@ -20613,7 +20616,7 @@ "pt": "Banco de Dados do Servidor", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1538" + "default.handlebars->27->1541" ] }, { @@ -20632,9 +20635,9 @@ "xloc": [ "default-mobile.handlebars->9->306", "default-mobile.handlebars->9->319", - "default.handlebars->27->1163", - "default.handlebars->27->1181", - "default.handlebars->27->1336" + "default.handlebars->27->1165", + "default.handlebars->27->1184", + "default.handlebars->27->1339" ] }, { @@ -20651,8 +20654,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1294", - "default.handlebars->27->1346" + "default.handlebars->27->1297", + "default.handlebars->27->1349" ] }, { @@ -20669,7 +20672,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1407" + "default.handlebars->27->1410" ] }, { @@ -20686,7 +20689,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1339" + "default.handlebars->27->1342" ] }, { @@ -20703,7 +20706,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1406" + "default.handlebars->27->1409" ] }, { @@ -20720,7 +20723,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1488" + "default.handlebars->27->1491" ] }, { @@ -20754,7 +20757,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1548" + "default.handlebars->27->1551" ] }, { @@ -20771,7 +20774,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1340" + "default.handlebars->27->1343" ] }, { @@ -20890,7 +20893,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1529" + "default.handlebars->27->1532" ] }, { @@ -21207,7 +21210,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->309", - "default.handlebars->27->1166" + "default.handlebars->27->1168" ] }, { @@ -22194,7 +22197,7 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1435", + "default.handlebars->27->1438", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -22264,7 +22267,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->27->1236" + "default.handlebars->27->1239" ] }, { @@ -22866,7 +22869,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1481" + "default.handlebars->27->1484" ] }, { @@ -23933,7 +23936,7 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->27->1192" + "default.handlebars->27->1195" ] }, { @@ -23951,7 +23954,7 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->27->1168", + "default.handlebars->27->1170", "default.handlebars->27->368", "default.handlebars->27->542" ] @@ -23992,7 +23995,7 @@ "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->175", "default.handlebars->27->13", - "default.handlebars->27->1472", + "default.handlebars->27->1475", "default.handlebars->27->364", "default.handlebars->27->41", "default.handlebars->27->42", @@ -24034,7 +24037,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1494" + "default.handlebars->27->1497" ] }, { @@ -24047,7 +24050,7 @@ "pt": "Dispositivo desconhecido", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1451" + "default.handlebars->27->1454" ] }, { @@ -24064,9 +24067,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1373", - "default.handlebars->27->1460", - "default.handlebars->27->1498" + "default.handlebars->27->1376", + "default.handlebars->27->1463", + "default.handlebars->27->1501" ] }, { @@ -24083,7 +24086,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1490" + "default.handlebars->27->1493" ] }, { @@ -24118,7 +24121,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1468" + "default.handlebars->27->1471" ] }, { @@ -24193,7 +24196,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1553" + "default.handlebars->27->1556" ] }, { @@ -24233,8 +24236,8 @@ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->274", "default-mobile.handlebars->9->88", - "default.handlebars->27->1259", - "default.handlebars->27->1267", + "default.handlebars->27->1262", + "default.handlebars->27->1270", "default.handlebars->27->663", "default.handlebars->27->686", "default.handlebars->27->689", @@ -24319,7 +24322,7 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->27->1268", + "default.handlebars->27->1271", "default.handlebars->27->687" ] }, @@ -24337,7 +24340,7 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->27->1269", + "default.handlebars->27->1272", "default.handlebars->27->688" ] }, @@ -24433,8 +24436,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1484", - "default.handlebars->27->1486" + "default.handlebars->27->1487", + "default.handlebars->27->1489" ] }, { @@ -24453,8 +24456,8 @@ "xloc": [ "default-mobile.handlebars->9->331", "default.handlebars->27->1094", - "default.handlebars->27->1295", - "default.handlebars->27->1368", + "default.handlebars->27->1298", + "default.handlebars->27->1371", "default.handlebars->27->182" ] }, @@ -24472,7 +24475,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->27->1296" + "default.handlebars->27->1299" ] }, { @@ -24488,10 +24491,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1303", - "default.handlebars->27->1304", "default.handlebars->27->1306", - "default.handlebars->27->1308" + "default.handlebars->27->1307", + "default.handlebars->27->1309", + "default.handlebars->27->1311" ] }, { @@ -24508,7 +24511,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1503" + "default.handlebars->27->1506" ] }, { @@ -24561,8 +24564,8 @@ "zh-chs": "用戶組", "xloc": [ "default.handlebars->27->1147", - "default.handlebars->27->1351", - "default.handlebars->27->1475" + "default.handlebars->27->1354", + "default.handlebars->27->1478" ] }, { @@ -24595,7 +24598,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1467" + "default.handlebars->27->1470" ] }, { @@ -24612,8 +24615,8 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->27->1195", - "default.handlebars->27->1403" + "default.handlebars->27->1198", + "default.handlebars->27->1406" ] }, { @@ -24630,7 +24633,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1315" + "default.handlebars->27->1318" ] }, { @@ -24647,7 +24650,7 @@ "ru": "Имя пользователя", "zh-chs": "用戶名", "xloc": [ - "default.handlebars->27->1194" + "default.handlebars->27->1197" ] }, { @@ -24665,7 +24668,7 @@ "zh-chs": "用戶名", "xloc": [ "default.handlebars->27->1145", - "default.handlebars->27->1392" + "default.handlebars->27->1395" ] }, { @@ -24700,7 +24703,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1520" + "default.handlebars->27->1523" ] }, { @@ -24794,7 +24797,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->215", - "default.handlebars->27->1321", + "default.handlebars->27->1324", "default.handlebars->27->223", "default.handlebars->27->253", "default.handlebars->27->548", @@ -24853,9 +24856,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1350", - "default.handlebars->27->1361", - "default.handlebars->27->1519", + "default.handlebars->27->1353", + "default.handlebars->27->1364", + "default.handlebars->27->1522", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -24873,7 +24876,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1507" + "default.handlebars->27->1510" ] }, { @@ -24935,7 +24938,7 @@ "pt": "Verificado", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1437" + "default.handlebars->27->1440" ] }, { @@ -25094,7 +25097,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1426" + "default.handlebars->27->1429" ] }, { @@ -25162,8 +25165,8 @@ "xloc": [ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->320", - "default.handlebars->27->1164", - "default.handlebars->27->1182" + "default.handlebars->27->1166", + "default.handlebars->27->1185" ] }, { @@ -25267,8 +25270,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1540", - "default.handlebars->27->1541" + "default.handlebars->27->1543", + "default.handlebars->27->1544" ] }, { @@ -25285,7 +25288,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1542" + "default.handlebars->27->1545" ] }, { @@ -25302,7 +25305,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1543" + "default.handlebars->27->1546" ] }, { @@ -25367,7 +25370,7 @@ "pt": "Quando ativado, os códigos de convite podem ser usados por qualquer pessoa para associar dispositivos a este grupo de dispositivos usando o seguinte link público:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->27->1201" + "default.handlebars->27->1204" ] }, { @@ -25398,7 +25401,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->27->1411" + "default.handlebars->27->1414" ] }, { @@ -26139,7 +26142,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1551" + "default.handlebars->27->1554" ] }, { @@ -26261,7 +26264,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->27->1264" + "default.handlebars->27->1267" ] }, { @@ -26325,8 +26328,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->27->1273", - "default.handlebars->27->1278" + "default.handlebars->27->1276", + "default.handlebars->27->1281" ] }, { @@ -26343,8 +26346,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->27->1275", - "default.handlebars->27->1279" + "default.handlebars->27->1278", + "default.handlebars->27->1282" ] }, { @@ -26378,7 +26381,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1515" + "default.handlebars->27->1518" ] }, { @@ -26558,7 +26561,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1316" + "default.handlebars->27->1319" ] }, { @@ -26624,7 +26627,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->93", - "default.handlebars->27->1265" + "default.handlebars->27->1268" ] }, { @@ -26672,7 +26675,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1550" + "default.handlebars->27->1553" ] }, { @@ -26722,7 +26725,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->1528" + "default.handlebars->27->1531" ] }, { @@ -26738,7 +26741,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1552" ] }, { @@ -26768,7 +26771,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1516" + "default.handlebars->27->1519" ] }, { @@ -26831,8 +26834,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1312", - "default.handlebars->27->1317" + "default.handlebars->27->1315", + "default.handlebars->27->1320" ] }, { @@ -26849,8 +26852,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1314", - "default.handlebars->27->1318" + "default.handlebars->27->1317", + "default.handlebars->27->1321" ] }, { @@ -26863,7 +26866,7 @@ "pt": "utc, hora, tipo, ação, usuário, dispositivo, mensagem", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->27->1277" + "default.handlebars->27->1280" ] }, { @@ -26895,7 +26898,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->27->1245" + "default.handlebars->27->1248" ] }, { @@ -26912,7 +26915,7 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->27->1243" + "default.handlebars->27->1246" ] }, { @@ -26929,7 +26932,7 @@ "ru": "{0} Mб", "zh-chs": "{0} Mb", "xloc": [ - "default.handlebars->27->1244" + "default.handlebars->27->1247" ] }, { @@ -26963,7 +26966,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1433" + "default.handlebars->27->1436" ] }, { @@ -26980,7 +26983,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->27->1242" + "default.handlebars->27->1245" ] }, { @@ -26998,7 +27001,7 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->81", - "default.handlebars->27->1252" + "default.handlebars->27->1255" ] }, { @@ -27015,7 +27018,7 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->27->1237" + "default.handlebars->27->1240" ] }, { @@ -27032,7 +27035,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->27->1240" + "default.handlebars->27->1243" ] }, { @@ -27049,7 +27052,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->27->1416" + "default.handlebars->27->1419" ] }, { @@ -27097,7 +27100,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->27->1238" + "default.handlebars->27->1241" ] }, { @@ -27132,7 +27135,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->27->1239" + "default.handlebars->27->1242" ] }, { @@ -27180,7 +27183,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->27->1287" + "default.handlebars->27->1290" ] }, { @@ -27312,7 +27315,7 @@ "ru": "{0} сессий", "zh-chs": "{0}個會話", "xloc": [ - "default.handlebars->27->1291" + "default.handlebars->27->1294" ] }, { @@ -27432,7 +27435,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->27->1247" + "default.handlebars->27->1250" ] }, { @@ -27448,7 +27451,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->27->1246" + "default.handlebars->27->1249" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index 841b381a..24106523 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -8429,6 +8429,13 @@ var y = ''; for (var i in meshes) { if ((currentUserGroup.links == null) || (currentUserGroup.links[i] == null)) { y += ''; } } x += addHtmlValue("Device Group", '
'); + } else if (userid === 4) { + var y = '', firstMeshId = null; + for (var i in meshes) { y += ''; if (firstMeshId == null) { firstMeshId = meshes[i]._id; } } + x += addHtmlValue("Device Group", ''); + y = ''; + for (var i in nodes) { if (nodes[i].meshid == firstMeshId) { y += ''; } } + x += addHtmlValue("Device", ''); } else { userid = decodeURIComponent(userid); var uname = userid.split('/')[2]; @@ -8442,10 +8449,12 @@ } } x += '' + "Common Devices" + ' |
---|