From bf5be3c1458f5a40f76472996cc905983450e025 Mon Sep 17 00:00:00 2001 From: Ylian Saint-Hilaire Date: Sat, 30 May 2020 17:21:45 -0700 Subject: [PATCH] Added device battery indication --- agents/meshcore.js | 10 + agents/modules_meshcore/amt-mei.js | 12 +- meshagent.js | 9 + public/images/batteries48.png | Bin 0 -> 8413 bytes public/styles/style.css | 17 + translate/translate.json | 2666 ++++++++++++++-------------- views/default.handlebars | 31 +- 7 files changed, 1406 insertions(+), 1339 deletions(-) create mode 100644 public/images/batteries48.png diff --git a/agents/meshcore.js b/agents/meshcore.js index 83051e50..17c7037b 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -2176,6 +2176,16 @@ function createMeshCore(agent) { response = "Available commands: \r\n" + fin + "."; break; } + case 'setbattery': + // require('MeshAgent').SendCommand({ action: 'battery', state: 'dc', level: 55 }); + if ((args['_'].length > 0) && ((args['_'][0] == 'ac') || (args['_'][0] == 'dc'))) { + var b = { action: 'battery', state: args['_'][0] }; + if (args['_'].length == 2) { b.level = parseInt(args['_'][1]); } + require('MeshAgent').SendCommand(b); + } else { + require('MeshAgent').SendCommand({ action: 'battery' }); + } + break; case 'fdsnapshot': require('ChainViewer').getSnapshot().then(function (c) { sendConsoleText(c, this.sessionid); }).parentPromise.sessionid = sessionid; break; diff --git a/agents/modules_meshcore/amt-mei.js b/agents/modules_meshcore/amt-mei.js index 304ac35d..3a724e1c 100644 --- a/agents/modules_meshcore/amt-mei.js +++ b/agents/modules_meshcore/amt-mei.js @@ -27,7 +27,6 @@ function amt_heci() { this._setupPTHI = function _setupPTHI() { this._amt = heci.create(); - this._amt.descriptorMetadata = "amt-pthi"; this._amt.BiosVersionLen = 65; this._amt.UnicodeStringLen = 20; @@ -398,25 +397,20 @@ function amt_heci() { fn.apply(this, opt); }, callback, optional); } - this.getProtocolVersion = function getProtocolVersion(callback) - { + this.getProtocolVersion = function getProtocolVersion(callback) { var optional = []; for (var i = 1; i < arguments.length; ++i) { opt.push(arguments[i]); } - if (!this._tmpSession) { this._tmpSession = heci.create(); this._tmpSession.parent = this;} - this._tmpSession.doIoctl(heci.IOCTL.HECI_VERSION, Buffer.alloc(5), Buffer.alloc(5), function (status, buffer, self, fn, opt) - { + heci.doIoctl(heci.IOCTL.HECI_VERSION, Buffer.alloc(5), Buffer.alloc(5), function (status, buffer, self, fn, opt) { if (status == 0) { var result = buffer.readUInt8(0).toString() + '.' + buffer.readUInt8(1).toString() + '.' + buffer.readUInt8(2).toString() + '.' + buffer.readUInt16BE(3).toString(); opt.unshift(result); fn.apply(self, opt); } - else - { + else { opt.unshift(null); fn.apply(self, opt); } - }, this, callback, optional); } } diff --git a/meshagent.js b/meshagent.js index f2765eef..2ba1c0bd 100644 --- a/meshagent.js +++ b/meshagent.js @@ -1351,6 +1351,15 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) { obj.updateSessions(); break; } + case 'battery': { + // Device battery and power state + if (obj.sessions == null) { obj.sessions = {}; } + if (obj.sessions.battery == null) { obj.sessions.battery = {}; } + if ((command.state == 'ac') || (command.state == 'dc')) { obj.sessions.battery.state = command.state; } else { delete obj.sessions.battery.state; } + if ((typeof command.level == 'number') && (command.level >= 0) && (command.level <= 100)) { obj.sessions.battery.level = command.level; } else { delete obj.sessions.battery.level; } + obj.updateSessions(); + break; + } case 'plugin': { if ((parent.parent.pluginHandler == null) || (typeof command.plugin != 'string')) break; try { diff --git a/public/images/batteries48.png b/public/images/batteries48.png new file mode 100644 index 0000000000000000000000000000000000000000..6d5f74d5796fcac06db61f27084b2f0bdbfa3992 GIT binary patch literal 8413 zcmV<3AR^z1P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!T*{Y5$8m5w`Q#^m)hQKpR7y=$Dor>&8;VDP!fkS_>Qj-- z2Jx1+p29Ew!q3U-S0#sdhj<6&rUd=n-}$^#snnr2+wiF&45gDu4aE@(1)-{5SeDHT zsG(M?^CBu(SzUz|(2&U_5Kn|LJw1*`AARH{H}(e&@3F^z@nt>8!~6Nl@zitY&JC)4 z`NJ=K*;!vLpjI(pbrr;82^={xf%y|Nn4B6xG!`MK4~{JsVZ$&@Y;P4%DpgS`R?#tS zL?SUR7tcNM#9yB~d-lw)3{HJhxl?!#Jn+`r;_SyciYHa0tP008Oimcf9Q^KJ{-uaf5Z-X}nNG@G5x6+waFG|INR;t9TK5hET*$ zyy`t`-y8XU-VRUs?_cxUM&w*>mio%BN2$htaVNGU|tFUN23#+T=%B>nMUHo%&j3Q%|2xg9q;Ka$}#2Z37 z6C+*>u~-P2rV^_M+tn_bw7hDqiblQ8n*gMFT@#ZTO!4?+iUz@kne7U@j!mqsKZjy5 zk7#rVddI+pE8j<}!}jr*$(eDSBHq~ehW}@<51nhCe+J{h z03s@52nMg&V@DB=hUvO}@cT6=1ZX$f*xAhE>g82Dd*L#cFE3(!c@@oa6{kSj1#A3arXXWIDH@EoY4&YJ{nAuaZPO-hGn>3 zb7yOvJ;5~3JLtQ-Azj?>c9% ztq~vwl>nqZ8E>P<3z7KL>ULbUx$Hp?L7##|$cN!n7!$)u%uHr6I+}#fHc;Q&!Oq$W z*4J0CxwQeE9?$8RP#9~JSdWqTUCpMezf2D(U4kDzpN}4rl%!XdvMYEbnceF$0I}fL z9K_-(Ei*_j8^_f25QfJRu+c`Lw2if`H7u{MVm-ITM%G|<%B0v?inwQv>T z5DkDv=vCQ1tLMf);+;EP)5YxdIy5Ak-Hr#5m`3jq#qc<-d^+RebsZXLaT8b8uV8WY z3RbpOQLa~b-5n@u54C0mM< zcH>1fn`K&I6?+AQB8C7zi*_@u5R3iw0oux-0cED#WZdif9n8W!2FkUe9B~7Ba` z-pm}d4MA z511Rrk=Y{%<}8{=2M~38%q~1 zD%tt|*nx}1KcbTG_%#_nQ<$WA5Q~s-3a!y-(~Gv49O>==u+eTaNn_?mPZ|&RkV!Zg z8B&mr^Vo=j5FehO)-4+FGYaB)``=$Yk0%umyC@m5NoA7kYSKugqwF#rH1q}&tP)Cv zBFd#QgZUZ^dUOyk6!ju86u?k6gcxJzP=syMJj5Ul&#Ca_`{x&NtApixfwx~e9zG{_ z|BBB>Xv#t2eg~m5CakFYm`jYRrl;Siie4(k1=~F6+|Q( zgeSpXLTjPis~~R_k#84JX!C(~%c!Bsu2Y8-ry-_n1ky|i5;oM3!+S`qmw+dt$bCwC z5I^ccc$U{NYQTt9QP=iR_3WUc?4ah|gB~cLo2bAuqQf^~K$~m>**XwmNabZhaPvoY zgWOHLYpZ1Z>Y9j!@(FlIEO`
8asiE`)X_ha29pQtSNx4fvh9$+9+m!Su*&&$#S zAIT;p^YP)TR2NS6my*Pj{asHYum{fbyvUB%$zVVCSf0>F5AUO=7w_(8tmtPC;PVro zxQdG@ZR@vB_LnYNuCafg1}77i?CbTie_h<&_H|+U8>smAux?+$Rc8rH$_kd%Rb2J1 zV#&MW>Q&zgR=msD^sityw25kX7fmK3rjIck>;K@i;=#eU;_@wmupAIDO^r?s;B#`hENt ztn43mK>KYF3=)+giX<~$l2&D1a1|Gu>S9SbxCgX~{`qe$E{7DRcAh56>K+PO4%_Mm zayAp5?gmQAE_AI7GhBxiZNQG{eWfR{sAjkUJybz8NY5JP@qs)F{t}wL20E$<+rwb} zO~O)_pfa4auh&E#!r-B}4^_(R2z&5B?LT<;xEB+`xKIc0F^}t$f1i*%-+-LgR4!=% zAy~5RrOGwD0cQXBeM9Jb$G-N7DcG(daKGo3>svl3WcEt?nzL zrj*fA8?gKayb%jpl!;G_No5QJRk%#=9wknM>0hLaZqz_K+C-CGrXH=K9cjV}8L*kj zzZt|OsEA}!H#f zwp=6VtwcP>O-Xu}i0hvAW~aW@b-W63q1^LcTawCP{r;L4_n6mitTX zdL7gLvKhx^lMQ_lIV9*^5W{R^eQOoD+$Jjd3aplmkQK+MGKFKo6PSyf#$4k72@@#dvoH!}=s5g(Ny_Hddco#lpplc=qxFnz}wfdwq(+ zBxA(W&ug5_3-gkMh8o`mp2_jrIWY$vCxI-w9)J}P`5GN!%&_9LCjIjP}NnF-MSSrVuJeVdp%kEY)y%@mXA0dIncEo`Y_@z6tuUS#V27 zmy zh_&JfHKWiPemLwE+YQrw_jRwfi}m6XR*S^1tfSekL*6y`L69Hr*7}v97aH;JZ$?nG ze1oMImp27L_r0cg!m3(CQQO6ivVje21)Ih)cI-`*Rr%J20UO>y#VcA_dYyaf0W0}+|2+N!86es!o z^*&Qo@y$|Tu=LX88bRGb`g=4u>2{7T-eARD7N#O-vwN<2D=7Qv%}6x)hNtZ8qUw}j zcF5PIa0c<#%|t?i z4h*!>K&>a=zi(o#vWUxj=W!|b6fSH%iHlqR4+}fr$Cdm=Zo7i*#yax)HmYqJO@|n^ z7{L#Qyk~EvKVTQ&13oZBx7<|m{%ji$CaQQ}w1oG?%6NaKi3i8b!5%lt^B(jbkDT92 zIFsbu(zcKf??8`Np|}I*{{FyuJdJF82qQ9Zo`|^v=JHe6R6NY(I5LSOGTbKG9WI4;o(pi5h-P0JRD{z zD$6Xn?b<#OYCMEkI)KCkNqi)Z^pPaApuF#OD5q8zNUFg@b>H~9wOHKk=NHqcbZ$+< z*Fg*_jS)+epP0y-{PMD^flh}RGqqpJPgF$>ZkL~fP;Ce0!Xle|p&=6vQ7(#&%{4yv`)m)W9bb81AdVt%gQV(#QJ8&K)Ipb0HE6B;= zNz9DSU_3iXjNkz6%`LOJ6^1kltYO!JtE#%xeikki6z0PYxP+p*TydFKF!|Ya7c4%`OBpk`t+Js@`=s9;?0>UnGTM3H8 zQYnzkd3cmPuG`_Z9XLJi*Dau9R=IzR=apDcJo58oHBAFMJ2^Brbzqy`u)=t=HHnGd z9Ok_DVJ>h6bKz4s8a;v8=y4p0&a<4yk?=fb0`r*iP+fJdSj63W1Fz8jB`2 z7PfKu^5xh4!1-$_Zx8km9%&*pUxyR!;a9iEQ0cw2p{Cb_pfdbovwOCCykI8}zjqTp z&l*X%?h?+U6yf*P5cIQAL7lN*YoIz~#yWyp1p%!HpO<81Hm*2(E}0#>LK5pFafjKX zkhCxDP75o0OITl9Lw>CSv&e2=PhiBF#+-5nCw*seJa|8jhwsOU$o-gSDRm+4ta=JZ zddD%~W5a(DJKA$7`Bu^N714nXyKBMAVBK#7 z5Hdp0T7D?Hf{t#Id}ZWYIjpy?;MwMrxY+m}p4Fegy1jrJ=;aUPmXh>181b^Vj63+P z^&p2(=jnt$JBTg!N85*xO6=RbWaTpPZ4#73N?lbWqTXD?G0>Ju3}~P zIV^2m!j+9nSlqaXE4fR!y1RhY(jwNYi`Zx^VY9J}J%%BbP64`8M_0M^7~Y`(9|$p? zr}z9^-G^`GU;Ya&w?N*8URDZ2lD%cAw(5 z1#HxovD?^0xs``*Hqf*C-PWPpULFcsc)a1o|JZtEZ(rR&P#O4_+{#aqMcVXkxg64q zix|0Z0qKhuF?8vYtHacZXP?FN(h|nDwva6pkg8S@Yc$-SBdbExeNrAEXJ6v5J?}(v z=qN@fl87dg2t;D;OdOGr;u26}dt{OVk6a;DUK&OW^53iFCR>6bcO# zOF*?2Lqi|ux?@nh^N7aN7)l2*Jgj1b#2XnV0jW}EG71UlMJ(<|D3X8{8i(qeXBTo5 zEn^hBdp@kKn^@m$z%Xw1QiT}Gz4Ur-ZoGG>U3{+j>RzmN2`XK(blG7NDoMg6*k#Aq zbw^0nD3@dOq)B$+!zA$-_Z=gl$rq&P(qhy&-CK&=hImYt`wx?xBfGmulE6YzmFwMZ ze;`J?i5z3S<>eAJfSsLT)aoRfa~k331PPkL*jN-(lOaq`QCUv093P7yot4?|T$tNRd|#zUyJ9z>=7UKA_uK%q2+ z!k&j-a}$N#EA+;z(3@3yPMKzf828eV9LimjK0z7qB^d|CNUTsi4vnQ6i@`%xSXa2s z9pl+Axz4Q*RJO~09yyM6jVkjz#nNdcN!%pK?IU6LW&Z^inK93@bacCUbj>xG?PchV zJ=7{C6!H~%)(Whd?Ry!2=6w*L%kYu`j}_ht9ruRO-|hd>nO9?k^9@!AIeCIoAES6FInR<#8S2-C;cUQFeVk z?9t;@W@llXJPA9S?R!TVa1<2+2G~h+KVDg1gpOfz3npZEkJR3L2<=$De+sGl_9TSg5;?$YI>@YjuWr9;=4BBAK z*y4JF#4|}alitvroJ5Dj6Ya7t+9CN&cHu@QgEm#C=d9EFR_I0ZB<>EAtQ~g6`CJYG zV)&U*DT=%-5I|G+p<{a77YC$ImTvjg$Bhm>slu>9rn2eJ^CWgC-H13?+mf$X>9JkB zzP=K1AC5d79xj&e_4pvK@5z6&IK+GTayvYaMXy*TNN!;Po0l$OdufUBUmjIv?oE=c z#l%NHdK681R{hKww9cMIOG>KFu3Kj}-Xv-3OpYpyPxA~7wurXIglp~md2D|7yC}*S zD%VBmg;j3=9yN(_SxD+dr^Ckf*jOg{LRM+x^(q%Gdc*pCVdG?(c7;xt-df&X;&lWA zY@o*rui}T*Vozb(=yeA3oQe)!)8o;u9=y@A`dZ!H-WPXIg@38GC0}N!2&e(1lUam< z!9zSb@g2ldKl(F2b8eXAk~!dI%rY!fEYf?*fihWbheVbC$RHEdnk1RQZoSQ<${?}Z z^oVT&8azfOscqG2XzuQ!xwVD*+8S~@JE-V791`>RLl5C6AA3yM+T1#q9Uj5u=bm%N zL#4sNfa*pI(ukJsFoOr=0Gef+^tC!KSOn1JeV3hl4DteC1W9v+`DyYamglM#R(|N;rUb$!P zL}or(G`+E`kg2ZQx&fnZ!Km`y)MR)rh_rtk@BiEX0F&8iq++Q@C3FtpJ6w@hUsw=Bf}Q+GMn9VkDk?W)o43hW|ArQ;(CfURMi0F%EtyBEeqsf^?kpdY6xdv^*9^2v7CLnY zQEwa*(PKC{b_S=9pT-A&>O+TkcNotl=)QdU)1P+EfBox7kc?A|KZmJ3InjWiGNp6h zMfVA_uQF+Dk6yIJ_;rh(v_P^p>0w707ECCLb6#wGq|K&~b ze&x6Rwe!Ee^EH@i6Tvh+cT8iq35 z#M2l@-*@yZe)!aT@bQ2C3x{}j3GW3275T4!@CS~kP(X8i9hKEpwCPdBJN8IEIZC{x z3{A;}xMXEr<_eVzUu9Pw86S6v`N2#}9uXijk2S%*~y_^z<=q_v1q!`p9kZKKG^H zbMmcitmc=nvb}_AqY9H@Oo#D;#6U8W^EF}jC3BWax1{+rgtZtZho^D+$Qc|NI||j( z@Zo>>=po)+#Jho@`|`)X{o9U7qE@%J(PVesW`^Ho7tTJ{B@PY1oq^fQL@E%8AjAYI z!Hj>D3Du8(>|?iW)Xn5Kf8*Dk-1a&>ViCWH~fyfgw$liA@SZfu!I zW$1OY7@wHNqmTaMmxcMCKmVVcd~FB0{3a^33L4D@^mdEQ>(KaYT0FhE*XRD$NPa{& zlt?2L&0r{+#?;6ZKJv&vI>b95cMI>91ifA!|LkX-5)&XHs(4fega|WJj;GVe(rZ5W z(T~2Y2ECa4#((^@v%8xkVe9m$9XE`K#u6AB%3yqa5+C{Le|AUlKKoyO&DqZHxYN|g zzm4%KGXH%XX&S-A$T&XwQ$Kr%_cG+p-~s<1vcWKp+gfg&00000NkvXXu0mjfFKT0Z literal 0 HcmV?d00001 diff --git a/public/styles/style.css b/public/styles/style.css index c8c5f981..a52b4be1 100644 --- a/public/styles/style.css +++ b/public/styles/style.css @@ -784,6 +784,23 @@ NoMeshesPanel img { background-color:#44F; } +.deviceBatteryLarge { + position:absolute; + left:10px; + top:140px; + width:28px; + height:48px; + border:none; + box-shadow:none; +} + +.deviceBatteryLarge1 { background: url(../images/batteries48.png) 0px 0px; } +.deviceBatteryLarge2 { background: url(../images/batteries48.png) -28px 0px; } +.deviceBatteryLarge3 { background: url(../images/batteries48.png) -56px 0px; } +.deviceBatteryLarge4 { background: url(../images/batteries48.png) -84px 0px; } +.deviceBatteryLarge5 { background: url(../images/batteries48.png) -112px 0px; } +.deviceBatteryLarge6 { background: url(../images/batteries48.png) -140px 0px; } + .deviceNotifyLargeDot { text-align:center; position:absolute; diff --git a/translate/translate.json b/translate/translate.json index d7801cd6..9c0da18f 100644 --- a/translate/translate.json +++ b/translate/translate.json @@ -14,8 +14,8 @@ "ru": " + CIRA", "zh-chs": " + CIRA", "xloc": [ - "default.handlebars->25->1185", - "default.handlebars->25->1187" + "default.handlebars->25->1187", + "default.handlebars->25->1189" ] }, { @@ -174,7 +174,7 @@ "ru": " Может быть использована подсказка пароля, но не рекоммендуется.", "zh-chs": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->25->1111" + "default.handlebars->25->1113" ] }, { @@ -191,8 +191,8 @@ "ru": " Для добавления в группу устройств, пользователь должен зайти на сервер хотя бы один раз.", "zh-chs": " 用戶需要先登錄到該服務器一次,然後才能將其添加到設備組。", "xloc": [ - "default.handlebars->25->1260", - "default.handlebars->25->1573" + "default.handlebars->25->1262", + "default.handlebars->25->1575" ] }, { @@ -377,7 +377,7 @@ "ru": "* Оставьте пустым для установления случайного пароля каждому устройству.", "zh-chs": "*保留空白以為每個設備分配一個隨機密碼。", "xloc": [ - "default.handlebars->25->1232" + "default.handlebars->25->1234" ] }, { @@ -411,7 +411,7 @@ "zh-chs": ",", "xloc": [ "default-mobile.handlebars->9->431", - "default.handlebars->25->1326" + "default.handlebars->25->1328" ] }, { @@ -446,7 +446,7 @@ "ru": ", MQTT онлайн", "zh-chs": ",MQTT在線", "xloc": [ - "default.handlebars->25->854" + "default.handlebars->25->856" ] }, { @@ -463,7 +463,7 @@ "ru": ", Soft-KVM", "zh-chs": ",軟KVM", "xloc": [ - "default.handlebars->25->700" + "default.handlebars->25->702" ] }, { @@ -482,9 +482,9 @@ "xloc": [ "default-mobile.handlebars->9->273", "default-mobile.handlebars->9->282", - "default.handlebars->25->707", - "default.handlebars->25->738", - "default.handlebars->25->750", + "default.handlebars->25->709", + "default.handlebars->25->740", + "default.handlebars->25->752", "xterm.handlebars->9->6" ] }, @@ -509,7 +509,7 @@ { "en": ", for this link to work you must download MeshCentral Router run it and click the install button.", "xloc": [ - "default.handlebars->25->664" + "default.handlebars->25->666" ] }, { @@ -567,7 +567,7 @@ "en": ", {0} watching", "nl": ", {0} kijken", "xloc": [ - "default.handlebars->25->701" + "default.handlebars->25->703" ] }, { @@ -624,9 +624,9 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->284", - "default.handlebars->25->1367", - "default.handlebars->25->1721", - "default.handlebars->25->752" + "default.handlebars->25->1369", + "default.handlebars->25->1723", + "default.handlebars->25->754" ] }, { @@ -675,7 +675,7 @@ "ru": "1 активная сессия", "zh-chs": "1個活動會話", "xloc": [ - "default.handlebars->25->1639" + "default.handlebars->25->1641" ] }, { @@ -694,14 +694,14 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->435", - "default.handlebars->25->1386" + "default.handlebars->25->1388" ] }, { "en": "1 connection", "nl": "1 verbinding", "xloc": [ - "default.handlebars->25->703" + "default.handlebars->25->705" ] }, { @@ -737,7 +737,7 @@ "ru": "1 группа", "zh-chs": "1組", "xloc": [ - "default.handlebars->25->1604" + "default.handlebars->25->1606" ] }, { @@ -809,7 +809,7 @@ "ru": "Еще 1 пользователь не показан, используйте поиск чтобы найти пользователей...", "zh-chs": "未再顯示1個用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1421" + "default.handlebars->25->1423" ] }, { @@ -864,7 +864,7 @@ "default-mobile.handlebars->9->160", "default-mobile.handlebars->9->163", "default-mobile.handlebars->9->166", - "default.handlebars->25->1425", + "default.handlebars->25->1427", "default.handlebars->25->210", "default.handlebars->25->213", "default.handlebars->25->216", @@ -1136,8 +1136,8 @@ "ru": "двухфакторная аутентификация включена", "zh-chs": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->25->1438", - "default.handlebars->25->1626" + "default.handlebars->25->1440", + "default.handlebars->25->1628" ] }, { @@ -1502,7 +1502,7 @@ "ru": "7-дневная статистика работы", "zh-chs": "7天電源狀態", "xloc": [ - "default.handlebars->25->633" + "default.handlebars->25->635" ] }, { @@ -1742,7 +1742,7 @@ "zh-chs": "ACM", "xloc": [ "default-mobile.handlebars->9->220", - "default.handlebars->25->489" + "default.handlebars->25->491" ] }, { @@ -1849,7 +1849,7 @@ "ru": "Отказано в доступе", "zh-chs": "拒絕訪問", "xloc": [ - "default.handlebars->25->855" + "default.handlebars->25->857" ] }, { @@ -1884,7 +1884,7 @@ "ru": "Доступ к файлам сервера", "zh-chs": "訪問服務器文件", "xloc": [ - "default.handlebars->25->1579" + "default.handlebars->25->1581" ] }, { @@ -1959,8 +1959,8 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->25->1120", "default.handlebars->25->1122", + "default.handlebars->25->1124", "default.handlebars->25->460", "default.handlebars->25->462" ] @@ -2008,8 +2008,8 @@ "ru": "Аккаунт заблокирован", "zh-chs": "帐户已被锁定", "xloc": [ - "default.handlebars->25->1440", - "default.handlebars->25->1576" + "default.handlebars->25->1442", + "default.handlebars->25->1578" ] }, { @@ -2097,7 +2097,7 @@ "ru": "Действиe", "zh-chs": "行動", "xloc": [ - "default.handlebars->25->860", + "default.handlebars->25->862", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2115,8 +2115,8 @@ "ru": "Файл действий", "zh-chs": "動作文件", "xloc": [ - "default.handlebars->25->676", - "default.handlebars->25->678" + "default.handlebars->25->678", + "default.handlebars->25->680" ] }, { @@ -2136,7 +2136,7 @@ "default-mobile.handlebars->9->237", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->25->534", + "default.handlebars->25->536", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -2193,9 +2193,9 @@ "default-mobile.handlebars->9->215", "default-mobile.handlebars->9->217", "default-mobile.handlebars->9->340", - "default.handlebars->25->482", "default.handlebars->25->484", - "default.handlebars->25->818" + "default.handlebars->25->486", + "default.handlebars->25->820" ] }, { @@ -2212,8 +2212,8 @@ "ru": "Активация", "zh-chs": "激活", "xloc": [ - "default.handlebars->25->1198", "default.handlebars->25->1200", + "default.handlebars->25->1202", "default.handlebars->25->236", "default.handlebars->25->238" ] @@ -2232,7 +2232,7 @@ "ru": "Активный пользователь", "zh-chs": "活動用戶{0}", "xloc": [ - "default.handlebars->25->509" + "default.handlebars->25->511" ] }, { @@ -2249,7 +2249,7 @@ "ru": "Добавить агент", "zh-chs": "添加代理", "xloc": [ - "default.handlebars->25->1202", + "default.handlebars->25->1204", "default.handlebars->25->240" ] }, @@ -2284,8 +2284,8 @@ "ru": "Добавить устройство", "zh-chs": "添加設備", "xloc": [ - "default.handlebars->25->1553", - "default.handlebars->25->1672" + "default.handlebars->25->1555", + "default.handlebars->25->1674" ] }, { @@ -2302,7 +2302,7 @@ "ru": "Добавить событие к устройству", "zh-chs": "添加設備事件", "xloc": [ - "default.handlebars->25->614" + "default.handlebars->25->616" ] }, { @@ -2319,9 +2319,9 @@ "ru": "Добавить группу устройств", "zh-chs": "添加設備組", "xloc": [ - "default.handlebars->25->1292", - "default.handlebars->25->1547", - "default.handlebars->25->1660", + "default.handlebars->25->1294", + "default.handlebars->25->1549", + "default.handlebars->25->1662", "default.handlebars->25->198" ] }, @@ -2336,7 +2336,7 @@ "nl": "Machtigingen voor apparaatgroep toevoegen", "zh-chs": "添加设备组权限", "xloc": [ - "default.handlebars->25->1289" + "default.handlebars->25->1291" ] }, { @@ -2352,8 +2352,8 @@ "ru": "Добавить разрешения для устройства", "zh-chs": "添加设备权限", "xloc": [ - "default.handlebars->25->1294", - "default.handlebars->25->1296" + "default.handlebars->25->1296", + "default.handlebars->25->1298" ] }, { @@ -2438,7 +2438,7 @@ "ru": "Добавить участие", "zh-chs": "添加會員", "xloc": [ - "default.handlebars->25->1690" + "default.handlebars->25->1692" ] }, { @@ -2476,8 +2476,8 @@ "default.handlebars->25->135", "default.handlebars->25->138", "default.handlebars->25->139", - "default.handlebars->25->888", - "default.handlebars->25->889" + "default.handlebars->25->890", + "default.handlebars->25->891" ] }, { @@ -2495,7 +2495,7 @@ "zh-chs": "添加用戶", "xloc": [ "default-mobile.handlebars->9->380", - "default.handlebars->25->571" + "default.handlebars->25->573" ] }, { @@ -2511,7 +2511,7 @@ "ru": "Добавить разрешения для пользовательских устройств", "zh-chs": "添加用户设备权限", "xloc": [ - "default.handlebars->25->1299" + "default.handlebars->25->1301" ] }, { @@ -2528,10 +2528,10 @@ "ru": "Добавить группу пользователей", "zh-chs": "添加用戶組", "xloc": [ - "default.handlebars->25->1192", - "default.handlebars->25->1291", - "default.handlebars->25->1666", - "default.handlebars->25->572" + "default.handlebars->25->1194", + "default.handlebars->25->1293", + "default.handlebars->25->1668", + "default.handlebars->25->574" ] }, { @@ -2545,7 +2545,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep toevoegen", "zh-chs": "添加用户组设备权限", "xloc": [ - "default.handlebars->25->1301" + "default.handlebars->25->1303" ] }, { @@ -2590,8 +2590,8 @@ "ru": "Добавить пользователей", "zh-chs": "添加用戶", "xloc": [ - "default.handlebars->25->1191", - "default.handlebars->25->1542" + "default.handlebars->25->1193", + "default.handlebars->25->1544" ] }, { @@ -2608,7 +2608,7 @@ "ru": "Добавить пользователей в группу устройств", "zh-chs": "將用戶添加到設備組", "xloc": [ - "default.handlebars->25->1288" + "default.handlebars->25->1290" ] }, { @@ -2625,7 +2625,7 @@ "ru": "Добавить пользователей в группу", "zh-chs": "將用戶添加到用戶組", "xloc": [ - "default.handlebars->25->1575" + "default.handlebars->25->1577" ] }, { @@ -2676,7 +2676,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в интернете.", "zh-chs": "添加位於互聯網上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1193", + "default.handlebars->25->1195", "default.handlebars->25->229" ] }, @@ -2694,7 +2694,7 @@ "ru": "Добавить новый Intel® AMT компьютер, находящийся в локальной сети.", "zh-chs": "添加位於本地網絡上的新英特爾®AMT計算機。", "xloc": [ - "default.handlebars->25->1195", + "default.handlebars->25->1197", "default.handlebars->25->231" ] }, @@ -2726,7 +2726,7 @@ "nl": "Voeg een nieuwe computer toe aan deze apparaatgroep door de mesh-agent te installeren.", "zh-chs": "通过安装网状代理,将新计算机添加到该设备组。", "xloc": [ - "default.handlebars->25->1201", + "default.handlebars->25->1203", "default.handlebars->25->239" ] }, @@ -2779,7 +2779,7 @@ "zh-chs": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->9->342", - "default.handlebars->25->820" + "default.handlebars->25->822" ] }, { @@ -2797,7 +2797,7 @@ "zh-chs": "管理員憑證", "xloc": [ "default-mobile.handlebars->9->348", - "default.handlebars->25->826" + "default.handlebars->25->828" ] }, { @@ -2832,7 +2832,7 @@ "ru": "Области администратора", "zh-chs": "管理領域", "xloc": [ - "default.handlebars->25->1608" + "default.handlebars->25->1610" ] }, { @@ -2867,7 +2867,7 @@ "ru": "Административные области", "zh-chs": "行政領域", "xloc": [ - "default.handlebars->25->1493" + "default.handlebars->25->1495" ] }, { @@ -2884,7 +2884,7 @@ "ru": "Администратор", "zh-chs": "管理員", "xloc": [ - "default.handlebars->25->1432" + "default.handlebars->25->1434" ] }, { @@ -2901,7 +2901,7 @@ "ru": "Африканский", "zh-chs": "南非語", "xloc": [ - "default.handlebars->25->891" + "default.handlebars->25->893" ] }, { @@ -2921,8 +2921,8 @@ "default-mobile.handlebars->9->190", "default-mobile.handlebars->9->212", "default-mobile.handlebars->9->228", - "default.handlebars->25->1353", - "default.handlebars->25->1361", + "default.handlebars->25->1355", + "default.handlebars->25->1363", "default.handlebars->25->177", "default.handlebars->25->383", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" @@ -2942,8 +2942,8 @@ "ru": "Агент + Intel AMT", "zh-chs": "代理+英特爾AMT", "xloc": [ - "default.handlebars->25->1355", - "default.handlebars->25->1363" + "default.handlebars->25->1357", + "default.handlebars->25->1365" ] }, { @@ -2978,7 +2978,7 @@ "zh-chs": "代理控制台", "xloc": [ "default-mobile.handlebars->9->415", - "default.handlebars->25->1309" + "default.handlebars->25->1311" ] }, { @@ -2995,7 +2995,7 @@ "ru": "Счетчик ошибок агента", "zh-chs": "座席錯誤計數器", "xloc": [ - "default.handlebars->25->1731" + "default.handlebars->25->1733" ] }, { @@ -3064,7 +3064,7 @@ "ru": "Сессии агентов", "zh-chs": "座席會議", "xloc": [ - "default.handlebars->25->1747" + "default.handlebars->25->1749" ] }, { @@ -3082,7 +3082,7 @@ "zh-chs": "代理商標籤", "xloc": [ "default-mobile.handlebars->9->227", - "default.handlebars->25->502" + "default.handlebars->25->504" ] }, { @@ -3099,7 +3099,7 @@ "ru": "Типы агента", "zh-chs": "代理類型", "xloc": [ - "default.handlebars->25->1359", + "default.handlebars->25->1361", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -3118,8 +3118,8 @@ "zh-chs": "代理已連接", "xloc": [ "default.handlebars->25->144", - "default.handlebars->25->562", - "default.handlebars->25->563" + "default.handlebars->25->564", + "default.handlebars->25->565" ] }, { @@ -3153,7 +3153,7 @@ "ru": "Агент оффлайн", "zh-chs": "代理離線", "xloc": [ - "default.handlebars->25->853" + "default.handlebars->25->855" ] }, { @@ -3170,7 +3170,7 @@ "ru": "Агент онлайн", "zh-chs": "代理在線", "xloc": [ - "default.handlebars->25->852" + "default.handlebars->25->854" ] }, { @@ -3187,7 +3187,7 @@ "ru": "Агенты", "zh-chs": "代理商", "xloc": [ - "default.handlebars->25->1760" + "default.handlebars->25->1762" ] }, { @@ -3204,7 +3204,7 @@ "ru": "Албанский", "zh-chs": "阿爾巴尼亞語", "xloc": [ - "default.handlebars->25->892" + "default.handlebars->25->894" ] }, { @@ -3254,9 +3254,9 @@ "ru": "Фокусирование всех", "zh-chs": "全部聚焦", "xloc": [ - "default.handlebars->25->708", "default.handlebars->25->710", - "default.handlebars->25->711" + "default.handlebars->25->712", + "default.handlebars->25->713" ] }, { @@ -3273,8 +3273,8 @@ "ru": "Разрешить пользователям управлять этой группой и устройствами этой группы.", "zh-chs": "允許用戶管理此設備組和該組中的設備。", "xloc": [ - "default.handlebars->25->1258", - "default.handlebars->25->1572" + "default.handlebars->25->1260", + "default.handlebars->25->1574" ] }, { @@ -3290,7 +3290,7 @@ "ru": "Разрешить пользователям управлять этим устройством.", "zh-chs": "允许用户管理此设备。", "xloc": [ - "default.handlebars->25->1259" + "default.handlebars->25->1261" ] }, { @@ -3343,7 +3343,7 @@ "ru": "Поменять (F10 = ESC+0)", "zh-chs": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->25->743" + "default.handlebars->25->745" ] }, { @@ -3377,9 +3377,9 @@ "ru": "Всегда уведомлять", "zh-chs": "始終通知", "xloc": [ - "default.handlebars->25->1172", - "default.handlebars->25->1617", - "default.handlebars->25->518" + "default.handlebars->25->1174", + "default.handlebars->25->1619", + "default.handlebars->25->520" ] }, { @@ -3396,9 +3396,9 @@ "ru": "Всегда запрашивать", "zh-chs": "總是提示", "xloc": [ - "default.handlebars->25->1173", - "default.handlebars->25->1618", - "default.handlebars->25->519" + "default.handlebars->25->1175", + "default.handlebars->25->1620", + "default.handlebars->25->521" ] }, { @@ -3512,7 +3512,7 @@ "ru": "Антивирус", "zh-chs": "防毒軟件", "xloc": [ - "default.handlebars->25->508" + "default.handlebars->25->510" ] }, { @@ -3597,7 +3597,7 @@ "ru": "Арабский (Алжир)", "zh-chs": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->25->894" + "default.handlebars->25->896" ] }, { @@ -3614,7 +3614,7 @@ "ru": "Арабский (Бахрейн)", "zh-chs": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->25->895" + "default.handlebars->25->897" ] }, { @@ -3631,7 +3631,7 @@ "ru": "Арабский (Египет)", "zh-chs": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->25->896" + "default.handlebars->25->898" ] }, { @@ -3648,7 +3648,7 @@ "ru": "Арабский (Ирак)", "zh-chs": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->25->897" + "default.handlebars->25->899" ] }, { @@ -3665,7 +3665,7 @@ "ru": "Арабский (Иордания)", "zh-chs": "阿拉伯語(約旦)", "xloc": [ - "default.handlebars->25->898" + "default.handlebars->25->900" ] }, { @@ -3682,7 +3682,7 @@ "ru": "Арабский (Кувейт)", "zh-chs": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->25->899" + "default.handlebars->25->901" ] }, { @@ -3699,7 +3699,7 @@ "ru": "Арабский (Ливан)", "zh-chs": "阿拉伯語(黎巴嫩)", "xloc": [ - "default.handlebars->25->900" + "default.handlebars->25->902" ] }, { @@ -3716,7 +3716,7 @@ "ru": "Арабский (Ливия)", "zh-chs": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->25->901" + "default.handlebars->25->903" ] }, { @@ -3733,7 +3733,7 @@ "ru": "Арабский (Марокко)", "zh-chs": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->25->902" + "default.handlebars->25->904" ] }, { @@ -3750,7 +3750,7 @@ "ru": "Арабский (Оман)", "zh-chs": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->25->903" + "default.handlebars->25->905" ] }, { @@ -3767,7 +3767,7 @@ "ru": "Арабский (Катар)", "zh-chs": "阿拉伯語(卡塔爾)", "xloc": [ - "default.handlebars->25->904" + "default.handlebars->25->906" ] }, { @@ -3784,7 +3784,7 @@ "ru": "Арабский (Саудовская Аравия)", "zh-chs": "阿拉伯語(沙特阿拉伯)", "xloc": [ - "default.handlebars->25->905" + "default.handlebars->25->907" ] }, { @@ -3801,7 +3801,7 @@ "ru": "Арабский (стандартный)", "zh-chs": "阿拉伯語(標準)", "xloc": [ - "default.handlebars->25->893" + "default.handlebars->25->895" ] }, { @@ -3818,7 +3818,7 @@ "ru": "Арабский (Сирия)", "zh-chs": "阿拉伯語(敘利亞)", "xloc": [ - "default.handlebars->25->906" + "default.handlebars->25->908" ] }, { @@ -3835,7 +3835,7 @@ "ru": "Арабский (Тунис)", "zh-chs": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->25->907" + "default.handlebars->25->909" ] }, { @@ -3852,7 +3852,7 @@ "ru": "Арабский (О.А.Э.)", "zh-chs": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->25->908" + "default.handlebars->25->910" ] }, { @@ -3869,7 +3869,7 @@ "ru": "Арабский (Йемен)", "zh-chs": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->25->909" + "default.handlebars->25->911" ] }, { @@ -3886,7 +3886,7 @@ "ru": "Арагонский", "zh-chs": "阿拉貢人", "xloc": [ - "default.handlebars->25->910" + "default.handlebars->25->912" ] }, { @@ -3904,7 +3904,7 @@ "zh-chs": "建築", "xloc": [ "default-mobile.handlebars->9->316", - "default.handlebars->25->794" + "default.handlebars->25->796" ] }, { @@ -3939,7 +3939,7 @@ "zh-chs": "您確定要刪除組{0}嗎?刪除設備組還將刪除該組中有關設備的所有信息。", "xloc": [ "default-mobile.handlebars->9->386", - "default.handlebars->25->1236" + "default.handlebars->25->1238" ] }, { @@ -3956,7 +3956,7 @@ "ru": "Вы действительно хотите удалить устройство \\\"{0}\\\"?", "zh-chs": "您確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->25->655" + "default.handlebars->25->657" ] }, { @@ -3973,7 +3973,7 @@ "ru": "Вы действительно хотите деинсталировать выбранного агента?", "zh-chs": "您確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->25->644" + "default.handlebars->25->646" ] }, { @@ -3990,7 +3990,7 @@ "ru": "Вы действительно хотите деинсталлировать выбранных {0} агентов?", "zh-chs": "您確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->25->643" + "default.handlebars->25->645" ] }, { @@ -4007,7 +4007,7 @@ "ru": "Вы уверенны, что {0} плагин: {1}", "zh-chs": "您確定要{0}插件嗎:{1}", "xloc": [ - "default.handlebars->25->1800" + "default.handlebars->25->1802" ] }, { @@ -4024,7 +4024,7 @@ "ru": "Армянский", "zh-chs": "亞美尼亞人", "xloc": [ - "default.handlebars->25->911" + "default.handlebars->25->913" ] }, { @@ -4069,7 +4069,7 @@ "ru": "Ассамский", "zh-chs": "阿薩姆語", "xloc": [ - "default.handlebars->25->912" + "default.handlebars->25->914" ] }, { @@ -4086,7 +4086,7 @@ "ru": "Астурии", "zh-chs": "阿斯圖里亞斯人", "xloc": [ - "default.handlebars->25->913" + "default.handlebars->25->915" ] }, { @@ -4103,7 +4103,7 @@ "ru": "Приложение аутентификации", "zh-chs": "身份驗證應用", "xloc": [ - "default.handlebars->25->1621" + "default.handlebars->25->1623" ] }, { @@ -4126,8 +4126,8 @@ "default-mobile.handlebars->9->73", "default.handlebars->25->109", "default.handlebars->25->114", - "default.handlebars->25->877", - "default.handlebars->25->879" + "default.handlebars->25->879", + "default.handlebars->25->881" ] }, { @@ -4195,7 +4195,7 @@ "ru": "Автоудаление", "zh-chs": "自動刪除", "xloc": [ - "default.handlebars->25->1160" + "default.handlebars->25->1162" ] }, { @@ -4249,7 +4249,7 @@ "ru": "Азербайджанский", "zh-chs": "阿塞拜疆", "xloc": [ - "default.handlebars->25->914" + "default.handlebars->25->916" ] }, { @@ -4267,7 +4267,7 @@ "zh-chs": "的BIOS", "xloc": [ "default-mobile.handlebars->9->354", - "default.handlebars->25->832" + "default.handlebars->25->834" ] }, { @@ -4364,8 +4364,8 @@ "ru": "Фоновый и интерактивный", "zh-chs": "背景與互動", "xloc": [ - "default.handlebars->25->1336", - "default.handlebars->25->1343", + "default.handlebars->25->1338", + "default.handlebars->25->1345", "default.handlebars->25->308" ] }, @@ -4383,8 +4383,8 @@ "ru": "Только фоновый", "zh-chs": "僅背景", "xloc": [ - "default.handlebars->25->1337", - "default.handlebars->25->1344", + "default.handlebars->25->1339", + "default.handlebars->25->1346", "default.handlebars->25->309", "default.handlebars->25->331" ] @@ -4420,7 +4420,7 @@ "ru": "Резервные коды", "zh-chs": "備用碼", "xloc": [ - "default.handlebars->25->1623" + "default.handlebars->25->1625" ] }, { @@ -4437,7 +4437,7 @@ "ru": "Плохой ключ", "zh-chs": "錯誤的簽名", "xloc": [ - "default.handlebars->25->1738" + "default.handlebars->25->1740" ] }, { @@ -4454,7 +4454,7 @@ "ru": "Плохой веб-сертификат", "zh-chs": "錯誤的網絡證書", "xloc": [ - "default.handlebars->25->1737" + "default.handlebars->25->1739" ] }, { @@ -4471,7 +4471,7 @@ "ru": "Баскский", "zh-chs": "巴斯克", "xloc": [ - "default.handlebars->25->915" + "default.handlebars->25->917" ] }, { @@ -4505,7 +4505,7 @@ "ru": "Белорусский", "zh-chs": "白俄羅斯語", "xloc": [ - "default.handlebars->25->917" + "default.handlebars->25->919" ] }, { @@ -4522,7 +4522,7 @@ "ru": "Бенгальский", "zh-chs": "孟加拉", "xloc": [ - "default.handlebars->25->918" + "default.handlebars->25->920" ] }, { @@ -4558,7 +4558,7 @@ "ru": "Боснийский", "zh-chs": "波斯尼亞人", "xloc": [ - "default.handlebars->25->919" + "default.handlebars->25->921" ] }, { @@ -4575,7 +4575,7 @@ "ru": "Бретонский", "zh-chs": "布列塔尼", "xloc": [ - "default.handlebars->25->920" + "default.handlebars->25->922" ] }, { @@ -4592,7 +4592,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播", "xloc": [ - "default.handlebars->25->1540", + "default.handlebars->25->1542", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -4610,7 +4610,7 @@ "ru": "Отправить сообщение", "zh-chs": "廣播消息", "xloc": [ - "default.handlebars->25->1475" + "default.handlebars->25->1477" ] }, { @@ -4627,7 +4627,7 @@ "ru": "Отправить сообщение всем подключенным пользователям.", "zh-chs": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->25->1474" + "default.handlebars->25->1476" ] }, { @@ -4644,7 +4644,7 @@ "ru": "Болгарский", "zh-chs": "保加利亞語", "xloc": [ - "default.handlebars->25->916" + "default.handlebars->25->918" ] }, { @@ -4661,7 +4661,7 @@ "ru": "Бирманский", "zh-chs": "緬甸人", "xloc": [ - "default.handlebars->25->921" + "default.handlebars->25->923" ] }, { @@ -4679,7 +4679,7 @@ "zh-chs": "CCM", "xloc": [ "default-mobile.handlebars->9->219", - "default.handlebars->25->487" + "default.handlebars->25->489" ] }, { @@ -4697,8 +4697,8 @@ "zh-chs": "CIRA", "xloc": [ "default-mobile.handlebars->9->191", - "default.handlebars->25->1224", - "default.handlebars->25->1229", + "default.handlebars->25->1226", + "default.handlebars->25->1231", "default.handlebars->25->179", "default.handlebars->25->385" ] @@ -4717,7 +4717,7 @@ "ru": "CIRA Сервер", "zh-chs": "CIRA服務器", "xloc": [ - "default.handlebars->25->1788" + "default.handlebars->25->1790" ] }, { @@ -4734,7 +4734,7 @@ "ru": "CIRA Сервер команды", "zh-chs": "CIRA服務器命令", "xloc": [ - "default.handlebars->25->1789" + "default.handlebars->25->1791" ] }, { @@ -4751,7 +4751,7 @@ "zh-chs": "CPU", "xloc": [ "default-mobile.handlebars->9->360", - "default.handlebars->25->838" + "default.handlebars->25->840" ] }, { @@ -4768,7 +4768,7 @@ "ru": "Загрузка CPU", "zh-chs": "CPU負載", "xloc": [ - "default.handlebars->25->1752" + "default.handlebars->25->1754" ] }, { @@ -4785,7 +4785,7 @@ "ru": "Загрузка CPU за последние 15 минут", "zh-chs": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1755" + "default.handlebars->25->1757" ] }, { @@ -4802,7 +4802,7 @@ "ru": "Загрузка CPU за последние 5 минут", "zh-chs": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1754" + "default.handlebars->25->1756" ] }, { @@ -4819,7 +4819,7 @@ "ru": "Загрузка CPU за последнюю минуту", "zh-chs": "最後一分鐘的CPU負載", "xloc": [ - "default.handlebars->25->1753" + "default.handlebars->25->1755" ] }, { @@ -4836,8 +4836,8 @@ "ru": "CR+LF", "zh-chs": "CR +低頻", "xloc": [ - "default.handlebars->25->736", - "default.handlebars->25->745", + "default.handlebars->25->738", + "default.handlebars->25->747", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -4855,8 +4855,8 @@ "ru": "Формат CSV", "zh-chs": "CSV格式", "xloc": [ - "default.handlebars->25->1407", - "default.handlebars->25->1466", + "default.handlebars->25->1409", + "default.handlebars->25->1468", "default.handlebars->25->411" ] }, @@ -4874,7 +4874,7 @@ "ru": "Ошибка вызова", "zh-chs": "通話錯誤", "xloc": [ - "default.handlebars->25->1801" + "default.handlebars->25->1803" ] }, { @@ -4893,7 +4893,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1141", + "default.handlebars->25->1143", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -4913,8 +4913,8 @@ "xloc": [ "default-mobile.handlebars->9->368", "default-mobile.handlebars->9->370", - "default.handlebars->25->846", - "default.handlebars->25->848" + "default.handlebars->25->848", + "default.handlebars->25->850" ] }, { @@ -4932,7 +4932,7 @@ "zh-chs": "容量/速度", "xloc": [ "default-mobile.handlebars->9->363", - "default.handlebars->25->841" + "default.handlebars->25->843" ] }, { @@ -4949,7 +4949,7 @@ "ru": "Каталонский", "zh-chs": "加泰羅尼亞語", "xloc": [ - "default.handlebars->25->922" + "default.handlebars->25->924" ] }, { @@ -4983,7 +4983,7 @@ "ru": "Чаморро", "zh-chs": "查莫羅", "xloc": [ - "default.handlebars->25->923" + "default.handlebars->25->925" ] }, { @@ -5014,7 +5014,7 @@ "ru": "Смена email для {0}", "zh-chs": "更改{0}的電子郵件", "xloc": [ - "default.handlebars->25->1649" + "default.handlebars->25->1651" ] }, { @@ -5031,9 +5031,9 @@ "ru": "Смена группы", "zh-chs": "變更組", "xloc": [ - "default.handlebars->25->543", - "default.handlebars->25->652", - "default.handlebars->25->653" + "default.handlebars->25->545", + "default.handlebars->25->654", + "default.handlebars->25->655" ] }, { @@ -5051,8 +5051,8 @@ "zh-chs": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->25->1117", - "default.handlebars->25->1638" + "default.handlebars->25->1119", + "default.handlebars->25->1640" ] }, { @@ -5069,7 +5069,7 @@ "ru": "Смена пароля для {0}", "zh-chs": "更改{0}的密碼", "xloc": [ - "default.handlebars->25->1656" + "default.handlebars->25->1658" ] }, { @@ -5139,7 +5139,7 @@ "ru": "Изменить пароль для этого пользователя", "zh-chs": "更改該用戶的密碼", "xloc": [ - "default.handlebars->25->1637" + "default.handlebars->25->1639" ] }, { @@ -5173,7 +5173,7 @@ "ru": "Измените адрес электронной почты вашей учетной записи здесь.", "zh-chs": "在此處更改您的帳戶電子郵件地址。", "xloc": [ - "default.handlebars->25->1104" + "default.handlebars->25->1106" ] }, { @@ -5190,7 +5190,7 @@ "ru": "Измените пароль своей учетной записи, введя старый пароль и дважды новый пароль в поля ниже.", "zh-chs": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->25->1110" + "default.handlebars->25->1112" ] }, { @@ -5207,7 +5207,7 @@ "ru": "Изменение языка потребует перезагрузить страницу.", "zh-chs": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->25->1089" + "default.handlebars->25->1091" ] }, { @@ -5224,9 +5224,9 @@ "ru": "Чат", "zh-chs": "聊天室", "xloc": [ - "default.handlebars->25->1424", - "default.handlebars->25->592", - "default.handlebars->25->611" + "default.handlebars->25->1426", + "default.handlebars->25->594", + "default.handlebars->25->613" ] }, { @@ -5245,8 +5245,8 @@ "xloc": [ "default-mobile.handlebars->9->407", "default-mobile.handlebars->9->425", - "default.handlebars->25->1286", - "default.handlebars->25->1320" + "default.handlebars->25->1288", + "default.handlebars->25->1322" ] }, { @@ -5263,7 +5263,7 @@ "ru": "Чеченский", "zh-chs": "車臣", "xloc": [ - "default.handlebars->25->924" + "default.handlebars->25->926" ] }, { @@ -5344,8 +5344,8 @@ "ru": "Проверка...", "zh-chs": "檢查...", "xloc": [ - "default.handlebars->25->1795", - "default.handlebars->25->890" + "default.handlebars->25->1797", + "default.handlebars->25->892" ] }, { @@ -5362,7 +5362,7 @@ "ru": "Китайский", "zh-chs": "中文", "xloc": [ - "default.handlebars->25->925" + "default.handlebars->25->927" ] }, { @@ -5379,7 +5379,7 @@ "ru": "Китайский (Гонконг)", "zh-chs": "中文(香港)", "xloc": [ - "default.handlebars->25->926" + "default.handlebars->25->928" ] }, { @@ -5396,7 +5396,7 @@ "ru": "Китайский (КНР)", "zh-chs": "中文(中國)", "xloc": [ - "default.handlebars->25->927" + "default.handlebars->25->929" ] }, { @@ -5413,7 +5413,7 @@ "ru": "Упрощенный китайский)", "zh-chs": "简体中文)", "xloc": [ - "default.handlebars->25->1087" + "default.handlebars->25->1089" ] }, { @@ -5430,7 +5430,7 @@ "ru": "Китайский (Сингапур)", "zh-chs": "中文(新加坡)", "xloc": [ - "default.handlebars->25->928" + "default.handlebars->25->930" ] }, { @@ -5447,7 +5447,7 @@ "ru": "Китайский (Тайвань)", "zh-chs": "中文(台灣)", "xloc": [ - "default.handlebars->25->929" + "default.handlebars->25->931" ] }, { @@ -5482,7 +5482,7 @@ "ru": "Чувашский", "zh-chs": "楚瓦什", "xloc": [ - "default.handlebars->25->930" + "default.handlebars->25->932" ] }, { @@ -5522,11 +5522,11 @@ "default-mobile.handlebars->9->307", "default-mobile.handlebars->9->309", "default-mobile.handlebars->9->59", - "default.handlebars->25->1401", - "default.handlebars->25->771", + "default.handlebars->25->1403", "default.handlebars->25->773", "default.handlebars->25->775", "default.handlebars->25->777", + "default.handlebars->25->779", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7", "default.handlebars->container->column_l->p41->3->1", "messenger.handlebars->xbottom" @@ -5560,7 +5560,7 @@ "nl": "Wis alle meldingen", "zh-chs": "全部清除", "xloc": [ - "default.handlebars->25->1725" + "default.handlebars->25->1727" ] }, { @@ -5577,7 +5577,7 @@ "ru": "Очистить ядро", "zh-chs": "清除核心", "xloc": [ - "default.handlebars->25->862" + "default.handlebars->25->864" ] }, { @@ -5610,7 +5610,7 @@ "ru": "Очистить это уведомление", "zh-chs": "清除此通知", "xloc": [ - "default.handlebars->25->1724" + "default.handlebars->25->1726" ] }, { @@ -5655,8 +5655,8 @@ "nl": "Klik hier om de apparaatgroepsnaam te bewerken", "zh-chs": "单击此处编辑设备组名称", "xloc": [ - "default.handlebars->25->1152", - "default.handlebars->25->1357" + "default.handlebars->25->1154", + "default.handlebars->25->1359" ] }, { @@ -5673,7 +5673,7 @@ "ru": "Для изменения имени устройства на сервере нажмите сюда", "zh-chs": "單擊此處編輯服務器端設備名稱", "xloc": [ - "default.handlebars->25->465" + "default.handlebars->25->467" ] }, { @@ -5686,7 +5686,7 @@ "nl": "Klik hier om de gebruikersgroepsnaam te bewerken", "zh-chs": "单击此处编辑用户组名称", "xloc": [ - "default.handlebars->25->1529" + "default.handlebars->25->1531" ] }, { @@ -5736,7 +5736,7 @@ "zh-chs": "單擊確定將驗證郵件發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->25->1101" + "default.handlebars->25->1103" ] }, { @@ -5771,7 +5771,7 @@ "zh-chs": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->9->341", - "default.handlebars->25->819" + "default.handlebars->25->821" ] }, { @@ -5788,8 +5788,8 @@ "ru": "Клиент инициировал удаленный доступ", "zh-chs": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->25->1223", - "default.handlebars->25->1228" + "default.handlebars->25->1225", + "default.handlebars->25->1230" ] }, { @@ -5826,7 +5826,7 @@ "default-mobile.handlebars->9->57", "default.handlebars->25->121", "default.handlebars->25->129", - "default.handlebars->25->729" + "default.handlebars->25->731" ] }, { @@ -5861,8 +5861,8 @@ "ru": "Общие группы устройств", "zh-chs": "通用設備組", "xloc": [ - "default.handlebars->25->1548", - "default.handlebars->25->1661" + "default.handlebars->25->1550", + "default.handlebars->25->1663" ] }, { @@ -5879,8 +5879,8 @@ "ru": "Общие устройства", "zh-chs": "通用設備", "xloc": [ - "default.handlebars->25->1554", - "default.handlebars->25->1673" + "default.handlebars->25->1556", + "default.handlebars->25->1675" ] }, { @@ -5898,7 +5898,7 @@ "zh-chs": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->25->1396" + "default.handlebars->25->1398" ] }, { @@ -5917,14 +5917,14 @@ "xloc": [ "default-mobile.handlebars->9->265", "default-mobile.handlebars->9->387", - "default.handlebars->25->1237", - "default.handlebars->25->1450", - "default.handlebars->25->1519", - "default.handlebars->25->1568", - "default.handlebars->25->1659", + "default.handlebars->25->1239", + "default.handlebars->25->1452", + "default.handlebars->25->1521", + "default.handlebars->25->1570", + "default.handlebars->25->1661", "default.handlebars->25->408", - "default.handlebars->25->647", - "default.handlebars->25->656" + "default.handlebars->25->649", + "default.handlebars->25->658" ] }, { @@ -5942,7 +5942,7 @@ "zh-chs": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->298", - "default.handlebars->25->766" + "default.handlebars->25->768" ] }, { @@ -5960,7 +5960,7 @@ "zh-chs": "確認{0}個條目的副本到此位置?", "xloc": [ "default-mobile.handlebars->9->297", - "default.handlebars->25->765" + "default.handlebars->25->767" ] }, { @@ -5974,7 +5974,7 @@ "nl": "Bevestig verwijdering geselecteerde account(s)?", "zh-chs": "确认删除选定的帐户?", "xloc": [ - "default.handlebars->25->1449" + "default.handlebars->25->1451" ] }, { @@ -6005,7 +6005,7 @@ "nl": "Bevestig verwijdering geselecteerde gebruikersgroep(en)?", "zh-chs": "确认删除选定的用户组?", "xloc": [ - "default.handlebars->25->1518" + "default.handlebars->25->1520" ] }, { @@ -6022,7 +6022,7 @@ "ru": "Подтвердить удаление пользователя {0}?", "zh-chs": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->25->1658" + "default.handlebars->25->1660" ] }, { @@ -6036,7 +6036,7 @@ "nl": "Bevestig lidmaatschap verwijderen van gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的成员身份?", "xloc": [ - "default.handlebars->25->1571" + "default.handlebars->25->1573" ] }, { @@ -6050,7 +6050,7 @@ "nl": "Bevestig lidmaatschap verwijdering van gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组 “{0}” 的成员身份?", "xloc": [ - "default.handlebars->25->1688" + "default.handlebars->25->1690" ] }, { @@ -6068,7 +6068,7 @@ "zh-chs": "確認將1個入口移動到此位置?", "xloc": [ "default-mobile.handlebars->9->300", - "default.handlebars->25->768" + "default.handlebars->25->770" ] }, { @@ -6086,7 +6086,7 @@ "zh-chs": "確認將{0}個條目移到此位置?", "xloc": [ "default-mobile.handlebars->9->299", - "default.handlebars->25->767" + "default.handlebars->25->769" ] }, { @@ -6103,7 +6103,7 @@ "ru": "Подтвердить перезапись?", "zh-chs": "確認覆蓋?", "xloc": [ - "default.handlebars->25->1395" + "default.handlebars->25->1397" ] }, { @@ -6117,8 +6117,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaat \\\"{0}\\\"?", "zh-chs": "确认删除设备“ {0} ”的访问权限?", "xloc": [ - "default.handlebars->25->1561", - "default.handlebars->25->1679" + "default.handlebars->25->1563", + "default.handlebars->25->1681" ] }, { @@ -6132,8 +6132,8 @@ "nl": "Bevestig verwijdering van toegangsrechten voor apparaatgroep \\\"{0}\\\"?", "zh-chs": "是否确认删除设备组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->25->1563", - "default.handlebars->25->1692" + "default.handlebars->25->1565", + "default.handlebars->25->1694" ] }, { @@ -6147,7 +6147,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户\\“ {0} \\”的访问权限?", "xloc": [ - "default.handlebars->25->1681" + "default.handlebars->25->1683" ] }, { @@ -6161,7 +6161,7 @@ "nl": "Bevestig verwijdering van toegangsrechten voor gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0}”的访问权限?", "xloc": [ - "default.handlebars->25->1684" + "default.handlebars->25->1686" ] }, { @@ -6175,8 +6175,8 @@ "nl": "Verwijdering van toegangsrechten bevestigen?", "zh-chs": "确认删除访问权限?", "xloc": [ - "default.handlebars->25->1682", - "default.handlebars->25->1685" + "default.handlebars->25->1684", + "default.handlebars->25->1687" ] }, { @@ -6194,7 +6194,7 @@ "zh-chs": "確認刪除身份驗證器應用程序兩步登錄?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->25->880" + "default.handlebars->25->882" ] }, { @@ -6249,7 +6249,7 @@ "nl": "Bevestig de verwijdering van rechten voor gebruiker \\\"{0}\\\"?", "zh-chs": "确认删除用户“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1329" + "default.handlebars->25->1331" ] }, { @@ -6263,7 +6263,7 @@ "nl": "Bevestig de verwijdering van rechten voor de gebruikergroep \\\"{0}\\\"?", "zh-chs": "确认删除用户组“ {0} ”的权限?", "xloc": [ - "default.handlebars->25->1331" + "default.handlebars->25->1333" ] }, { @@ -6311,8 +6311,8 @@ "default-mobile.handlebars->9->280", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->25->1176", - "default.handlebars->25->748", + "default.handlebars->25->1178", + "default.handlebars->25->750", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -6351,8 +6351,8 @@ "ru": "Подключиться к серверу", "zh-chs": "連接到服務器", "xloc": [ - "default.handlebars->25->1227", - "default.handlebars->25->1231" + "default.handlebars->25->1229", + "default.handlebars->25->1233" ] }, { @@ -6423,7 +6423,7 @@ "ru": "Подключено Intel® AMT", "zh-chs": "連接的英特爾®AMT", "xloc": [ - "default.handlebars->25->1743" + "default.handlebars->25->1745" ] }, { @@ -6440,7 +6440,7 @@ "ru": "Подключенные пользователи", "zh-chs": "關聯用戶", "xloc": [ - "default.handlebars->25->1748" + "default.handlebars->25->1750" ] }, { @@ -6458,7 +6458,7 @@ "zh-chs": "現在已連接", "xloc": [ "default-mobile.handlebars->9->320", - "default.handlebars->25->798" + "default.handlebars->25->800" ] }, { @@ -6498,7 +6498,7 @@ "default.handlebars->25->204", "default.handlebars->25->207", "default.handlebars->25->226", - "default.handlebars->25->789", + "default.handlebars->25->791", "default.handlebars->25->9", "xterm.handlebars->9->2" ] @@ -6517,7 +6517,7 @@ "ru": "Подключений ", "zh-chs": "連接數", "xloc": [ - "default.handlebars->25->1759" + "default.handlebars->25->1761" ] }, { @@ -6534,7 +6534,7 @@ "ru": "Ретранслятор подключения", "zh-chs": "連接繼電器", "xloc": [ - "default.handlebars->25->1787" + "default.handlebars->25->1789" ] }, { @@ -6586,9 +6586,9 @@ "zh-chs": "連接性", "xloc": [ "default-mobile.handlebars->9->233", - "default.handlebars->25->1364", + "default.handlebars->25->1366", "default.handlebars->25->195", - "default.handlebars->25->532", + "default.handlebars->25->534", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -6606,8 +6606,8 @@ "ru": "Консоль", "zh-chs": "安慰", "xloc": [ - "default.handlebars->25->587", - "default.handlebars->25->606", + "default.handlebars->25->589", + "default.handlebars->25->608", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -6627,7 +6627,7 @@ "ru": "Консоль - ", "zh-chs": "安慰 -", "xloc": [ - "default.handlebars->25->466" + "default.handlebars->25->468" ] }, { @@ -6643,8 +6643,8 @@ "ru": "контроль", "zh-chs": "控制", "xloc": [ - "default.handlebars->25->586", - "default.handlebars->25->605" + "default.handlebars->25->588", + "default.handlebars->25->607" ] }, { @@ -6661,7 +6661,7 @@ "ru": "Cookie-кодировщик", "zh-chs": "Cookie編碼器", "xloc": [ - "default.handlebars->25->1773" + "default.handlebars->25->1775" ] }, { @@ -6787,8 +6787,8 @@ "ru": "Скопировать ссылку в буфер обмена", "zh-chs": "複製鏈接到剪貼板", "xloc": [ - "default.handlebars->25->1369", - "default.handlebars->25->1383", + "default.handlebars->25->1371", + "default.handlebars->25->1385", "default.handlebars->25->321" ] }, @@ -6966,7 +6966,7 @@ "ru": "Основной сервер", "zh-chs": "核心服務器", "xloc": [ - "default.handlebars->25->1772" + "default.handlebars->25->1774" ] }, { @@ -6983,7 +6983,7 @@ "ru": "Kорсиканский", "zh-chs": "科西嘉人", "xloc": [ - "default.handlebars->25->931" + "default.handlebars->25->933" ] }, { @@ -7000,7 +7000,7 @@ "ru": "Создать учетную запись", "zh-chs": "創建帳號", "xloc": [ - "default.handlebars->25->1489", + "default.handlebars->25->1491", "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" ] @@ -7036,7 +7036,7 @@ "ru": "Создать группу пользователей", "zh-chs": "創建用戶組", "xloc": [ - "default.handlebars->25->1526" + "default.handlebars->25->1528" ] }, { @@ -7053,7 +7053,7 @@ "ru": "Создайте новую группу устройств, используя параметры ниже.", "zh-chs": "使用以下選項創建一個新的設備組。", "xloc": [ - "default.handlebars->25->1124" + "default.handlebars->25->1126" ] }, { @@ -7087,7 +7087,7 @@ "ru": "Создайте сразу несколько учетных записей, импортировав файл JSON в следующем формате:", "zh-chs": "通過導入以下格式的JSON文件一次創建多個帳戶:", "xloc": [ - "default.handlebars->25->1457" + "default.handlebars->25->1459" ] }, { @@ -7122,7 +7122,7 @@ "ru": "Создано", "zh-chs": "創建", "xloc": [ - "default.handlebars->25->1597" + "default.handlebars->25->1599" ] }, { @@ -7157,7 +7157,7 @@ "ru": "Кри (Канадский язык)", "zh-chs": "克里", "xloc": [ - "default.handlebars->25->932" + "default.handlebars->25->934" ] }, { @@ -7174,7 +7174,7 @@ "ru": "Хорватский", "zh-chs": "克羅地亞語", "xloc": [ - "default.handlebars->25->933" + "default.handlebars->25->935" ] }, { @@ -7315,7 +7315,7 @@ "ru": "Чешский", "zh-chs": "捷克文", "xloc": [ - "default.handlebars->25->934" + "default.handlebars->25->936" ] }, { @@ -7349,7 +7349,7 @@ "ru": "Датский", "zh-chs": "丹麥文", "xloc": [ - "default.handlebars->25->935" + "default.handlebars->25->937" ] }, { @@ -7366,7 +7366,7 @@ "ru": "DataChannel", "zh-chs": "數據通道", "xloc": [ - "default.handlebars->25->699" + "default.handlebars->25->701" ] }, { @@ -7383,7 +7383,7 @@ "ru": "Дата & Время", "zh-chs": "日期和時間", "xloc": [ - "default.handlebars->25->1092" + "default.handlebars->25->1094" ] }, { @@ -7401,7 +7401,7 @@ "zh-chs": "天", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->25->631" + "default.handlebars->25->633" ] }, { @@ -7418,7 +7418,7 @@ "ru": "Деактивировать режим управления клиентом (CCM)", "zh-chs": "停用客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1215" + "default.handlebars->25->1217" ] }, { @@ -7443,10 +7443,10 @@ "en": "Default", "nl": "Standaard", "xloc": [ - "default.handlebars->25->1476", - "default.handlebars->25->1522", - "default.handlebars->25->1533", - "default.handlebars->25->1588" + "default.handlebars->25->1478", + "default.handlebars->25->1524", + "default.handlebars->25->1535", + "default.handlebars->25->1590" ] }, { @@ -7467,9 +7467,9 @@ "default-mobile.handlebars->9->290", "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->25->1390", + "default.handlebars->25->1392", "default.handlebars->25->438", - "default.handlebars->25->758", + "default.handlebars->25->760", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -7493,7 +7493,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->25->1109" + "default.handlebars->25->1111" ] }, { @@ -7507,7 +7507,7 @@ "nl": "Verwijder accounts", "zh-chs": "删除帐号", "xloc": [ - "default.handlebars->25->1451" + "default.handlebars->25->1453" ] }, { @@ -7525,7 +7525,7 @@ "zh-chs": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->238", - "default.handlebars->25->545" + "default.handlebars->25->547" ] }, { @@ -7544,8 +7544,8 @@ "xloc": [ "default-mobile.handlebars->9->385", "default-mobile.handlebars->9->388", - "default.handlebars->25->1208", - "default.handlebars->25->1238" + "default.handlebars->25->1210", + "default.handlebars->25->1240" ] }, { @@ -7563,7 +7563,7 @@ "zh-chs": "刪除節點", "xloc": [ "default-mobile.handlebars->9->263", - "default.handlebars->25->657" + "default.handlebars->25->659" ] }, { @@ -7597,7 +7597,7 @@ "ru": "Удалить пользователя", "zh-chs": "刪除用戶", "xloc": [ - "default.handlebars->25->1636" + "default.handlebars->25->1638" ] }, { @@ -7614,8 +7614,8 @@ "ru": "Удалить группу пользователей", "zh-chs": "刪除用戶組", "xloc": [ - "default.handlebars->25->1559", - "default.handlebars->25->1569" + "default.handlebars->25->1561", + "default.handlebars->25->1571" ] }, { @@ -7629,7 +7629,7 @@ "nl": "Gebruikersgroepen verwijderen", "zh-chs": "删除用户组", "xloc": [ - "default.handlebars->25->1520" + "default.handlebars->25->1522" ] }, { @@ -7646,7 +7646,7 @@ "ru": "Удалить пользователя {0}", "zh-chs": "刪除用戶{0}", "xloc": [ - "default.handlebars->25->1657" + "default.handlebars->25->1659" ] }, { @@ -7664,7 +7664,7 @@ "zh-chs": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->25->1447", + "default.handlebars->25->1449", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -7696,7 +7696,7 @@ "nl": "Verwijder groep", "zh-chs": "删除群组", "xloc": [ - "default.handlebars->25->1516" + "default.handlebars->25->1518" ] }, { @@ -7732,8 +7732,8 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->292", - "default.handlebars->25->1392", - "default.handlebars->25->760" + "default.handlebars->25->1394", + "default.handlebars->25->762" ] }, { @@ -7750,7 +7750,7 @@ "ru": "Удалить группу пользователей {0}?", "zh-chs": "刪除用戶組{0}?", "xloc": [ - "default.handlebars->25->1567" + "default.handlebars->25->1569" ] }, { @@ -7769,8 +7769,8 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->291", - "default.handlebars->25->1391", - "default.handlebars->25->759" + "default.handlebars->25->1393", + "default.handlebars->25->761" ] }, { @@ -7800,7 +7800,7 @@ "ko": "거부", "zh-chs": "被拒绝", "xloc": [ - "default.handlebars->25->695" + "default.handlebars->25->697" ] }, { @@ -7884,18 +7884,18 @@ "default-mobile.handlebars->9->326", "default-mobile.handlebars->9->377", "default-mobile.handlebars->9->390", - "default.handlebars->25->1129", - "default.handlebars->25->1157", - "default.handlebars->25->1240", - "default.handlebars->25->1525", - "default.handlebars->25->1535", - "default.handlebars->25->1536", - "default.handlebars->25->1565", - "default.handlebars->25->477", - "default.handlebars->25->478", - "default.handlebars->25->690", + "default.handlebars->25->1131", + "default.handlebars->25->1159", + "default.handlebars->25->1242", + "default.handlebars->25->1527", + "default.handlebars->25->1537", + "default.handlebars->25->1538", + "default.handlebars->25->1567", + "default.handlebars->25->479", + "default.handlebars->25->480", + "default.handlebars->25->692", "default.handlebars->25->78", - "default.handlebars->25->804", + "default.handlebars->25->806", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -7928,8 +7928,8 @@ "zh-chs": "桌面", "xloc": [ "default-mobile.handlebars->9->245", - "default.handlebars->25->1245", - "default.handlebars->25->1702", + "default.handlebars->25->1247", + "default.handlebars->25->1704", "default.handlebars->25->444", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop" @@ -7966,9 +7966,9 @@ "ru": "Уведомление на рабочем столе", "zh-chs": "桌面通知", "xloc": [ - "default.handlebars->25->1167", - "default.handlebars->25->1612", - "default.handlebars->25->513" + "default.handlebars->25->1169", + "default.handlebars->25->1614", + "default.handlebars->25->515" ] }, { @@ -7985,9 +7985,9 @@ "ru": "Запрос рабочего стола", "zh-chs": "桌面提示", "xloc": [ - "default.handlebars->25->1166", - "default.handlebars->25->1611", - "default.handlebars->25->512" + "default.handlebars->25->1168", + "default.handlebars->25->1613", + "default.handlebars->25->514" ] }, { @@ -8004,9 +8004,9 @@ "ru": "Запрос рабочего стола + панель инструментов", "zh-chs": "桌面提示+工具欄", "xloc": [ - "default.handlebars->25->1164", - "default.handlebars->25->1609", - "default.handlebars->25->510" + "default.handlebars->25->1166", + "default.handlebars->25->1611", + "default.handlebars->25->512" ] }, { @@ -8037,9 +8037,9 @@ "ru": "Панель инструментов рабочего стола", "zh-chs": "桌面工具欄", "xloc": [ - "default.handlebars->25->1165", - "default.handlebars->25->1610", - "default.handlebars->25->511" + "default.handlebars->25->1167", + "default.handlebars->25->1612", + "default.handlebars->25->513" ] }, { @@ -8110,8 +8110,8 @@ "ru": "Устройство", "zh-chs": "設備", "xloc": [ - "default.handlebars->25->1267", - "default.handlebars->25->1676", + "default.handlebars->25->1269", + "default.handlebars->25->1678", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -8130,7 +8130,7 @@ "zh-chs": "設備動作", "xloc": [ "default-mobile.handlebars->9->254", - "default.handlebars->25->630" + "default.handlebars->25->632" ] }, { @@ -8147,13 +8147,13 @@ "ru": "Группа устройства", "zh-chs": "設備組", "xloc": [ - "default.handlebars->25->1262", - "default.handlebars->25->1265", - "default.handlebars->25->1266", - "default.handlebars->25->1551", - "default.handlebars->25->1557", - "default.handlebars->25->1664", - "default.handlebars->25->1711" + "default.handlebars->25->1264", + "default.handlebars->25->1267", + "default.handlebars->25->1268", + "default.handlebars->25->1553", + "default.handlebars->25->1559", + "default.handlebars->25->1666", + "default.handlebars->25->1713" ] }, { @@ -8171,7 +8171,7 @@ "zh-chs": "設備組用戶", "xloc": [ "default-mobile.handlebars->9->432", - "default.handlebars->25->1327" + "default.handlebars->25->1329" ] }, { @@ -8189,11 +8189,11 @@ "zh-chs": "設備組", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->25->1416", - "default.handlebars->25->1510", - "default.handlebars->25->1538", - "default.handlebars->25->1606", - "default.handlebars->25->1746", + "default.handlebars->25->1418", + "default.handlebars->25->1512", + "default.handlebars->25->1540", + "default.handlebars->25->1608", + "default.handlebars->25->1748", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -8228,14 +8228,14 @@ "ru": "Местонахождение устройства", "zh-chs": "設備位置", "xloc": [ - "default.handlebars->25->658" + "default.handlebars->25->660" ] }, { "en": "Device Message", "nl": "Apparaatbericht", "xloc": [ - "default.handlebars->25->619" + "default.handlebars->25->621" ] }, { @@ -8253,9 +8253,9 @@ "zh-chs": "設備名稱", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->25->1710", + "default.handlebars->25->1712", "default.handlebars->25->244", - "default.handlebars->25->688", + "default.handlebars->25->690", "player.handlebars->3->9" ] }, @@ -8273,7 +8273,7 @@ "ru": "Уведомление устройства", "zh-chs": "設備通知", "xloc": [ - "default.handlebars->25->621" + "default.handlebars->25->623" ] }, { @@ -8307,8 +8307,8 @@ "ru": "Подключения устройств.", "zh-chs": "設備連接。", "xloc": [ - "default.handlebars->25->1097", - "default.handlebars->25->1348" + "default.handlebars->25->1099", + "default.handlebars->25->1350" ] }, { @@ -8325,8 +8325,8 @@ "ru": "Отключения устройств.", "zh-chs": "設備斷開連接。", "xloc": [ - "default.handlebars->25->1098", - "default.handlebars->25->1349" + "default.handlebars->25->1100", + "default.handlebars->25->1351" ] }, { @@ -8343,7 +8343,13 @@ "ru": "Примечания могут быть просмотрены и изменены другими администраторами.", "zh-chs": "其他設備組管理員可以查看和更改設備組註釋。", "xloc": [ - "default.handlebars->25->617" + "default.handlebars->25->619" + ] + }, + { + "en": "Device is battery powered, {0}%", + "xloc": [ + "default.handlebars->25->465" ] }, { @@ -8538,6 +8544,12 @@ "default.handlebars->25->380" ] }, + { + "en": "Device is plugged-in", + "xloc": [ + "default.handlebars->25->464" + ] + }, { "cs": "Zařízení je zapnuté", "de": "Gerät ist eingeschaltet", @@ -8633,8 +8645,8 @@ "nl": "Apparaten", "zh-chs": "设备", "xloc": [ - "default.handlebars->25->1511", - "default.handlebars->25->1539" + "default.handlebars->25->1513", + "default.handlebars->25->1541" ] }, { @@ -8651,7 +8663,7 @@ "ru": "Отключено", "zh-chs": "殘障人士", "xloc": [ - "default.handlebars->25->505" + "default.handlebars->25->507" ] }, { @@ -8670,8 +8682,8 @@ "xloc": [ "default-mobile.handlebars->9->281", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->25->1177", - "default.handlebars->25->749", + "default.handlebars->25->1179", + "default.handlebars->25->751", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "xterm.handlebars->p11->deskarea0->deskarea1->3" @@ -8726,7 +8738,7 @@ "en": "Display a message box on the remote device.", "nl": "Geef een berichtvenster weer op het externe apparaat.", "xloc": [ - "default.handlebars->25->620" + "default.handlebars->25->622" ] }, { @@ -8750,7 +8762,7 @@ "en": "Display a text message on the remote device", "nl": "Geef een tekstbericht weer op het externe apparaat", "xloc": [ - "default.handlebars->25->541" + "default.handlebars->25->543" ] }, { @@ -8767,7 +8779,7 @@ "ru": "Отобразить имя группы устройств", "zh-chs": "顯示設備組名稱", "xloc": [ - "default.handlebars->25->1096" + "default.handlebars->25->1098" ] }, { @@ -8784,7 +8796,7 @@ "ru": "Отображаемое имя", "zh-chs": "顯示名稱", "xloc": [ - "default.handlebars->25->720" + "default.handlebars->25->722" ] }, { @@ -8800,7 +8812,7 @@ "ru": "Показать публичную ссылку", "zh-chs": "显示公共链接", "xloc": [ - "default.handlebars->25->1368" + "default.handlebars->25->1370" ] }, { @@ -8817,17 +8829,17 @@ "ru": "Ничего не делать", "zh-chs": "沒做什麼", "xloc": [ - "default.handlebars->25->1221" + "default.handlebars->25->1223" ] }, { "en": "Domain", "nl": "Domein", "xloc": [ - "default.handlebars->25->1477", - "default.handlebars->25->1523", - "default.handlebars->25->1532", - "default.handlebars->25->1587" + "default.handlebars->25->1479", + "default.handlebars->25->1525", + "default.handlebars->25->1534", + "default.handlebars->25->1589" ] }, { @@ -8840,8 +8852,8 @@ "nl": "Niet configureren", "zh-chs": "不要配置", "xloc": [ - "default.handlebars->25->1225", - "default.handlebars->25->1230" + "default.handlebars->25->1227", + "default.handlebars->25->1232" ] }, { @@ -8854,7 +8866,7 @@ "nl": "Maak geen verbinding met de server", "zh-chs": "不要连接到服务器", "xloc": [ - "default.handlebars->25->1226" + "default.handlebars->25->1228" ] }, { @@ -8954,7 +8966,7 @@ "zh-chs": "下載文件", "xloc": [ "default-mobile.handlebars->9->311", - "default.handlebars->25->778" + "default.handlebars->25->780" ] }, { @@ -8988,7 +9000,7 @@ "ru": "Скачать MeshCmd", "zh-chs": "下載MeshCmd", "xloc": [ - "default.handlebars->25->680" + "default.handlebars->25->682" ] }, { @@ -9039,7 +9051,7 @@ "ru": "Скачайте \\\"meshcmd\\\" с файлом команд для маршрутизации трафика к этому устройству через сервер. Не забудьте указать пароль от своей учетной записи в meshaction.txt и сделать другие правки при необходимости.", "zh-chs": "下載帶有動作文件的“ meshcmd”,以將通過此服務器的流量路由到該設備。確保編輯meshaction.txt並添加您的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->25->673" + "default.handlebars->25->675" ] }, { @@ -9107,7 +9119,7 @@ "ru": "Скачать события состояния питания", "zh-chs": "下載電源事件", "xloc": [ - "default.handlebars->25->632" + "default.handlebars->25->634" ] }, { @@ -9175,7 +9187,7 @@ "ru": "Скачать список событий в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載事件列表。", "xloc": [ - "default.handlebars->25->1406" + "default.handlebars->25->1408" ] }, { @@ -9192,7 +9204,7 @@ "ru": "Скачать список пользователей в одном из форматов ниже.", "zh-chs": "使用以下一種文件格式下載用戶列表。", "xloc": [ - "default.handlebars->25->1465" + "default.handlebars->25->1467" ] }, { @@ -9275,7 +9287,7 @@ "nl": "Dubbele agent", "zh-chs": "代理重复", "xloc": [ - "default.handlebars->25->1742" + "default.handlebars->25->1744" ] }, { @@ -9309,7 +9321,7 @@ "ru": "Скопировать группу пользователей", "zh-chs": "重複的用戶組", "xloc": [ - "default.handlebars->25->1527" + "default.handlebars->25->1529" ] }, { @@ -9340,8 +9352,8 @@ "ru": "Длительность", "zh-chs": "持續時間", "xloc": [ - "default.handlebars->25->1696", - "default.handlebars->25->1716", + "default.handlebars->25->1698", + "default.handlebars->25->1718", "player.handlebars->3->2" ] }, @@ -9359,7 +9371,7 @@ "ru": "Во время активации агент будет иметь доступ к паролю администратора.", "zh-chs": "在激活期間,代理將有權訪問管理員密碼信息。", "xloc": [ - "default.handlebars->25->1235" + "default.handlebars->25->1237" ] }, { @@ -9376,7 +9388,7 @@ "ru": "Голландский (Бельгийский)", "zh-chs": "荷蘭語(比利時)", "xloc": [ - "default.handlebars->25->937" + "default.handlebars->25->939" ] }, { @@ -9393,7 +9405,7 @@ "ru": "Голландский (Стандартный)", "zh-chs": "荷蘭語(標準)", "xloc": [ - "default.handlebars->25->936" + "default.handlebars->25->938" ] }, { @@ -9584,7 +9596,7 @@ "zh-chs": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->272", - "default.handlebars->25->693" + "default.handlebars->25->695" ] }, { @@ -9604,10 +9616,10 @@ "default-mobile.handlebars->9->391", "default-mobile.handlebars->9->393", "default-mobile.handlebars->9->411", - "default.handlebars->25->1241", - "default.handlebars->25->1271", - "default.handlebars->25->1293", - "default.handlebars->25->1305" + "default.handlebars->25->1243", + "default.handlebars->25->1273", + "default.handlebars->25->1295", + "default.handlebars->25->1307" ] }, { @@ -9624,7 +9636,7 @@ "ru": "Редактировать функции группы устройств", "zh-chs": "編輯設備組功能", "xloc": [ - "default.handlebars->25->1257" + "default.handlebars->25->1259" ] }, { @@ -9641,8 +9653,8 @@ "ru": "Редактировать права группы устройств", "zh-chs": "編輯設備組權限", "xloc": [ - "default.handlebars->25->1290", - "default.handlebars->25->1302" + "default.handlebars->25->1292", + "default.handlebars->25->1304" ] }, { @@ -9659,7 +9671,7 @@ "ru": "Редактировать согласие пользователя группы устройств", "zh-chs": "編輯設備組用戶同意", "xloc": [ - "default.handlebars->25->1242" + "default.handlebars->25->1244" ] }, { @@ -9677,7 +9689,7 @@ "zh-chs": "編輯設備說明", "xloc": [ "default-mobile.handlebars->9->405", - "default.handlebars->25->1284" + "default.handlebars->25->1286" ] }, { @@ -9693,8 +9705,8 @@ "ru": "Изменить разрешения устройства", "zh-chs": "编辑设备权限", "xloc": [ - "default.handlebars->25->1295", - "default.handlebars->25->1297" + "default.handlebars->25->1297", + "default.handlebars->25->1299" ] }, { @@ -9708,7 +9720,7 @@ "nl": "Gebruikerstoestemming apparaat bewerken", "zh-chs": "编辑设备用户同意", "xloc": [ - "default.handlebars->25->1244" + "default.handlebars->25->1246" ] }, { @@ -9724,7 +9736,7 @@ "ru": "Редактировать группу", "zh-chs": "编辑组", "xloc": [ - "default.handlebars->25->596" + "default.handlebars->25->598" ] }, { @@ -9742,9 +9754,9 @@ "zh-chs": "編輯英特爾®AMT憑據", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->25->492", - "default.handlebars->25->495", - "default.handlebars->25->639" + "default.handlebars->25->494", + "default.handlebars->25->497", + "default.handlebars->25->641" ] }, { @@ -9762,7 +9774,7 @@ "zh-chs": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->418", - "default.handlebars->25->1312" + "default.handlebars->25->1314" ] }, { @@ -9776,7 +9788,7 @@ "nl": "Gebruikerstoestemming bewerken", "zh-chs": "编辑用户同意", "xloc": [ - "default.handlebars->25->1243" + "default.handlebars->25->1245" ] }, { @@ -9793,7 +9805,7 @@ "ru": "Редактировать права пользователя для группы устройств", "zh-chs": "編輯用戶設備組權限", "xloc": [ - "default.handlebars->25->1303" + "default.handlebars->25->1305" ] }, { @@ -9809,7 +9821,7 @@ "ru": "Изменить разрешения для пользовательских устройств", "zh-chs": "编辑用户设备权限", "xloc": [ - "default.handlebars->25->1298" + "default.handlebars->25->1300" ] }, { @@ -9826,7 +9838,7 @@ "ru": "Редактировать группу пользователей", "zh-chs": "編輯用戶組", "xloc": [ - "default.handlebars->25->1566" + "default.handlebars->25->1568" ] }, { @@ -9840,7 +9852,7 @@ "nl": "Gebruikersmachtigingen voor apparaatgroep bewerken", "zh-chs": "编辑用户组设备权限", "xloc": [ - "default.handlebars->25->1300" + "default.handlebars->25->1302" ] }, { @@ -9875,11 +9887,11 @@ "zh-chs": "電子郵件", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->25->1479", - "default.handlebars->25->1591", - "default.handlebars->25->1592", - "default.handlebars->25->1631", - "default.handlebars->25->1645", + "default.handlebars->25->1481", + "default.handlebars->25->1593", + "default.handlebars->25->1594", + "default.handlebars->25->1633", + "default.handlebars->25->1647", "default.handlebars->25->292", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -9902,7 +9914,7 @@ "zh-chs": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->25->1105" + "default.handlebars->25->1107" ] }, { @@ -9920,7 +9932,7 @@ "zh-chs": "郵件認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->25->874" + "default.handlebars->25->876" ] }, { @@ -9965,7 +9977,7 @@ "zh-chs": "電子郵件驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->25->1103" + "default.handlebars->25->1105" ] }, { @@ -9995,7 +10007,7 @@ "ru": "Электронная почта не подтверждена", "zh-chs": "邮件未验证", "xloc": [ - "default.handlebars->25->1435" + "default.handlebars->25->1437" ] }, { @@ -10012,8 +10024,8 @@ "ru": "Email подтвержден", "zh-chs": "電子郵件已驗證", "xloc": [ - "default.handlebars->25->1436", - "default.handlebars->25->1585" + "default.handlebars->25->1438", + "default.handlebars->25->1587" ] }, { @@ -10030,7 +10042,7 @@ "ru": "Email подтвержден.", "zh-chs": "電子郵件已驗證。", "xloc": [ - "default.handlebars->25->1485" + "default.handlebars->25->1487" ] }, { @@ -10047,7 +10059,7 @@ "ru": "Email не подтвержден", "zh-chs": "電子郵件未驗證", "xloc": [ - "default.handlebars->25->1586" + "default.handlebars->25->1588" ] }, { @@ -10086,7 +10098,7 @@ "en": "Email verified and forced password reset required.", "nl": "E-mail geverifieerd en geforceerd opnieuw instellen van wachtwoord vereist.", "xloc": [ - "default.handlebars->25->1486" + "default.handlebars->25->1488" ] }, { @@ -10099,7 +10111,7 @@ "nl": "Email/SMS verkeer", "zh-chs": "电子邮件/短信流量", "xloc": [ - "default.handlebars->25->1781" + "default.handlebars->25->1783" ] }, { @@ -10138,7 +10150,7 @@ "ru": "Включить коды приглашения", "zh-chs": "啟用邀請代碼", "xloc": [ - "default.handlebars->25->1333" + "default.handlebars->25->1335" ] }, { @@ -10173,7 +10185,7 @@ "zh-chs": "啟用電子郵件兩因素驗證。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->25->876" + "default.handlebars->25->878" ] }, { @@ -10197,7 +10209,7 @@ "en": "Enabled", "nl": "Ingeschakeld", "xloc": [ - "default.handlebars->25->1718" + "default.handlebars->25->1720" ] }, { @@ -10221,7 +10233,7 @@ "en": "End Time", "nl": "Eindtijd", "xloc": [ - "default.handlebars->25->1715" + "default.handlebars->25->1717" ] }, { @@ -10238,7 +10250,7 @@ "ru": "Английский", "zh-chs": "英語", "xloc": [ - "default.handlebars->25->938" + "default.handlebars->25->940" ] }, { @@ -10255,7 +10267,7 @@ "ru": "Английский (Австралия)", "zh-chs": "英文(澳洲)", "xloc": [ - "default.handlebars->25->939" + "default.handlebars->25->941" ] }, { @@ -10272,7 +10284,7 @@ "ru": "Английский (Белиз)", "zh-chs": "英語(伯利茲)", "xloc": [ - "default.handlebars->25->940" + "default.handlebars->25->942" ] }, { @@ -10289,7 +10301,7 @@ "ru": "Английский (Канада)", "zh-chs": "英文(加拿大)", "xloc": [ - "default.handlebars->25->941" + "default.handlebars->25->943" ] }, { @@ -10306,7 +10318,7 @@ "ru": "Английский (Ирландия)", "zh-chs": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->25->942" + "default.handlebars->25->944" ] }, { @@ -10323,7 +10335,7 @@ "ru": "Английский (Ямайка)", "zh-chs": "英文(牙買加)", "xloc": [ - "default.handlebars->25->943" + "default.handlebars->25->945" ] }, { @@ -10340,7 +10352,7 @@ "ru": "Английский (Новая Зеландия)", "zh-chs": "英文(紐西蘭)", "xloc": [ - "default.handlebars->25->944" + "default.handlebars->25->946" ] }, { @@ -10357,7 +10369,7 @@ "ru": "Английский (Филиппины)", "zh-chs": "英文(菲律賓)", "xloc": [ - "default.handlebars->25->945" + "default.handlebars->25->947" ] }, { @@ -10374,7 +10386,7 @@ "ru": "Английский (Южная Африка)", "zh-chs": "英語(南非)", "xloc": [ - "default.handlebars->25->946" + "default.handlebars->25->948" ] }, { @@ -10391,7 +10403,7 @@ "ru": "Английский (Тринидад и Тобаго)", "zh-chs": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->25->947" + "default.handlebars->25->949" ] }, { @@ -10408,7 +10420,7 @@ "ru": "Английский (Великобритания)", "zh-chs": "英文(英國)", "xloc": [ - "default.handlebars->25->948" + "default.handlebars->25->950" ] }, { @@ -10425,7 +10437,7 @@ "ru": "Английский (Соединенные Штаты)", "zh-chs": "美國英語)", "xloc": [ - "default.handlebars->25->949" + "default.handlebars->25->951" ] }, { @@ -10442,7 +10454,7 @@ "ru": "Английский (Зимбабве)", "zh-chs": "英文(津巴布韋)", "xloc": [ - "default.handlebars->25->950" + "default.handlebars->25->952" ] }, { @@ -10459,8 +10471,8 @@ "ru": "Ввод", "zh-chs": "輸入", "xloc": [ - "default.handlebars->25->1131", - "default.handlebars->25->1132" + "default.handlebars->25->1133", + "default.handlebars->25->1134" ] }, { @@ -10477,7 +10489,7 @@ "ru": "Введите разделенный запятыми список имен административных областей.", "zh-chs": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->25->1490" + "default.handlebars->25->1492" ] }, { @@ -10511,7 +10523,7 @@ "ru": "Для удаленного набора введите текст, используя английскую раскладку и нажмите OK. Перед продолжением убедитесь, что курсор на удаленном компьютере установлен в правильное положение.", "zh-chs": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->25->714" + "default.handlebars->25->716" ] }, { @@ -10559,7 +10571,7 @@ "nl": "Voer uw telefoonnummer in dat geschikt is voor SMS. Na verificatie kan het nummer worden gebruikt voor inlogverificatie en andere meldingen.", "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "xloc": [ - "default.handlebars->25->871" + "default.handlebars->25->873" ] }, { @@ -10610,7 +10622,7 @@ "ru": "Эсперанто", "zh-chs": "世界語", "xloc": [ - "default.handlebars->25->951" + "default.handlebars->25->953" ] }, { @@ -10627,7 +10639,7 @@ "ru": "Эстонский", "zh-chs": "愛沙尼亞語", "xloc": [ - "default.handlebars->25->952" + "default.handlebars->25->954" ] }, { @@ -10644,7 +10656,7 @@ "ru": "Детали события", "zh-chs": "活動詳情", "xloc": [ - "default.handlebars->25->791" + "default.handlebars->25->793" ] }, { @@ -10661,7 +10673,7 @@ "ru": "Экспорт списка событий", "zh-chs": "活動列表導出", "xloc": [ - "default.handlebars->25->1411" + "default.handlebars->25->1413" ] }, { @@ -10750,7 +10762,7 @@ "ru": "Расширенный ASCII", "zh-chs": "擴展ASCII", "xloc": [ - "default.handlebars->25->740" + "default.handlebars->25->742" ] }, { @@ -10784,7 +10796,7 @@ "ru": "Внешний", "zh-chs": "外部", "xloc": [ - "default.handlebars->25->1766" + "default.handlebars->25->1768" ] }, { @@ -10801,7 +10813,7 @@ "ru": "Mакедонский (БЮР)", "zh-chs": "FYRO馬其頓語", "xloc": [ - "default.handlebars->25->1002" + "default.handlebars->25->1004" ] }, { @@ -10818,7 +10830,7 @@ "ru": "Фарерский", "zh-chs": "法羅語", "xloc": [ - "default.handlebars->25->953" + "default.handlebars->25->955" ] }, { @@ -10848,7 +10860,7 @@ "ko": "원격 터미널 세션을 시작하지 못했습니다 : {0} ({1})", "zh-chs": "无法启动远程终端会话{0}({1})", "xloc": [ - "default.handlebars->25->696" + "default.handlebars->25->698" ] }, { @@ -10865,7 +10877,7 @@ "ru": "Фарси (Персидский)", "zh-chs": "波斯語(波斯語)", "xloc": [ - "default.handlebars->25->954" + "default.handlebars->25->956" ] }, { @@ -10900,7 +10912,7 @@ "ru": "Функции", "zh-chs": "特徵", "xloc": [ - "default.handlebars->25->1163" + "default.handlebars->25->1165" ] }, { @@ -10917,7 +10929,7 @@ "ru": "Фиджи", "zh-chs": "斐濟", "xloc": [ - "default.handlebars->25->955" + "default.handlebars->25->957" ] }, { @@ -10936,7 +10948,7 @@ "xloc": [ "default-mobile.handlebars->9->295", "default.handlebars->25->436", - "default.handlebars->25->763" + "default.handlebars->25->765" ] }, { @@ -10970,7 +10982,7 @@ "ru": "Драйвер файловой системы", "zh-chs": "FileSystemDriver", "xloc": [ - "default.handlebars->25->723" + "default.handlebars->25->725" ] }, { @@ -10989,8 +11001,8 @@ "xloc": [ "default-mobile.handlebars->9->165", "default-mobile.handlebars->9->246", - "default.handlebars->25->1252", - "default.handlebars->25->1703", + "default.handlebars->25->1254", + "default.handlebars->25->1705", "default.handlebars->25->218", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" @@ -11027,9 +11039,9 @@ "ru": "Уведомление файлов", "zh-chs": "文件通知", "xloc": [ - "default.handlebars->25->1171", - "default.handlebars->25->1616", - "default.handlebars->25->517" + "default.handlebars->25->1173", + "default.handlebars->25->1618", + "default.handlebars->25->519" ] }, { @@ -11046,9 +11058,9 @@ "ru": "Запрос файлов", "zh-chs": "文件提示", "xloc": [ - "default.handlebars->25->1170", - "default.handlebars->25->1615", - "default.handlebars->25->516" + "default.handlebars->25->1172", + "default.handlebars->25->1617", + "default.handlebars->25->518" ] }, { @@ -11085,7 +11097,7 @@ "ru": "Финский", "zh-chs": "芬蘭", "xloc": [ - "default.handlebars->25->956" + "default.handlebars->25->958" ] }, { @@ -11208,8 +11220,8 @@ "ru": "Принудительно сбросить пароль при следующем входе в систему.", "zh-chs": "下次登錄時強制重置密碼。", "xloc": [ - "default.handlebars->25->1484", - "default.handlebars->25->1654" + "default.handlebars->25->1486", + "default.handlebars->25->1656" ] }, { @@ -11295,8 +11307,8 @@ "ru": "Свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1727", - "default.handlebars->25->1729" + "default.handlebars->25->1729", + "default.handlebars->25->1731" ] }, { @@ -11331,7 +11343,7 @@ "ru": "Французский (Бельгия)", "zh-chs": "法語(比利時)", "xloc": [ - "default.handlebars->25->958" + "default.handlebars->25->960" ] }, { @@ -11348,7 +11360,7 @@ "ru": "Французский (Канада)", "zh-chs": "法語(加拿大)", "xloc": [ - "default.handlebars->25->959" + "default.handlebars->25->961" ] }, { @@ -11365,7 +11377,7 @@ "ru": "Французский (Франция)", "zh-chs": "法語(法國)", "xloc": [ - "default.handlebars->25->960" + "default.handlebars->25->962" ] }, { @@ -11382,7 +11394,7 @@ "ru": "Французский (Люксембург)", "zh-chs": "法語(盧森堡)", "xloc": [ - "default.handlebars->25->961" + "default.handlebars->25->963" ] }, { @@ -11399,7 +11411,7 @@ "ru": "Французский (Монако)", "zh-chs": "法語(摩納哥)", "xloc": [ - "default.handlebars->25->962" + "default.handlebars->25->964" ] }, { @@ -11416,7 +11428,7 @@ "ru": "Французский (Стандартный)", "zh-chs": "法語(標準)", "xloc": [ - "default.handlebars->25->957" + "default.handlebars->25->959" ] }, { @@ -11433,7 +11445,7 @@ "ru": "Французский (Швейцария)", "zh-chs": "法語(瑞士)", "xloc": [ - "default.handlebars->25->963" + "default.handlebars->25->965" ] }, { @@ -11450,7 +11462,7 @@ "ru": "Фризский", "zh-chs": "弗里斯蘭語", "xloc": [ - "default.handlebars->25->964" + "default.handlebars->25->966" ] }, { @@ -11467,7 +11479,7 @@ "ru": "Фриульский", "zh-chs": "弗留利", "xloc": [ - "default.handlebars->25->965" + "default.handlebars->25->967" ] }, { @@ -11488,9 +11500,9 @@ "default-mobile.handlebars->9->383", "default-mobile.handlebars->9->392", "default-mobile.handlebars->9->410", - "default.handlebars->25->1138", - "default.handlebars->25->1270", - "default.handlebars->25->1496" + "default.handlebars->25->1140", + "default.handlebars->25->1272", + "default.handlebars->25->1498" ] }, { @@ -11507,7 +11519,7 @@ "ru": "Администратор с полным доступом (все права)", "zh-chs": "正式管理員(保留所有權利)", "xloc": [ - "default.handlebars->25->1304" + "default.handlebars->25->1306" ] }, { @@ -11538,7 +11550,7 @@ "ru": "Полные права на устройство", "zh-chs": "完整的設備權限", "xloc": [ - "default.handlebars->25->579" + "default.handlebars->25->581" ] }, { @@ -11554,7 +11566,7 @@ "ru": "Полные права", "zh-chs": "完全权利", "xloc": [ - "default.handlebars->25->595" + "default.handlebars->25->597" ] }, { @@ -11590,7 +11602,7 @@ "ru": "Администратор с полным доступом", "zh-chs": "正式管理員", "xloc": [ - "default.handlebars->25->1580" + "default.handlebars->25->1582" ] }, { @@ -11604,7 +11616,7 @@ "zh-chs": "显卡", "xloc": [ "default-mobile.handlebars->9->361", - "default.handlebars->25->839" + "default.handlebars->25->841" ] }, { @@ -11621,7 +11633,7 @@ "ru": "Гэльский (Ирландский)", "zh-chs": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->25->967" + "default.handlebars->25->969" ] }, { @@ -11638,7 +11650,7 @@ "ru": "Гэльский (Шотландия)", "zh-chs": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->25->966" + "default.handlebars->25->968" ] }, { @@ -11655,7 +11667,7 @@ "ru": "Галицкий", "zh-chs": "加拉契人", "xloc": [ - "default.handlebars->25->968" + "default.handlebars->25->970" ] }, { @@ -11763,7 +11775,7 @@ "ru": "Грузинский", "zh-chs": "格魯吉亞人", "xloc": [ - "default.handlebars->25->969" + "default.handlebars->25->971" ] }, { @@ -11780,7 +11792,7 @@ "ru": "Немецкий (Австрия)", "zh-chs": "德語(奧地利)", "xloc": [ - "default.handlebars->25->971" + "default.handlebars->25->973" ] }, { @@ -11797,7 +11809,7 @@ "ru": "Немецкий (Германия)", "zh-chs": "德文(德國)", "xloc": [ - "default.handlebars->25->972" + "default.handlebars->25->974" ] }, { @@ -11814,7 +11826,7 @@ "ru": "Немецкий (Лихтенштейн)", "zh-chs": "德文(列支敦士登)", "xloc": [ - "default.handlebars->25->973" + "default.handlebars->25->975" ] }, { @@ -11831,7 +11843,7 @@ "ru": "Немецкий (Люксембург)", "zh-chs": "德語(盧森堡)", "xloc": [ - "default.handlebars->25->974" + "default.handlebars->25->976" ] }, { @@ -11848,7 +11860,7 @@ "ru": "Немецкий (Стандартный)", "zh-chs": "德語(標準)", "xloc": [ - "default.handlebars->25->970" + "default.handlebars->25->972" ] }, { @@ -11865,7 +11877,7 @@ "ru": "Немецкий (Швейцария)", "zh-chs": "德語(瑞士)", "xloc": [ - "default.handlebars->25->975" + "default.handlebars->25->977" ] }, { @@ -11882,7 +11894,7 @@ "ru": "Получить учетные данные MQTT для этого устройства.", "zh-chs": "獲取此設備的MQTT登錄憑據。", "xloc": [ - "default.handlebars->25->560" + "default.handlebars->25->562" ] }, { @@ -11948,7 +11960,7 @@ "ru": "Хорошо", "zh-chs": "好", "xloc": [ - "default.handlebars->25->1134" + "default.handlebars->25->1136" ] }, { @@ -11985,7 +11997,7 @@ "ru": "Греческий", "zh-chs": "希臘語", "xloc": [ - "default.handlebars->25->976" + "default.handlebars->25->978" ] }, { @@ -12003,7 +12015,7 @@ "zh-chs": "組", "xloc": [ "default-mobile.handlebars->9->203", - "default.handlebars->25->469", + "default.handlebars->25->471", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -12021,8 +12033,8 @@ "ru": "Групповое действие", "zh-chs": "集體行動", "xloc": [ - "default.handlebars->25->1448", - "default.handlebars->25->1517", + "default.handlebars->25->1450", + "default.handlebars->25->1519", "default.handlebars->25->406", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -12033,7 +12045,7 @@ "en": "Group Identifier", "nl": "Groepsidentificatie", "xloc": [ - "default.handlebars->25->1534" + "default.handlebars->25->1536" ] }, { @@ -12050,7 +12062,7 @@ "ru": "Члены группы", "zh-chs": "小組成員", "xloc": [ - "default.handlebars->25->1543" + "default.handlebars->25->1545" ] }, { @@ -12067,7 +12079,7 @@ "ru": "Права на группу для пользователя {0}.", "zh-chs": "用戶{0}的組權限。", "xloc": [ - "default.handlebars->25->1269" + "default.handlebars->25->1271" ] }, { @@ -12084,7 +12096,7 @@ "ru": "Права на группу для {0}.", "zh-chs": "{0}的組權限。", "xloc": [ - "default.handlebars->25->1268" + "default.handlebars->25->1270" ] }, { @@ -12135,7 +12147,7 @@ "ru": "Гуджарати", "zh-chs": "古久拉提", "xloc": [ - "default.handlebars->25->977" + "default.handlebars->25->979" ] }, { @@ -12171,7 +12183,7 @@ "ru": "Гаитянский", "zh-chs": "海地", "xloc": [ - "default.handlebars->25->978" + "default.handlebars->25->980" ] }, { @@ -12205,7 +12217,7 @@ "ru": "Жесткое отключение агента", "zh-chs": "硬斷開劑", "xloc": [ - "default.handlebars->25->866" + "default.handlebars->25->868" ] }, { @@ -12222,7 +12234,7 @@ "ru": "Всего кучи", "zh-chs": "堆總數", "xloc": [ - "default.handlebars->25->1768" + "default.handlebars->25->1770" ] }, { @@ -12239,7 +12251,7 @@ "ru": "Куча используется", "zh-chs": "堆使用", "xloc": [ - "default.handlebars->25->1767" + "default.handlebars->25->1769" ] }, { @@ -12256,7 +12268,7 @@ "ru": "Иврит", "zh-chs": "希伯來語", "xloc": [ - "default.handlebars->25->979" + "default.handlebars->25->981" ] }, { @@ -12290,7 +12302,7 @@ "ru": "Помочь перевести MeshCentral", "zh-chs": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->25->1093" + "default.handlebars->25->1095" ] }, { @@ -12376,7 +12388,7 @@ "ru": "Хинди", "zh-chs": "印地語", "xloc": [ - "default.handlebars->25->980" + "default.handlebars->25->982" ] }, { @@ -12412,7 +12424,7 @@ "zh-chs": "持有1份副本", "xloc": [ "default-mobile.handlebars->9->304", - "default.handlebars->25->772" + "default.handlebars->25->774" ] }, { @@ -12430,7 +12442,7 @@ "zh-chs": "持有1個搬家公司", "xloc": [ "default-mobile.handlebars->9->308", - "default.handlebars->25->776" + "default.handlebars->25->778" ] }, { @@ -12448,7 +12460,7 @@ "zh-chs": "保留{0}個條目進行複制", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->25->770" + "default.handlebars->25->772" ] }, { @@ -12466,7 +12478,7 @@ "zh-chs": "保留{0}個條目以進行移動", "xloc": [ "default-mobile.handlebars->9->306", - "default.handlebars->25->774" + "default.handlebars->25->776" ] }, { @@ -12484,7 +12496,7 @@ "zh-chs": "保持{2}的{0}入口{1}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->25->1398" + "default.handlebars->25->1400" ] }, { @@ -12506,8 +12518,8 @@ "default-mobile.handlebars->9->208", "default-mobile.handlebars->9->268", "default.handlebars->25->245", - "default.handlebars->25->474", - "default.handlebars->25->689" + "default.handlebars->25->476", + "default.handlebars->25->691" ] }, { @@ -12524,7 +12536,7 @@ "ru": "Синхронизация имени хоста", "zh-chs": "主機名同步", "xloc": [ - "default.handlebars->25->1161" + "default.handlebars->25->1163" ] }, { @@ -12541,7 +12553,7 @@ "ru": "Венгерский", "zh-chs": "匈牙利", "xloc": [ - "default.handlebars->25->981" + "default.handlebars->25->983" ] }, { @@ -12594,7 +12606,7 @@ "zh-chs": "IP:{0}", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->25->812" + "default.handlebars->25->814" ] }, { @@ -12612,7 +12624,7 @@ "zh-chs": "IP:{0},掩碼:{1},網關:{2}", "xloc": [ "default-mobile.handlebars->9->332", - "default.handlebars->25->810" + "default.handlebars->25->812" ] }, { @@ -12631,8 +12643,8 @@ "xloc": [ "default-mobile.handlebars->9->331", "default-mobile.handlebars->9->333", - "default.handlebars->25->809", - "default.handlebars->25->811" + "default.handlebars->25->811", + "default.handlebars->25->813" ] }, { @@ -12700,7 +12712,7 @@ "ru": "Исландский", "zh-chs": "冰島的", "xloc": [ - "default.handlebars->25->982" + "default.handlebars->25->984" ] }, { @@ -12718,7 +12730,7 @@ "zh-chs": "圖標選擇", "xloc": [ "default-mobile.handlebars->9->266", - "default.handlebars->25->687" + "default.handlebars->25->689" ] }, { @@ -12736,7 +12748,7 @@ "zh-chs": "識別碼", "xloc": [ "default-mobile.handlebars->9->359", - "default.handlebars->25->837" + "default.handlebars->25->839" ] }, { @@ -12839,7 +12851,7 @@ "ru": "Индонезийский", "zh-chs": "印度尼西亞", "xloc": [ - "default.handlebars->25->983" + "default.handlebars->25->985" ] }, { @@ -12956,7 +12968,7 @@ "ru": "Установка CIRA", "zh-chs": "安裝CIRA", "xloc": [ - "default.handlebars->25->1194" + "default.handlebars->25->1196" ] }, { @@ -12973,7 +12985,7 @@ "ru": "Локальная установка", "zh-chs": "安裝本地", "xloc": [ - "default.handlebars->25->1196" + "default.handlebars->25->1198" ] }, { @@ -12990,8 +13002,8 @@ "ru": "Тип установки", "zh-chs": "安裝類型", "xloc": [ - "default.handlebars->25->1335", - "default.handlebars->25->1342", + "default.handlebars->25->1337", + "default.handlebars->25->1344", "default.handlebars->25->307", "default.handlebars->25->329" ] @@ -13010,7 +13022,7 @@ "ru": "Intel (F10 = ESC+[OM)", "zh-chs": "英特爾(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->25->742", + "default.handlebars->25->744", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -13028,10 +13040,10 @@ "ru": "Intel AMT", "zh-chs": "英特爾AMT", "xloc": [ - "default.handlebars->25->1354", - "default.handlebars->25->1362", - "default.handlebars->25->1764", - "default.handlebars->25->1786" + "default.handlebars->25->1356", + "default.handlebars->25->1364", + "default.handlebars->25->1766", + "default.handlebars->25->1788" ] }, { @@ -13072,14 +13084,14 @@ "en": "Intel AMT Redirection", "nl": "Intel AMT omleiding", "xloc": [ - "default.handlebars->25->1705" + "default.handlebars->25->1707" ] }, { "en": "Intel AMT WSMAN", "nl": "Intel AMT WSMAN", "xloc": [ - "default.handlebars->25->1704" + "default.handlebars->25->1706" ] }, { @@ -13113,7 +13125,7 @@ "ru": "Intel AMT активирован в режиме администратора", "zh-chs": "在管理控制模式下激活了Intel AMT", "xloc": [ - "default.handlebars->25->488" + "default.handlebars->25->490" ] }, { @@ -13130,7 +13142,7 @@ "ru": "Intel AMT активирован в режиме клиента", "zh-chs": "英特爾AMT在客戶端控制模式下被激活", "xloc": [ - "default.handlebars->25->486" + "default.handlebars->25->488" ] }, { @@ -13147,7 +13159,7 @@ "ru": "Intel AMT настроен с TLS безопасностью сети", "zh-chs": "英特爾AMT已設置TLS網絡安全性", "xloc": [ - "default.handlebars->25->490" + "default.handlebars->25->492" ] }, { @@ -13198,7 +13210,7 @@ "ru": "Intel ASCII", "zh-chs": "英特爾ASCII", "xloc": [ - "default.handlebars->25->741" + "default.handlebars->25->743" ] }, { @@ -13218,11 +13230,11 @@ "default-mobile.handlebars->9->192", "default-mobile.handlebars->9->225", "default-mobile.handlebars->9->230", - "default.handlebars->25->1178", - "default.handlebars->25->1188", + "default.handlebars->25->1180", + "default.handlebars->25->1190", "default.handlebars->25->446", - "default.handlebars->25->499", - "default.handlebars->25->527" + "default.handlebars->25->501", + "default.handlebars->25->529" ] }, { @@ -13240,7 +13252,7 @@ "zh-chs": "英特爾®AMT CIRA", "xloc": [ "default-mobile.handlebars->9->229", - "default.handlebars->25->525" + "default.handlebars->25->527" ] }, { @@ -13259,7 +13271,7 @@ "xloc": [ "default.handlebars->25->178", "default.handlebars->25->384", - "default.handlebars->25->524" + "default.handlebars->25->526" ] }, { @@ -13295,7 +13307,7 @@ "ru": "Политика Intel® AMT", "zh-chs": "英特爾®AMT政策", "xloc": [ - "default.handlebars->25->1217" + "default.handlebars->25->1219" ] }, { @@ -13329,7 +13341,7 @@ "ru": "Intel® AMT Тег", "zh-chs": "英特爾®AMT標籤", "xloc": [ - "default.handlebars->25->503" + "default.handlebars->25->505" ] }, { @@ -13382,8 +13394,8 @@ "zh-chs": "英特爾®AMT已連接", "xloc": [ "default-mobile.handlebars->9->240", - "default.handlebars->25->564", - "default.handlebars->25->565" + "default.handlebars->25->566", + "default.handlebars->25->567" ] }, { @@ -13400,8 +13412,8 @@ "ru": "События Intel® AMT desktop или serial.", "zh-chs": "英特爾®AMT桌面和串行事件。", "xloc": [ - "default.handlebars->25->1099", - "default.handlebars->25->1350" + "default.handlebars->25->1101", + "default.handlebars->25->1352" ] }, { @@ -13419,8 +13431,8 @@ "zh-chs": "檢測到英特爾®AMT", "xloc": [ "default-mobile.handlebars->9->241", - "default.handlebars->25->566", - "default.handlebars->25->567" + "default.handlebars->25->568", + "default.handlebars->25->569" ] }, { @@ -13437,7 +13449,7 @@ "ru": "Intel® AMT маршрутизируется и готов к использованию.", "zh-chs": "英特爾®AMT可路由並可以使用。", "xloc": [ - "default.handlebars->25->526" + "default.handlebars->25->528" ] }, { @@ -13490,8 +13502,8 @@ "zh-chs": "僅限英特爾®AMT,無代理", "xloc": [ "default-mobile.handlebars->9->374", - "default.handlebars->25->1128", - "default.handlebars->25->1154" + "default.handlebars->25->1130", + "default.handlebars->25->1156" ] }, { @@ -13508,7 +13520,7 @@ "ru": "Технология Intel® Active Management", "zh-chs": "英特爾®主動管理技術", "xloc": [ - "default.handlebars->25->498" + "default.handlebars->25->500" ] }, { @@ -13526,7 +13538,7 @@ "zh-chs": "英特爾®主動管理技術(英特爾®AMT)", "xloc": [ "default-mobile.handlebars->9->351", - "default.handlebars->25->829" + "default.handlebars->25->831" ] }, { @@ -13544,7 +13556,7 @@ "zh-chs": "英特爾®ME", "xloc": [ "default-mobile.handlebars->9->224", - "default.handlebars->25->497" + "default.handlebars->25->499" ] }, { @@ -13557,7 +13569,7 @@ "nl": "Intel® Manageability Engine", "zh-chs": "英特尔®可管理性引擎", "xloc": [ - "default.handlebars->25->496" + "default.handlebars->25->498" ] }, { @@ -13575,7 +13587,7 @@ "zh-chs": "英特爾®SM", "xloc": [ "default-mobile.handlebars->9->226", - "default.handlebars->25->501" + "default.handlebars->25->503" ] }, { @@ -13592,7 +13604,7 @@ "ru": "Intel® Standard Manageability", "zh-chs": "英特爾®標準可管理性", "xloc": [ - "default.handlebars->25->500" + "default.handlebars->25->502" ] }, { @@ -13693,7 +13705,7 @@ "ru": "Интерактивный", "zh-chs": "互動", "xloc": [ - "default.handlebars->25->724" + "default.handlebars->25->726" ] }, { @@ -13710,8 +13722,8 @@ "ru": "Только интерактивный режим", "zh-chs": "僅限互動", "xloc": [ - "default.handlebars->25->1338", - "default.handlebars->25->1345", + "default.handlebars->25->1340", + "default.handlebars->25->1347", "default.handlebars->25->310", "default.handlebars->25->332" ] @@ -13730,7 +13742,7 @@ "ru": "Интерфейсы", "zh-chs": "介面", "xloc": [ - "default.handlebars->25->547" + "default.handlebars->25->549" ] }, { @@ -13747,7 +13759,7 @@ "ru": "Инуктитут", "zh-chs": "因紐特人", "xloc": [ - "default.handlebars->25->984" + "default.handlebars->25->986" ] }, { @@ -13764,7 +13776,7 @@ "ru": "Некорректный тип группы устройств", "zh-chs": "無效的設備組類型", "xloc": [ - "default.handlebars->25->1741" + "default.handlebars->25->1743" ] }, { @@ -13781,7 +13793,7 @@ "ru": "Некорректный JSON", "zh-chs": "無效的JSON", "xloc": [ - "default.handlebars->25->1735" + "default.handlebars->25->1737" ] }, { @@ -13798,8 +13810,8 @@ "ru": "Некорректный формат файла JSON.", "zh-chs": "無效的JSON文件格式。", "xloc": [ - "default.handlebars->25->1462", - "default.handlebars->25->1464" + "default.handlebars->25->1464", + "default.handlebars->25->1466" ] }, { @@ -13816,7 +13828,7 @@ "ru": "Некорректный файл JSON: {0}.", "zh-chs": "無效的JSON文件:{0}。", "xloc": [ - "default.handlebars->25->1460" + "default.handlebars->25->1462" ] }, { @@ -13833,7 +13845,7 @@ "ru": "Некорректная сигнатура PKCS", "zh-chs": "無效的PKCS簽名", "xloc": [ - "default.handlebars->25->1733" + "default.handlebars->25->1735" ] }, { @@ -13850,7 +13862,7 @@ "ru": "Некорректная сигнатура RSA", "zh-chs": "無效的RSA密碼", "xloc": [ - "default.handlebars->25->1734" + "default.handlebars->25->1736" ] }, { @@ -13986,7 +13998,7 @@ "ru": "Коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1340" + "default.handlebars->25->1342" ] }, { @@ -14019,7 +14031,7 @@ "ru": "Пригласить", "zh-chs": "邀請", "xloc": [ - "default.handlebars->25->1204", + "default.handlebars->25->1206", "default.handlebars->25->242", "default.handlebars->25->322" ] @@ -14038,11 +14050,11 @@ "ru": "Пригласительные коды", "zh-chs": "邀請碼", "xloc": [ - "default.handlebars->25->1182", - "default.handlebars->25->1334", - "default.handlebars->25->1339", + "default.handlebars->25->1184", + "default.handlebars->25->1336", "default.handlebars->25->1341", - "default.handlebars->25->1346" + "default.handlebars->25->1343", + "default.handlebars->25->1348" ] }, { @@ -14073,7 +14085,7 @@ "nl": "Nodig iemand uit om de mesh-agent in deze apparaatgroep te installeren.", "zh-chs": "邀请某人在该设备组上安装网状代理。", "xloc": [ - "default.handlebars->25->1203", + "default.handlebars->25->1205", "default.handlebars->25->241" ] }, @@ -14108,7 +14120,7 @@ "ru": "Ирландский", "zh-chs": "愛爾蘭人", "xloc": [ - "default.handlebars->25->985" + "default.handlebars->25->987" ] }, { @@ -14125,7 +14137,7 @@ "ru": "Итальянский (Стандартный)", "zh-chs": "意大利語(標準)", "xloc": [ - "default.handlebars->25->986" + "default.handlebars->25->988" ] }, { @@ -14142,7 +14154,7 @@ "ru": "Итальянский (Швейцария)", "zh-chs": "義大利文(瑞士)", "xloc": [ - "default.handlebars->25->987" + "default.handlebars->25->989" ] }, { @@ -14159,8 +14171,8 @@ "ru": "Формат JSON", "zh-chs": "JSON格式", "xloc": [ - "default.handlebars->25->1409", - "default.handlebars->25->1468", + "default.handlebars->25->1411", + "default.handlebars->25->1470", "default.handlebars->25->413" ] }, @@ -14178,7 +14190,7 @@ "ru": "Японский", "zh-chs": "日本", "xloc": [ - "default.handlebars->25->988" + "default.handlebars->25->990" ] }, { @@ -14195,7 +14207,7 @@ "ru": "Каннада", "zh-chs": "卡納達語", "xloc": [ - "default.handlebars->25->989" + "default.handlebars->25->991" ] }, { @@ -14212,7 +14224,7 @@ "ru": "Кашмирский", "zh-chs": "克什米爾語", "xloc": [ - "default.handlebars->25->990" + "default.handlebars->25->992" ] }, { @@ -14229,7 +14241,7 @@ "ru": "Казахский", "zh-chs": "哈薩克語", "xloc": [ - "default.handlebars->25->991" + "default.handlebars->25->993" ] }, { @@ -14246,7 +14258,7 @@ "ru": "Драйвер ядра", "zh-chs": "內核驅動程序", "xloc": [ - "default.handlebars->25->725" + "default.handlebars->25->727" ] }, { @@ -14263,8 +14275,8 @@ "ru": "Имя ключа", "zh-chs": "鍵名", "xloc": [ - "default.handlebars->25->882", - "default.handlebars->25->885" + "default.handlebars->25->884", + "default.handlebars->25->887" ] }, { @@ -14305,7 +14317,7 @@ "ru": "Кхмерский", "zh-chs": "高棉語", "xloc": [ - "default.handlebars->25->992" + "default.handlebars->25->994" ] }, { @@ -14322,7 +14334,7 @@ "ru": "Киргизский", "zh-chs": "吉爾吉斯", "xloc": [ - "default.handlebars->25->993" + "default.handlebars->25->995" ] }, { @@ -14339,7 +14351,7 @@ "ru": "Клингонский", "zh-chs": "克林貢", "xloc": [ - "default.handlebars->25->994" + "default.handlebars->25->996" ] }, { @@ -14357,7 +14369,7 @@ "zh-chs": "已知的", "xloc": [ "default-mobile.handlebars->9->350", - "default.handlebars->25->828" + "default.handlebars->25->830" ] }, { @@ -14374,7 +14386,7 @@ "ru": "Korean", "zh-chs": "韓語", "xloc": [ - "default.handlebars->25->995" + "default.handlebars->25->997" ] }, { @@ -14391,7 +14403,7 @@ "ru": "Корейский (Северная Корея)", "zh-chs": "韓語(朝鮮)", "xloc": [ - "default.handlebars->25->996" + "default.handlebars->25->998" ] }, { @@ -14408,7 +14420,7 @@ "ru": "Корейский (Южная Корея)", "zh-chs": "韓語(韓國)", "xloc": [ - "default.handlebars->25->997" + "default.handlebars->25->999" ] }, { @@ -14425,8 +14437,8 @@ "ru": "LF", "zh-chs": "如果", "xloc": [ - "default.handlebars->25->737", - "default.handlebars->25->746" + "default.handlebars->25->739", + "default.handlebars->25->748" ] }, { @@ -14443,7 +14455,7 @@ "ru": "Язык", "zh-chs": "語言", "xloc": [ - "default.handlebars->25->1091" + "default.handlebars->25->1093" ] }, { @@ -14477,7 +14489,7 @@ "ru": "Большой Фокус", "zh-chs": "大焦點", "xloc": [ - "default.handlebars->25->713" + "default.handlebars->25->715" ] }, { @@ -14660,7 +14672,7 @@ "ru": "Последний доступ", "zh-chs": "最後訪問", "xloc": [ - "default.handlebars->25->1417" + "default.handlebars->25->1419" ] }, { @@ -14677,7 +14689,7 @@ "ru": "Последний вход в систему", "zh-chs": "上次登錄", "xloc": [ - "default.handlebars->25->1598" + "default.handlebars->25->1600" ] }, { @@ -14700,9 +14712,9 @@ "default.handlebars->25->70", "default.handlebars->25->72", "default.handlebars->25->74", - "default.handlebars->25->800", - "default.handlebars->25->801", - "default.handlebars->25->802" + "default.handlebars->25->802", + "default.handlebars->25->803", + "default.handlebars->25->804" ] }, { @@ -14722,8 +14734,8 @@ "default-mobile.handlebars->9->319", "default-mobile.handlebars->9->321", "default.handlebars->25->69", - "default.handlebars->25->797", - "default.handlebars->25->799" + "default.handlebars->25->799", + "default.handlebars->25->801" ] }, { @@ -14740,7 +14752,7 @@ "ru": "Последнее изменение: {0}", "zh-chs": "上次更改:{0}", "xloc": [ - "default.handlebars->25->1602" + "default.handlebars->25->1604" ] }, { @@ -14791,7 +14803,7 @@ "ru": "Последний вход в систему: {0}", "zh-chs": "上次登錄:{0}", "xloc": [ - "default.handlebars->25->1427" + "default.handlebars->25->1429" ] }, { @@ -14808,7 +14820,7 @@ "ru": "Последнее посещение:", "zh-chs": "最後一次露面:", "xloc": [ - "default.handlebars->25->570", + "default.handlebars->25->572", "default.handlebars->25->65" ] }, @@ -14877,7 +14889,7 @@ "ru": "Латинский", "zh-chs": "拉丁", "xloc": [ - "default.handlebars->25->998" + "default.handlebars->25->1000" ] }, { @@ -14894,7 +14906,7 @@ "ru": "Латышский", "zh-chs": "拉脫維亞語", "xloc": [ - "default.handlebars->25->999" + "default.handlebars->25->1001" ] }, { @@ -14907,7 +14919,7 @@ "nl": "Leeg laten voor geen.", "zh-chs": "一无所有。", "xloc": [ - "default.handlebars->25->1642" + "default.handlebars->25->1644" ] }, { @@ -14946,7 +14958,7 @@ "ru": "Меньше", "zh-chs": "減", "xloc": [ - "default.handlebars->25->1803" + "default.handlebars->25->1805" ] }, { @@ -14962,8 +14974,8 @@ "ru": "Предельные события", "zh-chs": "极限赛事", "xloc": [ - "default.handlebars->25->591", - "default.handlebars->25->610" + "default.handlebars->25->593", + "default.handlebars->25->612" ] }, { @@ -14999,9 +15011,9 @@ "zh-chs": "有限輸入", "xloc": [ "default-mobile.handlebars->9->423", - "default.handlebars->25->1318", - "default.handlebars->25->584", - "default.handlebars->25->603" + "default.handlebars->25->1320", + "default.handlebars->25->586", + "default.handlebars->25->605" ] }, { @@ -15019,7 +15031,7 @@ "zh-chs": "僅限於輸入", "xloc": [ "default-mobile.handlebars->9->398", - "default.handlebars->25->1276" + "default.handlebars->25->1278" ] }, { @@ -15192,7 +15204,7 @@ "ru": "Linux ARM, Raspberry Pi (32bit)", "zh-chs": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->25->671" + "default.handlebars->25->673" ] }, { @@ -15298,7 +15310,7 @@ "ru": "Linux x86 (32bit)", "zh-chs": "Linux x86(32位)", "xloc": [ - "default.handlebars->25->668" + "default.handlebars->25->670" ] }, { @@ -15315,7 +15327,7 @@ "ru": "Linux x86 (64bit)", "zh-chs": "Linux x86(64位)", "xloc": [ - "default.handlebars->25->669" + "default.handlebars->25->671" ] }, { @@ -15350,7 +15362,7 @@ "ru": "Литовский", "zh-chs": "立陶宛語", "xloc": [ - "default.handlebars->25->1000" + "default.handlebars->25->1002" ] }, { @@ -15368,10 +15380,10 @@ "zh-chs": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->25->1145", - "default.handlebars->25->1149", - "default.handlebars->25->660", - "default.handlebars->25->878" + "default.handlebars->25->1147", + "default.handlebars->25->1151", + "default.handlebars->25->662", + "default.handlebars->25->880" ] }, { @@ -15439,7 +15451,7 @@ "ru": "Настройки локализации", "zh-chs": "本地化設置", "xloc": [ - "default.handlebars->25->1094", + "default.handlebars->25->1096", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -15457,7 +15469,7 @@ "ru": "Местонахождение", "zh-chs": "位置", "xloc": [ - "default.handlebars->25->549" + "default.handlebars->25->551" ] }, { @@ -15491,7 +15503,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1503" + "default.handlebars->25->1505" ] }, { @@ -15508,7 +15520,7 @@ "ru": "Заблокировать учетную запись", "zh-chs": "鎖定賬戶", "xloc": [ - "default.handlebars->25->1445" + "default.handlebars->25->1447" ] }, { @@ -15525,7 +15537,7 @@ "ru": "Заблокирован", "zh-chs": "已鎖定", "xloc": [ - "default.handlebars->25->1428" + "default.handlebars->25->1430" ] }, { @@ -15542,7 +15554,7 @@ "ru": "Заблокированная учетная запись", "zh-chs": "賬戶鎖定", "xloc": [ - "default.handlebars->25->1577" + "default.handlebars->25->1579" ] }, { @@ -15559,7 +15571,7 @@ "ru": "Добавить событие", "zh-chs": "記錄事件", "xloc": [ - "default.handlebars->25->538" + "default.handlebars->25->540" ] }, { @@ -15729,7 +15741,7 @@ "ru": "Люксембургский", "zh-chs": "盧森堡語", "xloc": [ - "default.handlebars->25->1001" + "default.handlebars->25->1003" ] }, { @@ -15748,8 +15760,8 @@ "xloc": [ "default-mobile.handlebars->9->327", "default-mobile.handlebars->9->329", - "default.handlebars->25->805", - "default.handlebars->25->807" + "default.handlebars->25->807", + "default.handlebars->25->809" ] }, { @@ -15784,7 +15796,7 @@ "zh-chs": "MAC:{0}", "xloc": [ "default-mobile.handlebars->9->330", - "default.handlebars->25->808" + "default.handlebars->25->810" ] }, { @@ -15802,7 +15814,7 @@ "zh-chs": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->9->328", - "default.handlebars->25->806" + "default.handlebars->25->808" ] }, { @@ -15859,9 +15871,9 @@ "default-mobile.handlebars->9->232", "default.handlebars->25->185", "default.handlebars->25->391", - "default.handlebars->25->531", - "default.handlebars->25->856", - "default.handlebars->25->857", + "default.handlebars->25->533", + "default.handlebars->25->858", + "default.handlebars->25->859", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -15896,7 +15908,7 @@ "ru": "MQTT Вход", "zh-chs": "MQTT登錄", "xloc": [ - "default.handlebars->25->561" + "default.handlebars->25->563" ] }, { @@ -15914,7 +15926,7 @@ "zh-chs": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->242", - "default.handlebars->25->569" + "default.handlebars->25->571" ] }, { @@ -15932,7 +15944,7 @@ "zh-chs": "MQTT已連接", "xloc": [ "default.handlebars->25->147", - "default.handlebars->25->568" + "default.handlebars->25->570" ] }, { @@ -15951,7 +15963,7 @@ "xloc": [ "default.handlebars->25->184", "default.handlebars->25->390", - "default.handlebars->25->530" + "default.handlebars->25->532" ] }, { @@ -16002,7 +16014,7 @@ "ru": "MacOS (64bit)", "zh-chs": "MacOS(64位)", "xloc": [ - "default.handlebars->25->670" + "default.handlebars->25->672" ] }, { @@ -16055,7 +16067,7 @@ "ru": "Сообщения главного сервера", "zh-chs": "主服務器消息", "xloc": [ - "default.handlebars->25->1775" + "default.handlebars->25->1777" ] }, { @@ -16072,7 +16084,7 @@ "ru": "Малайский", "zh-chs": "馬來語", "xloc": [ - "default.handlebars->25->1003" + "default.handlebars->25->1005" ] }, { @@ -16089,7 +16101,7 @@ "ru": "Малаяламский", "zh-chs": "馬拉雅拉姆語", "xloc": [ - "default.handlebars->25->1004" + "default.handlebars->25->1006" ] }, { @@ -16106,7 +16118,7 @@ "ru": "Мальтийский", "zh-chs": "馬耳他語", "xloc": [ - "default.handlebars->25->1005" + "default.handlebars->25->1007" ] }, { @@ -16143,8 +16155,8 @@ "xloc": [ "default-mobile.handlebars->9->395", "default-mobile.handlebars->9->413", - "default.handlebars->25->1273", - "default.handlebars->25->1307" + "default.handlebars->25->1275", + "default.handlebars->25->1309" ] }, { @@ -16163,8 +16175,8 @@ "xloc": [ "default-mobile.handlebars->9->394", "default-mobile.handlebars->9->412", - "default.handlebars->25->1272", - "default.handlebars->25->1306" + "default.handlebars->25->1274", + "default.handlebars->25->1308" ] }, { @@ -16180,14 +16192,14 @@ "ru": "Управление устройствами", "zh-chs": "管理设备", "xloc": [ - "default.handlebars->25->598" + "default.handlebars->25->600" ] }, { "en": "Manage Recordings", "nl": "Beheeer opnames", "xloc": [ - "default.handlebars->25->1502" + "default.handlebars->25->1504" ] }, { @@ -16221,7 +16233,7 @@ "ru": "Управление группами пользователя", "zh-chs": "管理用戶組", "xloc": [ - "default.handlebars->25->1501" + "default.handlebars->25->1503" ] }, { @@ -16238,8 +16250,8 @@ "ru": "Управление пользователями", "zh-chs": "管理用戶", "xloc": [ - "default.handlebars->25->1500", - "default.handlebars->25->597" + "default.handlebars->25->1502", + "default.handlebars->25->599" ] }, { @@ -16343,7 +16355,7 @@ "ru": "Управление с помощью программного агента", "zh-chs": "使用軟件代理進行管理", "xloc": [ - "default.handlebars->25->1127" + "default.handlebars->25->1129" ] }, { @@ -16361,7 +16373,7 @@ "zh-chs": "使用軟件代理進行管理", "xloc": [ "default-mobile.handlebars->9->375", - "default.handlebars->25->1155" + "default.handlebars->25->1157" ] }, { @@ -16378,7 +16390,7 @@ "ru": "Менеджер", "zh-chs": "經理", "xloc": [ - "default.handlebars->25->1433" + "default.handlebars->25->1435" ] }, { @@ -16429,7 +16441,7 @@ "ru": "Маори", "zh-chs": "毛利人", "xloc": [ - "default.handlebars->25->1006" + "default.handlebars->25->1008" ] }, { @@ -16464,7 +16476,7 @@ "ru": "Маратхи", "zh-chs": "馬拉地語", "xloc": [ - "default.handlebars->25->1007" + "default.handlebars->25->1009" ] }, { @@ -16481,7 +16493,7 @@ "ru": "Достигнуто максимальное число сессий", "zh-chs": "達到的會話數上限", "xloc": [ - "default.handlebars->25->1739" + "default.handlebars->25->1741" ] }, { @@ -16535,7 +16547,7 @@ "ru": "Мегабайт", "zh-chs": "兆字節", "xloc": [ - "default.handlebars->25->1765" + "default.handlebars->25->1767" ] }, { @@ -16553,8 +16565,8 @@ "zh-chs": "記憶", "xloc": [ "default-mobile.handlebars->9->366", - "default.handlebars->25->1756", - "default.handlebars->25->844", + "default.handlebars->25->1758", + "default.handlebars->25->846", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -16580,10 +16592,10 @@ "default.handlebars->25->347", "default.handlebars->25->351", "default.handlebars->25->354", - "default.handlebars->25->479", - "default.handlebars->25->523", - "default.handlebars->25->796", - "default.handlebars->25->803" + "default.handlebars->25->481", + "default.handlebars->25->525", + "default.handlebars->25->798", + "default.handlebars->25->805" ] }, { @@ -16601,7 +16613,7 @@ "zh-chs": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->402", - "default.handlebars->25->1281" + "default.handlebars->25->1283" ] }, { @@ -16618,7 +16630,7 @@ "ru": "Ретранслятор Mesh", "zh-chs": "網狀中繼", "xloc": [ - "default.handlebars->25->529" + "default.handlebars->25->531" ] }, { @@ -16637,7 +16649,7 @@ "xloc": [ "default.handlebars->25->176", "default.handlebars->25->382", - "default.handlebars->25->522" + "default.handlebars->25->524" ] }, { @@ -16656,7 +16668,7 @@ "xloc": [ "default.handlebars->25->182", "default.handlebars->25->388", - "default.handlebars->25->528" + "default.handlebars->25->530" ] }, { @@ -16673,8 +16685,8 @@ "ru": "MeshAction (.txt)", "zh-chs": "MeshAction(.txt)", "xloc": [ - "default.handlebars->25->677", - "default.handlebars->25->679" + "default.handlebars->25->679", + "default.handlebars->25->681" ] }, { @@ -16691,7 +16703,7 @@ "ru": "Трафик MeshAgent", "zh-chs": "MeshAgent流量", "xloc": [ - "default.handlebars->25->1777" + "default.handlebars->25->1779" ] }, { @@ -16708,7 +16720,7 @@ "ru": "Обновление MeshAgent", "zh-chs": "MeshAgent更新", "xloc": [ - "default.handlebars->25->1778" + "default.handlebars->25->1780" ] }, { @@ -16742,7 +16754,7 @@ "ru": "Ошибки MeshCentral", "zh-chs": "網格中心錯誤", "xloc": [ - "default.handlebars->25->1148" + "default.handlebars->25->1150" ] }, { @@ -16759,7 +16771,7 @@ "ru": "MeshCentral Router ", "zh-chs": "MeshCentral路由器", "xloc": [ - "default.handlebars->25->665" + "default.handlebars->25->667" ] }, { @@ -16776,7 +16788,7 @@ "ru": "MeshCentral Router это инструмент Windows для сопоставления портов TCP. Например, через этот сервер можно установить подключение по RDP к удаленному устройству.", "zh-chs": "MeshCentral Router是Windows工具,用於TCP端口映射。例如,您可以通過該服務器將RDP放入遠程設備。", "xloc": [ - "default.handlebars->25->661" + "default.handlebars->25->663" ] }, { @@ -16811,7 +16823,7 @@ "ru": "Соединения сервера MeshCentral", "zh-chs": "MeshCentral服務器對等", "xloc": [ - "default.handlebars->25->1776" + "default.handlebars->25->1778" ] }, { @@ -16846,7 +16858,7 @@ "zh-chs": "MeshCentral版本", "xloc": [ "default.handlebars->25->101", - "default.handlebars->25->1144", + "default.handlebars->25->1146", "default.handlebars->25->99" ] }, @@ -16865,8 +16877,8 @@ "zh-chs": "MeshCmd", "xloc": [ "default.handlebars->25->200", - "default.handlebars->25->551", - "default.handlebars->25->675" + "default.handlebars->25->553", + "default.handlebars->25->677" ] }, { @@ -16883,7 +16895,7 @@ "ru": "MeshCmd (Linux ARM, 32bit)", "zh-chs": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->25->686" + "default.handlebars->25->688" ] }, { @@ -16900,7 +16912,7 @@ "ru": "MeshCmd (Linux x86, 32bit)", "zh-chs": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->25->683" + "default.handlebars->25->685" ] }, { @@ -16917,7 +16929,7 @@ "ru": "MeshCmd (Linux x86, 64bit)", "zh-chs": "MeshCmd(Linux x86,64bit)", "xloc": [ - "default.handlebars->25->684" + "default.handlebars->25->686" ] }, { @@ -16934,7 +16946,7 @@ "ru": "MeshCmd (MacOS, 64bit)", "zh-chs": "MeshCmd(MacOS,64位)", "xloc": [ - "default.handlebars->25->685" + "default.handlebars->25->687" ] }, { @@ -16951,7 +16963,7 @@ "ru": "MeshCmd (приложение Win32)", "zh-chs": "MeshCmd(Win32可執行文件)", "xloc": [ - "default.handlebars->25->681" + "default.handlebars->25->683" ] }, { @@ -16968,7 +16980,7 @@ "ru": "MeshCmd (приложение Win64)", "zh-chs": "MeshCmd(Win64可執行文件)", "xloc": [ - "default.handlebars->25->682" + "default.handlebars->25->684" ] }, { @@ -16985,7 +16997,7 @@ "ru": "MeshCmd это утилита с командной строкой, которая позволяет выполнить множество операций. Файл с командами может быть опционально скачан и отредактирован для указания информации о сервере и учетных данных.", "zh-chs": "MeshCmd是執行許多不同操作的命令行工具。可以選擇下載和編輯操作文件以提供服務器信息和憑據。", "xloc": [ - "default.handlebars->25->672" + "default.handlebars->25->674" ] }, { @@ -17057,8 +17069,8 @@ "zh-chs": "信息", "xloc": [ "default.handlebars->25->311", - "default.handlebars->25->540", - "default.handlebars->25->641" + "default.handlebars->25->542", + "default.handlebars->25->643" ] }, { @@ -17075,7 +17087,7 @@ "ru": "Диспетчер сообщения", "zh-chs": "郵件調度程序", "xloc": [ - "default.handlebars->25->1774" + "default.handlebars->25->1776" ] }, { @@ -17173,7 +17185,7 @@ "zh-chs": "模型", "xloc": [ "default-mobile.handlebars->9->367", - "default.handlebars->25->845" + "default.handlebars->25->847" ] }, { @@ -17207,7 +17219,7 @@ "ru": "Молдавский", "zh-chs": "摩爾達維亞人", "xloc": [ - "default.handlebars->25->1008" + "default.handlebars->25->1010" ] }, { @@ -17224,7 +17236,7 @@ "ru": "Еще", "zh-chs": "更多", "xloc": [ - "default.handlebars->25->1802" + "default.handlebars->25->1804" ] }, { @@ -17242,7 +17254,7 @@ "zh-chs": "母板", "xloc": [ "default-mobile.handlebars->9->362", - "default.handlebars->25->840" + "default.handlebars->25->842" ] }, { @@ -17259,7 +17271,7 @@ "ru": "Переместить это устройство в другую группу устройств", "zh-chs": "將此設備移到其他設備組", "xloc": [ - "default.handlebars->25->542" + "default.handlebars->25->544" ] }, { @@ -17300,7 +17312,7 @@ "en": "Multiplexor", "nl": "Multiplexor", "xloc": [ - "default.handlebars->25->1717" + "default.handlebars->25->1719" ] }, { @@ -17415,7 +17427,7 @@ "ru": "Консоль моего сервера", "zh-chs": "我的服務器控制台", "xloc": [ - "default.handlebars->25->851" + "default.handlebars->25->853" ] }, { @@ -17543,8 +17555,8 @@ "ru": "Мой ключ", "zh-chs": "我的鑰匙", "xloc": [ - "default.handlebars->25->883", - "default.handlebars->25->886" + "default.handlebars->25->885", + "default.handlebars->25->888" ] }, { @@ -17568,20 +17580,20 @@ "default-mobile.handlebars->9->389", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->25->1125", - "default.handlebars->25->1156", - "default.handlebars->25->1239", - "default.handlebars->25->1415", - "default.handlebars->25->1508", - "default.handlebars->25->1524", - "default.handlebars->25->1531", - "default.handlebars->25->1564", - "default.handlebars->25->1583", - "default.handlebars->25->467", - "default.handlebars->25->719", + "default.handlebars->25->1127", + "default.handlebars->25->1158", + "default.handlebars->25->1241", + "default.handlebars->25->1417", + "default.handlebars->25->1510", + "default.handlebars->25->1526", + "default.handlebars->25->1533", + "default.handlebars->25->1566", + "default.handlebars->25->1585", + "default.handlebars->25->469", + "default.handlebars->25->721", "default.handlebars->25->77", - "default.handlebars->25->792", - "default.handlebars->25->834", + "default.handlebars->25->794", + "default.handlebars->25->836", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -17618,7 +17630,7 @@ "ru": "Имя1, Имя2, Имя3", "zh-chs": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->25->1492" + "default.handlebars->25->1494" ] }, { @@ -17635,7 +17647,7 @@ "ru": "Навахо", "zh-chs": "納瓦霍人", "xloc": [ - "default.handlebars->25->1009" + "default.handlebars->25->1011" ] }, { @@ -17652,7 +17664,7 @@ "ru": "Ндонга", "zh-chs": "恩東加", "xloc": [ - "default.handlebars->25->1010" + "default.handlebars->25->1012" ] }, { @@ -17669,7 +17681,7 @@ "ru": "Непальский", "zh-chs": "尼泊爾文", "xloc": [ - "default.handlebars->25->1011" + "default.handlebars->25->1013" ] }, { @@ -17686,7 +17698,7 @@ "ru": "Сетевые интерфейсы", "zh-chs": "網絡接口", "xloc": [ - "default.handlebars->25->659" + "default.handlebars->25->661" ] }, { @@ -17718,7 +17730,7 @@ "zh-chs": "聯網", "xloc": [ "default-mobile.handlebars->9->335", - "default.handlebars->25->813" + "default.handlebars->25->815" ] }, { @@ -17771,9 +17783,9 @@ "zh-chs": "新設備組", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->25->1118", - "default.handlebars->25->1130", - "default.handlebars->25->651" + "default.handlebars->25->1120", + "default.handlebars->25->1132", + "default.handlebars->25->653" ] }, { @@ -17792,8 +17804,8 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->288", - "default.handlebars->25->1388", - "default.handlebars->25->756", + "default.handlebars->25->1390", + "default.handlebars->25->758", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -17848,8 +17860,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->25->1113", - "default.handlebars->25->1114" + "default.handlebars->25->1115", + "default.handlebars->25->1116" ] }, { @@ -17866,8 +17878,8 @@ "ru": "Нет AMT", "zh-chs": "没有AMT", "xloc": [ - "default.handlebars->25->583", - "default.handlebars->25->602" + "default.handlebars->25->585", + "default.handlebars->25->604" ] }, { @@ -17917,8 +17929,8 @@ "xloc": [ "default-mobile.handlebars->9->222", "default-mobile.handlebars->9->223", - "default.handlebars->25->493", - "default.handlebars->25->494" + "default.handlebars->25->495", + "default.handlebars->25->496" ] }, { @@ -17935,9 +17947,9 @@ "ru": "Нет рабочего стола", "zh-chs": "沒有桌面", "xloc": [ - "default.handlebars->25->1314", - "default.handlebars->25->585", - "default.handlebars->25->604" + "default.handlebars->25->1316", + "default.handlebars->25->587", + "default.handlebars->25->606" ] }, { @@ -17954,7 +17966,7 @@ "ru": "Нет доступа к рабочему столу", "zh-chs": "沒有桌面訪問", "xloc": [ - "default.handlebars->25->1277" + "default.handlebars->25->1279" ] }, { @@ -17971,9 +17983,9 @@ "ru": "События не найдены", "zh-chs": "找不到活動", "xloc": [ - "default.handlebars->25->1405", - "default.handlebars->25->1693", - "default.handlebars->25->790" + "default.handlebars->25->1407", + "default.handlebars->25->1695", + "default.handlebars->25->792" ] }, { @@ -17991,7 +18003,7 @@ "zh-chs": "沒有文件訪問", "xloc": [ "default-mobile.handlebars->9->400", - "default.handlebars->25->1279" + "default.handlebars->25->1281" ] }, { @@ -18009,9 +18021,9 @@ "zh-chs": "沒有文件", "xloc": [ "default-mobile.handlebars->9->421", - "default.handlebars->25->1316", - "default.handlebars->25->582", - "default.handlebars->25->601" + "default.handlebars->25->1318", + "default.handlebars->25->584", + "default.handlebars->25->603" ] }, { @@ -18027,8 +18039,8 @@ "ru": "Нет ввода", "zh-chs": "无输入", "xloc": [ - "default.handlebars->25->580", - "default.handlebars->25->599" + "default.handlebars->25->582", + "default.handlebars->25->601" ] }, { @@ -18047,8 +18059,8 @@ "xloc": [ "default-mobile.handlebars->9->401", "default-mobile.handlebars->9->422", - "default.handlebars->25->1280", - "default.handlebars->25->1317" + "default.handlebars->25->1282", + "default.handlebars->25->1319" ] }, { @@ -18116,7 +18128,7 @@ "ru": "Нет членов", "zh-chs": "沒有會員", "xloc": [ - "default.handlebars->25->1546" + "default.handlebars->25->1548" ] }, { @@ -18133,7 +18145,7 @@ "ru": "Запретить создание групп устройств", "zh-chs": "沒有新的設備組", "xloc": [ - "default.handlebars->25->1504" + "default.handlebars->25->1506" ] }, { @@ -18150,9 +18162,9 @@ "ru": "Политик нет", "zh-chs": "沒有政策", "xloc": [ - "default.handlebars->25->1183", - "default.handlebars->25->1211", - "default.handlebars->25->1214" + "default.handlebars->25->1185", + "default.handlebars->25->1213", + "default.handlebars->25->1216" ] }, { @@ -18172,10 +18184,10 @@ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->384", "default-mobile.handlebars->9->427", - "default.handlebars->25->1139", - "default.handlebars->25->1322", - "default.handlebars->25->594", - "default.handlebars->25->613" + "default.handlebars->25->1141", + "default.handlebars->25->1324", + "default.handlebars->25->596", + "default.handlebars->25->615" ] }, { @@ -18194,7 +18206,7 @@ "xloc": [ "default-mobile.handlebars->9->260", "default.handlebars->25->251", - "default.handlebars->25->637" + "default.handlebars->25->639" ] }, { @@ -18212,9 +18224,9 @@ "zh-chs": "沒有終端", "xloc": [ "default-mobile.handlebars->9->420", - "default.handlebars->25->1315", - "default.handlebars->25->581", - "default.handlebars->25->600" + "default.handlebars->25->1317", + "default.handlebars->25->583", + "default.handlebars->25->602" ] }, { @@ -18232,7 +18244,7 @@ "zh-chs": "沒有終端訪問", "xloc": [ "default-mobile.handlebars->9->399", - "default.handlebars->25->1278" + "default.handlebars->25->1280" ] }, { @@ -18249,7 +18261,7 @@ "ru": "Нет инструментов (MeshCmd/Router)", "zh-chs": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->25->1505" + "default.handlebars->25->1507" ] }, { @@ -18266,8 +18278,8 @@ "ru": "Нет общих групп устройств", "zh-chs": "沒有共同的設備組", "xloc": [ - "default.handlebars->25->1552", - "default.handlebars->25->1665" + "default.handlebars->25->1554", + "default.handlebars->25->1667" ] }, { @@ -18363,8 +18375,8 @@ "ru": "Нет общих устройств", "zh-chs": "沒有共同的設備", "xloc": [ - "default.handlebars->25->1558", - "default.handlebars->25->1677" + "default.handlebars->25->1560", + "default.handlebars->25->1679" ] }, { @@ -18381,7 +18393,7 @@ "ru": "В группе нет устройств.", "zh-chs": "該設備組中沒有設備。", "xloc": [ - "default.handlebars->25->1365" + "default.handlebars->25->1367" ] }, { @@ -18451,7 +18463,7 @@ "ru": "Группы не найдены.", "zh-chs": "找不到群組。", "xloc": [ - "default.handlebars->25->1507" + "default.handlebars->25->1509" ] }, { @@ -18469,7 +18481,7 @@ "zh-chs": "沒有此設備的信息。", "xloc": [ "default-mobile.handlebars->9->372", - "default.handlebars->25->850" + "default.handlebars->25->852" ] }, { @@ -18520,7 +18532,7 @@ "ru": "Других групп устройств такого же типа не существует.", "zh-chs": "沒有其他相同類型的設備組。", "xloc": [ - "default.handlebars->25->654" + "default.handlebars->25->656" ] }, { @@ -18554,7 +18566,7 @@ "ru": "Нет серверных прав", "zh-chs": "沒有服務器權限", "xloc": [ - "default.handlebars->25->1578" + "default.handlebars->25->1580" ] }, { @@ -18571,7 +18583,7 @@ "ru": "Нет членства в группах пользователей", "zh-chs": "沒有用戶組成員身份", "xloc": [ - "default.handlebars->25->1671" + "default.handlebars->25->1673" ] }, { @@ -18588,7 +18600,7 @@ "ru": "Пользователи не найдены.", "zh-chs": "未找到相應的用戶。", "xloc": [ - "default.handlebars->25->1423" + "default.handlebars->25->1425" ] }, { @@ -18604,7 +18616,7 @@ "ru": "Нет пользователей со специальными правами доступа к устройству", "zh-chs": "没有拥有特殊设备权限的用户", "xloc": [ - "default.handlebars->25->578" + "default.handlebars->25->580" ] }, { @@ -18665,28 +18677,28 @@ "default-mobile.handlebars->9->234", "default-mobile.handlebars->9->286", "default-mobile.handlebars->9->378", - "default.handlebars->25->1151", - "default.handlebars->25->1158", - "default.handlebars->25->1162", - "default.handlebars->25->1174", - "default.handlebars->25->1179", + "default.handlebars->25->1153", + "default.handlebars->25->1160", + "default.handlebars->25->1164", + "default.handlebars->25->1176", "default.handlebars->25->1181", - "default.handlebars->25->1356", - "default.handlebars->25->1375", - "default.handlebars->25->1528", + "default.handlebars->25->1183", + "default.handlebars->25->1358", + "default.handlebars->25->1377", "default.handlebars->25->1530", + "default.handlebars->25->1532", "default.handlebars->25->158", - "default.handlebars->25->1594", - "default.handlebars->25->1603", - "default.handlebars->25->1607", - "default.handlebars->25->1619", + "default.handlebars->25->1596", + "default.handlebars->25->1605", + "default.handlebars->25->1609", + "default.handlebars->25->1621", "default.handlebars->25->174", "default.handlebars->25->175", - "default.handlebars->25->464", - "default.handlebars->25->475", - "default.handlebars->25->476", - "default.handlebars->25->520", - "default.handlebars->25->533", + "default.handlebars->25->466", + "default.handlebars->25->477", + "default.handlebars->25->478", + "default.handlebars->25->522", + "default.handlebars->25->535", "default.handlebars->25->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -18722,7 +18734,7 @@ "ru": "Норвежский", "zh-chs": "挪威", "xloc": [ - "default.handlebars->25->1012" + "default.handlebars->25->1014" ] }, { @@ -18739,7 +18751,7 @@ "ru": "Норвежский (Букмол)", "zh-chs": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->25->1013" + "default.handlebars->25->1015" ] }, { @@ -18756,7 +18768,7 @@ "ru": "Норвежский (Нюнорск)", "zh-chs": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->25->1014" + "default.handlebars->25->1016" ] }, { @@ -18775,8 +18787,8 @@ "xloc": [ "default-mobile.handlebars->9->214", "default-mobile.handlebars->9->339", - "default.handlebars->25->481", - "default.handlebars->25->817" + "default.handlebars->25->483", + "default.handlebars->25->819" ] }, { @@ -18795,8 +18807,8 @@ "xloc": [ "default-mobile.handlebars->9->213", "default-mobile.handlebars->9->338", - "default.handlebars->25->480", - "default.handlebars->25->816" + "default.handlebars->25->482", + "default.handlebars->25->818" ] }, { @@ -18813,8 +18825,8 @@ "ru": "Не подключен", "zh-chs": "未連接", "xloc": [ - "default.handlebars->25->1352", - "default.handlebars->25->1360" + "default.handlebars->25->1354", + "default.handlebars->25->1362" ] }, { @@ -18832,14 +18844,14 @@ "zh-chs": "未知", "xloc": [ "default-mobile.handlebars->9->349", - "default.handlebars->25->827" + "default.handlebars->25->829" ] }, { "en": "Not on server", "nl": "Niet op de server", "xloc": [ - "default.handlebars->25->1709" + "default.handlebars->25->1711" ] }, { @@ -18856,7 +18868,7 @@ "ru": "Не задано", "zh-chs": "沒有設置", "xloc": [ - "default.handlebars->25->1584" + "default.handlebars->25->1586" ] }, { @@ -18873,7 +18885,7 @@ "ru": "не подтверждено", "zh-chs": "未經審核的", "xloc": [ - "default.handlebars->25->1647" + "default.handlebars->25->1649" ] }, { @@ -18890,12 +18902,12 @@ "ru": "Примечания", "zh-chs": "筆記", "xloc": [ - "default.handlebars->25->1189", - "default.handlebars->25->1627", - "default.handlebars->25->536", - "default.handlebars->25->590", - "default.handlebars->25->609", - "default.handlebars->25->616" + "default.handlebars->25->1191", + "default.handlebars->25->1629", + "default.handlebars->25->538", + "default.handlebars->25->592", + "default.handlebars->25->611", + "default.handlebars->25->618" ] }, { @@ -18929,8 +18941,8 @@ "ru": "Настройки уведомлений", "zh-chs": "通知設置", "xloc": [ - "default.handlebars->25->1100", - "default.handlebars->25->1351", + "default.handlebars->25->1102", + "default.handlebars->25->1353", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -18948,7 +18960,7 @@ "ru": "Уведомления также должны быть включены в настройках учетной записи.", "zh-chs": "通知設置還必須在帳戶設置中啟用。", "xloc": [ - "default.handlebars->25->1347" + "default.handlebars->25->1349" ] }, { @@ -18965,7 +18977,7 @@ "ru": "Звук уведомления", "zh-chs": "通知聲音。", "xloc": [ - "default.handlebars->25->1095" + "default.handlebars->25->1097" ] }, { @@ -18982,7 +18994,7 @@ "ru": "Уведомления", "zh-chs": "通知事項", "xloc": [ - "default.handlebars->25->1180" + "default.handlebars->25->1182" ] }, { @@ -18999,7 +19011,7 @@ "ru": "Уведомить", "zh-chs": "通知", "xloc": [ - "default.handlebars->25->1633" + "default.handlebars->25->1635" ] }, { @@ -19016,9 +19028,9 @@ "ru": "Уведомить пользователя", "zh-chs": "通知使用者", "xloc": [ - "default.handlebars->25->1246", - "default.handlebars->25->1250", - "default.handlebars->25->1253" + "default.handlebars->25->1248", + "default.handlebars->25->1252", + "default.handlebars->25->1255" ] }, { @@ -19035,7 +19047,7 @@ "ru": "Уведомить {0}", "zh-chs": "通知{0}", "xloc": [ - "default.handlebars->25->1455" + "default.handlebars->25->1457" ] }, { @@ -19054,8 +19066,8 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->25->1142", - "default.handlebars->25->507", + "default.handlebars->25->1144", + "default.handlebars->25->509", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", "login.handlebars->dialog->idx_dlgButtonBar", @@ -19078,7 +19090,7 @@ "zh-chs": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->25->472", + "default.handlebars->25->474", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->7->1" ] }, @@ -19096,7 +19108,7 @@ "ru": "Окситанский", "zh-chs": "歐舒丹", "xloc": [ - "default.handlebars->25->1015" + "default.handlebars->25->1017" ] }, { @@ -19113,7 +19125,7 @@ "ru": "Произошло в {0}", "zh-chs": "發生在{0}", "xloc": [ - "default.handlebars->25->1723" + "default.handlebars->25->1725" ] }, { @@ -19130,7 +19142,7 @@ "ru": "Оффлайн пользователи", "zh-chs": "離線用戶", "xloc": [ - "default.handlebars->25->1420" + "default.handlebars->25->1422" ] }, { @@ -19148,7 +19160,7 @@ "zh-chs": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->25->1112" + "default.handlebars->25->1114" ] }, { @@ -19191,7 +19203,7 @@ "ru": "Онлайн пользователи", "zh-chs": "在線用戶", "xloc": [ - "default.handlebars->25->1419" + "default.handlebars->25->1421" ] }, { @@ -19210,7 +19222,7 @@ "xloc": [ "default-mobile.handlebars->9->296", "default.handlebars->25->437", - "default.handlebars->25->764" + "default.handlebars->25->766" ] }, { @@ -19252,7 +19264,7 @@ "ru": "Открыть страницу на устройстве", "zh-chs": "在設備上打開頁面", "xloc": [ - "default.handlebars->25->618" + "default.handlebars->25->620" ] }, { @@ -19283,7 +19295,7 @@ "ru": "Открыть терминал XTerm", "zh-chs": "打開XTerm終端", "xloc": [ - "default.handlebars->25->552" + "default.handlebars->25->554" ] }, { @@ -19337,9 +19349,9 @@ "default-mobile.handlebars->9->317", "default.handlebars->25->294", "default.handlebars->25->323", - "default.handlebars->25->504", - "default.handlebars->25->674", - "default.handlebars->25->795" + "default.handlebars->25->506", + "default.handlebars->25->676", + "default.handlebars->25->797" ] }, { @@ -19357,10 +19369,10 @@ "zh-chs": "運作方式", "xloc": [ "default-mobile.handlebars->9->253", - "default.handlebars->25->1444", - "default.handlebars->25->1515", + "default.handlebars->25->1446", + "default.handlebars->25->1517", "default.handlebars->25->398", - "default.handlebars->25->629" + "default.handlebars->25->631" ] }, { @@ -19394,7 +19406,7 @@ "ru": "Ория", "zh-chs": "奧里亞", "xloc": [ - "default.handlebars->25->1016" + "default.handlebars->25->1018" ] }, { @@ -19411,7 +19423,7 @@ "ru": "Оромо", "zh-chs": "奧羅莫", "xloc": [ - "default.handlebars->25->1017" + "default.handlebars->25->1019" ] }, { @@ -19462,7 +19474,7 @@ "ru": "Устаревший", "zh-chs": "過時的", "xloc": [ - "default.handlebars->25->506" + "default.handlebars->25->508" ] }, { @@ -19479,7 +19491,7 @@ "ru": "Собственный процесс", "zh-chs": "自己的過程", "xloc": [ - "default.handlebars->25->726" + "default.handlebars->25->728" ] }, { @@ -19497,7 +19509,7 @@ "zh-chs": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->25->722", + "default.handlebars->25->724", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -19516,7 +19528,7 @@ "zh-chs": "零件號", "xloc": [ "default-mobile.handlebars->9->365", - "default.handlebars->25->843" + "default.handlebars->25->845" ] }, { @@ -19533,7 +19545,7 @@ "ru": "Частично", "zh-chs": "部分的", "xloc": [ - "default.handlebars->25->1434" + "default.handlebars->25->1436" ] }, { @@ -19580,7 +19592,7 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->382", - "default.handlebars->25->1137" + "default.handlebars->25->1139" ] }, { @@ -19597,7 +19609,7 @@ "ru": "Частичные права", "zh-chs": "部分權利", "xloc": [ - "default.handlebars->25->1581" + "default.handlebars->25->1583" ] }, { @@ -19632,15 +19644,15 @@ "zh-chs": "密碼", "xloc": [ "default-mobile.handlebars->9->258", - "default.handlebars->25->1480", - "default.handlebars->25->1481", - "default.handlebars->25->1599", + "default.handlebars->25->1482", + "default.handlebars->25->1483", "default.handlebars->25->1601", - "default.handlebars->25->1650", - "default.handlebars->25->1651", + "default.handlebars->25->1603", + "default.handlebars->25->1652", + "default.handlebars->25->1653", "default.handlebars->25->249", "default.handlebars->25->278", - "default.handlebars->25->635" + "default.handlebars->25->637" ] }, { @@ -19746,7 +19758,7 @@ "ru": "Подсказка пароля", "zh-chs": "密碼提示", "xloc": [ - "default.handlebars->25->1652" + "default.handlebars->25->1654" ] }, { @@ -19764,7 +19776,7 @@ "zh-chs": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->25->1115" + "default.handlebars->25->1117" ] }, { @@ -19781,7 +19793,7 @@ "ru": "Пароль не совпадает", "zh-chs": "密碼不符合", "xloc": [ - "default.handlebars->25->1220" + "default.handlebars->25->1222" ] }, { @@ -19816,8 +19828,8 @@ "ru": "Пароль*", "zh-chs": "密碼*", "xloc": [ - "default.handlebars->25->1218", - "default.handlebars->25->1219" + "default.handlebars->25->1220", + "default.handlebars->25->1221" ] }, { @@ -19837,8 +19849,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->25->1107", - "default.handlebars->25->1108", + "default.handlebars->25->1109", + "default.handlebars->25->1110", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1", @@ -19869,9 +19881,9 @@ "default-mobile.handlebars->9->301", "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->25->1397", - "default.handlebars->25->747", - "default.handlebars->25->769", + "default.handlebars->25->1399", + "default.handlebars->25->749", + "default.handlebars->25->771", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -19925,7 +19937,7 @@ "ru": "Произвести действие агента", "zh-chs": "執行代理動作", "xloc": [ - "default.handlebars->25->859" + "default.handlebars->25->861" ] }, { @@ -19959,7 +19971,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления администратора (ACM).", "zh-chs": "執行英特爾AMT管理員控制模式(ACM)激活。", "xloc": [ - "default.handlebars->25->1199", + "default.handlebars->25->1201", "default.handlebars->25->237" ] }, @@ -19994,7 +20006,7 @@ "ru": "Выполнить активацию Intel AMT в режиме управления клиента (CCM).", "zh-chs": "執行英特爾AMT客戶端控制模式(CCM)激活。", "xloc": [ - "default.handlebars->25->1197", + "default.handlebars->25->1199", "default.handlebars->25->235" ] }, @@ -20012,7 +20024,7 @@ "ru": "Управление питанием устройства", "zh-chs": "在設備上執行電源操作", "xloc": [ - "default.handlebars->25->535", + "default.handlebars->25->537", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -20033,8 +20045,8 @@ "zh-chs": "權限", "xloc": [ "default-mobile.handlebars->9->430", - "default.handlebars->25->1325", - "default.handlebars->25->1418" + "default.handlebars->25->1327", + "default.handlebars->25->1420" ] }, { @@ -20051,7 +20063,7 @@ "ru": "Персидский/Иран", "zh-chs": "波斯/伊朗", "xloc": [ - "default.handlebars->25->1018" + "default.handlebars->25->1020" ] }, { @@ -20068,9 +20080,9 @@ "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", "default.handlebars->25->143", - "default.handlebars->25->1644", - "default.handlebars->25->870", - "default.handlebars->25->873" + "default.handlebars->25->1646", + "default.handlebars->25->872", + "default.handlebars->25->875" ] }, { @@ -20083,7 +20095,7 @@ "nl": "Telefoonnummer", "zh-chs": "电话号码", "xloc": [ - "default.handlebars->25->1593" + "default.handlebars->25->1595" ] }, { @@ -20097,8 +20109,8 @@ "zh-chs": "电话号码:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->25->1643", - "default.handlebars->25->872" + "default.handlebars->25->1645", + "default.handlebars->25->874" ] }, { @@ -20216,7 +20228,7 @@ "zh-chs": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->25->1102" + "default.handlebars->25->1104" ] }, { @@ -20234,7 +20246,7 @@ "zh-chs": "插件動作", "xloc": [ "default.handlebars->25->169", - "default.handlebars->25->1799" + "default.handlebars->25->1801" ] }, { @@ -20357,7 +20369,7 @@ "zh-chs": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->25->1136" + "default.handlebars->25->1138" ] }, { @@ -20374,7 +20386,7 @@ "ru": "Польский", "zh-chs": "拋光", "xloc": [ - "default.handlebars->25->1019" + "default.handlebars->25->1021" ] }, { @@ -20391,7 +20403,7 @@ "ru": "Португальский", "zh-chs": "葡萄牙語", "xloc": [ - "default.handlebars->25->1020" + "default.handlebars->25->1022" ] }, { @@ -20408,7 +20420,7 @@ "ru": "Португальский (Бразилия)", "zh-chs": "葡萄牙語(巴西)", "xloc": [ - "default.handlebars->25->1021" + "default.handlebars->25->1023" ] }, { @@ -20467,7 +20479,7 @@ "ru": "Состояния питания", "zh-chs": "電力國", "xloc": [ - "default.handlebars->25->1358", + "default.handlebars->25->1360", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -20488,7 +20500,7 @@ "default-mobile.handlebars->9->174", "default-mobile.handlebars->9->252", "default.handlebars->25->6", - "default.handlebars->25->626" + "default.handlebars->25->628" ] }, { @@ -20552,7 +20564,7 @@ "en": "Present on server", "nl": "Aanwezig op de server", "xloc": [ - "default.handlebars->25->1708" + "default.handlebars->25->1710" ] }, { @@ -20612,7 +20624,7 @@ "zh-chs": "過程控制", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->25->734" + "default.handlebars->25->736" ] }, { @@ -20647,9 +20659,9 @@ "ru": "Запрос согласия пользователя", "zh-chs": "提示用戶同意", "xloc": [ - "default.handlebars->25->1247", - "default.handlebars->25->1251", - "default.handlebars->25->1254" + "default.handlebars->25->1249", + "default.handlebars->25->1253", + "default.handlebars->25->1256" ] }, { @@ -20666,7 +20678,7 @@ "ru": "Протокол", "zh-chs": "協議", "xloc": [ - "default.handlebars->25->1706", + "default.handlebars->25->1708", "player.handlebars->3->15" ] }, @@ -20699,7 +20711,7 @@ "zh-chs": "供應國", "xloc": [ "default-mobile.handlebars->9->343", - "default.handlebars->25->821" + "default.handlebars->25->823" ] }, { @@ -20717,7 +20729,7 @@ "zh-chs": "公開連結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->25->1382" + "default.handlebars->25->1384" ] }, { @@ -20734,7 +20746,7 @@ "ru": "Пенджаби", "zh-chs": "旁遮普語", "xloc": [ - "default.handlebars->25->1022" + "default.handlebars->25->1024" ] }, { @@ -20751,7 +20763,7 @@ "ru": "Пенджаби (Индия)", "zh-chs": "旁遮普(印度)", "xloc": [ - "default.handlebars->25->1023" + "default.handlebars->25->1025" ] }, { @@ -20768,7 +20780,7 @@ "ru": "Пенджаби (Пакистан)", "zh-chs": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->25->1024" + "default.handlebars->25->1026" ] }, { @@ -20785,7 +20797,7 @@ "ru": "Putty", "zh-chs": "油灰", "xloc": [ - "default.handlebars->25->557" + "default.handlebars->25->559" ] }, { @@ -20820,7 +20832,7 @@ "ru": "Кечуа", "zh-chs": "蓋丘亞族", "xloc": [ - "default.handlebars->25->1025" + "default.handlebars->25->1027" ] }, { @@ -20873,7 +20885,7 @@ "ru": "RDP", "zh-chs": "RDP", "xloc": [ - "default.handlebars->25->555" + "default.handlebars->25->557" ] }, { @@ -20974,7 +20986,7 @@ "ru": "RSS", "zh-chs": "的RSS", "xloc": [ - "default.handlebars->25->1769" + "default.handlebars->25->1771" ] }, { @@ -20991,7 +21003,7 @@ "ru": "Случайный пароль.", "zh-chs": "隨機化密碼。", "xloc": [ - "default.handlebars->25->1482" + "default.handlebars->25->1484" ] }, { @@ -21025,7 +21037,7 @@ "ru": "Реактивировать Intel® AMT", "zh-chs": "重新激活英特爾®AMT", "xloc": [ - "default.handlebars->25->1222" + "default.handlebars->25->1224" ] }, { @@ -21042,14 +21054,14 @@ "ru": "Области", "zh-chs": "境界", "xloc": [ - "default.handlebars->25->1491" + "default.handlebars->25->1493" ] }, { "en": "Received invalid network data", "nl": "Ongeldige netwerkgegevens ontvangen", "xloc": [ - "default.handlebars->25->698" + "default.handlebars->25->700" ] }, { @@ -21069,7 +21081,7 @@ "en": "Recording Details", "nl": "Opname details", "xloc": [ - "default.handlebars->25->1720" + "default.handlebars->25->1722" ] }, { @@ -21095,8 +21107,8 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->289", - "default.handlebars->25->1389", - "default.handlebars->25->757" + "default.handlebars->25->1391", + "default.handlebars->25->759" ] }, { @@ -21193,7 +21205,7 @@ "ru": "Число ретрансляций", "zh-chs": "中繼計數", "xloc": [ - "default.handlebars->25->1751" + "default.handlebars->25->1753" ] }, { @@ -21210,7 +21222,7 @@ "ru": "Ошибки ретранслятора", "zh-chs": "中繼錯誤", "xloc": [ - "default.handlebars->25->1744" + "default.handlebars->25->1746" ] }, { @@ -21227,8 +21239,8 @@ "ru": "Сессии ретранслятора", "zh-chs": "接力會議", "xloc": [ - "default.handlebars->25->1750", - "default.handlebars->25->1763" + "default.handlebars->25->1752", + "default.handlebars->25->1765" ] }, { @@ -21338,7 +21350,7 @@ "ru": "Удаленный буфер обмена", "zh-chs": "遠程剪貼板", "xloc": [ - "default.handlebars->25->717" + "default.handlebars->25->719" ] }, { @@ -21357,8 +21369,8 @@ "xloc": [ "default-mobile.handlebars->9->396", "default-mobile.handlebars->9->414", - "default.handlebars->25->1274", - "default.handlebars->25->1308" + "default.handlebars->25->1276", + "default.handlebars->25->1310" ] }, { @@ -21387,7 +21399,7 @@ "xloc": [ "default-mobile.handlebars->9->274", "default.handlebars->25->228", - "default.handlebars->25->709" + "default.handlebars->25->711" ] }, { @@ -21404,7 +21416,7 @@ "ru": "Ввод с удаленной клавиатуры", "zh-chs": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->25->715" + "default.handlebars->25->717" ] }, { @@ -21454,8 +21466,8 @@ "xloc": [ "default-mobile.handlebars->9->397", "default-mobile.handlebars->9->419", - "default.handlebars->25->1275", - "default.handlebars->25->1313" + "default.handlebars->25->1277", + "default.handlebars->25->1315" ] }, { @@ -21472,7 +21484,7 @@ "ru": "Удаленный буфер обмена действителен в течении 60 секунд.", "zh-chs": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->25->716" + "default.handlebars->25->718" ] }, { @@ -21548,8 +21560,8 @@ "nl": "Apparaatgroepmachtigingen verwijderen", "zh-chs": "删除设备组权限", "xloc": [ - "default.handlebars->25->1562", - "default.handlebars->25->1691" + "default.handlebars->25->1564", + "default.handlebars->25->1693" ] }, { @@ -21563,8 +21575,8 @@ "nl": "Apparaatmachtigingen verwijderen", "zh-chs": "删除设备权限", "xloc": [ - "default.handlebars->25->1560", - "default.handlebars->25->1678" + "default.handlebars->25->1562", + "default.handlebars->25->1680" ] }, { @@ -21592,7 +21604,7 @@ "nl": "Lidmaatschap van gebruikersgroep verwijderen", "zh-chs": "删除用户组成员身份", "xloc": [ - "default.handlebars->25->1687" + "default.handlebars->25->1689" ] }, { @@ -21606,8 +21618,8 @@ "nl": "Gebruikersgroepmachtigingen verwijderen", "zh-chs": "删除用户组权限", "xloc": [ - "default.handlebars->25->1330", - "default.handlebars->25->1683" + "default.handlebars->25->1332", + "default.handlebars->25->1685" ] }, { @@ -21621,7 +21633,7 @@ "nl": "Gebruikerslidmaatschap verwijderen", "zh-chs": "删除用户成员资格", "xloc": [ - "default.handlebars->25->1570" + "default.handlebars->25->1572" ] }, { @@ -21635,8 +21647,8 @@ "nl": "Gebruikersmachtigingen verwijderen", "zh-chs": "删除用户权限", "xloc": [ - "default.handlebars->25->1328", - "default.handlebars->25->1680" + "default.handlebars->25->1330", + "default.handlebars->25->1682" ] }, { @@ -21653,7 +21665,7 @@ "ru": "Удалить все двухфакторные аутентификации.", "zh-chs": "刪除所有第二因素驗證。", "xloc": [ - "default.handlebars->25->1655" + "default.handlebars->25->1657" ] }, { @@ -21670,7 +21682,7 @@ "ru": "Удалить все прошлые события для этого userid.", "zh-chs": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->25->1483" + "default.handlebars->25->1485" ] }, { @@ -21687,7 +21699,7 @@ "ru": "Удалить устройство при отключении", "zh-chs": "斷開連接後移除設備", "xloc": [ - "default.handlebars->25->1255" + "default.handlebars->25->1257" ] }, { @@ -21718,7 +21730,7 @@ "zh-chs": "删除电话号码", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->25->869" + "default.handlebars->25->871" ] }, { @@ -21735,7 +21747,7 @@ "ru": "Удалить это устройство", "zh-chs": "刪除此設備", "xloc": [ - "default.handlebars->25->544" + "default.handlebars->25->546" ] }, { @@ -21751,7 +21763,7 @@ "ru": "Удалить этого пользователя", "zh-chs": "删除该用户", "xloc": [ - "default.handlebars->25->1635" + "default.handlebars->25->1637" ] }, { @@ -21768,7 +21780,7 @@ "ru": "Удалить членство пользователя в группе", "zh-chs": "刪除用戶組成員身份", "xloc": [ - "default.handlebars->25->1669" + "default.handlebars->25->1671" ] }, { @@ -21782,7 +21794,7 @@ "nl": "Gebruikersrechten voor dit apparaat verwijderen", "zh-chs": "删除此设备的用户组权限", "xloc": [ - "default.handlebars->25->1556" + "default.handlebars->25->1558" ] }, { @@ -21799,8 +21811,8 @@ "ru": "Удалить права группы пользователей для этой группы устройств", "zh-chs": "刪除該設備組的用戶組權限", "xloc": [ - "default.handlebars->25->1550", - "default.handlebars->25->574" + "default.handlebars->25->1552", + "default.handlebars->25->576" ] }, { @@ -21817,11 +21829,11 @@ "ru": "Удалить права пользователя для этой группы устройств", "zh-chs": "刪除此設備組的用戶權限", "xloc": [ - "default.handlebars->25->1206", - "default.handlebars->25->1544", - "default.handlebars->25->1663", - "default.handlebars->25->1675", - "default.handlebars->25->575" + "default.handlebars->25->1208", + "default.handlebars->25->1546", + "default.handlebars->25->1665", + "default.handlebars->25->1677", + "default.handlebars->25->577" ] }, { @@ -21842,9 +21854,9 @@ "default-mobile.handlebars->9->293", "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->25->1393", + "default.handlebars->25->1395", "default.handlebars->25->435", - "default.handlebars->25->761", + "default.handlebars->25->763", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->1" @@ -21864,7 +21876,7 @@ "ru": "Требования: ", "zh-chs": "要求:", "xloc": [ - "default.handlebars->25->1116" + "default.handlebars->25->1118" ] }, { @@ -21882,8 +21894,8 @@ "zh-chs": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->25->1488", - "default.handlebars->25->1653" + "default.handlebars->25->1490", + "default.handlebars->25->1655" ] }, { @@ -21900,7 +21912,7 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере", "zh-chs": "需要瀏覽器中的Microsoft ClickOnce支持", "xloc": [ - "default.handlebars->25->554" + "default.handlebars->25->556" ] }, { @@ -21917,8 +21929,8 @@ "ru": "Требуется поддержка Microsoft ClickOnce в вашем браузере.", "zh-chs": "在瀏覽器中需要Microsoft ClickOnce支持。", "xloc": [ - "default.handlebars->25->556", - "default.handlebars->25->558" + "default.handlebars->25->558", + "default.handlebars->25->560" ] }, { @@ -21950,7 +21962,7 @@ "zh-chs": "重啟", "xloc": [ "default-mobile.handlebars->9->251", - "default.handlebars->25->625", + "default.handlebars->25->627", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -22056,7 +22068,7 @@ "ru": "Перезапуск", "zh-chs": "重新開始", "xloc": [ - "default.handlebars->25->732", + "default.handlebars->25->734", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -22074,7 +22086,7 @@ "ru": "Восстановить сервер", "zh-chs": "還原伺服器", "xloc": [ - "default.handlebars->25->1143" + "default.handlebars->25->1145" ] }, { @@ -22108,7 +22120,7 @@ "ru": "Восстановить сервер из резервной копии, это удалит существующие данные сервера . Продолжайте дальше только если знаете, что делаете.", "zh-chs": "使用備份還原服務器,這將刪除現有服務器數據。僅當您知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->25->1140" + "default.handlebars->25->1142" ] }, { @@ -22125,7 +22137,7 @@ "ru": "Ограничения", "zh-chs": "限制條件", "xloc": [ - "default.handlebars->25->1582" + "default.handlebars->25->1584" ] }, { @@ -22142,7 +22154,7 @@ "ru": "Ретороманский", "zh-chs": "修羅羅馬式", "xloc": [ - "default.handlebars->25->1026" + "default.handlebars->25->1028" ] }, { @@ -22159,7 +22171,7 @@ "ru": "Румынский", "zh-chs": "羅馬尼亞語", "xloc": [ - "default.handlebars->25->1027" + "default.handlebars->25->1029" ] }, { @@ -22176,7 +22188,7 @@ "ru": "Румынский (Молдавия)", "zh-chs": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->1028" + "default.handlebars->25->1030" ] }, { @@ -22195,8 +22207,8 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->283", - "default.handlebars->25->1366", - "default.handlebars->25->751" + "default.handlebars->25->1368", + "default.handlebars->25->753" ] }, { @@ -22318,7 +22330,7 @@ "ru": "Русский", "zh-chs": "俄語", "xloc": [ - "default.handlebars->25->1029" + "default.handlebars->25->1031" ] }, { @@ -22335,7 +22347,7 @@ "ru": "Русский (Молдавия)", "zh-chs": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->25->1030" + "default.handlebars->25->1032" ] }, { @@ -22348,8 +22360,8 @@ "nl": "SMS", "zh-chs": "短信", "xloc": [ - "default.handlebars->25->1624", - "default.handlebars->25->1629", + "default.handlebars->25->1626", + "default.handlebars->25->1631", "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" ] @@ -22364,7 +22376,7 @@ "nl": "SMS geschikt telefoonnummer voor deze gebruiker.", "zh-chs": "此用户的短信功能电话号码。", "xloc": [ - "default.handlebars->25->1641" + "default.handlebars->25->1643" ] }, { @@ -22412,7 +22424,7 @@ "ru": "Саамский", "zh-chs": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->25->1031" + "default.handlebars->25->1033" ] }, { @@ -22457,7 +22469,7 @@ "ru": "Санго", "zh-chs": "三鄉", "xloc": [ - "default.handlebars->25->1032" + "default.handlebars->25->1034" ] }, { @@ -22474,7 +22486,7 @@ "ru": "Санскритский", "zh-chs": "梵文", "xloc": [ - "default.handlebars->25->1033" + "default.handlebars->25->1035" ] }, { @@ -22491,7 +22503,7 @@ "ru": "Сардинский", "zh-chs": "撒丁島", "xloc": [ - "default.handlebars->25->1034" + "default.handlebars->25->1036" ] }, { @@ -22749,7 +22761,7 @@ "zh-chs": "使用TLS保護", "xloc": [ "default-mobile.handlebars->9->346", - "default.handlebars->25->824" + "default.handlebars->25->826" ] }, { @@ -22768,10 +22780,10 @@ "xloc": [ "default-mobile.handlebars->9->259", "default-mobile.handlebars->9->345", - "default.handlebars->25->1625", + "default.handlebars->25->1627", "default.handlebars->25->250", - "default.handlebars->25->636", - "default.handlebars->25->823" + "default.handlebars->25->638", + "default.handlebars->25->825" ] }, { @@ -22788,7 +22800,7 @@ "ru": "Ключ безопасности", "zh-chs": "安全密鑰", "xloc": [ - "default.handlebars->25->1622" + "default.handlebars->25->1624" ] }, { @@ -22822,12 +22834,12 @@ "ru": "Выбрать все", "zh-chs": "全選", "xloc": [ - "default.handlebars->25->1385", - "default.handlebars->25->1442", - "default.handlebars->25->1513", + "default.handlebars->25->1387", + "default.handlebars->25->1444", + "default.handlebars->25->1515", "default.handlebars->25->394", - "default.handlebars->25->753", "default.handlebars->25->755", + "default.handlebars->25->757", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -22850,11 +22862,11 @@ "ru": "Очистить все", "zh-chs": "選擇無", "xloc": [ - "default.handlebars->25->1384", - "default.handlebars->25->1441", - "default.handlebars->25->1512", + "default.handlebars->25->1386", + "default.handlebars->25->1443", + "default.handlebars->25->1514", "default.handlebars->25->393", - "default.handlebars->25->754", + "default.handlebars->25->756", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -22872,7 +22884,7 @@ "ru": "Выберите новую группу для выбранных устройств", "zh-chs": "為所選設備選擇一個新組", "xloc": [ - "default.handlebars->25->650" + "default.handlebars->25->652" ] }, { @@ -22889,7 +22901,7 @@ "ru": "Выберите новую группу для этого устройства", "zh-chs": "選擇此設備的新組", "xloc": [ - "default.handlebars->25->649" + "default.handlebars->25->651" ] }, { @@ -22937,8 +22949,8 @@ "nl": "Selecteer een bewerking die u op alle geselecteerde gebruikers wilt uitvoeren.", "zh-chs": "选择要对所有选定用户执行的操作。", "xloc": [ - "default.handlebars->25->1443", - "default.handlebars->25->1514" + "default.handlebars->25->1445", + "default.handlebars->25->1516" ] }, { @@ -22956,7 +22968,7 @@ "zh-chs": "選擇要在此設備上執行的操作。", "xloc": [ "default-mobile.handlebars->9->248", - "default.handlebars->25->622" + "default.handlebars->25->624" ] }, { @@ -22992,7 +23004,7 @@ "zh-chs": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->424", - "default.handlebars->25->1319" + "default.handlebars->25->1321" ] }, { @@ -23018,7 +23030,7 @@ "en": "Send Email", "nl": "E-mail verzenden", "xloc": [ - "default.handlebars->25->1454" + "default.handlebars->25->1456" ] }, { @@ -23036,7 +23048,7 @@ "zh-chs": "發送MQTT消息", "xloc": [ "default.handlebars->25->395", - "default.handlebars->25->627" + "default.handlebars->25->629" ] }, { @@ -23053,7 +23065,7 @@ "ru": "Отправить MQTT сообщение", "zh-chs": "發送MQTT消息", "xloc": [ - "default.handlebars->25->642" + "default.handlebars->25->644" ] }, { @@ -23066,7 +23078,7 @@ "nl": "verstuur SMS", "zh-chs": "发送短信", "xloc": [ - "default.handlebars->25->1452" + "default.handlebars->25->1454" ] }, { @@ -23079,14 +23091,14 @@ "nl": "Stuur een SMS bericht naar deze gebruiker", "zh-chs": "发送短信给该用户", "xloc": [ - "default.handlebars->25->1630" + "default.handlebars->25->1632" ] }, { "en": "Send a email message to this user", "nl": "Stuur een e-mailbericht naar deze gebruiker", "xloc": [ - "default.handlebars->25->1632" + "default.handlebars->25->1634" ] }, { @@ -23103,7 +23115,7 @@ "ru": "Отправить уведомление всем пользователям этой группы.", "zh-chs": "向該組中的所有用戶發送通知。", "xloc": [ - "default.handlebars->25->1541" + "default.handlebars->25->1543" ] }, { @@ -23120,7 +23132,7 @@ "ru": "Отправить текстовое уведомление этому пользователю.", "zh-chs": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->25->1456" + "default.handlebars->25->1458" ] }, { @@ -23136,7 +23148,7 @@ "ru": "Отправить письмо пользователю", "zh-chs": "发送电子邮件给用户", "xloc": [ - "default.handlebars->25->1437" + "default.handlebars->25->1439" ] }, { @@ -23170,7 +23182,7 @@ "ru": "Отправить приглашение по email.", "zh-chs": "發送邀請電子郵件。", "xloc": [ - "default.handlebars->25->1487" + "default.handlebars->25->1489" ] }, { @@ -23236,7 +23248,7 @@ "ru": "Отправить уведомление пользователю", "zh-chs": "發送用戶通知", "xloc": [ - "default.handlebars->25->1634" + "default.handlebars->25->1636" ] }, { @@ -23253,7 +23265,7 @@ "ru": "Сербский", "zh-chs": "塞爾維亞", "xloc": [ - "default.handlebars->25->1037" + "default.handlebars->25->1039" ] }, { @@ -23271,7 +23283,7 @@ "zh-chs": "序列號", "xloc": [ "default-mobile.handlebars->9->357", - "default.handlebars->25->835" + "default.handlebars->25->837" ] }, { @@ -23288,7 +23300,7 @@ "ru": "Резервное копирование сервера", "zh-chs": "服務器備份", "xloc": [ - "default.handlebars->25->1497" + "default.handlebars->25->1499" ] }, { @@ -23305,7 +23317,7 @@ "ru": "Сертификат сервера", "zh-chs": "服務器證書", "xloc": [ - "default.handlebars->25->1779" + "default.handlebars->25->1781" ] }, { @@ -23322,7 +23334,7 @@ "ru": "База данных сервера", "zh-chs": "服務器數據庫", "xloc": [ - "default.handlebars->25->1780" + "default.handlebars->25->1782" ] }, { @@ -23341,11 +23353,11 @@ "xloc": [ "default-mobile.handlebars->9->403", "default-mobile.handlebars->9->416", - "default.handlebars->25->1282", - "default.handlebars->25->1310", - "default.handlebars->25->1494", - "default.handlebars->25->588", - "default.handlebars->25->607" + "default.handlebars->25->1284", + "default.handlebars->25->1312", + "default.handlebars->25->1496", + "default.handlebars->25->590", + "default.handlebars->25->609" ] }, { @@ -23362,8 +23374,8 @@ "ru": "Разрешения сервера", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1429", - "default.handlebars->25->1506" + "default.handlebars->25->1431", + "default.handlebars->25->1508" ] }, { @@ -23380,7 +23392,7 @@ "ru": "Квота сервера", "zh-chs": "服務器配額", "xloc": [ - "default.handlebars->25->1596" + "default.handlebars->25->1598" ] }, { @@ -23397,7 +23409,7 @@ "ru": "Восстановление сервера", "zh-chs": "服務器還原", "xloc": [ - "default.handlebars->25->1498" + "default.handlebars->25->1500" ] }, { @@ -23414,7 +23426,7 @@ "ru": "Права", "zh-chs": "服務器權限", "xloc": [ - "default.handlebars->25->1595" + "default.handlebars->25->1597" ] }, { @@ -23431,7 +23443,7 @@ "ru": "Состояние сервера", "zh-chs": "服務器狀態", "xloc": [ - "default.handlebars->25->1730" + "default.handlebars->25->1732" ] }, { @@ -23465,7 +23477,7 @@ "ru": "Трассировка сервера", "zh-chs": "服務器跟踪", "xloc": [ - "default.handlebars->25->1790" + "default.handlebars->25->1792" ] }, { @@ -23482,7 +23494,7 @@ "ru": "Обновление сервера", "zh-chs": "服務器更新", "xloc": [ - "default.handlebars->25->1499" + "default.handlebars->25->1501" ] }, { @@ -23604,7 +23616,7 @@ "ru": "ServerStats.csv", "zh-chs": "ServerStats.csv", "xloc": [ - "default.handlebars->25->1771" + "default.handlebars->25->1773" ] }, { @@ -23621,7 +23633,7 @@ "ru": "Детали службы", "zh-chs": "服務詳情", "xloc": [ - "default.handlebars->25->733" + "default.handlebars->25->735" ] }, { @@ -23645,14 +23657,14 @@ "en": "Session", "nl": "Sessie", "xloc": [ - "default.handlebars->25->1694" + "default.handlebars->25->1696" ] }, { "en": "Session Information", "nl": "Sessie informatie", "xloc": [ - "default.handlebars->25->706" + "default.handlebars->25->708" ] }, { @@ -23837,7 +23849,7 @@ "ru": "Общий процесс", "zh-chs": "共享過程", "xloc": [ - "default.handlebars->25->727" + "default.handlebars->25->729" ] }, { @@ -23947,7 +23959,7 @@ "zh-chs": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->406", - "default.handlebars->25->1285" + "default.handlebars->25->1287" ] }, { @@ -23964,7 +23976,7 @@ "ru": "Показывать панель-уведомление", "zh-chs": "顯示連接工具欄", "xloc": [ - "default.handlebars->25->1248" + "default.handlebars->25->1250" ] }, { @@ -23981,7 +23993,7 @@ "ru": "Показать информацию о расположении устройства", "zh-chs": "顯示設備位置信息", "xloc": [ - "default.handlebars->25->548" + "default.handlebars->25->550" ] }, { @@ -23998,7 +24010,7 @@ "ru": "Показать информацию о сетевом интерфейсе устройства", "zh-chs": "顯示設備網絡接口信息", "xloc": [ - "default.handlebars->25->546" + "default.handlebars->25->548" ] }, { @@ -24105,8 +24117,8 @@ "ru": "Простой режим управления администратора (ACM)", "zh-chs": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->25->1186", - "default.handlebars->25->1209" + "default.handlebars->25->1188", + "default.handlebars->25->1211" ] }, { @@ -24123,9 +24135,9 @@ "ru": "Простой режим управления клиента (CCM)", "zh-chs": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->25->1184", - "default.handlebars->25->1212", - "default.handlebars->25->1216" + "default.handlebars->25->1186", + "default.handlebars->25->1214", + "default.handlebars->25->1218" ] }, { @@ -24142,7 +24154,7 @@ "ru": "Синдхи", "zh-chs": "信地", "xloc": [ - "default.handlebars->25->1035" + "default.handlebars->25->1037" ] }, { @@ -24159,7 +24171,7 @@ "ru": "Сингальский", "zh-chs": "僧伽羅語", "xloc": [ - "default.handlebars->25->1036" + "default.handlebars->25->1038" ] }, { @@ -24184,8 +24196,8 @@ "ru": "Размер", "zh-chs": "尺寸", "xloc": [ - "default.handlebars->25->1697", - "default.handlebars->25->1712", + "default.handlebars->25->1699", + "default.handlebars->25->1714", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -24203,7 +24215,7 @@ "ru": "Размер: 100%", "zh-chs": "尺寸:100%", "xloc": [ - "default.handlebars->25->781" + "default.handlebars->25->783" ] }, { @@ -24220,7 +24232,7 @@ "ru": "Размер: 125%", "zh-chs": "尺寸:125%", "xloc": [ - "default.handlebars->25->782" + "default.handlebars->25->784" ] }, { @@ -24237,7 +24249,7 @@ "ru": "Размер: 150%", "zh-chs": "尺寸:150%", "xloc": [ - "default.handlebars->25->783" + "default.handlebars->25->785" ] }, { @@ -24254,7 +24266,7 @@ "ru": "Размер: 200%", "zh-chs": "尺寸:200%", "xloc": [ - "default.handlebars->25->784" + "default.handlebars->25->786" ] }, { @@ -24278,7 +24290,7 @@ "default.handlebars->25->2", "default.handlebars->25->3", "default.handlebars->25->4", - "default.handlebars->25->624" + "default.handlebars->25->626" ] }, { @@ -24332,7 +24344,7 @@ "ru": "Словацкий", "zh-chs": "斯洛伐克文", "xloc": [ - "default.handlebars->25->1038" + "default.handlebars->25->1040" ] }, { @@ -24349,7 +24361,7 @@ "ru": "Словенский", "zh-chs": "斯洛文尼亞文", "xloc": [ - "default.handlebars->25->1039" + "default.handlebars->25->1041" ] }, { @@ -24402,7 +24414,7 @@ "ru": "Малая фокусировка", "zh-chs": "小焦點", "xloc": [ - "default.handlebars->25->712" + "default.handlebars->25->714" ] }, { @@ -24419,7 +24431,7 @@ "ru": "Програмное отключение агента", "zh-chs": "軟斷開劑", "xloc": [ - "default.handlebars->25->865" + "default.handlebars->25->867" ] }, { @@ -24471,7 +24483,7 @@ "ru": "Сомани", "zh-chs": "索馬尼", "xloc": [ - "default.handlebars->25->1040" + "default.handlebars->25->1042" ] }, { @@ -24488,7 +24500,7 @@ "ru": "Сорбский", "zh-chs": "索比亞人", "xloc": [ - "default.handlebars->25->1041" + "default.handlebars->25->1043" ] }, { @@ -24618,7 +24630,7 @@ "ru": "Испанский", "zh-chs": "西班牙文", "xloc": [ - "default.handlebars->25->1042" + "default.handlebars->25->1044" ] }, { @@ -24635,7 +24647,7 @@ "ru": "Испанский (Аргентина)", "zh-chs": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->25->1043" + "default.handlebars->25->1045" ] }, { @@ -24652,7 +24664,7 @@ "ru": "Испанский (Боливия)", "zh-chs": "西班牙語(玻利維亞)", "xloc": [ - "default.handlebars->25->1044" + "default.handlebars->25->1046" ] }, { @@ -24669,7 +24681,7 @@ "ru": "Испанский (Чили)", "zh-chs": "西班牙語(智利)", "xloc": [ - "default.handlebars->25->1045" + "default.handlebars->25->1047" ] }, { @@ -24686,7 +24698,7 @@ "ru": "Испанский (Колумбия)", "zh-chs": "西班牙語(哥倫比亞)", "xloc": [ - "default.handlebars->25->1046" + "default.handlebars->25->1048" ] }, { @@ -24703,7 +24715,7 @@ "ru": "Испанский (Коста-Рика)", "zh-chs": "西班牙語(哥斯達黎加)", "xloc": [ - "default.handlebars->25->1047" + "default.handlebars->25->1049" ] }, { @@ -24720,7 +24732,7 @@ "ru": "Испанский (Доминиканская Республика)", "zh-chs": "西班牙語(多米尼加共和國)", "xloc": [ - "default.handlebars->25->1048" + "default.handlebars->25->1050" ] }, { @@ -24737,7 +24749,7 @@ "ru": "Испанский (Эквадор)", "zh-chs": "西班牙語(厄瓜多爾)", "xloc": [ - "default.handlebars->25->1049" + "default.handlebars->25->1051" ] }, { @@ -24754,7 +24766,7 @@ "ru": "Испанский (Сальвадор)", "zh-chs": "西班牙語(薩爾瓦多)", "xloc": [ - "default.handlebars->25->1050" + "default.handlebars->25->1052" ] }, { @@ -24771,7 +24783,7 @@ "ru": "Испанский (Гватемала)", "zh-chs": "西班牙語(危地馬拉)", "xloc": [ - "default.handlebars->25->1051" + "default.handlebars->25->1053" ] }, { @@ -24788,7 +24800,7 @@ "ru": "Испанский (Гондурас)", "zh-chs": "西班牙語(洪都拉斯)", "xloc": [ - "default.handlebars->25->1052" + "default.handlebars->25->1054" ] }, { @@ -24805,7 +24817,7 @@ "ru": "Испанский (Мексика)", "zh-chs": "西班牙語(墨西哥)", "xloc": [ - "default.handlebars->25->1053" + "default.handlebars->25->1055" ] }, { @@ -24822,7 +24834,7 @@ "ru": "Испанский (Никарагуа)", "zh-chs": "西班牙語(尼加拉瓜)", "xloc": [ - "default.handlebars->25->1054" + "default.handlebars->25->1056" ] }, { @@ -24839,7 +24851,7 @@ "ru": "Испанский (Панама)", "zh-chs": "西班牙語(巴拿馬)", "xloc": [ - "default.handlebars->25->1055" + "default.handlebars->25->1057" ] }, { @@ -24856,7 +24868,7 @@ "ru": "Испанский (Парагвай)", "zh-chs": "西班牙語(巴拉圭)", "xloc": [ - "default.handlebars->25->1056" + "default.handlebars->25->1058" ] }, { @@ -24873,7 +24885,7 @@ "ru": "Испанский (Перу)", "zh-chs": "西班牙語(秘魯)", "xloc": [ - "default.handlebars->25->1057" + "default.handlebars->25->1059" ] }, { @@ -24890,7 +24902,7 @@ "ru": "Испанский (Пуэрто-Рико)", "zh-chs": "西班牙語(波多黎各)", "xloc": [ - "default.handlebars->25->1058" + "default.handlebars->25->1060" ] }, { @@ -24907,7 +24919,7 @@ "ru": "Испанский (Испания)", "zh-chs": "西班牙語(西班牙)", "xloc": [ - "default.handlebars->25->1059" + "default.handlebars->25->1061" ] }, { @@ -24924,7 +24936,7 @@ "ru": "Испанский (Уругвай)", "zh-chs": "西班牙語(烏拉圭)", "xloc": [ - "default.handlebars->25->1060" + "default.handlebars->25->1062" ] }, { @@ -24941,7 +24953,7 @@ "ru": "Испанский (Венесуэла)", "zh-chs": "西班牙語(委內瑞拉)", "xloc": [ - "default.handlebars->25->1061" + "default.handlebars->25->1063" ] }, { @@ -24989,22 +25001,22 @@ "ru": "Старт", "zh-chs": "開始", "xloc": [ - "default.handlebars->25->730" + "default.handlebars->25->732" ] }, { "en": "Start MeshCentral Router", "xloc": [ - "default.handlebars->25->663" + "default.handlebars->25->665" ] }, { "en": "Start Time", "nl": "Start tijd", "xloc": [ - "default.handlebars->25->1695", - "default.handlebars->25->1714", - "default.handlebars->25->702" + "default.handlebars->25->1697", + "default.handlebars->25->1716", + "default.handlebars->25->704" ] }, { @@ -25021,7 +25033,7 @@ "ru": "Состояние", "zh-chs": "州", "xloc": [ - "default.handlebars->25->721", + "default.handlebars->25->723", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -25056,8 +25068,8 @@ "ru": "Статус", "zh-chs": "狀態", "xloc": [ - "default.handlebars->25->1646", - "default.handlebars->25->1707", + "default.handlebars->25->1648", + "default.handlebars->25->1709", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -25075,7 +25087,7 @@ "ru": "Стоп", "zh-chs": "停止", "xloc": [ - "default.handlebars->25->731" + "default.handlebars->25->733" ] }, { @@ -25091,7 +25103,7 @@ "ru": "Остановить процесс", "zh-chs": "停止程序", "xloc": [ - "default.handlebars->25->718" + "default.handlebars->25->720" ] }, { @@ -25109,7 +25121,7 @@ "zh-chs": "停止進程#{0} \\“ {1} \\”?", "xloc": [ "default-mobile.handlebars->9->279", - "default.handlebars->25->735" + "default.handlebars->25->737" ] }, { @@ -25123,7 +25135,7 @@ "zh-chs": "存储", "xloc": [ "default-mobile.handlebars->9->371", - "default.handlebars->25->849" + "default.handlebars->25->851" ] }, { @@ -25157,7 +25169,7 @@ "ru": "Превышен лимит места для хранения", "zh-chs": "儲存空間超過", "xloc": [ - "default.handlebars->25->1370" + "default.handlebars->25->1372" ] }, { @@ -25174,7 +25186,7 @@ "ru": "Надежный", "zh-chs": "強大", "xloc": [ - "default.handlebars->25->1133" + "default.handlebars->25->1135" ] }, { @@ -25201,7 +25213,7 @@ "en": "Subject", "nl": "Onderwerp", "xloc": [ - "default.handlebars->25->1453" + "default.handlebars->25->1455" ] }, { @@ -25286,7 +25298,7 @@ "ru": "Суту", "zh-chs": "蘇圖", "xloc": [ - "default.handlebars->25->1062" + "default.handlebars->25->1064" ] }, { @@ -25303,7 +25315,7 @@ "ru": "Суахили", "zh-chs": "斯瓦希里語", "xloc": [ - "default.handlebars->25->1063" + "default.handlebars->25->1065" ] }, { @@ -25320,7 +25332,7 @@ "ru": "Шведский", "zh-chs": "瑞典", "xloc": [ - "default.handlebars->25->1064" + "default.handlebars->25->1066" ] }, { @@ -25337,7 +25349,7 @@ "ru": "Шведский (Финляндия)", "zh-chs": "瑞典語(芬蘭)", "xloc": [ - "default.handlebars->25->1065" + "default.handlebars->25->1067" ] }, { @@ -25354,7 +25366,7 @@ "ru": "Шведский (Швеция)", "zh-chs": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->25->1066" + "default.handlebars->25->1068" ] }, { @@ -25371,7 +25383,7 @@ "ru": "Синхронизировать имя устройства на сервере с именем хоста", "zh-chs": "將服務器設備名稱同步到主機名", "xloc": [ - "default.handlebars->25->1256" + "default.handlebars->25->1258" ] }, { @@ -25447,7 +25459,7 @@ "zh-chs": "TLS", "xloc": [ "default-mobile.handlebars->9->221", - "default.handlebars->25->491" + "default.handlebars->25->493" ] }, { @@ -25465,7 +25477,7 @@ "zh-chs": "未設置TLS", "xloc": [ "default-mobile.handlebars->9->347", - "default.handlebars->25->825" + "default.handlebars->25->827" ] }, { @@ -25484,7 +25496,7 @@ "xloc": [ "default-mobile.handlebars->9->261", "default.handlebars->25->252", - "default.handlebars->25->638" + "default.handlebars->25->640" ] }, { @@ -25518,7 +25530,7 @@ "ru": "Тег1, Тег2, Тег3", "zh-chs": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->25->692" + "default.handlebars->25->694" ] }, { @@ -25538,7 +25550,7 @@ "default-mobile.handlebars->9->235", "default-mobile.handlebars->9->236", "default-mobile.handlebars->9->270", - "default.handlebars->25->691", + "default.handlebars->25->693", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -25556,7 +25568,7 @@ "ru": "Тамильский", "zh-chs": "泰米爾語", "xloc": [ - "default.handlebars->25->1067" + "default.handlebars->25->1069" ] }, { @@ -25573,7 +25585,7 @@ "ru": "Татарский", "zh-chs": "塔塔爾族", "xloc": [ - "default.handlebars->25->1068" + "default.handlebars->25->1070" ] }, { @@ -25590,7 +25602,7 @@ "ru": "Телугу", "zh-chs": "泰盧加", "xloc": [ - "default.handlebars->25->1069" + "default.handlebars->25->1071" ] }, { @@ -25608,8 +25620,8 @@ "zh-chs": "終奌站", "xloc": [ "default-mobile.handlebars->9->162", - "default.handlebars->25->1249", - "default.handlebars->25->1701", + "default.handlebars->25->1251", + "default.handlebars->25->1703", "default.handlebars->25->215", "default.handlebars->25->445", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -25647,9 +25659,9 @@ "ru": "Терминал уведомление", "zh-chs": "終端通知", "xloc": [ - "default.handlebars->25->1169", - "default.handlebars->25->1614", - "default.handlebars->25->515" + "default.handlebars->25->1171", + "default.handlebars->25->1616", + "default.handlebars->25->517" ] }, { @@ -25666,9 +25678,9 @@ "ru": "Запрос терминала", "zh-chs": "終端提示", "xloc": [ - "default.handlebars->25->1168", - "default.handlebars->25->1613", - "default.handlebars->25->514" + "default.handlebars->25->1170", + "default.handlebars->25->1615", + "default.handlebars->25->516" ] }, { @@ -25724,7 +25736,7 @@ "ru": "Тайский", "zh-chs": "泰國", "xloc": [ - "default.handlebars->25->1070" + "default.handlebars->25->1072" ] }, { @@ -25759,7 +25771,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер", "zh-chs": "該計算機所屬的設備組的名稱", "xloc": [ - "default.handlebars->25->470" + "default.handlebars->25->472" ] }, { @@ -25776,7 +25788,7 @@ "ru": "Имя группы устройств, к которой принадлежит этот компьютер.", "zh-chs": "該計算機所屬的設備組的名稱。", "xloc": [ - "default.handlebars->25->468" + "default.handlebars->25->470" ] }, { @@ -25793,8 +25805,8 @@ "ru": "Имя этого компьютера, указанное в операционной системе", "zh-chs": "在操作系統中設置的此計算機的名稱", "xloc": [ - "default.handlebars->25->471", - "default.handlebars->25->473" + "default.handlebars->25->473", + "default.handlebars->25->475" ] }, { @@ -25811,7 +25823,7 @@ "ru": "На данный момент уведомлений нет", "zh-chs": "目前沒有任何通知", "xloc": [ - "default.handlebars->25->1722" + "default.handlebars->25->1724" ] }, { @@ -25863,7 +25875,7 @@ "zh-chs": "該帳戶無權創建新的設備組。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->25->1119" + "default.handlebars->25->1121" ] }, { @@ -25897,7 +25909,7 @@ "ru": "Это не безопасная политика, так как агенты будут выполнять активацию.", "zh-chs": "這不是安全的策略,因為代理將執行激活。", "xloc": [ - "default.handlebars->25->1234" + "default.handlebars->25->1236" ] }, { @@ -25932,7 +25944,7 @@ "ru": "Эта политика не повлияет на устройства с Intel® AMT в режиме ACM.", "zh-chs": "該策略不會影響採用ACM模式的英特爾®AMT的設備。", "xloc": [ - "default.handlebars->25->1233" + "default.handlebars->25->1235" ] }, { @@ -25998,7 +26010,7 @@ "nl": "Hiermee wordt een vermelding toegevoegd aan het gebeurtenislogboek van dit apparaat.", "zh-chs": "这会将条目添加到该设备的事件日志中。", "xloc": [ - "default.handlebars->25->615" + "default.handlebars->25->617" ] }, { @@ -26029,7 +26041,7 @@ "ru": "Это не приведет к удалению устройств с сервера, но они больше не смогут подключаться к серверу. Весь удаленный доступ к устройствам будет потерян. Устройства должны быть подключены, чтобы эта команда работала.", "zh-chs": "這不會從服務器上刪除設備,但是設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->25->645" + "default.handlebars->25->647" ] }, { @@ -26046,7 +26058,7 @@ "ru": "Это не приведет к удалению этого устройства с сервера, но оно больше не сможет подключаться к серверу. Весь удаленный доступ к устройству будет потерян. Для работы этой команды устройство должно быть подключено.", "zh-chs": "這不會將該設備從服務器上刪除,但是該設備將不再能夠連接到服務器。對設備的所有遠程訪問都將丟失。必須連接設備,此命令才能起作用。", "xloc": [ - "default.handlebars->25->646" + "default.handlebars->25->648" ] }, { @@ -26063,7 +26075,7 @@ "ru": "Тигровый", "zh-chs": "蒂格雷", "xloc": [ - "default.handlebars->25->1071" + "default.handlebars->25->1073" ] }, { @@ -26087,7 +26099,7 @@ "en": "Timeout", "nl": "Time-out", "xloc": [ - "default.handlebars->25->697" + "default.handlebars->25->699" ] }, { @@ -26206,7 +26218,7 @@ "ru": "Чтобы удалить эту учетную запись, введите пароль учетной записи в оба поля и нажмите ОК.", "zh-chs": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->25->1106" + "default.handlebars->25->1108" ] }, { @@ -26555,7 +26567,7 @@ "ru": "Тема", "zh-chs": "話題", "xloc": [ - "default.handlebars->25->640" + "default.handlebars->25->642" ] }, { @@ -26606,7 +26618,7 @@ "ru": "Router используется для подключения к различным портам устройства через этот сервер", "zh-chs": "用於通過此服務器連接到設備的流量路由器", "xloc": [ - "default.handlebars->25->550" + "default.handlebars->25->552" ] }, { @@ -26640,7 +26652,7 @@ "ru": "Тсонга", "zh-chs": "特松加", "xloc": [ - "default.handlebars->25->1072" + "default.handlebars->25->1074" ] }, { @@ -26657,7 +26669,7 @@ "ru": "Тсвана", "zh-chs": "茨瓦納", "xloc": [ - "default.handlebars->25->1073" + "default.handlebars->25->1075" ] }, { @@ -26674,7 +26686,7 @@ "ru": "Турецкий", "zh-chs": "土耳其", "xloc": [ - "default.handlebars->25->1074" + "default.handlebars->25->1076" ] }, { @@ -26691,7 +26703,7 @@ "ru": "Туркменский", "zh-chs": "土庫曼人", "xloc": [ - "default.handlebars->25->1075" + "default.handlebars->25->1077" ] }, { @@ -26727,11 +26739,11 @@ "xloc": [ "default-mobile.handlebars->9->379", "default-mobile.handlebars->9->98", - "default.handlebars->25->1126", - "default.handlebars->25->1159", - "default.handlebars->25->1210", - "default.handlebars->25->1213", - "default.handlebars->25->728", + "default.handlebars->25->1128", + "default.handlebars->25->1161", + "default.handlebars->25->1212", + "default.handlebars->25->1215", + "default.handlebars->25->730", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3" ] }, @@ -26749,7 +26761,7 @@ "ru": "Введите имя ключа, выберите поле OTP и нажмите кнопку на YubiKey™.", "zh-chs": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->25->884" + "default.handlebars->25->886" ] }, { @@ -26766,7 +26778,7 @@ "ru": "Введите имя ключа для добавления.", "zh-chs": "輸入要添加的密鑰的名稱。", "xloc": [ - "default.handlebars->25->881" + "default.handlebars->25->883" ] }, { @@ -26783,7 +26795,7 @@ "ru": "Терминал UTF8", "zh-chs": "UTF8終端", "xloc": [ - "default.handlebars->25->739" + "default.handlebars->25->741" ] }, { @@ -26800,7 +26812,7 @@ "ru": "Украинский", "zh-chs": "烏克蘭", "xloc": [ - "default.handlebars->25->1076" + "default.handlebars->25->1078" ] }, { @@ -26817,7 +26829,7 @@ "ru": "Невозможно получить доступ к устройству, пока адрес email не подтвержден. Это необходимо для восстановления пароля. Перейдите на вкладку \\\"Моя учетная запись\\\", чтобы изменить и подтвердить адрес email.", "zh-chs": "在驗證電子郵件地址之前,無法訪問設備。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "xloc": [ - "default.handlebars->25->1121", + "default.handlebars->25->1123", "default.handlebars->25->461" ] }, @@ -26871,7 +26883,7 @@ "ru": "Невозможно получить доступ к устройству, пока не включена двухфакторная аутентификация. Это требуется для дополнительной безопасности. Перейдите на вкладку \\\"Моя учетная запись\\\" и посмотрите \\\"Безопасность учетной записи\\\".", "zh-chs": "在啟用兩因素身份驗證之前,無法訪問設備。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->25->1123", + "default.handlebars->25->1125", "default.handlebars->25->463" ] }, @@ -26979,9 +26991,9 @@ "zh-chs": "卸載", "xloc": [ "default-mobile.handlebars->9->426", - "default.handlebars->25->1321", - "default.handlebars->25->593", - "default.handlebars->25->612" + "default.handlebars->25->1323", + "default.handlebars->25->595", + "default.handlebars->25->614" ] }, { @@ -26999,9 +27011,9 @@ "zh-chs": "卸載代理", "xloc": [ "default-mobile.handlebars->9->408", - "default.handlebars->25->1287", + "default.handlebars->25->1289", "default.handlebars->25->396", - "default.handlebars->25->628" + "default.handlebars->25->630" ] }, { @@ -27018,7 +27030,7 @@ "ru": "Удалить агент", "zh-chs": "卸載代理", "xloc": [ - "default.handlebars->25->648" + "default.handlebars->25->650" ] }, { @@ -27041,17 +27053,17 @@ "default-mobile.handlebars->9->344", "default-mobile.handlebars->9->35", "default-mobile.handlebars->9->6", - "default.handlebars->25->1146", - "default.handlebars->25->1147", + "default.handlebars->25->1148", + "default.handlebars->25->1149", "default.handlebars->25->13", - "default.handlebars->25->1686", - "default.handlebars->25->1699", - "default.handlebars->25->1700", + "default.handlebars->25->1688", + "default.handlebars->25->1701", + "default.handlebars->25->1702", "default.handlebars->25->392", "default.handlebars->25->41", "default.handlebars->25->42", - "default.handlebars->25->815", - "default.handlebars->25->822", + "default.handlebars->25->817", + "default.handlebars->25->824", "default.handlebars->25->91", "default.handlebars->25->92", "default.handlebars->25->93", @@ -27074,7 +27086,7 @@ "zh-chs": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->373", - "default.handlebars->25->1153" + "default.handlebars->25->1155" ] }, { @@ -27091,7 +27103,7 @@ "ru": "Неизвестное действие", "zh-chs": "未知動作", "xloc": [ - "default.handlebars->25->1736" + "default.handlebars->25->1738" ] }, { @@ -27108,8 +27120,8 @@ "ru": "Неизвестное устройство", "zh-chs": "未知設備", "xloc": [ - "default.handlebars->25->1555", - "default.handlebars->25->1674" + "default.handlebars->25->1557", + "default.handlebars->25->1676" ] }, { @@ -27126,9 +27138,9 @@ "ru": "Неизвестная группа устройств", "zh-chs": "未知設備組", "xloc": [ - "default.handlebars->25->1549", - "default.handlebars->25->1662", - "default.handlebars->25->1740" + "default.handlebars->25->1551", + "default.handlebars->25->1664", + "default.handlebars->25->1742" ] }, { @@ -27145,7 +27157,7 @@ "ru": "Неизвестная группа", "zh-chs": "未知群組", "xloc": [ - "default.handlebars->25->1732" + "default.handlebars->25->1734" ] }, { @@ -27163,7 +27175,7 @@ "zh-chs": "未知狀態", "xloc": [ "default-mobile.handlebars->9->216", - "default.handlebars->25->483" + "default.handlebars->25->485" ] }, { @@ -27180,7 +27192,7 @@ "ru": "Неизвестная группа пользователей", "zh-chs": "未知用戶組", "xloc": [ - "default.handlebars->25->1668" + "default.handlebars->25->1670" ] }, { @@ -27198,7 +27210,7 @@ "zh-chs": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->25->485" + "default.handlebars->25->487" ] }, { @@ -27231,7 +27243,7 @@ "nl": "Account ontgrendelen", "zh-chs": "解锁帐号", "xloc": [ - "default.handlebars->25->1446" + "default.handlebars->25->1448" ] }, { @@ -27269,7 +27281,7 @@ "ru": "Актуально", "zh-chs": "最新", "xloc": [ - "default.handlebars->25->1797" + "default.handlebars->25->1799" ] }, { @@ -27309,11 +27321,11 @@ "default-mobile.handlebars->9->126", "default-mobile.handlebars->9->294", "default-mobile.handlebars->9->312", - "default.handlebars->25->1394", - "default.handlebars->25->1402", - "default.handlebars->25->762", - "default.handlebars->25->785", - "default.handlebars->25->788", + "default.handlebars->25->1396", + "default.handlebars->25->1404", + "default.handlebars->25->764", + "default.handlebars->25->787", + "default.handlebars->25->790", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -27331,7 +27343,7 @@ "ru": "Загрузить ядро Mesh Agent", "zh-chs": "上傳網格代理核心", "xloc": [ - "default.handlebars->25->867" + "default.handlebars->25->869" ] }, { @@ -27348,7 +27360,7 @@ "ru": "Загрузить файл ядра", "zh-chs": "上載核心文件", "xloc": [ - "default.handlebars->25->864" + "default.handlebars->25->866" ] }, { @@ -27365,7 +27377,7 @@ "ru": "Загрузить ядро по умолчанию с сервера ", "zh-chs": "上載默認服務器核心", "xloc": [ - "default.handlebars->25->861" + "default.handlebars->25->863" ] }, { @@ -27382,7 +27394,7 @@ "ru": "Загрузить ядро восстановления", "zh-chs": "上傳恢復核心", "xloc": [ - "default.handlebars->25->863" + "default.handlebars->25->865" ] }, { @@ -27399,8 +27411,8 @@ "ru": "Загрузка перезапишет 1 файл. Продолжить?", "zh-chs": "上傳將覆蓋1個文件。繼續?", "xloc": [ - "default.handlebars->25->1403", - "default.handlebars->25->786" + "default.handlebars->25->1405", + "default.handlebars->25->788" ] }, { @@ -27417,8 +27429,8 @@ "ru": "Загрузка перезапишет {0} файлов. Продолжить?", "zh-chs": "上傳將覆蓋{0}個文件。繼續?", "xloc": [ - "default.handlebars->25->1404", - "default.handlebars->25->787" + "default.handlebars->25->1406", + "default.handlebars->25->789" ] }, { @@ -27449,7 +27461,7 @@ "ru": "Верхний Сорбский", "zh-chs": "上索布族", "xloc": [ - "default.handlebars->25->1077" + "default.handlebars->25->1079" ] }, { @@ -27466,7 +27478,7 @@ "ru": "Урду", "zh-chs": "烏爾都語", "xloc": [ - "default.handlebars->25->1078" + "default.handlebars->25->1080" ] }, { @@ -27518,8 +27530,8 @@ "ru": "Использовано", "zh-chs": "用過的", "xloc": [ - "default.handlebars->25->1726", - "default.handlebars->25->1728" + "default.handlebars->25->1728", + "default.handlebars->25->1730" ] }, { @@ -27536,12 +27548,12 @@ "ru": "Пользователь", "zh-chs": "用戶", "xloc": [ - "default.handlebars->25->1207", - "default.handlebars->25->1430", - "default.handlebars->25->1545", - "default.handlebars->25->1719", + "default.handlebars->25->1209", + "default.handlebars->25->1432", + "default.handlebars->25->1547", + "default.handlebars->25->1721", "default.handlebars->25->193", - "default.handlebars->25->577" + "default.handlebars->25->579" ] }, { @@ -27558,7 +27570,7 @@ "ru": "Пользователь + Файлы", "zh-chs": "用戶+文件", "xloc": [ - "default.handlebars->25->1431" + "default.handlebars->25->1433" ] }, { @@ -27575,10 +27587,10 @@ "ru": "Импорт учетной записи пользователя", "zh-chs": "用戶帳戶導入", "xloc": [ - "default.handlebars->25->1458", - "default.handlebars->25->1459", + "default.handlebars->25->1460", "default.handlebars->25->1461", - "default.handlebars->25->1463" + "default.handlebars->25->1463", + "default.handlebars->25->1465" ] }, { @@ -27595,7 +27607,7 @@ "ru": "Учетные записи пользователей", "zh-chs": "用戶帳號", "xloc": [ - "default.handlebars->25->1745" + "default.handlebars->25->1747" ] }, { @@ -27613,8 +27625,8 @@ "zh-chs": "用戶授權", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->25->1205", - "default.handlebars->25->573" + "default.handlebars->25->1207", + "default.handlebars->25->575" ] }, { @@ -27631,9 +27643,9 @@ "ru": "Согласие пользователя", "zh-chs": "用戶同意", "xloc": [ - "default.handlebars->25->1175", - "default.handlebars->25->1620", - "default.handlebars->25->521" + "default.handlebars->25->1177", + "default.handlebars->25->1622", + "default.handlebars->25->523" ] }, { @@ -27650,12 +27662,12 @@ "ru": "Группа пользователей", "zh-chs": "用戶組", "xloc": [ - "default.handlebars->25->1263", - "default.handlebars->25->1264", - "default.handlebars->25->1521", - "default.handlebars->25->1670", - "default.handlebars->25->1689", - "default.handlebars->25->576" + "default.handlebars->25->1265", + "default.handlebars->25->1266", + "default.handlebars->25->1523", + "default.handlebars->25->1672", + "default.handlebars->25->1691", + "default.handlebars->25->578" ] }, { @@ -27689,7 +27701,7 @@ "ru": "Членство в группах пользователей", "zh-chs": "用戶組成員資格", "xloc": [ - "default.handlebars->25->1667" + "default.handlebars->25->1669" ] }, { @@ -27713,17 +27725,17 @@ "ru": "Идентификатор пользователя", "zh-chs": "用戶標識", "xloc": [ - "default.handlebars->25->1324", - "default.handlebars->25->1589", - "default.handlebars->25->1590" + "default.handlebars->25->1326", + "default.handlebars->25->1591", + "default.handlebars->25->1592" ] }, { "en": "User Identifiers", "nl": "Gebruikers-ID's", "xloc": [ - "default.handlebars->25->1261", - "default.handlebars->25->1574" + "default.handlebars->25->1263", + "default.handlebars->25->1576" ] }, { @@ -27740,7 +27752,7 @@ "ru": "Экспортировать список пользователей", "zh-chs": "用戶列表導出", "xloc": [ - "default.handlebars->25->1470" + "default.handlebars->25->1472" ] }, { @@ -27758,7 +27770,7 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->428", - "default.handlebars->25->1323" + "default.handlebars->25->1325" ] }, { @@ -27820,7 +27832,7 @@ "ru": "Сессии пользователя", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1762" + "default.handlebars->25->1764" ] }, { @@ -27879,7 +27891,7 @@ "en": "User \\\"{0}\\\"", "nl": "Gebuiker \\\"{0}\\\"", "xloc": [ - "default.handlebars->25->705" + "default.handlebars->25->707" ] }, { @@ -27896,8 +27908,8 @@ "ru": "Использовать настройки браузера", "zh-chs": "用戶瀏覽器價值", "xloc": [ - "default.handlebars->25->1088", - "default.handlebars->25->1090" + "default.handlebars->25->1090", + "default.handlebars->25->1092" ] }, { @@ -27954,10 +27966,10 @@ "zh-chs": "用戶名", "xloc": [ "default-mobile.handlebars->9->257", - "default.handlebars->25->1478", + "default.handlebars->25->1480", "default.handlebars->25->247", "default.handlebars->25->277", - "default.handlebars->25->634", + "default.handlebars->25->636", "player.handlebars->3->4" ] }, @@ -28014,9 +28026,9 @@ "ru": "Пользователи", "zh-chs": "用戶數", "xloc": [ - "default.handlebars->25->1509", - "default.handlebars->25->1537", - "default.handlebars->25->1761", + "default.handlebars->25->1511", + "default.handlebars->25->1539", + "default.handlebars->25->1763", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -28034,7 +28046,7 @@ "ru": "Сессии пользователей", "zh-chs": "用戶會話", "xloc": [ - "default.handlebars->25->1749" + "default.handlebars->25->1751" ] }, { @@ -28051,7 +28063,7 @@ "ru": "VT100+ (F10 = ESC+[OY)", "zh-chs": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->25->744" + "default.handlebars->25->746" ] }, { @@ -28068,7 +28080,7 @@ "ru": "Венда", "zh-chs": "文達", "xloc": [ - "default.handlebars->25->1079" + "default.handlebars->25->1081" ] }, { @@ -28087,8 +28099,8 @@ "xloc": [ "default-mobile.handlebars->9->352", "default-mobile.handlebars->9->355", - "default.handlebars->25->830", - "default.handlebars->25->833" + "default.handlebars->25->832", + "default.handlebars->25->835" ] }, { @@ -28119,7 +28131,7 @@ "ru": "Проверенный", "zh-chs": "已驗證", "xloc": [ - "default.handlebars->25->1648" + "default.handlebars->25->1650" ] }, { @@ -28146,8 +28158,8 @@ "zh-chs": "验证电话号码", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->25->1439", - "default.handlebars->25->868" + "default.handlebars->25->1441", + "default.handlebars->25->870" ] }, { @@ -28203,10 +28215,10 @@ "default-mobile.handlebars->9->336", "default-mobile.handlebars->9->353", "default-mobile.handlebars->9->358", - "default.handlebars->25->793", - "default.handlebars->25->814", - "default.handlebars->25->831", - "default.handlebars->25->836", + "default.handlebars->25->795", + "default.handlebars->25->816", + "default.handlebars->25->833", + "default.handlebars->25->838", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -28223,7 +28235,7 @@ "ru": "Версия несовместима, пожалуйста, сначала обновите установку MeshCentral", "zh-chs": "版本不兼容,请先升级您的MeshCentral安装", "xloc": [ - "default.handlebars->25->1793" + "default.handlebars->25->1795" ] }, { @@ -28258,7 +28270,7 @@ "ru": "Вьетнамский", "zh-chs": "越南文", "xloc": [ - "default.handlebars->25->1080" + "default.handlebars->25->1082" ] }, { @@ -28291,8 +28303,8 @@ "ru": "Просмотр журнала изменений", "zh-chs": "查看变更日志", "xloc": [ - "default.handlebars->25->1796", - "default.handlebars->25->1798" + "default.handlebars->25->1798", + "default.handlebars->25->1800" ] }, { @@ -28309,7 +28321,7 @@ "ru": "Посмотреть примечания этого устройства", "zh-chs": "查看有關此設備的註釋", "xloc": [ - "default.handlebars->25->537" + "default.handlebars->25->539" ] }, { @@ -28326,7 +28338,7 @@ "ru": "Посмотреть примечания этой группы устройств", "zh-chs": "查看有關此設備組的註釋", "xloc": [ - "default.handlebars->25->1190" + "default.handlebars->25->1192" ] }, { @@ -28343,7 +28355,7 @@ "ru": "Посмотреть примечания об этом пользователе", "zh-chs": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->25->1628" + "default.handlebars->25->1630" ] }, { @@ -28360,7 +28372,7 @@ "ru": "Волапукский", "zh-chs": "沃拉普克", "xloc": [ - "default.handlebars->25->1081" + "default.handlebars->25->1083" ] }, { @@ -28407,7 +28419,7 @@ "ko": "사용자가 액세스 권한을 부여하기를 기다리는 중 ...", "zh-chs": "正在等待用户授予访问权限...", "xloc": [ - "default.handlebars->25->694" + "default.handlebars->25->696" ] }, { @@ -28423,8 +28435,8 @@ "ru": "Услуга", "zh-chs": "唤醒", "xloc": [ - "default.handlebars->25->589", - "default.handlebars->25->608" + "default.handlebars->25->591", + "default.handlebars->25->610" ] }, { @@ -28443,8 +28455,8 @@ "xloc": [ "default-mobile.handlebars->9->404", "default-mobile.handlebars->9->417", - "default.handlebars->25->1283", - "default.handlebars->25->1311" + "default.handlebars->25->1285", + "default.handlebars->25->1313" ] }, { @@ -28462,7 +28474,7 @@ "zh-chs": "醒來", "xloc": [ "default-mobile.handlebars->9->249", - "default.handlebars->25->623" + "default.handlebars->25->625" ] }, { @@ -28496,7 +28508,7 @@ "ru": "Валлонский", "zh-chs": "瓦隆", "xloc": [ - "default.handlebars->25->1082" + "default.handlebars->25->1084" ] }, { @@ -28513,7 +28525,7 @@ "ru": "Слабый", "zh-chs": "弱", "xloc": [ - "default.handlebars->25->1135" + "default.handlebars->25->1137" ] }, { @@ -28550,8 +28562,8 @@ "ru": "Веб-сервер", "zh-chs": "網絡服務器", "xloc": [ - "default.handlebars->25->1782", - "default.handlebars->25->1783" + "default.handlebars->25->1784", + "default.handlebars->25->1785" ] }, { @@ -28568,7 +28580,7 @@ "ru": "Запросы веб-сервера", "zh-chs": "Web服務器請求", "xloc": [ - "default.handlebars->25->1784" + "default.handlebars->25->1786" ] }, { @@ -28585,7 +28597,7 @@ "ru": "Ретранслятор Web Socket", "zh-chs": "Web套接字中繼", "xloc": [ - "default.handlebars->25->1785" + "default.handlebars->25->1787" ] }, { @@ -28638,7 +28650,7 @@ "ru": "Уэльский", "zh-chs": "威爾士語", "xloc": [ - "default.handlebars->25->1083" + "default.handlebars->25->1085" ] }, { @@ -28655,7 +28667,7 @@ "ru": "Когда этот параметр включен, коды приглашений могут использоваться любым пользователем для присоединения устройств к этой группе устройств по следующей общедоступной ссылке:", "zh-chs": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈接將設備加入該設備組:", "xloc": [ - "default.handlebars->25->1332" + "default.handlebars->25->1334" ] }, { @@ -28673,7 +28685,7 @@ "zh-chs": "啟用後,每次登錄時,您都可以選擇向電子郵件帳戶接收登錄令牌,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->25->875" + "default.handlebars->25->877" ] }, { @@ -28690,7 +28702,7 @@ "ru": "Будет изменено при следующем входе в систему.", "zh-chs": "下次登錄時將更改。", "xloc": [ - "default.handlebars->25->1600" + "default.handlebars->25->1602" ] }, { @@ -28849,7 +28861,7 @@ "ru": "Исполняемый файл Win32", "zh-chs": "Win32可執行文件", "xloc": [ - "default.handlebars->25->662" + "default.handlebars->25->664" ] }, { @@ -28866,7 +28878,7 @@ "ru": "WinSCP", "zh-chs": "WinSCP", "xloc": [ - "default.handlebars->25->559" + "default.handlebars->25->561" ] }, { @@ -28918,7 +28930,7 @@ "ru": "Windows (32bit)", "zh-chs": "Windows(32位)", "xloc": [ - "default.handlebars->25->666" + "default.handlebars->25->668" ] }, { @@ -28935,7 +28947,7 @@ "ru": "Windows (64bit)", "zh-chs": "Windows(64位)", "xloc": [ - "default.handlebars->25->667" + "default.handlebars->25->669" ] }, { @@ -29163,7 +29175,7 @@ "ru": "Перенос строк: ВЫКЛ", "zh-chs": "包裝:關閉", "xloc": [ - "default.handlebars->25->780" + "default.handlebars->25->782" ] }, { @@ -29180,7 +29192,7 @@ "ru": "Перенос строк: ВКЛ", "zh-chs": "包裝:開", "xloc": [ - "default.handlebars->25->779" + "default.handlebars->25->781" ] }, { @@ -29197,7 +29209,7 @@ "ru": "Записать событие к этому устройству", "zh-chs": "為此設備寫一個事件", "xloc": [ - "default.handlebars->25->539" + "default.handlebars->25->541" ] }, { @@ -29251,7 +29263,7 @@ "ru": "XTerm", "zh-chs": "XTerm", "xloc": [ - "default.handlebars->25->553" + "default.handlebars->25->555" ] }, { @@ -29268,7 +29280,7 @@ "ru": "Кос", "zh-chs": "科薩", "xloc": [ - "default.handlebars->25->1084" + "default.handlebars->25->1086" ] }, { @@ -29285,7 +29297,7 @@ "ru": "Идиш", "zh-chs": "意第緒語", "xloc": [ - "default.handlebars->25->1085" + "default.handlebars->25->1087" ] }, { @@ -29360,7 +29372,7 @@ "ru": "YubiKey™ OTP", "zh-chs": "YubiKey™ OTP", "xloc": [ - "default.handlebars->25->887" + "default.handlebars->25->889" ] }, { @@ -29430,7 +29442,7 @@ "ru": "Зулусский", "zh-chs": "祖魯族", "xloc": [ - "default.handlebars->25->1086" + "default.handlebars->25->1088" ] }, { @@ -29643,7 +29655,7 @@ "ru": "\\\\'", "zh-chs": "\\\\'", "xloc": [ - "default.handlebars->25->1794" + "default.handlebars->25->1796" ] }, { @@ -29780,7 +29792,7 @@ "ru": "console.txt", "zh-chs": "console.txt", "xloc": [ - "default.handlebars->25->858" + "default.handlebars->25->860" ] }, { @@ -29798,7 +29810,7 @@ "zh-chs": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->25->1399" + "default.handlebars->25->1401" ] }, { @@ -29865,8 +29877,8 @@ "ru": "eventslist.csv", "zh-chs": "eventslist.csv", "xloc": [ - "default.handlebars->25->1408", - "default.handlebars->25->1413" + "default.handlebars->25->1410", + "default.handlebars->25->1415" ] }, { @@ -29883,8 +29895,8 @@ "ru": "eventslist.json", "zh-chs": "eventslist.json", "xloc": [ - "default.handlebars->25->1410", - "default.handlebars->25->1414" + "default.handlebars->25->1412", + "default.handlebars->25->1416" ] }, { @@ -29918,7 +29930,7 @@ "ru": "свободно", "zh-chs": "自由", "xloc": [ - "default.handlebars->25->1757" + "default.handlebars->25->1759" ] }, { @@ -30103,7 +30115,7 @@ "ru": "id, name, email, creation, lastlogin, groups, authfactors", "zh-chs": "id,名稱,電子郵件,創建,lastlogin,組,authfactors", "xloc": [ - "default.handlebars->25->1471" + "default.handlebars->25->1473" ] }, { @@ -30204,7 +30216,7 @@ "ru": "k max, пусто по умолчанию", "zh-chs": "k max,默认为空白", "xloc": [ - "default.handlebars->25->1495" + "default.handlebars->25->1497" ] }, { @@ -30240,7 +30252,7 @@ "zh-chs": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->25->1400" + "default.handlebars->25->1402" ] }, { @@ -30271,7 +30283,7 @@ "ru": "servererrors.txt", "zh-chs": "servererrors.txt", "xloc": [ - "default.handlebars->25->1150" + "default.handlebars->25->1152" ] }, { @@ -30288,7 +30300,7 @@ "ru": "servertrace.csv", "zh-chs": "servertrace.csv", "xloc": [ - "default.handlebars->25->1792" + "default.handlebars->25->1794" ] }, { @@ -30345,7 +30357,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->25->1770" + "default.handlebars->25->1772" ] }, { @@ -30362,7 +30374,7 @@ "ru": "time, source, message", "zh-chs": "時間,來源,訊息", "xloc": [ - "default.handlebars->25->1791" + "default.handlebars->25->1793" ] }, { @@ -30393,7 +30405,7 @@ "ru": "всего", "zh-chs": "總", "xloc": [ - "default.handlebars->25->1758" + "default.handlebars->25->1760" ] }, { @@ -30464,8 +30476,8 @@ "ru": "userlist.csv", "zh-chs": "userlist.csv", "xloc": [ - "default.handlebars->25->1467", - "default.handlebars->25->1472" + "default.handlebars->25->1469", + "default.handlebars->25->1474" ] }, { @@ -30482,8 +30494,8 @@ "ru": "userlist.json", "zh-chs": "userlist.json", "xloc": [ - "default.handlebars->25->1469", - "default.handlebars->25->1473" + "default.handlebars->25->1471", + "default.handlebars->25->1475" ] }, { @@ -30500,7 +30512,7 @@ "ru": "utc, время, тип, действие, пользователь, устройство, сообщение", "zh-chs": "utc,時間,類型,操作,用戶,設備,消息", "xloc": [ - "default.handlebars->25->1412" + "default.handlebars->25->1414" ] }, { @@ -30534,7 +30546,7 @@ "ru": "{0} Гб", "zh-chs": "{0} Gb", "xloc": [ - "default.handlebars->25->1379" + "default.handlebars->25->1381" ] }, { @@ -30551,8 +30563,8 @@ "ru": "{0} Kб", "zh-chs": "{0} Kb", "xloc": [ - "default.handlebars->25->1377", - "default.handlebars->25->1698" + "default.handlebars->25->1379", + "default.handlebars->25->1700" ] }, { @@ -30570,8 +30582,8 @@ "zh-chs": "{0} Mb", "xloc": [ "default-mobile.handlebars->9->369", - "default.handlebars->25->1378", - "default.handlebars->25->847" + "default.handlebars->25->1380", + "default.handlebars->25->849" ] }, { @@ -30589,7 +30601,7 @@ "zh-chs": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->9->364", - "default.handlebars->25->842" + "default.handlebars->25->844" ] }, { @@ -30606,7 +30618,7 @@ "ru": "{0} активных сессий", "zh-chs": "{0}個活動會話", "xloc": [ - "default.handlebars->25->1640" + "default.handlebars->25->1642" ] }, { @@ -30623,7 +30635,7 @@ "ru": "{0} байт", "zh-chs": "{0} b", "xloc": [ - "default.handlebars->25->1376" + "default.handlebars->25->1378" ] }, { @@ -30641,8 +30653,8 @@ "zh-chs": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->25->1387", - "default.handlebars->25->1713" + "default.handlebars->25->1389", + "default.handlebars->25->1715" ] }, { @@ -30659,14 +30671,14 @@ "ru": "{0} байт осталось", "zh-chs": "剩餘{0}個字節", "xloc": [ - "default.handlebars->25->1371" + "default.handlebars->25->1373" ] }, { "en": "{0} connections", "nl": "{0} verbindingen", "xloc": [ - "default.handlebars->25->704" + "default.handlebars->25->706" ] }, { @@ -30683,7 +30695,7 @@ "ru": "{0} гигабайт осталось", "zh-chs": "剩餘{0} GB", "xloc": [ - "default.handlebars->25->1374" + "default.handlebars->25->1376" ] }, { @@ -30700,7 +30712,7 @@ "ru": "{0} групп", "zh-chs": "{0}個群組", "xloc": [ - "default.handlebars->25->1605" + "default.handlebars->25->1607" ] }, { @@ -30748,7 +30760,7 @@ "ru": "{0} килобайт осталось", "zh-chs": "剩餘{0}千字節", "xloc": [ - "default.handlebars->25->1372" + "default.handlebars->25->1374" ] }, { @@ -30783,7 +30795,7 @@ "ru": "{0} мегабайт осталось", "zh-chs": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->25->1373" + "default.handlebars->25->1375" ] }, { @@ -30817,7 +30829,7 @@ "ru": "Еще {0} пользователей не показаны, используйте поиск для нахождения пользователей...", "zh-chs": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->25->1422" + "default.handlebars->25->1424" ] }, { @@ -30953,7 +30965,7 @@ "default-mobile.handlebars->9->161", "default-mobile.handlebars->9->164", "default-mobile.handlebars->9->167", - "default.handlebars->25->1426", + "default.handlebars->25->1428", "default.handlebars->25->211", "default.handlebars->25->214", "default.handlebars->25->217", @@ -31077,7 +31089,7 @@ "ru": "{0}k в 1 файле. {1}k максимум", "zh-chs": "{0} k合1檔案。最多{1} k", "xloc": [ - "default.handlebars->25->1381" + "default.handlebars->25->1383" ] }, { @@ -31094,7 +31106,7 @@ "ru": "{0}k в {1} файлах. {2}k максимум", "zh-chs": "{1}個文件中有{0}個。最多{2} k", "xloc": [ - "default.handlebars->25->1380" + "default.handlebars->25->1382" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index 02c78041..0ae83c9a 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -488,6 +488,7 @@ +
@@ -2646,8 +2647,8 @@ node.pwr = message.event.pwr; node.lastconnect = Date.now(); - // Clear sesssion information if needed - if ((node.conn & 1) == 0) { delete node.sessions; } + // Clear sesssion and battery information if needed + if ((node.conn & 1) == 0) { delete node.sessions; delete node.battery; } // Web page update masterUpdate(1 | 4 | 16); @@ -5007,7 +5008,31 @@ currentNode = node; // Device Notification - QV('p10deviceNotify', currentNode.sessions != null); + QV('p10deviceNotify', (currentNode.sessions != null) && ((currentNode.sessions.kvm != null) || (currentNode.sessions.terminal != null) || (currentNode.sessions.files != null))); + + // Device Battery + QV('p10deviceBattery', false); + if ((currentNode.sessions != null) && (currentNode.sessions.battery != null)) { + var bat = currentNode.sessions.battery; + if (bat.state == 'ac') { + QV('p10deviceBattery', true); + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge6'; + Q('p10deviceBattery').title = "Device is plugged-in"; + } else { + Q('p10deviceBattery').title = format("Device is battery powered, {0}%", bat.level); + if ((typeof bat.level == 'number') && (bat.level >= 0) && (bat.level <= 100)) { + QV('p10deviceBattery', true); + var lvl = (Math.floor((bat.level + 10) / 25) + 1); + if (lvl > 5) { lvl = 5; } + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge' + lvl; + } else { + QV('p10deviceBattery', true); + Q('p10deviceBattery').className = 'deviceBatteryLarge deviceBatteryLarge5'; + } + } + } else { + QV('p10deviceBattery', false); + } // Add node name var nname = EscapeHtml(node.name), nnameEx;