From 8c861499a0fccfce71b473e4c5cf70294aab3f7a Mon Sep 17 00:00:00 2001 From: si458 Date: Sat, 14 Dec 2024 16:13:03 +0000 Subject: [PATCH 1/4] add duo authentication support Signed-off-by: si458 --- meshcentral-config-schema.json | 20 + meshcentral.js | 5 +- meshuser.js | 32 + public/images/login/2fa-duo-48.png | Bin 0 -> 1480 bytes public/images/login/2fa-duo-96.png | Bin 0 -> 3403 bytes translate/translate.json | 3804 ++++++++++++++-------------- views/default.handlebars | 19 +- views/default3.handlebars | 25 +- views/login.handlebars | 17 + views/login2.handlebars | 25 +- webserver.js | 107 +- 11 files changed, 2161 insertions(+), 1893 deletions(-) create mode 100644 public/images/login/2fa-duo-48.png create mode 100644 public/images/login/2fa-duo-96.png diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index 3cd8bfc434..fc761195b7 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -1664,6 +1664,26 @@ "default": true, "description": "Set to false to disable SMS 2FA." }, + "duo2factor": { + "type": "object", + "properties": { + "integrationkey": { + "type": "string", + "default": "", + "description": "Integration key from Duo" + }, + "secretkey": { + "type": "string", + "default": "", + "description": "Secret key from Duo" + }, + "apihostname": { + "type": "string", + "default": "", + "description": "API Hostname from Duo" + } + } + }, "push2factor": { "type": "boolean", "default": true, diff --git a/meshcentral.js b/meshcentral.js index 2fd72eba62..1c2797017e 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -4183,7 +4183,7 @@ function mainStart() { // Check if Windows SSPI, LDAP, Passport and YubiKey OTP will be used var sspi = false; var ldap = false; - var passport = null; + var passport = []; var allsspi = true; var yubikey = false; var ssh = false; @@ -4204,7 +4204,7 @@ function mainStart() { if (mstsc == false) { config.domains[i].mstsc = false; } if (config.domains[i].ssh == true) { ssh = true; } if ((typeof config.domains[i].authstrategies == 'object')) { - if (passport == null) { passport = ['passport','connect-flash']; } // Passport v0.6.0 requires a patch, see https://github.com/jaredhanson/passport/issues/904 and include connect-flash here to display errors + if (passport.length == 0) { passport = ['passport','connect-flash']; } // Passport v0.6.0 requires a patch, see https://github.com/jaredhanson/passport/issues/904 and include connect-flash here to display errors if ((typeof config.domains[i].authstrategies.twitter == 'object') && (typeof config.domains[i].authstrategies.twitter.clientid == 'string') && (typeof config.domains[i].authstrategies.twitter.clientsecret == 'string') && (passport.indexOf('passport-twitter') == -1)) { passport.push('passport-twitter'); } if ((typeof config.domains[i].authstrategies.google == 'object') && (typeof config.domains[i].authstrategies.google.clientid == 'string') && (typeof config.domains[i].authstrategies.google.clientsecret == 'string') && (passport.indexOf('passport-google-oauth20') == -1)) { passport.push('passport-google-oauth20'); } if ((typeof config.domains[i].authstrategies.github == 'object') && (typeof config.domains[i].authstrategies.github.clientid == 'string') && (typeof config.domains[i].authstrategies.github.clientsecret == 'string') && (passport.indexOf('passport-github2') == -1)) { passport.push('passport-github2'); } @@ -4225,6 +4225,7 @@ function mainStart() { if (config.domains[i].sessionrecording != null) { sessionRecording = true; } if ((config.domains[i].passwordrequirements != null) && (config.domains[i].passwordrequirements.bancommonpasswords == true)) { wildleek = true; } if ((config.domains[i].newaccountscaptcha != null) && (config.domains[i].newaccountscaptcha !== false)) { captcha = true; } + if ((config.domains[i].passwordrequirements != null) && (typeof config.domains[i].passwordrequirements.duo2factor == 'object')) { passport.push('@duosecurity/duo_universal'); } } // Build the list of required modules diff --git a/meshuser.js b/meshuser.js index 9655e0ba33..fb726fb43e 100644 --- a/meshuser.js +++ b/meshuser.js @@ -3628,6 +3628,36 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use parent.parent.DispatchEvent(targets, obj, event); break; } + case 'otpduo': + { + // Do not allow this command if 2FA's are locked + if ((domain.passwordrequirements) && (domain.passwordrequirements.lock2factor == true)) return; + + // Do not allow this command when logged in using a login token + if (req.session.loginToken != null) break; + + if ((user.siteadmin != 0xFFFFFFFF) && ((user.siteadmin & 1024) != 0)) return; // If this account is settings locked, return here. + + // Check input + if (typeof command.enabled != 'boolean') return; + + // See if we really need to change the state + if ((command.enabled === true) && (user.otpduo != null)) return; + if ((command.enabled === false) && (user.otpduo == null)) return; + + // Change the duo 2FA of this user + if (command.enabled === true) { user.otpduo = {}; } else { delete user.otpduo; } + parent.db.SetUser(user); + ws.send(JSON.stringify({ action: 'otpduo', success: true, enabled: command.enabled })); // Report success + + // Notify change + var targets = ['*', 'server-users', user._id]; + if (user.groups) { for (var i in user.groups) { targets.push('server-users:' + i); } } + var event = { etype: 'user', userid: user._id, username: user.name, account: parent.CloneSafeUser(user), action: 'accountchange', msgid: command.enabled ? 160 : 161, msg: command.enabled ? "Enabled duo two-factor authentication." : "Disabled duo two-factor authentication.", domain: domain.id }; + if (db.changeStream) { event.noact = 1; } // If DB change stream is active, don't use this event to change the user. Another event will come. + parent.parent.DispatchEvent(targets, obj, event); + break; + } case 'otpauth-request': { // Do not allow this command if 2FA's are locked @@ -8224,11 +8254,13 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use var email2fa = (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.email2factor != false)) && (domain.mailserver != null)); var sms2fa = ((parent.parent.smsserver != null) && ((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.sms2factor != false))); var msg2fa = ((parent.parent.msgserver != null) && (parent.parent.msgserver.providers != 0) && ((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.msg2factor != false))); + var duo2fa = ((typeof domain.passwordrequirements != 'object') || (typeof domain.passwordrequirements.duo2factor == 'object')); var authFactorCount = 0; if (typeof user.otpsecret == 'string') { authFactorCount++; } // Authenticator time factor if (email2fa && (user.otpekey != null)) { authFactorCount++; } // EMail factor if (sms2fa && (user.phone != null)) { authFactorCount++; } // SMS factor if (msg2fa && (user.msghandle != null)) { authFactorCount++; } // Messaging factor + if (duo2fa && (user.otpduo != null)) { authFactorCount++; } // Duo authentication factor if (user.otphkeys != null) { authFactorCount += user.otphkeys.length; } // FIDO hardware factor if ((authFactorCount > 0) && (user.otpkeys != null)) { authFactorCount++; } // Backup keys return authFactorCount; diff --git a/public/images/login/2fa-duo-48.png b/public/images/login/2fa-duo-48.png new file mode 100644 index 0000000000000000000000000000000000000000..0c5d0afdbb678846943aae4b7277c4c02275fc16 GIT binary patch literal 1480 zcmV;(1vmPMP)A$_>u1vEhd&gkl@z!s`PSx$qyyC8h%x&`d?pwJyVZ1=} z`tfqZRIc2d&FR5ix;&WEg0kMB-tpCL!A-N?qWJvwe8*qh@YK`n$$Q6My5g+c@YCn? z;F;5dV!T3&&U2mBiG#{%aKcfc*NueAYGJ%Val=%n*_EHxi;T{6V!T6NyFXsLK5D;A zY{5@uy+vHQI$pXxUb{VDyFXvMK5M{CkkEL-<+8its=DH-yyC06;i{n4j9j@oY`{#k z-=V(buDs){x#6dU%WARRps(GYu-%@i+Lvd(Npr(hq1TMN;;VGTR$I9`T)I29;HUrp z|FGSkV7ozW!A$@E{-D;1@%Zle`}Xzv^8Ee#==I}YyFIkuq_Ewf%ILjWxHoCPN%Z>g z{r>!$)P?5s;q3P4>GkF6_2u62*IKza%;~_;>&B$mkX^bu^7`)l{`;HMgyr+#>GkCA z`0U;A)~DH&{{Q~3-JM*yJM;SRY`{zH_vzT~(DnQCZ^2Nt-=>z*ebMX3o79Gn&v(G& zu({!=jm~oH_vi2T>(=efjm~qu;;g~sv17eNlhJ+2=e@$@w87-G!Q`{W=D3W`bL#fy z*6qy3=DEt~zL3v(soI$R{{8Xz?eqEY`TX~O$Ya#(%KiQPjLvnY*^~46@!9UtShzNz z){ENj(%A0L>Gk7izDe%)>yFQM-tg9q&UNnh>XOiV_WShf_UG&N=JfjV_xtsu*pPF? zRq^@loYaNq^y1&~*sI%_^!f4d`0do}%Ztr&Yrsyz<+b+u^!ohy=k(!hz)g+Lc7DiY zl+k{a(S4QCf0faGmePQb(0PBzWs}i-D)9OF0007yNklV>ayBk*9tK`MegQ!tVG&U=aV|Cj8n`4RrKDwK<>VCZI`#dAbMq~L%nAu%aAIXNXY%`BadJtH$KIXOEg*E}!3z^;&iy(qo7q_otx zth@*o+RPP|RWMK;Q&U?9X4N+|HZ?W3u=%%IL!{bbnV>qDE!*K5syaHmxz&*4=ow|A3X+!{gbCl@7-&7#@u)y*qyV{fCbnmNyT)G&Mc8`4dnInwVHVTYdTZ_3O9WpScu3 zhOk9e6t5N7@%`)9A3uR9TY=-(?;XD)6_{b_8Q2&@6+}T`yC5t*awxF)1H}};!6GOm isvrcD8U>?ZzyJU%s#;l%F+Ons0000f6$ zu4%BuYg+uW#ODJugZQOAUaM}YIS64o@F^}}Q10}Y#((Q4|wNb~EEkVP! z6U9~FW%dB1*Hg`m^uae`qKZ)<#E&6Xi7aeKB@qpI1WTSdB^6dONM`(O=mJuS=XsEQ&G(gUd%Y4i;+_ zJi*HBlhHbrSqc(<+~d^@G{ZCip?2KoFyK%vXxFfG-f<}fZfW!gY>6}$i;X&J_bhRX zMP&F@s7`Pk4p!NR=i(Ay4`PEdM`R(=F{PgJ2F)x zs;u@7;=Nd*O4{E>_)WM|T1klURp-xp;y8#Fs_1+C7N=Hjll@F&{~!H%^lp6V6Qjmm z#-3mTs3sS`eK+i*E-@k0EG!oOxx65!>n3qzW2?+F9jDuK`>E!iGCElkZBb0|l%b77 zPAQ0>biNwny;7eG8+9Ny-tFQg(ApYgDH5huT@%NHj}9;7*Gduc!j6#QLRRO$g|`Cq ztmEoQ9Ww-_Tl+5Qp2WFPzVjlVnZ9^7#d3mjvy?N5J$(u4no7g3q*0Y`J^b5xk(ls% z-Um&zpWR^RNecLlk}B+!ldQH{&qnr7d0lcKt`dbvt9zg2Jtq_|a{1U=+y~?5T`l)S zc$>z8Hf0=m2_H#{@-L=p;&b*{eqH2-agaYZCLsDDTp^TS#@vvPNOKbRTnVyXigLimo~=K~mKDW6z>2wL`m?v5j#Q}YM{DmJT(&obNI}hu689a# zds_}K-+txsCRD6+eI%XT@x!M_LjnDdMCP*tiZyaw5<9xCFxL$r^_G;6hz{p`%c zi+lw@on2M972Np5Cc+8^vL|u5gc;B(2URWIBu3=;a3~{A*x+C$s!m1%n|om;mls)$ zKr+2MUv#l+{!rycZ{Vr@_4xt{bMLCGK}qsw618v`6TFKPBtUDs$Jm6$y_WRGjF;|V zifH_k!q&OV!UIDY_iIzIF^ugDZ5&#Xz?5X1ID5KB)h~ZKC`c$5;ZP_}u2rM+M$ATb zfmJC$gD)b4g-K$dW~*Yaiw)M39T_d<_%eANO$vS|fFK|P@oF!kgzH?MP z(3-K(pc4d#iZT1s6^Qp40)@o#gf(vt5N0Y7C)vzu&R6m>gVJ+5{hF#*t94X-Uc4OqVm$Fvr1Qu zLiAh|e#UP4hVvS=`8s#M|NLm8l&kxg?^b6qXZNCm?%7>!YX9E((>f$J9VBRPx(bWo z|F)!*usugdyV1R$wC02u^I4zkkou+GhC!&|pegDBK#5yMT9M3v9snXAUS_vqR2AOG zsyEEN+6q?N@mmtzK0A#5ghiyZx}SHgz4;JUBY_43nlhX1*-IF)eIVh# zw1$x>o_O}GPY3ydFz9bGNGiX@xOx1w zf%Wp$(tsw5eC8oMz@y`^uTG}fWp+~_W+Gf?L;k86IUiX!3R|Fa0-A*RL40RY&+GF7 zHBYft8Bi$ivXaMmFQFF#ao%CR zn;tW>1-)!hDsgY6?w5!l9&Je8uj&r!FJz7DualX!v3h{vz%*rUpP#NyW(Y}IGP;|l zrz_D4B^1mD;k1p5*fSMMrreJwf^ba#(y?Qz+K?TauPH~JUa!cCrM7JN+r;D}d5qpm zQ+Py=YPp5h#%Vkl6WM93T}(EF#JcbpZ6PN*(sHPAEUfSEq4JaichNuV$#IzPw)r&i zG$Ybc##)1L>!vDZ29M`B9d)RbmX4^H)8Jb1Y`#N6JLVBzjMSZVZs+b2=El)YXQips zxKqxsh3a&;F>Rlrwf$(xcjmsf%4i)fF*rDjc~)TcJ4yw!)c~e;WYr(;-A5%yLjlp> zlMaA(C4-*>{2N@7tkA{XoHJb|$~8CLsGlLHkEV_(-Dk0x5q`wS)4uyJFG-}63);VZ z>sIE%ZZY^ocSM^TJj_;=Y`P5q!f4DC<4P^@?KE-PiJB3u+6593 zJ+Puflo@!WU|B}%3cU;a=@jg1E}-R>p)?@Xe_|E}JT{2VP^L9bGqqlDJAOj6V9F+3 zbtf5*!`43us5@Hyo4}Sx&f*$bPaD_$?QQ>^?&nC4sW*gHfLC=( z1GmI<>7C5dJ#TBG?VkNHyC#TxWGSLPl%B#bN!<4)l5OIa2?|Cd8?I_|9xH!emarxh z-B9&er3n>%u@Mx+9?q};rvt>#j|E50F-ef)0!;SXWxDb9c35ht03e&JIez%AwUt#SjR89At8Xkw1Uxxo2UsqubBcT&pE+<@Bpyu- zMxqix(X8_si(eMdZ38ts>&b#j-gy zy}Fo^fll?H`K<41#e~lZmt0 zxqEXi*fXZo4i>b8YwLlo9xV8I;V0kt3LV1i9-gUh&AIBd6IjoGrpEl$73gD4ir<6ia{fa5*8{0E9h_@I+!1p$H zQ;2dicJin{!ez5~Fv!o9=v~@um6s;YyVQo^5 z9lSf##H~k1H#|ksi)C{sjDxM8<#AN#s4V)RK+b+TR-ta%!g|<@CohI17uu^5$0bU% zodw*T&Nm)^6Q9hb<2FJiaARO))P1Ky-bR>N&#_mJLVMl9_vJkqq#V!th=(`YixLhr wR!L60swyfr>AJcV5=R058)o=_&~d?c(-o#3!KtS57m~47->2204", - "default.handlebars->47->2206" + "default.handlebars->47->2207", + "default.handlebars->47->2209" ] }, { @@ -356,7 +356,7 @@ "zh-cht": " 可以使用密碼提示,但不建議使用。", "uk": " Підказку для пароля можна використати, але не рекомендується.", "xloc": [ - "default.handlebars->47->2080" + "default.handlebars->47->2083" ] }, { @@ -385,8 +385,8 @@ "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "uk": " Користувачам потрібно підключитися хоча б раз до цього серверу, щоб мати можливість бути доданими у групи пристроїв.", "xloc": [ - "default.handlebars->47->2328", - "default.handlebars->47->2908" + "default.handlebars->47->2331", + "default.handlebars->47->2913" ] }, { @@ -1006,7 +1006,7 @@ "zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。", "uk": "* 8 символів, 1 велика літера, 1 маленька літера, 1 цифра, 1 спеціальний знак.", "xloc": [ - "default.handlebars->47->2288", + "default.handlebars->47->2291", "default.handlebars->47->528" ] }, @@ -1112,16 +1112,16 @@ "zh-chs": ",", "zh-cht": ",", "xloc": [ - "default-mobile.handlebars->11->1011", - "default-mobile.handlebars->11->804", - "default-mobile.handlebars->11->806", - "default-mobile.handlebars->11->808", + "default-mobile.handlebars->11->1012", + "default-mobile.handlebars->11->805", + "default-mobile.handlebars->11->807", + "default-mobile.handlebars->11->809", "default.handlebars->47->1007", "default.handlebars->47->1647", "default.handlebars->47->1649", "default.handlebars->47->1651", - "default.handlebars->47->2404", - "default.handlebars->47->2681" + "default.handlebars->47->2407", + "default.handlebars->47->2686" ] }, { @@ -1293,7 +1293,7 @@ "zh-cht": ",MQTT在線", "uk": ", MQTT працює", "xloc": [ - "default-mobile.handlebars->11->913", + "default-mobile.handlebars->11->914", "default.handlebars->47->1757" ] }, @@ -1324,7 +1324,7 @@ "uk": ", Нема Погодження", "xloc": [ "default.handlebars->47->1102", - "default.handlebars->47->2246" + "default.handlebars->47->2249" ] }, { @@ -1354,7 +1354,7 @@ "uk": ", Запит на погодження", "xloc": [ "default.handlebars->47->1103", - "default.handlebars->47->2247" + "default.handlebars->47->2250" ] }, { @@ -1412,7 +1412,7 @@ "uk": ", Повторюється щодня", "xloc": [ "default.handlebars->47->1099", - "default.handlebars->47->2243" + "default.handlebars->47->2246" ] }, { @@ -1442,7 +1442,7 @@ "uk": ", Повторюється щотижня", "xloc": [ "default.handlebars->47->1100", - "default.handlebars->47->2244" + "default.handlebars->47->2247" ] }, { @@ -1613,7 +1613,7 @@ "uk": ", Панель Засобів", "xloc": [ "default.handlebars->47->1104", - "default.handlebars->47->2248" + "default.handlebars->47->2251" ] }, { @@ -1669,7 +1669,7 @@ "uk": ", Тільки перегляд стільниці", "xloc": [ "default.handlebars->47->1101", - "default.handlebars->47->2245" + "default.handlebars->47->2248" ] }, { @@ -2052,8 +2052,8 @@ "default-mobile.handlebars->11->352", "default-mobile.handlebars->11->706", "default.handlebars->47->1539", - "default.handlebars->47->2470", - "default.handlebars->47->3144", + "default.handlebars->47->2473", + "default.handlebars->47->3150", "sharing.handlebars->11->50" ] }, @@ -2238,7 +2238,7 @@ "zh-cht": "1個活躍時段", "uk": "1 активна сесія", "xloc": [ - "default.handlebars->47->3002" + "default.handlebars->47->3008" ] }, { @@ -2267,9 +2267,9 @@ "zh-cht": "1個位元組", "uk": "1 байт", "xloc": [ - "default-mobile.handlebars->11->1055", + "default-mobile.handlebars->11->1056", "default-mobile.handlebars->11->362", - "default.handlebars->47->2494", + "default.handlebars->47->2497", "download.handlebars->3->1", "download2.handlebars->5->1", "sharing.handlebars->11->101" @@ -2391,7 +2391,7 @@ "zh-cht": "1群", "uk": "1 група", "xloc": [ - "default.handlebars->47->2958" + "default.handlebars->47->2963" ] }, { @@ -2452,7 +2452,7 @@ "uk": "1 хвилина", "xloc": [ "default.handlebars->47->1212", - "default.handlebars->47->2045" + "default.handlebars->47->2048" ] }, { @@ -2541,7 +2541,7 @@ "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "uk": "ще 1 користувача не показано, використовуйте поле пошуку для перегляду користувачів...", "xloc": [ - "default.handlebars->47->2713" + "default.handlebars->47->2718" ] }, { @@ -2775,7 +2775,7 @@ "default-mobile.handlebars->11->431", "default-mobile.handlebars->11->435", "default-mobile.handlebars->11->439", - "default.handlebars->47->2717", + "default.handlebars->47->2722", "default.handlebars->47->447", "default.handlebars->47->450", "default.handlebars->47->454", @@ -2992,7 +2992,7 @@ "uk": "10 хвилин", "xloc": [ "default.handlebars->47->1214", - "default.handlebars->47->2047" + "default.handlebars->47->2050" ] }, { @@ -3197,7 +3197,7 @@ "uk": "12 годин", "xloc": [ "default.handlebars->47->1222", - "default.handlebars->47->2055" + "default.handlebars->47->2058" ] }, { @@ -3340,7 +3340,7 @@ "uk": "15 хвилин", "xloc": [ "default.handlebars->47->1215", - "default.handlebars->47->2048" + "default.handlebars->47->2051" ] }, { @@ -3370,7 +3370,7 @@ "uk": "16 годин", "xloc": [ "default.handlebars->47->1223", - "default.handlebars->47->2056" + "default.handlebars->47->2059" ] }, { @@ -3516,7 +3516,7 @@ "uk": "2 дні", "xloc": [ "default.handlebars->47->1225", - "default.handlebars->47->2058" + "default.handlebars->47->2061" ] }, { @@ -3546,7 +3546,7 @@ "uk": "2 години", "xloc": [ "default.handlebars->47->1219", - "default.handlebars->47->2052" + "default.handlebars->47->2055" ] }, { @@ -3753,7 +3753,7 @@ "uk": "24 години", "xloc": [ "default.handlebars->47->1224", - "default.handlebars->47->2057" + "default.handlebars->47->2060" ] }, { @@ -3838,7 +3838,7 @@ "zh-cht": "2FA備份代碼已清除", "uk": "ДФА резервні коди очищено", "xloc": [ - "default.handlebars->47->2607" + "default.handlebars->47->2610" ] }, { @@ -3897,7 +3897,7 @@ "zh-cht": "第二個因素", "uk": "Двофакторний", "xloc": [ - "default.handlebars->47->3181" + "default.handlebars->47->3187" ] }, { @@ -3926,8 +3926,8 @@ "zh-cht": "啟用第二因素身份驗證", "uk": "Двофакторна автентифікація увімкнена", "xloc": [ - "default.handlebars->47->2731", - "default.handlebars->47->2983" + "default.handlebars->47->2736", + "default.handlebars->47->2989" ] }, { @@ -4098,7 +4098,7 @@ "uk": "30 хвилин", "xloc": [ "default.handlebars->47->1216", - "default.handlebars->47->2049" + "default.handlebars->47->2052" ] }, { @@ -4127,7 +4127,7 @@ "zh-cht": "32 位", "uk": "32-біта", "xloc": [ - "default-mobile.handlebars->11->743", + "default-mobile.handlebars->11->744", "default.handlebars->47->1604" ] }, @@ -4214,7 +4214,7 @@ "uk": "4 дні", "xloc": [ "default.handlebars->47->1226", - "default.handlebars->47->2059" + "default.handlebars->47->2062" ] }, { @@ -4244,7 +4244,7 @@ "uk": "4 години", "xloc": [ "default.handlebars->47->1220", - "default.handlebars->47->2053" + "default.handlebars->47->2056" ] }, { @@ -4391,7 +4391,7 @@ "uk": "45 хвилин", "xloc": [ "default.handlebars->47->1217", - "default.handlebars->47->2050" + "default.handlebars->47->2053" ] }, { @@ -4450,7 +4450,7 @@ "uk": "5 хвилин", "xloc": [ "default.handlebars->47->1213", - "default.handlebars->47->2046" + "default.handlebars->47->2049" ] }, { @@ -4659,7 +4659,7 @@ "uk": "60 хвилин", "xloc": [ "default.handlebars->47->1218", - "default.handlebars->47->2051" + "default.handlebars->47->2054" ] }, { @@ -4745,7 +4745,7 @@ "zh-chs": "64 位", "zh-cht": "64 位", "xloc": [ - "default-mobile.handlebars->11->745", + "default-mobile.handlebars->11->746", "default.handlebars->47->1606" ] }, @@ -4937,7 +4937,7 @@ "zh-cht": "7天", "uk": "7 днів", "xloc": [ - "default.handlebars->47->2060" + "default.handlebars->47->2063" ] }, { @@ -5027,7 +5027,7 @@ "uk": "8 годин", "xloc": [ "default.handlebars->47->1221", - "default.handlebars->47->2054", + "default.handlebars->47->2057", "default.handlebars->47->556", "default.handlebars->47->570" ] @@ -5355,7 +5355,7 @@ "pl": "Serwery DNS", "uk": "DNS Сервери", "xloc": [ - "default-mobile.handlebars->11->807", + "default-mobile.handlebars->11->808", "default.handlebars->47->1650" ] }, @@ -5518,7 +5518,7 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->11->510", - "default.handlebars->47->2224", + "default.handlebars->47->2227", "default.handlebars->47->436", "default.handlebars->47->916" ] @@ -5645,7 +5645,7 @@ "zh-chs": "操作系统", "zh-cht": "AMT操作系統", "xloc": [ - "default.handlebars->47->3326" + "default.handlebars->47->3332" ] }, { @@ -5673,7 +5673,7 @@ "zh-chs": "AMT-Redir", "zh-cht": "AMT-Redir", "xloc": [ - "default.handlebars->47->3188" + "default.handlebars->47->3194" ] }, { @@ -5701,7 +5701,7 @@ "zh-chs": "AMT-WSMAN", "zh-cht": "AMT-WSMAN", "xloc": [ - "default.handlebars->47->3187" + "default.handlebars->47->3193" ] }, { @@ -5719,7 +5719,7 @@ "pl": "Wersja APK MeshAgent", "uk": "MeshAgent версія APK", "xloc": [ - "default-mobile.handlebars->11->964", + "default-mobile.handlebars->11->965", "default.handlebars->47->647" ] }, @@ -5914,8 +5914,8 @@ "zh-chs": "影音", "zh-cht": "視聽", "xloc": [ - "default-mobile.handlebars->11->750", - "default-mobile.handlebars->11->752", + "default-mobile.handlebars->11->751", + "default-mobile.handlebars->11->753", "default.handlebars->47->935", "default.handlebars->47->937" ] @@ -5946,7 +5946,7 @@ "zh-cht": "拒絕存取", "uk": "Доступ Відмовлено", "xloc": [ - "default-mobile.handlebars->11->914", + "default-mobile.handlebars->11->915", "default.handlebars->47->1758" ] }, @@ -6036,7 +6036,7 @@ "zh-cht": "存取伺服器檔案", "uk": "Доступ до файлів серверу", "xloc": [ - "default.handlebars->47->2914" + "default.handlebars->47->2919" ] }, { @@ -6163,9 +6163,9 @@ "default-mobile.handlebars->11->479", "default-mobile.handlebars->11->90", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->47->2089", - "default.handlebars->47->2091", - "default.handlebars->47->3380", + "default.handlebars->47->2092", + "default.handlebars->47->2094", + "default.handlebars->47->3386", "default.handlebars->47->729", "default.handlebars->47->876", "default.handlebars->47->878" @@ -6197,8 +6197,8 @@ "zh-cht": "帳號設定", "uk": "Налаштування Акаунту", "xloc": [ - "default-mobile.handlebars->11->1022", - "default.handlebars->47->3251" + "default-mobile.handlebars->11->1023", + "default.handlebars->47->3257" ] }, { @@ -6271,7 +6271,7 @@ "pl": "Konto zmienione di synchronizacji z danymi LDAP.", "uk": "Акаунт змінено на синхронізацію з даними LDAP.", "xloc": [ - "default.handlebars->47->2668" + "default.handlebars->47->2671" ] }, { @@ -6300,7 +6300,7 @@ "zh-cht": "帳戶已更改:{0}", "uk": "Акаунт змінено: {0}", "xloc": [ - "default.handlebars->47->2580" + "default.handlebars->47->2583" ] }, { @@ -6329,7 +6329,7 @@ "zh-cht": "創建帳戶,電子郵件為{0}", "uk": "Акаунт створено з е-поштою {0}", "xloc": [ - "default.handlebars->47->2579" + "default.handlebars->47->2582" ] }, { @@ -6358,7 +6358,7 @@ "zh-cht": "已創建帳戶,名稱為 {0}。", "uk": "Акаунт створено із іменем {0}.", "xloc": [ - "default.handlebars->47->2642" + "default.handlebars->47->2645" ] }, { @@ -6387,7 +6387,7 @@ "zh-cht": "帳戶已創建,用戶名是{0}", "uk": "Акаунт створено із іменем користувача {0}", "xloc": [ - "default.handlebars->47->2578" + "default.handlebars->47->2581" ] }, { @@ -6418,8 +6418,8 @@ "xloc": [ "default-mobile.handlebars->11->67", "default.handlebars->47->212", - "default.handlebars->47->2733", - "default.handlebars->47->2911" + "default.handlebars->47->2738", + "default.handlebars->47->2916" ] }, { @@ -6448,8 +6448,8 @@ "zh-cht": "達到帳戶限制。", "uk": "Досягнуто обмеження акаунту.", "xloc": [ - "default-mobile.handlebars->11->1034", - "default.handlebars->47->3263", + "default-mobile.handlebars->11->1035", + "default.handlebars->47->3269", "login-mobile.handlebars->5->6", "login.handlebars->5->8", "login2.handlebars->7->207" @@ -6512,7 +6512,7 @@ "zh-cht": "帳號登錄", "uk": "Вхід до акаунту", "xloc": [ - "default.handlebars->47->2515" + "default.handlebars->47->2518" ] }, { @@ -6541,7 +6541,7 @@ "zh-cht": "從 {0}、{1}、{2} 登錄帳戶", "uk": "Вхід до акаунту з {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2621" + "default.handlebars->47->2624" ] }, { @@ -6555,7 +6555,7 @@ "pl": "Zapisy logowania tokenami użytkownika", "uk": "Записи токенів входу до акаунту", "xloc": [ - "default.handlebars->47->3230" + "default.handlebars->47->3236" ] }, { @@ -6584,7 +6584,7 @@ "zh-cht": "帳戶登出", "uk": "Вихід з акаунту", "xloc": [ - "default.handlebars->47->2516" + "default.handlebars->47->2519" ] }, { @@ -6644,7 +6644,7 @@ "zh-cht": "帳戶密碼已更改:{0}", "uk": "Пароль до акаунту змінено: {0}", "xloc": [ - "default.handlebars->47->2588" + "default.handlebars->47->2591" ] }, { @@ -6673,7 +6673,7 @@ "zh-cht": "帳戶已刪除", "uk": "Акаунт видалено", "xloc": [ - "default.handlebars->47->2577" + "default.handlebars->47->2580" ] }, { @@ -6731,7 +6731,7 @@ "zh-cht": "指令", "uk": "Дія", "xloc": [ - "default-mobile.handlebars->11->920", + "default-mobile.handlebars->11->921", "default.handlebars->47->1764", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] @@ -6915,7 +6915,7 @@ "zh-cht": "如果ACM失敗,則激活到CCM", "uk": "Активувати CCM, якщо ACM зазнало невдачі", "xloc": [ - "default.handlebars->47->2279" + "default.handlebars->47->2282" ] }, { @@ -6946,7 +6946,7 @@ "xloc": [ "default-mobile.handlebars->11->505", "default-mobile.handlebars->11->507", - "default-mobile.handlebars->11->816", + "default-mobile.handlebars->11->817", "default.handlebars->47->1659", "default.handlebars->47->909", "default.handlebars->47->911" @@ -7008,7 +7008,7 @@ "uk": "Спільний доступ до пристрою активний", "xloc": [ "default.handlebars->47->1084", - "default.handlebars->47->2228" + "default.handlebars->47->2231" ] }, { @@ -7037,7 +7037,7 @@ "zh-cht": "活動登錄令牌", "uk": "Активні Токени Входу", "xloc": [ - "default.handlebars->47->2120" + "default.handlebars->47->2123" ] }, { @@ -7066,7 +7066,7 @@ "zh-cht": "活躍用戶", "uk": "Активний Користувач", "xloc": [ - "default-mobile.handlebars->11->777", + "default-mobile.handlebars->11->778", "default.handlebars->47->962" ] }, @@ -7096,7 +7096,7 @@ "zh-cht": "活躍用戶", "uk": "Користувачі Активні", "xloc": [ - "default-mobile.handlebars->11->776", + "default-mobile.handlebars->11->777", "default.handlebars->47->961" ] }, @@ -7235,7 +7235,7 @@ "zh-cht": "新增代理", "uk": "Додати Агента", "xloc": [ - "default.handlebars->47->2218", + "default.handlebars->47->2221", "default.handlebars->47->488" ] }, @@ -7291,9 +7291,9 @@ "zh-cht": "新增裝置", "uk": "Додати Пристрій", "xloc": [ - "default.handlebars->47->2222", - "default.handlebars->47->2886", - "default.handlebars->47->3080", + "default.handlebars->47->2225", + "default.handlebars->47->2891", + "default.handlebars->47->3086", "default.handlebars->47->492" ] }, @@ -7352,9 +7352,9 @@ "zh-cht": "新增裝置群", "uk": "Додати Групу Пристроїв", "xloc": [ - "default.handlebars->47->2365", - "default.handlebars->47->2880", - "default.handlebars->47->3068", + "default.handlebars->47->2368", + "default.handlebars->47->2885", + "default.handlebars->47->3074", "default.handlebars->47->389" ] }, @@ -7384,7 +7384,7 @@ "zh-cht": "新增裝置群權限", "uk": "Додайте Дозволи Групи Пристроїв", "xloc": [ - "default.handlebars->47->2362" + "default.handlebars->47->2365" ] }, { @@ -7413,8 +7413,8 @@ "zh-cht": "新增裝置權限", "uk": "Додати Дозволи Пристрою", "xloc": [ - "default.handlebars->47->2367", - "default.handlebars->47->2369" + "default.handlebars->47->2370", + "default.handlebars->47->2372" ] }, { @@ -7582,7 +7582,7 @@ "zh-cht": "新增成員身份", "uk": "Додати Приналежність", "xloc": [ - "default.handlebars->47->3100" + "default.handlebars->47->3106" ] }, { @@ -7666,8 +7666,8 @@ "zh-cht": "新增安全密鑰", "uk": "Додати Ключ Безпеки", "xloc": [ - "default.handlebars->47->1835", - "default.handlebars->47->1836", + "default.handlebars->47->1838", + "default.handlebars->47->1839", "default.handlebars->47->243", "default.handlebars->47->245", "default.handlebars->47->248", @@ -7700,7 +7700,7 @@ "zh-cht": "新增用戶", "uk": "Додати Користувача", "xloc": [ - "default-mobile.handlebars->11->946", + "default-mobile.handlebars->11->947", "default.handlebars->47->1076" ] }, @@ -7730,7 +7730,7 @@ "zh-cht": "新增用戶裝置權限", "uk": "Додати Дозволи для Пристрою Користувача", "xloc": [ - "default.handlebars->47->2372" + "default.handlebars->47->2375" ] }, { @@ -7760,9 +7760,9 @@ "uk": "Додати Групу Користувачів", "xloc": [ "default.handlebars->47->1077", - "default.handlebars->47->2212", - "default.handlebars->47->2364", - "default.handlebars->47->3074" + "default.handlebars->47->2215", + "default.handlebars->47->2367", + "default.handlebars->47->3080" ] }, { @@ -7791,7 +7791,7 @@ "zh-cht": "新增用戶群裝置權限", "uk": "Додати Дозволи на Пристрої Групи Користувачів", "xloc": [ - "default.handlebars->47->2374" + "default.handlebars->47->2377" ] }, { @@ -7820,7 +7820,7 @@ "zh-cht": "將用戶新增到裝置群", "uk": "Додати Користувача до Групи Пристроїв", "xloc": [ - "default-mobile.handlebars->11->987" + "default-mobile.handlebars->11->988" ] }, { @@ -7875,8 +7875,8 @@ "zh-cht": "新增用戶", "uk": "Додати Користувачів", "xloc": [ - "default.handlebars->47->2211", - "default.handlebars->47->2875" + "default.handlebars->47->2214", + "default.handlebars->47->2880" ] }, { @@ -7905,7 +7905,7 @@ "zh-cht": "將用戶新增到裝置群", "uk": "Додати Користувачів до Групи Пристроїв", "xloc": [ - "default.handlebars->47->2361" + "default.handlebars->47->2364" ] }, { @@ -7934,7 +7934,7 @@ "zh-cht": "將用戶新增到用戶群", "uk": "Додати Користувачів до Групи Користувачів", "xloc": [ - "default.handlebars->47->2910" + "default.handlebars->47->2915" ] }, { @@ -8134,7 +8134,7 @@ "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "uk": "Додати новий комп'ютер до цієї групи пристроїв, встановивши MeshAgent.", "xloc": [ - "default.handlebars->47->2217", + "default.handlebars->47->2220", "default.handlebars->47->487" ] }, @@ -8164,7 +8164,7 @@ "zh-cht": "添加位於本地網絡上的設備。", "uk": "Додати пристрій, що знаходиться в локальній мережі.", "xloc": [ - "default.handlebars->47->2221", + "default.handlebars->47->2224", "default.handlebars->47->491" ] }, @@ -8281,7 +8281,7 @@ "zh-cht": "添加了身份驗證應用程序", "uk": "Додано застосунок автентифікації", "xloc": [ - "default.handlebars->47->2604" + "default.handlebars->47->2607" ] }, { @@ -8310,7 +8310,7 @@ "zh-cht": "已將設備共享{0}從{1}添加到{2}", "uk": "Додано поширення пристрою {0} від {1} до {2}", "xloc": [ - "default.handlebars->47->2615" + "default.handlebars->47->2618" ] }, { @@ -8339,7 +8339,7 @@ "zh-cht": "添加了每天重複的設備共享 {0}。", "uk": "Додано поширення пристрою {0}, із щоденною переактивацією.", "xloc": [ - "default.handlebars->47->2652" + "default.handlebars->47->2655" ] }, { @@ -8368,7 +8368,7 @@ "zh-cht": "添加了每週重複的設備共享 {0}。", "uk": "Додано поширення пристрою {0}, із щотижневою переактивацією.", "xloc": [ - "default.handlebars->47->2653" + "default.handlebars->47->2656" ] }, { @@ -8397,7 +8397,7 @@ "zh-cht": "添加了無限時間的設備共享 {0}。", "uk": "Додано поширення пристрою {0} без обмеження часу.", "xloc": [ - "default.handlebars->47->2645" + "default.handlebars->47->2648" ] }, { @@ -8426,8 +8426,8 @@ "zh-cht": "已將設備{0}添加到設備組{1}", "uk": "Пристрій {0} додано до групи пристроїв {1}", "xloc": [ - "default.handlebars->47->2571", - "default.handlebars->47->2598" + "default.handlebars->47->2574", + "default.handlebars->47->2601" ] }, { @@ -8456,7 +8456,7 @@ "zh-cht": "添加了登錄令牌", "uk": "Додано токен лоґіну", "xloc": [ - "default.handlebars->47->2629" + "default.handlebars->47->2632" ] }, { @@ -8485,7 +8485,7 @@ "zh-cht": "增加推送通知認證設備", "uk": "На пристрій додано автентифікацію через push-сповіщення", "xloc": [ - "default.handlebars->47->2627" + "default.handlebars->47->2630" ] }, { @@ -8514,7 +8514,7 @@ "zh-cht": "添加了安全密鑰", "uk": "Додано Ключ Безпеки", "xloc": [ - "default.handlebars->47->2609" + "default.handlebars->47->2612" ] }, { @@ -8543,7 +8543,7 @@ "zh-cht": "已將用戶組{0}添加到設備組{1}", "uk": "Групу користувачів {0} додано до групи пристроїв {1}", "xloc": [ - "default.handlebars->47->2582" + "default.handlebars->47->2585" ] }, { @@ -8572,8 +8572,8 @@ "zh-cht": "已將用戶{0}添加到用戶組{1}", "uk": "Додано користувача {0} до групи користувачів {1}", "xloc": [ - "default.handlebars->47->2585", - "default.handlebars->47->2594" + "default.handlebars->47->2588", + "default.handlebars->47->2597" ] }, { @@ -8660,7 +8660,7 @@ "zh-cht": "管理員控制模式(ACM)", "uk": "Режим Керування Адміністратора (eng. ACM)", "xloc": [ - "default-mobile.handlebars->11->818", + "default-mobile.handlebars->11->819", "default.handlebars->47->1661" ] }, @@ -8690,7 +8690,7 @@ "zh-cht": "管理員憑證", "uk": "Облікові Дані Адміністратора", "xloc": [ - "default-mobile.handlebars->11->824", + "default-mobile.handlebars->11->825", "default.handlebars->47->1667" ] }, @@ -8750,7 +8750,7 @@ "zh-cht": "管理領域", "uk": "Області Адміністратора", "xloc": [ - "default.handlebars->47->2962" + "default.handlebars->47->2967" ] }, { @@ -8809,7 +8809,7 @@ "zh-cht": "管理領域", "uk": "Адміністративні Області", "xloc": [ - "default.handlebars->47->2807" + "default.handlebars->47->2812" ] }, { @@ -8838,7 +8838,7 @@ "zh-cht": "管理員", "uk": "Адміністратор", "xloc": [ - "default.handlebars->47->2725" + "default.handlebars->47->2730" ] }, { @@ -8868,7 +8868,7 @@ "uk": "Африканська", "xloc": [ "default-mobile.handlebars->11->107", - "default.handlebars->47->1838", + "default.handlebars->47->1841", "login2.handlebars->7->1" ] }, @@ -8902,9 +8902,9 @@ "default-mobile.handlebars->11->469", "default-mobile.handlebars->11->526", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", - "default.handlebars->47->2445", - "default.handlebars->47->2458", - "default.handlebars->47->3324", + "default.handlebars->47->2448", + "default.handlebars->47->2461", + "default.handlebars->47->3330", "default.handlebars->47->409", "default.handlebars->47->717", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect1", @@ -8937,8 +8937,8 @@ "zh-cht": "代理+Intel® AMT", "uk": "Агент + Intel® AMT", "xloc": [ - "default.handlebars->47->2447", - "default.handlebars->47->2460" + "default.handlebars->47->2450", + "default.handlebars->47->2463" ] }, { @@ -8998,8 +8998,8 @@ "uk": "Консоль Агента", "xloc": [ "default-mobile.handlebars->11->605", - "default-mobile.handlebars->11->993", - "default.handlebars->47->2382", + "default-mobile.handlebars->11->994", + "default.handlebars->47->2385", "default.handlebars->47->807" ] }, @@ -9029,7 +9029,7 @@ "zh-cht": "代理錯誤計數器", "uk": "Лічильник Помилок Агента", "xloc": [ - "default.handlebars->47->3293" + "default.handlebars->47->3299" ] }, { @@ -9243,7 +9243,7 @@ "uk": "Само-Поширення Агента", "xloc": [ "default.handlebars->47->1105", - "default.handlebars->47->2249" + "default.handlebars->47->2252" ] }, { @@ -9272,7 +9272,7 @@ "zh-cht": "代理時段", "uk": "Сесії Агента", "xloc": [ - "default.handlebars->47->3309" + "default.handlebars->47->3315" ] }, { @@ -9387,7 +9387,7 @@ "zh-cht": "代理類型", "uk": "Тип Агента", "xloc": [ - "default.handlebars->47->2456", + "default.handlebars->47->2459", "default.handlebars->container->column_l->p21->p21main->1->1->meshOsChartDiv->1" ] }, @@ -9447,7 +9447,7 @@ "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "uk": "Агент закрив сесію зі стисненням {0}% між агентом і сервером. Надіслано: {1}, стиснуто: {2}", "xloc": [ - "default.handlebars->47->2568" + "default.handlebars->47->2571" ] }, { @@ -9672,7 +9672,7 @@ "zh-cht": "代理離線", "uk": "Агент офлайн", "xloc": [ - "default-mobile.handlebars->11->912", + "default-mobile.handlebars->11->913", "default.handlebars->47->1756" ] }, @@ -9702,7 +9702,7 @@ "zh-cht": "代理在線", "uk": "Агент онлайн", "xloc": [ - "default-mobile.handlebars->11->911", + "default-mobile.handlebars->11->912", "default.handlebars->47->1755" ] }, @@ -9943,8 +9943,8 @@ "zh-cht": "代理", "uk": "Агент", "xloc": [ - "default.handlebars->47->2413", - "default.handlebars->47->3337", + "default.handlebars->47->2416", + "default.handlebars->47->3343", "default.handlebars->47->575" ] }, @@ -9975,7 +9975,7 @@ "uk": "Албанська", "xloc": [ "default-mobile.handlebars->11->108", - "default.handlebars->47->1839", + "default.handlebars->47->1842", "login2.handlebars->7->2" ] }, @@ -10019,7 +10019,7 @@ "default-mobile.handlebars->11->361", "default-mobile.handlebars->11->707", "default-mobile.handlebars->11->709", - "default.handlebars->47->3157", + "default.handlebars->47->3163", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1" ] }, @@ -10049,7 +10049,7 @@ "zh-cht": "全部可用", "uk": "Усі Наявні", "xloc": [ - "default.handlebars->47->2687" + "default.handlebars->47->2692" ] }, { @@ -10078,7 +10078,7 @@ "zh-cht": "所有可用的代理", "uk": "Усі Наявні Агенти", "xloc": [ - "default.handlebars->47->2414", + "default.handlebars->47->2417", "default.handlebars->47->576" ] }, @@ -10137,7 +10137,7 @@ "zh-cht": "所有事件", "uk": "Усі Події", "xloc": [ - "default.handlebars->47->2685" + "default.handlebars->47->2690" ] }, { @@ -10237,8 +10237,8 @@ "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "uk": "Дозволити користувачам керувати цією групою пристроїв і пристроями в цій групі.", "xloc": [ - "default.handlebars->47->2326", - "default.handlebars->47->2907" + "default.handlebars->47->2329", + "default.handlebars->47->2912" ] }, { @@ -10267,7 +10267,7 @@ "zh-cht": "允許用戶管理此裝置。", "uk": "Дозволити користувачам керувати цим пристроєм.", "xloc": [ - "default.handlebars->47->2327" + "default.handlebars->47->2330" ] }, { @@ -10591,9 +10591,9 @@ "zh-cht": "一直通知", "uk": "Завжди Сповіщувати", "xloc": [ - "default.handlebars->47->2188", - "default.handlebars->47->2866", - "default.handlebars->47->2971", + "default.handlebars->47->2191", + "default.handlebars->47->2871", + "default.handlebars->47->2976", "default.handlebars->47->971" ] }, @@ -10623,9 +10623,9 @@ "zh-cht": "一直提示", "uk": "Завжди Запитувати", "xloc": [ - "default.handlebars->47->2189", - "default.handlebars->47->2867", - "default.handlebars->47->2972", + "default.handlebars->47->2192", + "default.handlebars->47->2872", + "default.handlebars->47->2977", "default.handlebars->47->972" ] }, @@ -10725,7 +10725,7 @@ "pl": "Wystąpił nieznany błąd.", "uk": "Сталася невідома помилка.", "xloc": [ - "default.handlebars->47->3109" + "default.handlebars->47->3115" ] }, { @@ -10787,7 +10787,7 @@ "zh-cht": "Android APK", "uk": "Android APK", "xloc": [ - "default-mobile.handlebars->11->965", + "default-mobile.handlebars->11->966", "default.handlebars->47->646" ] }, @@ -10875,7 +10875,7 @@ "zh-cht": "安卓安裝", "uk": "Інсталяція Android", "xloc": [ - "default-mobile.handlebars->11->967" + "default-mobile.handlebars->11->968" ] }, { @@ -10893,7 +10893,7 @@ "nl": "Android Versie", "uk": "Версія Android", "xloc": [ - "default-mobile.handlebars->11->793", + "default-mobile.handlebars->11->794", "default.handlebars->47->1626" ] }, @@ -10953,8 +10953,8 @@ "zh-cht": "殺毒軟件未激活", "uk": "Антивірус непрацюючий", "xloc": [ - "default.handlebars->47->2449", - "default.handlebars->47->2463" + "default.handlebars->47->2452", + "default.handlebars->47->2466" ] }, { @@ -10983,7 +10983,7 @@ "zh-cht": "防毒軟體", "uk": "Антивірус", "xloc": [ - "default-mobile.handlebars->11->775", + "default-mobile.handlebars->11->776", "default.handlebars->47->960" ] }, @@ -11388,7 +11388,7 @@ "uk": "Арабська (Алжир)", "xloc": [ "default-mobile.handlebars->11->110", - "default.handlebars->47->1841", + "default.handlebars->47->1844", "login2.handlebars->7->4" ] }, @@ -11419,7 +11419,7 @@ "uk": "Арабська (Бахрейн)", "xloc": [ "default-mobile.handlebars->11->111", - "default.handlebars->47->1842", + "default.handlebars->47->1845", "login2.handlebars->7->5" ] }, @@ -11450,7 +11450,7 @@ "uk": "Арабська (Єгипет)", "xloc": [ "default-mobile.handlebars->11->112", - "default.handlebars->47->1843", + "default.handlebars->47->1846", "login2.handlebars->7->6" ] }, @@ -11481,7 +11481,7 @@ "uk": "Арабська (Ірак)", "xloc": [ "default-mobile.handlebars->11->113", - "default.handlebars->47->1844", + "default.handlebars->47->1847", "login2.handlebars->7->7" ] }, @@ -11512,7 +11512,7 @@ "uk": "Арабська (Йорданія)", "xloc": [ "default-mobile.handlebars->11->114", - "default.handlebars->47->1845", + "default.handlebars->47->1848", "login2.handlebars->7->8" ] }, @@ -11543,7 +11543,7 @@ "uk": "Арабська (Кувейт)", "xloc": [ "default-mobile.handlebars->11->115", - "default.handlebars->47->1846", + "default.handlebars->47->1849", "login2.handlebars->7->9" ] }, @@ -11574,7 +11574,7 @@ "uk": "Арабська (Ліван)", "xloc": [ "default-mobile.handlebars->11->116", - "default.handlebars->47->1847", + "default.handlebars->47->1850", "login2.handlebars->7->10" ] }, @@ -11605,7 +11605,7 @@ "uk": "Арабська (Лівія)", "xloc": [ "default-mobile.handlebars->11->117", - "default.handlebars->47->1848", + "default.handlebars->47->1851", "login2.handlebars->7->11" ] }, @@ -11636,7 +11636,7 @@ "uk": "Арабська (Марокко)", "xloc": [ "default-mobile.handlebars->11->118", - "default.handlebars->47->1849", + "default.handlebars->47->1852", "login2.handlebars->7->12" ] }, @@ -11667,7 +11667,7 @@ "uk": "Арабська (Оман)", "xloc": [ "default-mobile.handlebars->11->119", - "default.handlebars->47->1850", + "default.handlebars->47->1853", "login2.handlebars->7->13" ] }, @@ -11698,7 +11698,7 @@ "uk": "Арабська (Катар)", "xloc": [ "default-mobile.handlebars->11->120", - "default.handlebars->47->1851", + "default.handlebars->47->1854", "login2.handlebars->7->14" ] }, @@ -11729,7 +11729,7 @@ "uk": "Арабська (Саудівська Аравія)", "xloc": [ "default-mobile.handlebars->11->121", - "default.handlebars->47->1852", + "default.handlebars->47->1855", "login2.handlebars->7->15" ] }, @@ -11760,7 +11760,7 @@ "uk": "Арабська (Стандартна)", "xloc": [ "default-mobile.handlebars->11->109", - "default.handlebars->47->1840", + "default.handlebars->47->1843", "login2.handlebars->7->3" ] }, @@ -11791,7 +11791,7 @@ "uk": "Арабська (Сирія)", "xloc": [ "default-mobile.handlebars->11->122", - "default.handlebars->47->1853", + "default.handlebars->47->1856", "login2.handlebars->7->16" ] }, @@ -11822,7 +11822,7 @@ "uk": "Арабська (Туніс)", "xloc": [ "default-mobile.handlebars->11->123", - "default.handlebars->47->1854", + "default.handlebars->47->1857", "login2.handlebars->7->17" ] }, @@ -11853,7 +11853,7 @@ "uk": "Арабська (ОАЕ)", "xloc": [ "default-mobile.handlebars->11->124", - "default.handlebars->47->1855", + "default.handlebars->47->1858", "login2.handlebars->7->18" ] }, @@ -11884,7 +11884,7 @@ "uk": "Арабська (Ємен)", "xloc": [ "default-mobile.handlebars->11->125", - "default.handlebars->47->1856", + "default.handlebars->47->1859", "login2.handlebars->7->19" ] }, @@ -11915,7 +11915,7 @@ "uk": "Арагонська", "xloc": [ "default-mobile.handlebars->11->126", - "default.handlebars->47->1857", + "default.handlebars->47->1860", "login2.handlebars->7->20" ] }, @@ -11945,9 +11945,9 @@ "zh-cht": "結構", "uk": "Архітектура", "xloc": [ - "default-mobile.handlebars->11->742", - "default-mobile.handlebars->11->744", - "default-mobile.handlebars->11->746", + "default-mobile.handlebars->11->743", + "default-mobile.handlebars->11->745", + "default-mobile.handlebars->11->747", "default.handlebars->47->1603", "default.handlebars->47->1605", "default.handlebars->47->1607" @@ -12008,8 +12008,8 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "uk": "Ви впевнені, що бажаєте видалити групу {0}? Видалення групи пристроїв також видалить всю інформацію про пристрої в цій групі.", "xloc": [ - "default-mobile.handlebars->11->953", - "default.handlebars->47->2293" + "default-mobile.handlebars->11->954", + "default.handlebars->47->2296" ] }, { @@ -12134,7 +12134,7 @@ "zh-cht": "你確定要{0}外掛嗎:{1}", "uk": "Ви впевнені, що хочете {0} плаґін: {1}", "xloc": [ - "default.handlebars->47->3389" + "default.handlebars->47->3395" ] }, { @@ -12194,7 +12194,7 @@ "uk": "Вірменська", "xloc": [ "default-mobile.handlebars->11->127", - "default.handlebars->47->1858", + "default.handlebars->47->1861", "login2.handlebars->7->21" ] }, @@ -12400,7 +12400,7 @@ "uk": "Асамська", "xloc": [ "default-mobile.handlebars->11->128", - "default.handlebars->47->1859", + "default.handlebars->47->1862", "login2.handlebars->7->22" ] }, @@ -12576,7 +12576,7 @@ "uk": "Астурійська", "xloc": [ "default-mobile.handlebars->11->129", - "default.handlebars->47->1860", + "default.handlebars->47->1863", "login2.handlebars->7->23" ] }, @@ -12606,7 +12606,7 @@ "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "uk": "Спроба активувати режим Intel(R) AMT ACM", "xloc": [ - "default.handlebars->47->2537" + "default.handlebars->47->2540" ] }, { @@ -12699,7 +12699,7 @@ "zh-cht": "認證軟體", "uk": "Застосунок Автентифікації", "xloc": [ - "default.handlebars->47->2975" + "default.handlebars->47->2980" ] }, { @@ -12728,9 +12728,9 @@ "zh-cht": "認證設備", "uk": "Пристрій Автентифікації", "xloc": [ - "default.handlebars->47->1821", - "default.handlebars->47->1823", - "default.handlebars->47->1827" + "default.handlebars->47->1824", + "default.handlebars->47->1826", + "default.handlebars->47->1830" ] }, { @@ -12795,8 +12795,8 @@ "default-mobile.handlebars->11->314", "default-mobile.handlebars->11->71", "default-mobile.handlebars->11->74", - "default.handlebars->47->1817", - "default.handlebars->47->1819", + "default.handlebars->47->1820", + "default.handlebars->47->1822", "default.handlebars->47->218", "default.handlebars->47->223" ] @@ -12943,8 +12943,8 @@ "zh-cht": "自動刪除", "uk": "Авто-Видалення", "xloc": [ - "default.handlebars->47->2173", - "default.handlebars->47->2678" + "default.handlebars->47->2176", + "default.handlebars->47->2683" ] }, { @@ -13006,7 +13006,7 @@ "zh-cht": "自動下載代理程序核心轉儲文件:“{0}”", "uk": "Автоматичне завантаження файлу дампа ядра агента: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2618" + "default.handlebars->47->2621" ] }, { @@ -13120,7 +13120,7 @@ "zh-cht": "自動移除非活動設備", "uk": "Автоматично видаляти неактивні пристрої", "xloc": [ - "default.handlebars->47->2321" + "default.handlebars->47->2324" ] }, { @@ -13149,7 +13149,7 @@ "zh-cht": "可用內存", "uk": "Доступна пам'ять", "xloc": [ - "default.handlebars->47->3318" + "default.handlebars->47->3324" ] }, { @@ -13179,7 +13179,7 @@ "uk": "Азербайджанська", "xloc": [ "default-mobile.handlebars->11->130", - "default.handlebars->47->1861", + "default.handlebars->47->1864", "login2.handlebars->7->24" ] }, @@ -13209,9 +13209,9 @@ "zh-cht": "壞的", "uk": "КЕПСЬКО", "xloc": [ - "default-mobile.handlebars->11->753", - "default-mobile.handlebars->11->757", - "default-mobile.handlebars->11->761", + "default-mobile.handlebars->11->754", + "default-mobile.handlebars->11->758", + "default-mobile.handlebars->11->762", "default.handlebars->47->938", "default.handlebars->47->942", "default.handlebars->47->946" @@ -13243,7 +13243,7 @@ "zh-cht": "的BIOS", "uk": "BIOS", "xloc": [ - "default-mobile.handlebars->11->833", + "default-mobile.handlebars->11->834", "default.handlebars->47->1676" ] }, @@ -13427,8 +13427,8 @@ "zh-cht": "背景與互動", "uk": "Фоновий та Інтерактивний", "xloc": [ - "default.handlebars->47->2420", - "default.handlebars->47->2427", + "default.handlebars->47->2423", + "default.handlebars->47->2430", "default.handlebars->47->562", "default.handlebars->47->583" ] @@ -13460,8 +13460,8 @@ "uk": "Лише Фоновий", "xloc": [ "agentinvite.handlebars->3->9", - "default.handlebars->47->2421", - "default.handlebars->47->2429", + "default.handlebars->47->2424", + "default.handlebars->47->2432", "default.handlebars->47->563", "default.handlebars->47->584", "default.handlebars->47->601" @@ -13523,8 +13523,8 @@ "zh-cht": "備用碼", "uk": "Резервні Коди", "xloc": [ - "default.handlebars->47->2978", - "default.handlebars->47->3205" + "default.handlebars->47->2984", + "default.handlebars->47->3211" ] }, { @@ -13612,7 +13612,7 @@ "zh-cht": "錯誤的簽名", "uk": "Помилковий Підпис", "xloc": [ - "default.handlebars->47->3300" + "default.handlebars->47->3306" ] }, { @@ -13641,7 +13641,7 @@ "zh-cht": "錯誤的網絡憑證", "uk": "Недійсний Веб-Сертифікат", "xloc": [ - "default.handlebars->47->3299" + "default.handlebars->47->3305" ] }, { @@ -13671,7 +13671,7 @@ "uk": "Баскська", "xloc": [ "default-mobile.handlebars->11->131", - "default.handlebars->47->1862", + "default.handlebars->47->1865", "login2.handlebars->7->25" ] }, @@ -13770,7 +13770,7 @@ "zh-cht": "將{0}個文件批量上傳到文件夾{1}", "uk": "Пакетне завантаження файлів ({0}) до теки {1}", "xloc": [ - "default.handlebars->47->2617" + "default.handlebars->47->2620" ] }, { @@ -13800,7 +13800,7 @@ "uk": "Білоруська", "xloc": [ "default-mobile.handlebars->11->133", - "default.handlebars->47->1864", + "default.handlebars->47->1867", "login2.handlebars->7->27" ] }, @@ -13831,7 +13831,7 @@ "uk": "Бенгальська", "xloc": [ "default-mobile.handlebars->11->134", - "default.handlebars->47->1865", + "default.handlebars->47->1868", "login2.handlebars->7->28" ] }, @@ -13899,7 +13899,7 @@ "nl": "BitLocker", "uk": "BitLocker", "xloc": [ - "default-mobile.handlebars->11->889", + "default-mobile.handlebars->11->890", "default.handlebars->47->1732" ] }, @@ -13910,7 +13910,7 @@ "pl": "Informacje o BitLocker", "uk": "Інформація о BitLocker", "xloc": [ - "default-mobile.handlebars->11->910", + "default-mobile.handlebars->11->911", "default.handlebars->47->1753" ] }, @@ -13940,7 +13940,7 @@ "zh-cht": "引導加載程序", "uk": "Завантажувач", "xloc": [ - "default-mobile.handlebars->11->790", + "default-mobile.handlebars->11->791", "default.handlebars->47->1623" ] }, @@ -13971,7 +13971,7 @@ "uk": "Боснійська", "xloc": [ "default-mobile.handlebars->11->135", - "default.handlebars->47->1866", + "default.handlebars->47->1869", "login2.handlebars->7->29" ] }, @@ -14002,7 +14002,7 @@ "uk": "Бретонська", "xloc": [ "default-mobile.handlebars->11->136", - "default.handlebars->47->1867", + "default.handlebars->47->1870", "login2.handlebars->7->30" ] }, @@ -14032,7 +14032,7 @@ "zh-cht": "廣播", "uk": "Широкомовне", "xloc": [ - "default.handlebars->47->2873", + "default.handlebars->47->2878", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -14062,7 +14062,7 @@ "zh-cht": "廣播消息", "uk": "Широкомовне Повідомлення", "xloc": [ - "default.handlebars->47->2789" + "default.handlebars->47->2794" ] }, { @@ -14091,7 +14091,7 @@ "zh-cht": "向所有連接的用戶廣播消息。", "uk": "Широкомовне повідомлення всім підключеним користувачам.", "xloc": [ - "default.handlebars->47->2784" + "default.handlebars->47->2789" ] }, { @@ -14120,7 +14120,7 @@ "zh-cht": "瀏覽器", "uk": "Браузер", "xloc": [ - "default.handlebars->47->3179" + "default.handlebars->47->3185" ] }, { @@ -14209,7 +14209,7 @@ "uk": "Болгарська", "xloc": [ "default-mobile.handlebars->11->132", - "default.handlebars->47->1863", + "default.handlebars->47->1866", "login2.handlebars->7->26" ] }, @@ -14240,7 +14240,7 @@ "uk": "Бірманська", "xloc": [ "default-mobile.handlebars->11->137", - "default.handlebars->47->1868", + "default.handlebars->47->1871", "login2.handlebars->7->31" ] }, @@ -14270,7 +14270,7 @@ "zh-cht": "默認情況下,非活動設備將在 1 天后移除。", "uk": "Типово неактивні пристрої видаляються через 1 день.", "xloc": [ - "default.handlebars->47->2323" + "default.handlebars->47->2326" ] }, { @@ -14299,7 +14299,7 @@ "zh-cht": "默認情況下,不活動的設備將在 {0} 天后被移除。", "uk": "Типово неактивні пристрої видаляються через {0} дн.", "xloc": [ - "default.handlebars->47->2324" + "default.handlebars->47->2327" ] }, { @@ -14339,7 +14339,7 @@ "zh-cht": "字節輸入", "uk": "Байт Вх.", "xloc": [ - "default.handlebars->47->3175" + "default.handlebars->47->3181" ] }, { @@ -14368,7 +14368,7 @@ "zh-cht": "字節輸出", "uk": "Байт Вих.", "xloc": [ - "default.handlebars->47->3176" + "default.handlebars->47->3182" ] }, { @@ -14474,7 +14474,7 @@ "zh-cht": "CCM模式", "uk": "Режим CCM", "xloc": [ - "default.handlebars->47->2276" + "default.handlebars->47->2279" ] }, { @@ -14482,9 +14482,9 @@ "en": "CD-ROM", "nl": "CD-ROM", "xloc": [ - "default-mobile.handlebars->11->882", - "default-mobile.handlebars->11->894", - "default-mobile.handlebars->11->901", + "default-mobile.handlebars->11->883", + "default-mobile.handlebars->11->895", + "default-mobile.handlebars->11->902", "default.handlebars->47->1725", "default.handlebars->47->1737", "default.handlebars->47->1744" @@ -14517,7 +14517,7 @@ "uk": "CIRA", "xloc": [ "default-mobile.handlebars->11->470", - "default.handlebars->47->3325", + "default.handlebars->47->3331", "default.handlebars->47->411", "default.handlebars->47->719" ] @@ -14548,7 +14548,7 @@ "zh-cht": "CIRA伺服器", "uk": "Сервер CIRA", "xloc": [ - "default.handlebars->47->3373" + "default.handlebars->47->3379" ] }, { @@ -14577,7 +14577,7 @@ "zh-cht": "CIRA伺服器指令", "uk": "Команди Сервера CIRA", "xloc": [ - "default.handlebars->47->3374" + "default.handlebars->47->3380" ] }, { @@ -14635,7 +14635,7 @@ "zh-cht": "CIRA設置", "uk": "Налаштування CIRA", "xloc": [ - "default.handlebars->47->2284" + "default.handlebars->47->2287" ] }, { @@ -14664,10 +14664,10 @@ "zh-cht": "CPU", "uk": "ЦП", "xloc": [ - "default-mobile.handlebars->11->839", + "default-mobile.handlebars->11->840", "default.handlebars->47->1598", "default.handlebars->47->1682", - "default.handlebars->47->3349", + "default.handlebars->47->3355", "default.handlebars->container->column_l->p40->3->1->p40type->5" ] }, @@ -14697,7 +14697,7 @@ "zh-cht": "CPU負載", "uk": "Навантаження ЦП", "xloc": [ - "default.handlebars->47->3314" + "default.handlebars->47->3320" ] }, { @@ -14726,7 +14726,7 @@ "zh-cht": "最近15分鐘的CPU負載", "uk": "Навантаження ЦП за останні 15 хвилин", "xloc": [ - "default.handlebars->47->3317" + "default.handlebars->47->3323" ] }, { @@ -14755,7 +14755,7 @@ "zh-cht": "最近5分鐘的CPU負載", "uk": "Навантаження ЦП за останні 5 хвилин", "xloc": [ - "default.handlebars->47->3316" + "default.handlebars->47->3322" ] }, { @@ -14784,7 +14784,7 @@ "zh-cht": "最近一分鐘的CPU負載", "uk": "Навантаження ЦП за останню хвилину", "xloc": [ - "default.handlebars->47->3315" + "default.handlebars->47->3321" ] }, { @@ -14847,7 +14847,7 @@ "zh-cht": "CSV", "uk": "CSV", "xloc": [ - "default.handlebars->47->2695" + "default.handlebars->47->2700" ] }, { @@ -14876,8 +14876,8 @@ "zh-cht": "CSV格式", "uk": "Формат CSV", "xloc": [ - "default.handlebars->47->2699", - "default.handlebars->47->2776", + "default.handlebars->47->2704", + "default.handlebars->47->2781", "default.handlebars->47->792" ] }, @@ -14887,7 +14887,7 @@ "nl": "Het CSV bestandsformaat is als volgt:", "uk": "Формат файлу CSV нижче:", "xloc": [ - "default.handlebars->47->2762" + "default.handlebars->47->2767" ] }, { @@ -14942,7 +14942,7 @@ "zh-cht": "呼叫錯誤", "uk": "Помилка Виклику", "xloc": [ - "default.handlebars->47->3390" + "default.handlebars->47->3396" ] }, { @@ -14956,7 +14956,7 @@ "uk": "CallMeBot", "xloc": [ "default.handlebars->47->1790", - "default.handlebars->47->3013" + "default.handlebars->47->3019" ] }, { @@ -15017,8 +15017,8 @@ "agent-translations.json", "default-mobile.handlebars->11->323", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2140", - "default.handlebars->47->3379", + "default.handlebars->47->2143", + "default.handlebars->47->3385", "default.handlebars->47->535", "default.handlebars->container->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -15137,14 +15137,14 @@ "zh-cht": "容量", "uk": "Ємність", "xloc": [ - "default-mobile.handlebars->11->857", - "default-mobile.handlebars->11->863", - "default-mobile.handlebars->11->869", - "default-mobile.handlebars->11->874", - "default-mobile.handlebars->11->876", - "default-mobile.handlebars->11->879", - "default-mobile.handlebars->11->891", - "default-mobile.handlebars->11->898", + "default-mobile.handlebars->11->858", + "default-mobile.handlebars->11->864", + "default-mobile.handlebars->11->870", + "default-mobile.handlebars->11->875", + "default-mobile.handlebars->11->877", + "default-mobile.handlebars->11->880", + "default-mobile.handlebars->11->892", + "default-mobile.handlebars->11->899", "default.handlebars->47->1700", "default.handlebars->47->1706", "default.handlebars->47->1712", @@ -15181,9 +15181,9 @@ "zh-cht": "容量/速度", "uk": "Ємність / Швидкість", "xloc": [ - "default-mobile.handlebars->11->855", - "default-mobile.handlebars->11->861", - "default-mobile.handlebars->11->867", + "default-mobile.handlebars->11->856", + "default-mobile.handlebars->11->862", + "default-mobile.handlebars->11->868", "default.handlebars->47->1698", "default.handlebars->47->1704", "default.handlebars->47->1710" @@ -15195,9 +15195,9 @@ "nl": "Resterende capaciteit", "uk": "Залишок ємності", "xloc": [ - "default-mobile.handlebars->11->880", - "default-mobile.handlebars->11->892", - "default-mobile.handlebars->11->899", + "default-mobile.handlebars->11->881", + "default-mobile.handlebars->11->893", + "default-mobile.handlebars->11->900", "default.handlebars->47->1723", "default.handlebars->47->1735", "default.handlebars->47->1742" @@ -15230,7 +15230,7 @@ "uk": "Каталанська", "xloc": [ "default-mobile.handlebars->11->138", - "default.handlebars->47->1869", + "default.handlebars->47->1872", "login2.handlebars->7->32" ] }, @@ -15347,7 +15347,7 @@ "uk": "Чаморро", "xloc": [ "default-mobile.handlebars->11->139", - "default.handlebars->47->1870", + "default.handlebars->47->1873", "login2.handlebars->7->33" ] }, @@ -15408,7 +15408,7 @@ "zh-cht": "更改{0}的電郵", "uk": "Змінити е-пошту для {0}", "xloc": [ - "default.handlebars->47->3055" + "default.handlebars->47->3061" ] }, { @@ -15480,8 +15480,8 @@ "uk": "Змінити Пароль", "xloc": [ "default-mobile.handlebars->11->331", - "default.handlebars->47->2086", - "default.handlebars->47->2999" + "default.handlebars->47->2089", + "default.handlebars->47->3005" ] }, { @@ -15510,7 +15510,7 @@ "zh-cht": "更改{0}的密碼", "uk": "Змінити пароль для {0}", "xloc": [ - "default.handlebars->47->3064" + "default.handlebars->47->3070" ] }, { @@ -15539,7 +15539,7 @@ "zh-cht": "更改{0}的真實名稱", "uk": "Змінити справжнє ім'я для {0}", "xloc": [ - "default.handlebars->47->3050" + "default.handlebars->47->3056" ] }, { @@ -15712,7 +15712,7 @@ "zh-cht": "更改該用戶的密碼", "uk": "Змінити пароль для цього користувача", "xloc": [ - "default.handlebars->47->2998" + "default.handlebars->47->3004" ] }, { @@ -15770,7 +15770,7 @@ "zh-cht": "在此處更改你的帳戶電郵地址。", "uk": "Змініть адресу е-пошти свого акаунту тут.", "xloc": [ - "default.handlebars->47->2073" + "default.handlebars->47->2076" ] }, { @@ -15799,7 +15799,7 @@ "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "uk": "Змініть пароль свого акаунту, ввівши старий пароль та двічі новий пароль в поля нижче.", "xloc": [ - "default.handlebars->47->2079" + "default.handlebars->47->2082" ] }, { @@ -15828,7 +15828,7 @@ "zh-cht": "帳戶憑證已更改", "uk": "Змінено облікові дані акаунту", "xloc": [ - "default.handlebars->47->2589" + "default.handlebars->47->2592" ] }, { @@ -15857,7 +15857,7 @@ "zh-cht": "將帳戶顯示名稱更改為 {0}。", "uk": "Відображене ім'я акаунту змінено на {0}.", "xloc": [ - "default.handlebars->47->2641" + "default.handlebars->47->2644" ] }, { @@ -15886,8 +15886,8 @@ "zh-cht": "{1}組中的設備{0}已更改:{2}", "uk": "Пристрій {0} змінено з групи {1}: {2}", "xloc": [ - "default.handlebars->47->2573", - "default.handlebars->47->2654" + "default.handlebars->47->2576", + "default.handlebars->47->2657" ] }, { @@ -15916,7 +15916,7 @@ "zh-cht": "語言從{1}更改為{2}", "uk": "Мову змінено з {1} на {2}", "xloc": [ - "default.handlebars->47->2517" + "default.handlebars->47->2520" ] }, { @@ -15945,8 +15945,8 @@ "zh-cht": "已更改{0}的用戶設備權限", "uk": "Права користувача пристрою змінено для {0}", "xloc": [ - "default.handlebars->47->2575", - "default.handlebars->47->2596" + "default.handlebars->47->2578", + "default.handlebars->47->2599" ] }, { @@ -16002,7 +16002,7 @@ "uk": "Зміна мови потребуватиме освіження сторінки.", "xloc": [ "default-mobile.handlebars->11->306", - "default.handlebars->47->2037" + "default.handlebars->47->2040" ] }, { @@ -16034,9 +16034,9 @@ "default.handlebars->47->1018", "default.handlebars->47->1137", "default.handlebars->47->1162", - "default.handlebars->47->2716", - "default.handlebars->47->2994", - "default.handlebars->47->2995" + "default.handlebars->47->2721", + "default.handlebars->47->3000", + "default.handlebars->47->3001" ] }, { @@ -16065,10 +16065,10 @@ "zh-cht": "聊天並通知", "uk": "Чат і Сповіщення", "xloc": [ - "default-mobile.handlebars->11->1003", - "default-mobile.handlebars->11->983", - "default.handlebars->47->2355", - "default.handlebars->47->2393" + "default-mobile.handlebars->11->1004", + "default-mobile.handlebars->11->984", + "default.handlebars->47->2358", + "default.handlebars->47->2396" ] }, { @@ -16097,8 +16097,8 @@ "zh-cht": "聊天請求,點擊這裡接受。", "uk": "Запит на чат, натисніть тут, щоб прийняти", "xloc": [ - "default-mobile.handlebars->11->1035", - "default.handlebars->47->3264" + "default-mobile.handlebars->11->1036", + "default.handlebars->47->3270" ] }, { @@ -16157,7 +16157,7 @@ "uk": "Чеченська", "xloc": [ "default-mobile.handlebars->11->140", - "default.handlebars->47->1871", + "default.handlebars->47->1874", "login2.handlebars->7->34" ] }, @@ -16317,8 +16317,8 @@ "zh-cht": "檢查...", "uk": "Перевірка...", "xloc": [ - "default.handlebars->47->1837", - "default.handlebars->47->3384" + "default.handlebars->47->1840", + "default.handlebars->47->3390" ] }, { @@ -16348,7 +16348,7 @@ "uk": "Китайська", "xloc": [ "default-mobile.handlebars->11->141", - "default.handlebars->47->1872", + "default.handlebars->47->1875", "login2.handlebars->7->35" ] }, @@ -16379,7 +16379,7 @@ "uk": "Китайська (Гонконг)", "xloc": [ "default-mobile.handlebars->11->142", - "default.handlebars->47->1873", + "default.handlebars->47->1876", "login2.handlebars->7->36" ] }, @@ -16410,7 +16410,7 @@ "uk": "Китайська (КНР)", "xloc": [ "default-mobile.handlebars->11->143", - "default.handlebars->47->1874", + "default.handlebars->47->1877", "login2.handlebars->7->37" ] }, @@ -16441,7 +16441,7 @@ "uk": "Китайська (Спрощена)", "xloc": [ "default-mobile.handlebars->11->303", - "default.handlebars->47->2034", + "default.handlebars->47->2037", "login2.handlebars->7->197" ] }, @@ -16472,7 +16472,7 @@ "uk": "Китайська (Сінгапур)", "xloc": [ "default-mobile.handlebars->11->144", - "default.handlebars->47->1875", + "default.handlebars->47->1878", "login2.handlebars->7->38" ] }, @@ -16503,7 +16503,7 @@ "uk": "Китайська (Тайвань)", "xloc": [ "default-mobile.handlebars->11->145", - "default.handlebars->47->1876", + "default.handlebars->47->1879", "login2.handlebars->7->39" ] }, @@ -16534,7 +16534,7 @@ "uk": "Китайська (Традиційна)", "xloc": [ "default-mobile.handlebars->11->304", - "default.handlebars->47->2035", + "default.handlebars->47->2038", "login2.handlebars->7->198" ] }, @@ -16595,7 +16595,7 @@ "uk": "Чуваська", "xloc": [ "default-mobile.handlebars->11->146", - "default.handlebars->47->1877", + "default.handlebars->47->1880", "login2.handlebars->7->40" ] }, @@ -16662,7 +16662,7 @@ "default.handlebars->47->1573", "default.handlebars->47->1575", "default.handlebars->47->1577", - "default.handlebars->47->2511", + "default.handlebars->47->2514", "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->1->1->0->5", @@ -16846,8 +16846,8 @@ "zh-cht": "全部清除", "uk": "Очистити все", "xloc": [ - "default-mobile.handlebars->11->1018", - "default.handlebars->47->3247" + "default-mobile.handlebars->11->1019", + "default.handlebars->47->3253" ] }, { @@ -16906,7 +16906,7 @@ "zh-cht": "清除核心", "uk": "Очистити ядро", "xloc": [ - "default-mobile.handlebars->11->922", + "default-mobile.handlebars->11->923", "default.handlebars->47->1766" ] }, @@ -16965,8 +16965,8 @@ "zh-cht": "清除此通知", "uk": "Очистити це сповіщення", "xloc": [ - "default-mobile.handlebars->11->1017", - "default.handlebars->47->3246" + "default-mobile.handlebars->11->1018", + "default.handlebars->47->3252" ] }, { @@ -17082,8 +17082,8 @@ "zh-cht": "單擊此處編輯裝置群名稱", "uk": "Клікніть тут, щоб змінити назву групи пристроїв", "xloc": [ - "default.handlebars->47->2154", - "default.handlebars->47->2454" + "default.handlebars->47->2157", + "default.handlebars->47->2457" ] }, { @@ -17141,7 +17141,7 @@ "zh-cht": "單擊此處編輯用戶群名稱", "uk": "Клікніть тут, щоб змінити назву групи користувачів", "xloc": [ - "default.handlebars->47->2846" + "default.handlebars->47->2851" ] }, { @@ -17286,7 +17286,7 @@ "uk": "Клікнути OK, щоб надіслати електронний лист для підтвердження на:", "xloc": [ "default-mobile.handlebars->11->316", - "default.handlebars->47->2070" + "default.handlebars->47->2073" ] }, { @@ -17400,7 +17400,7 @@ "zh-cht": "客戶端控制模式(CCM)", "uk": "Режим керування клієнтом (eng. CCM)", "xloc": [ - "default-mobile.handlebars->11->817", + "default-mobile.handlebars->11->818", "default.handlebars->47->1660" ] }, @@ -17430,7 +17430,7 @@ "zh-cht": "客戶編號", "uk": "ID Клієнта", "xloc": [ - "default.handlebars->47->2133" + "default.handlebars->47->2136" ] }, { @@ -17459,7 +17459,7 @@ "zh-cht": "客戶端啟動的遠程訪問", "uk": "Клієнт Ініціював Віддалений Доступ", "xloc": [ - "default.handlebars->47->2283" + "default.handlebars->47->2286" ] }, { @@ -17488,7 +17488,7 @@ "zh-cht": "客戶機密", "uk": "Секретний Ключ Клієнта", "xloc": [ - "default.handlebars->47->2134" + "default.handlebars->47->2137" ] }, { @@ -17553,7 +17553,7 @@ "default.handlebars->47->1546", "default.handlebars->47->230", "default.handlebars->47->238", - "default.handlebars->47->3378", + "default.handlebars->47->3384", "sharing.handlebars->11->52" ] }, @@ -17583,7 +17583,7 @@ "zh-cht": "已關閉桌面多路復用會話 \\\"{0}\\\",{1} 秒", "uk": "Закрито сесію мультиплексної стільниці \\\"{0}\\\", {1} секунд(и)", "xloc": [ - "default.handlebars->47->2661" + "default.handlebars->47->2664" ] }, { @@ -17612,7 +17612,7 @@ "zh-cht": "封閉式桌面多路復用會話,{0}秒", "uk": "Закрито сесію мультиплексної стільниці, {0} секунд(и)", "xloc": [ - "default.handlebars->47->2522" + "default.handlebars->47->2525" ] }, { @@ -17816,10 +17816,10 @@ "zh-cht": "指令", "uk": "Команди", "xloc": [ - "default-mobile.handlebars->11->1005", + "default-mobile.handlebars->11->1006", "default.handlebars->47->1139", "default.handlebars->47->1164", - "default.handlebars->47->2395" + "default.handlebars->47->2398" ] }, { @@ -17899,8 +17899,8 @@ "zh-cht": "通用裝置群", "uk": "Пов'язані Групи Пристроїв", "xloc": [ - "default.handlebars->47->2881", - "default.handlebars->47->3069" + "default.handlebars->47->2886", + "default.handlebars->47->3075" ] }, { @@ -17929,8 +17929,8 @@ "zh-cht": "通用裝置", "uk": "Пов'язані Пристрої", "xloc": [ - "default.handlebars->47->2887", - "default.handlebars->47->3081" + "default.handlebars->47->2892", + "default.handlebars->47->3087" ] }, { @@ -17959,7 +17959,7 @@ "zh-cht": "編譯時間", "uk": "Час компіляції", "xloc": [ - "default-mobile.handlebars->11->786", + "default-mobile.handlebars->11->787", "default.handlebars->47->1619" ] }, @@ -18057,7 +18057,7 @@ "pl": "Zapisy pliku konfiguracyjnego", "uk": "Записи файлу конфігурації", "xloc": [ - "default.handlebars->47->3223" + "default.handlebars->47->3229" ] }, { @@ -18087,14 +18087,14 @@ "uk": "Підтвердити", "xloc": [ "default-mobile.handlebars->11->623", - "default-mobile.handlebars->11->954", + "default-mobile.handlebars->11->955", "default.handlebars->47->1311", "default.handlebars->47->1320", - "default.handlebars->47->2294", - "default.handlebars->47->2746", - "default.handlebars->47->2836", - "default.handlebars->47->2903", - "default.handlebars->47->3067", + "default.handlebars->47->2297", + "default.handlebars->47->2751", + "default.handlebars->47->2841", + "default.handlebars->47->2908", + "default.handlebars->47->3073", "default.handlebars->47->756" ] }, @@ -18240,7 +18240,7 @@ "zh-cht": "確認刪除所選帳戶?", "uk": "Підтвердити видалення відібраних акаунтів?", "xloc": [ - "default.handlebars->47->2745" + "default.handlebars->47->2750" ] }, { @@ -18295,7 +18295,7 @@ "zh-cht": "確認刪除所選用戶群?", "uk": "Підтвердити видалення відібраних груп користувачів?", "xloc": [ - "default.handlebars->47->2835" + "default.handlebars->47->2840" ] }, { @@ -18324,7 +18324,7 @@ "zh-cht": "確認刪除用戶{0}?", "uk": "Підтвердити видалення користувача {0}?", "xloc": [ - "default.handlebars->47->3066" + "default.handlebars->47->3072" ] }, { @@ -18353,7 +18353,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "uk": "Підтвердити видалення приналежності у користувача \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->2906" + "default.handlebars->47->2911" ] }, { @@ -18382,7 +18382,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "uk": "Підтвердити видалення приналежності до групи користувачів \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->3098" + "default.handlebars->47->3104" ] }, { @@ -18501,7 +18501,7 @@ "zh-cht": "確認覆蓋?", "uk": "Підтвердити перезапис?", "xloc": [ - "default.handlebars->47->2503" + "default.handlebars->47->2506" ] }, { @@ -18530,8 +18530,8 @@ "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "uk": "Підтвердити видалення прав доступу для пристрою \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->2896", - "default.handlebars->47->3089" + "default.handlebars->47->2901", + "default.handlebars->47->3095" ] }, { @@ -18560,8 +18560,8 @@ "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "uk": "Підтвердити видалення прав доступу для групи пристроїв \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->2898", - "default.handlebars->47->3102" + "default.handlebars->47->2903", + "default.handlebars->47->3108" ] }, { @@ -18590,7 +18590,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "uk": "Підтвердити видалення прав доступу для користувача \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->3091" + "default.handlebars->47->3097" ] }, { @@ -18619,7 +18619,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "uk": "Підтвердити видалення прав доступу для групи користувачів \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->3094" + "default.handlebars->47->3100" ] }, { @@ -18648,8 +18648,8 @@ "zh-cht": "確認刪除訪問權限?", "uk": "Підтвердити видалення прав доступу?", "xloc": [ - "default.handlebars->47->3092", - "default.handlebars->47->3095" + "default.handlebars->47->3098", + "default.handlebars->47->3101" ] }, { @@ -18679,7 +18679,7 @@ "uk": "Підтвердити видалення двофакторної автентифікації через застосунок?", "xloc": [ "default-mobile.handlebars->11->315", - "default.handlebars->47->1820" + "default.handlebars->47->1823" ] }, { @@ -18734,7 +18734,7 @@ "zh-cht": "確認刪除設備共享“{0}”?", "uk": "Підтвердити скасування поширення пристрою \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->3087" + "default.handlebars->47->3093" ] }, { @@ -18815,7 +18815,7 @@ "zh-cht": "確認移除推送認證設備?", "uk": "Підтвердити видалення пристрою push-автентифікації?", "xloc": [ - "default.handlebars->47->1822" + "default.handlebars->47->1825" ] }, { @@ -18844,7 +18844,7 @@ "zh-cht": "確認刪除用戶“ {0} ”的權限?", "uk": "Підтвердити видалення прав користувача \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->2407" + "default.handlebars->47->2410" ] }, { @@ -18873,7 +18873,7 @@ "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "uk": "Підтвердити видалення прав для групи користувачів \\\"{0}\\\"?", "xloc": [ - "default.handlebars->47->2409" + "default.handlebars->47->2412" ] }, { @@ -18931,7 +18931,7 @@ "zh-cht": "確認刪除此登錄令牌?", "uk": "Підтвердити видалення цього токена входу?", "xloc": [ - "default.handlebars->47->2126" + "default.handlebars->47->2129" ] }, { @@ -18986,7 +18986,7 @@ "zh-cht": "確認刪除用戶{0}?", "uk": "Підтвердити видалення користувача {0}?", "xloc": [ - "default-mobile.handlebars->11->1014" + "default-mobile.handlebars->11->1015" ] }, { @@ -19045,7 +19045,7 @@ "uk": "Підтвердити {0} із {1} записів{2} для цієї локації?", "xloc": [ "default-mobile.handlebars->11->371", - "default.handlebars->47->2506" + "default.handlebars->47->2509" ] }, { @@ -19078,7 +19078,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->connectbutton2span", - "default.handlebars->47->2192", + "default.handlebars->47->2195", "default.handlebars->47->975", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", @@ -19174,7 +19174,7 @@ "zh-cht": "連接到伺服器", "uk": "Підключитися до сервера", "xloc": [ - "default.handlebars->47->2287" + "default.handlebars->47->2290" ] }, { @@ -19436,7 +19436,7 @@ "zh-cht": "已連接的Intel® AMT", "uk": "Підключено Intel® AMT", "xloc": [ - "default.handlebars->47->3305" + "default.handlebars->47->3311" ] }, { @@ -19465,7 +19465,7 @@ "zh-cht": "已连接的用户", "uk": "Підключені Користувачі", "xloc": [ - "default.handlebars->47->3310" + "default.handlebars->47->3316" ] }, { @@ -19524,7 +19524,7 @@ "zh-cht": "現在已連接", "uk": "Підключено зараз", "xloc": [ - "default-mobile.handlebars->11->781", + "default-mobile.handlebars->11->782", "default.handlebars->47->1614" ] }, @@ -19730,7 +19730,7 @@ "zh-cht": "連接數量", "uk": "Кількість Підключень", "xloc": [ - "default.handlebars->47->3336" + "default.handlebars->47->3342" ] }, { @@ -19791,7 +19791,7 @@ "zh-cht": "連接轉發器", "uk": "Ретрансляція Підключення", "xloc": [ - "default.handlebars->47->3372" + "default.handlebars->47->3378" ] }, { @@ -19879,7 +19879,7 @@ "uk": "Сполучення", "xloc": [ "default-mobile.handlebars->11->531", - "default.handlebars->47->2461", + "default.handlebars->47->2464", "default.handlebars->47->383", "default.handlebars->47->992", "default.handlebars->container->column_l->p21->p21main->1->1->meshConnChartDiv->1" @@ -19911,7 +19911,7 @@ "zh-cht": "同意", "uk": "Згода", "xloc": [ - "default.handlebars->47->2677" + "default.handlebars->47->2682" ] }, { @@ -20064,7 +20064,7 @@ "zh-cht": "Cookie編碼器", "uk": "Cookie кодувальник", "xloc": [ - "default.handlebars->47->3355" + "default.handlebars->47->3361" ] }, { @@ -20362,8 +20362,8 @@ "zh-cht": "複製連結到剪貼板", "uk": "Копіювати посилання до буфера обміну", "xloc": [ - "default.handlebars->47->2472", - "default.handlebars->47->2491", + "default.handlebars->47->2475", + "default.handlebars->47->2494", "default.handlebars->47->313", "default.handlebars->47->335", "default.handlebars->47->337", @@ -20518,7 +20518,7 @@ "zh-cht": "複製:“{0}”到“{1}”", "uk": "Копіювати: \\\"{0}\\\" до \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2565" + "default.handlebars->47->2568" ] }, { @@ -20727,7 +20727,7 @@ "zh-cht": "核心伺服器", "uk": "Центральний Сервер", "xloc": [ - "default.handlebars->47->3354" + "default.handlebars->47->3360" ] }, { @@ -20757,7 +20757,7 @@ "uk": "Корсиканська", "xloc": [ "default-mobile.handlebars->11->147", - "default.handlebars->47->1878", + "default.handlebars->47->1881", "login2.handlebars->7->41" ] }, @@ -20813,7 +20813,7 @@ "zh-cht": "創建帳號", "uk": "Створити Акаунт", "xloc": [ - "default.handlebars->47->2803", + "default.handlebars->47->2808", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->16->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->16->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->createpanelform->9->1->16->1->1" @@ -20900,7 +20900,7 @@ "zh-cht": "創建登錄令牌", "uk": "Створити Токен Входу", "xloc": [ - "default.handlebars->47->2063", + "default.handlebars->47->2066", "default.handlebars->47->338" ] }, @@ -20930,7 +20930,7 @@ "zh-cht": "創建用戶群", "uk": "Створити Групу Користувачів", "xloc": [ - "default.handlebars->47->2843" + "default.handlebars->47->2848" ] }, { @@ -20988,7 +20988,7 @@ "zh-cht": "使用以下選項創建一個新的裝置群。", "uk": "Створіть нову групу пристроїв за допомогою параметрів нижче.", "xloc": [ - "default.handlebars->47->2093" + "default.handlebars->47->2096" ] }, { @@ -21046,7 +21046,7 @@ "zh-cht": "創建一個臨時用戶名和密碼,可用作您帳戶的替代登錄名。這對於允許工具或其他服務訪問您的帳戶很有用。", "uk": "Створіть тимчасове ім'я користувача та пароль, які можна використовувати як альтернативний лоґін для входу до вашого акаунту. Це корисно, щоб надати засобам або іншим службам доступ до вашого акаунту.", "xloc": [ - "default.handlebars->47->2043" + "default.handlebars->47->2046" ] }, { @@ -21104,7 +21104,7 @@ "zh-cht": "創建文件夾:“{0}”", "uk": "Створити теку: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2558" + "default.handlebars->47->2561" ] }, { @@ -21183,7 +21183,7 @@ "nl": "Maak meerdere accounts tegelijk aan door een JSON of een CSV bestand te importeren", "uk": "Створіть кілька акаунтів одночасно, імпортувавши файл JSON або CSV", "xloc": [ - "default.handlebars->47->2760" + "default.handlebars->47->2765" ] }, { @@ -21243,7 +21243,7 @@ "zh-cht": "創建的設備組:{0}", "uk": "Створена група пристроїв: {0}", "xloc": [ - "default.handlebars->47->2569" + "default.handlebars->47->2572" ] }, { @@ -21353,7 +21353,7 @@ "zh-cht": "創建", "uk": "Створено", "xloc": [ - "default.handlebars->47->2951" + "default.handlebars->47->2956" ] }, { @@ -21382,7 +21382,7 @@ "zh-cht": "創作時間", "uk": "Час Створення", "xloc": [ - "default.handlebars->47->2172" + "default.handlebars->47->2175" ] }, { @@ -21442,8 +21442,8 @@ "zh-cht": "創作者", "uk": "Творець", "xloc": [ - "default.handlebars->47->2170", - "default.handlebars->47->2171" + "default.handlebars->47->2173", + "default.handlebars->47->2174" ] }, { @@ -21475,7 +21475,7 @@ "default-mobile.handlebars->11->543", "default.handlebars->47->1004", "default.handlebars->47->1386", - "default.handlebars->47->2131" + "default.handlebars->47->2134" ] }, { @@ -21505,7 +21505,7 @@ "uk": "Крі", "xloc": [ "default-mobile.handlebars->11->148", - "default.handlebars->47->1879", + "default.handlebars->47->1882", "login2.handlebars->7->42" ] }, @@ -21536,7 +21536,7 @@ "uk": "Хорватська", "xloc": [ "default-mobile.handlebars->11->149", - "default.handlebars->47->1880", + "default.handlebars->47->1883", "login2.handlebars->7->43" ] }, @@ -21835,8 +21835,8 @@ "zh-cht": "當前密碼不正確。", "uk": "Поточний пароль неправильний.", "xloc": [ - "default-mobile.handlebars->11->1045", - "default.handlebars->47->3274" + "default-mobile.handlebars->11->1046", + "default.handlebars->47->3280" ] }, { @@ -21958,7 +21958,7 @@ "uk": "Чеська", "xloc": [ "default-mobile.handlebars->11->150", - "default.handlebars->47->1881", + "default.handlebars->47->1884", "login2.handlebars->7->44" ] }, @@ -22047,7 +22047,7 @@ "uk": "Данська", "xloc": [ "default-mobile.handlebars->11->151", - "default.handlebars->47->1882", + "default.handlebars->47->1885", "login2.handlebars->7->45" ] }, @@ -22123,7 +22123,7 @@ "pl": "Zapisy Bazy Danych", "uk": "Записи Бази Даних", "xloc": [ - "default.handlebars->47->3148" + "default.handlebars->47->3154" ] }, { @@ -22153,7 +22153,7 @@ "uk": "Дата та Час", "xloc": [ "default-mobile.handlebars->11->309", - "default.handlebars->47->2040" + "default.handlebars->47->2043" ] }, { @@ -22184,8 +22184,8 @@ "xloc": [ "default-mobile.handlebars->11->613", "default.handlebars->47->1295", - "default.handlebars->47->3152", - "default.handlebars->47->3155" + "default.handlebars->47->3158", + "default.handlebars->47->3161" ] }, { @@ -22214,8 +22214,8 @@ "zh-cht": "停用", "uk": "Деактивувати", "xloc": [ - "default.handlebars->47->2202", - "default.handlebars->47->2266" + "default.handlebars->47->2205", + "default.handlebars->47->2269" ] }, { @@ -22244,7 +22244,7 @@ "zh-cht": "如果設置停用CCM", "uk": "Деактивувати CCM, якщо встановлено", "xloc": [ - "default.handlebars->47->2278" + "default.handlebars->47->2281" ] }, { @@ -22329,10 +22329,10 @@ "zh-cht": "默認", "uk": "Типовий", "xloc": [ - "default.handlebars->47->2790", - "default.handlebars->47->2839", - "default.handlebars->47->2850", - "default.handlebars->47->2924" + "default.handlebars->47->2795", + "default.handlebars->47->2844", + "default.handlebars->47->2855", + "default.handlebars->47->2929" ] }, { @@ -22397,7 +22397,7 @@ "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default-mobile.handlebars->dialog->idx_dlgButtonBar->5", "default.handlebars->47->1556", - "default.handlebars->47->2498", + "default.handlebars->47->2501", "default.handlebars->47->854", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -22438,7 +22438,7 @@ "uk": "Видалити Акаунт", "xloc": [ "default-mobile.handlebars->11->325", - "default.handlebars->47->2078" + "default.handlebars->47->2081" ] }, { @@ -22467,7 +22467,7 @@ "zh-cht": "刪除帳戶", "uk": "Видалити Акаунти", "xloc": [ - "default.handlebars->47->2747" + "default.handlebars->47->2752" ] }, { @@ -22555,10 +22555,10 @@ "zh-cht": "刪除群組", "uk": "Видалити Групу", "xloc": [ - "default-mobile.handlebars->11->952", - "default-mobile.handlebars->11->955", - "default.handlebars->47->2254", - "default.handlebars->47->2295" + "default-mobile.handlebars->11->953", + "default-mobile.handlebars->11->956", + "default.handlebars->47->2257", + "default.handlebars->47->2298" ] }, { @@ -22643,7 +22643,7 @@ "zh-cht": "刪除用戶", "uk": "Видалити Користувача", "xloc": [ - "default.handlebars->47->2997" + "default.handlebars->47->3003" ] }, { @@ -22672,8 +22672,8 @@ "zh-cht": "刪除用戶群組", "uk": "Видалити Групу Користувачів", "xloc": [ - "default.handlebars->47->2892", - "default.handlebars->47->2904" + "default.handlebars->47->2897", + "default.handlebars->47->2909" ] }, { @@ -22702,7 +22702,7 @@ "zh-cht": "刪除用戶群組", "uk": "Видалити Групи Користувачів", "xloc": [ - "default.handlebars->47->2837" + "default.handlebars->47->2842" ] }, { @@ -22731,7 +22731,7 @@ "zh-cht": "刪除用戶{0}", "uk": "Видалити Користувача {0}", "xloc": [ - "default.handlebars->47->3065" + "default.handlebars->47->3071" ] }, { @@ -22761,7 +22761,7 @@ "uk": "Видалити акаунт", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountActions->3->p2AccountPassActions->5->0", - "default.handlebars->47->2743", + "default.handlebars->47->2748", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -22820,7 +22820,7 @@ "zh-cht": "刪除群組", "uk": "Видалити групу", "xloc": [ - "default.handlebars->47->2833" + "default.handlebars->47->2838" ] }, { @@ -22878,7 +22878,7 @@ "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "uk": "Видалити рекурсивно: \\\"{0}\\\", {1} елемент(ів) видалено", "xloc": [ - "default.handlebars->47->2560" + "default.handlebars->47->2563" ] }, { @@ -22910,7 +22910,7 @@ "default-mobile.handlebars->11->368", "default-mobile.handlebars->11->715", "default.handlebars->47->1558", - "default.handlebars->47->2500", + "default.handlebars->47->2503", "sharing.handlebars->11->63" ] }, @@ -22940,7 +22940,7 @@ "zh-cht": "刪除用戶群組{0}?", "uk": "Видалити групу користувачів {0}?", "xloc": [ - "default.handlebars->47->2902" + "default.handlebars->47->2907" ] }, { @@ -22972,7 +22972,7 @@ "default-mobile.handlebars->11->367", "default-mobile.handlebars->11->714", "default.handlebars->47->1557", - "default.handlebars->47->2499", + "default.handlebars->47->2502", "sharing.handlebars->11->62" ] }, @@ -23031,7 +23031,7 @@ "zh-cht": "刪除:“{0}”", "uk": "Видалити: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2559" + "default.handlebars->47->2562" ] }, { @@ -23060,7 +23060,7 @@ "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "uk": "Видалити: \\\"{0}\\\", {1} елемент(ів) видалено", "xloc": [ - "default.handlebars->47->2561" + "default.handlebars->47->2564" ] }, { @@ -23107,7 +23107,7 @@ "pl": "Odmówiono zalogowania użytkownika z {0}, {1}, {2}", "uk": "Відмовлено у вході користувачу з {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2669" + "default.handlebars->47->2672" ] }, { @@ -23268,22 +23268,23 @@ "default-mobile.handlebars->11->491", "default-mobile.handlebars->11->492", "default-mobile.handlebars->11->631", - "default-mobile.handlebars->11->795", - "default-mobile.handlebars->11->938", - "default-mobile.handlebars->11->961", + "default-mobile.handlebars->11->741", + "default-mobile.handlebars->11->796", + "default-mobile.handlebars->11->939", + "default-mobile.handlebars->11->962", "default.handlebars->47->1365", "default.handlebars->47->159", "default.handlebars->47->1601", "default.handlebars->47->1628", "default.handlebars->47->1638", - "default.handlebars->47->2103", - "default.handlebars->47->2163", - "default.handlebars->47->2301", - "default.handlebars->47->2675", - "default.handlebars->47->2842", - "default.handlebars->47->2853", - "default.handlebars->47->2854", - "default.handlebars->47->2900", + "default.handlebars->47->2106", + "default.handlebars->47->2166", + "default.handlebars->47->2304", + "default.handlebars->47->2680", + "default.handlebars->47->2847", + "default.handlebars->47->2858", + "default.handlebars->47->2859", + "default.handlebars->47->2905", "default.handlebars->47->895", "default.handlebars->47->896", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" @@ -23345,12 +23346,12 @@ "default.handlebars->47->1088", "default.handlebars->47->1202", "default.handlebars->47->1484", - "default.handlebars->47->2232", - "default.handlebars->47->2307", - "default.handlebars->47->3125", - "default.handlebars->47->3185", - "default.handlebars->47->3235", - "default.handlebars->47->3330", + "default.handlebars->47->2235", + "default.handlebars->47->2310", + "default.handlebars->47->3131", + "default.handlebars->47->3191", + "default.handlebars->47->3241", + "default.handlebars->47->3336", "default.handlebars->47->860", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", @@ -23386,7 +23387,7 @@ "xloc": [ "default.handlebars->47->1092", "default.handlebars->47->1205", - "default.handlebars->47->2236" + "default.handlebars->47->2239" ] }, { @@ -23416,7 +23417,7 @@ "uk": "Стільниця + Термінал", "xloc": [ "default.handlebars->47->1089", - "default.handlebars->47->2233" + "default.handlebars->47->2236" ] }, { @@ -23447,7 +23448,7 @@ "xloc": [ "default.handlebars->47->1093", "default.handlebars->47->1207", - "default.handlebars->47->2237" + "default.handlebars->47->2240" ] }, { @@ -23505,7 +23506,7 @@ "zh-cht": "桌面多路復用", "uk": "Мультиплексна Стільниця", "xloc": [ - "default.handlebars->47->3335" + "default.handlebars->47->3341" ] }, { @@ -23534,9 +23535,9 @@ "zh-cht": "桌面通知", "uk": "Сповіщення Cтільниці", "xloc": [ - "default.handlebars->47->2183", - "default.handlebars->47->2861", - "default.handlebars->47->2966", + "default.handlebars->47->2186", + "default.handlebars->47->2866", + "default.handlebars->47->2971", "default.handlebars->47->966" ] }, @@ -23566,9 +23567,9 @@ "zh-cht": "桌面提示", "uk": "Запит до Стільниці", "xloc": [ - "default.handlebars->47->2182", - "default.handlebars->47->2860", - "default.handlebars->47->2965", + "default.handlebars->47->2185", + "default.handlebars->47->2865", + "default.handlebars->47->2970", "default.handlebars->47->965" ] }, @@ -23598,9 +23599,9 @@ "zh-cht": "桌面提示+工具欄", "uk": "Запит до Стільниці та Панелі Засобів", "xloc": [ - "default.handlebars->47->2180", - "default.handlebars->47->2858", - "default.handlebars->47->2963", + "default.handlebars->47->2183", + "default.handlebars->47->2863", + "default.handlebars->47->2968", "default.handlebars->47->963" ] }, @@ -23630,7 +23631,7 @@ "zh-cht": "桌面會話", "uk": "Cесія Стільниці", "xloc": [ - "default.handlebars->47->3118" + "default.handlebars->47->3124" ] }, { @@ -23745,9 +23746,9 @@ "zh-cht": "桌面工具欄", "uk": "Панель Засобів Стільниці", "xloc": [ - "default.handlebars->47->2181", - "default.handlebars->47->2859", - "default.handlebars->47->2964", + "default.handlebars->47->2184", + "default.handlebars->47->2864", + "default.handlebars->47->2969", "default.handlebars->47->964" ] }, @@ -23777,7 +23778,7 @@ "zh-cht": "僅桌面視圖", "uk": "Лише Перегляд Стільниці", "xloc": [ - "default.handlebars->47->2939" + "default.handlebars->47->2944" ] }, { @@ -23927,7 +23928,7 @@ "default-mobile.handlebars->11->570", "default.handlebars->47->1142", "default.handlebars->47->1167", - "default.handlebars->47->2398", + "default.handlebars->47->2401", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo", "default.handlebars->contextMenu->cxdetails" ] @@ -23987,14 +23988,14 @@ "zh-cht": "裝置", "uk": "Пристрій", "xloc": [ - "default-mobile.handlebars->11->789", + "default-mobile.handlebars->11->790", "default.handlebars->47->1622", - "default.handlebars->47->1826", - "default.handlebars->47->2335", + "default.handlebars->47->1829", + "default.handlebars->47->2338", "default.handlebars->47->283", - "default.handlebars->47->3084", - "default.handlebars->47->3151", - "default.handlebars->47->3169", + "default.handlebars->47->3090", + "default.handlebars->47->3157", + "default.handlebars->47->3175", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -24144,7 +24145,7 @@ "zh-cht": "設備詳情", "uk": "Деталі Пристрою", "xloc": [ - "default.handlebars->47->2359" + "default.handlebars->47->2362" ] }, { @@ -24203,18 +24204,18 @@ "uk": "Група Пристроїв", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->1023", - "default.handlebars->47->2330", + "default-mobile.handlebars->11->1024", "default.handlebars->47->2333", - "default.handlebars->47->2334", - "default.handlebars->47->2692", - "default.handlebars->47->2884", - "default.handlebars->47->2890", - "default.handlebars->47->3072", - "default.handlebars->47->3134", - "default.handlebars->47->3158", - "default.handlebars->47->3172", - "default.handlebars->47->3252" + "default.handlebars->47->2336", + "default.handlebars->47->2337", + "default.handlebars->47->2697", + "default.handlebars->47->2889", + "default.handlebars->47->2895", + "default.handlebars->47->3078", + "default.handlebars->47->3140", + "default.handlebars->47->3164", + "default.handlebars->47->3178", + "default.handlebars->47->3258" ] }, { @@ -24243,8 +24244,8 @@ "zh-cht": "裝置群用戶", "uk": "Користувач Групи Пристроїв", "xloc": [ - "default-mobile.handlebars->11->1012", - "default.handlebars->47->2405" + "default-mobile.handlebars->11->1013", + "default.handlebars->47->2408" ] }, { @@ -24274,11 +24275,11 @@ "uk": "Групи Пристроїв", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->3", - "default.handlebars->47->2708", - "default.handlebars->47->2827", - "default.handlebars->47->2871", - "default.handlebars->47->2960", - "default.handlebars->47->3308", + "default.handlebars->47->2713", + "default.handlebars->47->2832", + "default.handlebars->47->2876", + "default.handlebars->47->2965", + "default.handlebars->47->3314", "default.handlebars->container->column_l->p2->p2info->9" ] }, @@ -24397,7 +24398,7 @@ "xloc": [ "default-mobile.handlebars->11->629", "default.handlebars->47->1363", - "default.handlebars->47->3133", + "default.handlebars->47->3139", "default.handlebars->47->494", "default.handlebars->47->503", "player.handlebars->3->25" @@ -24459,7 +24460,7 @@ "zh-cht": "設備配對鏈接", "uk": "Посилання на Спарювання Пристроїв", "xloc": [ - "default-mobile.handlebars->11->966" + "default-mobile.handlebars->11->967" ] }, { @@ -24468,7 +24469,7 @@ "nl": "Apparaat is ingeschakeld", "uk": "Пристрій Увімкнено", "xloc": [ - "default.handlebars->47->2673" + "default.handlebars->47->2676" ] }, { @@ -24497,7 +24498,7 @@ "zh-cht": "設備推送", "uk": "Push Пристрій", "xloc": [ - "default.handlebars->47->2979" + "default.handlebars->47->2985" ] }, { @@ -24512,7 +24513,7 @@ "pl": "Zapis Powiadomień Push Urządzenia", "uk": "Запис Push-Сповіщень Пристрою", "xloc": [ - "default.handlebars->47->3232" + "default.handlebars->47->3238" ] }, { @@ -24527,7 +24528,7 @@ "pl": "Zapis SMBIOS urządzenia", "uk": "SMBIOS запис пристрою", "xloc": [ - "default.handlebars->47->3231" + "default.handlebars->47->3237" ] }, { @@ -24609,7 +24610,7 @@ "uk": "Посилання для Поширення Пристрою", "xloc": [ "default.handlebars->47->1085", - "default.handlebars->47->2229" + "default.handlebars->47->2232" ] }, { @@ -24759,10 +24760,10 @@ "default.handlebars->47->1111", "default.handlebars->47->1115", "default.handlebars->47->1119", - "default.handlebars->47->2066", - "default.handlebars->47->2432", - "default.handlebars->47->2436", - "default.handlebars->47->2440" + "default.handlebars->47->2069", + "default.handlebars->47->2435", + "default.handlebars->47->2439", + "default.handlebars->47->2443" ] }, { @@ -24794,10 +24795,10 @@ "default.handlebars->47->1112", "default.handlebars->47->1116", "default.handlebars->47->1120", - "default.handlebars->47->2067", - "default.handlebars->47->2433", - "default.handlebars->47->2437", - "default.handlebars->47->2441" + "default.handlebars->47->2070", + "default.handlebars->47->2436", + "default.handlebars->47->2440", + "default.handlebars->47->2444" ] }, { @@ -24826,7 +24827,7 @@ "zh-cht": "設備組已創建:{0}", "uk": "Створено групу пристроїв: {0}", "xloc": [ - "default.handlebars->47->2590" + "default.handlebars->47->2593" ] }, { @@ -24855,7 +24856,7 @@ "zh-cht": "設備組已刪除:{0}", "uk": "Групу пристроїв видалено: {0}", "xloc": [ - "default.handlebars->47->2591" + "default.handlebars->47->2594" ] }, { @@ -24884,7 +24885,7 @@ "zh-cht": "設備組成員身份已更改:{0}", "uk": "Змінено належність у групі пристроїв: {0}", "xloc": [ - "default.handlebars->47->2592" + "default.handlebars->47->2595" ] }, { @@ -24943,7 +24944,7 @@ "zh-cht": "設備組通知已更改", "uk": "Сповіщення групи пристроїв змінено", "xloc": [ - "default.handlebars->47->2587" + "default.handlebars->47->2590" ] }, { @@ -24958,7 +24959,7 @@ "pl": "Zapis grupy urządzeń", "uk": "Запис групи пристроїв", "xloc": [ - "default.handlebars->47->3217" + "default.handlebars->47->3223" ] }, { @@ -24987,7 +24988,7 @@ "zh-cht": "未刪除的設備組:{0}", "uk": "Відновлено групу пристроїв: {0}", "xloc": [ - "default.handlebars->47->2570" + "default.handlebars->47->2573" ] }, { @@ -25016,7 +25017,7 @@ "zh-cht": "設備組 {0} 已更改:{1}", "uk": "Групу пристроїв {0} змінено: {1}", "xloc": [ - "default.handlebars->47->2656" + "default.handlebars->47->2659" ] }, { @@ -25060,7 +25061,7 @@ "pl": "Zapisy informacji urządzenia", "uk": "Записи інформації про пристрій", "xloc": [ - "default.handlebars->47->3219" + "default.handlebars->47->3225" ] }, { @@ -25668,7 +25669,7 @@ "pl": "Zapisy zmiany stanu zasilania", "uk": "Записи про зміни стану живлення", "xloc": [ - "default.handlebars->47->3225" + "default.handlebars->47->3231" ] }, { @@ -25683,7 +25684,7 @@ "pl": "Zapis urządzenia", "uk": "Запис пристрою", "xloc": [ - "default.handlebars->47->3216" + "default.handlebars->47->3222" ] }, { @@ -25712,7 +25713,7 @@ "zh-cht": "設備請求 Intel(R) AMT ACM TLS 激活,FQDN:{0}", "uk": "Пристрій запитав активацію Intel(R) AMT ACM TLS, FQDN: {0}", "xloc": [ - "default.handlebars->47->2625" + "default.handlebars->47->2628" ] }, { @@ -25741,7 +25742,7 @@ "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "uk": "Пристрій запитав активацію Intel(R) AMT ACM, FQDN: {0}", "xloc": [ - "default.handlebars->47->2572" + "default.handlebars->47->2575" ] }, { @@ -25756,7 +25757,7 @@ "pl": "Zapisy udostępniania urządzenia", "uk": "Записи поширеного пристрою", "xloc": [ - "default.handlebars->47->3229" + "default.handlebars->47->3235" ] }, { @@ -25771,7 +25772,7 @@ "pl": "Zapisy urządzenia, użytkowników, grup i inne", "uk": "Пристрій, користувачі, групи та інші записи", "xloc": [ - "default.handlebars->47->3233" + "default.handlebars->47->3239" ] }, { @@ -25826,9 +25827,9 @@ "zh-cht": "裝置", "uk": "Пристрої", "xloc": [ - "default.handlebars->47->2252", - "default.handlebars->47->2828", - "default.handlebars->47->2872" + "default.handlebars->47->2255", + "default.handlebars->47->2833", + "default.handlebars->47->2877" ] }, { @@ -26057,11 +26058,17 @@ "zh-cht": "已禁用", "uk": "Вимкнено", "xloc": [ - "default-mobile.handlebars->11->772", + "default-mobile.handlebars->11->773", "default.handlebars->47->132", "default.handlebars->47->957" ] }, + { + "en": "Disabled Duo two-factor authentication", + "xloc": [ + "default.handlebars->47->2678" + ] + }, { "bs": "Onemogućena dvofaktorska autentikacija e-pošte", "ca": "S'ha desactivat l'autenticació de dos factors de correu electrònic", @@ -26088,7 +26095,7 @@ "zh-cht": "禁用的電子郵件兩因素身份驗證", "uk": "Двофакторну автентифікацію е-поштою вимкнено", "xloc": [ - "default.handlebars->47->2603" + "default.handlebars->47->2606" ] }, { @@ -26121,7 +26128,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10terminal->termTable->termarea1->1->3->disconnectbutton2span", - "default.handlebars->47->2193", + "default.handlebars->47->2196", "default.handlebars->47->976", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", @@ -26346,7 +26353,7 @@ "uk": "Discord", "xloc": [ "default.handlebars->47->1788", - "default.handlebars->47->3011" + "default.handlebars->47->3017" ] }, { @@ -26546,7 +26553,7 @@ "zh-cht": "顯示裝置群名稱", "uk": "Показ назви групи пристроїв", "xloc": [ - "default.handlebars->47->2065" + "default.handlebars->47->2068" ] }, { @@ -26604,7 +26611,7 @@ "zh-cht": "顯示公共鏈結", "uk": "Показати публічне посилання", "xloc": [ - "default.handlebars->47->2471" + "default.handlebars->47->2474" ] }, { @@ -26643,7 +26650,7 @@ "pl": "Wyświetl okno powiadomienia, tytuł=\\\"{0}\\\", wiadomość=\\\"{1}\\\"", "uk": "Показ вікна попередження, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2672" + "default.handlebars->47->2675" ] }, { @@ -26672,7 +26679,7 @@ "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "uk": "Показ вікна повідомлення, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2532" + "default.handlebars->47->2535" ] }, { @@ -26701,7 +26708,7 @@ "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "uk": "Показувати висувне повідомлення, title=\\\"{0}\\\", message=\\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2540" + "default.handlebars->47->2543" ] }, { @@ -26730,8 +26737,8 @@ "zh-cht": "什麼都不做", "uk": "Нічого не робити", "xloc": [ - "default.handlebars->47->2281", - "default.handlebars->47->2285" + "default.handlebars->47->2284", + "default.handlebars->47->2288" ] }, { @@ -26762,10 +26769,10 @@ "xloc": [ "default.handlebars->47->128", "default.handlebars->47->1389", - "default.handlebars->47->2791", - "default.handlebars->47->2840", - "default.handlebars->47->2849", - "default.handlebars->47->2923", + "default.handlebars->47->2796", + "default.handlebars->47->2845", + "default.handlebars->47->2854", + "default.handlebars->47->2928", "mstsc.handlebars->main->1->3->1->rowdomain->1->0", "mstsc.handlebars->main->1->3->1->rowdomain->3" ] @@ -26822,7 +26829,7 @@ "zh-cht": "請勿更改,如果設置請保留CCM", "uk": "Не змінювати, зберегти CCM, якщо встановлено", "xloc": [ - "default.handlebars->47->2277" + "default.handlebars->47->2280" ] }, { @@ -26877,7 +26884,7 @@ "zh-cht": "不要連接到伺服器", "uk": "Не підключатися до сервера", "xloc": [ - "default.handlebars->47->2286" + "default.handlebars->47->2289" ] }, { @@ -27284,7 +27291,7 @@ "zh-cht": "下載報告", "uk": "Завантажити Звіт", "xloc": [ - "default.handlebars->47->2697", + "default.handlebars->47->2702", "default.handlebars->container->column_l->p3->3->1->0->3", "default.handlebars->container->column_l->p60->3->1->0->3->1->p60downloadReportDiv" ] @@ -27402,7 +27409,7 @@ "zh-cht": "下載設備列表", "uk": "Отримати перелік пристроїв", "xloc": [ - "default.handlebars->47->2250" + "default.handlebars->47->2253" ] }, { @@ -27636,7 +27643,7 @@ "zh-cht": "使用以下一種檔案格式下載事件列表。", "uk": "Завантажте файл переліку подій в одному з наведених нижче форматів.", "xloc": [ - "default.handlebars->47->2698" + "default.handlebars->47->2703" ] }, { @@ -27665,7 +27672,7 @@ "zh-cht": "使用以下一種檔案格式下載用戶列表。", "uk": "Завантажити файл із переліком користувачів в одному з наведених нижче форматів.", "xloc": [ - "default.handlebars->47->2775" + "default.handlebars->47->2780" ] }, { @@ -27783,7 +27790,7 @@ "zh-cht": "下載:“{0}”", "uk": "Завантажити: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2563" + "default.handlebars->47->2566" ] }, { @@ -27812,7 +27819,7 @@ "zh-cht": "下載:\\\"{0}\\\",大小:{1}", "uk": "Завантажити: \\\"{0}\\\", Розмір: {1}", "xloc": [ - "default.handlebars->47->2620" + "default.handlebars->47->2623" ] }, { @@ -27844,6 +27851,20 @@ "player.handlebars->3->45" ] }, + { + "en": "Duo", + "xloc": [ + "default.handlebars->47->2983" + ] + }, + { + "en": "Duo Authentication", + "xloc": [ + "default.handlebars->47->1817", + "login2.handlebars->centralTable->1->0->logincell->resettokenpanel->resettokenpanelform->5->1->2farow2->1->3", + "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" + ] + }, { "bs": "Duplirani agent", "ca": "Agent duplicat", @@ -27870,7 +27891,7 @@ "zh-cht": "代理重複", "uk": "Дублювати Агента", "xloc": [ - "default.handlebars->47->3304" + "default.handlebars->47->3310" ] }, { @@ -27928,7 +27949,7 @@ "zh-cht": "複製用戶群", "uk": "Дублювати Групу Користувачів", "xloc": [ - "default.handlebars->47->2844" + "default.handlebars->47->2849" ] }, { @@ -27986,8 +28007,8 @@ "default.handlebars->47->1238", "default.handlebars->47->289", "default.handlebars->47->291", - "default.handlebars->47->3113", - "default.handlebars->47->3139", + "default.handlebars->47->3119", + "default.handlebars->47->3145", "player.handlebars->3->18" ] }, @@ -28044,7 +28065,7 @@ "uk": "Голландська (Бельгійська)", "xloc": [ "default-mobile.handlebars->11->153", - "default.handlebars->47->1884", + "default.handlebars->47->1887", "login2.handlebars->7->47" ] }, @@ -28075,7 +28096,7 @@ "uk": "Голландська (Стандартна)", "xloc": [ "default-mobile.handlebars->11->152", - "default.handlebars->47->1883", + "default.handlebars->47->1886", "login2.handlebars->7->46" ] }, @@ -28554,17 +28575,17 @@ "zh-cht": "編輯裝置群", "uk": "Редагувати Групу Пристроїв", "xloc": [ - "default-mobile.handlebars->11->956", - "default-mobile.handlebars->11->959", - "default-mobile.handlebars->11->962", - "default-mobile.handlebars->11->969", - "default-mobile.handlebars->11->989", - "default.handlebars->47->2296", + "default-mobile.handlebars->11->957", + "default-mobile.handlebars->11->960", + "default-mobile.handlebars->11->963", + "default-mobile.handlebars->11->970", + "default-mobile.handlebars->11->990", "default.handlebars->47->2299", "default.handlebars->47->2302", - "default.handlebars->47->2339", - "default.handlebars->47->2366", - "default.handlebars->47->2378" + "default.handlebars->47->2305", + "default.handlebars->47->2342", + "default.handlebars->47->2369", + "default.handlebars->47->2381" ] }, { @@ -28593,7 +28614,7 @@ "zh-cht": "編輯裝置群功能", "uk": "Редагувати Ознаки Групи Пристроїв", "xloc": [ - "default.handlebars->47->2325" + "default.handlebars->47->2328" ] }, { @@ -28622,8 +28643,8 @@ "zh-cht": "編輯裝置群權限", "uk": "Редагувати Дозволи Групи Пристроїв", "xloc": [ - "default.handlebars->47->2363", - "default.handlebars->47->2375" + "default.handlebars->47->2366", + "default.handlebars->47->2378" ] }, { @@ -28652,7 +28673,7 @@ "zh-cht": "編輯裝置群用戶同意", "uk": "Редагувати Згоду Користувача Групи Пристроїв", "xloc": [ - "default.handlebars->47->2303" + "default.handlebars->47->2306" ] }, { @@ -28681,8 +28702,8 @@ "zh-cht": "編輯裝置筆記", "uk": "Редагувати Нотатки Пристрою", "xloc": [ - "default-mobile.handlebars->11->981", - "default.handlebars->47->2353" + "default-mobile.handlebars->11->982", + "default.handlebars->47->2356" ] }, { @@ -28711,8 +28732,8 @@ "zh-cht": "編輯裝置權限", "uk": "Редагувати Дозволи Пристрою", "xloc": [ - "default.handlebars->47->2368", - "default.handlebars->47->2370" + "default.handlebars->47->2371", + "default.handlebars->47->2373" ] }, { @@ -28770,7 +28791,7 @@ "zh-cht": "編輯裝置用戶同意", "uk": "Редагувати Згоду Користувача Пристрою", "xloc": [ - "default.handlebars->47->2305" + "default.handlebars->47->2308" ] }, { @@ -28864,8 +28885,8 @@ "zh-cht": "編輯筆記", "uk": "Редагувати Примітки", "xloc": [ - "default-mobile.handlebars->11->996", - "default.handlebars->47->2385" + "default-mobile.handlebars->11->997", + "default.handlebars->47->2388" ] }, { @@ -28894,7 +28915,7 @@ "zh-cht": "編輯用戶同意", "uk": "Редагувати Згоду Користувача", "xloc": [ - "default.handlebars->47->2304" + "default.handlebars->47->2307" ] }, { @@ -28923,7 +28944,7 @@ "zh-cht": "編輯用戶裝置群權限", "uk": "Редагувати Дозволи Групи Пристроїв Користувача", "xloc": [ - "default.handlebars->47->2376" + "default.handlebars->47->2379" ] }, { @@ -28952,7 +28973,7 @@ "zh-cht": "編輯用戶裝置權限", "uk": "Редагувати Дозволи Пристрою Користувача", "xloc": [ - "default.handlebars->47->2371" + "default.handlebars->47->2374" ] }, { @@ -28981,7 +29002,7 @@ "zh-cht": "編輯用戶特徵", "uk": "Редагувати Ознаки Користувача", "xloc": [ - "default.handlebars->47->3048" + "default.handlebars->47->3054" ] }, { @@ -29010,7 +29031,7 @@ "zh-cht": "編輯用戶群", "uk": "Редагувати Групу Користувачів", "xloc": [ - "default.handlebars->47->2901" + "default.handlebars->47->2906" ] }, { @@ -29039,7 +29060,7 @@ "zh-cht": "編輯用戶群裝置權限", "uk": "Редагувати Дозволи Крупи Користувачів на Пристрої", "xloc": [ - "default.handlebars->47->2373" + "default.handlebars->47->2376" ] }, { @@ -29068,7 +29089,7 @@ "zh-cht": "編輯用戶組功能", "uk": "Редагувати Ознаки Групи Користувачів", "xloc": [ - "default.handlebars->47->2894" + "default.handlebars->47->2899" ] }, { @@ -29097,7 +29118,7 @@ "zh-cht": "編輯用戶組用戶同意", "uk": "Редагувати Згоду Користувача Групи Користувачів", "xloc": [ - "default.handlebars->47->2306" + "default.handlebars->47->2309" ] }, { @@ -29241,12 +29262,12 @@ "uk": "е-пошта", "xloc": [ "default-mobile.handlebars->11->319", - "default.handlebars->47->2793", - "default.handlebars->47->2927", - "default.handlebars->47->2929", - "default.handlebars->47->2977", - "default.handlebars->47->2990", - "default.handlebars->47->3051", + "default.handlebars->47->2798", + "default.handlebars->47->2932", + "default.handlebars->47->2934", + "default.handlebars->47->2982", + "default.handlebars->47->2996", + "default.handlebars->47->3057", "default.handlebars->47->545", "login-mobile.handlebars->5->45", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", @@ -29272,7 +29293,7 @@ "pl": "Email ({0})", "uk": "е-пошта ({0})", "xloc": [ - "default.handlebars->47->2195", + "default.handlebars->47->2198", "default.handlebars->47->978" ] }, @@ -29303,7 +29324,7 @@ "uk": "Змінити Адресу е-пошти", "xloc": [ "default-mobile.handlebars->11->320", - "default.handlebars->47->2074" + "default.handlebars->47->2077" ] }, { @@ -29458,7 +29479,7 @@ "uk": "Сповіщення е-поштою", "xloc": [ "default.handlebars->47->1114", - "default.handlebars->47->2435" + "default.handlebars->47->2438" ] }, { @@ -29514,7 +29535,7 @@ "uk": "Верифікація е-пошти", "xloc": [ "default-mobile.handlebars->11->318", - "default.handlebars->47->2072" + "default.handlebars->47->2075" ] }, { @@ -29543,8 +29564,8 @@ "zh-cht": "不允許使用電子郵件域 \\\"{0}\\\"。只允許 ({1})", "uk": "Домен е-пошти \\\"{0}\\\" заборонено. Дозволено лише ({1}).", "xloc": [ - "default-mobile.handlebars->11->1054", - "default.handlebars->47->3283" + "default-mobile.handlebars->11->1055", + "default.handlebars->47->3289" ] }, { @@ -29602,7 +29623,7 @@ "zh-cht": "電郵未驗證", "uk": "Е-пошта не верифікована", "xloc": [ - "default.handlebars->47->2728" + "default.handlebars->47->2733" ] }, { @@ -29631,8 +29652,8 @@ "zh-cht": "電子郵件已驗證", "uk": "Е-пошту верифіковано", "xloc": [ - "default.handlebars->47->2729", - "default.handlebars->47->2921" + "default.handlebars->47->2734", + "default.handlebars->47->2926" ] }, { @@ -29661,7 +29682,7 @@ "zh-cht": "電郵已驗證。", "uk": "Е-пошту верифіковано.", "xloc": [ - "default.handlebars->47->2799" + "default.handlebars->47->2804" ] }, { @@ -29690,7 +29711,7 @@ "zh-cht": "電郵未驗證", "uk": "Е-пошта не верифікована", "xloc": [ - "default.handlebars->47->2922" + "default.handlebars->47->2927" ] }, { @@ -29745,8 +29766,8 @@ "zh-cht": "電郵已發送。", "uk": "Е-пошту надіслано.", "xloc": [ - "default-mobile.handlebars->11->1038", - "default.handlebars->47->3267", + "default-mobile.handlebars->11->1039", + "default.handlebars->47->3273", "login-mobile.handlebars->5->2", "login.handlebars->5->2", "login2.handlebars->7->201" @@ -29835,7 +29856,7 @@ "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "uk": "Потрібно верифікувати е-пошту та примусово скинути пароль.", "xloc": [ - "default.handlebars->47->2800" + "default.handlebars->47->2805" ] }, { @@ -29890,7 +29911,7 @@ "zh-cht": "電子郵件/短信/推送流量", "uk": "е-пошта/SMS/Push обмін", "xloc": [ - "default.handlebars->47->3363" + "default.handlebars->47->3369" ] }, { @@ -29956,6 +29977,12 @@ "default.handlebars->container->dialog->dialogBody->dialog7->d7rdpkvm->5->d7rdpflags->15" ] }, + { + "en": "Enable Duo two-factor authentication.", + "xloc": [ + "default.handlebars->47->1819" + ] + }, { "bs": "Omogućite ugađanje fontova", "ca": "Habiliteu la suavització de fonts", @@ -30010,7 +30037,7 @@ "zh-cht": "啟用邀請代碼", "uk": "Увімкнути коди запрошення", "xloc": [ - "default.handlebars->47->2411" + "default.handlebars->47->2414" ] }, { @@ -30127,10 +30154,16 @@ "zh-cht": "已啟用", "uk": "Увімкнено", "xloc": [ - "default-mobile.handlebars->11->885", + "default-mobile.handlebars->11->886", "default.handlebars->47->131", "default.handlebars->47->1728", - "default.handlebars->47->3141" + "default.handlebars->47->3147" + ] + }, + { + "en": "Enabled Duo two-factor authentication", + "xloc": [ + "default.handlebars->47->2677" ] }, { @@ -30159,7 +30192,7 @@ "zh-cht": "啟用電子郵件兩因素身份驗證", "uk": "Увімкнено двофакторну автентифікацію е-поштою", "xloc": [ - "default.handlebars->47->2602" + "default.handlebars->47->2605" ] }, { @@ -30288,7 +30321,7 @@ "nl": "Versleuteling wordt uitgevoerd", "uk": "Виконується Шифрування", "xloc": [ - "default-mobile.handlebars->11->887", + "default-mobile.handlebars->11->888", "default.handlebars->47->1730" ] }, @@ -30348,7 +30381,7 @@ "zh-cht": "時間結束", "uk": "Час закінчення", "xloc": [ - "default.handlebars->47->3138" + "default.handlebars->47->3144" ] }, { @@ -30377,7 +30410,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "uk": "Завершено сесію стільниці \\\"{0}\\\" з {1} до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2525" + "default.handlebars->47->2528" ] }, { @@ -30406,7 +30439,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "uk": "Завершено сесію керування файлами \\\"{0}\\\" з {1} до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2526" + "default.handlebars->47->2529" ] }, { @@ -30435,7 +30468,7 @@ "zh-cht": "已結束本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2},{3} 秒", "uk": "Завершено сесію локальної ретрансляції \\\"{0}\\\", протокол {1} ​​до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2635" + "default.handlebars->47->2638" ] }, { @@ -30464,7 +30497,7 @@ "zh-cht": "從 {1} 到 {2} 結束的 Messenger 會話 \\\"{0}\\\",{3} 秒", "uk": "Завершено сесію месенджера \\\"{0}\\\" з {1} до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2626" + "default.handlebars->47->2629" ] }, { @@ -30493,7 +30526,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "uk": "Завершено сесію ретрансляції \\\"{0}\\\" від {1} до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2523" + "default.handlebars->47->2526" ] }, { @@ -30522,7 +30555,7 @@ "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "uk": "Завершено термінальну сесію \\\"{0}\\\" з {1} до {2}, {3} секунд(и)", "xloc": [ - "default.handlebars->47->2524" + "default.handlebars->47->2527" ] }, { @@ -30552,7 +30585,7 @@ "uk": "Англійська", "xloc": [ "default-mobile.handlebars->11->154", - "default.handlebars->47->1885", + "default.handlebars->47->1888", "login2.handlebars->7->48" ] }, @@ -30583,7 +30616,7 @@ "uk": "Англійська (Австралія)", "xloc": [ "default-mobile.handlebars->11->155", - "default.handlebars->47->1886", + "default.handlebars->47->1889", "login2.handlebars->7->49" ] }, @@ -30614,7 +30647,7 @@ "uk": "Англійська (Беліз)", "xloc": [ "default-mobile.handlebars->11->156", - "default.handlebars->47->1887", + "default.handlebars->47->1890", "login2.handlebars->7->50" ] }, @@ -30645,7 +30678,7 @@ "uk": "Англійська (Канада)", "xloc": [ "default-mobile.handlebars->11->157", - "default.handlebars->47->1888", + "default.handlebars->47->1891", "login2.handlebars->7->51" ] }, @@ -30676,7 +30709,7 @@ "uk": "Англійська (Ірландія)", "xloc": [ "default-mobile.handlebars->11->158", - "default.handlebars->47->1889", + "default.handlebars->47->1892", "login2.handlebars->7->52" ] }, @@ -30707,7 +30740,7 @@ "uk": "Англійська (Ямайка)", "xloc": [ "default-mobile.handlebars->11->159", - "default.handlebars->47->1890", + "default.handlebars->47->1893", "login2.handlebars->7->53" ] }, @@ -30738,7 +30771,7 @@ "uk": "Англійська (Нова Зеландія)", "xloc": [ "default-mobile.handlebars->11->160", - "default.handlebars->47->1891", + "default.handlebars->47->1894", "login2.handlebars->7->54" ] }, @@ -30769,7 +30802,7 @@ "uk": "Англійська (Філіппіни)", "xloc": [ "default-mobile.handlebars->11->161", - "default.handlebars->47->1892", + "default.handlebars->47->1895", "login2.handlebars->7->55" ] }, @@ -30800,7 +30833,7 @@ "uk": "Англійська (Південна Африка)", "xloc": [ "default-mobile.handlebars->11->162", - "default.handlebars->47->1893", + "default.handlebars->47->1896", "login2.handlebars->7->56" ] }, @@ -30831,7 +30864,7 @@ "uk": "Англійська (Трінідад і Тобаго)", "xloc": [ "default-mobile.handlebars->11->163", - "default.handlebars->47->1894", + "default.handlebars->47->1897", "login2.handlebars->7->57" ] }, @@ -30862,7 +30895,7 @@ "uk": "Англійська (Великобританія)", "xloc": [ "default-mobile.handlebars->11->164", - "default.handlebars->47->1895", + "default.handlebars->47->1898", "login2.handlebars->7->58" ] }, @@ -30893,7 +30926,7 @@ "uk": "Англійська (Сполучені Штати)", "xloc": [ "default-mobile.handlebars->11->165", - "default.handlebars->47->1896", + "default.handlebars->47->1899", "login2.handlebars->7->59" ] }, @@ -30924,7 +30957,7 @@ "uk": "Англійська (Зімбабве)", "xloc": [ "default-mobile.handlebars->11->166", - "default.handlebars->47->1897", + "default.handlebars->47->1900", "login2.handlebars->7->60" ] }, @@ -30983,8 +31016,8 @@ "default-mobile.handlebars->11->645", "default.handlebars->47->1411", "default.handlebars->47->1549", - "default.handlebars->47->2111", - "default.handlebars->47->2112", + "default.handlebars->47->2114", + "default.handlebars->47->2115", "sharing.handlebars->11->55" ] }, @@ -31014,7 +31047,7 @@ "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "uk": "Введіть розділений комами список імен адміністративних областей.", "xloc": [ - "default.handlebars->47->2804" + "default.handlebars->47->2809" ] }, { @@ -31448,8 +31481,8 @@ "zh-cht": "錯誤,邀請碼 \\\"{0}\\\" 已在使用中。", "uk": "Помилка, код запрошення \\\"{0}\\\" уже використовується.", "xloc": [ - "default-mobile.handlebars->11->1046", - "default.handlebars->47->3275" + "default-mobile.handlebars->11->1047", + "default.handlebars->47->3281" ] }, { @@ -31478,8 +31511,8 @@ "zh-cht": "錯誤,密碼未更改。", "uk": "Помилка, пароль не змінено.", "xloc": [ - "default-mobile.handlebars->11->1043", - "default.handlebars->47->3272" + "default-mobile.handlebars->11->1044", + "default.handlebars->47->3278" ] }, { @@ -31508,8 +31541,8 @@ "zh-cht": "錯誤,無法更改為常用密碼。", "uk": "Помилка, неможливо змінити пароль на широко використовуваний.", "xloc": [ - "default-mobile.handlebars->11->1042", - "default.handlebars->47->3271" + "default-mobile.handlebars->11->1043", + "default.handlebars->47->3277" ] }, { @@ -31538,8 +31571,8 @@ "zh-cht": "錯誤,無法更改為以前使用的密碼。", "uk": "Помилка, неможливо змінити на раніше використаний пароль.", "xloc": [ - "default-mobile.handlebars->11->1041", - "default.handlebars->47->3270" + "default-mobile.handlebars->11->1042", + "default.handlebars->47->3276" ] }, { @@ -31639,7 +31672,7 @@ "uk": "Есперанто", "xloc": [ "default-mobile.handlebars->11->167", - "default.handlebars->47->1898", + "default.handlebars->47->1901", "login2.handlebars->7->61" ] }, @@ -31696,7 +31729,7 @@ "uk": "Естонська", "xloc": [ "default-mobile.handlebars->11->168", - "default.handlebars->47->1899", + "default.handlebars->47->1902", "login2.handlebars->7->62" ] }, @@ -31781,7 +31814,7 @@ "zh-cht": "事件列表輸出", "uk": "Експортувати Перелік Подій", "xloc": [ - "default.handlebars->47->2703" + "default.handlebars->47->2708" ] }, { @@ -31796,7 +31829,7 @@ "pl": "Zapisy zdarzeń", "uk": "Записи подій", "xloc": [ - "default.handlebars->47->3226" + "default.handlebars->47->3232" ] }, { @@ -32005,7 +32038,7 @@ "uk": "Термін придатності", "xloc": [ "default.handlebars->47->1233", - "default.handlebars->47->2062", + "default.handlebars->47->2065", "default.handlebars->47->294" ] }, @@ -32064,7 +32097,7 @@ "zh-cht": "過期{0}", "uk": "Застаріє {0}", "xloc": [ - "default.handlebars->47->2125", + "default.handlebars->47->2128", "sharing.handlebars->11->100" ] }, @@ -32183,7 +32216,7 @@ "zh-cht": "外部", "uk": "Зовнішня", "xloc": [ - "default.handlebars->47->3343" + "default.handlebars->47->3349" ] }, { @@ -32212,7 +32245,7 @@ "zh-cht": "FIDO 密鑰", "uk": "ключ FIDO", "xloc": [ - "default.handlebars->47->3206" + "default.handlebars->47->3212" ] }, { @@ -32271,7 +32304,7 @@ "uk": "Македонська (КЮРМ)", "xloc": [ "default-mobile.handlebars->11->218", - "default.handlebars->47->1949", + "default.handlebars->47->1952", "login2.handlebars->7->112" ] }, @@ -32287,7 +32320,7 @@ "uk": "Facebook", "xloc": [ "default.handlebars->47->1800", - "default.handlebars->47->3023" + "default.handlebars->47->3029" ] }, { @@ -32317,7 +32350,7 @@ "uk": "Фарерська", "xloc": [ "default-mobile.handlebars->11->169", - "default.handlebars->47->1900", + "default.handlebars->47->1903", "login2.handlebars->7->63" ] }, @@ -32376,8 +32409,8 @@ "zh-cht": "更改電子郵件地址失敗,另一個帳戶已在使用:{0}。", "uk": "Не вдалося змінити адресу е-пошти, інший акаунт її вже використовує: {0}.", "xloc": [ - "default-mobile.handlebars->11->1037", - "default.handlebars->47->3266" + "default-mobile.handlebars->11->1038", + "default.handlebars->47->3272" ] }, { @@ -32463,7 +32496,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "uk": "Не вдалося запустити віддалену стільницю через відмову локального користувача", "xloc": [ - "default.handlebars->47->2548" + "default.handlebars->47->2551" ] }, { @@ -32518,7 +32551,7 @@ "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "uk": "Не вдалося запустити віддалені файли після відмови локальним користувачем", "xloc": [ - "default.handlebars->47->2555" + "default.handlebars->47->2558" ] }, { @@ -32606,7 +32639,7 @@ "uk": "Фарсі (Перська)", "xloc": [ "default-mobile.handlebars->11->170", - "default.handlebars->47->1901", + "default.handlebars->47->1904", "login2.handlebars->7->64" ] }, @@ -32667,9 +32700,9 @@ "zh-cht": "功能", "uk": "Ознаки", "xloc": [ - "default.handlebars->47->2179", - "default.handlebars->47->2857", - "default.handlebars->47->2948" + "default.handlebars->47->2182", + "default.handlebars->47->2862", + "default.handlebars->47->2953" ] }, { @@ -32699,7 +32732,7 @@ "uk": "Фіджійська", "xloc": [ "default-mobile.handlebars->11->171", - "default.handlebars->47->1902", + "default.handlebars->47->1905", "login2.handlebars->7->65" ] }, @@ -32760,7 +32793,7 @@ "xloc": [ "default-mobile.handlebars->11->718", "default.handlebars->47->1561", - "default.handlebars->47->2504", + "default.handlebars->47->2507", "default.handlebars->47->852", "sharing.handlebars->11->66" ] @@ -32862,9 +32895,9 @@ "pl": "System Plików", "uk": "Файлова система", "xloc": [ - "default-mobile.handlebars->11->883", - "default-mobile.handlebars->11->895", - "default-mobile.handlebars->11->902", + "default-mobile.handlebars->11->884", + "default-mobile.handlebars->11->896", + "default-mobile.handlebars->11->903", "default.handlebars->47->1726", "default.handlebars->47->1738", "default.handlebars->47->1745" @@ -32896,7 +32929,7 @@ "zh-cht": "文件傳輸", "uk": "Трансфер файлів", "xloc": [ - "default.handlebars->47->3119" + "default.handlebars->47->3125" ] }, { @@ -32958,12 +32991,12 @@ "default-mobile.handlebars->11->569", "default.handlebars->47->1090", "default.handlebars->47->1204", - "default.handlebars->47->2234", - "default.handlebars->47->2314", - "default.handlebars->47->3126", - "default.handlebars->47->3186", - "default.handlebars->47->3236", - "default.handlebars->47->3331", + "default.handlebars->47->2237", + "default.handlebars->47->2317", + "default.handlebars->47->3132", + "default.handlebars->47->3192", + "default.handlebars->47->3242", + "default.handlebars->47->3337", "default.handlebars->47->460", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles", @@ -33025,9 +33058,9 @@ "zh-cht": "檔案通知", "uk": "Сповіщення про файли", "xloc": [ - "default.handlebars->47->2187", - "default.handlebars->47->2865", - "default.handlebars->47->2970", + "default.handlebars->47->2190", + "default.handlebars->47->2870", + "default.handlebars->47->2975", "default.handlebars->47->970" ] }, @@ -33057,9 +33090,9 @@ "zh-cht": "檔案提示", "uk": "Запит файлів", "xloc": [ - "default.handlebars->47->2186", - "default.handlebars->47->2864", - "default.handlebars->47->2969", + "default.handlebars->47->2189", + "default.handlebars->47->2869", + "default.handlebars->47->2974", "default.handlebars->47->969" ] }, @@ -33215,7 +33248,7 @@ "zh-cht": "已完成錄製會話 \\\"{0}\\\",{1} 秒", "uk": "Сеанс запису завершено \\\"{0}\\\", {1} секунд(и)", "xloc": [ - "default.handlebars->47->2660" + "default.handlebars->47->2663" ] }, { @@ -33244,7 +33277,7 @@ "zh-cht": "錄製會話已完成,{0}秒", "uk": "Сеанс запису завершено, {0} секунд(и)", "xloc": [ - "default.handlebars->47->2521" + "default.handlebars->47->2524" ] }, { @@ -33274,7 +33307,7 @@ "uk": "Фінська", "xloc": [ "default-mobile.handlebars->11->172", - "default.handlebars->47->1903", + "default.handlebars->47->1906", "login2.handlebars->7->66" ] }, @@ -33310,8 +33343,8 @@ "zh-cht": "防火牆", "uk": "Фаєрвол", "xloc": [ - "default-mobile.handlebars->11->758", - "default-mobile.handlebars->11->760", + "default-mobile.handlebars->11->759", + "default-mobile.handlebars->11->761", "default.handlebars->47->943", "default.handlebars->47->945" ] @@ -33342,8 +33375,8 @@ "zh-cht": "防火牆未激活", "uk": "Фаєрвол не активний", "xloc": [ - "default.handlebars->47->2451", - "default.handlebars->47->2465" + "default.handlebars->47->2454", + "default.handlebars->47->2468" ] }, { @@ -33416,7 +33449,7 @@ "zh-cht": "標誌", "uk": "Прапорці", "xloc": [ - "default.handlebars->47->2676" + "default.handlebars->47->2681" ] }, { @@ -33764,8 +33797,8 @@ "zh-cht": "下次登入時強制重置密碼。", "uk": "Примусово скинути пароль під час наступного входу.", "xloc": [ - "default.handlebars->47->2798", - "default.handlebars->47->3062" + "default.handlebars->47->2803", + "default.handlebars->47->3068" ] }, { @@ -33794,7 +33827,7 @@ "zh-cht": "強行斷開用戶 {0} 的桌面會話", "uk": "Примусово перервано робочий сеанс користувача {0}", "xloc": [ - "default.handlebars->47->2648" + "default.handlebars->47->2651" ] }, { @@ -33823,7 +33856,7 @@ "zh-cht": "強制斷開用戶 {0} 的文件會話", "uk": "Примусово перервано файловий сеанс користувача {0}", "xloc": [ - "default.handlebars->47->2650" + "default.handlebars->47->2653" ] }, { @@ -33852,7 +33885,7 @@ "zh-cht": "強制斷開用戶 {0} 的路由會話", "uk": "Примусове відключення сеансу маршрутизації користувача {0}", "xloc": [ - "default.handlebars->47->2651" + "default.handlebars->47->2654" ] }, { @@ -33881,7 +33914,7 @@ "zh-cht": "強制斷開用戶 {0} 的終端會話", "uk": "Сеанс терміналу користувача {0} примусово припинено", "xloc": [ - "default.handlebars->47->2649" + "default.handlebars->47->2652" ] }, { @@ -34000,7 +34033,7 @@ "zh-cht": "格式化", "uk": "Формат", "xloc": [ - "default.handlebars->47->2694" + "default.handlebars->47->2699" ] }, { @@ -34086,8 +34119,8 @@ "zh-cht": "自由", "uk": "Вільно", "xloc": [ - "default.handlebars->47->3289", - "default.handlebars->47->3291" + "default.handlebars->47->3295", + "default.handlebars->47->3297" ] }, { @@ -34101,7 +34134,7 @@ "uk": "Безкоштовний сервіс від ntfy.sh", "xloc": [ "default.handlebars->47->1803", - "default.handlebars->47->3026" + "default.handlebars->47->3032" ] }, { @@ -34161,7 +34194,7 @@ "uk": "Французька (Бельгія)", "xloc": [ "default-mobile.handlebars->11->174", - "default.handlebars->47->1905", + "default.handlebars->47->1908", "login2.handlebars->7->68" ] }, @@ -34192,7 +34225,7 @@ "uk": "Французька (Канада)", "xloc": [ "default-mobile.handlebars->11->175", - "default.handlebars->47->1906", + "default.handlebars->47->1909", "login2.handlebars->7->69" ] }, @@ -34223,7 +34256,7 @@ "uk": "Французька (Франція)", "xloc": [ "default-mobile.handlebars->11->176", - "default.handlebars->47->1907", + "default.handlebars->47->1910", "login2.handlebars->7->70" ] }, @@ -34254,7 +34287,7 @@ "uk": "Французька (Люксембург)", "xloc": [ "default-mobile.handlebars->11->177", - "default.handlebars->47->1908", + "default.handlebars->47->1911", "login2.handlebars->7->71" ] }, @@ -34285,7 +34318,7 @@ "uk": "Французька (Монако)", "xloc": [ "default-mobile.handlebars->11->178", - "default.handlebars->47->1909", + "default.handlebars->47->1912", "login2.handlebars->7->72" ] }, @@ -34316,7 +34349,7 @@ "uk": "Французька (Стандартна)", "xloc": [ "default-mobile.handlebars->11->173", - "default.handlebars->47->1904", + "default.handlebars->47->1907", "login2.handlebars->7->67" ] }, @@ -34347,7 +34380,7 @@ "uk": "Французька (Швейцарія)", "xloc": [ "default-mobile.handlebars->11->179", - "default.handlebars->47->1910", + "default.handlebars->47->1913", "login2.handlebars->7->73" ] }, @@ -34378,7 +34411,7 @@ "uk": "Фризька", "xloc": [ "default-mobile.handlebars->11->180", - "default.handlebars->47->1911", + "default.handlebars->47->1914", "login2.handlebars->7->74" ] }, @@ -34409,7 +34442,7 @@ "uk": "Фріульська", "xloc": [ "default-mobile.handlebars->11->181", - "default.handlebars->47->1912", + "default.handlebars->47->1915", "login2.handlebars->7->75" ] }, @@ -34440,12 +34473,12 @@ "uk": "Повноправний Адміністратор", "xloc": [ "default-mobile.handlebars->11->346", - "default-mobile.handlebars->11->950", - "default-mobile.handlebars->11->968", - "default-mobile.handlebars->11->988", - "default.handlebars->47->2118", - "default.handlebars->47->2338", - "default.handlebars->47->2810" + "default-mobile.handlebars->11->951", + "default-mobile.handlebars->11->969", + "default-mobile.handlebars->11->989", + "default.handlebars->47->2121", + "default.handlebars->47->2341", + "default.handlebars->47->2815" ] }, { @@ -34474,7 +34507,7 @@ "zh-cht": "完整管理員(保留所有權利)", "uk": "Повноправний Адміністратор (усі дозволи)", "xloc": [ - "default.handlebars->47->2377" + "default.handlebars->47->2380" ] }, { @@ -34648,7 +34681,7 @@ "zh-cht": "完整管理員", "uk": "Повноправний Адміністратор", "xloc": [ - "default.handlebars->47->2915" + "default.handlebars->47->2920" ] }, { @@ -34677,8 +34710,8 @@ "zh-cht": "全自動的", "uk": "Повністю Автоматичний", "xloc": [ - "default.handlebars->47->2207", - "default.handlebars->47->2268" + "default.handlebars->47->2210", + "default.handlebars->47->2271" ] }, { @@ -34687,7 +34720,7 @@ "nl": "Volledig gedecodeerd", "uk": "Повністю Розшифрований", "xloc": [ - "default-mobile.handlebars->11->886", + "default-mobile.handlebars->11->887", "default.handlebars->47->1729" ] }, @@ -34697,7 +34730,7 @@ "nl": "Volledig gecodeerd", "uk": "Повністю Зашифрований", "xloc": [ - "default-mobile.handlebars->11->888", + "default-mobile.handlebars->11->889", "default.handlebars->47->1731" ] }, @@ -34756,7 +34789,7 @@ "zh-cht": "GPU", "uk": "GPU", "xloc": [ - "default-mobile.handlebars->11->840", + "default-mobile.handlebars->11->841", "default.handlebars->47->1683" ] }, @@ -34787,7 +34820,7 @@ "uk": "Ґельська (Ірландська)", "xloc": [ "default-mobile.handlebars->11->183", - "default.handlebars->47->1914", + "default.handlebars->47->1917", "login2.handlebars->7->77" ] }, @@ -34818,7 +34851,7 @@ "uk": "Ґельська (Шотландська)", "xloc": [ "default-mobile.handlebars->11->182", - "default.handlebars->47->1913", + "default.handlebars->47->1916", "login2.handlebars->7->76" ] }, @@ -34848,7 +34881,7 @@ "zh-cht": "加拉契語", "xloc": [ "default-mobile.handlebars->11->184", - "default.handlebars->47->1915", + "default.handlebars->47->1918", "login2.handlebars->7->78" ] }, @@ -34906,7 +34939,7 @@ "zh-cht": "網關:{0}", "uk": "Шлюз: {0}", "xloc": [ - "default-mobile.handlebars->11->802", + "default-mobile.handlebars->11->803", "default.handlebars->47->1645" ] }, @@ -35058,7 +35091,7 @@ "zh-cht": "生成報告", "uk": "Згенерувати звіт", "xloc": [ - "default.handlebars->47->3167" + "default.handlebars->47->3173" ] }, { @@ -35117,7 +35150,7 @@ "uk": "Грузинська", "xloc": [ "default-mobile.handlebars->11->185", - "default.handlebars->47->1916", + "default.handlebars->47->1919", "login2.handlebars->7->79" ] }, @@ -35148,7 +35181,7 @@ "uk": "Німецька (Австрія)", "xloc": [ "default-mobile.handlebars->11->187", - "default.handlebars->47->1918", + "default.handlebars->47->1921", "login2.handlebars->7->81" ] }, @@ -35179,7 +35212,7 @@ "uk": "Німецька (Німеччина)", "xloc": [ "default-mobile.handlebars->11->188", - "default.handlebars->47->1919", + "default.handlebars->47->1922", "login2.handlebars->7->82" ] }, @@ -35210,7 +35243,7 @@ "uk": "Німецька (Ліхтенштейн)", "xloc": [ "default-mobile.handlebars->11->189", - "default.handlebars->47->1920", + "default.handlebars->47->1923", "login2.handlebars->7->83" ] }, @@ -35241,7 +35274,7 @@ "uk": "Німецька (Люксембург)", "xloc": [ "default-mobile.handlebars->11->190", - "default.handlebars->47->1921", + "default.handlebars->47->1924", "login2.handlebars->7->84" ] }, @@ -35272,7 +35305,7 @@ "uk": "Німецька (Cтандартна)", "xloc": [ "default-mobile.handlebars->11->186", - "default.handlebars->47->1917", + "default.handlebars->47->1920", "login2.handlebars->7->80" ] }, @@ -35303,7 +35336,7 @@ "uk": "Німецька (Швейцарія)", "xloc": [ "default-mobile.handlebars->11->191", - "default.handlebars->47->1922", + "default.handlebars->47->1925", "login2.handlebars->7->85" ] }, @@ -35421,7 +35454,7 @@ "zh-cht": "正在獲取剪貼板內容,{0}個字節", "uk": "Отримання вмісту буфера, {0} байт(ів)", "xloc": [ - "default.handlebars->47->2535" + "default.handlebars->47->2538" ] }, { @@ -35600,7 +35633,7 @@ "zh-cht": "好", "uk": "Добре", "xloc": [ - "default.handlebars->47->2114" + "default.handlebars->47->2117" ] }, { @@ -35663,8 +35696,8 @@ "zh-cht": "Google雲端硬盤備份", "uk": "Резервне копіювання до Google Drive", "xloc": [ - "default.handlebars->47->2135", "default.handlebars->47->2138", + "default.handlebars->47->2141", "default.handlebars->47->322" ] }, @@ -35694,7 +35727,7 @@ "zh-cht": "Google雲端硬盤控制台", "uk": "Консоль Google Drive", "xloc": [ - "default.handlebars->47->2132" + "default.handlebars->47->2135" ] }, { @@ -35752,7 +35785,7 @@ "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "uk": "Резервне копіювання Google Drive активне.", "xloc": [ - "default.handlebars->47->2136" + "default.handlebars->47->2139" ] }, { @@ -35808,7 +35841,7 @@ "uk": "Грецька", "xloc": [ "default-mobile.handlebars->11->192", - "default.handlebars->47->1923", + "default.handlebars->47->1926", "login2.handlebars->7->86" ] }, @@ -35839,7 +35872,7 @@ "uk": "Групу", "xloc": [ "default-mobile.handlebars->11->484", - "default.handlebars->47->3183", + "default.handlebars->47->3189", "default.handlebars->47->887", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] @@ -35870,8 +35903,8 @@ "zh-cht": "集體指令", "uk": "Групова Дія", "xloc": [ - "default.handlebars->47->2744", - "default.handlebars->47->2834", + "default.handlebars->47->2749", + "default.handlebars->47->2839", "default.handlebars->47->749", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -35904,7 +35937,7 @@ "zh-cht": "通過...分群", "uk": "Групувати як", "xloc": [ - "default.handlebars->47->2690" + "default.handlebars->47->2695" ] }, { @@ -35934,7 +35967,7 @@ "uk": "Ідентифікатор групи", "xloc": [ "agent-translations.json", - "default.handlebars->47->2851" + "default.handlebars->47->2856" ] }, { @@ -35963,7 +35996,7 @@ "zh-cht": "群組成員", "uk": "Учасники Групи", "xloc": [ - "default.handlebars->47->2876" + "default.handlebars->47->2881" ] }, { @@ -36007,7 +36040,7 @@ "pl": "Typ Grupy", "uk": "Тип Групи", "xloc": [ - "default.handlebars->47->2852" + "default.handlebars->47->2857" ] }, { @@ -36036,8 +36069,8 @@ "zh-cht": "通過...分群", "uk": "Групувати як", "xloc": [ - "default.handlebars->47->3153", - "default.handlebars->47->3156" + "default.handlebars->47->3159", + "default.handlebars->47->3162" ] }, { @@ -36066,7 +36099,7 @@ "zh-cht": "團隊名字", "uk": "Ім'я групи", "xloc": [ - "default.handlebars->47->2674" + "default.handlebars->47->2679" ] }, { @@ -36095,7 +36128,7 @@ "zh-cht": "用戶{0}的群組權限。", "uk": "Дозволи групи для користувача {0}.", "xloc": [ - "default.handlebars->47->2337" + "default.handlebars->47->2340" ] }, { @@ -36124,7 +36157,7 @@ "zh-cht": "{0}的群組權限。", "uk": "Групові дозволи для {0}.", "xloc": [ - "default.handlebars->47->2336" + "default.handlebars->47->2339" ] }, { @@ -36240,7 +36273,7 @@ "zh-cht": "來賓", "uk": "Гость", "xloc": [ - "default.handlebars->47->3173" + "default.handlebars->47->3179" ] }, { @@ -36329,7 +36362,7 @@ "zh-cht": "嘉賓分享", "uk": "Гостьове Поширення", "xloc": [ - "default.handlebars->47->2345" + "default.handlebars->47->2348" ] }, { @@ -36359,7 +36392,7 @@ "uk": "Гуджараті", "xloc": [ "default-mobile.handlebars->11->193", - "default.handlebars->47->1924", + "default.handlebars->47->1927", "login2.handlebars->7->87" ] }, @@ -36392,7 +36425,7 @@ "default-mobile.handlebars->11->553", "default.handlebars->47->1040", "default.handlebars->47->1208", - "default.handlebars->47->3327", + "default.handlebars->47->3333", "default.handlebars->47->438" ] }, @@ -36477,7 +36510,7 @@ "uk": "HTTP/", "xloc": [ "default.handlebars->47->1094", - "default.handlebars->47->2238" + "default.handlebars->47->2241" ] }, { @@ -36607,7 +36640,7 @@ "uk": "HTTPS/", "xloc": [ "default.handlebars->47->1095", - "default.handlebars->47->2239" + "default.handlebars->47->2242" ] }, { @@ -36696,7 +36729,7 @@ "uk": "Гаїтянська", "xloc": [ "default-mobile.handlebars->11->194", - "default.handlebars->47->1925", + "default.handlebars->47->1928", "login2.handlebars->7->88" ] }, @@ -36712,7 +36745,7 @@ "uk": "Обробка", "xloc": [ "default.handlebars->47->1796", - "default.handlebars->47->3019" + "default.handlebars->47->3025" ] }, { @@ -36799,7 +36832,7 @@ "zh-cht": "強行斷開代理", "uk": "Жорстке відключення агента", "xloc": [ - "default-mobile.handlebars->11->927", + "default-mobile.handlebars->11->928", "default.handlebars->47->1771" ] }, @@ -36829,7 +36862,7 @@ "zh-cht": "硬件一次性密碼", "uk": "Апаратний OTP", "xloc": [ - "default.handlebars->47->3208" + "default.handlebars->47->3214" ] }, { @@ -36858,7 +36891,7 @@ "zh-cht": "堆總數", "uk": "Загальна купа(Heap)", "xloc": [ - "default.handlebars->47->3345" + "default.handlebars->47->3351" ] }, { @@ -36887,7 +36920,7 @@ "zh-cht": "堆使用", "uk": "Використана купа(Heap)", "xloc": [ - "default.handlebars->47->3344" + "default.handlebars->47->3350" ] }, { @@ -36917,7 +36950,7 @@ "uk": "Іврит", "xloc": [ "default-mobile.handlebars->11->195", - "default.handlebars->47->1926", + "default.handlebars->47->1929", "login2.handlebars->7->89" ] }, @@ -37032,7 +37065,7 @@ "zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}", "uk": "Запит допомоги, користувач: {0}, деталі: {1}", "xloc": [ - "default.handlebars->47->2612" + "default.handlebars->47->2615" ] }, { @@ -37108,8 +37141,8 @@ "xloc": [ "default.handlebars->47->1117", "default.handlebars->47->1121", - "default.handlebars->47->2438", - "default.handlebars->47->2442" + "default.handlebars->47->2441", + "default.handlebars->47->2445" ] }, { @@ -37139,7 +37172,7 @@ "uk": "Прошу, допоможіть із перекладом MeshCentral", "xloc": [ "default-mobile.handlebars->11->310", - "default.handlebars->47->2041" + "default.handlebars->47->2044" ] }, { @@ -37289,7 +37322,7 @@ "uk": "Хінді", "xloc": [ "default-mobile.handlebars->11->196", - "default.handlebars->47->1927", + "default.handlebars->47->1930", "login2.handlebars->7->90" ] }, @@ -37470,7 +37503,7 @@ "uk": "Утримано {0} запис{1} для {2}", "xloc": [ "default-mobile.handlebars->11->373", - "default.handlebars->47->2508" + "default.handlebars->47->2511" ] }, { @@ -37533,12 +37566,12 @@ "default-mobile.handlebars->11->487", "default-mobile.handlebars->11->489", "default-mobile.handlebars->11->630", - "default-mobile.handlebars->11->792", - "default-mobile.handlebars->11->943", + "default-mobile.handlebars->11->793", + "default-mobile.handlebars->11->944", "default.handlebars->47->1364", "default.handlebars->47->1625", - "default.handlebars->47->2107", - "default.handlebars->47->2168", + "default.handlebars->47->2110", + "default.handlebars->47->2171", "default.handlebars->47->495", "default.handlebars->47->504", "default.handlebars->47->892" @@ -37570,7 +37603,7 @@ "zh-cht": "主機名同步", "uk": "Синхронізація Імені Хоста", "xloc": [ - "default.handlebars->47->2175" + "default.handlebars->47->2178" ] }, { @@ -37610,7 +37643,7 @@ "uk": "Мадярська", "xloc": [ "default-mobile.handlebars->11->197", - "default.handlebars->47->1928", + "default.handlebars->47->1931", "login2.handlebars->7->91" ] }, @@ -37669,8 +37702,8 @@ "zh-cht": "IP地址", "uk": "IP-адреса", "xloc": [ - "default.handlebars->47->3178", - "default.handlebars->47->3214" + "default.handlebars->47->3184", + "default.handlebars->47->3220" ] }, { @@ -37798,7 +37831,7 @@ "pl": "Zapisy o informacji lokalizacji IP", "uk": "Інформаційні записи про локацію IP", "xloc": [ - "default.handlebars->47->3220" + "default.handlebars->47->3226" ] }, { @@ -37860,7 +37893,7 @@ "zh-cht": "IP-KVM / 電源設備", "uk": "IP-KVM / Електроживлення", "xloc": [ - "default.handlebars->47->2097" + "default.handlebars->47->2100" ] }, { @@ -37889,7 +37922,7 @@ "zh-cht": "IP-KVM / 通過代理中繼的電源設備", "uk": "IP-KVM / Керування живленням ретранслюється через агента", "xloc": [ - "default.handlebars->47->2098" + "default.handlebars->47->2101" ] }, { @@ -37918,8 +37951,8 @@ "zh-cht": "IP-KVM 設備", "uk": "Пристрій IP-KVM", "xloc": [ - "default-mobile.handlebars->11->935", - "default.handlebars->47->2160" + "default-mobile.handlebars->11->936", + "default.handlebars->47->2163" ] }, { @@ -37948,8 +37981,8 @@ "zh-cht": "通過代理中繼的 IP-KVM 設備", "uk": "Пристрій IP-KVM ретранслюється через агента", "xloc": [ - "default-mobile.handlebars->11->936", - "default.handlebars->47->2161" + "default-mobile.handlebars->11->937", + "default.handlebars->47->2164" ] }, { @@ -38066,7 +38099,7 @@ "zh-cht": "IP:{0}", "uk": "IP: {0}", "xloc": [ - "default-mobile.handlebars->11->800", + "default-mobile.handlebars->11->801", "default.handlebars->47->1636", "default.handlebars->47->1643" ] @@ -38126,7 +38159,7 @@ "zh-cht": "IPv4層", "uk": "IPv4 рівень", "xloc": [ - "default-mobile.handlebars->11->803", + "default-mobile.handlebars->11->804", "default.handlebars->47->1633", "default.handlebars->47->1635", "default.handlebars->47->1646" @@ -38248,7 +38281,7 @@ "zh-cht": "IPv6層", "uk": "IPv6 рівень", "xloc": [ - "default-mobile.handlebars->11->805", + "default-mobile.handlebars->11->806", "default.handlebars->47->1648" ] }, @@ -38366,7 +38399,7 @@ "uk": "Ісландська", "xloc": [ "default-mobile.handlebars->11->198", - "default.handlebars->47->1929", + "default.handlebars->47->1932", "login2.handlebars->7->92" ] }, @@ -38426,10 +38459,10 @@ "zh-cht": "識別符", "uk": "Ідентифікатор", "xloc": [ - "default-mobile.handlebars->11->791", - "default-mobile.handlebars->11->812", - "default-mobile.handlebars->11->838", - "default-mobile.handlebars->11->906", + "default-mobile.handlebars->11->792", + "default-mobile.handlebars->11->813", + "default-mobile.handlebars->11->839", + "default-mobile.handlebars->11->907", "default.handlebars->47->1624", "default.handlebars->47->1655", "default.handlebars->47->1681", @@ -38462,7 +38495,7 @@ "zh-cht": "如果在CCM中,請重新激活英特爾®AMT", "uk": "Якщо в CCM, повторно активувати Intel® AMT", "xloc": [ - "default.handlebars->47->2282" + "default.handlebars->47->2285" ] }, { @@ -38654,7 +38687,7 @@ "pl": "Importuj", "uk": "Імпорт", "xloc": [ - "default.handlebars->47->2214" + "default.handlebars->47->2217" ] }, { @@ -38695,9 +38728,9 @@ "zh-cht": "導入英特爾® AMT 設備", "uk": "Імпортувати пристрої Intel® AMT", "xloc": [ - "default.handlebars->47->2256", - "default.handlebars->47->2257", - "default.handlebars->47->2261" + "default.handlebars->47->2259", + "default.handlebars->47->2260", + "default.handlebars->47->2264" ] }, { @@ -38712,7 +38745,7 @@ "pl": "Importuj urządzenia Intel® AMT.", "uk": "Імпортувати пристрої Intel® AMT.", "xloc": [ - "default.handlebars->47->2213" + "default.handlebars->47->2216" ] }, { @@ -38741,7 +38774,7 @@ "zh-cht": "以 MeshCommander JSON 格式導入本地英特爾® AMT 設備列表。", "uk": "Імпортувати Перелік локальних пристроїв Intel® AMT у форматі MeshCommander JSON.", "xloc": [ - "default.handlebars->47->2255" + "default.handlebars->47->2258" ] }, { @@ -38770,7 +38803,7 @@ "zh-cht": "導入設備列表", "uk": "Імпортувати перелік пристроїв", "xloc": [ - "default.handlebars->47->2251" + "default.handlebars->47->2254" ] }, { @@ -38809,7 +38842,7 @@ "zh-cht": "為了使用推送通知身份驗證,必須在您的帳戶中設置具有完全權限的移動設備。", "uk": "Щоб використовувати автентифікацію push-повідомлень, у вашому обліковому записі має бути налаштовано мобільний пристрій із повними правами.", "xloc": [ - "default.handlebars->47->1824" + "default.handlebars->47->1827" ] }, { @@ -38838,7 +38871,7 @@ "zh-cht": "停用天數直到移除", "uk": "Інактивувати дні до видалення", "xloc": [ - "default.handlebars->47->2322" + "default.handlebars->47->2325" ] }, { @@ -39006,8 +39039,8 @@ "zh-cht": "第二個因素不正確", "uk": "Помилковий 2FA код", "xloc": [ - "default.handlebars->47->3201", - "default.handlebars->47->3240" + "default.handlebars->47->3207", + "default.handlebars->47->3246" ] }, { @@ -39098,7 +39131,7 @@ "uk": "Індонезійська", "xloc": [ "default-mobile.handlebars->11->199", - "default.handlebars->47->1930", + "default.handlebars->47->1933", "login2.handlebars->7->93" ] }, @@ -39172,7 +39205,7 @@ "uk": "Інформація про Pushover.net", "xloc": [ "default.handlebars->47->1802", - "default.handlebars->47->3025" + "default.handlebars->47->3031" ] }, { @@ -39401,7 +39434,7 @@ "zh-cht": "在此設備上安裝", "uk": "Інсталювати на цьому пристрої", "xloc": [ - "default-mobile.handlebars->11->947" + "default-mobile.handlebars->11->948" ] }, { @@ -39430,7 +39463,7 @@ "zh-cht": "在您的 Android 設備上安裝 MeshCentral Agent。安裝後,單擊配對鏈接將您的設備連接到此服務器。", "uk": "Інсталювати MeshCentral Agent на свій пристрій Android. Після інсталювання клікніть посилання для сполучення, щоб підключити пристрій до цього сервера.", "xloc": [ - "default-mobile.handlebars->11->963" + "default-mobile.handlebars->11->964" ] }, { @@ -39512,8 +39545,8 @@ "uk": "Тип Інсталяції", "xloc": [ "agentinvite.handlebars->3->7", - "default.handlebars->47->2419", - "default.handlebars->47->2426", + "default.handlebars->47->2422", + "default.handlebars->47->2429", "default.handlebars->47->561", "default.handlebars->47->582", "default.handlebars->47->599", @@ -39598,7 +39631,7 @@ "zh-cht": "英特爾AMT", "uk": "Intel AMT", "xloc": [ - "default.handlebars->47->3341" + "default.handlebars->47->3347" ] }, { @@ -39714,7 +39747,7 @@ "zh-cht": "英特爾 AMT 經理", "uk": "Менеджер Intel AMT", "xloc": [ - "default.handlebars->47->3371" + "default.handlebars->47->3377" ] }, { @@ -39806,11 +39839,11 @@ "default-mobile.handlebars->11->521", "default-mobile.handlebars->11->528", "default.handlebars->47->1075", - "default.handlebars->47->2194", - "default.handlebars->47->2208", - "default.handlebars->47->2446", - "default.handlebars->47->2459", - "default.handlebars->47->3370", + "default.handlebars->47->2197", + "default.handlebars->47->2211", + "default.handlebars->47->2449", + "default.handlebars->47->2462", + "default.handlebars->47->3376", "default.handlebars->47->862", "default.handlebars->47->929", "default.handlebars->47->977", @@ -40122,7 +40155,7 @@ "zh-cht": "Intel® AMT政策", "uk": "Полісі Intel® AMT", "xloc": [ - "default.handlebars->47->2269" + "default.handlebars->47->2272" ] }, { @@ -40271,8 +40304,8 @@ "zh-cht": "Intel® AMT重定向", "uk": "Перенаправлення Intel® AMT", "xloc": [ - "default.handlebars->47->3121", - "default.handlebars->47->3128", + "default.handlebars->47->3127", + "default.handlebars->47->3134", "player.handlebars->3->30" ] }, @@ -40383,8 +40416,8 @@ "zh-cht": "Intle® AMT WSMAN", "uk": "Intel® AMT WSMAN", "xloc": [ - "default.handlebars->47->3120", - "default.handlebars->47->3127", + "default.handlebars->47->3126", + "default.handlebars->47->3133", "player.handlebars->3->29" ] }, @@ -40472,8 +40505,8 @@ "uk": "Події Intel® AMT для стільниці та послідовного порту", "xloc": [ "default.handlebars->47->1113", - "default.handlebars->47->2068", - "default.handlebars->47->2434" + "default.handlebars->47->2071", + "default.handlebars->47->2437" ] }, { @@ -40767,9 +40800,9 @@ "zh-cht": "僅限Intel® AMT,無代理", "uk": "Лише Intel® AMT, без агента", "xloc": [ - "default-mobile.handlebars->11->931", - "default.handlebars->47->2101", - "default.handlebars->47->2156" + "default-mobile.handlebars->11->932", + "default.handlebars->47->2104", + "default.handlebars->47->2159" ] }, { @@ -40891,7 +40924,7 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "uk": "Технологія Intel® Active Management (Intel® AMT)", "xloc": [ - "default-mobile.handlebars->11->828", + "default-mobile.handlebars->11->829", "default.handlebars->47->1671" ] }, @@ -41039,7 +41072,7 @@ "zh-cht": "英特爾® 標準可管理性(英特爾® SM)", "uk": "Стандартне Управління Intel® (Intel® SM)", "xloc": [ - "default-mobile.handlebars->11->827", + "default-mobile.handlebars->11->828", "default.handlebars->47->1670" ] }, @@ -41127,7 +41160,7 @@ "zh-cht": "英特爾(r) AMT 政策變更", "uk": "Зміна полісі Intel(r) AMT", "xloc": [ - "default.handlebars->47->2655" + "default.handlebars->47->2658" ] }, { @@ -41409,8 +41442,8 @@ "uk": "Лише Інтерактивний", "xloc": [ "agentinvite.handlebars->3->10", - "default.handlebars->47->2422", - "default.handlebars->47->2428", + "default.handlebars->47->2425", + "default.handlebars->47->2431", "default.handlebars->47->564", "default.handlebars->47->585", "default.handlebars->47->602" @@ -41501,7 +41534,7 @@ "uk": "Інуктітут", "xloc": [ "default-mobile.handlebars->11->200", - "default.handlebars->47->1931", + "default.handlebars->47->1934", "login2.handlebars->7->94" ] }, @@ -41541,8 +41574,8 @@ "nl": "Ongeldig CSV bestandsformaat.", "uk": "Хибний формат файлу CSV.", "xloc": [ - "default.handlebars->47->2766", - "default.handlebars->47->2768" + "default.handlebars->47->2771", + "default.handlebars->47->2773" ] }, { @@ -41601,7 +41634,7 @@ "zh-cht": "無效的裝置群類型", "uk": "Хибний Тип Групи Пристроїв", "xloc": [ - "default.handlebars->47->3303" + "default.handlebars->47->3309" ] }, { @@ -41630,7 +41663,7 @@ "zh-cht": "無效的JSON", "uk": "Хибний JSON", "xloc": [ - "default.handlebars->47->3297" + "default.handlebars->47->3303" ] }, { @@ -41659,9 +41692,9 @@ "zh-cht": "無效的JSON檔案格式。", "uk": "Хибний формат файлу JSON.", "xloc": [ - "default.handlebars->47->2262", - "default.handlebars->47->2772", - "default.handlebars->47->2774", + "default.handlebars->47->2265", + "default.handlebars->47->2777", + "default.handlebars->47->2779", "default.handlebars->47->518" ] }, @@ -41691,8 +41724,8 @@ "zh-cht": "無效的JSON檔案:{0}。", "uk": "Хибний файл JSON: {0}.", "xloc": [ - "default.handlebars->47->2258", - "default.handlebars->47->2770", + "default.handlebars->47->2261", + "default.handlebars->47->2775", "default.handlebars->47->516" ] }, @@ -41838,7 +41871,7 @@ "zh-cht": "無效的PKCS簽名", "uk": "Хибний підпис PKCS", "xloc": [ - "default.handlebars->47->3295" + "default.handlebars->47->3301" ] }, { @@ -41867,7 +41900,7 @@ "zh-cht": "無效的RSA密碼", "uk": "Хибний підпис RSA", "xloc": [ - "default.handlebars->47->3296" + "default.handlebars->47->3302" ] }, { @@ -41896,8 +41929,8 @@ "zh-cht": "短信無效", "uk": "Хибне SMS повідомлення", "xloc": [ - "default-mobile.handlebars->11->1049", - "default.handlebars->47->3278" + "default-mobile.handlebars->11->1050", + "default.handlebars->47->3284" ] }, { @@ -41986,8 +42019,8 @@ "zh-cht": "無效域", "uk": "Хибний домен", "xloc": [ - "default-mobile.handlebars->11->1029", - "default.handlebars->47->3258" + "default-mobile.handlebars->11->1030", + "default.handlebars->47->3264" ] }, { @@ -42042,8 +42075,8 @@ "zh-cht": "不合規電郵", "uk": "Хибна е-пошта", "xloc": [ - "default-mobile.handlebars->11->1028", - "default.handlebars->47->3257" + "default-mobile.handlebars->11->1029", + "default.handlebars->47->3263" ] }, { @@ -42162,8 +42195,8 @@ "zh-cht": "無效的登錄嘗試", "uk": "Хибна спроба входу", "xloc": [ - "default.handlebars->47->3203", - "default.handlebars->47->3242" + "default.handlebars->47->3209", + "default.handlebars->47->3248" ] }, { @@ -42177,7 +42210,7 @@ "pl": "Błędna wiadomość", "uk": "Хибне повідомлення", "xloc": [ - "default.handlebars->47->3284" + "default.handlebars->47->3290" ] }, { @@ -42216,9 +42249,9 @@ "zh-cht": "無效的密碼", "uk": "Хибний пароль", "xloc": [ - "default-mobile.handlebars->11->1027", + "default-mobile.handlebars->11->1028", "default-mobile.handlebars->11->88", - "default.handlebars->47->3256", + "default.handlebars->47->3262", "default.handlebars->47->328" ] }, @@ -42265,8 +42298,8 @@ "zh-cht": "無效的網站權限", "uk": "Хибні дозволи сайту", "xloc": [ - "default-mobile.handlebars->11->1030", - "default.handlebars->47->3259" + "default-mobile.handlebars->11->1031", + "default.handlebars->47->3265" ] }, { @@ -42326,7 +42359,7 @@ "zh-cht": "來自 {0}、{1}、{2} 的用戶登錄嘗試無效", "uk": "Хибна спроба лоґіну користувача з {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2624" + "default.handlebars->47->2627" ] }, { @@ -42355,8 +42388,8 @@ "zh-cht": "無效的用戶名", "uk": "Хибне ім'я користувача", "xloc": [ - "default-mobile.handlebars->11->1026", - "default.handlebars->47->3255" + "default-mobile.handlebars->11->1027", + "default.handlebars->47->3261" ] }, { @@ -42411,7 +42444,7 @@ "zh-cht": "使電郵無效", "uk": "Хибна е-пошта", "xloc": [ - "default.handlebars->47->2738" + "default.handlebars->47->2743" ] }, { @@ -42524,7 +42557,7 @@ "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "uk": "Коди запрошень можуть використовуватися будь-ким, щоб приєднати пристрої до цієї групи пристроїв за допомогою наступного публічного лінка:", "xloc": [ - "default.handlebars->47->2424" + "default.handlebars->47->2427" ] }, { @@ -42582,7 +42615,7 @@ "zh-cht": "邀請", "uk": "Запросити", "xloc": [ - "default.handlebars->47->2220", + "default.handlebars->47->2223", "default.handlebars->47->490", "default.handlebars->47->587" ] @@ -42613,13 +42646,13 @@ "zh-cht": "邀請碼", "uk": "Коди запрошень", "xloc": [ - "default-mobile.handlebars->11->1024", - "default.handlebars->47->2200", - "default.handlebars->47->2412", - "default.handlebars->47->2423", - "default.handlebars->47->2425", - "default.handlebars->47->2430", - "default.handlebars->47->3253" + "default-mobile.handlebars->11->1025", + "default.handlebars->47->2203", + "default.handlebars->47->2415", + "default.handlebars->47->2426", + "default.handlebars->47->2428", + "default.handlebars->47->2433", + "default.handlebars->47->3259" ] }, { @@ -42648,7 +42681,7 @@ "zh-cht": "邀請代碼", "uk": "Код запрошення", "xloc": [ - "default.handlebars->47->2679" + "default.handlebars->47->2684" ] }, { @@ -42706,7 +42739,7 @@ "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "uk": "Запросіть інсталювати MeshAgent у цю групу пристроїв.", "xloc": [ - "default.handlebars->47->2219", + "default.handlebars->47->2222", "default.handlebars->47->489" ] }, @@ -42766,7 +42799,7 @@ "uk": "Ірландська", "xloc": [ "default-mobile.handlebars->11->201", - "default.handlebars->47->1932", + "default.handlebars->47->1935", "login2.handlebars->7->95" ] }, @@ -42796,7 +42829,7 @@ "zh-cht": "是 \\\"{0}\\\" 的中繼。", "uk": "Є ретранслятором для \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2667" + "default.handlebars->47->2670" ] }, { @@ -42806,7 +42839,7 @@ "pl": "Aktywny", "uk": "Активовано", "xloc": [ - "default-mobile.handlebars->11->845", + "default-mobile.handlebars->11->846", "default.handlebars->47->1688" ] }, @@ -42817,7 +42850,7 @@ "pl": "Włączony", "uk": "Увімкнено", "xloc": [ - "default-mobile.handlebars->11->848", + "default-mobile.handlebars->11->849", "default.handlebars->47->1691" ] }, @@ -42828,7 +42861,7 @@ "pl": "Jest Własnością", "uk": "Належить", "xloc": [ - "default-mobile.handlebars->11->851", + "default-mobile.handlebars->11->852", "default.handlebars->47->1694" ] }, @@ -42859,7 +42892,7 @@ "uk": "Італійська (стандартна)", "xloc": [ "default-mobile.handlebars->11->202", - "default.handlebars->47->1933", + "default.handlebars->47->1936", "login2.handlebars->7->96" ] }, @@ -42890,7 +42923,7 @@ "uk": "Італійська (Швейцарія)", "xloc": [ "default-mobile.handlebars->11->203", - "default.handlebars->47->1934", + "default.handlebars->47->1937", "login2.handlebars->7->97" ] }, @@ -42955,7 +42988,7 @@ "zh-cht": "JSON", "uk": "JSON", "xloc": [ - "default.handlebars->47->2696" + "default.handlebars->47->2701" ] }, { @@ -42984,8 +43017,8 @@ "zh-cht": "JSON格式", "uk": "Формат JSON", "xloc": [ - "default.handlebars->47->2701", - "default.handlebars->47->2778", + "default.handlebars->47->2706", + "default.handlebars->47->2783", "default.handlebars->47->794" ] }, @@ -42995,7 +43028,7 @@ "nl": "Het JSON bestandsformaat is als volgt:", "uk": "Формат файлу JSON наведено далі:", "xloc": [ - "default.handlebars->47->2761" + "default.handlebars->47->2766" ] }, { @@ -43025,7 +43058,7 @@ "uk": "Японська", "xloc": [ "default-mobile.handlebars->11->204", - "default.handlebars->47->1935", + "default.handlebars->47->1938", "login2.handlebars->7->98" ] }, @@ -43041,7 +43074,7 @@ "uk": "японська", "xloc": [ "default.handlebars->47->1797", - "default.handlebars->47->3020" + "default.handlebars->47->3026" ] }, { @@ -43070,7 +43103,7 @@ "zh-cht": "已加入桌面Multiplex會話", "uk": "Приєднався до мультиплексного сеансу стільниці", "xloc": [ - "default.handlebars->47->2518" + "default.handlebars->47->2521" ] }, { @@ -43099,7 +43132,7 @@ "zh-cht": "已加入桌面多路復用會話 \\\"{0}\\\"", "uk": "Приєднався до мультиплексного сеансу стільниці \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2657" + "default.handlebars->47->2660" ] }, { @@ -43158,7 +43191,7 @@ "uk": "Каннада", "xloc": [ "default-mobile.handlebars->11->205", - "default.handlebars->47->1936", + "default.handlebars->47->1939", "login2.handlebars->7->99" ] }, @@ -43189,7 +43222,7 @@ "uk": "Кашмір", "xloc": [ "default-mobile.handlebars->11->206", - "default.handlebars->47->1937", + "default.handlebars->47->1940", "login2.handlebars->7->100" ] }, @@ -43220,7 +43253,7 @@ "uk": "Казахська", "xloc": [ "default-mobile.handlebars->11->207", - "default.handlebars->47->1938", + "default.handlebars->47->1941", "login2.handlebars->7->101" ] }, @@ -43250,7 +43283,7 @@ "zh-cht": "保留現有密碼", "uk": "Зберегти існуючий пароль", "xloc": [ - "default.handlebars->47->2270" + "default.handlebars->47->2273" ] }, { @@ -43339,8 +43372,8 @@ "zh-cht": "鍵名", "uk": "Назва Ключа", "xloc": [ - "default.handlebars->47->1829", - "default.handlebars->47->1832" + "default.handlebars->47->1832", + "default.handlebars->47->1835" ] }, { @@ -43543,7 +43576,7 @@ "uk": "Кмерська", "xloc": [ "default-mobile.handlebars->11->208", - "default.handlebars->47->1939", + "default.handlebars->47->1942", "login2.handlebars->7->102" ] }, @@ -43573,7 +43606,7 @@ "zh-cht": "殺死進程{0}", "uk": "Процес {0} Завершено", "xloc": [ - "default.handlebars->47->2533" + "default.handlebars->47->2536" ] }, { @@ -43613,7 +43646,7 @@ "uk": "Киргизька", "xloc": [ "default-mobile.handlebars->11->209", - "default.handlebars->47->1940", + "default.handlebars->47->1943", "login2.handlebars->7->103" ] }, @@ -43644,7 +43677,7 @@ "uk": "Клінгонська", "xloc": [ "default-mobile.handlebars->11->210", - "default.handlebars->47->1941", + "default.handlebars->47->1944", "login2.handlebars->7->104" ] }, @@ -43674,7 +43707,7 @@ "zh-cht": "已知的", "uk": "Відоме як", "xloc": [ - "default-mobile.handlebars->11->826", + "default-mobile.handlebars->11->827", "default.handlebars->47->1669" ] }, @@ -43705,7 +43738,7 @@ "uk": "Корейська", "xloc": [ "default-mobile.handlebars->11->211", - "default.handlebars->47->1942", + "default.handlebars->47->1945", "login2.handlebars->7->105" ] }, @@ -43736,7 +43769,7 @@ "uk": "Корейська (Північна Корея)", "xloc": [ "default-mobile.handlebars->11->212", - "default.handlebars->47->1943", + "default.handlebars->47->1946", "login2.handlebars->7->106" ] }, @@ -43767,7 +43800,7 @@ "uk": "Корейська (Південна Корея)", "xloc": [ "default-mobile.handlebars->11->213", - "default.handlebars->47->1944", + "default.handlebars->47->1947", "login2.handlebars->7->107" ] }, @@ -43830,7 +43863,7 @@ "uk": "Мова", "xloc": [ "default-mobile.handlebars->11->308", - "default.handlebars->47->2039" + "default.handlebars->47->2042" ] }, { @@ -44096,7 +44129,7 @@ "zh-cht": "過去30天", "uk": "Останні 30 днів", "xloc": [ - "default.handlebars->47->3161", + "default.handlebars->47->3167", "default.handlebars->container->column_l->p40->3->1->p40time->9" ] }, @@ -44189,7 +44222,7 @@ "zh-cht": "過去 7 天", "uk": "Останні 7 днів", "xloc": [ - "default.handlebars->47->3160" + "default.handlebars->47->3166" ] }, { @@ -44247,7 +44280,7 @@ "zh-cht": "最後訪問", "uk": "Останній Доступ", "xloc": [ - "default.handlebars->47->2709" + "default.handlebars->47->2714" ] }, { @@ -44257,9 +44290,9 @@ "pl": "Czas Ostatniego Uruchomienia", "uk": "Час завантаження ОС востаннє", "xloc": [ - "default-mobile.handlebars->11->747", "default-mobile.handlebars->11->748", "default-mobile.handlebars->11->749", + "default-mobile.handlebars->11->750", "default.handlebars->47->1608", "default.handlebars->47->1609", "default.handlebars->47->1610", @@ -44293,7 +44326,7 @@ "zh-cht": "最後一天", "uk": "Останній День", "xloc": [ - "default.handlebars->47->3159" + "default.handlebars->47->3165" ] }, { @@ -44322,7 +44355,7 @@ "zh-cht": "上次登入", "uk": "Останній вхід", "xloc": [ - "default.handlebars->47->2952" + "default.handlebars->47->2957" ] }, { @@ -44382,7 +44415,7 @@ "zh-cht": "上次訪問:{0}", "uk": "Останній доступ: {0}", "xloc": [ - "default.handlebars->47->2719" + "default.handlebars->47->2724" ] }, { @@ -44411,9 +44444,9 @@ "zh-cht": "上次代理地址", "uk": "IP-адреса агента востаннє", "xloc": [ - "default-mobile.handlebars->11->783", "default-mobile.handlebars->11->784", "default-mobile.handlebars->11->785", + "default-mobile.handlebars->11->786", "default.handlebars->47->151", "default.handlebars->47->153", "default.handlebars->47->155", @@ -44448,8 +44481,8 @@ "zh-cht": "上次代理連接", "uk": "Підключення агента востаннє", "xloc": [ - "default-mobile.handlebars->11->780", - "default-mobile.handlebars->11->782", + "default-mobile.handlebars->11->781", + "default-mobile.handlebars->11->783", "default.handlebars->47->150", "default.handlebars->47->1613", "default.handlebars->47->1615" @@ -44481,7 +44514,7 @@ "zh-cht": "上次更改:{0}", "uk": "Останні зміни: {0}", "xloc": [ - "default.handlebars->47->2956" + "default.handlebars->47->2961" ] }, { @@ -44496,7 +44529,7 @@ "pl": "Zapisy czasu ostatnich połączeń", "uk": "Записи часу останнього підключення", "xloc": [ - "default.handlebars->47->3224" + "default.handlebars->47->3230" ] }, { @@ -44583,7 +44616,7 @@ "zh-cht": "上次登入:{0}", "uk": "Минулий вхід: {0}", "xloc": [ - "default.handlebars->47->2720" + "default.handlebars->47->2725" ] }, { @@ -44756,7 +44789,7 @@ "uk": "Латиниця", "xloc": [ "default-mobile.handlebars->11->214", - "default.handlebars->47->1945", + "default.handlebars->47->1948", "login2.handlebars->7->108" ] }, @@ -44787,7 +44820,7 @@ "uk": "Латиська", "xloc": [ "default-mobile.handlebars->11->215", - "default.handlebars->47->1946", + "default.handlebars->47->1949", "login2.handlebars->7->109" ] }, @@ -44959,7 +44992,7 @@ "zh-cht": "如沒有請留空。", "uk": "Залиште поле порожнім", "xloc": [ - "default.handlebars->47->3005" + "default.handlebars->47->3011" ] }, { @@ -45018,7 +45051,7 @@ "zh-cht": "{0} 秒後離開 Web-RDP 會話 \\\"{1}\\\"。", "uk": "Залишити сеанс Web-RDP \\\"{1}\\\" через {0} секунд(и).", "xloc": [ - "default.handlebars->47->2639" + "default.handlebars->47->2642" ] }, { @@ -45073,7 +45106,7 @@ "zh-cht": "{0} 秒後離開 Web-SFTP 會話 \\\"{1}\\\"。", "uk": "Залишити сеанс Web-SFTP \\\"{1}\\\" через {0} секунд(и).", "xloc": [ - "default.handlebars->47->2638" + "default.handlebars->47->2641" ] }, { @@ -45128,7 +45161,7 @@ "zh-cht": "{0} 秒後離開 Web-SSH 會話 \\\"{1}\\\"。", "uk": "Залишити сеанс Web-SSH \\\"{1}\\\" через {0} секунд(и).", "xloc": [ - "default.handlebars->47->2637" + "default.handlebars->47->2640" ] }, { @@ -45183,7 +45216,7 @@ "zh-cht": "{0} 秒後離開 Web-VNC 會話。", "uk": "Залишити сеанс Web-VNC через {0} секунд(и).", "xloc": [ - "default.handlebars->47->2640" + "default.handlebars->47->2643" ] }, { @@ -45246,7 +45279,7 @@ "zh-cht": "離開桌面多路復用會話", "uk": "Припинити мультиплексний сеанс стільниці", "xloc": [ - "default.handlebars->47->2519" + "default.handlebars->47->2522" ] }, { @@ -45275,7 +45308,7 @@ "zh-cht": "{1} 秒後離開桌面多路復用會話 \\\"{0}\\\"。", "uk": "Припинення мультиплексного сеансу \\\"{0}\\\" через {1} секунд(и).", "xloc": [ - "default.handlebars->47->2658" + "default.handlebars->47->2661" ] }, { @@ -45304,7 +45337,7 @@ "zh-cht": "{0} 秒後離開桌面多路復用會話。", "uk": "Припинення мультиплексного сеансу стільниці через {0} секунд(и).", "xloc": [ - "default.handlebars->47->2636" + "default.handlebars->47->2639" ] }, { @@ -45333,7 +45366,7 @@ "zh-cht": "長度", "uk": "Довжина", "xloc": [ - "default.handlebars->47->3174" + "default.handlebars->47->3180" ] }, { @@ -45478,10 +45511,10 @@ "zh-cht": "有限輸入", "uk": "Обмежене Введення", "xloc": [ - "default-mobile.handlebars->11->1001", + "default-mobile.handlebars->11->1002", "default.handlebars->47->1128", "default.handlebars->47->1153", - "default.handlebars->47->2391" + "default.handlebars->47->2394" ] }, { @@ -45510,8 +45543,8 @@ "zh-cht": "僅有限輸入", "uk": "Лише Обмежені Можливості Вводу", "xloc": [ - "default-mobile.handlebars->11->974", - "default.handlebars->47->2344" + "default-mobile.handlebars->11->975", + "default.handlebars->47->2347" ] }, { @@ -46024,7 +46057,7 @@ "zh-cht": "Linux MeshAgent", "uk": "Linux MeshAgent", "xloc": [ - "default.handlebars->47->2416", + "default.handlebars->47->2419", "default.handlebars->47->578" ] }, @@ -46404,7 +46437,7 @@ "uk": "Литовська", "xloc": [ "default-mobile.handlebars->11->216", - "default.handlebars->47->1947", + "default.handlebars->47->1950", "login2.handlebars->7->110" ] }, @@ -46467,12 +46500,12 @@ "default-mobile.handlebars->11->93", "default.handlebars->47->1324", "default.handlebars->47->1775", - "default.handlebars->47->1818", - "default.handlebars->47->2144", - "default.handlebars->47->2148", + "default.handlebars->47->1821", + "default.handlebars->47->2147", "default.handlebars->47->2151", - "default.handlebars->47->3057", - "default.handlebars->47->3106" + "default.handlebars->47->2154", + "default.handlebars->47->3063", + "default.handlebars->47->3112" ] }, { @@ -46614,9 +46647,9 @@ "zh-cht": "本地設備,無代理", "uk": "Локальні пристрої, без агента", "xloc": [ - "default-mobile.handlebars->11->933", - "default.handlebars->47->2095", - "default.handlebars->47->2158" + "default-mobile.handlebars->11->934", + "default.handlebars->47->2098", + "default.handlebars->47->2161" ] }, { @@ -46733,7 +46766,7 @@ "zh-cht": "本地用戶接受的遠程終端請求", "uk": "Локальний користувач прийняв запит віддаленого терміналу", "xloc": [ - "default.handlebars->47->2541" + "default.handlebars->47->2544" ] }, { @@ -46762,7 +46795,7 @@ "zh-cht": "本地用戶拒絕了遠程終端請求", "uk": "Локальний користувач відхилив запит віддаленого терміналу", "xloc": [ - "default.handlebars->47->2542" + "default.handlebars->47->2545" ] }, { @@ -46793,7 +46826,7 @@ "xloc": [ "default-mobile.handlebars->11->311", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3AccountActions->p2AccountSecurity->3->5->0", - "default.handlebars->47->2042", + "default.handlebars->47->2045", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->11" ] }, @@ -46881,7 +46914,7 @@ "zh-cht": "鎖定賬戶", "uk": "Заблокувати Акаунт", "xloc": [ - "default.handlebars->47->2818" + "default.handlebars->47->2823" ] }, { @@ -46910,7 +46943,7 @@ "zh-cht": "鎖定帳戶設置", "uk": "Заблокувати Налаштування Акаунту", "xloc": [ - "default.handlebars->47->2822" + "default.handlebars->47->2827" ] }, { @@ -46969,7 +47002,7 @@ "zh-cht": "鎖定賬戶", "uk": "Заблокувати акаунт", "xloc": [ - "default.handlebars->47->2741" + "default.handlebars->47->2746" ] }, { @@ -47116,7 +47149,7 @@ "zh-cht": "已鎖定", "uk": "Заблоковано", "xloc": [ - "default.handlebars->47->2721" + "default.handlebars->47->2726" ] }, { @@ -47146,9 +47179,9 @@ "uk": "Заблокований акаунт", "xloc": [ "default-mobile.handlebars->11->87", - "default.handlebars->47->2912", - "default.handlebars->47->3202", - "default.handlebars->47->3241", + "default.handlebars->47->2917", + "default.handlebars->47->3208", + "default.handlebars->47->3247", "default.handlebars->47->327" ] }, @@ -47178,7 +47211,7 @@ "zh-cht": "將遠程用戶鎖定在桌面之外", "uk": "Блокування віддаленого користувача на його стільниці", "xloc": [ - "default.handlebars->47->2567" + "default.handlebars->47->2570" ] }, { @@ -47448,7 +47481,7 @@ "zh-cht": "登錄令牌", "uk": "Токен Лоґіну", "xloc": [ - "default.handlebars->47->3213" + "default.handlebars->47->3219" ] }, { @@ -47632,7 +47665,7 @@ "uk": "Люксембурзька", "xloc": [ "default-mobile.handlebars->11->217", - "default.handlebars->47->1948", + "default.handlebars->47->1951", "login2.handlebars->7->111" ] }, @@ -47662,8 +47695,8 @@ "zh-cht": "MAC層", "uk": "MAC рівень", "xloc": [ - "default-mobile.handlebars->11->796", - "default-mobile.handlebars->11->798", + "default-mobile.handlebars->11->797", + "default-mobile.handlebars->11->799", "default.handlebars->47->1629", "default.handlebars->47->1631", "default.handlebars->47->1639", @@ -47726,7 +47759,7 @@ "zh-cht": "MAC:{0}", "uk": "MAC: {0}", "xloc": [ - "default-mobile.handlebars->11->799", + "default-mobile.handlebars->11->800", "default.handlebars->47->1632", "default.handlebars->47->1642" ] @@ -47757,7 +47790,7 @@ "zh-cht": "MAC:{0},網關:{1}", "uk": "MAC: {0}, шлюз: {1}", "xloc": [ - "default-mobile.handlebars->11->797", + "default-mobile.handlebars->11->798", "default.handlebars->47->1630", "default.handlebars->47->1640" ] @@ -47935,8 +47968,8 @@ "xloc": [ "default-mobile.handlebars->11->473", "default-mobile.handlebars->11->530", - "default-mobile.handlebars->11->915", - "default-mobile.handlebars->11->917", + "default-mobile.handlebars->11->916", + "default-mobile.handlebars->11->918", "default-mobile.handlebars->container->page_content->column_l->p10->p10console->consoleTable->1->4->1->1->1->0->p15outputselecttd->p15outputselect->p15outputselect2", "default.handlebars->47->1759", "default.handlebars->47->1761", @@ -48315,7 +48348,7 @@ "zh-cht": "MacOS MeshAgent", "uk": "MacOS MeshAgent", "xloc": [ - "default.handlebars->47->2417", + "default.handlebars->47->2420", "default.handlebars->47->579" ] }, @@ -48374,7 +48407,7 @@ "zh-cht": "主伺服器訊息", "uk": "Повідомлення Головного Сервера", "xloc": [ - "default.handlebars->47->3357" + "default.handlebars->47->3363" ] }, { @@ -48404,7 +48437,7 @@ "uk": "Малайська", "xloc": [ "default-mobile.handlebars->11->219", - "default.handlebars->47->1950", + "default.handlebars->47->1953", "login2.handlebars->7->113" ] }, @@ -48435,7 +48468,7 @@ "uk": "Малаялам", "xloc": [ "default-mobile.handlebars->11->220", - "default.handlebars->47->1951", + "default.handlebars->47->1954", "login2.handlebars->7->114" ] }, @@ -48466,7 +48499,7 @@ "uk": "Мальтійська", "xloc": [ "default-mobile.handlebars->11->221", - "default.handlebars->47->1952", + "default.handlebars->47->1955", "login2.handlebars->7->115" ] }, @@ -48556,10 +48589,10 @@ "zh-cht": "管理裝置群電腦", "uk": "Керувати Комп'ютерами Групи Пристроїв", "xloc": [ - "default-mobile.handlebars->11->971", - "default-mobile.handlebars->11->991", - "default.handlebars->47->2341", - "default.handlebars->47->2380" + "default-mobile.handlebars->11->972", + "default-mobile.handlebars->11->992", + "default.handlebars->47->2344", + "default.handlebars->47->2383" ] }, { @@ -48588,10 +48621,10 @@ "zh-cht": "管理裝置群用戶", "uk": "Керувати Користувачами Групи Пристроїв", "xloc": [ - "default-mobile.handlebars->11->970", - "default-mobile.handlebars->11->990", - "default.handlebars->47->2340", - "default.handlebars->47->2379" + "default-mobile.handlebars->11->971", + "default-mobile.handlebars->11->991", + "default.handlebars->47->2343", + "default.handlebars->47->2382" ] }, { @@ -48623,6 +48656,12 @@ "default.handlebars->47->1148" ] }, + { + "en": "Manage Duo authentication", + "xloc": [ + "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageDuoApp->1->0" + ] + }, { "bs": "Upravljajte snimcima", "ca": "Gestionar les gravacions", @@ -48649,7 +48688,7 @@ "zh-cht": "管理錄音", "uk": "Керувати Записами", "xloc": [ - "default.handlebars->47->2816" + "default.handlebars->47->2821" ] }, { @@ -48707,7 +48746,7 @@ "zh-cht": "管理用戶群", "uk": "Керувати Групами Користувачів", "xloc": [ - "default.handlebars->47->2815" + "default.handlebars->47->2820" ] }, { @@ -48737,7 +48776,7 @@ "uk": "Керувати Користувачами", "xloc": [ "default.handlebars->47->1147", - "default.handlebars->47->2814" + "default.handlebars->47->2819" ] }, { @@ -48961,7 +49000,7 @@ "zh-cht": "使用軟體代理進行管理", "uk": "Керувати за допомогою програмного агента", "xloc": [ - "default.handlebars->47->2100" + "default.handlebars->47->2103" ] }, { @@ -48990,8 +49029,8 @@ "zh-cht": "使用軟體代理進行管理", "uk": "Керується програмним агентом", "xloc": [ - "default-mobile.handlebars->11->932", - "default.handlebars->47->2157" + "default-mobile.handlebars->11->933", + "default.handlebars->47->2160" ] }, { @@ -49020,7 +49059,7 @@ "zh-cht": "經理", "uk": "Менеджер", "xloc": [ - "default.handlebars->47->2726" + "default.handlebars->47->2731" ] }, { @@ -49093,7 +49132,7 @@ "pl": "ID Producenta", "uk": "ID Виробника", "xloc": [ - "default-mobile.handlebars->11->843", + "default-mobile.handlebars->11->844", "default.handlebars->47->1686" ] }, @@ -49104,7 +49143,7 @@ "pl": "Wersja Wydania", "uk": "Версія Виробника", "xloc": [ - "default-mobile.handlebars->11->844", + "default-mobile.handlebars->11->845", "default.handlebars->47->1687" ] }, @@ -49135,7 +49174,7 @@ "uk": "Маорі", "xloc": [ "default-mobile.handlebars->11->222", - "default.handlebars->47->1953", + "default.handlebars->47->1956", "login2.handlebars->7->116" ] }, @@ -49248,7 +49287,7 @@ "uk": "Маратхі", "xloc": [ "default-mobile.handlebars->11->223", - "default.handlebars->47->1954", + "default.handlebars->47->1957", "login2.handlebars->7->117" ] }, @@ -49283,7 +49322,7 @@ "zh-cht": "掩碼:{0}", "uk": "Маска: {0}", "xloc": [ - "default-mobile.handlebars->11->801", + "default-mobile.handlebars->11->802", "default.handlebars->47->1644" ] }, @@ -49313,7 +49352,7 @@ "zh-cht": "達到連接數量上限", "uk": "Досягнуто Максимум Сеансів", "xloc": [ - "default.handlebars->47->3301" + "default.handlebars->47->3307" ] }, { @@ -49434,8 +49473,8 @@ "zh-cht": "Megabyte", "uk": "Мегабайти", "xloc": [ - "default.handlebars->47->3342", - "default.handlebars->47->3347", + "default.handlebars->47->3348", + "default.handlebars->47->3353", "default.handlebars->container->column_l->p13->p13toolbar->1->4->1->1->p13sizedropdown->7" ] }, @@ -49465,14 +49504,14 @@ "zh-cht": "記憶體", "uk": "Пам'ять", "xloc": [ - "default-mobile.handlebars->11->860", - "default-mobile.handlebars->11->866", - "default-mobile.handlebars->11->872", + "default-mobile.handlebars->11->861", + "default-mobile.handlebars->11->867", + "default-mobile.handlebars->11->873", "default.handlebars->47->1599", "default.handlebars->47->1703", "default.handlebars->47->1709", "default.handlebars->47->1715", - "default.handlebars->47->3321", + "default.handlebars->47->3327", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -49505,8 +49544,8 @@ "agentinvite.handlebars->3->14", "default-mobile.handlebars->11->502", "default-mobile.handlebars->11->557", - "default-mobile.handlebars->11->779", - "default-mobile.handlebars->11->787", + "default-mobile.handlebars->11->780", + "default-mobile.handlebars->11->788", "default.handlebars->47->1612", "default.handlebars->47->1620", "default.handlebars->47->610", @@ -49550,8 +49589,8 @@ "zh-cht": "網格代理控制台", "uk": "Консоль Mesh Agent", "xloc": [ - "default-mobile.handlebars->11->978", - "default.handlebars->47->2350" + "default-mobile.handlebars->11->979", + "default.handlebars->47->2353" ] }, { @@ -49753,7 +49792,7 @@ "zh-cht": "MeshAgent流量", "uk": "Трафік MeshAgent", "xloc": [ - "default.handlebars->47->3359" + "default.handlebars->47->3365" ] }, { @@ -49782,7 +49821,7 @@ "zh-cht": "MeshAgent更新", "uk": "Оновлення MeshAgent", "xloc": [ - "default.handlebars->47->3360" + "default.handlebars->47->3366" ] }, { @@ -49868,7 +49907,7 @@ "zh-cht": "MeshCentral 助手", "uk": "MeshCentral Асистент", "xloc": [ - "default.handlebars->47->2418", + "default.handlebars->47->2421", "default.handlebars->47->553", "default.handlebars->47->580", "default.handlebars->47->593" @@ -50289,7 +50328,7 @@ "zh-cht": "MeshCentral伺服器同級化", "uk": "Піринг сервера MeshCentral", "xloc": [ - "default.handlebars->47->3358" + "default.handlebars->47->3364" ] }, { @@ -50349,7 +50388,7 @@ "xloc": [ "default.handlebars->47->197", "default.handlebars->47->199", - "default.handlebars->47->2143" + "default.handlebars->47->2146" ] }, { @@ -50809,8 +50848,8 @@ "xloc": [ "default.handlebars->47->1016", "default.handlebars->47->1305", - "default.handlebars->47->2988", - "default.handlebars->47->3180", + "default.handlebars->47->2994", + "default.handlebars->47->3186", "default.handlebars->47->565" ] }, @@ -50870,7 +50909,7 @@ "zh-cht": "電郵調度器", "uk": "Диспетчер Повідомлень", "xloc": [ - "default.handlebars->47->3356" + "default.handlebars->47->3362" ] }, { @@ -50884,7 +50923,7 @@ "pl": "Błąd wiadomości", "uk": "Помилка повідомлення", "xloc": [ - "default.handlebars->47->3286" + "default.handlebars->47->3292" ] }, { @@ -50898,7 +50937,7 @@ "pl": "Błąd wiadomości: {0}", "uk": "Помилка повідомлення: {0}", "xloc": [ - "default.handlebars->47->3287" + "default.handlebars->47->3293" ] }, { @@ -50927,7 +50966,7 @@ "pl": "Wiadomość wysłana.", "uk": "Повідомлення:", "xloc": [ - "default.handlebars->47->3285" + "default.handlebars->47->3291" ] }, { @@ -50999,8 +51038,8 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->47->2933", - "default.handlebars->47->2981", + "default.handlebars->47->2938", + "default.handlebars->47->2987", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", "login2.handlebars->centralTable->1->0->logincell->tokenpanel->tokenpanelform->7->1->2farow->1->3" @@ -51017,7 +51056,7 @@ "pl": "Wiadomości ({0})", "uk": "Обмін повідомленнями ({0})", "xloc": [ - "default.handlebars->47->2196", + "default.handlebars->47->2199", "default.handlebars->47->979" ] }, @@ -51034,9 +51073,9 @@ "default.handlebars->47->1118", "default.handlebars->47->1785", "default.handlebars->47->1805", - "default.handlebars->47->2439", + "default.handlebars->47->2442", "default.handlebars->47->257", - "default.handlebars->47->3028" + "default.handlebars->47->3034" ] }, { @@ -51050,7 +51089,7 @@ "pl": "Konto komunnikatora tego użytkownika.", "uk": "Месенджер", "xloc": [ - "default.handlebars->47->3008" + "default.handlebars->47->3014" ] }, { @@ -51064,7 +51103,7 @@ "pl": "Wiadomości włączone", "uk": "Обмін повідомленнями ввімкнено", "xloc": [ - "default.handlebars->47->2934" + "default.handlebars->47->2939" ] }, { @@ -51093,8 +51132,8 @@ "zh-cht": "信使", "uk": "Месенджер", "xloc": [ - "default.handlebars->47->3122", - "default.handlebars->47->3189" + "default.handlebars->47->3128", + "default.handlebars->47->3195" ] }, { @@ -51107,7 +51146,7 @@ "pl": "Wiadomości", "uk": "Обмін повідомленнями", "xloc": [ - "default.handlebars->47->3209" + "default.handlebars->47->3215" ] }, { @@ -51292,7 +51331,7 @@ "zh-cht": "移動設備", "uk": "Мобільний Пристрій", "xloc": [ - "default-mobile.handlebars->11->794", + "default-mobile.handlebars->11->795", "default.handlebars->47->1627" ] }, @@ -51332,7 +51371,7 @@ "pl": "Tryb", "uk": "Режим", "xloc": [ - "default-mobile.handlebars->11->832", + "default-mobile.handlebars->11->833", "default.handlebars->47->1675" ] }, @@ -51362,11 +51401,11 @@ "zh-cht": "模型", "uk": "Модель", "xloc": [ - "default-mobile.handlebars->11->788", - "default-mobile.handlebars->11->873", + "default-mobile.handlebars->11->789", + "default-mobile.handlebars->11->874", "default.handlebars->47->1621", "default.handlebars->47->1716", - "default.handlebars->47->2104" + "default.handlebars->47->2107" ] }, { @@ -51425,7 +51464,7 @@ "uk": "Молдавська", "xloc": [ "default-mobile.handlebars->11->224", - "default.handlebars->47->1955", + "default.handlebars->47->1958", "login2.handlebars->7->118" ] }, @@ -51481,7 +51520,7 @@ "zh-cht": "母板", "uk": "Материнська Плата", "xloc": [ - "default-mobile.handlebars->11->841", + "default-mobile.handlebars->11->842", "default.handlebars->47->1684" ] }, @@ -51569,7 +51608,7 @@ "zh-cht": "移動:“{0}”到“{1}”", "uk": "Перемістити: \\\"{0}\\\" до \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2566" + "default.handlebars->47->2569" ] }, { @@ -51598,7 +51637,7 @@ "zh-cht": "將設備{0}移動到組{1}", "uk": "Пристрій {0} переміщено до групи {1}", "xloc": [ - "default.handlebars->47->2599" + "default.handlebars->47->2602" ] }, { @@ -51656,8 +51695,8 @@ "zh-cht": "多個問題", "uk": "Декілька Проблем", "xloc": [ - "default.handlebars->47->2452", - "default.handlebars->47->2466" + "default.handlebars->47->2455", + "default.handlebars->47->2469" ] }, { @@ -51712,7 +51751,7 @@ "zh-cht": "多工器", "uk": "Мультиплексор", "xloc": [ - "default.handlebars->47->3140" + "default.handlebars->47->3146" ] }, { @@ -52193,8 +52232,8 @@ "zh-cht": "我的密鍵", "uk": "МійКлюч", "xloc": [ - "default.handlebars->47->1830", - "default.handlebars->47->1833" + "default.handlebars->47->1833", + "default.handlebars->47->1836" ] }, { @@ -52371,26 +52410,26 @@ "default-mobile.handlebars->11->338", "default-mobile.handlebars->11->485", "default-mobile.handlebars->11->740", - "default-mobile.handlebars->11->835", - "default-mobile.handlebars->11->937", - "default-mobile.handlebars->11->960", + "default-mobile.handlebars->11->836", + "default-mobile.handlebars->11->938", + "default-mobile.handlebars->11->961", "default.handlebars->47->1438", "default.handlebars->47->1454", "default.handlebars->47->158", "default.handlebars->47->1600", "default.handlebars->47->1678", "default.handlebars->47->172", - "default.handlebars->47->2094", - "default.handlebars->47->2122", - "default.handlebars->47->2127", - "default.handlebars->47->2162", - "default.handlebars->47->2300", - "default.handlebars->47->2707", - "default.handlebars->47->2825", - "default.handlebars->47->2841", - "default.handlebars->47->2848", - "default.handlebars->47->2899", - "default.handlebars->47->2918", + "default.handlebars->47->2097", + "default.handlebars->47->2125", + "default.handlebars->47->2130", + "default.handlebars->47->2165", + "default.handlebars->47->2303", + "default.handlebars->47->2712", + "default.handlebars->47->2830", + "default.handlebars->47->2846", + "default.handlebars->47->2853", + "default.handlebars->47->2904", + "default.handlebars->47->2923", "default.handlebars->47->332", "default.handlebars->47->885", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", @@ -52453,7 +52492,7 @@ "zh-cht": "名稱1,名稱2,名稱3", "uk": "Ім'я1, Ім'я2, Ім'я3", "xloc": [ - "default.handlebars->47->2806" + "default.handlebars->47->2811" ] }, { @@ -52483,7 +52522,7 @@ "uk": "Навахо", "xloc": [ "default-mobile.handlebars->11->225", - "default.handlebars->47->1956", + "default.handlebars->47->1959", "login2.handlebars->7->119" ] }, @@ -52514,7 +52553,7 @@ "uk": "Ндонга", "xloc": [ "default-mobile.handlebars->11->226", - "default.handlebars->47->1957", + "default.handlebars->47->1960", "login2.handlebars->7->120" ] }, @@ -52545,7 +52584,7 @@ "uk": "Непальська", "xloc": [ "default-mobile.handlebars->11->227", - "default.handlebars->47->1958", + "default.handlebars->47->1961", "login2.handlebars->7->121" ] }, @@ -52616,7 +52655,7 @@ "pl": "Zapisy informacji o interfejsach sieciowych", "uk": "Записати інформацію про мережевий інтерфейс", "xloc": [ - "default.handlebars->47->3222" + "default.handlebars->47->3228" ] }, { @@ -52645,7 +52684,7 @@ "zh-cht": "網路", "uk": "Мережа", "xloc": [ - "default-mobile.handlebars->11->809", + "default-mobile.handlebars->11->810", "default.handlebars->47->1637", "default.handlebars->47->1652" ] @@ -52677,7 +52716,7 @@ "uk": "Новий", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->3->p3createMeshLink1->1", - "default.handlebars->47->2121", + "default.handlebars->47->2124", "default.handlebars->container->column_l->p2->p2info->p2createMeshLink1->1" ] }, @@ -52707,7 +52746,7 @@ "zh-cht": "生成新的2FA備份代碼", "uk": "Нові резервні коди 2FA згенеровані", "xloc": [ - "default.handlebars->47->2606" + "default.handlebars->47->2609" ] }, { @@ -52736,8 +52775,8 @@ "zh-cht": "新賬戶", "uk": "Новий Акаунт", "xloc": [ - "default-mobile.handlebars->11->1019", - "default.handlebars->47->3248" + "default-mobile.handlebars->11->1020", + "default.handlebars->47->3254" ] }, { @@ -52823,8 +52862,8 @@ "xloc": [ "default-mobile.handlebars->11->332", "default.handlebars->47->1315", - "default.handlebars->47->2087", - "default.handlebars->47->2110" + "default.handlebars->47->2090", + "default.handlebars->47->2113" ] }, { @@ -52856,7 +52895,7 @@ "default-mobile.handlebars->11->364", "default-mobile.handlebars->11->711", "default.handlebars->47->1554", - "default.handlebars->47->2496", + "default.handlebars->47->2499", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "sharing.handlebars->11->59", @@ -53006,8 +53045,8 @@ "zh-cht": "新密碼*", "uk": "Новий пароль*", "xloc": [ - "default.handlebars->47->2274", - "default.handlebars->47->2275" + "default.handlebars->47->2277", + "default.handlebars->47->2278" ] }, { @@ -53038,8 +53077,8 @@ "xloc": [ "default-mobile.handlebars->11->327", "default-mobile.handlebars->11->328", - "default.handlebars->47->2082", - "default.handlebars->47->2083" + "default.handlebars->47->2085", + "default.handlebars->47->2086" ] }, { @@ -53104,9 +53143,9 @@ "nl": "Nee", "uk": "Ні", "xloc": [ - "default-mobile.handlebars->11->847", - "default-mobile.handlebars->11->850", - "default-mobile.handlebars->11->853", + "default-mobile.handlebars->11->848", + "default-mobile.handlebars->11->851", + "default-mobile.handlebars->11->854", "default.handlebars->47->1690", "default.handlebars->47->1693", "default.handlebars->47->1696" @@ -53224,7 +53263,7 @@ "zh-cht": "無代理控制台", "uk": "Немає Консолі Агента", "xloc": [ - "default.handlebars->47->3043" + "default.handlebars->47->3049" ] }, { @@ -53262,7 +53301,7 @@ "zh-cht": "沒有控制台", "uk": "Немає Консолі", "xloc": [ - "default.handlebars->47->2942" + "default.handlebars->47->2947" ] }, { @@ -53325,8 +53364,8 @@ "xloc": [ "default.handlebars->47->1129", "default.handlebars->47->1154", - "default.handlebars->47->2387", - "default.handlebars->47->2938" + "default.handlebars->47->2390", + "default.handlebars->47->2943" ] }, { @@ -53355,8 +53394,8 @@ "zh-cht": "不能訪問桌面", "uk": "Немає Доступу до Стільниці", "xloc": [ - "default.handlebars->47->2346", - "default.handlebars->47->3039" + "default.handlebars->47->2349", + "default.handlebars->47->3045" ] }, { @@ -53412,8 +53451,8 @@ "uk": "Подій не знайдено", "xloc": [ "default.handlebars->47->1596", - "default.handlebars->47->2683", - "default.handlebars->47->3105" + "default.handlebars->47->2688", + "default.handlebars->47->3111" ] }, { @@ -53442,9 +53481,9 @@ "zh-cht": "不能存取檔案", "uk": "Немає Доступу до Файлів", "xloc": [ - "default-mobile.handlebars->11->976", - "default.handlebars->47->2348", - "default.handlebars->47->3042" + "default-mobile.handlebars->11->977", + "default.handlebars->47->2351", + "default.handlebars->47->3048" ] }, { @@ -53473,11 +53512,11 @@ "zh-cht": "沒有檔案", "uk": "Немає Файлів", "xloc": [ - "default-mobile.handlebars->11->999", + "default-mobile.handlebars->11->1000", "default.handlebars->47->1126", "default.handlebars->47->1151", - "default.handlebars->47->2389", - "default.handlebars->47->2941" + "default.handlebars->47->2392", + "default.handlebars->47->2946" ] }, { @@ -53536,10 +53575,10 @@ "zh-cht": "沒有Intel® AMT", "uk": "Немає Intel® AMT", "xloc": [ - "default-mobile.handlebars->11->1000", - "default-mobile.handlebars->11->977", - "default.handlebars->47->2349", - "default.handlebars->47->2390" + "default-mobile.handlebars->11->1001", + "default-mobile.handlebars->11->978", + "default.handlebars->47->2352", + "default.handlebars->47->2393" ] }, { @@ -53681,7 +53720,7 @@ "zh-cht": "沒有成員", "uk": "Немає Учасників", "xloc": [ - "default.handlebars->47->2879" + "default.handlebars->47->2884" ] }, { @@ -53710,7 +53749,7 @@ "zh-cht": "沒有新的裝置群", "uk": "Немає Нових Груп Пристроїв", "xloc": [ - "default.handlebars->47->2819" + "default.handlebars->47->2824" ] }, { @@ -53739,7 +53778,7 @@ "zh-cht": "沒有新設備", "uk": "Немає Нових Пристроїв", "xloc": [ - "default.handlebars->47->2820" + "default.handlebars->47->2825" ] }, { @@ -53768,8 +53807,8 @@ "zh-cht": "沒有政策", "uk": "Немає полісі", "xloc": [ - "default.handlebars->47->2201", - "default.handlebars->47->2265" + "default.handlebars->47->2204", + "default.handlebars->47->2268" ] }, { @@ -53823,8 +53862,8 @@ "zh-cht": "沒有遙控器", "uk": "Немає Віддалених Команд", "xloc": [ - "default.handlebars->47->2944", - "default.handlebars->47->3045" + "default.handlebars->47->2949", + "default.handlebars->47->3051" ] }, { @@ -53853,8 +53892,8 @@ "zh-cht": "沒有遙控器", "uk": "Немає Віддаленого Керування", "xloc": [ - "default.handlebars->47->2937", - "default.handlebars->47->3038" + "default.handlebars->47->2942", + "default.handlebars->47->3044" ] }, { @@ -53883,8 +53922,8 @@ "zh-cht": "無重置/關閉", "uk": "Немає Перезапуску/Вимикання", "xloc": [ - "default.handlebars->47->2946", - "default.handlebars->47->3047" + "default.handlebars->47->2951", + "default.handlebars->47->3053" ] }, { @@ -53913,13 +53952,13 @@ "zh-cht": "沒有權利", "uk": "Немає Дозволів", "xloc": [ - "default-mobile.handlebars->11->1007", + "default-mobile.handlebars->11->1008", "default-mobile.handlebars->11->347", - "default-mobile.handlebars->11->951", + "default-mobile.handlebars->11->952", "default.handlebars->47->1144", "default.handlebars->47->1169", - "default.handlebars->47->2119", - "default.handlebars->47->2400" + "default.handlebars->47->2122", + "default.handlebars->47->2403" ] }, { @@ -54005,11 +54044,11 @@ "zh-cht": "沒有終端", "uk": "Немає Терміналу", "xloc": [ - "default-mobile.handlebars->11->998", + "default-mobile.handlebars->11->999", "default.handlebars->47->1125", "default.handlebars->47->1150", - "default.handlebars->47->2388", - "default.handlebars->47->2940" + "default.handlebars->47->2391", + "default.handlebars->47->2945" ] }, { @@ -54038,9 +54077,9 @@ "zh-cht": "不能訪問終端", "uk": "Немає Термінального Доступу", "xloc": [ - "default-mobile.handlebars->11->975", - "default.handlebars->47->2347", - "default.handlebars->47->3041" + "default-mobile.handlebars->11->976", + "default.handlebars->47->2350", + "default.handlebars->47->3047" ] }, { @@ -54069,7 +54108,7 @@ "zh-cht": "沒有工具(MeshCmd /路由器)", "uk": "Немає Засобів (MeshCmd/Router)", "xloc": [ - "default.handlebars->47->2821" + "default.handlebars->47->2826" ] }, { @@ -54098,8 +54137,8 @@ "zh-cht": "無卸載", "uk": "Немає Видалення", "xloc": [ - "default.handlebars->47->2943", - "default.handlebars->47->3044" + "default.handlebars->47->2948", + "default.handlebars->47->3050" ] }, { @@ -54128,8 +54167,8 @@ "zh-cht": "沒有喚醒", "uk": "Немає пробудження", "xloc": [ - "default.handlebars->47->2945", - "default.handlebars->47->3046" + "default.handlebars->47->2950", + "default.handlebars->47->3052" ] }, { @@ -54214,9 +54253,9 @@ "zh-cht": "沒有代理設備通過代理中繼", "uk": "Немає агентських пристроїв для ретранслювання через агента", "xloc": [ - "default-mobile.handlebars->11->934", - "default.handlebars->47->2096", - "default.handlebars->47->2159" + "default-mobile.handlebars->11->935", + "default.handlebars->47->2099", + "default.handlebars->47->2162" ] }, { @@ -54245,8 +54284,8 @@ "zh-cht": "沒有自動更新", "uk": "Немає автоматичного оновлення", "xloc": [ - "default.handlebars->47->2450", - "default.handlebars->47->2464" + "default.handlebars->47->2453", + "default.handlebars->47->2467" ] }, { @@ -54275,8 +54314,8 @@ "zh-cht": "沒有共同的裝置群", "uk": "Немає пов'язаних груп пристроїв", "xloc": [ - "default.handlebars->47->2885", - "default.handlebars->47->3073" + "default.handlebars->47->2890", + "default.handlebars->47->3079" ] }, { @@ -54450,8 +54489,8 @@ "zh-cht": "沒有共同的裝置", "uk": "Немає пов'язаних пристроїв", "xloc": [ - "default.handlebars->47->2891", - "default.handlebars->47->3085" + "default.handlebars->47->2896", + "default.handlebars->47->3091" ] }, { @@ -54510,7 +54549,7 @@ "zh-cht": "該裝置群中沒有裝置。", "uk": "У цій групі пристроїв немає пристроїв.", "xloc": [ - "default.handlebars->47->2468" + "default.handlebars->47->2471" ] }, { @@ -54658,7 +54697,7 @@ "zh-cht": "找不到群組。", "uk": "Групи не знайдено.", "xloc": [ - "default.handlebars->47->2824" + "default.handlebars->47->2829" ] }, { @@ -54687,7 +54726,7 @@ "zh-cht": "沒有此裝置的訊息。", "uk": "Немає інформації про цей пристрій.", "xloc": [ - "default-mobile.handlebars->11->905", + "default-mobile.handlebars->11->906", "default.handlebars->47->1748" ] }, @@ -54893,7 +54932,7 @@ "zh-cht": "不再是“{0}”的中繼。", "uk": "Більше не ретранслятор для \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2666" + "default.handlebars->47->2669" ] }, { @@ -54980,8 +55019,8 @@ "zh-cht": "沒有此用戶的電話號碼", "uk": "Немає номера телефону для цього користувача", "xloc": [ - "default-mobile.handlebars->11->1050", - "default.handlebars->47->3279" + "default-mobile.handlebars->11->1051", + "default.handlebars->47->3285" ] }, { @@ -55039,7 +55078,7 @@ "zh-cht": "沒有錄音。", "uk": "Немає записів.", "xloc": [ - "default.handlebars->47->3110" + "default.handlebars->47->3116" ] }, { @@ -55068,8 +55107,8 @@ "zh-cht": "沒有可用的中繼設備。", "uk": "Немає пристроїв ретрансляції.", "xloc": [ - "default-mobile.handlebars->11->957", - "default.handlebars->47->2297" + "default-mobile.handlebars->11->958", + "default.handlebars->47->2300" ] }, { @@ -55124,7 +55163,7 @@ "zh-cht": "沒有伺服器權限", "uk": "Немає дозволів на сервер", "xloc": [ - "default.handlebars->47->2913" + "default.handlebars->47->2918" ] }, { @@ -55179,7 +55218,7 @@ "zh-cht": "沒有用戶群成員身份", "uk": "Не належить до групи користувачів", "xloc": [ - "default.handlebars->47->3079" + "default.handlebars->47->3085" ] }, { @@ -55208,8 +55247,8 @@ "zh-cht": "沒有用戶管理權限", "uk": "Немає прав керування користувачами", "xloc": [ - "default-mobile.handlebars->11->1048", - "default.handlebars->47->3277" + "default-mobile.handlebars->11->1049", + "default.handlebars->47->3283" ] }, { @@ -55238,7 +55277,7 @@ "zh-cht": "未找到相應的用戶。", "uk": "Користувачів не знайдено.", "xloc": [ - "default.handlebars->47->2715" + "default.handlebars->47->2720" ] }, { @@ -55393,33 +55432,33 @@ "default-mobile.handlebars->11->532", "default-mobile.handlebars->11->660", "default-mobile.handlebars->11->708", - "default-mobile.handlebars->11->939", + "default-mobile.handlebars->11->940", "default.handlebars->47->1425", - "default.handlebars->47->2153", - "default.handlebars->47->2164", - "default.handlebars->47->2178", - "default.handlebars->47->2190", - "default.handlebars->47->2197", - "default.handlebars->47->2199", - "default.handlebars->47->2253", - "default.handlebars->47->2453", - "default.handlebars->47->2478", - "default.handlebars->47->2483", - "default.handlebars->47->2691", + "default.handlebars->47->2156", + "default.handlebars->47->2167", + "default.handlebars->47->2181", + "default.handlebars->47->2193", + "default.handlebars->47->2200", + "default.handlebars->47->2202", + "default.handlebars->47->2256", + "default.handlebars->47->2456", + "default.handlebars->47->2481", + "default.handlebars->47->2486", + "default.handlebars->47->2696", "default.handlebars->47->274", - "default.handlebars->47->2845", - "default.handlebars->47->2847", - "default.handlebars->47->2856", - "default.handlebars->47->2868", - "default.handlebars->47->2932", - "default.handlebars->47->2935", - "default.handlebars->47->2947", - "default.handlebars->47->2957", - "default.handlebars->47->2961", - "default.handlebars->47->2973", - "default.handlebars->47->3009", + "default.handlebars->47->2850", + "default.handlebars->47->2852", + "default.handlebars->47->2861", + "default.handlebars->47->2873", + "default.handlebars->47->2937", + "default.handlebars->47->2940", + "default.handlebars->47->2952", + "default.handlebars->47->2962", + "default.handlebars->47->2966", + "default.handlebars->47->2978", + "default.handlebars->47->3015", "default.handlebars->47->302", - "default.handlebars->47->3204", + "default.handlebars->47->3210", "default.handlebars->47->400", "default.handlebars->47->401", "default.handlebars->47->85", @@ -55514,7 +55553,7 @@ "uk": "Норвезька", "xloc": [ "default-mobile.handlebars->11->228", - "default.handlebars->47->1959", + "default.handlebars->47->1962", "login2.handlebars->7->122" ] }, @@ -55545,7 +55584,7 @@ "uk": "Норвезька (Букмал)", "xloc": [ "default-mobile.handlebars->11->229", - "default.handlebars->47->1960", + "default.handlebars->47->1963", "login2.handlebars->7->123" ] }, @@ -55576,7 +55615,7 @@ "uk": "Норвезька (Нюнорск)", "xloc": [ "default-mobile.handlebars->11->230", - "default.handlebars->47->1961", + "default.handlebars->47->1964", "login2.handlebars->7->124" ] }, @@ -55636,7 +55675,7 @@ "uk": "Не Активовано (всередині)", "xloc": [ "default-mobile.handlebars->11->504", - "default-mobile.handlebars->11->815", + "default-mobile.handlebars->11->816", "default.handlebars->47->908" ] }, @@ -55667,7 +55706,7 @@ "uk": "Не активовано (Поперед)", "xloc": [ "default-mobile.handlebars->11->503", - "default-mobile.handlebars->11->814", + "default-mobile.handlebars->11->815", "default.handlebars->47->907" ] }, @@ -55697,8 +55736,8 @@ "zh-cht": "未連接", "uk": "Не Підключено", "xloc": [ - "default.handlebars->47->2444", - "default.handlebars->47->2457" + "default.handlebars->47->2447", + "default.handlebars->47->2460" ] }, { @@ -55727,7 +55766,7 @@ "zh-cht": "未知", "uk": "Невідомо", "xloc": [ - "default-mobile.handlebars->11->825", + "default-mobile.handlebars->11->826", "default.handlebars->47->1668" ] }, @@ -55786,7 +55825,7 @@ "zh-cht": "不在伺服器上", "uk": "Не на сервері", "xloc": [ - "default.handlebars->47->3132" + "default.handlebars->47->3138" ] }, { @@ -55815,8 +55854,8 @@ "zh-cht": "沒有設置", "uk": "Не визначено", "xloc": [ - "default.handlebars->47->2919", - "default.handlebars->47->2920" + "default.handlebars->47->2924", + "default.handlebars->47->2925" ] }, { @@ -55845,7 +55884,7 @@ "zh-cht": "未經審核的", "uk": "Не веріфіковано", "xloc": [ - "default.handlebars->47->3053" + "default.handlebars->47->3059" ] }, { @@ -55876,13 +55915,13 @@ "xloc": [ "default-mobile.handlebars->11->545", "default-mobile.handlebars->11->596", - "default-mobile.handlebars->11->945", + "default-mobile.handlebars->11->946", "default.handlebars->47->1010", "default.handlebars->47->1135", "default.handlebars->47->1160", "default.handlebars->47->1174", - "default.handlebars->47->2209", - "default.handlebars->47->2984", + "default.handlebars->47->2212", + "default.handlebars->47->2990", "default.handlebars->container->column_l->p10->p10info->1->1->0->notesPanel->1->1->1->0" ] }, @@ -55942,8 +55981,8 @@ "uk": "Налаштування Сповіщень", "xloc": [ "default.handlebars->47->1122", - "default.handlebars->47->2069", - "default.handlebars->47->2443", + "default.handlebars->47->2072", + "default.handlebars->47->2446", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->14" ] }, @@ -56025,7 +56064,7 @@ "zh-cht": "通知音效", "uk": "Звук сповіщення", "xloc": [ - "default.handlebars->47->2064" + "default.handlebars->47->2067" ] }, { @@ -56054,7 +56093,7 @@ "zh-cht": "通知", "uk": "Сповіщення", "xloc": [ - "default.handlebars->47->2198", + "default.handlebars->47->2201", "default.handlebars->47->981" ] }, @@ -56085,7 +56124,7 @@ "uk": "Сповіщати", "xloc": [ "default.handlebars->47->299", - "default.handlebars->47->2992" + "default.handlebars->47->2998" ] }, { @@ -56143,9 +56182,9 @@ "zh-cht": "通知使用者", "uk": "Повідомити користувачів", "xloc": [ - "default.handlebars->47->2308", - "default.handlebars->47->2312", - "default.handlebars->47->2315" + "default.handlebars->47->2311", + "default.handlebars->47->2315", + "default.handlebars->47->2318" ] }, { @@ -56174,7 +56213,7 @@ "zh-cht": "通知{0}", "uk": "Сповіщення {0}", "xloc": [ - "default.handlebars->47->2757" + "default.handlebars->47->2762" ] }, { @@ -56203,7 +56242,7 @@ "zh-cht": "無效的", "uk": "Null", "xloc": [ - "default.handlebars->47->3350" + "default.handlebars->47->3356" ] }, { @@ -56259,15 +56298,15 @@ "uk": "ОК", "xloc": [ "default-mobile.handlebars->11->324", - "default-mobile.handlebars->11->751", - "default-mobile.handlebars->11->755", - "default-mobile.handlebars->11->759", - "default-mobile.handlebars->11->774", + "default-mobile.handlebars->11->752", + "default-mobile.handlebars->11->756", + "default-mobile.handlebars->11->760", + "default-mobile.handlebars->11->775", "default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->7", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->47->2141", - "default.handlebars->47->2448", - "default.handlebars->47->2462", + "default.handlebars->47->2144", + "default.handlebars->47->2451", + "default.handlebars->47->2465", "default.handlebars->47->936", "default.handlebars->47->940", "default.handlebars->47->944", @@ -56399,7 +56438,7 @@ "uk": "Окситанська", "xloc": [ "default-mobile.handlebars->11->231", - "default.handlebars->47->1962", + "default.handlebars->47->1965", "login2.handlebars->7->125" ] }, @@ -56429,8 +56468,8 @@ "zh-cht": "發生在{0}", "uk": "Це сталося в {0}", "xloc": [ - "default-mobile.handlebars->11->1016", - "default.handlebars->47->3245" + "default-mobile.handlebars->11->1017", + "default.handlebars->47->3251" ] }, { @@ -56461,8 +56500,8 @@ "xloc": [ "default-mobile.handlebars->11->450", "default-mobile.handlebars->11->458", - "default-mobile.handlebars->11->766", - "default-mobile.handlebars->11->770", + "default-mobile.handlebars->11->767", + "default-mobile.handlebars->11->771", "default.handlebars->47->703", "default.handlebars->47->951", "default.handlebars->47->955" @@ -56523,7 +56562,7 @@ "zh-cht": "離線用戶", "uk": "Офлайн Користувачі", "xloc": [ - "default.handlebars->47->2712" + "default.handlebars->47->2717" ] }, { @@ -56582,7 +56621,7 @@ "uk": "Старий пароль:", "xloc": [ "default-mobile.handlebars->11->326", - "default.handlebars->47->2081" + "default.handlebars->47->2084" ] }, { @@ -56592,8 +56631,8 @@ "pl": "Włącz", "uk": "Увімк", "xloc": [ - "default-mobile.handlebars->11->764", - "default-mobile.handlebars->11->768", + "default-mobile.handlebars->11->765", + "default-mobile.handlebars->11->769", "default.handlebars->47->949", "default.handlebars->47->953" ] @@ -56624,7 +56663,7 @@ "zh-cht": "一天", "uk": "Один День", "xloc": [ - "default.handlebars->47->2688" + "default.handlebars->47->2693" ] }, { @@ -56683,7 +56722,7 @@ "zh-cht": "一次性密碼", "uk": "Одноразовий пароль (OTP)", "xloc": [ - "default.handlebars->47->3211" + "default.handlebars->47->3217" ] }, { @@ -56743,7 +56782,7 @@ "zh-cht": "在線用戶", "uk": "Користувачі Онлайн", "xloc": [ - "default.handlebars->47->2711" + "default.handlebars->47->2716" ] }, { @@ -56772,7 +56811,7 @@ "zh-cht": "僅顯示前 100 個用戶", "uk": "Показувати лише перші 100 користувачів", "xloc": [ - "default.handlebars->47->2758" + "default.handlebars->47->2763" ] }, { @@ -56803,7 +56842,7 @@ "xloc": [ "default-mobile.handlebars->11->719", "default.handlebars->47->1562", - "default.handlebars->47->2505", + "default.handlebars->47->2508", "default.handlebars->47->853", "sharing.handlebars->11->67" ] @@ -57223,7 +57262,7 @@ "zh-cht": "開場:{0}", "uk": "Відкриття: {0}", "xloc": [ - "default.handlebars->47->2534" + "default.handlebars->47->2537" ] }, { @@ -57252,10 +57291,10 @@ "zh-cht": "操作系統", "uk": "Операційна система", "xloc": [ - "default-mobile.handlebars->11->778", + "default-mobile.handlebars->11->779", "default.handlebars->47->1342", "default.handlebars->47->1611", - "default.handlebars->47->3177", + "default.handlebars->47->3183", "default.handlebars->47->342", "default.handlebars->47->547", "default.handlebars->47->597", @@ -57290,8 +57329,8 @@ "xloc": [ "default-mobile.handlebars->11->586", "default.handlebars->47->1268", - "default.handlebars->47->2740", - "default.handlebars->47->2832", + "default.handlebars->47->2745", + "default.handlebars->47->2837", "default.handlebars->47->748", "default.handlebars->47->760" ] @@ -57378,7 +57417,7 @@ "uk": "Орія", "xloc": [ "default-mobile.handlebars->11->232", - "default.handlebars->47->1963", + "default.handlebars->47->1966", "login2.handlebars->7->126" ] }, @@ -57409,7 +57448,7 @@ "uk": "Оромо", "xloc": [ "default-mobile.handlebars->11->233", - "default.handlebars->47->1964", + "default.handlebars->47->1967", "login2.handlebars->7->127" ] }, @@ -57497,7 +57536,7 @@ "zh-cht": "過時的", "uk": "Застаріло", "xloc": [ - "default-mobile.handlebars->11->773", + "default-mobile.handlebars->11->774", "default.handlebars->47->958" ] }, @@ -57756,7 +57795,7 @@ "zh-cht": "推", "uk": "НАТИСНІТЬ", "xloc": [ - "default-mobile.handlebars->11->916", + "default-mobile.handlebars->11->917", "default.handlebars->47->1760" ] }, @@ -57875,9 +57914,9 @@ "zh-cht": "零件號", "uk": "Номер деталі (P/N)", "xloc": [ - "default-mobile.handlebars->11->859", - "default-mobile.handlebars->11->865", - "default-mobile.handlebars->11->871", + "default-mobile.handlebars->11->860", + "default-mobile.handlebars->11->866", + "default-mobile.handlebars->11->872", "default.handlebars->47->1702", "default.handlebars->47->1708", "default.handlebars->47->1714" @@ -57909,7 +57948,7 @@ "zh-cht": "部分的", "uk": "Частково", "xloc": [ - "default.handlebars->47->2727" + "default.handlebars->47->2732" ] }, { @@ -57991,8 +58030,8 @@ "uk": "Часткові Дозволи", "xloc": [ "default-mobile.handlebars->11->345", - "default-mobile.handlebars->11->949", - "default.handlebars->47->2117" + "default-mobile.handlebars->11->950", + "default.handlebars->47->2120" ] }, { @@ -58021,7 +58060,7 @@ "zh-cht": "部分權限", "uk": "Часткові дозволи", "xloc": [ - "default.handlebars->47->2916" + "default.handlebars->47->2921" ] }, { @@ -58086,14 +58125,14 @@ "default.handlebars->47->1391", "default.handlebars->47->1502", "default.handlebars->47->1509", - "default.handlebars->47->2109", - "default.handlebars->47->2271", - "default.handlebars->47->2794", - "default.handlebars->47->2795", - "default.handlebars->47->2953", - "default.handlebars->47->2955", - "default.handlebars->47->3058", - "default.handlebars->47->3059", + "default.handlebars->47->2112", + "default.handlebars->47->2274", + "default.handlebars->47->2799", + "default.handlebars->47->2800", + "default.handlebars->47->2958", + "default.handlebars->47->2960", + "default.handlebars->47->3064", + "default.handlebars->47->3065", "default.handlebars->47->336", "default.handlebars->47->508", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->2->1", @@ -58262,8 +58301,8 @@ "zh-cht": "密碼已更改。", "uk": "Пароль змінено.", "xloc": [ - "default-mobile.handlebars->11->1044", - "default.handlebars->47->3273" + "default-mobile.handlebars->11->1045", + "default.handlebars->47->3279" ] }, { @@ -58322,7 +58361,7 @@ "zh-cht": "密碼提示", "uk": "Натяк пароля", "xloc": [ - "default.handlebars->47->3060" + "default.handlebars->47->3066" ] }, { @@ -58352,7 +58391,7 @@ "uk": "Натяк пароля:", "xloc": [ "default-mobile.handlebars->11->329", - "default.handlebars->47->2084" + "default.handlebars->47->2087" ] }, { @@ -58467,8 +58506,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->11->321", "default-mobile.handlebars->11->322", - "default.handlebars->47->2076", - "default.handlebars->47->2077", + "default.handlebars->47->2079", + "default.handlebars->47->2080", "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", @@ -58517,7 +58556,7 @@ "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", "default.handlebars->47->1523", "default.handlebars->47->1569", - "default.handlebars->47->2507", + "default.handlebars->47->2510", "default.handlebars->container->column_l->p12->termTable->1->1->4->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -58725,7 +58764,7 @@ "zh-cht": "執行代理指令", "uk": "Виконати дію агента", "xloc": [ - "default-mobile.handlebars->11->919", + "default-mobile.handlebars->11->920", "default.handlebars->47->1763" ] }, @@ -58807,7 +58846,7 @@ "zh-cht": "執行英特爾®AMT激活和配置。", "uk": "Виконати активацію та налаштування Intel® AMT.", "xloc": [ - "default.handlebars->47->2215", + "default.handlebars->47->2218", "default.handlebars->47->485" ] }, @@ -59230,7 +59269,7 @@ "zh-cht": "執行電源操作= {0},強制執行= {1}", "uk": "Виконання керування живленням={0}, примусове={1}", "xloc": [ - "default.handlebars->47->2539" + "default.handlebars->47->2542" ] }, { @@ -59259,8 +59298,8 @@ "zh-cht": "沒有權限", "uk": "У дозволі відмовлено", "xloc": [ - "default-mobile.handlebars->11->1025", - "default.handlebars->47->3254" + "default-mobile.handlebars->11->1026", + "default.handlebars->47->3260" ] }, { @@ -59289,9 +59328,9 @@ "zh-cht": "權限", "uk": "Дозволи", "xloc": [ - "default-mobile.handlebars->11->1010", - "default.handlebars->47->2403", - "default.handlebars->47->2710" + "default-mobile.handlebars->11->1011", + "default.handlebars->47->2406", + "default.handlebars->47->2715" ] }, { @@ -59321,7 +59360,7 @@ "uk": "Перська/Іранська", "xloc": [ "default-mobile.handlebars->11->234", - "default.handlebars->47->1965", + "default.handlebars->47->1968", "login2.handlebars->7->128" ] }, @@ -59415,7 +59454,7 @@ "default.handlebars->47->1779", "default.handlebars->47->1782", "default.handlebars->47->254", - "default.handlebars->47->3007" + "default.handlebars->47->3013" ] }, { @@ -59444,7 +59483,7 @@ "zh-cht": "電話號碼", "uk": "Номер Телефону", "xloc": [ - "default.handlebars->47->2931" + "default.handlebars->47->2936" ] }, { @@ -59475,7 +59514,7 @@ "xloc": [ "default-mobile.handlebars->11->102", "default.handlebars->47->1781", - "default.handlebars->47->3006" + "default.handlebars->47->3012" ] }, { @@ -59706,7 +59745,7 @@ "uk": "Будь ласка, зачекайте трохи часу, поки буде отримано підтвердження.", "xloc": [ "default-mobile.handlebars->11->317", - "default.handlebars->47->2071" + "default.handlebars->47->2074" ] }, { @@ -59736,7 +59775,7 @@ "uk": "Дія Плаґіна", "xloc": [ "default.handlebars->47->317", - "default.handlebars->47->3388" + "default.handlebars->47->3394" ] }, { @@ -59943,7 +59982,7 @@ "uk": "Поліс", "xloc": [ "default-mobile.handlebars->11->344", - "default.handlebars->47->2116" + "default.handlebars->47->2119" ] }, { @@ -59973,7 +60012,7 @@ "uk": "Польська", "xloc": [ "default-mobile.handlebars->11->235", - "default.handlebars->47->1966", + "default.handlebars->47->1969", "login2.handlebars->7->129" ] }, @@ -60071,7 +60110,7 @@ "zh-cht": "端口名稱同步", "uk": "Синхронізація імен портів", "xloc": [ - "default.handlebars->47->2174" + "default.handlebars->47->2177" ] }, { @@ -60213,7 +60252,7 @@ "uk": "Португальська", "xloc": [ "default-mobile.handlebars->11->236", - "default.handlebars->47->1967", + "default.handlebars->47->1970", "login2.handlebars->7->130" ] }, @@ -60244,7 +60283,7 @@ "uk": "Португальська (Бразилія)", "xloc": [ "default-mobile.handlebars->11->237", - "default.handlebars->47->1968", + "default.handlebars->47->1971", "login2.handlebars->7->131" ] }, @@ -60394,7 +60433,7 @@ "zh-cht": "電源狀態", "uk": "Стани Живлення", "xloc": [ - "default.handlebars->47->2455", + "default.handlebars->47->2458", "default.handlebars->container->column_l->p21->p21main->1->1->meshPowerChartDiv->1" ] }, @@ -60616,7 +60655,7 @@ "zh-cht": "存在於伺服器上", "uk": "Присутній на сервері", "xloc": [ - "default.handlebars->47->3131" + "default.handlebars->47->3137" ] }, { @@ -60767,8 +60806,8 @@ "default-mobile.handlebars->11->89", "default-mobile.handlebars->11->92", "default.handlebars->47->1774", - "default.handlebars->47->3001", - "default.handlebars->47->3056", + "default.handlebars->47->3007", + "default.handlebars->47->3062", "default.handlebars->47->329" ] }, @@ -61115,7 +61154,7 @@ "zh-cht": "處理控制台命令:“{0}”", "uk": "Обробка консольної команди: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2531" + "default.handlebars->47->2534" ] }, { @@ -61202,9 +61241,9 @@ "zh-cht": "用戶同意提示", "uk": "Запит згоди користувача", "xloc": [ - "default.handlebars->47->2309", - "default.handlebars->47->2313", - "default.handlebars->47->2316" + "default.handlebars->47->2312", + "default.handlebars->47->2316", + "default.handlebars->47->2319" ] }, { @@ -61233,7 +61272,7 @@ "zh-cht": "協議", "uk": "Протокол", "xloc": [ - "default.handlebars->47->3129", + "default.handlebars->47->3135", "player.handlebars->3->32" ] }, @@ -61318,7 +61357,7 @@ "zh-cht": "配置狀態", "uk": "Стан Ініціалізації", "xloc": [ - "default-mobile.handlebars->11->819", + "default-mobile.handlebars->11->820", "default.handlebars->47->1662" ] }, @@ -61375,7 +61414,7 @@ "uk": "Публічне Посилання", "xloc": [ "default-mobile.handlebars->11->359", - "default.handlebars->47->2490" + "default.handlebars->47->2493" ] }, { @@ -61431,7 +61470,7 @@ "uk": "Пенджабі", "xloc": [ "default-mobile.handlebars->11->238", - "default.handlebars->47->1969", + "default.handlebars->47->1972", "login2.handlebars->7->132" ] }, @@ -61462,7 +61501,7 @@ "uk": "Пенджабі (Індія)", "xloc": [ "default-mobile.handlebars->11->239", - "default.handlebars->47->1970", + "default.handlebars->47->1973", "login2.handlebars->7->133" ] }, @@ -61493,7 +61532,7 @@ "uk": "Пенджабі (Пакистан)", "xloc": [ "default-mobile.handlebars->11->240", - "default.handlebars->47->1971", + "default.handlebars->47->1974", "login2.handlebars->7->134" ] }, @@ -61553,7 +61592,7 @@ "zh-cht": "推送通知", "uk": "Push-повідомлення", "xloc": [ - "default.handlebars->47->3210" + "default.handlebars->47->3216" ] }, { @@ -61622,7 +61661,7 @@ "uk": "Pushover", "xloc": [ "default.handlebars->47->1791", - "default.handlebars->47->3014" + "default.handlebars->47->3020" ] }, { @@ -61710,7 +61749,7 @@ "uk": "Кечуа", "xloc": [ "default-mobile.handlebars->11->241", - "default.handlebars->47->1972", + "default.handlebars->47->1975", "login2.handlebars->7->135" ] }, @@ -62103,7 +62142,7 @@ "zh-cht": "RSS", "uk": "RSS", "xloc": [ - "default.handlebars->47->3346" + "default.handlebars->47->3352" ] }, { @@ -62161,7 +62200,7 @@ "zh-cht": "隨機密碼", "uk": "Випадковий пароль", "xloc": [ - "default.handlebars->47->2272" + "default.handlebars->47->2275" ] }, { @@ -62190,7 +62229,7 @@ "zh-cht": "隨機密碼。", "uk": "Випадковий пароль.", "xloc": [ - "default.handlebars->47->2796" + "default.handlebars->47->2801" ] }, { @@ -62219,7 +62258,7 @@ "zh-cht": "力登 Dominion KX III", "uk": "Raritan Dominion KX III", "xloc": [ - "default.handlebars->47->2105" + "default.handlebars->47->2108" ] }, { @@ -62333,9 +62372,9 @@ "zh-cht": "真正的名字", "uk": "Справжнє Ім'я", "xloc": [ - "default.handlebars->47->2928", - "default.handlebars->47->2930", - "default.handlebars->47->3049" + "default.handlebars->47->2933", + "default.handlebars->47->2935", + "default.handlebars->47->3055" ] }, { @@ -62345,8 +62384,8 @@ "pl": "Ochrona W Czasie Rzeczywistym", "uk": "Захист у Реальному Часі", "xloc": [ - "default-mobile.handlebars->11->763", - "default-mobile.handlebars->11->765", + "default-mobile.handlebars->11->764", + "default-mobile.handlebars->11->766", "default.handlebars->47->948", "default.handlebars->47->950" ] @@ -62377,7 +62416,7 @@ "zh-cht": "境界", "uk": "Області", "xloc": [ - "default.handlebars->47->2805" + "default.handlebars->47->2810" ] }, { @@ -62438,9 +62477,9 @@ "zh-cht": "記錄會議", "uk": "Запис Сеансів", "xloc": [ - "default.handlebars->47->2176", - "default.handlebars->47->2855", - "default.handlebars->47->2936" + "default.handlebars->47->2179", + "default.handlebars->47->2860", + "default.handlebars->47->2941" ] }, { @@ -62498,9 +62537,9 @@ "zh-cht": "記錄會議", "uk": "Запис сеансу", "xloc": [ - "default.handlebars->47->2317", - "default.handlebars->47->2893", - "default.handlebars->47->3037" + "default.handlebars->47->2320", + "default.handlebars->47->2898", + "default.handlebars->47->3043" ] }, { @@ -62529,7 +62568,7 @@ "zh-cht": "記錄細節", "uk": "Деталі запису", "xloc": [ - "default.handlebars->47->3143" + "default.handlebars->47->3149" ] }, { @@ -62568,7 +62607,7 @@ "pl": "Hasło Odzyskiwania", "uk": "Відновлення Пароля", "xloc": [ - "default-mobile.handlebars->11->908", + "default-mobile.handlebars->11->909", "default.handlebars->47->1751" ] }, @@ -62715,7 +62754,7 @@ "default-mobile.handlebars->11->365", "default-mobile.handlebars->11->712", "default.handlebars->47->1555", - "default.handlebars->47->2497", + "default.handlebars->47->2500", "sharing.handlebars->11->60" ] }, @@ -62903,8 +62942,8 @@ "default-mobile.handlebars->11->472", "default.handlebars->47->1143", "default.handlebars->47->1168", - "default.handlebars->47->2399", - "default.handlebars->47->3328", + "default.handlebars->47->2402", + "default.handlebars->47->3334", "default.handlebars->47->415", "default.handlebars->47->419", "default.handlebars->47->723" @@ -62936,7 +62975,7 @@ "zh-cht": "中繼數量", "uk": "Лічильник Ретрансляцій", "xloc": [ - "default.handlebars->47->3313" + "default.handlebars->47->3319" ] }, { @@ -62965,11 +63004,11 @@ "zh-cht": "繼電器裝置", "uk": "Пристрій Ретрансляції", "xloc": [ - "default-mobile.handlebars->11->942", - "default-mobile.handlebars->11->958", - "default.handlebars->47->2102", - "default.handlebars->47->2167", - "default.handlebars->47->2298" + "default-mobile.handlebars->11->943", + "default-mobile.handlebars->11->959", + "default.handlebars->47->2105", + "default.handlebars->47->2170", + "default.handlebars->47->2301" ] }, { @@ -62998,7 +63037,7 @@ "zh-cht": "中繼錯誤", "uk": "Помилки Ретрансляції", "xloc": [ - "default.handlebars->47->3306" + "default.handlebars->47->3312" ] }, { @@ -63064,8 +63103,8 @@ "zh-cht": "中繼連接", "uk": "Сеанси Ретрансляції", "xloc": [ - "default.handlebars->47->3312", - "default.handlebars->47->3340" + "default.handlebars->47->3318", + "default.handlebars->47->3346" ] }, { @@ -63094,7 +63133,7 @@ "zh-cht": "繼電器裝置", "uk": "Пристрій Рестранслятор", "xloc": [ - "default.handlebars->47->2680" + "default.handlebars->47->2685" ] }, { @@ -63178,7 +63217,7 @@ "zh-cht": "記住設備", "uk": "Запам'ятати пристрій", "xloc": [ - "default.handlebars->47->3212" + "default.handlebars->47->3218" ] }, { @@ -63529,8 +63568,8 @@ "zh-cht": "遠程命令", "uk": "Віддалені Команди", "xloc": [ - "default-mobile.handlebars->11->985", - "default.handlebars->47->2357" + "default-mobile.handlebars->11->986", + "default.handlebars->47->2360" ] }, { @@ -63561,11 +63600,11 @@ "xloc": [ "default-mobile.handlebars->11->550", "default-mobile.handlebars->11->551", - "default-mobile.handlebars->11->972", - "default-mobile.handlebars->11->992", + "default-mobile.handlebars->11->973", + "default-mobile.handlebars->11->993", "default.handlebars->47->1026", "default.handlebars->47->1027", - "default.handlebars->47->2381" + "default.handlebars->47->2384" ] }, { @@ -63579,7 +63618,7 @@ "pl": "Zdalne Sterowanie i Przekierowanie", "uk": "Дистанційне Керування та Перенаправлення", "xloc": [ - "default.handlebars->47->2342" + "default.handlebars->47->2345" ] }, { @@ -63727,8 +63766,8 @@ "zh-cht": "遠程桌面連接欄已激活/更新", "uk": "Панель підключення до віддаленої стільниці активовано/оновлено", "xloc": [ - "default.handlebars->47->2545", - "default.handlebars->47->2551" + "default.handlebars->47->2548", + "default.handlebars->47->2554" ] }, { @@ -63757,7 +63796,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "uk": "Панель підключення до віддаленої стільниці не працює або не підтримується", "xloc": [ - "default.handlebars->47->2546" + "default.handlebars->47->2549" ] }, { @@ -63786,7 +63825,7 @@ "zh-cht": "遠程桌面連接欄失敗或不受支持", "uk": "Панель підключення до віддаленої стільниці не працює або не підтримується", "xloc": [ - "default.handlebars->47->2552" + "default.handlebars->47->2555" ] }, { @@ -63815,9 +63854,9 @@ "zh-cht": "本地用戶強行關閉了遠程桌面連接", "uk": "Локальний користувач примусово закрив підключення до віддаленої стільниці", "xloc": [ - "default.handlebars->47->2543", - "default.handlebars->47->2547", - "default.handlebars->47->2553" + "default.handlebars->47->2546", + "default.handlebars->47->2550", + "default.handlebars->47->2556" ] }, { @@ -64177,7 +64216,7 @@ "zh-cht": "遠程網格用戶", "uk": "Віддалений Користувач Mesh", "xloc": [ - "default-mobile.handlebars->11->1013" + "default-mobile.handlebars->11->1014" ] }, { @@ -64232,7 +64271,7 @@ "zh-cht": "遠程會話", "uk": "Віддалені Сеанси", "xloc": [ - "default.handlebars->47->3145" + "default.handlebars->47->3151" ] }, { @@ -64397,11 +64436,11 @@ "zh-cht": "僅遠程查看", "uk": "Лише Віддалений Перегляд", "xloc": [ - "default-mobile.handlebars->11->973", - "default-mobile.handlebars->11->997", - "default.handlebars->47->2343", - "default.handlebars->47->2386", - "default.handlebars->47->3040" + "default-mobile.handlebars->11->974", + "default-mobile.handlebars->11->998", + "default.handlebars->47->2346", + "default.handlebars->47->2389", + "default.handlebars->47->3046" ] }, { @@ -64555,9 +64594,9 @@ "pl": "Wyjmowane", "uk": "Змінний", "xloc": [ - "default-mobile.handlebars->11->881", - "default-mobile.handlebars->11->893", - "default-mobile.handlebars->11->900", + "default-mobile.handlebars->11->882", + "default-mobile.handlebars->11->894", + "default-mobile.handlebars->11->901", "default.handlebars->47->1724", "default.handlebars->47->1736", "default.handlebars->47->1743" @@ -64644,7 +64683,7 @@ "zh-cht": "刪除配置", "uk": "Видалити Конфігурацію", "xloc": [ - "default.handlebars->47->2137" + "default.handlebars->47->2140" ] }, { @@ -64725,8 +64764,8 @@ "zh-cht": "刪除裝置群權限", "uk": "Видалити дозволи групи пристроїв", "xloc": [ - "default.handlebars->47->2897", - "default.handlebars->47->3101" + "default.handlebars->47->2902", + "default.handlebars->47->3107" ] }, { @@ -64755,8 +64794,8 @@ "zh-cht": "刪除裝置權限", "uk": "Видалити дозволи пристрою", "xloc": [ - "default.handlebars->47->2895", - "default.handlebars->47->3088" + "default.handlebars->47->2900", + "default.handlebars->47->3094" ] }, { @@ -64785,7 +64824,7 @@ "zh-cht": "刪除設備共享", "uk": "Видалити поширення до пристрою", "xloc": [ - "default.handlebars->47->3086" + "default.handlebars->47->3092" ] }, { @@ -64814,7 +64853,7 @@ "zh-cht": "刪除登錄令牌", "uk": "Видалити токен входу", "xloc": [ - "default.handlebars->47->2129" + "default.handlebars->47->2132" ] }, { @@ -64880,7 +64919,7 @@ "zh-cht": "刪除用戶群成員身份", "uk": "Видалити належність до групи користувачів", "xloc": [ - "default.handlebars->47->3097" + "default.handlebars->47->3103" ] }, { @@ -64909,8 +64948,8 @@ "zh-cht": "刪除用戶群權限", "uk": "Видалити дозволи групи користувачів", "xloc": [ - "default.handlebars->47->2408", - "default.handlebars->47->3093" + "default.handlebars->47->2411", + "default.handlebars->47->3099" ] }, { @@ -64939,7 +64978,7 @@ "zh-cht": "刪除用戶成員資格", "uk": "Видалити приналежність користувача", "xloc": [ - "default.handlebars->47->2905" + "default.handlebars->47->2910" ] }, { @@ -64968,8 +65007,8 @@ "zh-cht": "刪除用戶權限", "uk": "Видалити дозволи користувача", "xloc": [ - "default.handlebars->47->2406", - "default.handlebars->47->3090" + "default.handlebars->47->2409", + "default.handlebars->47->3096" ] }, { @@ -64998,7 +65037,7 @@ "zh-cht": "刪除所有二因子鑑別。", "uk": "Видалити всі двофакторні автентифікації.", "xloc": [ - "default.handlebars->47->3063" + "default.handlebars->47->3069" ] }, { @@ -65027,7 +65066,7 @@ "zh-cht": "刪除此用戶標識的所有先前事件。", "uk": "Видалити всі попередні події для цього ідентифікатора користувача.", "xloc": [ - "default.handlebars->47->2797" + "default.handlebars->47->2802" ] }, { @@ -65056,7 +65095,7 @@ "zh-cht": "斷開連接後删除裝置", "uk": "Видалити пристрій після відключення", "xloc": [ - "default.handlebars->47->2320" + "default.handlebars->47->2323" ] }, { @@ -65086,7 +65125,7 @@ "uk": "Видалити поширення до пристрою", "xloc": [ "default.handlebars->47->1086", - "default.handlebars->47->2230" + "default.handlebars->47->2233" ] }, { @@ -65115,7 +65154,7 @@ "zh-cht": "刪除非活動", "uk": "Видалити неактивний", "xloc": [ - "default.handlebars->47->2177" + "default.handlebars->47->2180" ] }, { @@ -65144,7 +65183,7 @@ "zh-cht": "刪除登錄令牌", "uk": "Видалити токен входу", "xloc": [ - "default.handlebars->47->2124" + "default.handlebars->47->2127" ] }, { @@ -65304,7 +65343,7 @@ "zh-cht": "刪除此用戶", "uk": "Видалити цього користувача", "xloc": [ - "default.handlebars->47->2996" + "default.handlebars->47->3002" ] }, { @@ -65333,7 +65372,7 @@ "zh-cht": "刪除用戶群成員身份", "uk": "Видалити приналежність до групи користувачів", "xloc": [ - "default.handlebars->47->3077" + "default.handlebars->47->3083" ] }, { @@ -65362,7 +65401,7 @@ "zh-cht": "刪除此裝置的用戶群權限", "uk": "Видалити права групи користувачів на цьому пристрої", "xloc": [ - "default.handlebars->47->2889" + "default.handlebars->47->2894" ] }, { @@ -65392,7 +65431,7 @@ "uk": "Видалити права групи користувачів на цю групу пристроїв", "xloc": [ "default.handlebars->47->1079", - "default.handlebars->47->2883" + "default.handlebars->47->2888" ] }, { @@ -65422,10 +65461,10 @@ "uk": "Видалити права користувача для цієї групи пристроїв", "xloc": [ "default.handlebars->47->1080", - "default.handlebars->47->2226", - "default.handlebars->47->2877", - "default.handlebars->47->3071", - "default.handlebars->47->3083" + "default.handlebars->47->2229", + "default.handlebars->47->2882", + "default.handlebars->47->3077", + "default.handlebars->47->3089" ] }, { @@ -65480,7 +65519,7 @@ "zh-cht": "刪除了帳戶顯示名稱。", "uk": "Відображене ім'я акаунту видалено.", "xloc": [ - "default.handlebars->47->2643" + "default.handlebars->47->2646" ] }, { @@ -65509,7 +65548,7 @@ "zh-cht": "刪除身份驗證應用程序", "uk": "Програму автентифікації видалено", "xloc": [ - "default.handlebars->47->2605" + "default.handlebars->47->2608" ] }, { @@ -65538,7 +65577,7 @@ "zh-cht": "刪除的設備共享{0}", "uk": "Спільний доступ до пристрою видалено {0}", "xloc": [ - "default.handlebars->47->2616" + "default.handlebars->47->2619" ] }, { @@ -65567,7 +65606,7 @@ "zh-cht": "從設備組{1}中刪除了設備{0}", "uk": "Пристрій {0} видалено з групи пристроїв {1}", "xloc": [ - "default.handlebars->47->2601" + "default.handlebars->47->2604" ] }, { @@ -65596,7 +65635,7 @@ "zh-cht": "刪除了登錄令牌", "uk": "Токен входу видалено", "xloc": [ - "default.handlebars->47->2630" + "default.handlebars->47->2633" ] }, { @@ -65610,7 +65649,7 @@ "pl": "Usunięto konto komunikatora użytkownika {0}", "uk": "токен входу видалено", "xloc": [ - "default.handlebars->47->2671" + "default.handlebars->47->2674" ] }, { @@ -65639,7 +65678,7 @@ "zh-cht": "已刪除用戶{0}的電話號碼", "uk": "Видалено номер телефону користувача {0}", "xloc": [ - "default.handlebars->47->2611" + "default.handlebars->47->2614" ] }, { @@ -65668,7 +65707,7 @@ "zh-cht": "移除推送通知認證設備", "uk": "Видалено пристрій автентифікації push-повідомлень", "xloc": [ - "default.handlebars->47->2628" + "default.handlebars->47->2631" ] }, { @@ -65697,7 +65736,7 @@ "zh-cht": "移除安全密鑰", "uk": "Ключ безпеки видалено", "xloc": [ - "default.handlebars->47->2608" + "default.handlebars->47->2611" ] }, { @@ -65726,9 +65765,9 @@ "zh-cht": "刪除了{0}的用戶設備權限", "uk": "Права користувача пристрою видалено для {0}", "xloc": [ - "default.handlebars->47->2574", - "default.handlebars->47->2595", - "default.handlebars->47->2600" + "default.handlebars->47->2577", + "default.handlebars->47->2598", + "default.handlebars->47->2603" ] }, { @@ -65757,7 +65796,7 @@ "zh-cht": "從設備組{1}中刪除了用戶組{0}", "uk": "Групу користувачів {0} видалено з групи пристроїв {1}", "xloc": [ - "default.handlebars->47->2584" + "default.handlebars->47->2587" ] }, { @@ -65786,7 +65825,7 @@ "zh-cht": "已從設備組{1}中刪除用戶{0}", "uk": "Користувача {0} видалено з групи пристроїв {1}", "xloc": [ - "default.handlebars->47->2597" + "default.handlebars->47->2600" ] }, { @@ -65815,8 +65854,8 @@ "zh-cht": "從用戶組{1}中刪除了用戶{0}", "uk": "Користувача {0} видалено з групи користувачів {1}", "xloc": [ - "default.handlebars->47->2576", - "default.handlebars->47->2586" + "default.handlebars->47->2579", + "default.handlebars->47->2589" ] }, { @@ -65850,7 +65889,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1", "default.handlebars->47->1559", - "default.handlebars->47->2501", + "default.handlebars->47->2504", "default.handlebars->47->851", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", @@ -65911,7 +65950,7 @@ "zh-cht": "重命名:“{0}”為“{1}”", "uk": "Перейменувати: \\\"{0}\\\" на \\\"{1}\\\"", "xloc": [ - "default.handlebars->47->2562" + "default.handlebars->47->2565" ] }, { @@ -65940,7 +65979,7 @@ "zh-cht": "報告日", "uk": "Звітний день", "xloc": [ - "default.handlebars->47->2689" + "default.handlebars->47->2694" ] }, { @@ -65969,7 +66008,7 @@ "zh-cht": "報告類型", "uk": "Тип звіту", "xloc": [ - "default.handlebars->47->2684" + "default.handlebars->47->2689" ] }, { @@ -65998,7 +66037,7 @@ "zh-cht": "報告未返回任何內容。", "uk": "Звіт не повернув жодних записів.", "xloc": [ - "default.handlebars->47->3182" + "default.handlebars->47->3188" ] }, { @@ -66027,7 +66066,7 @@ "zh-cht": "報告.csv", "uk": "Report.csv", "xloc": [ - "default.handlebars->47->3243" + "default.handlebars->47->3249" ] }, { @@ -66271,7 +66310,7 @@ "zh-cht": "要求:", "uk": "Вимоги:", "xloc": [ - "default.handlebars->47->2085" + "default.handlebars->47->2088" ] }, { @@ -66301,8 +66340,8 @@ "uk": "Вимоги: {0}.", "xloc": [ "default-mobile.handlebars->11->330", - "default.handlebars->47->2802", - "default.handlebars->47->3061" + "default.handlebars->47->2807", + "default.handlebars->47->3067" ] }, { @@ -66453,8 +66492,8 @@ "zh-cht": "重置/關閉電源", "uk": "Перезапустити / Вимкнути", "xloc": [ - "default-mobile.handlebars->11->986", - "default.handlebars->47->2358" + "default-mobile.handlebars->11->987", + "default.handlebars->47->2361" ] }, { @@ -66634,10 +66673,10 @@ "zh-cht": "重置/關閉", "uk": "Перезапустити/Вимкнути", "xloc": [ - "default-mobile.handlebars->11->1006", + "default-mobile.handlebars->11->1007", "default.handlebars->47->1140", "default.handlebars->47->1165", - "default.handlebars->47->2396" + "default.handlebars->47->2399" ] }, { @@ -66683,7 +66722,7 @@ { "en": "Restart agent service", "xloc": [ - "default-mobile.handlebars->11->928", + "default-mobile.handlebars->11->929", "default.handlebars->47->1772" ] }, @@ -66723,7 +66762,7 @@ "zh-cht": "還原伺服器", "uk": "Відновити сервер", "xloc": [ - "default.handlebars->47->2142" + "default.handlebars->47->2145" ] }, { @@ -66781,7 +66820,7 @@ "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "uk": "Відновити сервер за допомогою резервної копії, що призведе до видалення існуючих даних сервера. Запускайте це, лише якщо знаєте, що робите.", "xloc": [ - "default.handlebars->47->2139" + "default.handlebars->47->2142" ] }, { @@ -66841,7 +66880,7 @@ "zh-cht": "限制條件", "uk": "Обмеження", "xloc": [ - "default.handlebars->47->2917" + "default.handlebars->47->2922" ] }, { @@ -66901,7 +66940,7 @@ "uk": "Ретороманська", "xloc": [ "default-mobile.handlebars->11->242", - "default.handlebars->47->1973", + "default.handlebars->47->1976", "login2.handlebars->7->136" ] }, @@ -66962,7 +67001,7 @@ "uk": "Румунська", "xloc": [ "default-mobile.handlebars->11->243", - "default.handlebars->47->1974", + "default.handlebars->47->1977", "login2.handlebars->7->137" ] }, @@ -66993,7 +67032,7 @@ "uk": "Румунська (Молдова)", "xloc": [ "default-mobile.handlebars->11->244", - "default.handlebars->47->1975", + "default.handlebars->47->1978", "login2.handlebars->7->138" ] }, @@ -67026,7 +67065,7 @@ "default-mobile.handlebars->11->351", "default-mobile.handlebars->11->705", "default.handlebars->47->1538", - "default.handlebars->47->2469", + "default.handlebars->47->2472", "sharing.handlebars->11->49" ] }, @@ -67563,7 +67602,7 @@ "zh-cht": "運行命令", "uk": "Запущені команди", "xloc": [ - "default.handlebars->47->2538" + "default.handlebars->47->2541" ] }, { @@ -67592,7 +67631,7 @@ "zh-cht": "以用戶身份運行命令", "uk": "Виконання команд від імені користувача", "xloc": [ - "default.handlebars->47->2613" + "default.handlebars->47->2616" ] }, { @@ -67621,7 +67660,7 @@ "zh-cht": "如果可能,以用戶身份運行命令", "uk": "Виконання команд від імені користувача, якщо можливо", "xloc": [ - "default.handlebars->47->2614" + "default.handlebars->47->2617" ] }, { @@ -67651,7 +67690,7 @@ "uk": "московитська", "xloc": [ "default-mobile.handlebars->11->245", - "default.handlebars->47->1976", + "default.handlebars->47->1979", "login2.handlebars->7->139" ] }, @@ -67682,7 +67721,7 @@ "uk": "московитська (Молдова)", "xloc": [ "default-mobile.handlebars->11->246", - "default.handlebars->47->1977", + "default.handlebars->47->1980", "login2.handlebars->7->140" ] }, @@ -67853,8 +67892,8 @@ "zh-cht": "短信", "uk": "SMS", "xloc": [ - "default.handlebars->47->2980", "default.handlebars->47->2986", + "default.handlebars->47->2992", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3", "login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3", @@ -67889,7 +67928,7 @@ "zh-cht": "此用戶的短信功能電話號碼。", "uk": "Номер телефону цього користувача з можливістю відправки SMS.", "xloc": [ - "default.handlebars->47->3004" + "default.handlebars->47->3010" ] }, { @@ -67918,8 +67957,8 @@ "zh-cht": "短信錯誤", "uk": "Помилка SMS", "xloc": [ - "default-mobile.handlebars->11->1052", - "default.handlebars->47->3281" + "default-mobile.handlebars->11->1053", + "default.handlebars->47->3287" ] }, { @@ -67948,8 +67987,8 @@ "zh-cht": "短信錯誤:{0}", "uk": "Помилка SMS: {0}", "xloc": [ - "default-mobile.handlebars->11->1053", - "default.handlebars->47->3282" + "default-mobile.handlebars->11->1054", + "default.handlebars->47->3288" ] }, { @@ -68007,8 +68046,8 @@ "zh-cht": "短信網關未啟用", "uk": "Шлюз SMS вимкнено", "xloc": [ - "default-mobile.handlebars->11->1047", - "default.handlebars->47->3276" + "default-mobile.handlebars->11->1048", + "default.handlebars->47->3282" ] }, { @@ -68037,7 +68076,7 @@ "zh-cht": "短信", "uk": "SMS-повідомлення", "xloc": [ - "default.handlebars->47->3207" + "default.handlebars->47->3213" ] }, { @@ -68108,7 +68147,7 @@ "pl": "Sukces wysyłania SMS.", "uk": "SMS успішно надіслано.", "xloc": [ - "default.handlebars->47->3280" + "default.handlebars->47->3286" ] }, { @@ -68137,7 +68176,7 @@ "zh-cht": "短信成功發送。", "uk": "SMS успішно надіслано.", "xloc": [ - "default-mobile.handlebars->11->1051" + "default-mobile.handlebars->11->1052" ] }, { @@ -68642,7 +68681,7 @@ "uk": "Самі (Самі)", "xloc": [ "default-mobile.handlebars->11->247", - "default.handlebars->47->1978", + "default.handlebars->47->1981", "login2.handlebars->7->141" ] }, @@ -68730,7 +68769,7 @@ "uk": "Санго", "xloc": [ "default-mobile.handlebars->11->248", - "default.handlebars->47->1979", + "default.handlebars->47->1982", "login2.handlebars->7->142" ] }, @@ -68761,7 +68800,7 @@ "uk": "Санскрит", "xloc": [ "default-mobile.handlebars->11->249", - "default.handlebars->47->1980", + "default.handlebars->47->1983", "login2.handlebars->7->143" ] }, @@ -68792,7 +68831,7 @@ "uk": "Сардинська", "xloc": [ "default-mobile.handlebars->11->250", - "default.handlebars->47->1981", + "default.handlebars->47->1984", "login2.handlebars->7->144" ] }, @@ -69402,7 +69441,7 @@ "zh-cht": "已使用TLS保安", "uk": "Захищено за допомогою TLS", "xloc": [ - "default-mobile.handlebars->11->822", + "default-mobile.handlebars->11->823", "default.handlebars->47->1665" ] }, @@ -69433,11 +69472,11 @@ "uk": "Безпека", "xloc": [ "default-mobile.handlebars->11->617", - "default-mobile.handlebars->11->821", + "default-mobile.handlebars->11->822", "default.handlebars->47->1300", "default.handlebars->47->1664", - "default.handlebars->47->2467", - "default.handlebars->47->2982", + "default.handlebars->47->2470", + "default.handlebars->47->2988", "default.handlebars->47->509", "default.handlebars->container->column_l->p21->p21main->1->1->meshSecurityChartDiv->1" ] @@ -69485,7 +69524,7 @@ "zh-cht": "安全密鑰", "uk": "Ключ безпеки", "xloc": [ - "default.handlebars->47->2976" + "default.handlebars->47->2981" ] }, { @@ -69514,8 +69553,8 @@ "zh-cht": "安全警告", "uk": "Попередження системи безпеки", "xloc": [ - "default-mobile.handlebars->11->1021", - "default.handlebars->47->3250" + "default-mobile.handlebars->11->1022", + "default.handlebars->47->3256" ] }, { @@ -69618,9 +69657,9 @@ "xloc": [ "default.handlebars->47->1550", "default.handlebars->47->1552", - "default.handlebars->47->2493", - "default.handlebars->47->2736", - "default.handlebars->47->2830", + "default.handlebars->47->2496", + "default.handlebars->47->2741", + "default.handlebars->47->2835", "default.handlebars->47->536", "default.handlebars->47->728", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", @@ -69662,7 +69701,7 @@ "xloc": [ "default.handlebars->47->1235", "default.handlebars->47->1237", - "default.handlebars->47->3165" + "default.handlebars->47->3171" ] }, { @@ -69692,9 +69731,9 @@ "uk": "Скинути вибір", "xloc": [ "default.handlebars->47->1551", - "default.handlebars->47->2492", - "default.handlebars->47->2735", - "default.handlebars->47->2829", + "default.handlebars->47->2495", + "default.handlebars->47->2740", + "default.handlebars->47->2834", "default.handlebars->47->727", "default.handlebars->meshContextMenu->cxselectnone", "sharing.handlebars->11->57" @@ -69726,7 +69765,7 @@ "zh-cht": "選擇要註冊推送通知身份驗證的設備。選擇後,設備將提示確認。", "uk": "Виберіть пристрій для реєстрації та автентифікації push-сповіщень. Після вибору пристрій запитає підтвердження.", "xloc": [ - "default.handlebars->47->1825" + "default.handlebars->47->1828" ] }, { @@ -69871,8 +69910,8 @@ "zh-cht": "選擇要對所有選定用戶執行的操作。", "uk": "Виберіть операцію для виконання з усіма вибраними користувачами.", "xloc": [ - "default.handlebars->47->2739", - "default.handlebars->47->2831" + "default.handlebars->47->2744", + "default.handlebars->47->2836" ] }, { @@ -69931,7 +69970,7 @@ "zh-cht": "選擇新密碼", "uk": "Виберіть новий пароль", "xloc": [ - "default.handlebars->47->2273" + "default.handlebars->47->2276" ] }, { @@ -69990,8 +70029,8 @@ "zh-cht": "僅自我事件", "uk": "Лише події", "xloc": [ - "default-mobile.handlebars->11->1002", - "default.handlebars->47->2392" + "default-mobile.handlebars->11->1003", + "default.handlebars->47->2395" ] }, { @@ -70079,7 +70118,7 @@ "zh-cht": "發電郵", "uk": "Надіслати е-пошту", "xloc": [ - "default.handlebars->47->2751" + "default.handlebars->47->2756" ] }, { @@ -70152,7 +70191,7 @@ "pl": "Wyślij Wiadomość", "uk": "Надіслати повідомлення", "xloc": [ - "default.handlebars->47->2749" + "default.handlebars->47->2754" ] }, { @@ -70181,7 +70220,7 @@ "zh-cht": "發送簡訊", "uk": "Надіслати SMS", "xloc": [ - "default.handlebars->47->2748" + "default.handlebars->47->2753" ] }, { @@ -70210,7 +70249,7 @@ "zh-cht": "發送短信給該用戶", "uk": "Надіслати SMS цьому користувачеві", "xloc": [ - "default.handlebars->47->2987" + "default.handlebars->47->2993" ] }, { @@ -70239,7 +70278,7 @@ "zh-cht": "發送電郵給該用戶", "uk": "Надіслати електронного листа цьому користувачеві", "xloc": [ - "default.handlebars->47->2991" + "default.handlebars->47->2997" ] }, { @@ -70253,7 +70292,7 @@ "pl": "Wyślij wiadomość do tego użytkownika", "uk": "Надіслати повідомлення цьому користувачеві", "xloc": [ - "default.handlebars->47->2989" + "default.handlebars->47->2995" ] }, { @@ -70282,7 +70321,7 @@ "zh-cht": "向該群中的所有用戶發送通知。", "uk": "Надіслати сповіщення всім користувачам цієї групи.", "xloc": [ - "default.handlebars->47->2874" + "default.handlebars->47->2879" ] }, { @@ -70311,7 +70350,7 @@ "zh-cht": "向該用戶發送文本通知。", "uk": "Надіслати текстове сповіщення цьому користувачеві.", "xloc": [ - "default.handlebars->47->2752" + "default.handlebars->47->2757" ] }, { @@ -70340,7 +70379,7 @@ "zh-cht": "發送電郵給用戶", "uk": "Надіслати електронний лист користувачеві", "xloc": [ - "default.handlebars->47->2730" + "default.handlebars->47->2735" ] }, { @@ -70398,7 +70437,7 @@ "zh-cht": "發送邀請電郵。", "uk": "Надіслати запрошення е-поштою.", "xloc": [ - "default.handlebars->47->2801" + "default.handlebars->47->2806" ] }, { @@ -70590,7 +70629,7 @@ "zh-cht": "發送用戶通知", "uk": "Надіслати сповіщення користувачеві", "xloc": [ - "default.handlebars->47->2993" + "default.handlebars->47->2999" ] }, { @@ -70708,7 +70747,7 @@ "uk": "Сербська", "xloc": [ "default-mobile.handlebars->11->253", - "default.handlebars->47->1984", + "default.handlebars->47->1987", "login2.handlebars->7->147" ] }, @@ -70738,8 +70777,8 @@ "zh-cht": "序列號", "uk": "Серійний номер", "xloc": [ - "default-mobile.handlebars->11->831", - "default-mobile.handlebars->11->836", + "default-mobile.handlebars->11->832", + "default-mobile.handlebars->11->837", "default.handlebars->47->1674", "default.handlebars->47->1679" ] @@ -70796,7 +70835,7 @@ "zh-cht": "伺服器備份", "uk": "Сервер резервного копіювання", "xloc": [ - "default.handlebars->47->2811" + "default.handlebars->47->2816" ] }, { @@ -70825,7 +70864,7 @@ "zh-cht": "伺服器憑證", "uk": "Сертифікат Сервера", "xloc": [ - "default.handlebars->47->3361" + "default.handlebars->47->3367" ] }, { @@ -70837,7 +70876,7 @@ "xloc": [ "default.handlebars->47->205", "default.handlebars->47->207", - "default.handlebars->47->2150" + "default.handlebars->47->2153" ] }, { @@ -70895,7 +70934,7 @@ "zh-cht": "伺服器數據庫", "uk": "База даних сервера", "xloc": [ - "default.handlebars->47->3362" + "default.handlebars->47->3368" ] }, { @@ -70906,7 +70945,7 @@ "uk": "Помилки Сервера", "xloc": [ "default.handlebars->47->200", - "default.handlebars->47->2147" + "default.handlebars->47->2150" ] }, { @@ -70935,13 +70974,13 @@ "zh-cht": "伺服器檔案", "uk": "Файли Сервера", "xloc": [ - "default-mobile.handlebars->11->979", - "default-mobile.handlebars->11->994", + "default-mobile.handlebars->11->980", + "default-mobile.handlebars->11->995", "default.handlebars->47->1133", "default.handlebars->47->1158", - "default.handlebars->47->2351", - "default.handlebars->47->2383", - "default.handlebars->47->2808" + "default.handlebars->47->2354", + "default.handlebars->47->2386", + "default.handlebars->47->2813" ] }, { @@ -70999,8 +71038,8 @@ "zh-cht": "服務器限制", "uk": "Ліміт сервера", "xloc": [ - "default-mobile.handlebars->11->1020", - "default.handlebars->47->3249" + "default-mobile.handlebars->11->1021", + "default.handlebars->47->3255" ] }, { @@ -71058,8 +71097,8 @@ "zh-cht": "伺服器權限", "uk": "Дозволи серверу", "xloc": [ - "default.handlebars->47->2722", - "default.handlebars->47->2823" + "default.handlebars->47->2727", + "default.handlebars->47->2828" ] }, { @@ -71088,7 +71127,7 @@ "zh-cht": "伺服器配額", "uk": "Квота серверу", "xloc": [ - "default.handlebars->47->2950" + "default.handlebars->47->2955" ] }, { @@ -71117,7 +71156,7 @@ "zh-cht": "伺服器還原", "uk": "Відновити сервер", "xloc": [ - "default.handlebars->47->2812" + "default.handlebars->47->2817" ] }, { @@ -71146,7 +71185,7 @@ "zh-cht": "伺服器權限", "uk": "Права сервера", "xloc": [ - "default.handlebars->47->2949" + "default.handlebars->47->2954" ] }, { @@ -71175,7 +71214,7 @@ "zh-cht": "伺服器狀態", "uk": "Стан сервера", "xloc": [ - "default.handlebars->47->3292" + "default.handlebars->47->3298" ] }, { @@ -71233,7 +71272,7 @@ "zh-cht": "伺服器追蹤", "uk": "Моніторинг сервера", "xloc": [ - "default.handlebars->47->3375" + "default.handlebars->47->3381" ] }, { @@ -71262,7 +71301,7 @@ "zh-cht": "服務器跟踪事件", "uk": "Подія трасування сервера", "xloc": [ - "default.handlebars->47->3353" + "default.handlebars->47->3359" ] }, { @@ -71350,7 +71389,7 @@ "zh-cht": "伺服器更新", "uk": "Оновлення сервера", "xloc": [ - "default.handlebars->47->2813" + "default.handlebars->47->2818" ] }, { @@ -71583,7 +71622,7 @@ "pl": "Serwer nie może pobrać zapisów z bazy danych.", "uk": "Сервер не може отримати записи з бази даних.", "xloc": [ - "default.handlebars->47->3108" + "default.handlebars->47->3114" ] }, { @@ -71598,7 +71637,7 @@ "pl": "Serwer nie może odczytać zapisów z folderu.", "uk": "Сервер не може читати з теки записів.", "xloc": [ - "default.handlebars->47->3107" + "default.handlebars->47->3113" ] }, { @@ -71613,7 +71652,7 @@ "pl": "Zapisy statystyk serwera", "uk": "Записи статистики сервера", "xloc": [ - "default.handlebars->47->3227" + "default.handlebars->47->3233" ] }, { @@ -71699,7 +71738,7 @@ "zh-cht": "ServerStats.csv", "uk": "ServerStats.csv", "xloc": [ - "default.handlebars->47->3352" + "default.handlebars->47->3358" ] }, { @@ -71714,7 +71753,7 @@ "uk": "Сервіс", "xloc": [ "default.handlebars->47->1795", - "default.handlebars->47->3018" + "default.handlebars->47->3024" ] }, { @@ -71802,8 +71841,8 @@ "zh-cht": "節", "uk": "Сеанс", "xloc": [ - "default.handlebars->47->3111", - "default.handlebars->47->3170", + "default.handlebars->47->3117", + "default.handlebars->47->3176", "ssh.handlebars->3->24", "ssh.handlebars->3->26" ] @@ -72220,7 +72259,7 @@ "zh-cht": "設置剪貼板內容,{0}個字節", "uk": "Налаштування вмісту буфера, {0} байт(ів)", "xloc": [ - "default.handlebars->47->2536" + "default.handlebars->47->2539" ] }, { @@ -72339,7 +72378,7 @@ "uk": "Налаштувати", "xloc": [ "agent-translations.json", - "default.handlebars->47->2216", + "default.handlebars->47->2219", "default.handlebars->47->486" ] }, @@ -72421,7 +72460,7 @@ "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "uk": "Налаштувати цей сервер на автоматичне завантаження резервних копій на Google Drive. Почніть із створення та введення ClientID і ClientSecret Google Drive для власного акаунту.", "xloc": [ - "default.handlebars->47->2130" + "default.handlebars->47->2133" ] }, { @@ -72634,7 +72673,7 @@ "xloc": [ "default.handlebars->47->1141", "default.handlebars->47->1166", - "default.handlebars->47->2397" + "default.handlebars->47->2400" ] }, { @@ -73122,8 +73161,8 @@ "zh-cht": "只顯示自己的事件", "uk": "Тільки Показати Свої Дії", "xloc": [ - "default-mobile.handlebars->11->982", - "default.handlebars->47->2354" + "default-mobile.handlebars->11->983", + "default.handlebars->47->2357" ] }, { @@ -73178,7 +73217,7 @@ "zh-cht": "顯示流量", "uk": "Показати трафік", "xloc": [ - "default.handlebars->47->3166" + "default.handlebars->47->3172" ] }, { @@ -73207,7 +73246,7 @@ "zh-cht": "顯示連接工具欄", "uk": "Показати панель засобів підключення", "xloc": [ - "default.handlebars->47->2310" + "default.handlebars->47->2313" ] }, { @@ -73352,8 +73391,8 @@ "zh-cht": "顯示1分鐘", "uk": "Показувати 1 хвилину", "xloc": [ - "default.handlebars->47->2755", - "default.handlebars->47->2787" + "default.handlebars->47->2760", + "default.handlebars->47->2792" ] }, { @@ -73394,8 +73433,8 @@ "zh-cht": "顯示10秒", "uk": "Показувати 10 секунд", "xloc": [ - "default.handlebars->47->2754", - "default.handlebars->47->2786" + "default.handlebars->47->2759", + "default.handlebars->47->2791" ] }, { @@ -73448,8 +73487,8 @@ "zh-cht": "顯示5分鐘", "uk": "Показувати 5 хвилин", "xloc": [ - "default.handlebars->47->2756", - "default.handlebars->47->2788" + "default.handlebars->47->2761", + "default.handlebars->47->2793" ] }, { @@ -73492,8 +73531,8 @@ "xloc": [ "default.handlebars->47->1181", "default.handlebars->47->1195", - "default.handlebars->47->2753", - "default.handlebars->47->2785", + "default.handlebars->47->2758", + "default.handlebars->47->2790", "default.handlebars->47->776" ] }, @@ -73839,7 +73878,7 @@ "uk": "Signal", "xloc": [ "default.handlebars->47->1798", - "default.handlebars->47->3021" + "default.handlebars->47->3027" ] }, { @@ -73878,8 +73917,8 @@ "zh-cht": "簡單管理員控制模式(ACM)", "uk": "Простий режим адміністратора (ACM)", "xloc": [ - "default.handlebars->47->2205", - "default.handlebars->47->2263" + "default.handlebars->47->2208", + "default.handlebars->47->2266" ] }, { @@ -73908,8 +73947,8 @@ "zh-cht": "簡單客戶端控制模式(CCM)", "uk": "Простий режим керування клієнтом (CCM)", "xloc": [ - "default.handlebars->47->2203", - "default.handlebars->47->2267" + "default.handlebars->47->2206", + "default.handlebars->47->2270" ] }, { @@ -73939,7 +73978,7 @@ "uk": "Сіндхі", "xloc": [ "default-mobile.handlebars->11->251", - "default.handlebars->47->1982", + "default.handlebars->47->1985", "login2.handlebars->7->145" ] }, @@ -73970,7 +74009,7 @@ "uk": "Сінгальська", "xloc": [ "default-mobile.handlebars->11->252", - "default.handlebars->47->1983", + "default.handlebars->47->1986", "login2.handlebars->7->146" ] }, @@ -74031,7 +74070,7 @@ "zh-cht": "單點登錄", "uk": "Єдиний вхід (SSO)", "xloc": [ - "default.handlebars->47->3215" + "default.handlebars->47->3221" ] }, { @@ -74086,8 +74125,8 @@ "zh-cht": "尺寸", "uk": "Величина", "xloc": [ - "default.handlebars->47->3114", - "default.handlebars->47->3135", + "default.handlebars->47->3120", + "default.handlebars->47->3141", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -74219,7 +74258,7 @@ "uk": "Slack", "xloc": [ "default.handlebars->47->1794", - "default.handlebars->47->3017" + "default.handlebars->47->3023" ] }, { @@ -74230,7 +74269,7 @@ "uk": "Інсталяція Slack Webhook", "xloc": [ "default.handlebars->47->1804", - "default.handlebars->47->3027" + "default.handlebars->47->3033" ] }, { @@ -74357,7 +74396,7 @@ "uk": "Словацька", "xloc": [ "default-mobile.handlebars->11->254", - "default.handlebars->47->1985", + "default.handlebars->47->1988", "login2.handlebars->7->148" ] }, @@ -74388,7 +74427,7 @@ "uk": "Словенська", "xloc": [ "default-mobile.handlebars->11->255", - "default.handlebars->47->1986", + "default.handlebars->47->1989", "login2.handlebars->7->149" ] }, @@ -74509,7 +74548,7 @@ "zh-cht": "軟斷開代理", "uk": "М'яке відключення агенту", "xloc": [ - "default-mobile.handlebars->11->926", + "default-mobile.handlebars->11->927", "default.handlebars->47->1770" ] }, @@ -74599,7 +74638,7 @@ "uk": "Сомані", "xloc": [ "default-mobile.handlebars->11->256", - "default.handlebars->47->1987", + "default.handlebars->47->1990", "login2.handlebars->7->150" ] }, @@ -74630,7 +74669,7 @@ "uk": "Лужицька", "xloc": [ "default-mobile.handlebars->11->257", - "default.handlebars->47->1988", + "default.handlebars->47->1991", "login2.handlebars->7->151" ] }, @@ -74913,7 +74952,7 @@ "uk": "Іспанська", "xloc": [ "default-mobile.handlebars->11->258", - "default.handlebars->47->1989", + "default.handlebars->47->1992", "login2.handlebars->7->152" ] }, @@ -74944,7 +74983,7 @@ "uk": "Іспанська (Аргентина)", "xloc": [ "default-mobile.handlebars->11->259", - "default.handlebars->47->1990", + "default.handlebars->47->1993", "login2.handlebars->7->153" ] }, @@ -74975,7 +75014,7 @@ "uk": "Іспанська (Болівія)", "xloc": [ "default-mobile.handlebars->11->260", - "default.handlebars->47->1991", + "default.handlebars->47->1994", "login2.handlebars->7->154" ] }, @@ -75006,7 +75045,7 @@ "uk": "Іспанська (Чилі)", "xloc": [ "default-mobile.handlebars->11->261", - "default.handlebars->47->1992", + "default.handlebars->47->1995", "login2.handlebars->7->155" ] }, @@ -75037,7 +75076,7 @@ "uk": "Іспанська (Колумбія)", "xloc": [ "default-mobile.handlebars->11->262", - "default.handlebars->47->1993", + "default.handlebars->47->1996", "login2.handlebars->7->156" ] }, @@ -75068,7 +75107,7 @@ "uk": "Іспанська (Коста-Ріка)", "xloc": [ "default-mobile.handlebars->11->263", - "default.handlebars->47->1994", + "default.handlebars->47->1997", "login2.handlebars->7->157" ] }, @@ -75099,7 +75138,7 @@ "uk": "Іспанська (Домініканська Республіка)", "xloc": [ "default-mobile.handlebars->11->264", - "default.handlebars->47->1995", + "default.handlebars->47->1998", "login2.handlebars->7->158" ] }, @@ -75130,7 +75169,7 @@ "uk": "Іспанська (Еквадор)", "xloc": [ "default-mobile.handlebars->11->265", - "default.handlebars->47->1996", + "default.handlebars->47->1999", "login2.handlebars->7->159" ] }, @@ -75161,7 +75200,7 @@ "uk": "Іспанська (Сальвадор)", "xloc": [ "default-mobile.handlebars->11->266", - "default.handlebars->47->1997", + "default.handlebars->47->2000", "login2.handlebars->7->160" ] }, @@ -75192,7 +75231,7 @@ "uk": "Іспанська (Гватемала)", "xloc": [ "default-mobile.handlebars->11->267", - "default.handlebars->47->1998", + "default.handlebars->47->2001", "login2.handlebars->7->161" ] }, @@ -75223,7 +75262,7 @@ "uk": "Іспанська (Гондурас)", "xloc": [ "default-mobile.handlebars->11->268", - "default.handlebars->47->1999", + "default.handlebars->47->2002", "login2.handlebars->7->162" ] }, @@ -75254,7 +75293,7 @@ "uk": "Іспанська (Мексика)", "xloc": [ "default-mobile.handlebars->11->269", - "default.handlebars->47->2000", + "default.handlebars->47->2003", "login2.handlebars->7->163" ] }, @@ -75285,7 +75324,7 @@ "uk": "Іспанська (Нікарагуа)", "xloc": [ "default-mobile.handlebars->11->270", - "default.handlebars->47->2001", + "default.handlebars->47->2004", "login2.handlebars->7->164" ] }, @@ -75316,7 +75355,7 @@ "uk": "Іспанська (Панама)", "xloc": [ "default-mobile.handlebars->11->271", - "default.handlebars->47->2002", + "default.handlebars->47->2005", "login2.handlebars->7->165" ] }, @@ -75347,7 +75386,7 @@ "uk": "Іспанська (Парагвай)", "xloc": [ "default-mobile.handlebars->11->272", - "default.handlebars->47->2003", + "default.handlebars->47->2006", "login2.handlebars->7->166" ] }, @@ -75378,7 +75417,7 @@ "uk": "Іспанська (Перу)", "xloc": [ "default-mobile.handlebars->11->273", - "default.handlebars->47->2004", + "default.handlebars->47->2007", "login2.handlebars->7->167" ] }, @@ -75409,7 +75448,7 @@ "uk": "Іспанська (Пуерто-Ріко)", "xloc": [ "default-mobile.handlebars->11->274", - "default.handlebars->47->2005", + "default.handlebars->47->2008", "login2.handlebars->7->168" ] }, @@ -75440,7 +75479,7 @@ "uk": "Іспанська (Іспанія)", "xloc": [ "default-mobile.handlebars->11->275", - "default.handlebars->47->2006", + "default.handlebars->47->2009", "login2.handlebars->7->169" ] }, @@ -75471,7 +75510,7 @@ "uk": "Іспанська (Уругвай)", "xloc": [ "default-mobile.handlebars->11->276", - "default.handlebars->47->2007", + "default.handlebars->47->2010", "login2.handlebars->7->170" ] }, @@ -75502,7 +75541,7 @@ "uk": "Іспанська (Венесуела)", "xloc": [ "default-mobile.handlebars->11->277", - "default.handlebars->47->2008", + "default.handlebars->47->2011", "login2.handlebars->7->171" ] }, @@ -75513,7 +75552,7 @@ "pl": "Wersja", "uk": "СпецВерсія", "xloc": [ - "default-mobile.handlebars->11->842", + "default-mobile.handlebars->11->843", "default.handlebars->47->1685" ] }, @@ -75690,8 +75729,8 @@ "default.handlebars->47->1397", "default.handlebars->47->288", "default.handlebars->47->293", - "default.handlebars->47->3112", - "default.handlebars->47->3137", + "default.handlebars->47->3118", + "default.handlebars->47->3143", "sharing.handlebars->11->14" ] }, @@ -75789,7 +75828,7 @@ "zh-cht": "已啟動 Web-RDP 會話 \\\"{0}\\\"。", "uk": "Розпочато сеанс Web-RDP \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2664" + "default.handlebars->47->2667" ] }, { @@ -75818,7 +75857,7 @@ "zh-cht": "已啟動 Web-SFTP 會話 \\\"{0}\\\"。", "uk": "Розпочато сеанс Web-SFTP \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2663" + "default.handlebars->47->2666" ] }, { @@ -75847,7 +75886,7 @@ "zh-cht": "已啟動 Web-SSH 會話 \\\"{0}\\\"。", "uk": "Розпочато сеанс Web-SSH \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2662" + "default.handlebars->47->2665" ] }, { @@ -75876,7 +75915,7 @@ "zh-cht": "已啟動 Web-VNC 會話 \\\"{0}\\\"。", "uk": "Розпочато сеанс Web-VNC \\\"{0}\\\".", "xloc": [ - "default.handlebars->47->2665" + "default.handlebars->47->2668" ] }, { @@ -75905,7 +75944,7 @@ "zh-cht": "啟動桌面多路復用會話", "uk": "Розпочато мультиплексний сеанс стільниці", "xloc": [ - "default.handlebars->47->2520" + "default.handlebars->47->2523" ] }, { @@ -75934,7 +75973,7 @@ "zh-cht": "已啟動桌面多路復用會話 \\\"{0}\\\"", "uk": "Розпочато мультиплексний сеанс стільниці \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2659" + "default.handlebars->47->2662" ] }, { @@ -75963,7 +76002,7 @@ "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "uk": "Розпочато робочий сеанс \\\"{0}\\\" від {1} до {2}", "xloc": [ - "default.handlebars->47->2529" + "default.handlebars->47->2532" ] }, { @@ -75992,7 +76031,7 @@ "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "uk": "Розпочато сеанс керування файлами \\\"{0}\\\" від {1} до {2}", "xloc": [ - "default.handlebars->47->2530" + "default.handlebars->47->2533" ] }, { @@ -76021,7 +76060,7 @@ "zh-cht": "已啟動本地中繼會話 \\\"{0}\\\",協議 {1} 到 {2}", "uk": "Розпочато локальний сеанс ретрансляції \\\"{0}\\\", протокол {1} ​​до {2}", "xloc": [ - "default.handlebars->47->2634" + "default.handlebars->47->2637" ] }, { @@ -76050,7 +76089,7 @@ "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "uk": "Розпочато сеанс ретрансляції \\\"{0}\\\" від {1} до {2}", "xloc": [ - "default.handlebars->47->2527" + "default.handlebars->47->2530" ] }, { @@ -76079,7 +76118,7 @@ "zh-cht": "使用Toast通知啟動遠程桌面", "uk": "Віддалену стільницю запущено із висувним сповіщенням", "xloc": [ - "default.handlebars->47->2549" + "default.handlebars->47->2552" ] }, { @@ -76108,7 +76147,7 @@ "zh-cht": "啟動遠程桌面,而無需通知", "uk": "Віддалену стільницю запущено без сповіщення", "xloc": [ - "default.handlebars->47->2550" + "default.handlebars->47->2553" ] }, { @@ -76137,7 +76176,7 @@ "zh-cht": "啟動帶有Toast通知的遠程文件", "uk": "Запускати віддалені файли із висувним сповіщенням", "xloc": [ - "default.handlebars->47->2556" + "default.handlebars->47->2559" ] }, { @@ -76166,7 +76205,7 @@ "zh-cht": "已啟動的遠程文件,恕不另行通知", "uk": "Запускати віддалені файли без сповіщення", "xloc": [ - "default.handlebars->47->2557" + "default.handlebars->47->2560" ] }, { @@ -76195,7 +76234,7 @@ "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "uk": "Розпочато термінальний сеанс \\\"{0}\\\" від {1} до {2}", "xloc": [ - "default.handlebars->47->2528" + "default.handlebars->47->2531" ] }, { @@ -76253,7 +76292,7 @@ "zh-cht": "接受本地用戶後啟動遠程桌面", "uk": "Запуск віддаленої стільниці після згоди локального користувача", "xloc": [ - "default.handlebars->47->2544" + "default.handlebars->47->2547" ] }, { @@ -76282,7 +76321,7 @@ "zh-cht": "本地用戶接受後啟動遠程文件", "uk": "Запуск віддалених файлів після згоди локального користувача", "xloc": [ - "default.handlebars->47->2554" + "default.handlebars->47->2557" ] }, { @@ -76422,10 +76461,10 @@ "zh-cht": "狀態", "uk": "Стан", "xloc": [ - "default-mobile.handlebars->11->877", + "default-mobile.handlebars->11->878", "default.handlebars->47->1720", - "default.handlebars->47->3052", - "default.handlebars->47->3130", + "default.handlebars->47->3058", + "default.handlebars->47->3136", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -76624,7 +76663,7 @@ "zh-cht": "儲存", "uk": "Сховище", "xloc": [ - "default-mobile.handlebars->11->878", + "default-mobile.handlebars->11->879", "default.handlebars->47->1721" ] }, @@ -76635,9 +76674,9 @@ "pl": "Woluminy Pamięci", "uk": "Томи Сховища", "xloc": [ - "default-mobile.handlebars->11->890", - "default-mobile.handlebars->11->897", - "default-mobile.handlebars->11->904", + "default-mobile.handlebars->11->891", + "default-mobile.handlebars->11->898", + "default-mobile.handlebars->11->905", "default.handlebars->47->1733", "default.handlebars->47->1740", "default.handlebars->47->1747" @@ -76698,7 +76737,7 @@ "zh-cht": "超出儲存空間", "uk": "Ліміт сховища переповнено", "xloc": [ - "default.handlebars->47->2473" + "default.handlebars->47->2476" ] }, { @@ -76758,7 +76797,7 @@ "zh-cht": "強", "uk": "Надійний", "xloc": [ - "default.handlebars->47->2113" + "default.handlebars->47->2116" ] }, { @@ -76821,7 +76860,7 @@ "zh-cht": "主題", "uk": "Тема", "xloc": [ - "default.handlebars->47->2750" + "default.handlebars->47->2755" ] }, { @@ -76889,8 +76928,8 @@ "zh-cht": "成功登錄", "uk": "Вхід успішний", "xloc": [ - "default.handlebars->47->3200", - "default.handlebars->47->3239" + "default.handlebars->47->3206", + "default.handlebars->47->3245" ] }, { @@ -77007,7 +77046,7 @@ "uk": "Суту", "xloc": [ "default-mobile.handlebars->11->278", - "default.handlebars->47->2009", + "default.handlebars->47->2012", "login2.handlebars->7->172" ] }, @@ -77038,7 +77077,7 @@ "uk": "Суахілі", "xloc": [ "default-mobile.handlebars->11->279", - "default.handlebars->47->2010", + "default.handlebars->47->2013", "login2.handlebars->7->173" ] }, @@ -77100,7 +77139,7 @@ "uk": "Шведська", "xloc": [ "default-mobile.handlebars->11->280", - "default.handlebars->47->2011", + "default.handlebars->47->2014", "login2.handlebars->7->174" ] }, @@ -77131,7 +77170,7 @@ "uk": "Шведська (Фінляндія)", "xloc": [ "default-mobile.handlebars->11->281", - "default.handlebars->47->2012", + "default.handlebars->47->2015", "login2.handlebars->7->175" ] }, @@ -77162,7 +77201,7 @@ "uk": "Шведська (Швеція)", "xloc": [ "default-mobile.handlebars->11->282", - "default.handlebars->47->2013", + "default.handlebars->47->2016", "login2.handlebars->7->176" ] }, @@ -77225,7 +77264,7 @@ "zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。", "uk": "Перемикач Intel AMT у режимі Admin Control Mode (ACM).", "xloc": [ - "default.handlebars->47->2223" + "default.handlebars->47->2226" ] }, { @@ -77313,7 +77352,7 @@ "zh-cht": "將伺服器裝置名稱同步到主機名稱", "uk": "Синхронізувати назву пристрою сервера з іменем хоста", "xloc": [ - "default.handlebars->47->2319" + "default.handlebars->47->2322" ] }, { @@ -77342,7 +77381,7 @@ "zh-cht": "將服務器設備名稱同步到端口名稱", "uk": "Синхронізувати назву пристрою сервера з назвою порту", "xloc": [ - "default.handlebars->47->2318" + "default.handlebars->47->2321" ] }, { @@ -77728,7 +77767,7 @@ "zh-cht": "未設置TLS", "uk": "TLS не встановлено", "xloc": [ - "default-mobile.handlebars->11->823", + "default-mobile.handlebars->11->824", "default.handlebars->47->1666" ] }, @@ -77768,7 +77807,7 @@ "en": "TPM", "nl": "TPM", "xloc": [ - "default-mobile.handlebars->11->854", + "default-mobile.handlebars->11->855", "default.handlebars->47->1697" ] }, @@ -77956,7 +77995,7 @@ "uk": "Тамільська", "xloc": [ "default-mobile.handlebars->11->283", - "default.handlebars->47->2014", + "default.handlebars->47->2017", "login2.handlebars->7->177" ] }, @@ -77967,8 +78006,8 @@ "pl": "OchronaPrzedManipulacją", "uk": "Захист від Злому", "xloc": [ - "default-mobile.handlebars->11->767", - "default-mobile.handlebars->11->769", + "default-mobile.handlebars->11->768", + "default-mobile.handlebars->11->770", "default.handlebars->47->952", "default.handlebars->47->954" ] @@ -78000,7 +78039,7 @@ "uk": "Татарська", "xloc": [ "default-mobile.handlebars->11->284", - "default.handlebars->47->2015", + "default.handlebars->47->2018", "login2.handlebars->7->178" ] }, @@ -78016,8 +78055,8 @@ "xloc": [ "default.handlebars->47->1787", "default.handlebars->47->1801", - "default.handlebars->47->3010", - "default.handlebars->47->3024" + "default.handlebars->47->3016", + "default.handlebars->47->3030" ] }, { @@ -78047,7 +78086,7 @@ "uk": "Телуга", "xloc": [ "default-mobile.handlebars->11->285", - "default.handlebars->47->2016", + "default.handlebars->47->2019", "login2.handlebars->7->179" ] }, @@ -78081,12 +78120,12 @@ "default-mobile.handlebars->11->568", "default.handlebars->47->1087", "default.handlebars->47->1203", - "default.handlebars->47->2231", - "default.handlebars->47->2311", - "default.handlebars->47->3124", - "default.handlebars->47->3184", - "default.handlebars->47->3234", - "default.handlebars->47->3329", + "default.handlebars->47->2234", + "default.handlebars->47->2314", + "default.handlebars->47->3130", + "default.handlebars->47->3190", + "default.handlebars->47->3240", + "default.handlebars->47->3335", "default.handlebars->47->456", "default.handlebars->47->861", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", @@ -78122,7 +78161,7 @@ "xloc": [ "default.handlebars->47->1091", "default.handlebars->47->1206", - "default.handlebars->47->2235" + "default.handlebars->47->2238" ] }, { @@ -78180,9 +78219,9 @@ "zh-cht": "終端機通知", "uk": "Повідомлення про термінал", "xloc": [ - "default.handlebars->47->2185", - "default.handlebars->47->2863", - "default.handlebars->47->2968", + "default.handlebars->47->2188", + "default.handlebars->47->2868", + "default.handlebars->47->2973", "default.handlebars->47->968" ] }, @@ -78212,9 +78251,9 @@ "zh-cht": "終端機提示", "uk": "Запит Терміналу", "xloc": [ - "default.handlebars->47->2184", - "default.handlebars->47->2862", - "default.handlebars->47->2967", + "default.handlebars->47->2187", + "default.handlebars->47->2867", + "default.handlebars->47->2972", "default.handlebars->47->967" ] }, @@ -78244,7 +78283,7 @@ "zh-cht": "終端會話", "uk": "Термінальна сесія", "xloc": [ - "default.handlebars->47->3117" + "default.handlebars->47->3123" ] }, { @@ -78384,7 +78423,7 @@ "pl": "Zapisy notatek tekstowych", "uk": "Записи текстових приміток", "xloc": [ - "default.handlebars->47->3221" + "default.handlebars->47->3227" ] }, { @@ -78414,7 +78453,7 @@ "uk": "Тайський", "xloc": [ "default-mobile.handlebars->11->286", - "default.handlebars->47->2017", + "default.handlebars->47->2020", "login2.handlebars->7->180" ] }, @@ -78703,8 +78742,8 @@ "zh-cht": "目前沒有任何通知", "uk": "Наразі немає сповіщень", "xloc": [ - "default-mobile.handlebars->11->1015", - "default.handlebars->47->3244" + "default-mobile.handlebars->11->1016", + "default.handlebars->47->3250" ] }, { @@ -78733,8 +78772,8 @@ "zh-cht": "自上次登錄以來,此帳戶有 {0} 次登錄嘗試失敗。", "uk": "Після останнього входу в акаунт кількість спроб невдалого входу дорівнює: {0}", "xloc": [ - "default-mobile.handlebars->11->1036", - "default.handlebars->47->3265" + "default-mobile.handlebars->11->1037", + "default.handlebars->47->3271" ] }, { @@ -78877,7 +78916,7 @@ "uk": "Цей акаунт не має права на створення нової групи пристроїв.", "xloc": [ "default-mobile.handlebars->11->333", - "default.handlebars->47->2088" + "default.handlebars->47->2091" ] }, { @@ -78906,7 +78945,7 @@ "zh-cht": "此代理具有過時的證書驗證機制,請考慮更新。", "uk": "Цей агент має застарілий механізм перевірки сертифіката, розгляньте можливість оновлення.", "xloc": [ - "default.handlebars->47->2632" + "default.handlebars->47->2635" ] }, { @@ -78935,7 +78974,7 @@ "zh-cht": "此代理正在使用不安全的隧道,請考慮更新。", "uk": "Цей агент використовує незахищені тунелі, розгляньте можливість оновлення.", "xloc": [ - "default.handlebars->47->2633" + "default.handlebars->47->2636" ] }, { @@ -79027,9 +79066,9 @@ "uk": "Це гостьовий сеанс спільного доступу", "xloc": [ "default.handlebars->47->1595", - "default.handlebars->47->2682", - "default.handlebars->47->3103", - "default.handlebars->47->3104" + "default.handlebars->47->2687", + "default.handlebars->47->3109", + "default.handlebars->47->3110" ] }, { @@ -79087,7 +79126,7 @@ "zh-cht": "這是舊代理版本,請考慮更新。", "uk": "Це стара версія агента, розгляньте можливість оновлення.", "xloc": [ - "default.handlebars->47->2631" + "default.handlebars->47->2634" ] }, { @@ -79142,7 +79181,7 @@ "zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。", "uk": "Це рекомендована політика. Активація та керування Intel® AMT повністю автоматизовано, і сервер намагатиметься якнайкраще використовувати керування обладнанням.", "xloc": [ - "default.handlebars->47->2292" + "default.handlebars->47->2295" ] }, { @@ -79201,7 +79240,7 @@ "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "uk": "Ця політика не впливатиме на пристрої з Intel® AMT у режимі ACM.", "xloc": [ - "default.handlebars->47->2289" + "default.handlebars->47->2292" ] }, { @@ -79460,7 +79499,7 @@ "uk": "Тигре", "xloc": [ "default-mobile.handlebars->11->287", - "default.handlebars->47->2018", + "default.handlebars->47->2021", "login2.handlebars->7->181" ] }, @@ -79492,8 +79531,8 @@ "xloc": [ "default-mobile.handlebars->11->575", "default.handlebars->47->1249", - "default.handlebars->47->3163", - "default.handlebars->47->3168", + "default.handlebars->47->3169", + "default.handlebars->47->3174", "player.handlebars->3->17" ] }, @@ -79524,7 +79563,7 @@ "uk": "Діапазон часу", "xloc": [ "default.handlebars->47->1234", - "default.handlebars->47->3164" + "default.handlebars->47->3170" ] }, { @@ -79553,7 +79592,7 @@ "zh-cht": "時間跨度", "uk": "Проміжок часу", "xloc": [ - "default.handlebars->47->2686" + "default.handlebars->47->2691" ] }, { @@ -79583,7 +79622,7 @@ "uk": "Діапазон часу", "xloc": [ "default.handlebars->47->1230", - "default.handlebars->47->3162" + "default.handlebars->47->3168" ] }, { @@ -79868,7 +79907,7 @@ "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "uk": "Щоб видалити цей акаунт, введіть пароль акаунту в обидва поля нижче та натисніть \\\"Ok\\\".", "xloc": [ - "default.handlebars->47->2075" + "default.handlebars->47->2078" ] }, { @@ -80641,7 +80680,7 @@ "zh-cht": "令牌名稱", "uk": "Ім'я Токена", "xloc": [ - "default.handlebars->47->2061" + "default.handlebars->47->2064" ] }, { @@ -80764,7 +80803,7 @@ "xloc": [ "default.handlebars->47->1304", "default.handlebars->47->1810", - "default.handlebars->47->3033" + "default.handlebars->47->3039" ] }, { @@ -81050,7 +81089,7 @@ "uk": "Тсонга", "xloc": [ "default-mobile.handlebars->11->288", - "default.handlebars->47->2019", + "default.handlebars->47->2022", "login2.handlebars->7->182" ] }, @@ -81081,7 +81120,7 @@ "uk": "Тсвана", "xloc": [ "default-mobile.handlebars->11->289", - "default.handlebars->47->2020", + "default.handlebars->47->2023", "login2.handlebars->7->183" ] }, @@ -81138,7 +81177,7 @@ "uk": "Турецька", "xloc": [ "default-mobile.handlebars->11->290", - "default.handlebars->47->2021", + "default.handlebars->47->2024", "login2.handlebars->7->184" ] }, @@ -81169,7 +81208,7 @@ "uk": "Туркменська", "xloc": [ "default-mobile.handlebars->11->291", - "default.handlebars->47->2022", + "default.handlebars->47->2025", "login2.handlebars->7->185" ] }, @@ -81231,7 +81270,7 @@ "zh-cht": "關掉。", "uk": "Вимкнути.", "xloc": [ - "default.handlebars->47->2647" + "default.handlebars->47->2650" ] }, { @@ -81292,7 +81331,7 @@ "zh-cht": "打開。", "uk": "Увімкнути.", "xloc": [ - "default.handlebars->47->2646" + "default.handlebars->47->2649" ] }, { @@ -81377,13 +81416,13 @@ "uk": "Тип", "xloc": [ "default-mobile.handlebars->11->339", - "default-mobile.handlebars->11->940", + "default-mobile.handlebars->11->941", "default.handlebars->47->1211", "default.handlebars->47->1465", - "default.handlebars->47->2099", - "default.handlebars->47->2165", - "default.handlebars->47->2264", - "default.handlebars->47->3149", + "default.handlebars->47->2102", + "default.handlebars->47->2168", + "default.handlebars->47->2267", + "default.handlebars->47->3155", "default.handlebars->47->497", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->5", "sharing.handlebars->p11->deskarea0->deskarea4->3" @@ -81415,7 +81454,7 @@ "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "uk": "Введіть назву ключа, виберіть поле OTP і натисніть кнопку на YubiKey™.", "xloc": [ - "default.handlebars->47->1831" + "default.handlebars->47->1834" ] }, { @@ -81444,7 +81483,7 @@ "zh-cht": "輸入要新增的密鑰的名稱。", "uk": "Введіть назву ключа, який ви бажаєте додати", "xloc": [ - "default.handlebars->47->1828" + "default.handlebars->47->1831" ] }, { @@ -81586,7 +81625,7 @@ "uk": "Українська", "xloc": [ "default-mobile.handlebars->11->292", - "default.handlebars->47->2023", + "default.handlebars->47->2026", "login2.handlebars->7->186" ] }, @@ -81728,7 +81767,7 @@ "zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。", "uk": "Неможливо отримати доступ до цієї властивості, доки не буде підтверджено адресу е-пошти. Це потрібно для відновлення пароля. Перейдіть на вкладку \\\"Мій Акаунт\\\", щоб змінити та підтвердити свою адресу е-пошти. ", "xloc": [ - "default.handlebars->47->2090", + "default.handlebars->47->2093", "default.handlebars->47->877" ] }, @@ -81768,8 +81807,8 @@ "zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "uk": "Неможливо отримати доступ до цієї властивості, доки не ввімкнено двофакторну автентифікацію. Це потрібно для додаткової безпеки. Перейдіть на вкладку \\\"Мій Акаунт\\\" і перегляньте розділ \\\"Безпека Акаунту \\\".", "xloc": [ - "default.handlebars->47->2092", - "default.handlebars->47->3381", + "default.handlebars->47->2095", + "default.handlebars->47->3387", "default.handlebars->47->730", "default.handlebars->47->879" ] @@ -81800,8 +81839,8 @@ "zh-cht": "此模式下無法添加用戶", "uk": "Неможливо додати користувача в цьому режимі", "xloc": [ - "default-mobile.handlebars->11->1032", - "default.handlebars->47->3261" + "default-mobile.handlebars->11->1033", + "default.handlebars->47->3267" ] }, { @@ -82001,7 +82040,7 @@ "zh-cht": "無法導入任何設備。", "uk": "Не вдалося імпортувати пристрої.", "xloc": [ - "default.handlebars->47->2260" + "default.handlebars->47->2263" ] }, { @@ -82380,10 +82419,10 @@ "uk": "Видалити", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->1004", + "default-mobile.handlebars->11->1005", "default.handlebars->47->1138", "default.handlebars->47->1163", - "default.handlebars->47->2394" + "default.handlebars->47->2397" ] }, { @@ -82412,7 +82451,7 @@ "zh-cht": "卸載代理", "uk": "Видалити Агента", "xloc": [ - "default-mobile.handlebars->11->984", + "default-mobile.handlebars->11->985", "default.handlebars->47->1267", "default.handlebars->47->734" ] @@ -82443,7 +82482,7 @@ "zh-cht": "卸載代理/刪除設備", "uk": "Видалити Агента / Видалити Пристрій", "xloc": [ - "default.handlebars->47->2356" + "default.handlebars->47->2359" ] }, { @@ -82516,15 +82555,15 @@ "default-mobile.handlebars->11->45", "default-mobile.handlebars->11->474", "default-mobile.handlebars->11->6", - "default-mobile.handlebars->11->811", - "default-mobile.handlebars->11->813", - "default-mobile.handlebars->11->820", - "default-mobile.handlebars->11->884", - "default-mobile.handlebars->11->896", - "default-mobile.handlebars->11->903", - "default-mobile.handlebars->11->907", - "default-mobile.handlebars->11->909", - "default-mobile.handlebars->11->941", + "default-mobile.handlebars->11->812", + "default-mobile.handlebars->11->814", + "default-mobile.handlebars->11->821", + "default-mobile.handlebars->11->885", + "default-mobile.handlebars->11->897", + "default-mobile.handlebars->11->904", + "default-mobile.handlebars->11->908", + "default-mobile.handlebars->11->910", + "default-mobile.handlebars->11->942", "default.handlebars->47->13", "default.handlebars->47->1654", "default.handlebars->47->1656", @@ -82539,18 +82578,18 @@ "default.handlebars->47->191", "default.handlebars->47->193", "default.handlebars->47->195", - "default.handlebars->47->2145", - "default.handlebars->47->2146", - "default.handlebars->47->2166", - "default.handlebars->47->3096", - "default.handlebars->47->3116", - "default.handlebars->47->3123", - "default.handlebars->47->3194", - "default.handlebars->47->3195", - "default.handlebars->47->3196", - "default.handlebars->47->3197", - "default.handlebars->47->3198", - "default.handlebars->47->3237", + "default.handlebars->47->2148", + "default.handlebars->47->2149", + "default.handlebars->47->2169", + "default.handlebars->47->3102", + "default.handlebars->47->3122", + "default.handlebars->47->3129", + "default.handlebars->47->3200", + "default.handlebars->47->3201", + "default.handlebars->47->3202", + "default.handlebars->47->3203", + "default.handlebars->47->3204", + "default.handlebars->47->3243", "default.handlebars->47->44", "default.handlebars->47->51", "default.handlebars->47->52", @@ -82583,8 +82622,8 @@ "zh-cht": "未知#{0}", "uk": "Невідоме #{0}", "xloc": [ - "default-mobile.handlebars->11->930", - "default.handlebars->47->2155" + "default-mobile.handlebars->11->931", + "default.handlebars->47->2158" ] }, { @@ -82613,7 +82652,7 @@ "zh-cht": "未知動作", "uk": "Невідома Дія", "xloc": [ - "default.handlebars->47->3298" + "default.handlebars->47->3304" ] }, { @@ -82642,8 +82681,8 @@ "zh-cht": "未知裝置", "uk": "Невідомий Пристрій", "xloc": [ - "default.handlebars->47->2888", - "default.handlebars->47->3082" + "default.handlebars->47->2893", + "default.handlebars->47->3088" ] }, { @@ -82672,9 +82711,9 @@ "zh-cht": "未知裝置群", "uk": "Невідома Група Пристроїв", "xloc": [ - "default.handlebars->47->2882", - "default.handlebars->47->3070", - "default.handlebars->47->3302" + "default.handlebars->47->2887", + "default.handlebars->47->3076", + "default.handlebars->47->3308" ] }, { @@ -82703,7 +82742,7 @@ "zh-cht": "未知群組", "uk": "Невідома Група", "xloc": [ - "default.handlebars->47->3294" + "default.handlebars->47->3300" ] }, { @@ -82762,8 +82801,8 @@ "zh-cht": "未知用戶", "uk": "Невідомий користувач", "xloc": [ - "default.handlebars->47->3199", - "default.handlebars->47->3238" + "default.handlebars->47->3205", + "default.handlebars->47->3244" ] }, { @@ -82792,7 +82831,7 @@ "zh-cht": "未知用戶群", "uk": "Невідома група користувачів", "xloc": [ - "default.handlebars->47->3076" + "default.handlebars->47->3082" ] }, { @@ -82851,7 +82890,7 @@ "zh-cht": "密碼未知", "uk": "Невідомий пароль", "xloc": [ - "default.handlebars->47->2280" + "default.handlebars->47->2283" ] }, { @@ -82881,7 +82920,7 @@ "uk": "Необмежено", "xloc": [ "default.handlebars->47->1227", - "default.handlebars->47->2044", + "default.handlebars->47->2047", "default.handlebars->47->281", "default.handlebars->47->560", "default.handlebars->47->574" @@ -82913,7 +82952,7 @@ "zh-cht": "解鎖帳戶", "uk": "Розблокувати обліковий запис", "xloc": [ - "default.handlebars->47->2742" + "default.handlebars->47->2747" ] }, { @@ -83102,7 +83141,7 @@ "zh-cht": "最新", "uk": "Оновлено", "xloc": [ - "default.handlebars->47->3386" + "default.handlebars->47->3392" ] }, { @@ -83132,8 +83171,8 @@ "uk": "Оновлення", "xloc": [ "agent-translations.json", - "default-mobile.handlebars->11->754", - "default-mobile.handlebars->11->756", + "default-mobile.handlebars->11->755", + "default-mobile.handlebars->11->757", "default.handlebars->47->939", "default.handlebars->47->941" ] @@ -83232,8 +83271,8 @@ "default.handlebars->47->1560", "default.handlebars->47->1590", "default.handlebars->47->1593", - "default.handlebars->47->2502", - "default.handlebars->47->2512", + "default.handlebars->47->2505", + "default.handlebars->47->2515", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1", "sharing.handlebars->11->65", "sharing.handlebars->11->94", @@ -83266,7 +83305,7 @@ "zh-cht": "上載mesh agent核心", "uk": "Завантажити ядро ​​Mesh Agent", "xloc": [ - "default-mobile.handlebars->11->929", + "default-mobile.handlebars->11->930", "default.handlebars->47->1773" ] }, @@ -83296,7 +83335,7 @@ "zh-cht": "上載核心檔案", "uk": "Передати файл ядра", "xloc": [ - "default-mobile.handlebars->11->925", + "default-mobile.handlebars->11->926", "default.handlebars->47->1769" ] }, @@ -83326,7 +83365,7 @@ "zh-cht": "上載默認伺服器核心", "uk": "Передати ядро ​​сервера за умовчанням", "xloc": [ - "default-mobile.handlebars->11->921", + "default-mobile.handlebars->11->922", "default.handlebars->47->1765", "default.handlebars->47->746", "default.handlebars->47->789" @@ -83445,7 +83484,7 @@ "zh-cht": "上傳恢復核心", "uk": "Передати ядро для ​​відновлення", "xloc": [ - "default-mobile.handlebars->11->923", + "default-mobile.handlebars->11->924", "default.handlebars->47->1767" ] }, @@ -83504,7 +83543,7 @@ "zh-cht": "上傳小核心", "uk": "Передати спрощене ядро", "xloc": [ - "default-mobile.handlebars->11->924", + "default-mobile.handlebars->11->925", "default.handlebars->47->1768" ] }, @@ -83536,7 +83575,7 @@ "xloc": [ "default-mobile.handlebars->11->736", "default.handlebars->47->1591", - "default.handlebars->47->2513", + "default.handlebars->47->2516", "sharing.handlebars->11->95" ] }, @@ -83568,7 +83607,7 @@ "xloc": [ "default-mobile.handlebars->11->737", "default.handlebars->47->1592", - "default.handlebars->47->2514", + "default.handlebars->47->2517", "sharing.handlebars->11->96" ] }, @@ -83624,7 +83663,7 @@ "zh-cht": "上傳:“{0}”", "uk": "Передати: \\\"{0}\\\"", "xloc": [ - "default.handlebars->47->2564" + "default.handlebars->47->2567" ] }, { @@ -83653,7 +83692,7 @@ "zh-cht": "上傳:\\\"{0}\\\",大小:{1}", "uk": "Передати: \\\"{0}\\\", Розмір: {1}", "xloc": [ - "default.handlebars->47->2619" + "default.handlebars->47->2622" ] }, { @@ -83683,7 +83722,7 @@ "uk": "Верхньолужицька", "xloc": [ "default-mobile.handlebars->11->293", - "default.handlebars->47->2024", + "default.handlebars->47->2027", "login2.handlebars->7->187" ] }, @@ -83714,7 +83753,7 @@ "uk": "Урду", "xloc": [ "default-mobile.handlebars->11->294", - "default.handlebars->47->2025", + "default.handlebars->47->2028", "login2.handlebars->7->188" ] }, @@ -83744,7 +83783,7 @@ "zh-cht": "用法", "uk": "Споживання", "xloc": [ - "default.handlebars->47->3348" + "default.handlebars->47->3354" ] }, { @@ -83847,7 +83886,7 @@ "pl": "Używaj do Przekierowania", "uk": "Використання Ретрансляції", "xloc": [ - "default.handlebars->47->2360" + "default.handlebars->47->2363" ] }, { @@ -83994,8 +84033,8 @@ "zh-cht": "用過的", "uk": "Використаний", "xloc": [ - "default.handlebars->47->3288", - "default.handlebars->47->3290" + "default.handlebars->47->3294", + "default.handlebars->47->3296" ] }, { @@ -84027,14 +84066,14 @@ "default.handlebars->47->1082", "default.handlebars->47->127", "default.handlebars->47->1467", - "default.handlebars->47->2227", - "default.handlebars->47->2693", - "default.handlebars->47->2723", - "default.handlebars->47->2878", - "default.handlebars->47->3142", - "default.handlebars->47->3150", - "default.handlebars->47->3154", - "default.handlebars->47->3171", + "default.handlebars->47->2230", + "default.handlebars->47->2698", + "default.handlebars->47->2728", + "default.handlebars->47->2883", + "default.handlebars->47->3148", + "default.handlebars->47->3156", + "default.handlebars->47->3160", + "default.handlebars->47->3177", "default.handlebars->47->381" ] }, @@ -84064,7 +84103,7 @@ "zh-cht": "用戶+檔案", "uk": "Користувач + Файли", "xloc": [ - "default.handlebars->47->2724" + "default.handlebars->47->2729" ] }, { @@ -84093,13 +84132,13 @@ "zh-cht": "用戶帳戶導入", "uk": "Імпортувати Акаунт Користувача", "xloc": [ - "default.handlebars->47->2259", - "default.handlebars->47->2763", - "default.handlebars->47->2765", - "default.handlebars->47->2767", - "default.handlebars->47->2769", - "default.handlebars->47->2771", - "default.handlebars->47->2773" + "default.handlebars->47->2262", + "default.handlebars->47->2768", + "default.handlebars->47->2770", + "default.handlebars->47->2772", + "default.handlebars->47->2774", + "default.handlebars->47->2776", + "default.handlebars->47->2778" ] }, { @@ -84128,7 +84167,7 @@ "zh-cht": "用戶帳戶", "uk": "Акаунти Користувачів", "xloc": [ - "default.handlebars->47->3307" + "default.handlebars->47->3313" ] }, { @@ -84143,7 +84182,7 @@ "pl": "Dziennik Autentykacji Użytkownika", "uk": "Журнал Автентифікації Користувача", "xloc": [ - "default.handlebars->47->3369" + "default.handlebars->47->3375" ] }, { @@ -84172,9 +84211,9 @@ "zh-cht": "用戶授權", "uk": "Авторизація користувача", "xloc": [ - "default-mobile.handlebars->11->948", + "default-mobile.handlebars->11->949", "default.handlebars->47->1078", - "default.handlebars->47->2225" + "default.handlebars->47->2228" ] }, { @@ -84204,9 +84243,9 @@ "uk": "Згода користувача", "xloc": [ "default.handlebars->47->1239", - "default.handlebars->47->2191", - "default.handlebars->47->2869", - "default.handlebars->47->2974", + "default.handlebars->47->2194", + "default.handlebars->47->2874", + "default.handlebars->47->2979", "default.handlebars->47->303", "default.handlebars->47->974" ] @@ -84238,11 +84277,11 @@ "uk": "Група користувачів", "xloc": [ "default.handlebars->47->1081", - "default.handlebars->47->2331", - "default.handlebars->47->2332", - "default.handlebars->47->2838", - "default.handlebars->47->3078", - "default.handlebars->47->3099" + "default.handlebars->47->2334", + "default.handlebars->47->2335", + "default.handlebars->47->2843", + "default.handlebars->47->3084", + "default.handlebars->47->3105" ] }, { @@ -84300,7 +84339,7 @@ "zh-cht": "用戶群成員", "uk": "Належність до груп користувачів", "xloc": [ - "default.handlebars->47->3075" + "default.handlebars->47->3081" ] }, { @@ -84329,7 +84368,7 @@ "zh-cht": "用戶識別碼", "uk": "Номер користувача", "xloc": [ - "default-mobile.handlebars->11->1009" + "default-mobile.handlebars->11->1010" ] }, { @@ -84358,9 +84397,9 @@ "zh-cht": "用戶識別碼", "uk": "Ідентифікатор користувача", "xloc": [ - "default.handlebars->47->2402", - "default.handlebars->47->2925", - "default.handlebars->47->2926" + "default.handlebars->47->2405", + "default.handlebars->47->2930", + "default.handlebars->47->2931" ] }, { @@ -84389,8 +84428,8 @@ "zh-cht": "用戶標識符", "uk": "Ідентифікатори користувачів", "xloc": [ - "default.handlebars->47->2329", - "default.handlebars->47->2909" + "default.handlebars->47->2332", + "default.handlebars->47->2914" ] }, { @@ -84448,7 +84487,7 @@ "zh-cht": "用戶列表輸出", "uk": "Експортувати список користувачів", "xloc": [ - "default.handlebars->47->2780" + "default.handlebars->47->2785" ] }, { @@ -84477,7 +84516,7 @@ "zh-cht": "用戶登錄", "uk": "Лоґіни Користувача", "xloc": [ - "default.handlebars->47->3147" + "default.handlebars->47->3153" ] }, { @@ -84506,8 +84545,8 @@ "zh-cht": "用戶名", "uk": "Ім'я користувача", "xloc": [ - "default-mobile.handlebars->11->1008", - "default.handlebars->47->2401" + "default-mobile.handlebars->11->1009", + "default.handlebars->47->2404" ] }, { @@ -84648,7 +84687,7 @@ "zh-cht": "用戶節", "uk": "Сеанси Користувачів", "xloc": [ - "default.handlebars->47->3339" + "default.handlebars->47->3345" ] }, { @@ -84710,7 +84749,7 @@ "zh-cht": "用戶流量使用", "uk": "Використання Трафіку Користувачами", "xloc": [ - "default.handlebars->47->3146" + "default.handlebars->47->3152" ] }, { @@ -84826,8 +84865,8 @@ "zh-cht": "用戶已存在", "uk": "Користувач вже існує", "xloc": [ - "default-mobile.handlebars->11->1031", - "default.handlebars->47->3260" + "default-mobile.handlebars->11->1032", + "default.handlebars->47->3266" ] }, { @@ -84858,8 +84897,8 @@ "xloc": [ "default-mobile.handlebars->11->305", "default-mobile.handlebars->11->307", - "default.handlebars->47->2036", - "default.handlebars->47->2038" + "default.handlebars->47->2039", + "default.handlebars->47->2041" ] }, { @@ -84888,7 +84927,7 @@ "zh-cht": "用戶組已更改:{0}", "uk": "Змінено групу користувачів: {0}", "xloc": [ - "default.handlebars->47->2593" + "default.handlebars->47->2596" ] }, { @@ -84917,7 +84956,7 @@ "zh-cht": "已創建用戶組:{0}", "uk": "Створена група користувачів: {0}", "xloc": [ - "default.handlebars->47->2583" + "default.handlebars->47->2586" ] }, { @@ -84946,7 +84985,7 @@ "zh-cht": "用戶組成員身份已更改:{0}", "uk": "Змінено членство в групі користувачів: {0}", "xloc": [ - "default.handlebars->47->2581" + "default.handlebars->47->2584" ] }, { @@ -84961,7 +85000,7 @@ "pl": "Zapisy grupy użytkownika", "uk": "Записи групи користувачів", "xloc": [ - "default.handlebars->47->3228" + "default.handlebars->47->3234" ] }, { @@ -85010,7 +85049,7 @@ "uk": "Ключ користувача", "xloc": [ "default.handlebars->47->1809", - "default.handlebars->47->3032" + "default.handlebars->47->3038" ] }, { @@ -85039,7 +85078,7 @@ "zh-cht": "用戶從 {0}、{1}、{2} 嘗試登錄鎖定帳戶", "uk": "Спроба входу користувача до заблокованого акаунту {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2623" + "default.handlebars->47->2626" ] }, { @@ -85068,7 +85107,7 @@ "zh-cht": "使用來自 {0}、{1}、{2} 的錯誤第二因素的用戶登錄嘗試", "uk": "Спроба входу користувача з некоректною двофакторною автентифікацією {0}, {1}, {2}", "xloc": [ - "default.handlebars->47->2622" + "default.handlebars->47->2625" ] }, { @@ -85097,7 +85136,7 @@ "zh-cht": "用戶通知已更改", "uk": "Сповіщення користувачів змінено", "xloc": [ - "default.handlebars->47->2644" + "default.handlebars->47->2647" ] }, { @@ -85112,7 +85151,7 @@ "pl": "Zapisy użytkownika", "uk": "Записи користувача", "xloc": [ - "default.handlebars->47->3218" + "default.handlebars->47->3224" ] }, { @@ -85141,8 +85180,8 @@ "zh-cht": "未找到用戶 {0}。", "uk": "Користувача {0} не знайдено.", "xloc": [ - "default-mobile.handlebars->11->1039", - "default.handlebars->47->3268" + "default-mobile.handlebars->11->1040", + "default.handlebars->47->3274" ] }, { @@ -85232,17 +85271,17 @@ "xloc": [ "default-mobile.handlebars->11->615", "default-mobile.handlebars->11->685", - "default-mobile.handlebars->11->944", + "default-mobile.handlebars->11->945", "default.handlebars->47->1298", "default.handlebars->47->1390", "default.handlebars->47->1501", "default.handlebars->47->1813", - "default.handlebars->47->2108", - "default.handlebars->47->2123", - "default.handlebars->47->2128", - "default.handlebars->47->2169", - "default.handlebars->47->2792", - "default.handlebars->47->3036", + "default.handlebars->47->2111", + "default.handlebars->47->2126", + "default.handlebars->47->2131", + "default.handlebars->47->2172", + "default.handlebars->47->2797", + "default.handlebars->47->3042", "default.handlebars->47->334", "default.handlebars->47->506", "login2.handlebars->centralTable->1->0->logincell->loginpanel->loginpanelform->loginuserpassdiv->1->1->0->1", @@ -85398,7 +85437,7 @@ "uk": "Username:0000", "xloc": [ "default.handlebars->47->1806", - "default.handlebars->47->3029" + "default.handlebars->47->3035" ] }, { @@ -85427,9 +85466,9 @@ "zh-cht": "用戶", "uk": "Користувачі", "xloc": [ - "default.handlebars->47->2826", - "default.handlebars->47->2870", - "default.handlebars->47->3338", + "default.handlebars->47->2831", + "default.handlebars->47->2875", + "default.handlebars->47->3344", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -85459,7 +85498,7 @@ "zh-cht": "用戶節", "uk": "Сеанси Користувачів", "xloc": [ - "default.handlebars->47->3311" + "default.handlebars->47->3317" ] }, { @@ -85488,7 +85527,7 @@ "zh-cht": "用戶視圖", "uk": "Перегляд користувачів", "xloc": [ - "default.handlebars->47->2759" + "default.handlebars->47->2764" ] }, { @@ -85517,8 +85556,8 @@ "zh-cht": "未找到用戶 {0}。", "uk": "Користувачів {0} не знайдено.", "xloc": [ - "default-mobile.handlebars->11->1040", - "default.handlebars->47->3269" + "default-mobile.handlebars->11->1041", + "default.handlebars->47->3275" ] }, { @@ -85665,7 +85704,7 @@ "zh-cht": "驗證電郵", "uk": "Валідація е-пошти", "xloc": [ - "default.handlebars->47->2737" + "default.handlebars->47->2742" ] }, { @@ -85694,8 +85733,8 @@ "zh-cht": "驗證異常", "uk": "Валідний виняток", "xloc": [ - "default-mobile.handlebars->11->1033", - "default.handlebars->47->3262" + "default-mobile.handlebars->11->1034", + "default.handlebars->47->3268" ] }, { @@ -85783,7 +85822,7 @@ "uk": "Венда", "xloc": [ "default-mobile.handlebars->11->295", - "default.handlebars->47->2026", + "default.handlebars->47->2029", "login2.handlebars->7->189" ] }, @@ -85813,8 +85852,8 @@ "zh-cht": "供應商", "uk": "Постачальник", "xloc": [ - "default-mobile.handlebars->11->829", - "default-mobile.handlebars->11->834", + "default-mobile.handlebars->11->830", + "default-mobile.handlebars->11->835", "default.handlebars->47->1672", "default.handlebars->47->1677" ] @@ -85876,7 +85915,7 @@ "zh-cht": "已驗證", "uk": "Верифіковано", "xloc": [ - "default.handlebars->47->3054" + "default.handlebars->47->3060" ] }, { @@ -85934,7 +85973,7 @@ "pl": "Zweryfikowano konto komunikatora", "uk": "Обліковий запис месенджера верифіковано", "xloc": [ - "default.handlebars->47->2734" + "default.handlebars->47->2739" ] }, { @@ -85948,7 +85987,7 @@ "pl": "Zweryfikowano konto komunikatora użytkownika {0}", "uk": "Обліковий запис месенджера {0} верифіковано", "xloc": [ - "default.handlebars->47->2670" + "default.handlebars->47->2673" ] }, { @@ -85979,7 +86018,7 @@ "xloc": [ "default-mobile.handlebars->11->99", "default.handlebars->47->1777", - "default.handlebars->47->2732" + "default.handlebars->47->2737" ] }, { @@ -86008,7 +86047,7 @@ "zh-cht": "用戶{0}的已驗證電話號碼", "uk": "Підтверджений номер телефону користувача {0}", "xloc": [ - "default.handlebars->47->2610" + "default.handlebars->47->2613" ] }, { @@ -86096,10 +86135,10 @@ "zh-cht": "版", "uk": "Версія", "xloc": [ - "default-mobile.handlebars->11->741", - "default-mobile.handlebars->11->810", - "default-mobile.handlebars->11->830", - "default-mobile.handlebars->11->837", + "default-mobile.handlebars->11->742", + "default-mobile.handlebars->11->811", + "default-mobile.handlebars->11->831", + "default-mobile.handlebars->11->838", "default.handlebars->47->1602", "default.handlebars->47->1653", "default.handlebars->47->1673", @@ -86133,7 +86172,7 @@ "zh-cht": "版本不兼容,請先升級你的MeshCentral", "uk": "Версія несумісна, спочатку оновіть встановлення MeshCentral", "xloc": [ - "default.handlebars->47->3382" + "default.handlebars->47->3388" ] }, { @@ -86250,7 +86289,7 @@ "uk": "В'єтнамська", "xloc": [ "default-mobile.handlebars->11->296", - "default.handlebars->47->2027", + "default.handlebars->47->2030", "login2.handlebars->7->190" ] }, @@ -86309,7 +86348,7 @@ "zh-cht": "查看所有事件", "uk": "Показати всі події", "xloc": [ - "default.handlebars->47->2817" + "default.handlebars->47->2822" ] }, { @@ -86364,8 +86403,8 @@ "zh-cht": "查看變更日誌", "uk": "Переглянути Журнал Змін", "xloc": [ - "default.handlebars->47->3385", - "default.handlebars->47->3387" + "default.handlebars->47->3391", + "default.handlebars->47->3393" ] }, { @@ -86423,7 +86462,7 @@ "zh-cht": "查看有關此裝置群的註釋", "uk": "Див. примітки щодо цієї групи пристроїв", "xloc": [ - "default.handlebars->47->2210" + "default.handlebars->47->2213" ] }, { @@ -86452,7 +86491,7 @@ "zh-cht": "查看有關此用戶的註釋", "uk": "Переглянути нотатки про цього користувача", "xloc": [ - "default.handlebars->47->2985" + "default.handlebars->47->2991" ] }, { @@ -86511,7 +86550,7 @@ "zh-cht": "查看此用戶以前的登錄信息", "uk": "Переглянути попередні входи цього користувача", "xloc": [ - "default.handlebars->47->3000" + "default.handlebars->47->3006" ] }, { @@ -86570,7 +86609,7 @@ "uk": "Волапюк", "xloc": [ "default-mobile.handlebars->11->297", - "default.handlebars->47->2028", + "default.handlebars->47->2031", "login2.handlebars->7->191" ] }, @@ -86887,10 +86926,10 @@ "zh-cht": "喚醒裝置", "uk": "Пробудити Пристрої", "xloc": [ - "default-mobile.handlebars->11->980", - "default-mobile.handlebars->11->995", - "default.handlebars->47->2352", - "default.handlebars->47->2384" + "default-mobile.handlebars->11->981", + "default-mobile.handlebars->11->996", + "default.handlebars->47->2355", + "default.handlebars->47->2387" ] }, { @@ -86979,7 +87018,7 @@ "uk": "Walloon / Валлонська", "xloc": [ "default-mobile.handlebars->11->298", - "default.handlebars->47->2029", + "default.handlebars->47->2032", "login2.handlebars->7->192" ] }, @@ -87009,7 +87048,7 @@ "zh-cht": "弱", "uk": "Хиткий", "xloc": [ - "default.handlebars->47->2115" + "default.handlebars->47->2118" ] }, { @@ -87073,7 +87112,7 @@ "uk": "Сповіщення веб-сайту", "xloc": [ "default.handlebars->47->1110", - "default.handlebars->47->2431" + "default.handlebars->47->2434" ] }, { @@ -87102,7 +87141,7 @@ "zh-cht": "網頁電源開關 7", "uk": "Веб-перемикач живлення 7", "xloc": [ - "default.handlebars->47->2106" + "default.handlebars->47->2109" ] }, { @@ -87131,8 +87170,8 @@ "zh-cht": "網絡伺服器", "uk": "Веб-сервер", "xloc": [ - "default.handlebars->47->3364", - "default.handlebars->47->3365" + "default.handlebars->47->3370", + "default.handlebars->47->3371" ] }, { @@ -87161,7 +87200,7 @@ "zh-cht": "Web 服務器 HTTP 標頭", "uk": "HTTP-заголовки веб-сервера", "xloc": [ - "default.handlebars->47->3368" + "default.handlebars->47->3374" ] }, { @@ -87190,7 +87229,7 @@ "zh-cht": "Web伺服器請求", "uk": "Запити веб-сервера", "xloc": [ - "default.handlebars->47->3366" + "default.handlebars->47->3372" ] }, { @@ -87219,7 +87258,7 @@ "zh-cht": "Web插座中繼", "uk": "Web Socket Relay", "xloc": [ - "default.handlebars->47->3367" + "default.handlebars->47->3373" ] }, { @@ -87249,7 +87288,7 @@ "uk": "Web-RDP", "xloc": [ "default.handlebars->47->1052", - "default.handlebars->47->3190", + "default.handlebars->47->3196", "default.handlebars->contextMenu->cxwebrdp" ] }, @@ -87279,7 +87318,7 @@ "zh-cht": "網絡SFTP", "uk": "Web-SFTP", "xloc": [ - "default.handlebars->47->3192" + "default.handlebars->47->3198" ] }, { @@ -87309,7 +87348,7 @@ "uk": "Web-SSH", "xloc": [ "default.handlebars->47->1054", - "default.handlebars->47->3191", + "default.handlebars->47->3197", "default.handlebars->contextMenu->cxwebssh" ] }, @@ -87340,7 +87379,7 @@ "uk": "Web-VNC", "xloc": [ "default.handlebars->47->1050", - "default.handlebars->47->3193", + "default.handlebars->47->3199", "default.handlebars->contextMenu->cxwebvnc" ] }, @@ -87370,7 +87409,7 @@ "zh-cht": "WebRDP", "uk": "WebRDP", "xloc": [ - "default.handlebars->47->3332" + "default.handlebars->47->3338" ] }, { @@ -87399,7 +87438,7 @@ "zh-cht": "網絡SSH", "uk": "WebSSH", "xloc": [ - "default.handlebars->47->3333" + "default.handlebars->47->3339" ] }, { @@ -87457,7 +87496,7 @@ "zh-cht": "網絡VNC", "uk": "WebVNC", "xloc": [ - "default.handlebars->47->3334" + "default.handlebars->47->3340" ] }, { @@ -87576,7 +87615,7 @@ "uk": "Валлійська", "xloc": [ "default-mobile.handlebars->11->299", - "default.handlebars->47->2030", + "default.handlebars->47->2033", "login2.handlebars->7->193" ] }, @@ -87592,7 +87631,7 @@ "uk": "WhatsApp", "xloc": [ "default.handlebars->47->1799", - "default.handlebars->47->3022" + "default.handlebars->47->3028" ] }, { @@ -87621,7 +87660,13 @@ "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "uk": "Коли ввімкнено, будь-хто може використовувати коди виклику, щоб приєднати пристрій до цієї групи пристроїв за допомогою такого публічного посилання:", "xloc": [ - "default.handlebars->47->2410" + "default.handlebars->47->2413" + ] + }, + { + "en": "When enabled, on each login, you will be given the option to login using Duo for added security.", + "xloc": [ + "default.handlebars->47->1818" ] }, { @@ -87680,7 +87725,7 @@ "zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。", "uk": "Якщо вибрано цю політику, Intel® AMT не керується цим сервером. Intel AMT усе ще можна використовувати, активувавши та налаштувавши його вручну.", "xloc": [ - "default.handlebars->47->2290" + "default.handlebars->47->2293" ] }, { @@ -87735,7 +87780,7 @@ "zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。", "uk": "Якщо вибрано цю політику, будь-який Intel® AMT у режимі клієнта (CCM) буде вимкнено. Інші пристрої із CIRA буде очищено, і ними можна буде керувати вручну.", "xloc": [ - "default.handlebars->47->2291" + "default.handlebars->47->2294" ] }, { @@ -87764,7 +87809,7 @@ "zh-cht": "下次登入時將更改。", "uk": "Буде змінено під час наступного входу.", "xloc": [ - "default.handlebars->47->2954" + "default.handlebars->47->2959" ] }, { @@ -88575,7 +88620,7 @@ "nl": "Windows Defender", "uk": "Захисник Windows", "xloc": [ - "default-mobile.handlebars->11->771", + "default-mobile.handlebars->11->772", "default.handlebars->47->956" ] }, @@ -88615,7 +88660,7 @@ "zh-cht": "Windows MeshAgent", "uk": "Windows MeshAgent", "xloc": [ - "default.handlebars->47->2415", + "default.handlebars->47->2418", "default.handlebars->47->577" ] }, @@ -88765,7 +88810,7 @@ "zh-cht": "Windows 安全", "uk": "Безпека Windows", "xloc": [ - "default-mobile.handlebars->11->762", + "default-mobile.handlebars->11->763", "default.handlebars->47->947" ] }, @@ -89140,7 +89185,7 @@ "uk": "XMPP", "xloc": [ "default.handlebars->47->1789", - "default.handlebars->47->3012" + "default.handlebars->47->3018" ] }, { @@ -89199,7 +89244,7 @@ "uk": "Кхоса", "xloc": [ "default-mobile.handlebars->11->300", - "default.handlebars->47->2031", + "default.handlebars->47->2034", "login2.handlebars->7->194" ] }, @@ -89208,9 +89253,9 @@ "en": "Yes", "nl": "Ja", "xloc": [ - "default-mobile.handlebars->11->846", - "default-mobile.handlebars->11->849", - "default-mobile.handlebars->11->852", + "default-mobile.handlebars->11->847", + "default-mobile.handlebars->11->850", + "default-mobile.handlebars->11->853", "default.handlebars->47->1689", "default.handlebars->47->1692", "default.handlebars->47->1695" @@ -89243,7 +89288,7 @@ "uk": "Їдиш", "xloc": [ "default-mobile.handlebars->11->301", - "default.handlebars->47->2032", + "default.handlebars->47->2035", "login2.handlebars->7->195" ] }, @@ -89455,7 +89500,7 @@ "zh-cht": "YubiKey™OTP", "uk": "YubiKey™ OTP", "xloc": [ - "default.handlebars->47->1834" + "default.handlebars->47->1837" ] }, { @@ -89618,7 +89663,7 @@ "uk": "Zulip", "xloc": [ "default.handlebars->47->1793", - "default.handlebars->47->3016" + "default.handlebars->47->3022" ] }, { @@ -89648,7 +89693,7 @@ "uk": "Zulu", "xloc": [ "default-mobile.handlebars->11->302", - "default.handlebars->47->2033", + "default.handlebars->47->2036", "login2.handlebars->7->196" ] }, @@ -90278,7 +90323,7 @@ "zh-cht": "\\\\'", "uk": "\\\\'", "xloc": [ - "default.handlebars->47->3383" + "default.handlebars->47->3389" ] }, { @@ -90839,7 +90884,7 @@ "zh-cht": "config.json", "uk": "config.json", "xloc": [ - "default.handlebars->47->2152" + "default.handlebars->47->2155" ] }, { @@ -90868,7 +90913,7 @@ "zh-cht": "console.txt", "uk": "console.txt", "xloc": [ - "default-mobile.handlebars->11->918", + "default-mobile.handlebars->11->919", "default.handlebars->47->1762" ] }, @@ -90899,7 +90944,7 @@ "uk": "копія", "xloc": [ "default-mobile.handlebars->11->374", - "default.handlebars->47->2509" + "default.handlebars->47->2512" ] }, { @@ -91159,8 +91204,8 @@ "zh-cht": "eventslist.csv", "uk": "eventslist.csv", "xloc": [ - "default.handlebars->47->2700", - "default.handlebars->47->2705" + "default.handlebars->47->2705", + "default.handlebars->47->2710" ] }, { @@ -91189,8 +91234,8 @@ "zh-cht": "eventslist.json", "uk": "eventslist.json", "xloc": [ - "default.handlebars->47->2702", - "default.handlebars->47->2706" + "default.handlebars->47->2707", + "default.handlebars->47->2711" ] }, { @@ -91278,8 +91323,8 @@ "zh-cht": "免費", "uk": "вільно", "xloc": [ - "default.handlebars->47->3319", - "default.handlebars->47->3322" + "default.handlebars->47->3325", + "default.handlebars->47->3328" ] }, { @@ -91508,7 +91553,7 @@ "pl": "https://api.callmebot.com/...", "xloc": [ "default.handlebars->47->1808", - "default.handlebars->47->3031" + "default.handlebars->47->3037" ] }, { @@ -91577,7 +91622,7 @@ "nl": "https://hooks.slack.com/...", "xloc": [ "default.handlebars->47->1812", - "default.handlebars->47->3035" + "default.handlebars->47->3041" ] }, { @@ -91632,7 +91677,7 @@ "zh-cht": "ID、姓名、電子郵件、創建、lastlogin、組、authfactors、siteadmin、useradmin、鎖定", "uk": "id, ім'я, е-пошта, створення, останній вхід, групи, параметри автентифікації, siteadmin, userradmin, заблоковано", "xloc": [ - "default.handlebars->47->2781" + "default.handlebars->47->2786" ] }, { @@ -91892,7 +91937,7 @@ "zh-cht": "k max,默認為空白", "uk": "k max, порожнє за замовчуванням", "xloc": [ - "default.handlebars->47->2809" + "default.handlebars->47->2814" ] }, { @@ -92312,7 +92357,7 @@ "uk": "рухати", "xloc": [ "default-mobile.handlebars->11->375", - "default.handlebars->47->2510" + "default.handlebars->47->2513" ] }, { @@ -92404,7 +92449,7 @@ "uk": "ntfy", "xloc": [ "default.handlebars->47->1792", - "default.handlebars->47->3015" + "default.handlebars->47->3021" ] }, { @@ -92690,7 +92735,7 @@ "zh-cht": "servererrors.txt", "uk": "servererrors.txt", "xloc": [ - "default.handlebars->47->2149" + "default.handlebars->47->2152" ] }, { @@ -92719,7 +92764,7 @@ "zh-cht": "servertrace.csv", "uk": "servertrace.csv", "xloc": [ - "default.handlebars->47->3377" + "default.handlebars->47->3383" ] }, { @@ -92847,7 +92892,7 @@ "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "uk": "час, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->47->3351" + "default.handlebars->47->3357" ] }, { @@ -92876,7 +92921,7 @@ "zh-cht": "時間,來源,訊息", "uk": "час, джерело, повідомлення", "xloc": [ - "default.handlebars->47->3376" + "default.handlebars->47->3382" ] }, { @@ -92946,8 +92991,8 @@ "zh-cht": "總", "uk": "усього", "xloc": [ - "default.handlebars->47->3320", - "default.handlebars->47->3323" + "default.handlebars->47->3326", + "default.handlebars->47->3329" ] }, { @@ -92984,7 +93029,7 @@ "en": "true", "nl": "waar", "xloc": [ - "default.handlebars->47->2764" + "default.handlebars->47->2769" ] }, { @@ -93103,8 +93148,8 @@ "zh-cht": "userlist.csv", "uk": "userlist.csv", "xloc": [ - "default.handlebars->47->2777", - "default.handlebars->47->2782" + "default.handlebars->47->2782", + "default.handlebars->47->2787" ] }, { @@ -93133,8 +93178,8 @@ "zh-cht": "userlist.json", "uk": "userlist.json", "xloc": [ - "default.handlebars->47->2779", - "default.handlebars->47->2783" + "default.handlebars->47->2784", + "default.handlebars->47->2788" ] }, { @@ -93149,7 +93194,7 @@ "uk": "ім'я_користувача@server.ua", "xloc": [ "default.handlebars->47->1811", - "default.handlebars->47->3034" + "default.handlebars->47->3040" ] }, { @@ -93164,7 +93209,7 @@ "uk": "ім'я_користувача@server.ua", "xloc": [ "default.handlebars->47->1807", - "default.handlebars->47->3030" + "default.handlebars->47->3036" ] }, { @@ -93193,7 +93238,7 @@ "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "uk": "utc, час, тип, дія, користувач, пристрій, повідомлення", "xloc": [ - "default.handlebars->47->2704" + "default.handlebars->47->2709" ] }, { @@ -93327,8 +93372,8 @@ "zh-cht": "{0}", "uk": "{0}", "xloc": [ - "default-mobile.handlebars->11->864", - "default-mobile.handlebars->11->870", + "default-mobile.handlebars->11->865", + "default-mobile.handlebars->11->871", "default.handlebars->47->1707", "default.handlebars->47->1713" ] @@ -93492,8 +93537,8 @@ "zh-cht": "{0} Gb", "uk": "{0} ГБ", "xloc": [ - "default.handlebars->47->2482", - "default.handlebars->47->2487" + "default.handlebars->47->2485", + "default.handlebars->47->2490" ] }, { @@ -93548,9 +93593,9 @@ "zh-cht": "{0} Kb", "uk": "{0} кБ", "xloc": [ - "default.handlebars->47->2480", - "default.handlebars->47->2485", - "default.handlebars->47->3115" + "default.handlebars->47->2483", + "default.handlebars->47->2488", + "default.handlebars->47->3121" ] }, { @@ -93605,12 +93650,12 @@ "zh-cht": "{0} Mb", "uk": "{0} Мб", "xloc": [ - "default-mobile.handlebars->11->858", - "default-mobile.handlebars->11->875", + "default-mobile.handlebars->11->859", + "default-mobile.handlebars->11->876", "default.handlebars->47->1701", "default.handlebars->47->1718", - "default.handlebars->47->2481", - "default.handlebars->47->2486" + "default.handlebars->47->2484", + "default.handlebars->47->2489" ] }, { @@ -93639,7 +93684,7 @@ "zh-cht": "{0} Mb,{1} Mhz", "uk": "{0} Мб, {1} МГц", "xloc": [ - "default-mobile.handlebars->11->856", + "default-mobile.handlebars->11->857", "default.handlebars->47->1699" ] }, @@ -93695,7 +93740,7 @@ "zh-cht": "{0}個活躍節", "uk": "{0} активних сеансів", "xloc": [ - "default.handlebars->47->3003" + "default.handlebars->47->3009" ] }, { @@ -93724,8 +93769,8 @@ "zh-cht": "{0} b", "uk": "{0} Б", "xloc": [ - "default.handlebars->47->2479", - "default.handlebars->47->2484" + "default.handlebars->47->2482", + "default.handlebars->47->2487" ] }, { @@ -93755,8 +93800,8 @@ "uk": "{0} байт", "xloc": [ "default-mobile.handlebars->11->363", - "default.handlebars->47->2495", - "default.handlebars->47->3136", + "default.handlebars->47->2498", + "default.handlebars->47->3142", "download.handlebars->3->2", "download2.handlebars->5->2", "sharing.handlebars->11->102" @@ -93788,7 +93833,7 @@ "zh-cht": "剩餘{0}個字節", "uk": "Залишилося {0} байт", "xloc": [ - "default.handlebars->47->2474" + "default.handlebars->47->2477" ] }, { @@ -93902,7 +93947,7 @@ "zh-cht": "剩餘{0} GB", "uk": "Залишилося {0} гігабайт", "xloc": [ - "default.handlebars->47->2477" + "default.handlebars->47->2480" ] }, { @@ -93931,7 +93976,7 @@ "zh-cht": "{0}個群組", "uk": "{0} груп", "xloc": [ - "default.handlebars->47->2959" + "default.handlebars->47->2964" ] }, { @@ -94015,7 +94060,7 @@ "zh-cht": "剩餘{0}千字節", "uk": "Залишилося {0} кілобайт", "xloc": [ - "default.handlebars->47->2475" + "default.handlebars->47->2478" ] }, { @@ -94075,7 +94120,7 @@ "zh-cht": "剩餘{0}兆字節", "uk": "Залишилося {0} мегабайт", "xloc": [ - "default.handlebars->47->2476" + "default.handlebars->47->2479" ] }, { @@ -94217,7 +94262,7 @@ "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "uk": "{0} користувачів не показано, використовуйте вікно пошуку для пошуку користувачів...", "xloc": [ - "default.handlebars->47->2714" + "default.handlebars->47->2719" ] }, { @@ -94708,7 +94753,7 @@ "default-mobile.handlebars->11->432", "default-mobile.handlebars->11->436", "default-mobile.handlebars->11->440", - "default.handlebars->47->2718", + "default.handlebars->47->2723", "default.handlebars->47->448", "default.handlebars->47->451", "default.handlebars->47->455", @@ -95001,8 +95046,8 @@ "zh-cht": "{0}, {1}", "uk": "{0}, {1}", "xloc": [ - "default-mobile.handlebars->11->862", - "default-mobile.handlebars->11->868", + "default-mobile.handlebars->11->863", + "default-mobile.handlebars->11->869", "default.handlebars->47->1705", "default.handlebars->47->1711" ] @@ -95034,7 +95079,7 @@ "uk": "{0}, {1} через {2} хвилини", "xloc": [ "default.handlebars->47->1097", - "default.handlebars->47->2241" + "default.handlebars->47->2244" ] }, { @@ -95064,7 +95109,7 @@ "uk": "{0}, {1} через {2} хвилин", "xloc": [ "default.handlebars->47->1098", - "default.handlebars->47->2242" + "default.handlebars->47->2245" ] }, { @@ -95094,7 +95139,7 @@ "uk": "{0}, {1} виконати {2}", "xloc": [ "default.handlebars->47->1096", - "default.handlebars->47->2240" + "default.handlebars->47->2243" ] }, { @@ -95181,7 +95226,7 @@ "zh-cht": "{0}k在1檔案內。最多{1}k", "uk": "{0}кБ у 1 файлу. {1}кБ максимум", "xloc": [ - "default.handlebars->47->2489" + "default.handlebars->47->2492" ] }, { @@ -95210,7 +95255,7 @@ "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "uk": "{0}кБ у {1} файлах. {2}кБ максимум", "xloc": [ - "default.handlebars->47->2488" + "default.handlebars->47->2491" ] }, { @@ -95479,6 +95524,7 @@ "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->p11bigok->0", "default.handlebars->container->column_l->p13->p13filetable->p13bigok->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageAuthApp->0->authAppSetupCheck->0", + "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageDuoApp->0->authDuoSetupCheck->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageEmail2FA->0->authEmailSetupCheck->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageHardwareOtp->0->authKeySetupCheck->0", "default.handlebars->container->column_l->p2->p2info->p2AccountSecurity->3->manageMessaging1->0->authMessagingCheck->0", diff --git a/views/default.handlebars b/views/default.handlebars index c4610639d3..45aeb8315e 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -430,6 +430,7 @@ + @@ -2357,6 +2358,7 @@ QV('authPhoneNumberCheck', (userinfo.phone != null)); QV('authMessagingCheck', (userinfo.msghandle != null)); QV('authEmailSetupCheck', (userinfo.otpekey == 1) && (userinfo.email != null) && (userinfo.emailVerified == true)); + QV('authDuoSetupCheck', (userinfo.otpduo == 1)); QV('authAppSetupCheck', userinfo.otpsecret == 1); QV('manageAuthApp', (serverinfo.lock2factor != true) && ((userinfo.otpsecret == 1) || ((features2 & 0x00020000) == 0))); QV('authKeySetupCheck', userinfo.otphkeys > 0); @@ -12881,6 +12883,14 @@ }, "When enabled, on each login, you will be given the option to receive a login token to you email account for added security." + '

'); } + function account_manageAuthDuo() { + if (xxdialogMode || ((features & 0x00800000) == 0)) return; + var duoU2Fenabled = ((userinfo.otpduo == 1)); + setDialogMode(2, "Duo Authentication", 1, function () { + if (duoU2Fenabled != Q('duo2facheck').checked) { meshserver.send({ action: 'otpduo', enabled: Q('duo2facheck').checked }); } + }, "When enabled, on each login, you will be given the option to login using Duo for added security." + '

'); + } + function account_manageAuthApp() { if (xxdialogMode || ((features & 4096) == 0)) return; if (userinfo.otpsecret == 1) { account_removeOtp(); } else { account_addOtp(); } @@ -15242,7 +15252,9 @@ 156: "Verified messaging account of user {0}", 157: "Removed messaging account of user {0}", 158: "Displaying alert box, title=\"{0}\", message=\"{1}\"", - 159: "Device Powered On" + 159: "Device Powered On", + 160: "Enabled Duo two-factor authentication", + 161: "Disabled Duo two-factor authentication" }; var eventsShortMessageId = { @@ -15534,7 +15546,7 @@ if (userdomain != '') { username += ', ' + userdomain + ''; } } - if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } + if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } if (user.phone != null) { username += ' '; } if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' '; } if ((user.msghandle != null) && (features2 & 0x02000000)) { username += ' '; } @@ -16717,12 +16729,13 @@ } var multiFactor = 0; - if ((user.otpsecret > 0) || (user.otphkeys > 0) || (user.otpekey > 0)) { + if ((user.otpsecret > 0) || (user.otphkeys > 0) || (user.otpekey > 0) || (user.otpduo > 0)) { multiFactor = 1; var factors = []; if (user.otpsecret > 0) { factors.push("Authentication App"); } if (user.otphkeys > 0) { factors.push("Security Key"); } if (user.otpekey > 0) { factors.push("Email"); } + if (user.otpduo > 0) { factors.push("Duo"); } if (user.otpkeys > 0) { factors.push("Backup Codes"); } if (user.otpdev > 0) { factors.push("Device Push"); } if ((user.phone != null) && (features & 0x04000000)) { factors.push("SMS"); } diff --git a/views/default3.handlebars b/views/default3.handlebars index 9482eea980..4766b725e6 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -590,6 +590,12 @@ id="authAppSetupCheck">
Manage authenticator app
+ +
0); @@ -13994,6 +14001,15 @@ }); } + function account_manageAuthDuo() { + if (xxdialogMode || ((features & 0x00800000) == 0)) return; + var duoU2Fenabled = ((userinfo.otpduo == 1)); + setModalContent('xxAddAgent', 'Duo Authentication', "When enabled, on each login, you will be given the option to login using Duo for added security." + '

'); + showModal('xxAddAgentModal', 'idx_dlgOkButton', function () { + if (duoU2Fenabled != Q('duo2facheck').checked) { meshserver.send({ action: 'otpduo', enabled: Q('duo2facheck').checked }); } + }); + } + function account_manageAuthApp() { if (xxdialogMode || ((features & 4096) == 0)) return; if (userinfo.otpsecret == 1) { account_removeOtp(); } else { account_addOtp(); } @@ -16578,7 +16594,9 @@ 156: "Verified messaging account of user {0}", 157: "Removed messaging account of user {0}", 158: "Displaying alert box, title=\"{0}\", message=\"{1}\"", - 159: "Device Powered On" + 159: "Device Powered On", + 160: "Enabled Duo two-factor authentication", + 161: "Disabled Duo two-factor authentication" }; var eventsShortMessageId = { @@ -16881,7 +16899,7 @@ if (userdomain != '') { username += ', ' + userdomain + ''; } } - if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } + if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } if (user.phone != null) { username += ' '; } if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' '; } if ((user.msghandle != null) && (features2 & 0x02000000)) { username += ' '; } @@ -18129,12 +18147,13 @@ } var multiFactor = 0; - if ((user.otpsecret > 0) || (user.otphkeys > 0) || (user.otpekey > 0)) { + if ((user.otpsecret > 0) || (user.otphkeys > 0) || (user.otpekey > 0) || (user.otpduo > 0)) { multiFactor = 1; var factors = []; if (user.otpsecret > 0) { factors.push("Authentication App"); } if (user.otphkeys > 0) { factors.push("Security Key"); } if (user.otpekey > 0) { factors.push("Email"); } + if (user.otpduo > 0) { factors.push("Duo"); } if (user.otpkeys > 0) { factors.push("Backup Codes"); } if (user.otpdev > 0) { factors.push("Device Push"); } if ((user.phone != null) && (features & 0x04000000)) { factors.push("SMS"); } diff --git a/views/login.handlebars b/views/login.handlebars index 2e8458f6f9..2c237789c5 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -193,6 +193,7 @@ +
@@ -221,6 +222,7 @@ +
@@ -337,6 +339,7 @@ var webPageFullScreen = true; var nightMode = (getstore('_nightMode', '0') == '1'); var publicKeyCredentialRequestOptions = null; + var otpduo = (decodeURIComponent('{{{otpduo}}}') === 'true'); var otpemail = (decodeURIComponent('{{{otpemail}}}') === 'true'); var otpsms = (decodeURIComponent('{{{otpsms}}}') === 'true'); var otpmsg = (decodeURIComponent('{{{otpmsg}}}') === 'true'); @@ -474,6 +477,7 @@ QV('emailKeyButton', otpemail && (messageid != 2) && (messageid != 4) && (messageid != 6)); QV('smsKeyButton', otpsms && (messageid != 2) && (messageid != 4) && (messageid != 6)); QV('msgKeyButton', otpmsg && (messageid != 2) && (messageid != 4) && (messageid != 6)); + QV('duoKeyButton', otpduo && (messageid != 2) && (messageid != 4) && (messageid != 6)); // If hardware key is an option, trigger it now if (autofido && twofakey) { setTimeout(function () { useSecurityKey(1); }, 300); } @@ -487,6 +491,7 @@ QV('emailKeyButton2', otpemail && (messageid != 2) && (messageid != 4) && (messageid != 6)); QV('smsKeyButton2', otpsms && (messageid != 2) && (messageid != 4) && (messageid != 6)); QV('msgKeyButton2', otpmsg && (messageid != 2) && (messageid != 4) && (messageid != 6)); + QV('duoKeyButton2', otpduo && (messageid != 2) && (messageid != 4) && (messageid != 6)); // If hardware key is an option, trigger it now if (autofido && twofakey) { setTimeout(function () { useSecurityKey(2); }, 300); } @@ -617,6 +622,18 @@ } } + function useDuoToken(panelAction) { + if (panelAction == 1) { + Q('hwtokenInput').value = '**duo**'; + QE('tokenOkButton', true); + Q('tokenOkButton').click(); + } else if (panelAction == 2) { + Q('resetHwtokenInput').value = '**duo**'; + QE('resetTokenOkButton', true); + Q('resetTokenOkButton').click(); + } + } + function showPassHint(e) { messagebox("Password Hint", passhint); haltEvent(e); diff --git a/views/login2.handlebars b/views/login2.handlebars index a83c1c505c..5429625d1e 100644 --- a/views/login2.handlebars +++ b/views/login2.handlebars @@ -223,6 +223,7 @@ + @@ -258,6 +259,7 @@ + @@ -393,6 +395,7 @@ var welcomeText = decodeURIComponent('{{{welcometext}}}'); var currentpanel = 0; var publicKeyCredentialRequestOptions = null; + var otpduo = (decodeURIComponent('{{{otpduo}}}') === 'true'); var otpemail = (decodeURIComponent('{{{otpemail}}}') === 'true'); var otpsms = (decodeURIComponent('{{{otpsms}}}') === 'true'); var otpmsg = (decodeURIComponent('{{{otpmsg}}}') === 'true'); @@ -547,12 +550,14 @@ var smskey = otpsms && (messageid != 2) && (messageid != 4) && (messageid != 6); var msgkey = otpmsg && (messageid != 2) && (messageid != 4) && (messageid != 6); var pushkey = otppush && (messageid != 2) && (messageid != 4) && (messageid != 6); + var duokey = otpduo && (messageid != 2) && (messageid != 4) && (messageid != 6); QV('securityKeyButton', twofakey); QV('emailKeyButton', emailkey); QV('smsKeyButton', smskey); QV('msgKeyButton', msgkey); QV('pushKeyButton', pushkey); - QV('2farow', twofakey || emailkey || smskey || msgkey || pushkey); + QV('duoKeyButton', duokey); + QV('2farow', twofakey || emailkey || smskey || msgkey || pushkey || duokey); // If hardware key is an option, trigger it now if (autofido && twofakey) { setTimeout(function () { useSecurityKey(1); }, 300); } @@ -566,12 +571,14 @@ var smskey = otpsms && (messageid != 2) && (messageid != 4) && (messageid != 6); var msgkey = otpmsg && (messageid != 2) && (messageid != 4) && (messageid != 6); var pushkey = otppush && (messageid != 2) && (messageid != 4) && (messageid != 6); + var duokey = otpduo && (messageid != 2) && (messageid != 4) && (messageid != 6); QV('securityKeyButton2', twofakey); QV('emailKeyButton2', emailkey); QV('smsKeyButton2', smskey); QV('msgKeyButton2', msgkey); - QV('pushKeyButton', pushkey); - QV('2farow2', twofakey || emailkey || smskey || msgkey || pushkey); + QV('pushKeyButton2', pushkey); + QV('duoKeyButton2', duokey); + QV('2farow2', twofakey || emailkey || smskey || msgkey || pushkey || duokey); // If hardware key is an option, trigger it now if (autofido && twofakey) { setTimeout(function () { useSecurityKey(2); }, 300); } @@ -723,6 +730,18 @@ } } + function useDuoToken(panelAction) { + if (panelAction == 1) { + Q('hwtokenInput').value = '**duo**'; + QE('tokenOkButton', true); + Q('tokenOkButton').click(); + } else if (panelAction == 2) { + Q('resetHwtokenInput').value = '**duo**'; + QE('resetTokenOkButton', true); + Q('resetTokenOkButton').click(); + } + } + function showPassHint(e) { messagebox("Password Hint", passhint); haltEvent(e); diff --git a/webserver.js b/webserver.js index ffb6982eef..321bed91da 100644 --- a/webserver.js +++ b/webserver.js @@ -918,7 +918,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF var msg2fa = (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.msg2factor != false)) && (parent.msgserver != null) && (parent.msgserver.providers != 0) && (user.msghandle != null)); // Check if a 2nd factor is present - return ((parent.config.settings.no2factorauth !== true) && (msg2fa || sms2fa || (user.otpsecret != null) || ((user.email != null) && (user.emailVerified == true) && (domain.mailserver != null) && (user.otpekey != null)) || ((user.otphkeys != null) && (user.otphkeys.length > 0)))); + return ((parent.config.settings.no2factorauth !== true) && (msg2fa || sms2fa || (user.otpsecret != null) || ((user.email != null) && (user.emailVerified == true) && (domain.mailserver != null) && (user.otpekey != null)) || (user.otpduo != null) || ((user.otphkeys != null) && (user.otphkeys.length > 0)))); } // Check the 2-step auth token @@ -1162,6 +1162,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF var sms2fa = (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.sms2factor != false)) && (parent.smsserver != null) && (user.phone != null)); var msg2fa = (((typeof domain.passwordrequirements != 'object') || (domain.passwordrequirements.msg2factor != false)) && (parent.msgserver != null) && (parent.msgserver.providers != 0) && (user.msghandle != null)); var push2fa = ((parent.firebase != null) && (user.otpdev != null)); + var duo2fa = (((typeof domain.passwordrequirements != 'object') || (typeof domain.passwordrequirements.duo2factor == 'object')) && (user.otpduo != null)); // Check if two factor can be skipped const twoFactorSkip = checkUserOneTimePasswordSkip(domain, user, req, loginOptions); @@ -1211,6 +1212,24 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF return; } + if ((req.body.hwtoken == '**duo**') && duo2fa) { + // Redirect to duo here + const duo = require('@duosecurity/duo_universal'); + const client = new duo.Client({ + clientId: domain.passwordrequirements.duo2factor.integrationkey, + clientSecret: domain.passwordrequirements.duo2factor.secretkey, + apiHost: domain.passwordrequirements.duo2factor.apihostname, + redirectUrl: obj.generateBaseURL(domain, req) + 'auth-duo' + (domain.loginkey != null ? ('?key=' + domain.loginkey) : '') + }); + // Decrypt any session data + const sec = parent.decryptSessionData(req.session.e); + sec.duostate = client.generateState(); + req.session.e = parent.encryptSessionData(sec); + parent.debug('web', 'Redirecting user ' + user._id + ' to Duo'); + res.redirect(client.createAuthUrl(user._id, sec.duostate)); + return; + } + // Handle device push notification 2FA request // We create a browser cookie, send it back and when the browser connects it's web socket, it will trigger the push notification. if ((req.body.hwtoken == '**push**') && push2fa && ((domain.passwordrequirements == null) || (domain.passwordrequirements.push2factor != false))) { @@ -1274,6 +1293,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF if ((user.phone != null) && (parent.smsserver != null)) { req.session.tsms = 1; } if ((user.msghandle != null) && (parent.msgserver != null) && (parent.msgserver.providers != 0)) { req.session.tmsg = 1; } if ((user.otpdev != null) && (parent.firebase != null)) { req.session.tpush = 1; } + if ((user.otpduo != null)) { req.session.tduo = 1; } req.session.e = parent.encryptSessionData({ tuserid: userid, tuser: xusername, tpass: xpassword }); if (direct === true) { handleRootRequestEx(req, res, domain); } else { res.redirect(domain.url + getQueryPortion(req)); } }, randomWaitTime); @@ -3320,6 +3340,8 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF // Check if we can use OTP tokens with email. We can't use email for 2FA password recovery (loginmode 5). var otpemail = (loginmode != 5) && (domain.mailserver != null) && (req.session != null) && ((req.session.temail === 1) || (typeof req.session.temail == 'string')); if ((typeof domain.passwordrequirements == 'object') && (domain.passwordrequirements.email2factor == false)) { otpemail = false; } + var otpduo = (req.session != null) && (req.session.tduo === 1); + if ((typeof domain.passwordrequirements == 'object') && (domain.passwordrequirements.duo2factor == false)) { otpduo = false; } var otpsms = (parent.smsserver != null) && (req.session != null) && (req.session.tsms === 1); if ((typeof domain.passwordrequirements == 'object') && (domain.passwordrequirements.sms2factor == false)) { otpsms = false; } var otpmsg = (parent.msgserver != null) && (req.session != null) && (req.session.tmsg === 1); @@ -3402,6 +3424,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF welcomePictureFullScreen: ((typeof domain.welcomepicturefullscreen == 'boolean') ? domain.welcomepicturefullscreen : false), hwstate: hwstate, otpemail: otpemail, + otpduo: otpduo, otpsms: otpsms, otpmsg: otpmsg, otppush: otppush, @@ -5851,6 +5874,15 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF } }; + // generate the server url + obj.generateBaseURL = function (domain, req) { + var serverName = obj.getWebServerName(domain, req); + var httpsPort = ((args.aliasport == null) ? args.port : args.aliasport); // Use HTTPS alias port is specified + var xdomain = (domain.dns == null) ? domain.id : ''; + if (xdomain != '') xdomain += '/'; + return ('https://' + serverName + ':' + httpsPort + '/' + xdomain); + } + // Get the web server hostname. This may change if using a domain with a DNS name. obj.getWebServerName = function (domain, req) { if (domain.dns != null) return domain.dns; @@ -6918,6 +6950,55 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF } } + // // Setup Duo callback if needed + if ((typeof domain.passwordrequirements == 'object') && (typeof domain.passwordrequirements.duo2factor == 'object')) { + obj.app.get(url + 'auth-duo', function (req, res){ + var domain = getDomain(req); + const sec = parent.decryptSessionData(req.session.e); + if (req.query.state !== sec.duostate) { + // the state returned from Duo IS NOT the same as what was in the session, so must fail! + parent.debug('web', 'handleRootRequest: duo 2fa state failed!'); + req.session.loginmode = 1; + req.session.messageid = 117; // Invalid security check + res.redirect(domain.url + getQueryPortion(req)); // redirect back to main page + return; + } else { + // User credentials are stored in session, just check again and get userid + obj.authenticate(sec.tuser, sec.tpass, domain, function (err, userid, passhint, loginOptions) { + if ((userid != null) && (err == null)) { + // Login data correct, now exchange authorization code for 2fa + const duo = require('@duosecurity/duo_universal'); + const client = new duo.Client({ + clientId: domain.passwordrequirements.duo2factor.integrationkey, + clientSecret: domain.passwordrequirements.duo2factor.secretkey, + apiHost: domain.passwordrequirements.duo2factor.apihostname, + redirectUrl: obj.generateBaseURL(domain, req) + 'auth-duo' + (domain.loginkey != null ? ('?key=' + domain.loginkey) : '') + }); + client.exchangeAuthorizationCodeFor2FAResult(req.query.duo_code, userid).then(function (data) { + parent.debug('web', 'handleRootRequest: duo 2fa auth ok.'); + req.session.userid = userid; + delete req.session.currentNode; + req.session.ip = req.clientIp; // Bind this session to the IP address of the request + setSessionRandom(req); + obj.parent.authLog('https', 'Accepted duo authentication for ' + userid + ' from ' + req.clientIp + ' port ' + req.connection.remotePort, { useragent: req.headers['user-agent'], sessionid: req.session.x }); + res.redirect(domain.url + getQueryPortion(req)); + }).catch(function (err) { + // Duo 2FA exchange failed, so must fail! + console.log('err',err); + parent.debug('web', 'handleRootRequest: duo 2fa exchange authorization code failed!.'); + req.session.loginmode = 1; + req.session.messageid = 117; // Invalid security check + res.redirect(domain.url + getQueryPortion(req)); + }); + } else { + // Login failed + handleRootRequestEx(req, res, domain, direct); + } + }); + } + }); + } + // Server redirects if (parent.config.domains[i].redirects) { for (var j in parent.config.domains[i].redirects) { if (j[0] != '_') { obj.app.get(url + j, obj.handleDomainRedirect); } } } @@ -8787,6 +8868,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF delete user2.otpsms; delete user2.otpmsg; if ((typeof user2.otpekey == 'object') && (user2.otpekey != null)) { user2.otpekey = 1; } // Indicates that email 2FA is enabled. + if ((typeof user2.otpduo == 'object') && (user2.otpduo != null)) { user2.otpduo = 1; } // Indicates that duo 2FA is enabled. if ((typeof user2.otpsecret == 'string') && (user2.otpsecret != null)) { user2.otpsecret = 1; } // Indicates a time secret is present. if ((typeof user2.otpkeys == 'object') && (user2.otpkeys != null)) { user2.otpkeys = 0; if (user.otpkeys != null) { for (var i = 0; i < user.otpkeys.keys.length; i++) { if (user.otpkeys.keys[i].u == true) { user2.otpkeys = 1; } } } } // Indicates the number of one time backup codes that are active. if ((typeof user2.otphkeys == 'object') && (user2.otphkeys != null)) { user2.otphkeys = user2.otphkeys.length; } // Indicates the number of hardware keys setup @@ -9290,8 +9372,27 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF } catch (ex) { return { browserStr: browser, osStr: os } } } - // Return the query string portion of the URL, the ? and anything after. - function getQueryPortion(req) { var s = req.url.indexOf('?'); if (s == -1) { if (req.body && req.body.urlargs) { return req.body.urlargs; } return ''; } return req.url.substring(s); } + // Return the query string portion of the URL, the ? and anything after BUT remove secret keys from authentication providers + function getQueryPortion(req) { + var removeKeys = ['duo_code', 'state']; // Keys to remove + var s = req.url.indexOf('?'); + if (s == -1) { + if (req.body && req.body.urlargs) { + return req.body.urlargs; + } + return ''; + } + var queryString = req.url.substring(s + 1); + var params = queryString.split('&'); + var filteredParams = []; + for (var i = 0; i < params.length; i++) { + var key = params[i].split('=')[0]; + if (removeKeys.indexOf(key) === -1) { + filteredParams.push(params[i]); + } + } + return (filteredParams.length > 0 ? ('?' + filteredParams.join('&')) : ''); + } // Generate a random Intel AMT password function checkAmtPassword(p) { return (p.length > 7) && (/\d/.test(p)) && (/[a-z]/.test(p)) && (/[A-Z]/.test(p)) && (/\W/.test(p)); } From 0254b4f8309f5be15922ff17ec7d80b89e7f16bf Mon Sep 17 00:00:00 2001 From: si458 Date: Sat, 14 Dec 2024 16:19:38 +0000 Subject: [PATCH 2/4] restore 2fa icon for bootstrap --- views/default3.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default3.handlebars b/views/default3.handlebars index 4766b725e6..84e6f303d6 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -16899,7 +16899,7 @@ if (userdomain != '') { username += ', ' + userdomain + ''; } } - if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } + if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } if (user.phone != null) { username += ' '; } if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' '; } if ((user.msghandle != null) && (features2 & 0x02000000)) { username += ' '; } From fd4aad5187f127a93501d976a098900df0f19491 Mon Sep 17 00:00:00 2001 From: si458 Date: Sat, 14 Dec 2024 16:20:49 +0000 Subject: [PATCH 3/4] omg 1 more fix for 2fa icon in bootstrap --- views/default3.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default3.handlebars b/views/default3.handlebars index 84e6f303d6..b42dfce506 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -16899,7 +16899,7 @@ if (userdomain != '') { username += ', ' + userdomain + ''; } } - if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } + if ((user.otpsecret > 0) || (user.otphkeys > 0) || ((user.otpekey == 1) && (features & 0x00800000)) || (user.otpduo == 1) || ((user.phone != null) && (features & 0x04000000))) { username += ' '; } if (user.phone != null) { username += ' '; } if ((user.siteadmin != null) && ((user.siteadmin & 32) != 0) && (user.siteadmin != 0xFFFFFFFF)) { username += ' '; } if ((user.msghandle != null) && (features2 & 0x02000000)) { username += ' '; } From 4256a749bd46f37b0f7daf28f2ee09fb9998b723 Mon Sep 17 00:00:00 2001 From: si458 Date: Wed, 18 Dec 2024 19:24:26 +0000 Subject: [PATCH 4/4] dont attempt multiple @duosecurity/duo_universal installs Signed-off-by: si458 --- meshcentral.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshcentral.js b/meshcentral.js index 1c2797017e..502b3b630a 100644 --- a/meshcentral.js +++ b/meshcentral.js @@ -4225,7 +4225,7 @@ function mainStart() { if (config.domains[i].sessionrecording != null) { sessionRecording = true; } if ((config.domains[i].passwordrequirements != null) && (config.domains[i].passwordrequirements.bancommonpasswords == true)) { wildleek = true; } if ((config.domains[i].newaccountscaptcha != null) && (config.domains[i].newaccountscaptcha !== false)) { captcha = true; } - if ((config.domains[i].passwordrequirements != null) && (typeof config.domains[i].passwordrequirements.duo2factor == 'object')) { passport.push('@duosecurity/duo_universal'); } + if ((config.domains[i].passwordrequirements != null) && (typeof config.domains[i].passwordrequirements.duo2factor == 'object') && (passport.indexOf('@duosecurity/duo_universal') == -1)) { passport.push('@duosecurity/duo_universal'); } } // Build the list of required modules