diff --git a/agents/meshcore.js b/agents/meshcore.js index 6f8f8962..6530b05b 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -2374,7 +2374,7 @@ function createMeshCore(agent) { var response = null; switch (cmd) { case 'help': { // Displays available commands - var fin = '', f = '', availcommands = 'coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,amt,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,amtreset,amtccm,amtacm,amtdeactivate,amtpolicy,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,scanamt,wallpaper,addagentmsg,clearagentmsg'; + var fin = '', f = '', availcommands = 'coredump,service,fdsnapshot,fdcount,startupoptions,alert,agentsize,versions,help,info,osinfo,args,print,type,dbkeys,dbget,dbset,dbcompact,eval,parseuri,httpget,nwslist,plugin,wsconnect,wssend,wsclose,notify,ls,ps,kill,amt,netinfo,location,power,wakeonlan,setdebug,smbios,rawsmbios,toast,lock,users,sendcaps,openurl,amtreset,amtccm,amtacm,amtdeactivate,amtpolicy,getscript,getclip,setclip,log,av,cpuinfo,sysinfo,apf,scanwifi,scanamt,wallpaper,agentmsg'; if (process.platform == 'win32') { availcommands += ',safemode,wpfhwacceleration,uac'; } if (process.platform != 'freebsd') { availcommands += ',vm';} if (require('MeshAgent').maxKvmTileSize != null) { availcommands += ',kvmmode'; } @@ -2389,11 +2389,24 @@ function createMeshCore(agent) { response = "Available commands: \r\n" + fin + "."; break; } - case 'addagentmsg': { - if (args['_'].length != 1) { - response = "Proper usage: addagentmsg \"Alert Message\""; // Display usage + case 'agentmsg': { + if (args['_'].length == 0) { + response = "Proper usage:\r\n agentmsg add \"[message]\" [iconIndex]\r\n agentmsg remove [index]\r\n agentmsg list"; // Display usage } else { - tunnelUserCount.msg[args['_'][0]] = 1; + if ((args['_'][0] == 'add') && (args['_'].length > 1)) { + var msgIndex = 1, iconIndex = 0; + while (tunnelUserCount.msg[msgIndex] != null) { msgIndex++; } + if (args['_'].length >= 3) { try { iconIndex = parseInt(args['_'][2]); } catch (ex) { } } + if (typeof iconIndex != 'number') { iconIndex = 0; } + tunnelUserCount.msg[msgIndex] = { msg: args['_'][1], icon: iconIndex }; + response = 'Agent message ' + msgIndex + ' added.'; + } else if ((args['_'][0] == 'remove') && (args['_'].length > 1)) { + var msgIndex = 0; + try { msgIndex = parseInt(args['_'][1]); } catch (ex) { } + if (tunnelUserCount.msg[msgIndex] == null) { response = "Message not found."; } else { delete tunnelUserCount.msg[msgIndex]; response = "Message removed."; } + } else if (args['_'][0] == 'list') { + response = JSON.stringify(tunnelUserCount.msg, null, 2); + } try { mesh.SendCommand({ action: 'sessions', type: 'msg', value: tunnelUserCount.msg }); } catch (ex) { } } break; diff --git a/package.json b/package.json index 69015530..e90c6449 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "meshcentral", - "version": "0.5.99", + "version": "0.6.0", "keywords": [ "Remote Device Management", "Remote Device Monitoring", @@ -34,8 +34,6 @@ "sample-config-advanced.json" ], "dependencies": { - "archiver": "^4.0.2", - "archiver-zip-encrypted": "^1.0.8", "body-parser": "^1.19.0", "cbor": "^4.1.5", "compression": "^1.7.4", @@ -44,29 +42,14 @@ "express": "^4.17.0", "express-handlebars": "^3.1.0", "express-ws": "^4.0.0", - "image-size": "^0.8.3", "ipcheck": "^0.1.0", - "jwt-simple": "^0.5.6", "minimist": "^1.2.0", - "mongodb": "^3.6.0", "multiparty": "^4.2.1", "nedb": "^1.8.0", "node-forge": "^0.8.4", - "node-rdpjs-2": "^0.3.5", - "node-windows": "^0.1.14", - "otplib": "^10.2.3", - "passport": "^0.4.1", - "passport-azure-oauth2": "^0.1.0", - "passport-github2": "^0.1.12", - "passport-google-oauth20": "^2.0.0", - "passport-reddit": "^0.2.4", - "passport-twitter": "^1.0.4", - "plivo": "^4.7.0", - "saslprep": "^1.0.3", "ws": "^6.2.1", "xmldom": "^0.1.27", - "yauzl": "^2.10.0", - "yubikeyotp": "^0.2.0" + "yauzl": "^2.10.0" }, "devDependencies": {}, "repository": { diff --git a/public/images/notify24.png b/public/images/notify24.png new file mode 100644 index 00000000..d90d29bc Binary files /dev/null and b/public/images/notify24.png differ diff --git a/public/images/notify48.png b/public/images/notify48.png new file mode 100644 index 00000000..47d2b3cf Binary files /dev/null and b/public/images/notify48.png differ diff --git a/public/styles/style.css b/public/styles/style.css index c040e6c3..ce4dc9eb 100644 --- a/public/styles/style.css +++ b/public/styles/style.css @@ -797,6 +797,25 @@ NoMeshesPanel img { background-color:#44F; } +.NotifyIcon1 { width:48px; height:48px; background: url(../images/notify48.png) 0px 0px; } +.NotifyIcon2 { width:48px; height:48px; background: url(../images/notify48.png) -48px 0px; } +.NotifyIcon3 { width:48px; height:48px; background: url(../images/notify48.png) -96px 0px; } +.NotifyIcon4 { width:48px; height:48px; background: url(../images/notify48.png) -144px 0px; } +.NotifyIcon5 { width:48px; height:48px; background: url(../images/notify48.png) -192px 0px; } +.NotifyIcon6 { width:48px; height:48px; background: url(../images/notify48.png) -240px 0px; } +.NotifyIcon7 { width:48px; height:48px; background: url(../images/notify48.png) -288px 0px; } +.NotifyIcon8 { width:48px; height:48px; background: url(../images/notify48.png) -336px 0px; } +.NotifyIcon9 { width:48px; height:48px; background: url(../images/notify48.png) -384px 0px; } +.NotifyIconSmall1 { width:24px; height:24px; background: url(../images/notify24.png) 0px 0px; } +.NotifyIconSmall2 { width:24px; height:24px; background: url(../images/notify24.png) -24px 0px; } +.NotifyIconSmall3 { width:24px; height:24px; background: url(../images/notify24.png) -48px 0px; } +.NotifyIconSmall4 { width:24px; height:24px; background: url(../images/notify24.png) -72px 0px; } +.NotifyIconSmall5 { width:24px; height:24px; background: url(../images/notify24.png) -96px 0px; } +.NotifyIconSmall6 { width:24px; height:24px; background: url(../images/notify24.png) -120px 0px; } +.NotifyIconSmall7 { width:24px; height:24px; background: url(../images/notify24.png) -144px 0px; } +.NotifyIconSmall8 { width:24px; height:24px; background: url(../images/notify24.png) -168px 0px; } +.NotifyIconSmall9 { width:24px; height:24px; background: url(../images/notify24.png) -192px 0px; } + .deviceBatteryLarge { position:absolute; left:10px; diff --git a/translate/translate.json b/translate/translate.json index 2fa7daca..733a23a1 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -192,7 +192,7 @@ "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ "default.handlebars->27->1333", - "default.handlebars->27->1662" + "default.handlebars->27->1670" ] }, { @@ -641,7 +641,7 @@ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->295", "default.handlebars->27->1440", - "default.handlebars->27->1815", + "default.handlebars->27->1827", "default.handlebars->27->811" ] }, @@ -691,7 +691,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->27->1731" + "default.handlebars->27->1739" ] }, { @@ -753,7 +753,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->27->1696" + "default.handlebars->27->1704" ] }, { @@ -1164,7 +1164,7 @@ "zh-chs": "啟用第二因素身份驗證", "xloc": [ "default.handlebars->27->1525", - "default.handlebars->27->1718" + "default.handlebars->27->1726" ] }, { @@ -1642,6 +1642,13 @@ "ru": ":", "zh-chs": ":" }, + { + "en": "", + "xloc": [ + "default.handlebars->27->1797", + "default.handlebars->27->1799" + ] + }, { "cs": "<<", "de": "<<", @@ -1918,7 +1925,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->27->1668" + "default.handlebars->27->1676" ] }, { @@ -2043,7 +2050,7 @@ "zh-chs": "帐户已被锁定", "xloc": [ "default.handlebars->27->1527", - "default.handlebars->27->1665" + "default.handlebars->27->1673" ] }, { @@ -2318,8 +2325,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->27->1642", - "default.handlebars->27->1766" + "default.handlebars->27->1650", + "default.handlebars->27->1774" ] }, { @@ -2354,8 +2361,8 @@ "zh-chs": "添加設備組", "xloc": [ "default.handlebars->27->1365", - "default.handlebars->27->1636", - "default.handlebars->27->1754", + "default.handlebars->27->1644", + "default.handlebars->27->1762", "default.handlebars->27->216" ] }, @@ -2472,7 +2479,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->27->1784" + "default.handlebars->27->1792" ] }, { @@ -2564,7 +2571,7 @@ "xloc": [ "default.handlebars->27->1265", "default.handlebars->27->1364", - "default.handlebars->27->1760", + "default.handlebars->27->1768", "default.handlebars->27->626" ] }, @@ -2625,7 +2632,7 @@ "zh-chs": "添加用戶", "xloc": [ "default.handlebars->27->1264", - "default.handlebars->27->1631" + "default.handlebars->27->1639" ] }, { @@ -2659,7 +2666,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->27->1664" + "default.handlebars->27->1672" ] }, { @@ -2872,7 +2879,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->27->1700" + "default.handlebars->27->1708" ] }, { @@ -2907,7 +2914,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->27->1582" + "default.handlebars->27->1590" ] }, { @@ -3035,7 +3042,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->27->1825" + "default.handlebars->27->1837" ] }, { @@ -3111,7 +3118,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->27->1841" + "default.handlebars->27->1853" ] }, { @@ -3234,7 +3241,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->27->1854" + "default.handlebars->27->1866" ] }, { @@ -3335,7 +3342,7 @@ "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ "default.handlebars->27->1331", - "default.handlebars->27->1661" + "default.handlebars->27->1669" ] }, { @@ -3440,7 +3447,7 @@ "zh-chs": "始終通知", "xloc": [ "default.handlebars->27->1245", - "default.handlebars->27->1709", + "default.handlebars->27->1717", "default.handlebars->27->568" ] }, @@ -3459,7 +3466,7 @@ "zh-chs": "總是提示", "xloc": [ "default.handlebars->27->1246", - "default.handlebars->27->1710", + "default.handlebars->27->1718", "default.handlebars->27->569" ] }, @@ -4069,7 +4076,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->27->1894" + "default.handlebars->27->1906" ] }, { @@ -4165,7 +4172,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->27->1713" + "default.handlebars->27->1721" ] }, { @@ -4482,7 +4489,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->27->1715" + "default.handlebars->27->1723" ] }, { @@ -4499,7 +4506,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->27->1832" + "default.handlebars->27->1844" ] }, { @@ -4516,7 +4523,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->27->1831" + "default.handlebars->27->1843" ] }, { @@ -4654,7 +4661,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->27->1629", + "default.handlebars->27->1637", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4672,7 +4679,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->27->1564" + "default.handlebars->27->1572" ] }, { @@ -4689,7 +4696,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->27->1563" + "default.handlebars->27->1567" ] }, { @@ -4779,7 +4786,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->27->1882" + "default.handlebars->27->1894" ] }, { @@ -4796,7 +4803,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->27->1883" + "default.handlebars->27->1895" ] }, { @@ -4830,7 +4837,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->27->1846" + "default.handlebars->27->1858" ] }, { @@ -4847,7 +4854,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1849" + "default.handlebars->27->1861" ] }, { @@ -4864,7 +4871,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1848" + "default.handlebars->27->1860" ] }, { @@ -4881,7 +4888,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->27->1847" + "default.handlebars->27->1859" ] }, { @@ -4934,7 +4941,7 @@ "zh-chs": "CSV格式", "xloc": [ "default.handlebars->27->1494", - "default.handlebars->27->1555", + "default.handlebars->27->1559", "default.handlebars->27->453" ] }, @@ -4952,7 +4959,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->27->1895" + "default.handlebars->27->1907" ] }, { @@ -5092,7 +5099,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->27->1743" + "default.handlebars->27->1751" ] }, { @@ -5130,7 +5137,7 @@ "xloc": [ "default-mobile.handlebars->9->90", "default.handlebars->27->1190", - "default.handlebars->27->1730" + "default.handlebars->27->1738" ] }, { @@ -5147,14 +5154,14 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->27->1750" + "default.handlebars->27->1758" ] }, { "en": "Change Real Name for {0}", "nl": "Verander echte naam voor {0}", "xloc": [ - "default.handlebars->27->1738" + "default.handlebars->27->1746" ] }, { @@ -5224,7 +5231,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->27->1729" + "default.handlebars->27->1737" ] }, { @@ -5436,7 +5443,7 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->27->1889", + "default.handlebars->27->1901", "default.handlebars->27->963" ] }, @@ -5652,7 +5659,7 @@ "nl": "Wis alle meldingen", "zh-chs": "全部清除", "xloc": [ - "default.handlebars->27->1819" + "default.handlebars->27->1831" ] }, { @@ -5702,7 +5709,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->27->1818" + "default.handlebars->27->1830" ] }, { @@ -5778,7 +5785,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->27->1618" + "default.handlebars->27->1626" ] }, { @@ -5961,8 +5968,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->27->1637", - "default.handlebars->27->1755" + "default.handlebars->27->1645", + "default.handlebars->27->1763" ] }, { @@ -5979,8 +5986,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->27->1643", - "default.handlebars->27->1767" + "default.handlebars->27->1651", + "default.handlebars->27->1775" ] }, { @@ -6019,9 +6026,9 @@ "default-mobile.handlebars->9->402", "default.handlebars->27->1310", "default.handlebars->27->1539", - "default.handlebars->27->1608", - "default.handlebars->27->1657", - "default.handlebars->27->1753", + "default.handlebars->27->1616", + "default.handlebars->27->1665", + "default.handlebars->27->1761", "default.handlebars->27->437", "default.handlebars->27->706", "default.handlebars->27->715" @@ -6105,7 +6112,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->27->1607" + "default.handlebars->27->1615" ] }, { @@ -6122,7 +6129,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->27->1752" + "default.handlebars->27->1760" ] }, { @@ -6136,7 +6143,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->27->1660" + "default.handlebars->27->1668" ] }, { @@ -6150,7 +6157,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->27->1782" + "default.handlebars->27->1790" ] }, { @@ -6217,8 +6224,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->27->1650", - "default.handlebars->27->1773" + "default.handlebars->27->1658", + "default.handlebars->27->1781" ] }, { @@ -6232,8 +6239,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1652", - "default.handlebars->27->1786" + "default.handlebars->27->1660", + "default.handlebars->27->1794" ] }, { @@ -6247,7 +6254,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->27->1775" + "default.handlebars->27->1783" ] }, { @@ -6261,7 +6268,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->27->1778" + "default.handlebars->27->1786" ] }, { @@ -6275,8 +6282,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->27->1776", - "default.handlebars->27->1779" + "default.handlebars->27->1784", + "default.handlebars->27->1787" ] }, { @@ -6524,7 +6531,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->27->1837" + "default.handlebars->27->1849" ] }, { @@ -6541,7 +6548,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->27->1842" + "default.handlebars->27->1854" ] }, { @@ -6618,7 +6625,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->27->1853" + "default.handlebars->27->1865" ] }, { @@ -6635,7 +6642,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->27->1881" + "default.handlebars->27->1893" ] }, { @@ -6763,7 +6770,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->27->1867" + "default.handlebars->27->1879" ] }, { @@ -7075,7 +7082,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->27->1866" + "default.handlebars->27->1878" ] }, { @@ -7109,7 +7116,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->27->1578", + "default.handlebars->27->1586", "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" ] @@ -7145,7 +7152,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->27->1615" + "default.handlebars->27->1623" ] }, { @@ -7196,7 +7203,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->27->1546" + "default.handlebars->27->1550" ] }, { @@ -7231,7 +7238,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->27->1689" + "default.handlebars->27->1697" ] }, { @@ -7552,10 +7559,10 @@ "en": "Default", "nl": "Standaard", "xloc": [ - "default.handlebars->27->1565", - "default.handlebars->27->1611", - "default.handlebars->27->1622", - "default.handlebars->27->1678" + "default.handlebars->27->1573", + "default.handlebars->27->1619", + "default.handlebars->27->1630", + "default.handlebars->27->1686" ] }, { @@ -7706,7 +7713,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->27->1728" + "default.handlebars->27->1736" ] }, { @@ -7723,8 +7730,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->27->1648", - "default.handlebars->27->1658" + "default.handlebars->27->1656", + "default.handlebars->27->1666" ] }, { @@ -7738,7 +7745,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->27->1609" + "default.handlebars->27->1617" ] }, { @@ -7755,7 +7762,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->27->1751" + "default.handlebars->27->1759" ] }, { @@ -7805,7 +7812,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->27->1605" + "default.handlebars->27->1613" ] }, { @@ -7859,7 +7866,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->27->1656" + "default.handlebars->27->1664" ] }, { @@ -7996,10 +8003,10 @@ "default.handlebars->27->1202", "default.handlebars->27->1230", "default.handlebars->27->1313", - "default.handlebars->27->1614", - "default.handlebars->27->1624", - "default.handlebars->27->1625", - "default.handlebars->27->1654", + "default.handlebars->27->1622", + "default.handlebars->27->1632", + "default.handlebars->27->1633", + "default.handlebars->27->1662", "default.handlebars->27->527", "default.handlebars->27->528", "default.handlebars->27->749", @@ -8039,7 +8046,7 @@ "xloc": [ "default-mobile.handlebars->9->256", "default.handlebars->27->1318", - "default.handlebars->27->1796", + "default.handlebars->27->1808", "default.handlebars->27->492", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -8077,7 +8084,7 @@ "zh-chs": "桌面通知", "xloc": [ "default.handlebars->27->1240", - "default.handlebars->27->1704", + "default.handlebars->27->1712", "default.handlebars->27->563" ] }, @@ -8096,7 +8103,7 @@ "zh-chs": "桌面提示", "xloc": [ "default.handlebars->27->1239", - "default.handlebars->27->1703", + "default.handlebars->27->1711", "default.handlebars->27->562" ] }, @@ -8115,7 +8122,7 @@ "zh-chs": "桌面提示+工具欄", "xloc": [ "default.handlebars->27->1237", - "default.handlebars->27->1701", + "default.handlebars->27->1709", "default.handlebars->27->560" ] }, @@ -8148,7 +8155,7 @@ "zh-chs": "桌面工具欄", "xloc": [ "default.handlebars->27->1238", - "default.handlebars->27->1702", + "default.handlebars->27->1710", "default.handlebars->27->561" ] }, @@ -8221,7 +8228,7 @@ "zh-chs": "設備", "xloc": [ "default.handlebars->27->1340", - "default.handlebars->27->1770", + "default.handlebars->27->1778", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -8261,10 +8268,10 @@ "default.handlebars->27->1338", "default.handlebars->27->1339", "default.handlebars->27->1487", - "default.handlebars->27->1640", - "default.handlebars->27->1646", - "default.handlebars->27->1758", - "default.handlebars->27->1805" + "default.handlebars->27->1648", + "default.handlebars->27->1654", + "default.handlebars->27->1766", + "default.handlebars->27->1817" ] }, { @@ -8301,10 +8308,10 @@ "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", "default.handlebars->27->1503", - "default.handlebars->27->1599", - "default.handlebars->27->1627", - "default.handlebars->27->1698", - "default.handlebars->27->1840", + "default.handlebars->27->1607", + "default.handlebars->27->1635", + "default.handlebars->27->1706", + "default.handlebars->27->1852", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8365,7 +8372,7 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->27->1804", + "default.handlebars->27->1816", "default.handlebars->27->269", "default.handlebars->27->747", "player.handlebars->3->9" @@ -8455,7 +8462,7 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->27->671" + "default.handlebars->27->670" ] }, { @@ -8765,8 +8772,8 @@ "nl": "Apparaten", "zh-chs": "设备", "xloc": [ - "default.handlebars->27->1600", - "default.handlebars->27->1628" + "default.handlebars->27->1608", + "default.handlebars->27->1636" ] }, { @@ -8958,10 +8965,10 @@ "en": "Domain", "nl": "Domein", "xloc": [ - "default.handlebars->27->1566", - "default.handlebars->27->1612", - "default.handlebars->27->1621", - "default.handlebars->27->1677", + "default.handlebars->27->1574", + "default.handlebars->27->1620", + "default.handlebars->27->1629", + "default.handlebars->27->1685", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -9337,7 +9344,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->27->1554" + "default.handlebars->27->1558" ] }, { @@ -9420,7 +9427,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->27->1836" + "default.handlebars->27->1848" ] }, { @@ -9454,7 +9461,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->27->1616" + "default.handlebars->27->1624" ] }, { @@ -9485,8 +9492,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->27->1790", - "default.handlebars->27->1810", + "default.handlebars->27->1802", + "default.handlebars->27->1822", "player.handlebars->3->2" ] }, @@ -9977,7 +9984,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->27->1655" + "default.handlebars->27->1663" ] }, { @@ -10032,11 +10039,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->27->1568", - "default.handlebars->27->1681", - "default.handlebars->27->1683", - "default.handlebars->27->1723", - "default.handlebars->27->1739", + "default.handlebars->27->1576", + "default.handlebars->27->1689", + "default.handlebars->27->1691", + "default.handlebars->27->1731", + "default.handlebars->27->1747", "default.handlebars->27->319", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -10170,7 +10177,7 @@ "zh-chs": "電子郵件已驗證", "xloc": [ "default.handlebars->27->1523", - "default.handlebars->27->1675" + "default.handlebars->27->1683" ] }, { @@ -10187,7 +10194,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->27->1574" + "default.handlebars->27->1582" ] }, { @@ -10204,7 +10211,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->27->1676" + "default.handlebars->27->1684" ] }, { @@ -10243,7 +10250,7 @@ "en": "Email verified and forced password reset required.", "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.", "xloc": [ - "default.handlebars->27->1575" + "default.handlebars->27->1583" ] }, { @@ -10256,7 +10263,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->27->1875" + "default.handlebars->27->1887" ] }, { @@ -10354,7 +10361,7 @@ "en": "Enabled", "nl": "Ingeschakeld", "xloc": [ - "default.handlebars->27->1812" + "default.handlebars->27->1824" ] }, { @@ -10378,7 +10385,7 @@ "en": "End Time", "nl": "Eindtijd", "xloc": [ - "default.handlebars->27->1809" + "default.handlebars->27->1821" ] }, { @@ -10634,7 +10641,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->27->1579" + "default.handlebars->27->1587" ] }, { @@ -10941,7 +10948,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->27->1860" + "default.handlebars->27->1872" ] }, { @@ -11154,7 +11161,7 @@ "default-mobile.handlebars->9->167", "default-mobile.handlebars->9->257", "default.handlebars->27->1325", - "default.handlebars->27->1797", + "default.handlebars->27->1809", "default.handlebars->27->236", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -11192,7 +11199,7 @@ "zh-chs": "文件通知", "xloc": [ "default.handlebars->27->1244", - "default.handlebars->27->1708", + "default.handlebars->27->1716", "default.handlebars->27->567" ] }, @@ -11211,7 +11218,7 @@ "zh-chs": "文件提示", "xloc": [ "default.handlebars->27->1243", - "default.handlebars->27->1707", + "default.handlebars->27->1715", "default.handlebars->27->566" ] }, @@ -11372,8 +11379,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->27->1573", - "default.handlebars->27->1748" + "default.handlebars->27->1581", + "default.handlebars->27->1756" ] }, { @@ -11466,8 +11473,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1821", - "default.handlebars->27->1823" + "default.handlebars->27->1833", + "default.handlebars->27->1835" ] }, { @@ -11661,7 +11668,7 @@ "default-mobile.handlebars->9->425", "default.handlebars->27->1211", "default.handlebars->27->1343", - "default.handlebars->27->1585" + "default.handlebars->27->1593" ] }, { @@ -11761,7 +11768,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->27->1669" + "default.handlebars->27->1677" ] }, { @@ -12193,7 +12200,7 @@ "zh-chs": "集體行動", "xloc": [ "default.handlebars->27->1537", - "default.handlebars->27->1606", + "default.handlebars->27->1614", "default.handlebars->27->435", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -12211,7 +12218,7 @@ "en": "Group Identifier", "nl": "Groepsidentificatie", "xloc": [ - "default.handlebars->27->1623" + "default.handlebars->27->1631" ] }, { @@ -12228,7 +12235,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->27->1632" + "default.handlebars->27->1640" ] }, { @@ -12400,7 +12407,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->27->1862" + "default.handlebars->27->1874" ] }, { @@ -12417,7 +12424,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->27->1861" + "default.handlebars->27->1873" ] }, { @@ -13255,8 +13262,8 @@ "xloc": [ "default.handlebars->27->1427", "default.handlebars->27->1435", - "default.handlebars->27->1858", - "default.handlebars->27->1880" + "default.handlebars->27->1870", + "default.handlebars->27->1892" ] }, { @@ -13297,14 +13304,14 @@ "en": "Intel AMT Redirection", "nl": "Intel AMT omleiding", "xloc": [ - "default.handlebars->27->1799" + "default.handlebars->27->1811" ] }, { "en": "Intel AMT WSMAN", "nl": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->27->1798" + "default.handlebars->27->1810" ] }, { @@ -14002,7 +14009,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->27->1835" + "default.handlebars->27->1847" ] }, { @@ -14019,7 +14026,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->27->1829" + "default.handlebars->27->1841" ] }, { @@ -14036,8 +14043,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->27->1551", - "default.handlebars->27->1553" + "default.handlebars->27->1555", + "default.handlebars->27->1557" ] }, { @@ -14054,7 +14061,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->27->1549" + "default.handlebars->27->1553" ] }, { @@ -14071,7 +14078,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->27->1827" + "default.handlebars->27->1839" ] }, { @@ -14088,7 +14095,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->27->1828" + "default.handlebars->27->1840" ] }, { @@ -14422,7 +14429,7 @@ "zh-chs": "JSON格式", "xloc": [ "default.handlebars->27->1496", - "default.handlebars->27->1557", + "default.handlebars->27->1561", "default.handlebars->27->455" ] }, @@ -14939,7 +14946,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->27->1690" + "default.handlebars->27->1698" ] }, { @@ -15002,7 +15009,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->27->1694" + "default.handlebars->27->1702" ] }, { @@ -15190,7 +15197,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->27->1734" + "default.handlebars->27->1742" ] }, { @@ -15229,7 +15236,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->27->1897" + "default.handlebars->27->1909" ] }, { @@ -15660,6 +15667,7 @@ "default-mobile.handlebars->9->72", "default.handlebars->27->1218", "default.handlebars->27->1222", + "default.handlebars->27->1796", "default.handlebars->27->719", "default.handlebars->27->951" ] @@ -15782,7 +15790,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->27->1592" + "default.handlebars->27->1600" ] }, { @@ -15833,7 +15841,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->27->1666" + "default.handlebars->27->1674" ] }, { @@ -16351,7 +16359,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->27->1869" + "default.handlebars->27->1881" ] }, { @@ -16483,7 +16491,7 @@ "en": "Manage Recordings", "nl": "Beheeer opnames", "xloc": [ - "default.handlebars->27->1591" + "default.handlebars->27->1599" ] }, { @@ -16517,7 +16525,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->27->1590" + "default.handlebars->27->1598" ] }, { @@ -16534,7 +16542,7 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->27->1589", + "default.handlebars->27->1597", "default.handlebars->27->651" ] }, @@ -16777,7 +16785,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->27->1833" + "default.handlebars->27->1845" ] }, { @@ -16831,7 +16839,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->27->1859" + "default.handlebars->27->1871" ] }, { @@ -16849,7 +16857,7 @@ "zh-chs": "記憶", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->27->1850", + "default.handlebars->27->1862", "default.handlebars->27->917", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] @@ -16987,7 +16995,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->27->1871" + "default.handlebars->27->1883" ] }, { @@ -17004,7 +17012,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->27->1872" + "default.handlebars->27->1884" ] }, { @@ -17107,7 +17115,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->27->1870" + "default.handlebars->27->1882" ] }, { @@ -17371,7 +17379,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->27->1868" + "default.handlebars->27->1880" ] }, { @@ -17520,7 +17528,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->27->1896" + "default.handlebars->27->1908" ] }, { @@ -17596,7 +17604,7 @@ "en": "Multiplexor", "nl": "Multiplexor", "xloc": [ - "default.handlebars->27->1811" + "default.handlebars->27->1823" ] }, { @@ -17868,11 +17876,11 @@ "default.handlebars->27->1229", "default.handlebars->27->1312", "default.handlebars->27->1502", - "default.handlebars->27->1597", - "default.handlebars->27->1613", - "default.handlebars->27->1620", - "default.handlebars->27->1653", - "default.handlebars->27->1672", + "default.handlebars->27->1605", + "default.handlebars->27->1621", + "default.handlebars->27->1628", + "default.handlebars->27->1661", + "default.handlebars->27->1680", "default.handlebars->27->517", "default.handlebars->27->76", "default.handlebars->27->778", @@ -17915,7 +17923,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->27->1581" + "default.handlebars->27->1589" ] }, { @@ -18270,7 +18278,7 @@ "zh-chs": "找不到活動", "xloc": [ "default.handlebars->27->1478", - "default.handlebars->27->1787", + "default.handlebars->27->1795", "default.handlebars->27->849" ] }, @@ -18414,7 +18422,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->27->1635" + "default.handlebars->27->1643" ] }, { @@ -18431,7 +18439,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->27->1593" + "default.handlebars->27->1601" ] }, { @@ -18547,7 +18555,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->27->1594" + "default.handlebars->27->1602" ] }, { @@ -18564,8 +18572,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->27->1641", - "default.handlebars->27->1759" + "default.handlebars->27->1649", + "default.handlebars->27->1767" ] }, { @@ -18661,8 +18669,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->27->1647", - "default.handlebars->27->1771" + "default.handlebars->27->1655", + "default.handlebars->27->1779" ] }, { @@ -18749,7 +18757,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->27->1596" + "default.handlebars->27->1604" ] }, { @@ -18838,6 +18846,12 @@ "default.handlebars->container->column_l->p42->pluginNoneNotice->0" ] }, + { + "en": "No recordings.", + "xloc": [ + "default.handlebars->27->1798" + ] + }, { "cs": "Žádná práva k serveru", "de": "Keine Serverberechtigungen", @@ -18852,7 +18866,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->27->1667" + "default.handlebars->27->1675" ] }, { @@ -18869,7 +18883,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->27->1765" + "default.handlebars->27->1773" ] }, { @@ -18972,12 +18986,12 @@ "default.handlebars->27->1429", "default.handlebars->27->1448", "default.handlebars->27->1486", - "default.handlebars->27->1617", - "default.handlebars->27->1619", - "default.handlebars->27->1686", - "default.handlebars->27->1695", - "default.handlebars->27->1699", - "default.handlebars->27->1711", + "default.handlebars->27->1625", + "default.handlebars->27->1627", + "default.handlebars->27->1694", + "default.handlebars->27->1703", + "default.handlebars->27->1707", + "default.handlebars->27->1719", "default.handlebars->27->174", "default.handlebars->27->190", "default.handlebars->27->191", @@ -19138,7 +19152,7 @@ "en": "Not on server", "nl": "Niet op de server", "xloc": [ - "default.handlebars->27->1803" + "default.handlebars->27->1815" ] }, { @@ -19155,8 +19169,8 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->27->1673", - "default.handlebars->27->1674" + "default.handlebars->27->1681", + "default.handlebars->27->1682" ] }, { @@ -19173,7 +19187,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->27->1741" + "default.handlebars->27->1749" ] }, { @@ -19191,11 +19205,11 @@ "zh-chs": "筆記", "xloc": [ "default.handlebars->27->1262", - "default.handlebars->27->1719", + "default.handlebars->27->1727", "default.handlebars->27->586", "default.handlebars->27->644", "default.handlebars->27->663", - "default.handlebars->27->670" + "default.handlebars->27->671" ] }, { @@ -19299,7 +19313,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->27->1725" + "default.handlebars->27->1733" ] }, { @@ -19335,7 +19349,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->27->1544" + "default.handlebars->27->1549" ] }, { @@ -19413,7 +19427,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->27->1817" + "default.handlebars->27->1829" ] }, { @@ -19665,7 +19679,7 @@ "xloc": [ "default-mobile.handlebars->9->264", "default.handlebars->27->1533", - "default.handlebars->27->1604", + "default.handlebars->27->1612", "default.handlebars->27->425", "default.handlebars->27->445", "default.handlebars->27->684" @@ -19905,7 +19919,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->27->1670" + "default.handlebars->27->1678" ] }, { @@ -19940,12 +19954,12 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->269", - "default.handlebars->27->1569", - "default.handlebars->27->1570", - "default.handlebars->27->1691", - "default.handlebars->27->1693", - "default.handlebars->27->1744", - "default.handlebars->27->1745", + "default.handlebars->27->1577", + "default.handlebars->27->1578", + "default.handlebars->27->1699", + "default.handlebars->27->1701", + "default.handlebars->27->1752", + "default.handlebars->27->1753", "default.handlebars->27->274", "default.handlebars->27->305", "default.handlebars->27->694", @@ -20056,7 +20070,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->27->1746" + "default.handlebars->27->1754" ] }, { @@ -20384,7 +20398,7 @@ "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", "default.handlebars->27->159", - "default.handlebars->27->1736", + "default.handlebars->27->1744", "default.handlebars->27->943", "default.handlebars->27->946" ] @@ -20399,7 +20413,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->27->1685" + "default.handlebars->27->1693" ] }, { @@ -20413,7 +20427,7 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->27->1735", + "default.handlebars->27->1743", "default.handlebars->27->945" ] }, @@ -20550,7 +20564,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->27->185", - "default.handlebars->27->1893" + "default.handlebars->27->1905" ] }, { @@ -20868,7 +20882,7 @@ "en": "Present on server", "nl": "Aanwezig op de server", "xloc": [ - "default.handlebars->27->1802" + "default.handlebars->27->1814" ] }, { @@ -20984,7 +20998,7 @@ "ru": "Протокол", "zh-chs": "協議", "xloc": [ - "default.handlebars->27->1800", + "default.handlebars->27->1812", "player.handlebars->3->16" ] }, @@ -21292,7 +21306,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->27->1863" + "default.handlebars->27->1875" ] }, { @@ -21309,7 +21323,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->27->1571" + "default.handlebars->27->1579" ] }, { @@ -21350,9 +21364,9 @@ "en": "Real Name", "nl": "Echte naam", "xloc": [ - "default.handlebars->27->1682", - "default.handlebars->27->1684", - "default.handlebars->27->1737" + "default.handlebars->27->1690", + "default.handlebars->27->1692", + "default.handlebars->27->1745" ] }, { @@ -21369,7 +21383,7 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->27->1580" + "default.handlebars->27->1588" ] }, { @@ -21396,7 +21410,7 @@ "en": "Recording Details", "nl": "Opname details", "xloc": [ - "default.handlebars->27->1814" + "default.handlebars->27->1826" ] }, { @@ -21520,7 +21534,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->27->1845" + "default.handlebars->27->1857" ] }, { @@ -21537,7 +21551,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->27->1838" + "default.handlebars->27->1850" ] }, { @@ -21554,8 +21568,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->27->1844", - "default.handlebars->27->1857" + "default.handlebars->27->1856", + "default.handlebars->27->1869" ] }, { @@ -21876,8 +21890,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->27->1651", - "default.handlebars->27->1785" + "default.handlebars->27->1659", + "default.handlebars->27->1793" ] }, { @@ -21891,8 +21905,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->27->1649", - "default.handlebars->27->1772" + "default.handlebars->27->1657", + "default.handlebars->27->1780" ] }, { @@ -21920,7 +21934,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->27->1781" + "default.handlebars->27->1789" ] }, { @@ -21935,7 +21949,7 @@ "zh-chs": "删除用户组权限", "xloc": [ "default.handlebars->27->1403", - "default.handlebars->27->1777" + "default.handlebars->27->1785" ] }, { @@ -21949,7 +21963,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->27->1659" + "default.handlebars->27->1667" ] }, { @@ -21964,7 +21978,7 @@ "zh-chs": "删除用户权限", "xloc": [ "default.handlebars->27->1401", - "default.handlebars->27->1774" + "default.handlebars->27->1782" ] }, { @@ -21981,7 +21995,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->27->1749" + "default.handlebars->27->1757" ] }, { @@ -21998,7 +22012,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->27->1572" + "default.handlebars->27->1580" ] }, { @@ -22085,7 +22099,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->27->1727" + "default.handlebars->27->1735" ] }, { @@ -22102,7 +22116,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->27->1763" + "default.handlebars->27->1771" ] }, { @@ -22116,7 +22130,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->27->1645" + "default.handlebars->27->1653" ] }, { @@ -22133,7 +22147,7 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->27->1639", + "default.handlebars->27->1647", "default.handlebars->27->628" ] }, @@ -22152,9 +22166,9 @@ "zh-chs": "刪除此設備組的用戶權限", "xloc": [ "default.handlebars->27->1279", - "default.handlebars->27->1633", - "default.handlebars->27->1757", - "default.handlebars->27->1769", + "default.handlebars->27->1641", + "default.handlebars->27->1765", + "default.handlebars->27->1777", "default.handlebars->27->629" ] }, @@ -22230,8 +22244,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->27->1577", - "default.handlebars->27->1747" + "default.handlebars->27->1585", + "default.handlebars->27->1755" ] }, { @@ -22473,7 +22487,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->27->1671" + "default.handlebars->27->1679" ] }, { @@ -22733,8 +22747,8 @@ "nl": "SMS", "zh-chs": "短信", "xloc": [ - "default.handlebars->27->1716", - "default.handlebars->27->1721", + "default.handlebars->27->1724", + "default.handlebars->27->1729", "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" ] @@ -22749,7 +22763,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->27->1733" + "default.handlebars->27->1741" ] }, { @@ -23161,7 +23175,7 @@ "xloc": [ "default-mobile.handlebars->9->270", "default-mobile.handlebars->9->360", - "default.handlebars->27->1717", + "default.handlebars->27->1725", "default.handlebars->27->275", "default.handlebars->27->695", "default.handlebars->27->896" @@ -23181,7 +23195,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->27->1714" + "default.handlebars->27->1722" ] }, { @@ -23217,7 +23231,7 @@ "xloc": [ "default.handlebars->27->1458", "default.handlebars->27->1529", - "default.handlebars->27->1602", + "default.handlebars->27->1610", "default.handlebars->27->421", "default.handlebars->27->812", "default.handlebars->27->814", @@ -23245,7 +23259,7 @@ "xloc": [ "default.handlebars->27->1457", "default.handlebars->27->1528", - "default.handlebars->27->1601", + "default.handlebars->27->1609", "default.handlebars->27->420", "default.handlebars->27->813", "default.handlebars->meshContextMenu->cxselectnone" @@ -23331,7 +23345,7 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ "default.handlebars->27->1532", - "default.handlebars->27->1603" + "default.handlebars->27->1611" ] }, { @@ -23472,7 +23486,7 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->27->1722" + "default.handlebars->27->1730" ] }, { @@ -23480,7 +23494,7 @@ "nl": "Stuur een e-mailbericht naar deze gebruiker", "fr": "Envoyer un Mail à cet utilisateur", "xloc": [ - "default.handlebars->27->1724" + "default.handlebars->27->1732" ] }, { @@ -23497,7 +23511,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->27->1630" + "default.handlebars->27->1638" ] }, { @@ -23514,7 +23528,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->27->1545" + "default.handlebars->27->1544" ] }, { @@ -23564,7 +23578,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->27->1576" + "default.handlebars->27->1584" ] }, { @@ -23630,7 +23644,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->27->1726" + "default.handlebars->27->1734" ] }, { @@ -23682,7 +23696,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->27->1586" + "default.handlebars->27->1594" ] }, { @@ -23699,7 +23713,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->27->1873" + "default.handlebars->27->1885" ] }, { @@ -23716,7 +23730,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->27->1874" + "default.handlebars->27->1886" ] }, { @@ -23737,7 +23751,7 @@ "default-mobile.handlebars->9->431", "default.handlebars->27->1355", "default.handlebars->27->1383", - "default.handlebars->27->1583", + "default.handlebars->27->1591", "default.handlebars->27->642", "default.handlebars->27->661" ] @@ -23757,7 +23771,7 @@ "zh-chs": "服務器權限", "xloc": [ "default.handlebars->27->1516", - "default.handlebars->27->1595" + "default.handlebars->27->1603" ] }, { @@ -23774,7 +23788,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->27->1688" + "default.handlebars->27->1696" ] }, { @@ -23791,7 +23805,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->27->1587" + "default.handlebars->27->1595" ] }, { @@ -23808,7 +23822,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->27->1687" + "default.handlebars->27->1695" ] }, { @@ -23825,7 +23839,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->27->1824" + "default.handlebars->27->1836" ] }, { @@ -23859,7 +23873,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->27->1884" + "default.handlebars->27->1896" ] }, { @@ -23876,7 +23890,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->27->1588" + "default.handlebars->27->1596" ] }, { @@ -23998,7 +24012,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->27->1865" + "default.handlebars->27->1877" ] }, { @@ -24039,7 +24053,7 @@ "en": "Session", "nl": "Sessie", "xloc": [ - "default.handlebars->27->1788" + "default.handlebars->27->1800" ] }, { @@ -24425,6 +24439,34 @@ "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7" ] }, + { + "en": "Show for 1 minute", + "xloc": [ + "default.handlebars->27->1547", + "default.handlebars->27->1570" + ] + }, + { + "en": "Show for 10 seconds", + "xloc": [ + "default.handlebars->27->1546", + "default.handlebars->27->1569" + ] + }, + { + "en": "Show for 5 minutes", + "xloc": [ + "default.handlebars->27->1548", + "default.handlebars->27->1571" + ] + }, + { + "en": "Show message until dismissed by user", + "xloc": [ + "default.handlebars->27->1545", + "default.handlebars->27->1568" + ] + }, { "cs": "Zobrazit záznam chyb na serveru", "de": "Server-Fehlerprotokoll anzeigen", @@ -24591,8 +24633,8 @@ "ru": "Размер", "zh-chs": "尺寸", "xloc": [ - "default.handlebars->27->1791", - "default.handlebars->27->1806", + "default.handlebars->27->1803", + "default.handlebars->27->1818", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -25407,8 +25449,8 @@ "en": "Start Time", "nl": "Start tijd", "xloc": [ - "default.handlebars->27->1789", - "default.handlebars->27->1808", + "default.handlebars->27->1801", + "default.handlebars->27->1820", "default.handlebars->27->761" ] }, @@ -25461,8 +25503,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->27->1740", - "default.handlebars->27->1801", + "default.handlebars->27->1748", + "default.handlebars->27->1813", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -26024,7 +26066,7 @@ "xloc": [ "default-mobile.handlebars->9->164", "default.handlebars->27->1322", - "default.handlebars->27->1795", + "default.handlebars->27->1807", "default.handlebars->27->233", "default.handlebars->27->493", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -26063,7 +26105,7 @@ "zh-chs": "終端通知", "xloc": [ "default.handlebars->27->1242", - "default.handlebars->27->1706", + "default.handlebars->27->1714", "default.handlebars->27->565" ] }, @@ -26082,7 +26124,7 @@ "zh-chs": "終端提示", "xloc": [ "default.handlebars->27->1241", - "default.handlebars->27->1705", + "default.handlebars->27->1713", "default.handlebars->27->564" ] }, @@ -26226,7 +26268,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->27->1816" + "default.handlebars->27->1828" ] }, { @@ -27485,9 +27527,9 @@ "default.handlebars->27->1219", "default.handlebars->27->1220", "default.handlebars->27->13", - "default.handlebars->27->1780", - "default.handlebars->27->1793", - "default.handlebars->27->1794", + "default.handlebars->27->1788", + "default.handlebars->27->1805", + "default.handlebars->27->1806", "default.handlebars->27->41", "default.handlebars->27->419", "default.handlebars->27->42", @@ -27527,7 +27569,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->27->1830" + "default.handlebars->27->1842" ] }, { @@ -27544,8 +27586,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->27->1644", - "default.handlebars->27->1768" + "default.handlebars->27->1652", + "default.handlebars->27->1776" ] }, { @@ -27562,9 +27604,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->27->1638", - "default.handlebars->27->1756", - "default.handlebars->27->1834" + "default.handlebars->27->1646", + "default.handlebars->27->1764", + "default.handlebars->27->1846" ] }, { @@ -27581,7 +27623,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->27->1826" + "default.handlebars->27->1838" ] }, { @@ -27616,7 +27658,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->27->1762" + "default.handlebars->27->1770" ] }, { @@ -27705,7 +27747,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->27->1891" + "default.handlebars->27->1903" ] }, { @@ -27955,8 +27997,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->27->1820", - "default.handlebars->27->1822" + "default.handlebars->27->1832", + "default.handlebars->27->1834" ] }, { @@ -27976,8 +28018,8 @@ "default.handlebars->27->1280", "default.handlebars->27->1488", "default.handlebars->27->1517", - "default.handlebars->27->1634", - "default.handlebars->27->1813", + "default.handlebars->27->1642", + "default.handlebars->27->1825", "default.handlebars->27->211", "default.handlebars->27->631" ] @@ -28013,10 +28055,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->27->1547", - "default.handlebars->27->1548", - "default.handlebars->27->1550", - "default.handlebars->27->1552" + "default.handlebars->27->1551", + "default.handlebars->27->1552", + "default.handlebars->27->1554", + "default.handlebars->27->1556" ] }, { @@ -28033,7 +28075,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->27->1839" + "default.handlebars->27->1851" ] }, { @@ -28070,7 +28112,7 @@ "zh-chs": "用戶同意", "xloc": [ "default.handlebars->27->1248", - "default.handlebars->27->1712", + "default.handlebars->27->1720", "default.handlebars->27->571" ] }, @@ -28090,9 +28132,9 @@ "xloc": [ "default.handlebars->27->1336", "default.handlebars->27->1337", - "default.handlebars->27->1610", - "default.handlebars->27->1764", - "default.handlebars->27->1783", + "default.handlebars->27->1618", + "default.handlebars->27->1772", + "default.handlebars->27->1791", "default.handlebars->27->630" ] }, @@ -28127,7 +28169,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->27->1761" + "default.handlebars->27->1769" ] }, { @@ -28152,8 +28194,8 @@ "zh-chs": "用戶標識", "xloc": [ "default.handlebars->27->1397", - "default.handlebars->27->1679", - "default.handlebars->27->1680" + "default.handlebars->27->1687", + "default.handlebars->27->1688" ] }, { @@ -28161,7 +28203,7 @@ "nl": "Gebruikers-ID's", "xloc": [ "default.handlebars->27->1334", - "default.handlebars->27->1663" + "default.handlebars->27->1671" ] }, { @@ -28178,7 +28220,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->27->1559" + "default.handlebars->27->1563" ] }, { @@ -28258,7 +28300,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1856" + "default.handlebars->27->1868" ] }, { @@ -28392,7 +28434,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->268", - "default.handlebars->27->1567", + "default.handlebars->27->1575", "default.handlebars->27->272", "default.handlebars->27->304", "default.handlebars->27->693", @@ -28454,9 +28496,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->27->1598", - "default.handlebars->27->1626", - "default.handlebars->27->1855", + "default.handlebars->27->1606", + "default.handlebars->27->1634", + "default.handlebars->27->1867", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -28474,7 +28516,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->27->1843" + "default.handlebars->27->1855" ] }, { @@ -28566,7 +28608,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->27->1742" + "default.handlebars->27->1750" ] }, { @@ -28670,7 +28712,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->27->1887" + "default.handlebars->27->1899" ] }, { @@ -28738,8 +28780,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->27->1890", - "default.handlebars->27->1892" + "default.handlebars->27->1902", + "default.handlebars->27->1904" ] }, { @@ -28790,7 +28832,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->27->1720" + "default.handlebars->27->1728" ] }, { @@ -28997,8 +29039,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->27->1876", - "default.handlebars->27->1877" + "default.handlebars->27->1888", + "default.handlebars->27->1889" ] }, { @@ -29015,7 +29057,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->27->1878" + "default.handlebars->27->1890" ] }, { @@ -29032,7 +29074,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->27->1879" + "default.handlebars->27->1891" ] }, { @@ -29144,7 +29186,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->27->1692" + "default.handlebars->27->1700" ] }, { @@ -30113,7 +30155,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->27->1888" + "default.handlebars->27->1900" ] }, { @@ -30434,7 +30476,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->27->1851" + "default.handlebars->27->1863" ] }, { @@ -30619,7 +30661,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->27->1560" + "default.handlebars->27->1564" ] }, { @@ -30720,7 +30762,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->27->1584" + "default.handlebars->27->1592" ] }, { @@ -30825,7 +30867,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->27->1886" + "default.handlebars->27->1898" ] }, { @@ -30882,7 +30924,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->1864" + "default.handlebars->27->1876" ] }, { @@ -30899,7 +30941,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->27->1885" + "default.handlebars->27->1897" ] }, { @@ -30930,7 +30972,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->27->1852" + "default.handlebars->27->1864" ] }, { @@ -31001,8 +31043,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->27->1556", - "default.handlebars->27->1561" + "default.handlebars->27->1560", + "default.handlebars->27->1565" ] }, { @@ -31019,8 +31061,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->27->1558", - "default.handlebars->27->1562" + "default.handlebars->27->1562", + "default.handlebars->27->1566" ] }, { @@ -31089,7 +31131,7 @@ "zh-chs": "{0} Kb", "xloc": [ "default.handlebars->27->1450", - "default.handlebars->27->1792" + "default.handlebars->27->1804" ] }, { @@ -31143,7 +31185,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->27->1732" + "default.handlebars->27->1740" ] }, { @@ -31179,7 +31221,7 @@ "xloc": [ "default-mobile.handlebars->9->119", "default.handlebars->27->1460", - "default.handlebars->27->1807" + "default.handlebars->27->1819" ] }, { @@ -31237,7 +31279,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->27->1697" + "default.handlebars->27->1705" ] }, { diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars index add8134f..08c7833b 100644 --- a/views/default-mobile.handlebars +++ b/views/default-mobile.handlebars @@ -140,6 +140,16 @@ float: left; } + .NotifyIconSmall1 { width:24px; height:24px; background: url(../images/notify24.png) 0px 0px; } + .NotifyIconSmall2 { width:24px; height:24px; background: url(../images/notify24.png) -24px 0px; } + .NotifyIconSmall3 { width:24px; height:24px; background: url(../images/notify24.png) -48px 0px; } + .NotifyIconSmall4 { width:24px; height:24px; background: url(../images/notify24.png) -72px 0px; } + .NotifyIconSmall5 { width:24px; height:24px; background: url(../images/notify24.png) -96px 0px; } + .NotifyIconSmall6 { width:24px; height:24px; background: url(../images/notify24.png) -120px 0px; } + .NotifyIconSmall7 { width:24px; height:24px; background: url(../images/notify24.png) -144px 0px; } + .NotifyIconSmall8 { width:24px; height:24px; background: url(../images/notify24.png) -168px 0px; } + .NotifyIconSmall9 { width:24px; height:24px; background: url(../images/notify24.png) -192px 0px; } + .gray { /*filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");*/ /* Firefox 10+, Firefox on Android */ filter: gray; /* IE6-9 */ @@ -2300,15 +2310,19 @@ function showDeviceMessages(nodeid, force, e) { if (e) haltEvent(e); if (xxdialogMode && !force) return false; - var node = null, x = ''; + var node = null, x = '
'; + if (count > 0) setDialogMode(2, "Agent Messages" + ' - ' + EscapeHtml(node.name), 1, null, x, 'MESSAGES-' + node._id); return false; } diff --git a/views/default.handlebars b/views/default.handlebars index 6563f00d..efcb49fb 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -3696,15 +3696,19 @@ function showDeviceMessages(nodeid, force, e) { if (e) haltEvent(e); if (xxdialogMode && !force) return false; - var node = null, x = ''; + var node = null, x = '' + EscapeHtml(msg) + ' |