diff --git a/meshcentral-config-schema.json b/meshcentral-config-schema.json index d692c2c0..154196d4 100644 --- a/meshcentral-config-schema.json +++ b/meshcentral-config-schema.json @@ -226,7 +226,6 @@ "geoLocation": { "type": "boolean", "default": false, "description": "Enables the geo-location feature and device location map in the user interface, this feature is not being worked on." }, "novnc": { "type": "boolean", "default": true, "description": "When enabled, activates the built-in web-based noVNC client." }, "mstsc": { "type": "boolean", "default": false, "description": "When enabled, activates the built-in web-based RDP client." }, - "maxGuestSessionSharingTime": { "type": "integer", "default": 60, "minimum": 1, "maximum": 5760, "description": "Maximum amount of time in minutes that a remote desktop session can be shared with a guest." }, "webEmailsPath": { "type": "string", "description": "Path where to find custom email templates for this domain." }, "customUI": { "type": "object" }, "consentMessages": { diff --git a/meshuser.js b/meshuser.js index f448d3c3..0a938e0d 100644 --- a/meshuser.js +++ b/meshuser.js @@ -446,7 +446,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use // Build server information object var serverinfo = { domain: domain.id, name: domain.dns ? domain.dns : parent.certificates.CommonName, mpsname: parent.certificates.AmtMpsName, mpsport: mpsport, mpspass: args.mpspass, port: httpport, emailcheck: ((parent.parent.mailserver != null) && (domain.auth != 'sspi') && (domain.auth != 'ldap') && (args.lanonly != true) && (parent.certificates.CommonName != null) && (parent.certificates.CommonName.indexOf('.') != -1) && (user._id.split('/')[2].startsWith('~') == false)), domainauth: (domain.auth == 'sspi'), serverTime: Date.now() }; - serverinfo.maxGuestSessionSharingTime = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60; serverinfo.languages = parent.renderLanguages; serverinfo.tlshash = Buffer.from(parent.webCertificateHashs[domain.id], 'binary').toString('hex').toUpperCase(); // SHA384 of server HTTPS certificate if ((domain.sessionrecording) && (domain.sessionrecording.onlyselecteddevicegroups === true)) { serverinfo.devGroupSessionRecording = 1; } // Allow enabling of session recording @@ -4676,11 +4675,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use break; } case 'createDeviceShareLink': { - var err = null, maxExpireMinutes = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60; + var err = null; if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the nodeid else if (common.validateString(command.guestname, 1, 128) == false) { err = 'Invalid guest name'; } // Check the guest name - else if (common.validateInt(command.expire, 1, maxExpireMinutes) == false) { err = 'Invalid expire time'; } // Check the expire time in hours + else if ((command.expire != null) && (typeof command.expire != 'number')) { err = 'Invalid expire time'; } // Check the expire time in hours + else if ((command.start != null) && (typeof command.start != 'number')) { err = 'Invalid start time'; } // Check the start time in seconds + else if ((command.end != null) && (typeof command.end != 'number')) { err = 'Invalid end time'; } // Check the end time in seconds else if (common.validateInt(command.consent, 0, 256) == false) { err = 'Invalid flags'; } // Check the flags + else if ((command.expire == null) && ((command.start == null) || (command.end == null) || (command.start > command.end))) { err = 'No time specified'; } // Check that a time range is present else { if (command.nodeid.split('/').length == 1) { command.nodeid = 'node/' + domain.id + '/' + command.nodeid; } var snode = command.nodeid.split('/'); @@ -4702,10 +4704,20 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if ((rights != 0xFFFFFFFF) && ((rights & 4352) != 0)) return; // Create cookie - var publicid = getRandomPassword(); - var startTime = Date.now(), expireTime = Date.now() + (60000 * command.expire); + var publicid = getRandomPassword(), startTime, expireTime; + if (command.expire != null) { + // Now until expire in hours + startTime = Date.now(); + expireTime = Date.now() + (60000 * command.expire); + } else { + // Time range in seconds + startTime = command.start * 1000; + expireTime = command.end * 1000; + } + const inviteCookie = parent.parent.encodeCookie({ a: 5, uid: user._id, gn: command.guestname, nid: node._id, cf: command.consent, start: startTime, expire: expireTime, pid: publicid }, parent.parent.invitationLinkEncryptionKey); if (inviteCookie == null) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'createDeviceShareLink', responseid: command.responseid, result: 'Unable to generate shareing cookie' })); } catch (ex) { } } return; } + command.start = startTime; command.expire = expireTime; // Create the server url diff --git a/public/scripts/flatpickr.js b/public/scripts/flatpickr.js new file mode 100644 index 00000000..bded21e2 --- /dev/null +++ b/public/scripts/flatpickr.js @@ -0,0 +1,2 @@ +/* flatpickr v4.6.6,, @license MIT */ +!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e=e||self).flatpickr=n()}(this,(function(){"use strict";var e=function(){return(e=Object.assign||function(e){for(var n,t=1,a=arguments.length;t",noCalendar:!1,now:new Date,onChange:[],onClose:[],onDayCreate:[],onDestroy:[],onKeyDown:[],onMonthChange:[],onOpen:[],onParseConfig:[],onReady:[],onValueUpdate:[],onYearChange:[],onPreCalendarPosition:[],plugins:[],position:"auto",positionElement:void 0,prevArrow:"",shorthandCurrentMonth:!1,showMonths:1,static:!1,time_24hr:!1,weekNumbers:!1,wrap:!1},i={weekdays:{shorthand:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],longhand:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},months:{shorthand:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],longhand:["January","February","March","April","May","June","July","August","September","October","November","December"]},daysInMonth:[31,28,31,30,31,30,31,31,30,31,30,31],firstDayOfWeek:0,ordinal:function(e){var n=e%100;if(n>3&&n<21)return"th";switch(n%10){case 1:return"st";case 2:return"nd";case 3:return"rd";default:return"th"}},rangeSeparator:" to ",weekAbbreviation:"Wk",scrollTitle:"Scroll to increment",toggleTitle:"Click to toggle",amPM:["AM","PM"],yearAriaLabel:"Year",monthAriaLabel:"Month",hourAriaLabel:"Hour",minuteAriaLabel:"Minute",time_24hr:!1},o=function(e,n){return void 0===n&&(n=2),("000"+e).slice(-1*n)},r=function(e){return!0===e?1:0};function l(e,n,t){var a;return void 0===t&&(t=!1),function(){var i=this,o=arguments;null!==a&&clearTimeout(a),a=window.setTimeout((function(){a=null,t||e.apply(i,o)}),n),t&&!a&&e.apply(i,o)}}var c=function(e){return e instanceof Array?e:[e]};function d(e,n,t){if(!0===t)return e.classList.add(n);e.classList.remove(n)}function s(e,n,t){var a=window.document.createElement(e);return n=n||"",t=t||"",a.className=n,void 0!==t&&(a.textContent=t),a}function u(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function f(e,n){var t=s("div","numInputWrapper"),a=s("input","numInput "+e),i=s("span","arrowUp"),o=s("span","arrowDown");if(-1===navigator.userAgent.indexOf("MSIE 9.0")?a.type="number":(a.type="text",a.pattern="\\d*"),void 0!==n)for(var r in n)a.setAttribute(r,n[r]);return t.appendChild(a),t.appendChild(i),t.appendChild(o),t}function m(e){try{return"function"==typeof e.composedPath?e.composedPath()[0]:e.target}catch(n){return e.target}}var g=function(){},p=function(e,n,t){return t.months[n?"shorthand":"longhand"][e]},h={D:g,F:function(e,n,t){e.setMonth(t.months.longhand.indexOf(n))},G:function(e,n){e.setHours(parseFloat(n))},H:function(e,n){e.setHours(parseFloat(n))},J:function(e,n){e.setDate(parseFloat(n))},K:function(e,n,t){e.setHours(e.getHours()%12+12*r(new RegExp(t.amPM[1],"i").test(n)))},M:function(e,n,t){e.setMonth(t.months.shorthand.indexOf(n))},S:function(e,n){e.setSeconds(parseFloat(n))},U:function(e,n){return new Date(1e3*parseFloat(n))},W:function(e,n,t){var a=parseInt(n),i=new Date(e.getFullYear(),0,2+7*(a-1),0,0,0,0);return i.setDate(i.getDate()-i.getDay()+t.firstDayOfWeek),i},Y:function(e,n){e.setFullYear(parseFloat(n))},Z:function(e,n){return new Date(n)},d:function(e,n){e.setDate(parseFloat(n))},h:function(e,n){e.setHours(parseFloat(n))},i:function(e,n){e.setMinutes(parseFloat(n))},j:function(e,n){e.setDate(parseFloat(n))},l:g,m:function(e,n){e.setMonth(parseFloat(n)-1)},n:function(e,n){e.setMonth(parseFloat(n)-1)},s:function(e,n){e.setSeconds(parseFloat(n))},u:function(e,n){return new Date(parseFloat(n))},w:g,y:function(e,n){e.setFullYear(2e3+parseFloat(n))}},v={D:"(\\w+)",F:"(\\w+)",G:"(\\d\\d|\\d)",H:"(\\d\\d|\\d)",J:"(\\d\\d|\\d)\\w+",K:"",M:"(\\w+)",S:"(\\d\\d|\\d)",U:"(.+)",W:"(\\d\\d|\\d)",Y:"(\\d{4})",Z:"(.+)",d:"(\\d\\d|\\d)",h:"(\\d\\d|\\d)",i:"(\\d\\d|\\d)",j:"(\\d\\d|\\d)",l:"(\\w+)",m:"(\\d\\d|\\d)",n:"(\\d\\d|\\d)",s:"(\\d\\d|\\d)",u:"(.+)",w:"(\\d\\d|\\d)",y:"(\\d{2})"},D={Z:function(e){return e.toISOString()},D:function(e,n,t){return n.weekdays.shorthand[D.w(e,n,t)]},F:function(e,n,t){return p(D.n(e,n,t)-1,!1,n)},G:function(e,n,t){return o(D.h(e,n,t))},H:function(e){return o(e.getHours())},J:function(e,n){return void 0!==n.ordinal?e.getDate()+n.ordinal(e.getDate()):e.getDate()},K:function(e,n){return n.amPM[r(e.getHours()>11)]},M:function(e,n){return p(e.getMonth(),!0,n)},S:function(e){return o(e.getSeconds())},U:function(e){return e.getTime()/1e3},W:function(e,n,t){return t.getWeek(e)},Y:function(e){return o(e.getFullYear(),4)},d:function(e){return o(e.getDate())},h:function(e){return e.getHours()%12?e.getHours()%12:12},i:function(e){return o(e.getMinutes())},j:function(e){return e.getDate()},l:function(e,n){return n.weekdays.longhand[e.getDay()]},m:function(e){return o(e.getMonth()+1)},n:function(e){return e.getMonth()+1},s:function(e){return e.getSeconds()},u:function(e){return e.getTime()},w:function(e){return e.getDay()},y:function(e){return String(e.getFullYear()).substring(2)}},w=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o,l=e.isMobile,c=void 0!==l&&l;return function(e,n,a){var i=a||r;return void 0===t.formatDate||c?n.split("").map((function(n,a,o){return D[n]&&"\\"!==o[a-1]?D[n](e,i,t):"\\"!==n?n:""})).join(""):t.formatDate(e,n,i)}},b=function(e){var n=e.config,t=void 0===n?a:n,o=e.l10n,r=void 0===o?i:o;return function(e,n,i,o){if(0===e||e){var l,c=o||r,d=e;if(e instanceof Date)l=new Date(e.getTime());else if("string"!=typeof e&&void 0!==e.toFixed)l=new Date(e);else if("string"==typeof e){var s=n||(t||a).dateFormat,u=String(e).trim();if("today"===u)l=new Date,i=!0;else if(/Z$/.test(u)||/GMT$/.test(u))l=new Date(e);else if(t&&t.parseDate)l=t.parseDate(e,s);else{l=t&&t.noCalendar?new Date((new Date).setHours(0,0,0,0)):new Date((new Date).getFullYear(),0,1,0,0,0,0);for(var f=void 0,m=[],g=0,p=0,D="";gl&&(u=a===D.hourElement?u-l-r(!D.amPM):i,g&&Y(void 0,1,D.hourElement)),D.amPM&&f&&(1===c?u+d===23:Math.abs(u-d)>c)&&(D.amPM.textContent=D.l10n.amPM[r(D.amPM.textContent===D.l10n.amPM[0])]),a.value=o(u)}}(e);var c=D._input.value;T(),we(),D._input.value!==c&&D._debouncedChange()}function T(){if(void 0!==D.hourElement&&void 0!==D.minuteElement){var e,n,t=(parseInt(D.hourElement.value.slice(-2),10)||0)%24,a=(parseInt(D.minuteElement.value,10)||0)%60,i=void 0!==D.secondElement?(parseInt(D.secondElement.value,10)||0)%60:0;void 0!==D.amPM&&(e=t,n=D.amPM.textContent,t=e%12+12*r(n===D.l10n.amPM[1]));var o=void 0!==D.config.minTime||D.config.minDate&&D.minDateHasTime&&D.latestSelectedDateObj&&0===C(D.latestSelectedDateObj,D.config.minDate,!0);if(void 0!==D.config.maxTime||D.config.maxDate&&D.maxDateHasTime&&D.latestSelectedDateObj&&0===C(D.latestSelectedDateObj,D.config.maxDate,!0)){var l=void 0!==D.config.maxTime?D.config.maxTime:D.config.maxDate;(t=Math.min(t,l.getHours()))===l.getHours()&&(a=Math.min(a,l.getMinutes())),a===l.getMinutes()&&(i=Math.min(i,l.getSeconds()))}if(o){var c=void 0!==D.config.minTime?D.config.minTime:D.config.minDate;(t=Math.max(t,c.getHours()))===c.getHours()&&(a=Math.max(a,c.getMinutes())),a===c.getMinutes()&&(i=Math.max(i,c.getSeconds()))}_(t,a,i)}}function I(e){var n=e||D.latestSelectedDateObj;n&&_(n.getHours(),n.getMinutes(),n.getSeconds())}function S(){var e=D.config.defaultHour,n=D.config.defaultMinute,t=D.config.defaultSeconds;if(void 0!==D.config.minDate){var a=D.config.minDate.getHours(),i=D.config.minDate.getMinutes();(e=Math.max(e,a))===a&&(n=Math.max(i,n)),e===a&&n===i&&(t=D.config.minDate.getSeconds())}if(void 0!==D.config.maxDate){var o=D.config.maxDate.getHours(),r=D.config.maxDate.getMinutes();(e=Math.min(e,o))===o&&(n=Math.min(r,n)),e===o&&n===r&&(t=D.config.maxDate.getSeconds())}return{hours:e,minutes:n,seconds:t}}function _(e,n,t){void 0!==D.latestSelectedDateObj&&D.latestSelectedDateObj.setHours(e%24,n,t||0,0),D.hourElement&&D.minuteElement&&!D.isMobile&&(D.hourElement.value=o(D.config.time_24hr?e:(12+e)%12+12*r(e%12==0)),D.minuteElement.value=o(n),void 0!==D.amPM&&(D.amPM.textContent=D.l10n.amPM[r(e>=12)]),void 0!==D.secondElement&&(D.secondElement.value=o(t)))}function O(e){var n=m(e),t=parseInt(n.value)+(e.delta||0);(t/1e3>1||"Enter"===e.key&&!/[^\d]/.test(t.toString()))&&Z(t)}function F(e,n,t,a){return n instanceof Array?n.forEach((function(n){return F(e,n,t,a)})):e instanceof Array?e.forEach((function(e){return F(e,n,t,a)})):(e.addEventListener(n,t,a),void D._handlers.push({element:e,event:n,handler:t,options:a}))}function N(){ge("onChange")}function A(e,n){var t=void 0!==e?D.parseDate(e):D.latestSelectedDateObj||(D.config.minDate&&D.config.minDate>D.now?D.config.minDate:D.config.maxDate&&D.config.maxDate=0&&C(e,D.selectedDates[1])<=0)}(n)&&!he(n)&&o.classList.add("inRange"),D.weekNumbers&&1===D.config.showMonths&&"prevMonthDay"!==e&&t%7==1&&D.weekNumbers.insertAdjacentHTML("beforeend",""+D.config.getWeek(n)+""),ge("onDayCreate",o),o}function j(e){e.focus(),"range"===D.config.mode&&te(e)}function L(e){for(var n=e>0?0:D.config.showMonths-1,t=e>0?D.config.showMonths:-1,a=n;a!=t;a+=e)for(var i=D.daysContainer.children[a],o=e>0?0:i.children.length-1,r=e>0?i.children.length:-1,l=o;l!=r;l+=e){var c=i.children[l];if(-1===c.className.indexOf("hidden")&&Q(c.dateObj))return c}}function W(e,n){var t=X(document.activeElement||document.body),a=void 0!==e?e:t?document.activeElement:void 0!==D.selectedDateElem&&X(D.selectedDateElem)?D.selectedDateElem:void 0!==D.todayDateElem&&X(D.todayDateElem)?D.todayDateElem:L(n>0?1:-1);void 0===a?D._input.focus():t?function(e,n){for(var t=-1===e.className.indexOf("Month")?e.dateObj.getMonth():D.currentMonth,a=n>0?D.config.showMonths:-1,i=n>0?1:-1,o=t-D.currentMonth;o!=a;o+=i)for(var r=D.daysContainer.children[o],l=t-D.currentMonth===o?e.$i+n:n<0?r.children.length-1:0,c=r.children.length,d=l;d>=0&&d0?c:-1);d+=i){var s=r.children[d];if(-1===s.className.indexOf("hidden")&&Q(s.dateObj)&&Math.abs(e.$i-d)>=Math.abs(n))return j(s)}D.changeMonth(i),W(L(i),0)}(a,n):j(a)}function R(e,n){for(var t=(new Date(e,n,1).getDay()-D.l10n.firstDayOfWeek+7)%7,a=D.utils.getDaysInMonth((n-1+12)%12,e),i=D.utils.getDaysInMonth(n,e),o=window.document.createDocumentFragment(),r=D.config.showMonths>1,l=r?"prevMonthDay hidden":"prevMonthDay",c=r?"nextMonthDay hidden":"nextMonthDay",d=a+1-t,u=0;d<=a;d++,u++)o.appendChild(H(l,new Date(e,n-1,d),d,u));for(d=1;d<=i;d++,u++)o.appendChild(H("",new Date(e,n,d),d,u));for(var f=i+1;f<=42-t&&(1===D.config.showMonths||u%7!=0);f++,u++)o.appendChild(H(c,new Date(e,n+1,f%i),f,u));var m=s("div","dayContainer");return m.appendChild(o),m}function B(){if(void 0!==D.daysContainer){u(D.daysContainer),D.weekNumbers&&u(D.weekNumbers);for(var e=document.createDocumentFragment(),n=0;n1||"dropdown"!==D.config.monthSelectorType)){var e=function(e){return!(void 0!==D.config.minDate&&D.currentYear===D.config.minDate.getFullYear()&&eD.config.maxDate.getMonth())};D.monthsDropdownContainer.tabIndex=-1,D.monthsDropdownContainer.innerHTML="";for(var n=0;n<12;n++)if(e(n)){var t=s("option","flatpickr-monthDropdown-month");t.value=new Date(D.currentYear,n).getMonth().toString(),t.textContent=p(n,D.config.shorthandCurrentMonth,D.l10n),t.tabIndex=-1,D.currentMonth===n&&(t.selected=!0),D.monthsDropdownContainer.appendChild(t)}}}function K(){var e,n=s("div","flatpickr-month"),t=window.document.createDocumentFragment();D.config.showMonths>1||"static"===D.config.monthSelectorType?e=s("span","cur-month"):(D.monthsDropdownContainer=s("select","flatpickr-monthDropdown-months"),D.monthsDropdownContainer.setAttribute("aria-label",D.l10n.monthAriaLabel),F(D.monthsDropdownContainer,"change",(function(e){var n=m(e),t=parseInt(n.value,10);D.changeMonth(t-D.currentMonth),ge("onMonthChange")})),J(),e=D.monthsDropdownContainer);var a=f("cur-year",{tabindex:"-1"}),i=a.getElementsByTagName("input")[0];i.setAttribute("aria-label",D.l10n.yearAriaLabel),D.config.minDate&&i.setAttribute("min",D.config.minDate.getFullYear().toString()),D.config.maxDate&&(i.setAttribute("max",D.config.maxDate.getFullYear().toString()),i.disabled=!!D.config.minDate&&D.config.minDate.getFullYear()===D.config.maxDate.getFullYear());var o=s("div","flatpickr-current-month");return o.appendChild(e),o.appendChild(a),t.appendChild(o),n.appendChild(t),{container:n,yearElement:i,monthElement:e}}function U(){u(D.monthNav),D.monthNav.appendChild(D.prevMonthNav),D.config.showMonths&&(D.yearElements=[],D.monthElements=[]);for(var e=D.config.showMonths;e--;){var n=K();D.yearElements.push(n.yearElement),D.monthElements.push(n.monthElement),D.monthNav.appendChild(n.container)}D.monthNav.appendChild(D.nextMonthNav)}function q(){D.weekdayContainer?u(D.weekdayContainer):D.weekdayContainer=s("div","flatpickr-weekdays");for(var e=D.config.showMonths;e--;){var n=s("div","flatpickr-weekdaycontainer");D.weekdayContainer.appendChild(n)}return $(),D.weekdayContainer}function $(){if(D.weekdayContainer){var e=D.l10n.firstDayOfWeek,t=n(D.l10n.weekdays.shorthand);e>0&&e\n "+t.join("")+"\n \n "}}function z(e,n){void 0===n&&(n=!0);var t=n?e:e-D.currentMonth;t<0&&!0===D._hidePrevMonthArrow||t>0&&!0===D._hideNextMonthArrow||(D.currentMonth+=t,(D.currentMonth<0||D.currentMonth>11)&&(D.currentYear+=D.currentMonth>11?1:-1,D.currentMonth=(D.currentMonth+12)%12,ge("onYearChange"),J()),B(),ge("onMonthChange"),ve())}function G(e){return!(!D.config.appendTo||!D.config.appendTo.contains(e))||D.calendarContainer.contains(e)}function V(e){if(D.isOpen&&!D.config.inline){var n=m(e),t=G(n),a=n===D.input||n===D.altInput||D.element.contains(n)||e.path&&e.path.indexOf&&(~e.path.indexOf(D.input)||~e.path.indexOf(D.altInput)),i="blur"===e.type?a&&e.relatedTarget&&!G(e.relatedTarget):!a&&!t&&!G(e.relatedTarget),o=!D.config.ignoredFocusElements.some((function(e){return e.contains(n)}));i&&o&&(void 0!==D.timeContainer&&void 0!==D.minuteElement&&void 0!==D.hourElement&&""!==D.input.value&&void 0!==D.input.value&&k(),D.close(),D.config&&"range"===D.config.mode&&1===D.selectedDates.length&&(D.clear(!1),D.redraw()))}}function Z(e){if(!(!e||D.config.minDate&&eD.config.maxDate.getFullYear())){var n=e,t=D.currentYear!==n;D.currentYear=n||D.currentYear,D.config.maxDate&&D.currentYear===D.config.maxDate.getFullYear()?D.currentMonth=Math.min(D.config.maxDate.getMonth(),D.currentMonth):D.config.minDate&&D.currentYear===D.config.minDate.getFullYear()&&(D.currentMonth=Math.max(D.config.minDate.getMonth(),D.currentMonth)),t&&(D.redraw(),ge("onYearChange"),J())}}function Q(e,n){void 0===n&&(n=!0);var t=D.parseDate(e,void 0,n);if(D.config.minDate&&t&&C(t,D.config.minDate,void 0!==n?n:!D.minDateHasTime)<0||D.config.maxDate&&t&&C(t,D.config.maxDate,void 0!==n?n:!D.maxDateHasTime)>0)return!1;if(0===D.config.enable.length&&0===D.config.disable.length)return!0;if(void 0===t)return!1;for(var a=D.config.enable.length>0,i=a?D.config.enable:D.config.disable,o=0,r=void 0;o=r.from.getTime()&&t.getTime()<=r.to.getTime())return a}return!a}function X(e){return void 0!==D.daysContainer&&(-1===e.className.indexOf("hidden")&&-1===e.className.indexOf("flatpickr-disabled")&&D.daysContainer.contains(e))}function ee(e){!(e.target===D._input)||e.relatedTarget&&G(e.relatedTarget)||D.setDate(D._input.value,!0,e.target===D.altInput?D.config.altFormat:D.config.dateFormat)}function ne(e){var n=m(e),t=D.config.wrap?g.contains(n):n===D._input,a=D.config.allowInput,i=D.isOpen&&(!a||!t),o=D.config.inline&&t&&!a;if(13===e.keyCode&&t){if(a)return D.setDate(D._input.value,!0,n===D.altInput?D.config.altFormat:D.config.dateFormat),n.blur();D.open()}else if(G(n)||i||o){var r=!!D.timeContainer&&D.timeContainer.contains(n);switch(e.keyCode){case 13:r?(e.preventDefault(),k(),de()):se(e);break;case 27:e.preventDefault(),de();break;case 8:case 46:t&&!D.config.allowInput&&(e.preventDefault(),D.clear());break;case 37:case 39:if(r||t)D.hourElement&&D.hourElement.focus();else if(e.preventDefault(),void 0!==D.daysContainer&&(!1===a||document.activeElement&&X(document.activeElement))){var l=39===e.keyCode?1:-1;e.ctrlKey?(e.stopPropagation(),z(l),W(L(1),0)):W(void 0,l)}break;case 38:case 40:e.preventDefault();var c=40===e.keyCode?1:-1;D.daysContainer&&void 0!==n.$i||n===D.input||n===D.altInput?e.ctrlKey?(e.stopPropagation(),Z(D.currentYear-c),W(L(1),0)):r||W(void 0,7*c):n===D.currentYearElement?Z(D.currentYear-c):D.config.enableTime&&(!r&&D.hourElement&&D.hourElement.focus(),k(e),D._debouncedChange());break;case 9:if(r){var d=[D.hourElement,D.minuteElement,D.secondElement,D.amPM].concat(D.pluginElements).filter((function(e){return e})),s=d.indexOf(n);if(-1!==s){var u=d[s+(e.shiftKey?-1:1)];e.preventDefault(),(u||D._input).focus()}}else!D.config.noCalendar&&D.daysContainer&&D.daysContainer.contains(n)&&e.shiftKey&&(e.preventDefault(),D._input.focus())}}if(void 0!==D.amPM&&n===D.amPM)switch(e.key){case D.l10n.amPM[0].charAt(0):case D.l10n.amPM[0].charAt(0).toLowerCase():D.amPM.textContent=D.l10n.amPM[0],T(),we();break;case D.l10n.amPM[1].charAt(0):case D.l10n.amPM[1].charAt(0).toLowerCase():D.amPM.textContent=D.l10n.amPM[1],T(),we()}(t||G(n))&&ge("onKeyDown",e)}function te(e){if(1===D.selectedDates.length&&(!e||e.classList.contains("flatpickr-day")&&!e.classList.contains("flatpickr-disabled"))){for(var n=e?e.dateObj.getTime():D.days.firstElementChild.dateObj.getTime(),t=D.parseDate(D.selectedDates[0],void 0,!0).getTime(),a=Math.min(n,D.selectedDates[0].getTime()),i=Math.max(n,D.selectedDates[0].getTime()),o=!1,r=0,l=0,c=a;ca&&cr)?r=c:c>t&&(!l||c0&&m0&&m>l;return g?(f.classList.add("notAllowed"),["inRange","startRange","endRange"].forEach((function(e){f.classList.remove(e)})),"continue"):o&&!g?"continue":(["startRange","inRange","endRange","notAllowed"].forEach((function(e){f.classList.remove(e)})),void(void 0!==e&&(e.classList.add(n<=D.selectedDates[0].getTime()?"startRange":"endRange"),tn&&m===t&&f.classList.add("endRange"),m>=r&&(0===l||m<=l)&&(d=t,u=n,(c=m)>Math.min(d,u)&&c0||t.getMinutes()>0||t.getSeconds()>0),D.selectedDates&&(D.selectedDates=D.selectedDates.filter((function(e){return Q(e)})),D.selectedDates.length||"min"!==e||I(t),we()),D.daysContainer&&(ce(),void 0!==t?D.currentYearElement[e]=t.getFullYear().toString():D.currentYearElement.removeAttribute(e),D.currentYearElement.disabled=!!a&&void 0!==t&&a.getFullYear()===t.getFullYear())}}function oe(){return D.config.wrap?g.querySelector("[data-input]"):g}function re(){"object"!=typeof D.config.locale&&void 0===E.l10ns[D.config.locale]&&D.config.errorHandler(new Error("flatpickr: invalid locale "+D.config.locale)),D.l10n=e(e({},E.l10ns.default),"object"==typeof D.config.locale?D.config.locale:"default"!==D.config.locale?E.l10ns[D.config.locale]:void 0),v.K="("+D.l10n.amPM[0]+"|"+D.l10n.amPM[1]+"|"+D.l10n.amPM[0].toLowerCase()+"|"+D.l10n.amPM[1].toLowerCase()+")",void 0===e(e({},h),JSON.parse(JSON.stringify(g.dataset||{}))).time_24hr&&void 0===E.defaultConfig.time_24hr&&(D.config.time_24hr=D.l10n.time_24hr),D.formatDate=w(D),D.parseDate=b({config:D.config,l10n:D.l10n})}function le(e){if(void 0!==D.calendarContainer){ge("onPreCalendarPosition");var n=e||D._positionElement,t=Array.prototype.reduce.call(D.calendarContainer.children,(function(e,n){return e+n.offsetHeight}),0),a=D.calendarContainer.offsetWidth,i=D.config.position.split(" "),o=i[0],r=i.length>1?i[1]:null,l=n.getBoundingClientRect(),c=window.innerHeight-l.bottom,s="above"===o||"below"!==o&&ct,u=window.pageYOffset+l.top+(s?-t-2:n.offsetHeight+2);if(d(D.calendarContainer,"arrowTop",!s),d(D.calendarContainer,"arrowBottom",s),!D.config.inline){var f=window.pageXOffset+l.left,m=!1,g=!1;"center"===r?(f-=(a-l.width)/2,m=!0):"right"===r&&(f-=a-l.width,g=!0),d(D.calendarContainer,"arrowLeft",!m&&!g),d(D.calendarContainer,"arrowCenter",m),d(D.calendarContainer,"arrowRight",g);var p=window.document.body.offsetWidth-(window.pageXOffset+l.right),h=f+a>window.document.body.offsetWidth,v=p+a>window.document.body.offsetWidth;if(d(D.calendarContainer,"rightMost",h),!D.config.static)if(D.calendarContainer.style.top=u+"px",h)if(v){var w=function(){for(var e=null,n=0;nD.currentMonth+D.config.showMonths-1)&&"range"!==D.config.mode;if(D.selectedDateElem=t,"single"===D.config.mode)D.selectedDates=[a];else if("multiple"===D.config.mode){var o=he(a);o?D.selectedDates.splice(parseInt(o),1):D.selectedDates.push(a)}else"range"===D.config.mode&&(2===D.selectedDates.length&&D.clear(!1,!1),D.latestSelectedDateObj=a,D.selectedDates.push(a),0!==C(a,D.selectedDates[0],!0)&&D.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()})));if(T(),i){var r=D.currentYear!==a.getFullYear();D.currentYear=a.getFullYear(),D.currentMonth=a.getMonth(),r&&(ge("onYearChange"),J()),ge("onMonthChange")}if(ve(),B(),we(),i||"range"===D.config.mode||1!==D.config.showMonths?void 0!==D.selectedDateElem&&void 0===D.hourElement&&D.selectedDateElem&&D.selectedDateElem.focus():j(t),void 0!==D.hourElement&&void 0!==D.hourElement&&D.hourElement.focus(),D.config.closeOnSelect){var l="single"===D.config.mode&&!D.config.enableTime,c="range"===D.config.mode&&2===D.selectedDates.length&&!D.config.enableTime;(l||c)&&de()}N()}}D.parseDate=b({config:D.config,l10n:D.l10n}),D._handlers=[],D.pluginElements=[],D.loadedPlugins=[],D._bind=F,D._setHoursFromDate=I,D._positionCalendar=le,D.changeMonth=z,D.changeYear=Z,D.clear=function(e,n){void 0===e&&(e=!0);void 0===n&&(n=!0);D.input.value="",void 0!==D.altInput&&(D.altInput.value="");void 0!==D.mobileInput&&(D.mobileInput.value="");D.selectedDates=[],D.latestSelectedDateObj=void 0,!0===n&&(D.currentYear=D._initialDate.getFullYear(),D.currentMonth=D._initialDate.getMonth());if(!0===D.config.enableTime){var t=S(),a=t.hours,i=t.minutes,o=t.seconds;_(a,i,o)}D.redraw(),e&&ge("onChange")},D.close=function(){D.isOpen=!1,D.isMobile||(void 0!==D.calendarContainer&&D.calendarContainer.classList.remove("open"),void 0!==D._input&&D._input.classList.remove("active"));ge("onClose")},D._createElement=s,D.destroy=function(){void 0!==D.config&&ge("onDestroy");for(var e=D._handlers.length;e--;){var n=D._handlers[e];n.element.removeEventListener(n.event,n.handler,n.options)}if(D._handlers=[],D.mobileInput)D.mobileInput.parentNode&&D.mobileInput.parentNode.removeChild(D.mobileInput),D.mobileInput=void 0;else if(D.calendarContainer&&D.calendarContainer.parentNode)if(D.config.static&&D.calendarContainer.parentNode){var t=D.calendarContainer.parentNode;if(t.lastChild&&t.removeChild(t.lastChild),t.parentNode){for(;t.firstChild;)t.parentNode.insertBefore(t.firstChild,t);t.parentNode.removeChild(t)}}else D.calendarContainer.parentNode.removeChild(D.calendarContainer);D.altInput&&(D.input.type="text",D.altInput.parentNode&&D.altInput.parentNode.removeChild(D.altInput),delete D.altInput);D.input&&(D.input.type=D.input._type,D.input.classList.remove("flatpickr-input"),D.input.removeAttribute("readonly"));["_showTimeInput","latestSelectedDateObj","_hideNextMonthArrow","_hidePrevMonthArrow","__hideNextMonthArrow","__hidePrevMonthArrow","isMobile","isOpen","selectedDateElem","minDateHasTime","maxDateHasTime","days","daysContainer","_input","_positionElement","innerContainer","rContainer","monthNav","todayDateElem","calendarContainer","weekdayContainer","prevMonthNav","nextMonthNav","monthsDropdownContainer","currentMonthElement","currentYearElement","navigationCurrentMonth","selectedDateElem","config"].forEach((function(e){try{delete D[e]}catch(e){}}))},D.isEnabled=Q,D.jumpToDate=A,D.open=function(e,n){void 0===n&&(n=D._positionElement);if(!0===D.isMobile){if(e){e.preventDefault();var t=m(e);t&&t.blur()}return void 0!==D.mobileInput&&(D.mobileInput.focus(),D.mobileInput.click()),void ge("onOpen")}if(D._input.disabled||D.config.inline)return;var a=D.isOpen;D.isOpen=!0,a||(D.calendarContainer.classList.add("open"),D._input.classList.add("active"),ge("onOpen"),le(n));!0===D.config.enableTime&&!0===D.config.noCalendar&&(!1!==D.config.allowInput||void 0!==e&&D.timeContainer.contains(e.relatedTarget)||setTimeout((function(){return D.hourElement.select()}),50))},D.redraw=ce,D.set=function(e,n){if(null!==e&&"object"==typeof e)for(var a in Object.assign(D.config,e),e)void 0!==ue[a]&&ue[a].forEach((function(e){return e()}));else D.config[e]=n,void 0!==ue[e]?ue[e].forEach((function(e){return e()})):t.indexOf(e)>-1&&(D.config[e]=c(n));D.redraw(),we(!0)},D.setDate=function(e,n,t){void 0===n&&(n=!1);void 0===t&&(t=D.config.dateFormat);if(0!==e&&!e||e instanceof Array&&0===e.length)return D.clear(n);fe(e,t),D.latestSelectedDateObj=D.selectedDates[D.selectedDates.length-1],D.redraw(),A(void 0,n),I(),0===D.selectedDates.length&&D.clear(!1);we(n),n&&ge("onChange")},D.toggle=function(e){if(!0===D.isOpen)return D.close();D.open(e)};var ue={locale:[re,$],showMonths:[U,x,q],minDate:[A],maxDate:[A]};function fe(e,n){var t=[];if(e instanceof Array)t=e.map((function(e){return D.parseDate(e,n)}));else if(e instanceof Date||"number"==typeof e)t=[D.parseDate(e,n)];else if("string"==typeof e)switch(D.config.mode){case"single":case"time":t=[D.parseDate(e,n)];break;case"multiple":t=e.split(D.config.conjunction).map((function(e){return D.parseDate(e,n)}));break;case"range":t=e.split(D.l10n.rangeSeparator).map((function(e){return D.parseDate(e,n)}))}else D.config.errorHandler(new Error("Invalid date supplied: "+JSON.stringify(e)));D.selectedDates=D.config.allowInvalidPreload?t:t.filter((function(e){return e instanceof Date&&Q(e,!1)})),"range"===D.config.mode&&D.selectedDates.sort((function(e,n){return e.getTime()-n.getTime()}))}function me(e){return e.slice().map((function(e){return"string"==typeof e||"number"==typeof e||e instanceof Date?D.parseDate(e,void 0,!0):e&&"object"==typeof e&&e.from&&e.to?{from:D.parseDate(e.from,void 0),to:D.parseDate(e.to,void 0)}:e})).filter((function(e){return e}))}function ge(e,n){if(void 0!==D.config){var t=D.config[e];if(void 0!==t&&t.length>0)for(var a=0;t[a]&&a1||"static"===D.config.monthSelectorType?D.monthElements[n].textContent=p(t.getMonth(),D.config.shorthandCurrentMonth,D.l10n)+" ":D.monthsDropdownContainer.value=t.getMonth().toString(),e.value=t.getFullYear().toString()})),D._hidePrevMonthArrow=void 0!==D.config.minDate&&(D.currentYear===D.config.minDate.getFullYear()?D.currentMonth<=D.config.minDate.getMonth():D.currentYearD.config.maxDate.getMonth():D.currentYear>D.config.maxDate.getFullYear()))}function De(e){return D.selectedDates.map((function(n){return D.formatDate(n,e)})).filter((function(e,n,t){return"range"!==D.config.mode||D.config.enableTime||t.indexOf(e)===n})).join("range"!==D.config.mode?D.config.conjunction:D.l10n.rangeSeparator)}function we(e){void 0===e&&(e=!0),void 0!==D.mobileInput&&D.mobileFormatStr&&(D.mobileInput.value=void 0!==D.latestSelectedDateObj?D.formatDate(D.latestSelectedDateObj,D.mobileFormatStr):""),D.input.value=De(D.config.dateFormat),void 0!==D.altInput&&(D.altInput.value=De(D.config.altFormat)),!1!==e&&ge("onValueUpdate")}function be(e){var n=m(e),t=D.prevMonthNav.contains(n),a=D.nextMonthNav.contains(n);t||a?z(t?-1:1):D.yearElements.indexOf(n)>=0?n.select():n.classList.contains("arrowUp")?D.changeYear(D.currentYear+1):n.classList.contains("arrowDown")&&D.changeYear(D.currentYear-1)}return function(){D.element=D.input=g,D.isOpen=!1,function(){var n=["wrap","weekNumbers","allowInput","allowInvalidPreload","clickOpens","time_24hr","enableTime","noCalendar","altInput","shorthandCurrentMonth","inline","static","enableSeconds","disableMobile"],i=e(e({},JSON.parse(JSON.stringify(g.dataset||{}))),h),o={};D.config.parseDate=i.parseDate,D.config.formatDate=i.formatDate,Object.defineProperty(D.config,"enable",{get:function(){return D.config._enable},set:function(e){D.config._enable=me(e)}}),Object.defineProperty(D.config,"disable",{get:function(){return D.config._disable},set:function(e){D.config._disable=me(e)}});var r="time"===i.mode;if(!i.dateFormat&&(i.enableTime||r)){var l=E.defaultConfig.dateFormat||a.dateFormat;o.dateFormat=i.noCalendar||r?"H:i"+(i.enableSeconds?":S":""):l+" H:i"+(i.enableSeconds?":S":"")}if(i.altInput&&(i.enableTime||r)&&!i.altFormat){var d=E.defaultConfig.altFormat||a.altFormat;o.altFormat=i.noCalendar||r?"h:i"+(i.enableSeconds?":S K":" K"):d+" h:i"+(i.enableSeconds?":S":"")+" K"}Object.defineProperty(D.config,"minDate",{get:function(){return D.config._minDate},set:ie("min")}),Object.defineProperty(D.config,"maxDate",{get:function(){return D.config._maxDate},set:ie("max")});var s=function(e){return function(n){D.config["min"===e?"_minTime":"_maxTime"]=D.parseDate(n,"H:i:S")}};Object.defineProperty(D.config,"minTime",{get:function(){return D.config._minTime},set:s("min")}),Object.defineProperty(D.config,"maxTime",{get:function(){return D.config._maxTime},set:s("max")}),"time"===i.mode&&(D.config.noCalendar=!0,D.config.enableTime=!0);Object.assign(D.config,o,i);for(var u=0;u-1?D.config[m]=c(f[m]).map(y).concat(D.config[m]):void 0===i[m]&&(D.config[m]=f[m])}i.altInputClass||(D.config.altInputClass=oe().className+" "+D.config.altInputClass);ge("onParseConfig")}(),re(),function(){if(D.input=oe(),!D.input)return void D.config.errorHandler(new Error("Invalid input element specified"));D.input._type=D.input.type,D.input.type="text",D.input.classList.add("flatpickr-input"),D._input=D.input,D.config.altInput&&(D.altInput=s(D.input.nodeName,D.config.altInputClass),D._input=D.altInput,D.altInput.placeholder=D.input.placeholder,D.altInput.disabled=D.input.disabled,D.altInput.required=D.input.required,D.altInput.tabIndex=D.input.tabIndex,D.altInput.type="text",D.input.setAttribute("type","hidden"),!D.config.static&&D.input.parentNode&&D.input.parentNode.insertBefore(D.altInput,D.input.nextSibling));D.config.allowInput||D._input.setAttribute("readonly","readonly");D._positionElement=D.config.positionElement||D._input}(),function(){D.selectedDates=[],D.now=D.parseDate(D.config.now)||new Date;var e=D.config.defaultDate||("INPUT"!==D.input.nodeName&&"TEXTAREA"!==D.input.nodeName||!D.input.placeholder||D.input.value!==D.input.placeholder?D.input.value:null);e&&fe(e,D.config.dateFormat);D._initialDate=D.selectedDates.length>0?D.selectedDates[0]:D.config.minDate&&D.config.minDate.getTime()>D.now.getTime()?D.config.minDate:D.config.maxDate&&D.config.maxDate.getTime()0&&(D.latestSelectedDateObj=D.selectedDates[0]);void 0!==D.config.minTime&&(D.config.minTime=D.parseDate(D.config.minTime,"H:i"));void 0!==D.config.maxTime&&(D.config.maxTime=D.parseDate(D.config.maxTime,"H:i"));D.minDateHasTime=!!D.config.minDate&&(D.config.minDate.getHours()>0||D.config.minDate.getMinutes()>0||D.config.minDate.getSeconds()>0),D.maxDateHasTime=!!D.config.maxDate&&(D.config.maxDate.getHours()>0||D.config.maxDate.getMinutes()>0||D.config.maxDate.getSeconds()>0)}(),D.utils={getDaysInMonth:function(e,n){return void 0===e&&(e=D.currentMonth),void 0===n&&(n=D.currentYear),1===e&&(n%4==0&&n%100!=0||n%400==0)?29:D.l10n.daysInMonth[e]}},D.isMobile||function(){var e=window.document.createDocumentFragment();if(D.calendarContainer=s("div","flatpickr-calendar"),D.calendarContainer.tabIndex=-1,!D.config.noCalendar){if(e.appendChild((D.monthNav=s("div","flatpickr-months"),D.yearElements=[],D.monthElements=[],D.prevMonthNav=s("span","flatpickr-prev-month"),D.prevMonthNav.innerHTML=D.config.prevArrow,D.nextMonthNav=s("span","flatpickr-next-month"),D.nextMonthNav.innerHTML=D.config.nextArrow,U(),Object.defineProperty(D,"_hidePrevMonthArrow",{get:function(){return D.__hidePrevMonthArrow},set:function(e){D.__hidePrevMonthArrow!==e&&(d(D.prevMonthNav,"flatpickr-disabled",e),D.__hidePrevMonthArrow=e)}}),Object.defineProperty(D,"_hideNextMonthArrow",{get:function(){return D.__hideNextMonthArrow},set:function(e){D.__hideNextMonthArrow!==e&&(d(D.nextMonthNav,"flatpickr-disabled",e),D.__hideNextMonthArrow=e)}}),D.currentYearElement=D.yearElements[0],ve(),D.monthNav)),D.innerContainer=s("div","flatpickr-innerContainer"),D.config.weekNumbers){var n=function(){D.calendarContainer.classList.add("hasWeeks");var e=s("div","flatpickr-weekwrapper");e.appendChild(s("span","flatpickr-weekday",D.l10n.weekAbbreviation));var n=s("div","flatpickr-weeks");return e.appendChild(n),{weekWrapper:e,weekNumbers:n}}(),t=n.weekWrapper,a=n.weekNumbers;D.innerContainer.appendChild(t),D.weekNumbers=a,D.weekWrapper=t}D.rContainer=s("div","flatpickr-rContainer"),D.rContainer.appendChild(q()),D.daysContainer||(D.daysContainer=s("div","flatpickr-days"),D.daysContainer.tabIndex=-1),B(),D.rContainer.appendChild(D.daysContainer),D.innerContainer.appendChild(D.rContainer),e.appendChild(D.innerContainer)}D.config.enableTime&&e.appendChild(function(){D.calendarContainer.classList.add("hasTime"),D.config.noCalendar&&D.calendarContainer.classList.add("noCalendar");D.timeContainer=s("div","flatpickr-time"),D.timeContainer.tabIndex=-1;var e=s("span","flatpickr-time-separator",":"),n=f("flatpickr-hour",{"aria-label":D.l10n.hourAriaLabel});D.hourElement=n.getElementsByTagName("input")[0];var t=f("flatpickr-minute",{"aria-label":D.l10n.minuteAriaLabel});D.minuteElement=t.getElementsByTagName("input")[0],D.hourElement.tabIndex=D.minuteElement.tabIndex=-1,D.hourElement.value=o(D.latestSelectedDateObj?D.latestSelectedDateObj.getHours():D.config.time_24hr?D.config.defaultHour:function(e){switch(e%24){case 0:case 12:return 12;default:return e%12}}(D.config.defaultHour)),D.minuteElement.value=o(D.latestSelectedDateObj?D.latestSelectedDateObj.getMinutes():D.config.defaultMinute),D.hourElement.setAttribute("step",D.config.hourIncrement.toString()),D.minuteElement.setAttribute("step",D.config.minuteIncrement.toString()),D.hourElement.setAttribute("min",D.config.time_24hr?"0":"1"),D.hourElement.setAttribute("max",D.config.time_24hr?"23":"12"),D.minuteElement.setAttribute("min","0"),D.minuteElement.setAttribute("max","59"),D.timeContainer.appendChild(n),D.timeContainer.appendChild(e),D.timeContainer.appendChild(t),D.config.time_24hr&&D.timeContainer.classList.add("time24hr");if(D.config.enableSeconds){D.timeContainer.classList.add("hasSeconds");var a=f("flatpickr-second");D.secondElement=a.getElementsByTagName("input")[0],D.secondElement.value=o(D.latestSelectedDateObj?D.latestSelectedDateObj.getSeconds():D.config.defaultSeconds),D.secondElement.setAttribute("step",D.minuteElement.getAttribute("step")),D.secondElement.setAttribute("min","0"),D.secondElement.setAttribute("max","59"),D.timeContainer.appendChild(s("span","flatpickr-time-separator",":")),D.timeContainer.appendChild(a)}D.config.time_24hr||(D.amPM=s("span","flatpickr-am-pm",D.l10n.amPM[r((D.latestSelectedDateObj?D.hourElement.value:D.config.defaultHour)>11)]),D.amPM.title=D.l10n.toggleTitle,D.amPM.tabIndex=-1,D.timeContainer.appendChild(D.amPM));return D.timeContainer}());d(D.calendarContainer,"rangeMode","range"===D.config.mode),d(D.calendarContainer,"animate",!0===D.config.animate),d(D.calendarContainer,"multiMonth",D.config.showMonths>1),D.calendarContainer.appendChild(e);var i=void 0!==D.config.appendTo&&void 0!==D.config.appendTo.nodeType;if((D.config.inline||D.config.static)&&(D.calendarContainer.classList.add(D.config.inline?"inline":"static"),D.config.inline&&(!i&&D.element.parentNode?D.element.parentNode.insertBefore(D.calendarContainer,D._input.nextSibling):void 0!==D.config.appendTo&&D.config.appendTo.appendChild(D.calendarContainer)),D.config.static)){var l=s("div","flatpickr-wrapper");D.element.parentNode&&D.element.parentNode.insertBefore(l,D.element),l.appendChild(D.element),D.altInput&&l.appendChild(D.altInput),l.appendChild(D.calendarContainer)}D.config.static||D.config.inline||(void 0!==D.config.appendTo?D.config.appendTo:window.document.body).appendChild(D.calendarContainer)}(),function(){D.config.wrap&&["open","close","toggle","clear"].forEach((function(e){Array.prototype.forEach.call(D.element.querySelectorAll("[data-"+e+"]"),(function(n){return F(n,"click",D[e])}))}));if(D.isMobile)return void function(){var e=D.config.enableTime?D.config.noCalendar?"time":"datetime-local":"date";D.mobileInput=s("input",D.input.className+" flatpickr-mobile"),D.mobileInput.tabIndex=1,D.mobileInput.type=e,D.mobileInput.disabled=D.input.disabled,D.mobileInput.required=D.input.required,D.mobileInput.placeholder=D.input.placeholder,D.mobileFormatStr="datetime-local"===e?"Y-m-d\\TH:i:S":"date"===e?"Y-m-d":"H:i:S",D.selectedDates.length>0&&(D.mobileInput.defaultValue=D.mobileInput.value=D.formatDate(D.selectedDates[0],D.mobileFormatStr));D.config.minDate&&(D.mobileInput.min=D.formatDate(D.config.minDate,"Y-m-d"));D.config.maxDate&&(D.mobileInput.max=D.formatDate(D.config.maxDate,"Y-m-d"));D.input.getAttribute("step")&&(D.mobileInput.step=String(D.input.getAttribute("step")));D.input.type="hidden",void 0!==D.altInput&&(D.altInput.type="hidden");try{D.input.parentNode&&D.input.parentNode.insertBefore(D.mobileInput,D.input.nextSibling)}catch(e){}F(D.mobileInput,"change",(function(e){D.setDate(m(e).value,!1,D.mobileFormatStr),ge("onChange"),ge("onClose")}))}();var e=l(ae,50);D._debouncedChange=l(N,300),D.daysContainer&&!/iPhone|iPad|iPod/i.test(navigator.userAgent)&&F(D.daysContainer,"mouseover",(function(e){"range"===D.config.mode&&te(m(e))}));F(window.document.body,"keydown",ne),D.config.inline||D.config.static||F(window,"resize",e);void 0!==window.ontouchstart?F(window.document,"touchstart",V):F(window.document,"click",V);F(window.document,"focus",V,{capture:!0}),!0===D.config.clickOpens&&(F(D._input,"focus",D.open),F(D._input,"click",D.open));void 0!==D.daysContainer&&(F(D.monthNav,"click",be),F(D.monthNav,["keyup","increment"],O),F(D.daysContainer,"click",se));if(void 0!==D.timeContainer&&void 0!==D.minuteElement&&void 0!==D.hourElement){F(D.timeContainer,["increment"],k),F(D.timeContainer,"blur",k,{capture:!0}),F(D.timeContainer,"click",P),F([D.hourElement,D.minuteElement],["focus","click"],(function(e){return m(e).select()})),void 0!==D.secondElement&&F(D.secondElement,"focus",(function(){return D.secondElement&&D.secondElement.select()})),void 0!==D.amPM&&F(D.amPM,"click",(function(e){k(e),N()}))}D.config.allowInput&&F(D._input,"blur",ee)}(),(D.selectedDates.length||D.config.noCalendar)&&(D.config.enableTime&&I(D.config.noCalendar?D.latestSelectedDateObj||D.config.minDate:void 0),we(!1)),x();var n=/^((?!chrome|android).)*safari/i.test(navigator.userAgent);!D.isMobile&&n&&le(),ge("onReady")}(),D}function x(e,n){for(var t=Array.prototype.slice.call(e).filter((function(e){return e instanceof HTMLElement})),a=[],i=0;i29->1342", - "default.handlebars->29->1344" + "default.handlebars->29->1347", + "default.handlebars->29->1349" ] }, { @@ -204,7 +204,7 @@ "zh-chs": " 可以使用密码提示,但不建议使用。", "zh-cht": " 可以使用密碼提示,但不建議使用。", "xloc": [ - "default.handlebars->29->1255" + "default.handlebars->29->1260" ] }, { @@ -224,8 +224,8 @@ "zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。", "zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。", "xloc": [ - "default.handlebars->29->1415", - "default.handlebars->29->1877" + "default.handlebars->29->1420", + "default.handlebars->29->1882" ] }, { @@ -395,7 +395,7 @@ "zh-chs": "(可选的)", "zh-cht": "(可選的)", "xloc": [ - "default.handlebars->29->339" + "default.handlebars->29->340" ] }, { @@ -419,8 +419,8 @@ "en": "* 8 characters, 1 upper, 1 lower, 1 numeric, 1 non-alpha numeric.", "nl": "* 8 karakters, 1 hoofdletter, 1 normale letter, 1 nummeriek, 1 niet alfanumeriek.", "xloc": [ - "default.handlebars->29->1384", - "default.handlebars->29->305" + "default.handlebars->29->1389", + "default.handlebars->29->306" ] }, { @@ -440,7 +440,7 @@ "zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。", "zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。", "xloc": [ - "default.handlebars->29->378" + "default.handlebars->29->379" ] }, { @@ -495,7 +495,7 @@ "zh-cht": ",", "xloc": [ "default-mobile.handlebars->9->467", - "default.handlebars->29->1485" + "default.handlebars->29->1490" ] }, { @@ -516,7 +516,7 @@ "zh-cht": ",只適用於Intel®AMT", "xloc": [ "default-mobile.handlebars->9->147", - "default.handlebars->29->206" + "default.handlebars->29->207" ] }, { @@ -536,7 +536,7 @@ "zh-chs": ",MQTT在线", "zh-cht": ",MQTT在線", "xloc": [ - "default.handlebars->29->997" + "default.handlebars->29->1002" ] }, { @@ -556,8 +556,8 @@ "zh-chs": ",软体KVM", "zh-cht": ",軟體KVM", "xloc": [ - "default.handlebars->29->821", - "desktop.handlebars->3->13" + "default.handlebars->29->826", + "desktop.handlebars->3->12" ] }, { @@ -579,10 +579,10 @@ "xloc": [ "default-mobile.handlebars->9->296", "default-mobile.handlebars->9->305", - "default.handlebars->29->828", - "default.handlebars->29->861", - "default.handlebars->29->873", - "desktop.handlebars->3->20", + "default.handlebars->29->833", + "default.handlebars->29->866", + "default.handlebars->29->878", + "desktop.handlebars->3->19", "xterm.handlebars->9->6" ] }, @@ -702,8 +702,8 @@ "zh-chs": ",{0}观看", "zh-cht": ",{0}觀看", "xloc": [ - "default.handlebars->29->822", - "desktop.handlebars->3->14" + "default.handlebars->29->827", + "desktop.handlebars->3->13" ] }, { @@ -767,9 +767,9 @@ "xloc": [ "default-mobile.handlebars->9->108", "default-mobile.handlebars->9->307", - "default.handlebars->29->1526", - "default.handlebars->29->2034", - "default.handlebars->29->878" + "default.handlebars->29->1531", + "default.handlebars->29->2039", + "default.handlebars->29->883" ] }, { @@ -825,7 +825,7 @@ "zh-chs": "1个活跃时段", "zh-cht": "1個活躍時段", "xloc": [ - "default.handlebars->29->1946" + "default.handlebars->29->1951" ] }, { @@ -847,7 +847,7 @@ "xloc": [ "default-mobile.handlebars->9->118", "default-mobile.handlebars->9->471", - "default.handlebars->29->1550", + "default.handlebars->29->1555", "download.handlebars->3->1", "download2.handlebars->5->1" ] @@ -869,8 +869,8 @@ "zh-chs": "1条连接", "zh-cht": "1位聯絡文", "xloc": [ - "default.handlebars->29->824", - "desktop.handlebars->3->16" + "default.handlebars->29->829", + "desktop.handlebars->3->15" ] }, { @@ -891,8 +891,8 @@ "zh-cht": "1天", "xloc": [ "default.handlebars->29->181", - "default.handlebars->29->330", - "default.handlebars->29->344" + "default.handlebars->29->331", + "default.handlebars->29->345" ] }, { @@ -912,7 +912,7 @@ "zh-chs": "1组", "zh-cht": "1群", "xloc": [ - "default.handlebars->29->1911" + "default.handlebars->29->1916" ] }, { @@ -933,8 +933,8 @@ "zh-cht": "1小時", "xloc": [ "default.handlebars->29->179", - "default.handlebars->29->328", - "default.handlebars->29->342" + "default.handlebars->29->329", + "default.handlebars->29->343" ] }, { @@ -954,7 +954,7 @@ "zh-chs": "1分钟", "zh-cht": "1分鐘", "xloc": [ - "default.handlebars->29->713" + "default.handlebars->29->714" ] }, { @@ -995,8 +995,8 @@ "zh-cht": "1個月", "xloc": [ "default.handlebars->29->183", - "default.handlebars->29->332", - "default.handlebars->29->346" + "default.handlebars->29->333", + "default.handlebars->29->347" ] }, { @@ -1016,7 +1016,7 @@ "zh-chs": "有1个用户没有显示,请使用搜索框查找用户...", "zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...", "xloc": [ - "default.handlebars->29->1701" + "default.handlebars->29->1706" ] }, { @@ -1036,7 +1036,7 @@ "zh-chs": "1个节点", "zh-cht": "1個節點", "xloc": [ - "default.handlebars->29->398" + "default.handlebars->29->399" ] }, { @@ -1082,13 +1082,13 @@ "default-mobile.handlebars->9->172", "default-mobile.handlebars->9->175", "default-mobile.handlebars->9->178", - "default.handlebars->29->1705", - "default.handlebars->29->250", - "default.handlebars->29->253", - "default.handlebars->29->256", - "default.handlebars->29->259", - "default.handlebars->29->262", - "default.handlebars->29->265" + "default.handlebars->29->1710", + "default.handlebars->29->251", + "default.handlebars->29->254", + "default.handlebars->29->257", + "default.handlebars->29->260", + "default.handlebars->29->263", + "default.handlebars->29->266" ] }, { @@ -1109,8 +1109,8 @@ "zh-cht": "1週", "xloc": [ "default.handlebars->29->182", - "default.handlebars->29->331", - "default.handlebars->29->345" + "default.handlebars->29->332", + "default.handlebars->29->346" ] }, { @@ -1214,7 +1214,7 @@ "zh-chs": "10分钟", "zh-cht": "10分鐘", "xloc": [ - "default.handlebars->29->715" + "default.handlebars->29->716" ] }, { @@ -1283,7 +1283,7 @@ "en": "12 hours", "nl": "12 uur", "xloc": [ - "default.handlebars->29->723" + "default.handlebars->29->724" ] }, { @@ -1325,28 +1325,28 @@ "zh-chs": "15分钟", "zh-cht": "15分鐘", "xloc": [ - "default.handlebars->29->716" + "default.handlebars->29->717" ] }, { "en": "16 hours", "nl": "16 uur", "xloc": [ - "default.handlebars->29->724" + "default.handlebars->29->725" ] }, { "en": "2 days", "nl": "2 dagen", "xloc": [ - "default.handlebars->29->726" + "default.handlebars->29->727" ] }, { "en": "2 hours", "nl": "2 uur", "xloc": [ - "default.handlebars->29->720" + "default.handlebars->29->721" ] }, { @@ -1437,7 +1437,7 @@ "en": "24 hours", "nl": "24 uur", "xloc": [ - "default.handlebars->29->725" + "default.handlebars->29->726" ] }, { @@ -1499,7 +1499,7 @@ "zh-chs": "2FA备份代码已清除", "zh-cht": "2FA備份代碼已清除", "xloc": [ - "default.handlebars->29->1661" + "default.handlebars->29->1666" ] }, { @@ -1519,8 +1519,8 @@ "zh-chs": "启用第二因素身份验证", "zh-cht": "啟用第二因素身份驗證", "xloc": [ - "default.handlebars->29->1718", - "default.handlebars->29->1933" + "default.handlebars->29->1723", + "default.handlebars->29->1938" ] }, { @@ -1639,7 +1639,7 @@ "zh-chs": "30分钟", "zh-cht": "30分鐘", "xloc": [ - "default.handlebars->29->717" + "default.handlebars->29->718" ] }, { @@ -1659,8 +1659,8 @@ "zh-chs": "MeshAgent的32位版本", "zh-cht": "MeshAgent的32位版本", "xloc": [ - "default.handlebars->29->368", - "default.handlebars->29->385" + "default.handlebars->29->369", + "default.handlebars->29->386" ] }, { @@ -1689,14 +1689,14 @@ "en": "4 days", "nl": "4 dagen", "xloc": [ - "default.handlebars->29->727" + "default.handlebars->29->728" ] }, { "en": "4 hours", "nl": "4 uur", "xloc": [ - "default.handlebars->29->721" + "default.handlebars->29->722" ] }, { @@ -1779,7 +1779,7 @@ "zh-chs": "45分钟", "zh-cht": "45分鐘", "xloc": [ - "default.handlebars->29->718" + "default.handlebars->29->719" ] }, { @@ -1819,7 +1819,7 @@ "zh-chs": "5分钟", "zh-cht": "5分鐘", "xloc": [ - "default.handlebars->29->714" + "default.handlebars->29->715" ] }, { @@ -1932,7 +1932,7 @@ "en": "60 minutes", "nl": "60 minuten", "xloc": [ - "default.handlebars->29->719" + "default.handlebars->29->720" ] }, { @@ -1974,7 +1974,7 @@ "zh-chs": "64位版本的macOS Mesh Agent", "zh-cht": "64位版本的macOS Mesh Agent", "xloc": [ - "default.handlebars->29->381" + "default.handlebars->29->382" ] }, { @@ -1994,8 +1994,8 @@ "zh-chs": "MeshAgent的64位版本", "zh-cht": "MeshAgent的64位版本", "xloc": [ - "default.handlebars->29->372", - "default.handlebars->29->388" + "default.handlebars->29->373", + "default.handlebars->29->389" ] }, { @@ -2052,7 +2052,7 @@ "zh-chs": "7天电源状态", "zh-cht": "7天電源狀態", "xloc": [ - "default.handlebars->29->754" + "default.handlebars->29->759" ] }, { @@ -2115,9 +2115,9 @@ "zh-chs": "8小時", "zh-cht": "8小時", "xloc": [ - "default.handlebars->29->329", - "default.handlebars->29->343", - "default.handlebars->29->722" + "default.handlebars->29->330", + "default.handlebars->29->344", + "default.handlebars->29->723" ] }, { @@ -2335,8 +2335,8 @@ "zh-cht": "ACM", "xloc": [ "default-mobile.handlebars->9->236", - "default.handlebars->29->1358", - "default.handlebars->29->560" + "default.handlebars->29->1363", + "default.handlebars->29->561" ] }, { @@ -2356,8 +2356,8 @@ "zh-chs": "AMT", "zh-cht": "AMT", "xloc": [ - "default.handlebars->29->217", - "default.handlebars->29->426" + "default.handlebars->29->218", + "default.handlebars->29->427" ] }, { @@ -2461,7 +2461,7 @@ "zh-chs": "拒绝访问", "zh-cht": "拒絕存取", "xloc": [ - "default.handlebars->29->998" + "default.handlebars->29->1003" ] }, { @@ -2503,7 +2503,7 @@ "zh-chs": "访问服务器档案", "zh-cht": "存取伺服器檔案", "xloc": [ - "default.handlebars->29->1883" + "default.handlebars->29->1888" ] }, { @@ -2592,10 +2592,10 @@ "default-mobile.handlebars->9->93", "default-mobile.handlebars->9->95", "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0", - "default.handlebars->29->1264", - "default.handlebars->29->1266", - "default.handlebars->29->529", - "default.handlebars->29->531" + "default.handlebars->29->1269", + "default.handlebars->29->1271", + "default.handlebars->29->530", + "default.handlebars->29->532" ] }, { @@ -2656,7 +2656,7 @@ "zh-chs": "帐户已更改:{0}", "zh-cht": "帳戶已更改:{0}", "xloc": [ - "default.handlebars->29->1634" + "default.handlebars->29->1639" ] }, { @@ -2676,7 +2676,7 @@ "zh-chs": "创建帐户,电子邮件为{0}", "zh-cht": "創建帳戶,電子郵件為{0}", "xloc": [ - "default.handlebars->29->1633" + "default.handlebars->29->1638" ] }, { @@ -2696,7 +2696,7 @@ "zh-chs": "创建帐户,用户名是{0}", "zh-cht": "帳戶已創建,用戶名是{0}", "xloc": [ - "default.handlebars->29->1632" + "default.handlebars->29->1637" ] }, { @@ -2716,8 +2716,8 @@ "zh-chs": "帐户已被锁定", "zh-cht": "帳戶已被鎖定", "xloc": [ - "default.handlebars->29->1720", - "default.handlebars->29->1880" + "default.handlebars->29->1725", + "default.handlebars->29->1885" ] }, { @@ -2781,7 +2781,7 @@ "zh-chs": "帐号登录", "zh-cht": "帳號登錄", "xloc": [ - "default.handlebars->29->1569" + "default.handlebars->29->1574" ] }, { @@ -2801,7 +2801,7 @@ "zh-chs": "帐户登出", "zh-cht": "帳戶登出", "xloc": [ - "default.handlebars->29->1570" + "default.handlebars->29->1575" ] }, { @@ -2843,7 +2843,7 @@ "zh-chs": "帐户密码已更改:{0}", "zh-cht": "帳戶密碼已更改:{0}", "xloc": [ - "default.handlebars->29->1642" + "default.handlebars->29->1647" ] }, { @@ -2863,7 +2863,7 @@ "zh-chs": "帐户已删除", "zh-cht": "帳戶已刪除", "xloc": [ - "default.handlebars->29->1631" + "default.handlebars->29->1636" ] }, { @@ -2903,7 +2903,7 @@ "zh-chs": "指令", "zh-cht": "指令", "xloc": [ - "default.handlebars->29->1003", + "default.handlebars->29->1008", "default.handlebars->container->column_l->p42->p42tbl->1->0->8" ] }, @@ -2924,8 +2924,8 @@ "zh-chs": "动作档案", "zh-cht": "動作檔案", "xloc": [ - "default.handlebars->29->797", - "default.handlebars->29->799" + "default.handlebars->29->802", + "default.handlebars->29->804" ] }, { @@ -2948,7 +2948,7 @@ "default-mobile.handlebars->9->259", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1", - "default.handlebars->29->608", + "default.handlebars->29->609", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -2958,7 +2958,7 @@ "en": "Activate Intel® AMT in Admin Control Mode (ACM) using a FAT formated USB key. Place setup.bin on it and boot one or more computers with this key.", "nl": "Activeer Intel® AMT in Admin Control Mode (ACM) gebruikmakend van een FAT geformateerde USB sleutel. Plaats setup.bin erop en start een of meer computers met deze sleutel.", "xloc": [ - "default.handlebars->29->300" + "default.handlebars->29->301" ] }, { @@ -3021,9 +3021,9 @@ "default-mobile.handlebars->9->231", "default-mobile.handlebars->9->233", "default-mobile.handlebars->9->370", - "default.handlebars->29->553", - "default.handlebars->29->555", - "default.handlebars->29->959" + "default.handlebars->29->554", + "default.handlebars->29->556", + "default.handlebars->29->964" ] }, { @@ -3043,14 +3043,14 @@ "zh-chs": "激活", "zh-cht": "啟動", "xloc": [ - "default.handlebars->29->202" + "default.handlebars->29->203" ] }, { "en": "Active Device Sharing", "nl": "Actief delen van apparaten", "xloc": [ - "default.handlebars->29->661" + "default.handlebars->29->662" ] }, { @@ -3070,7 +3070,7 @@ "zh-chs": "活跃用户{0}", "zh-cht": "活躍用戶{0}", "xloc": [ - "default.handlebars->29->583" + "default.handlebars->29->584" ] }, { @@ -3090,8 +3090,8 @@ "zh-chs": "添加代理", "zh-cht": "新增代理", "xloc": [ - "default.handlebars->29->1354", - "default.handlebars->29->283" + "default.handlebars->29->1359", + "default.handlebars->29->284" ] }, { @@ -3128,8 +3128,8 @@ "zh-chs": "添加设备", "zh-cht": "新增裝置", "xloc": [ - "default.handlebars->29->1857", - "default.handlebars->29->1981" + "default.handlebars->29->1862", + "default.handlebars->29->1986" ] }, { @@ -3149,7 +3149,7 @@ "zh-chs": "添加设备日志", "zh-cht": "新增裝置日誌", "xloc": [ - "default.handlebars->29->703" + "default.handlebars->29->704" ] }, { @@ -3169,10 +3169,10 @@ "zh-chs": "添加设备组", "zh-cht": "新增裝置群", "xloc": [ - "default.handlebars->29->1449", - "default.handlebars->29->1851", - "default.handlebars->29->1969", - "default.handlebars->29->237" + "default.handlebars->29->1454", + "default.handlebars->29->1856", + "default.handlebars->29->1974", + "default.handlebars->29->238" ] }, { @@ -3192,7 +3192,7 @@ "zh-chs": "添加设备组权限", "zh-cht": "新增裝置群權限", "xloc": [ - "default.handlebars->29->1446" + "default.handlebars->29->1451" ] }, { @@ -3212,8 +3212,8 @@ "zh-chs": "添加设备权限", "zh-cht": "新增裝置權限", "xloc": [ - "default.handlebars->29->1451", - "default.handlebars->29->1453" + "default.handlebars->29->1456", + "default.handlebars->29->1458" ] }, { @@ -3250,7 +3250,7 @@ "zh-chs": "添加英特尔®AMT设备", "zh-cht": "新增Intel® AMT裝置", "xloc": [ - "default.handlebars->29->296" + "default.handlebars->29->297" ] }, { @@ -3290,7 +3290,7 @@ "zh-chs": "添加本地", "zh-cht": "新增本地", "xloc": [ - "default.handlebars->29->277" + "default.handlebars->29->278" ] }, { @@ -3310,7 +3310,7 @@ "zh-chs": "添加成员身份", "zh-cht": "新增成員身份", "xloc": [ - "default.handlebars->29->2001" + "default.handlebars->29->2006" ] }, { @@ -3330,7 +3330,7 @@ "zh-chs": "添加 Mesh Agent", "zh-cht": "新增 Mesh Agent", "xloc": [ - "default.handlebars->29->397" + "default.handlebars->29->398" ] }, { @@ -3350,8 +3350,8 @@ "zh-chs": "添加安全密钥", "zh-cht": "新增安全密鑰", "xloc": [ - "default.handlebars->29->1031", - "default.handlebars->29->1032", + "default.handlebars->29->1036", + "default.handlebars->29->1037", "default.handlebars->29->149", "default.handlebars->29->151", "default.handlebars->29->154", @@ -3376,7 +3376,7 @@ "zh-cht": "新增用戶", "xloc": [ "default-mobile.handlebars->9->412", - "default.handlebars->29->653" + "default.handlebars->29->654" ] }, { @@ -3396,7 +3396,7 @@ "zh-chs": "添加用户设备权限", "zh-cht": "新增用戶裝置權限", "xloc": [ - "default.handlebars->29->1456" + "default.handlebars->29->1461" ] }, { @@ -3416,10 +3416,10 @@ "zh-chs": "添加用户组", "zh-cht": "新增用戶群", "xloc": [ - "default.handlebars->29->1350", - "default.handlebars->29->1448", - "default.handlebars->29->1975", - "default.handlebars->29->654" + "default.handlebars->29->1355", + "default.handlebars->29->1453", + "default.handlebars->29->1980", + "default.handlebars->29->655" ] }, { @@ -3439,7 +3439,7 @@ "zh-chs": "添加用户组设备权限", "zh-cht": "新增用戶群裝置權限", "xloc": [ - "default.handlebars->29->1458" + "default.handlebars->29->1463" ] }, { @@ -3496,8 +3496,8 @@ "zh-chs": "添加用户", "zh-cht": "新增用戶", "xloc": [ - "default.handlebars->29->1349", - "default.handlebars->29->1846" + "default.handlebars->29->1354", + "default.handlebars->29->1851" ] }, { @@ -3517,7 +3517,7 @@ "zh-chs": "将用户添加到设备组", "zh-cht": "將用戶新增到裝置群", "xloc": [ - "default.handlebars->29->1445" + "default.handlebars->29->1450" ] }, { @@ -3537,7 +3537,7 @@ "zh-chs": "将用户添加到用户组", "zh-cht": "將用戶新增到用戶群", "xloc": [ - "default.handlebars->29->1879" + "default.handlebars->29->1884" ] }, { @@ -3577,7 +3577,7 @@ "zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。", "zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。", "xloc": [ - "default.handlebars->29->278" + "default.handlebars->29->279" ] }, { @@ -3614,7 +3614,7 @@ "zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。", "zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。", "xloc": [ - "default.handlebars->29->276" + "default.handlebars->29->277" ] }, { @@ -3634,7 +3634,7 @@ "zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。", "zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。", "xloc": [ - "default.handlebars->29->286" + "default.handlebars->29->287" ] }, { @@ -3654,8 +3654,8 @@ "zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。", "zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。", "xloc": [ - "default.handlebars->29->1353", - "default.handlebars->29->282" + "default.handlebars->29->1358", + "default.handlebars->29->283" ] }, { @@ -3675,14 +3675,14 @@ "zh-chs": "添加标签", "zh-cht": "新增標籤", "xloc": [ - "default.handlebars->29->462" + "default.handlebars->29->463" ] }, { "en": "Add, activate and configure Intel® AMT to group \\\"{0}\\\" by periodically running MeshCmd as administrator on the remote device.", "nl": "Voeg toe, activeer en configureer Intel® AMT aan groep \\\"{0}\\\" door MeshCmd periodiek uit te voeren als beheerder op het externe apparaat.", "xloc": [ - "default.handlebars->29->297" + "default.handlebars->29->298" ] }, { @@ -3702,14 +3702,14 @@ "zh-chs": "添加了身份验证应用程序", "zh-cht": "添加了身份驗證應用程序", "xloc": [ - "default.handlebars->29->1658" + "default.handlebars->29->1663" ] }, { "en": "Added device share {0} from {1} to {2}", "nl": "Apparaat delen {0} toegevoegd van {1} tot {2}", "xloc": [ - "default.handlebars->29->1669" + "default.handlebars->29->1674" ] }, { @@ -3729,8 +3729,8 @@ "zh-chs": "已将设备{0}添加到设备组{1}", "zh-cht": "已將設備{0}添加到設備組{1}", "xloc": [ - "default.handlebars->29->1625", - "default.handlebars->29->1652" + "default.handlebars->29->1630", + "default.handlebars->29->1657" ] }, { @@ -3750,7 +3750,7 @@ "zh-chs": "添加了安全密钥", "zh-cht": "添加了安全密鑰", "xloc": [ - "default.handlebars->29->1663" + "default.handlebars->29->1668" ] }, { @@ -3770,7 +3770,7 @@ "zh-chs": "已将用户组{0}添加到设备组{1}", "zh-cht": "已將用戶組{0}添加到設備組{1}", "xloc": [ - "default.handlebars->29->1636" + "default.handlebars->29->1641" ] }, { @@ -3790,8 +3790,8 @@ "zh-chs": "已将用户{0}添加到用户组{1}", "zh-cht": "已將用戶{0}添加到用戶組{1}", "xloc": [ - "default.handlebars->29->1639", - "default.handlebars->29->1648" + "default.handlebars->29->1644", + "default.handlebars->29->1653" ] }, { @@ -3811,7 +3811,7 @@ "zh-chs": "地址", "zh-cht": "地址", "xloc": [ - "default.handlebars->29->233" + "default.handlebars->29->234" ] }, { @@ -3852,7 +3852,7 @@ "zh-cht": "管理員控制模式(ACM)", "xloc": [ "default-mobile.handlebars->9->372", - "default.handlebars->29->961" + "default.handlebars->29->966" ] }, { @@ -3873,7 +3873,7 @@ "zh-cht": "管理員憑證", "xloc": [ "default-mobile.handlebars->9->378", - "default.handlebars->29->967" + "default.handlebars->29->972" ] }, { @@ -3914,7 +3914,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->29->1915" + "default.handlebars->29->1920" ] }, { @@ -3955,7 +3955,7 @@ "zh-chs": "管理领域", "zh-cht": "管理領域", "xloc": [ - "default.handlebars->29->1783" + "default.handlebars->29->1788" ] }, { @@ -3975,7 +3975,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->29->1712" + "default.handlebars->29->1717" ] }, { @@ -3995,7 +3995,7 @@ "zh-chs": "南非文", "zh-cht": "南非文", "xloc": [ - "default.handlebars->29->1034" + "default.handlebars->29->1039" ] }, { @@ -4018,10 +4018,10 @@ "default-mobile.handlebars->9->203", "default-mobile.handlebars->9->228", "default-mobile.handlebars->9->250", - "default.handlebars->29->1512", - "default.handlebars->29->1520", - "default.handlebars->29->213", - "default.handlebars->29->422", + "default.handlebars->29->1517", + "default.handlebars->29->1525", + "default.handlebars->29->214", + "default.handlebars->29->423", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1" ] }, @@ -4042,8 +4042,8 @@ "zh-chs": "代理+英特尔AMT", "zh-cht": "代理+Intel® AMT", "xloc": [ - "default.handlebars->29->1514", - "default.handlebars->29->1522" + "default.handlebars->29->1519", + "default.handlebars->29->1527" ] }, { @@ -4084,7 +4084,7 @@ "zh-cht": "代理控制台", "xloc": [ "default-mobile.handlebars->9->449", - "default.handlebars->29->1466" + "default.handlebars->29->1471" ] }, { @@ -4104,7 +4104,7 @@ "zh-chs": "代理错误计数器", "zh-cht": "代理錯誤計數器", "xloc": [ - "default.handlebars->29->2044" + "default.handlebars->29->2049" ] }, { @@ -4145,7 +4145,7 @@ "zh-cht": "代理訊息", "xloc": [ "default-mobile.handlebars->9->181", - "default.handlebars->29->268" + "default.handlebars->29->269" ] }, { @@ -4207,7 +4207,7 @@ "zh-chs": "代理时段", "zh-cht": "代理時段", "xloc": [ - "default.handlebars->29->2060" + "default.handlebars->29->2065" ] }, { @@ -4228,7 +4228,7 @@ "zh-cht": "代理標籤", "xloc": [ "default-mobile.handlebars->9->249", - "default.handlebars->29->576" + "default.handlebars->29->577" ] }, { @@ -4248,7 +4248,7 @@ "zh-chs": "代理类型", "zh-cht": "代理類型", "xloc": [ - "default.handlebars->29->1518", + "default.handlebars->29->1523", "default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1" ] }, @@ -4269,7 +4269,7 @@ "zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}", "zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}", "xloc": [ - "default.handlebars->29->1622" + "default.handlebars->29->1627" ] }, { @@ -4290,8 +4290,8 @@ "zh-cht": "代理已連接", "xloc": [ "default.handlebars->29->163", - "default.handlebars->29->644", - "default.handlebars->29->645" + "default.handlebars->29->645", + "default.handlebars->29->646" ] }, { @@ -4331,7 +4331,7 @@ "zh-chs": "代理离线", "zh-cht": "代理離線", "xloc": [ - "default.handlebars->29->996" + "default.handlebars->29->1001" ] }, { @@ -4351,7 +4351,7 @@ "zh-chs": "代理在线", "zh-cht": "代理在線", "xloc": [ - "default.handlebars->29->995" + "default.handlebars->29->1000" ] }, { @@ -4359,7 +4359,7 @@ "nl": "De agent wordt op een extern apparaat uitgevoerd met beperkte rechten.", "xloc": [ "default.handlebars->29->161", - "default.handlebars->29->642" + "default.handlebars->29->643" ] }, { @@ -4379,7 +4379,7 @@ "zh-chs": "代理", "zh-cht": "代理", "xloc": [ - "default.handlebars->29->2076" + "default.handlebars->29->2081" ] }, { @@ -4399,7 +4399,7 @@ "zh-chs": "阿尔巴尼亚文", "zh-cht": "阿爾巴尼亞文", "xloc": [ - "default.handlebars->29->1035" + "default.handlebars->29->1040" ] }, { @@ -4442,7 +4442,7 @@ "zh-chs": "全部可用", "zh-cht": "全部可用", "xloc": [ - "default.handlebars->29->1675" + "default.handlebars->29->1680" ] }, { @@ -4479,7 +4479,7 @@ "zh-chs": "所有事件", "zh-cht": "所有事件", "xloc": [ - "default.handlebars->29->1673" + "default.handlebars->29->1678" ] }, { @@ -4499,9 +4499,9 @@ "zh-chs": "全部聚焦", "zh-cht": "全部聚焦", "xloc": [ - "default.handlebars->29->829", - "default.handlebars->29->831", - "default.handlebars->29->832" + "default.handlebars->29->834", + "default.handlebars->29->836", + "default.handlebars->29->837" ] }, { @@ -4521,8 +4521,8 @@ "zh-chs": "允许用户管理此设备组和该组中的设备。", "zh-cht": "允許用戶管理此裝置群和該群中的裝置。", "xloc": [ - "default.handlebars->29->1413", - "default.handlebars->29->1876" + "default.handlebars->29->1418", + "default.handlebars->29->1881" ] }, { @@ -4542,7 +4542,7 @@ "zh-chs": "允许用户管理此设备。", "zh-cht": "允許用戶管理此裝置。", "xloc": [ - "default.handlebars->29->1414" + "default.handlebars->29->1419" ] }, { @@ -4606,7 +4606,7 @@ "zh-chs": "备用(F10 = ESC + 0)", "zh-cht": "備用(F10 = ESC + 0)", "xloc": [ - "default.handlebars->29->866" + "default.handlebars->29->871" ] }, { @@ -4647,10 +4647,10 @@ "zh-chs": "一直通知", "zh-cht": "一直通知", "xloc": [ - "default.handlebars->29->1329", - "default.handlebars->29->1837", - "default.handlebars->29->1924", - "default.handlebars->29->592" + "default.handlebars->29->1334", + "default.handlebars->29->1842", + "default.handlebars->29->1929", + "default.handlebars->29->593" ] }, { @@ -4670,10 +4670,10 @@ "zh-chs": "一直提示", "zh-cht": "一直提示", "xloc": [ - "default.handlebars->29->1330", - "default.handlebars->29->1838", - "default.handlebars->29->1925", - "default.handlebars->29->593" + "default.handlebars->29->1335", + "default.handlebars->29->1843", + "default.handlebars->29->1930", + "default.handlebars->29->594" ] }, { @@ -4796,7 +4796,7 @@ "zh-chs": "杀毒软件", "zh-cht": "防毒軟體", "xloc": [ - "default.handlebars->29->582" + "default.handlebars->29->583" ] }, { @@ -4816,7 +4816,7 @@ "zh-chs": "任何可支持的", "zh-cht": "任何可支持的", "xloc": [ - "default.handlebars->29->323" + "default.handlebars->29->324" ] }, { @@ -4836,7 +4836,7 @@ "zh-chs": "苹果macOS", "zh-cht": "蘋果macOS", "xloc": [ - "default.handlebars->29->358" + "default.handlebars->29->359" ] }, { @@ -4856,7 +4856,7 @@ "zh-chs": "仅限Apple macOS", "zh-cht": "僅限Apple macOS", "xloc": [ - "default.handlebars->29->325" + "default.handlebars->29->326" ] }, { @@ -4896,7 +4896,7 @@ "zh-chs": "阿拉伯文(阿尔及利亚)", "zh-cht": "阿拉伯文(阿爾及利亞)", "xloc": [ - "default.handlebars->29->1037" + "default.handlebars->29->1042" ] }, { @@ -4916,7 +4916,7 @@ "zh-chs": "阿拉伯文(巴林)", "zh-cht": "阿拉伯文(巴林)", "xloc": [ - "default.handlebars->29->1038" + "default.handlebars->29->1043" ] }, { @@ -4936,7 +4936,7 @@ "zh-chs": "阿拉伯文(埃及)", "zh-cht": "阿拉伯文(埃及)", "xloc": [ - "default.handlebars->29->1039" + "default.handlebars->29->1044" ] }, { @@ -4956,7 +4956,7 @@ "zh-chs": "阿拉伯文(伊拉克)", "zh-cht": "阿拉伯文(伊拉克)", "xloc": [ - "default.handlebars->29->1040" + "default.handlebars->29->1045" ] }, { @@ -4976,7 +4976,7 @@ "zh-chs": "阿拉伯文(约旦)", "zh-cht": "阿拉伯文(約旦)", "xloc": [ - "default.handlebars->29->1041" + "default.handlebars->29->1046" ] }, { @@ -4996,7 +4996,7 @@ "zh-chs": "阿拉伯文(科威特)", "zh-cht": "阿拉伯文(科威特)", "xloc": [ - "default.handlebars->29->1042" + "default.handlebars->29->1047" ] }, { @@ -5016,7 +5016,7 @@ "zh-chs": "阿拉伯文(黎巴嫩)", "zh-cht": "阿拉伯文(黎巴嫩)", "xloc": [ - "default.handlebars->29->1043" + "default.handlebars->29->1048" ] }, { @@ -5036,7 +5036,7 @@ "zh-chs": "阿拉伯文(利比亚)", "zh-cht": "阿拉伯文(利比亞)", "xloc": [ - "default.handlebars->29->1044" + "default.handlebars->29->1049" ] }, { @@ -5056,7 +5056,7 @@ "zh-chs": "阿拉伯文(摩洛哥)", "zh-cht": "阿拉伯文(摩洛哥)", "xloc": [ - "default.handlebars->29->1045" + "default.handlebars->29->1050" ] }, { @@ -5076,7 +5076,7 @@ "zh-chs": "阿拉伯文(阿曼)", "zh-cht": "阿拉伯文(阿曼)", "xloc": [ - "default.handlebars->29->1046" + "default.handlebars->29->1051" ] }, { @@ -5096,7 +5096,7 @@ "zh-chs": "阿拉伯文(卡塔尔)", "zh-cht": "阿拉伯文(卡塔爾)", "xloc": [ - "default.handlebars->29->1047" + "default.handlebars->29->1052" ] }, { @@ -5116,7 +5116,7 @@ "zh-chs": "阿拉伯文(沙特阿拉伯)", "zh-cht": "阿拉伯文(沙特阿拉伯)", "xloc": [ - "default.handlebars->29->1048" + "default.handlebars->29->1053" ] }, { @@ -5136,7 +5136,7 @@ "zh-chs": "阿拉伯文(标准)", "zh-cht": "阿拉伯文(標準)", "xloc": [ - "default.handlebars->29->1036" + "default.handlebars->29->1041" ] }, { @@ -5156,7 +5156,7 @@ "zh-chs": "阿拉伯文(叙利亚)", "zh-cht": "阿拉伯文(敘利亞)", "xloc": [ - "default.handlebars->29->1049" + "default.handlebars->29->1054" ] }, { @@ -5176,7 +5176,7 @@ "zh-chs": "阿拉伯文(突尼斯)", "zh-cht": "阿拉伯文(突尼斯)", "xloc": [ - "default.handlebars->29->1050" + "default.handlebars->29->1055" ] }, { @@ -5196,7 +5196,7 @@ "zh-chs": "阿拉伯文(阿联酋)", "zh-cht": "阿拉伯文(阿聯酋)", "xloc": [ - "default.handlebars->29->1051" + "default.handlebars->29->1056" ] }, { @@ -5216,7 +5216,7 @@ "zh-chs": "阿拉伯文(也门)", "zh-cht": "阿拉伯文(也門)", "xloc": [ - "default.handlebars->29->1052" + "default.handlebars->29->1057" ] }, { @@ -5236,7 +5236,7 @@ "zh-chs": "阿拉贡文", "zh-cht": "阿拉貢文", "xloc": [ - "default.handlebars->29->1053" + "default.handlebars->29->1058" ] }, { @@ -5257,7 +5257,7 @@ "zh-cht": "結構", "xloc": [ "default-mobile.handlebars->9->342", - "default.handlebars->29->921" + "default.handlebars->29->926" ] }, { @@ -5277,7 +5277,7 @@ "zh-chs": "您确定要连接到{0}设备吗?", "zh-cht": "你確定要連接到{0}裝置嗎?", "xloc": [ - "default.handlebars->29->271" + "default.handlebars->29->272" ] }, { @@ -5298,7 +5298,7 @@ "zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。", "xloc": [ "default-mobile.handlebars->9->418", - "default.handlebars->29->1389" + "default.handlebars->29->1394" ] }, { @@ -5318,7 +5318,7 @@ "zh-chs": "您确定要删除节点{0}吗?", "zh-cht": "你確定要刪除節點{0}嗎?", "xloc": [ - "default.handlebars->29->776" + "default.handlebars->29->781" ] }, { @@ -5338,7 +5338,7 @@ "zh-chs": "您确定要卸载所选代理吗?", "zh-cht": "你確定要卸載所選代理嗎?", "xloc": [ - "default.handlebars->29->765" + "default.handlebars->29->770" ] }, { @@ -5358,7 +5358,7 @@ "zh-chs": "您确定要卸载所选的{0}代理吗?", "zh-cht": "你確定要卸載所選的{0}代理嗎?", "xloc": [ - "default.handlebars->29->764" + "default.handlebars->29->769" ] }, { @@ -5378,7 +5378,7 @@ "zh-chs": "您确定要{0}插件吗:{1}", "zh-cht": "你確定要{0}外掛嗎:{1}", "xloc": [ - "default.handlebars->29->2116" + "default.handlebars->29->2121" ] }, { @@ -5398,7 +5398,7 @@ "zh-chs": "亚美尼亚文", "zh-cht": "亞美尼亞文", "xloc": [ - "default.handlebars->29->1054" + "default.handlebars->29->1059" ] }, { @@ -5458,7 +5458,7 @@ "zh-chs": "阿萨姆文", "zh-cht": "阿薩姆文", "xloc": [ - "default.handlebars->29->1055" + "default.handlebars->29->1060" ] }, { @@ -5478,7 +5478,7 @@ "zh-chs": "阿斯图里亚斯文", "zh-cht": "阿斯圖里亞斯文", "xloc": [ - "default.handlebars->29->1056" + "default.handlebars->29->1061" ] }, { @@ -5498,7 +5498,7 @@ "zh-chs": "尝试激活英特尔(R)AMT ACM模式", "zh-cht": "嘗試激活英特爾(R)AMT ACM模式", "xloc": [ - "default.handlebars->29->1591" + "default.handlebars->29->1596" ] }, { @@ -5518,7 +5518,7 @@ "zh-chs": "认证软件", "zh-cht": "認證軟體", "xloc": [ - "default.handlebars->29->1928" + "default.handlebars->29->1933" ] }, { @@ -5542,8 +5542,8 @@ "default-mobile.handlebars->9->52", "default-mobile.handlebars->9->71", "default-mobile.handlebars->9->73", - "default.handlebars->29->1020", - "default.handlebars->29->1022", + "default.handlebars->29->1025", + "default.handlebars->29->1027", "default.handlebars->29->125", "default.handlebars->29->130" ] @@ -5625,7 +5625,7 @@ "zh-chs": "自动删除", "zh-cht": "自動刪除", "xloc": [ - "default.handlebars->29->1316" + "default.handlebars->29->1321" ] }, { @@ -5689,7 +5689,7 @@ "zh-chs": "可用內存", "zh-cht": "可用內存", "xloc": [ - "default.handlebars->29->2069" + "default.handlebars->29->2074" ] }, { @@ -5709,7 +5709,7 @@ "zh-chs": "阿塞拜疆文", "zh-cht": "阿塞拜疆文", "xloc": [ - "default.handlebars->29->1057" + "default.handlebars->29->1062" ] }, { @@ -5730,7 +5730,7 @@ "zh-cht": "的BIOS", "xloc": [ "default-mobile.handlebars->9->384", - "default.handlebars->29->973" + "default.handlebars->29->978" ] }, { @@ -5825,7 +5825,7 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->29->363" + "default.handlebars->29->364" ] }, { @@ -5845,10 +5845,10 @@ "zh-chs": "背景与互动", "zh-cht": "背景與互動", "xloc": [ - "default.handlebars->29->1495", - "default.handlebars->29->1502", - "default.handlebars->29->335", - "default.handlebars->29->349" + "default.handlebars->29->1500", + "default.handlebars->29->1507", + "default.handlebars->29->336", + "default.handlebars->29->350" ] }, { @@ -5868,11 +5868,11 @@ "zh-chs": "仅背景", "zh-cht": "僅背景", "xloc": [ - "default.handlebars->29->1496", - "default.handlebars->29->1503", - "default.handlebars->29->336", - "default.handlebars->29->350", - "default.handlebars->29->364" + "default.handlebars->29->1501", + "default.handlebars->29->1508", + "default.handlebars->29->337", + "default.handlebars->29->351", + "default.handlebars->29->365" ] }, { @@ -5912,7 +5912,7 @@ "zh-chs": "备用码", "zh-cht": "備用碼", "xloc": [ - "default.handlebars->29->1930" + "default.handlebars->29->1935" ] }, { @@ -5932,7 +5932,7 @@ "zh-chs": "错误的签名", "zh-cht": "錯誤的簽名", "xloc": [ - "default.handlebars->29->2051" + "default.handlebars->29->2056" ] }, { @@ -5952,7 +5952,7 @@ "zh-chs": "错误的网络证书", "zh-cht": "錯誤的網絡憑證", "xloc": [ - "default.handlebars->29->2050" + "default.handlebars->29->2055" ] }, { @@ -5972,7 +5972,7 @@ "zh-chs": "巴斯克", "zh-cht": "巴斯克", "xloc": [ - "default.handlebars->29->1058" + "default.handlebars->29->1063" ] }, { @@ -6012,7 +6012,7 @@ "zh-chs": "白俄罗斯文", "zh-cht": "白俄羅斯文", "xloc": [ - "default.handlebars->29->1060" + "default.handlebars->29->1065" ] }, { @@ -6032,7 +6032,7 @@ "zh-chs": "孟加拉", "zh-cht": "孟加拉", "xloc": [ - "default.handlebars->29->1061" + "default.handlebars->29->1066" ] }, { @@ -6075,7 +6075,7 @@ "zh-chs": "波斯尼亚文", "zh-cht": "波斯尼亞文", "xloc": [ - "default.handlebars->29->1062" + "default.handlebars->29->1067" ] }, { @@ -6095,7 +6095,7 @@ "zh-chs": "布列塔尼", "zh-cht": "布列塔尼", "xloc": [ - "default.handlebars->29->1063" + "default.handlebars->29->1068" ] }, { @@ -6115,7 +6115,7 @@ "zh-chs": "广播", "zh-cht": "廣播", "xloc": [ - "default.handlebars->29->1844", + "default.handlebars->29->1849", "default.handlebars->container->column_l->p4->3->1->0->3->1" ] }, @@ -6136,7 +6136,7 @@ "zh-chs": "广播消息", "zh-cht": "廣播消息", "xloc": [ - "default.handlebars->29->1765" + "default.handlebars->29->1770" ] }, { @@ -6156,7 +6156,7 @@ "zh-chs": "向所有连接的用户广播消息。", "zh-cht": "向所有連接的用戶廣播消息。", "xloc": [ - "default.handlebars->29->1760" + "default.handlebars->29->1765" ] }, { @@ -6176,7 +6176,7 @@ "zh-chs": "保加利亚文", "zh-cht": "保加利亞文", "xloc": [ - "default.handlebars->29->1059" + "default.handlebars->29->1064" ] }, { @@ -6196,7 +6196,7 @@ "zh-chs": "缅甸文", "zh-cht": "緬甸文", "xloc": [ - "default.handlebars->29->1064" + "default.handlebars->29->1069" ] }, { @@ -6217,7 +6217,7 @@ "zh-cht": "CCM", "xloc": [ "default-mobile.handlebars->9->235", - "default.handlebars->29->558" + "default.handlebars->29->559" ] }, { @@ -6238,8 +6238,8 @@ "zh-cht": "CIRA", "xloc": [ "default-mobile.handlebars->9->204", - "default.handlebars->29->215", - "default.handlebars->29->424" + "default.handlebars->29->216", + "default.handlebars->29->425" ] }, { @@ -6259,7 +6259,7 @@ "zh-chs": "CIRA服务器", "zh-cht": "CIRA伺服器", "xloc": [ - "default.handlebars->29->2104" + "default.handlebars->29->2109" ] }, { @@ -6279,14 +6279,14 @@ "zh-chs": "CIRA服务器命令", "zh-cht": "CIRA伺服器指令", "xloc": [ - "default.handlebars->29->2105" + "default.handlebars->29->2110" ] }, { "en": "CIRA setup", "nl": "CIRA setup", "xloc": [ - "default.handlebars->29->1380" + "default.handlebars->29->1385" ] }, { @@ -6307,7 +6307,7 @@ "zh-cht": "CPU", "xloc": [ "default-mobile.handlebars->9->390", - "default.handlebars->29->979" + "default.handlebars->29->984" ] }, { @@ -6327,7 +6327,7 @@ "zh-chs": "CPU负载", "zh-cht": "CPU負載", "xloc": [ - "default.handlebars->29->2065" + "default.handlebars->29->2070" ] }, { @@ -6347,7 +6347,7 @@ "zh-chs": "最近15分钟的CPU负载", "zh-cht": "最近15分鐘的CPU負載", "xloc": [ - "default.handlebars->29->2068" + "default.handlebars->29->2073" ] }, { @@ -6367,7 +6367,7 @@ "zh-chs": "最近5分钟的CPU负载", "zh-cht": "最近5分鐘的CPU負載", "xloc": [ - "default.handlebars->29->2067" + "default.handlebars->29->2072" ] }, { @@ -6387,7 +6387,7 @@ "zh-chs": "最近一分钟的CPU负载", "zh-cht": "最近一分鐘的CPU負載", "xloc": [ - "default.handlebars->29->2066" + "default.handlebars->29->2071" ] }, { @@ -6407,8 +6407,8 @@ "zh-chs": "CR+LF", "zh-cht": "CR+LF", "xloc": [ - "default.handlebars->29->859", - "default.handlebars->29->868", + "default.handlebars->29->864", + "default.handlebars->29->873", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -6429,7 +6429,7 @@ "zh-chs": "CSV", "zh-cht": "CSV", "xloc": [ - "default.handlebars->29->1683" + "default.handlebars->29->1688" ] }, { @@ -6449,9 +6449,9 @@ "zh-chs": "CSV格式", "zh-cht": "CSV格式", "xloc": [ - "default.handlebars->29->1687", - "default.handlebars->29->1752", - "default.handlebars->29->474" + "default.handlebars->29->1692", + "default.handlebars->29->1757", + "default.handlebars->29->475" ] }, { @@ -6471,7 +6471,7 @@ "zh-chs": "呼叫错误", "zh-cht": "呼叫錯誤", "xloc": [ - "default.handlebars->29->2117" + "default.handlebars->29->2122" ] }, { @@ -6493,7 +6493,7 @@ "xloc": [ "default-mobile.handlebars->9->82", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1294", + "default.handlebars->29->1299", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -6523,9 +6523,9 @@ "default-mobile.handlebars->9->395", "default-mobile.handlebars->9->400", "default-mobile.handlebars->9->402", - "default.handlebars->29->984", "default.handlebars->29->989", - "default.handlebars->29->991" + "default.handlebars->29->994", + "default.handlebars->29->996" ] }, { @@ -6546,7 +6546,7 @@ "zh-cht": "容量/速度", "xloc": [ "default-mobile.handlebars->9->393", - "default.handlebars->29->982" + "default.handlebars->29->987" ] }, { @@ -6566,7 +6566,7 @@ "zh-chs": "加泰罗尼亚文", "zh-cht": "加泰羅尼亞文", "xloc": [ - "default.handlebars->29->1065" + "default.handlebars->29->1070" ] }, { @@ -6586,7 +6586,7 @@ "zh-chs": "在这里为中心显示地图", "zh-cht": "在這裡為中心顯示地圖", "xloc": [ - "default.handlebars->29->520" + "default.handlebars->29->521" ] }, { @@ -6606,7 +6606,7 @@ "zh-chs": "查莫罗", "zh-cht": "查莫羅", "xloc": [ - "default.handlebars->29->1066" + "default.handlebars->29->1071" ] }, { @@ -6648,7 +6648,7 @@ "zh-chs": "更改{0}的电邮", "zh-cht": "更改{0}的電郵", "xloc": [ - "default.handlebars->29->1958" + "default.handlebars->29->1963" ] }, { @@ -6668,9 +6668,9 @@ "zh-chs": "更改组", "zh-cht": "更改群", "xloc": [ - "default.handlebars->29->619", - "default.handlebars->29->773", - "default.handlebars->29->774" + "default.handlebars->29->620", + "default.handlebars->29->778", + "default.handlebars->29->779" ] }, { @@ -6691,8 +6691,8 @@ "zh-cht": "更改密碼", "xloc": [ "default-mobile.handlebars->9->90", - "default.handlebars->29->1261", - "default.handlebars->29->1945" + "default.handlebars->29->1266", + "default.handlebars->29->1950" ] }, { @@ -6712,7 +6712,7 @@ "zh-chs": "更改{0}的密码", "zh-cht": "更改{0}的密碼", "xloc": [ - "default.handlebars->29->1965" + "default.handlebars->29->1970" ] }, { @@ -6732,7 +6732,7 @@ "zh-chs": "更改{0}的真实名称", "zh-cht": "更改{0}的真實名稱", "xloc": [ - "default.handlebars->29->1953" + "default.handlebars->29->1958" ] }, { @@ -6814,7 +6814,7 @@ "zh-chs": "更改该用户的密码", "zh-cht": "更改該用戶的密碼", "xloc": [ - "default.handlebars->29->1944" + "default.handlebars->29->1949" ] }, { @@ -6854,7 +6854,7 @@ "zh-chs": "在此处更改您的帐户电邮地址。", "zh-cht": "在此處更改你的帳戶電郵地址。", "xloc": [ - "default.handlebars->29->1248" + "default.handlebars->29->1253" ] }, { @@ -6874,7 +6874,7 @@ "zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。", "zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。", "xloc": [ - "default.handlebars->29->1254" + "default.handlebars->29->1259" ] }, { @@ -6894,7 +6894,7 @@ "zh-chs": "更改帐户凭据", "zh-cht": "帳戶憑證已更改", "xloc": [ - "default.handlebars->29->1643" + "default.handlebars->29->1648" ] }, { @@ -6914,7 +6914,7 @@ "zh-chs": "{1}组中的设备{0}已更改:{2}", "zh-cht": "{1}組中的設備{0}已更改:{2}", "xloc": [ - "default.handlebars->29->1627" + "default.handlebars->29->1632" ] }, { @@ -6934,7 +6934,7 @@ "zh-chs": "语言从{1}更改为{2}", "zh-cht": "語言從{1}更改為{2}", "xloc": [ - "default.handlebars->29->1571" + "default.handlebars->29->1576" ] }, { @@ -6954,8 +6954,8 @@ "zh-chs": "已更改{0}的用户设备权限", "zh-cht": "已更改{0}的用戶設備權限", "xloc": [ - "default.handlebars->29->1629", - "default.handlebars->29->1650" + "default.handlebars->29->1634", + "default.handlebars->29->1655" ] }, { @@ -6975,7 +6975,7 @@ "zh-chs": "更改语言将需要刷新页面。", "zh-cht": "更改語言將需要刷新頁面。", "xloc": [ - "default.handlebars->29->1233" + "default.handlebars->29->1238" ] }, { @@ -6995,9 +6995,9 @@ "zh-chs": "聊天", "zh-cht": "聊天", "xloc": [ - "default.handlebars->29->1704", - "default.handlebars->29->677", - "default.handlebars->29->698" + "default.handlebars->29->1709", + "default.handlebars->29->678", + "default.handlebars->29->699" ] }, { @@ -7019,8 +7019,8 @@ "xloc": [ "default-mobile.handlebars->9->439", "default-mobile.handlebars->9->459", - "default.handlebars->29->1441", - "default.handlebars->29->1477" + "default.handlebars->29->1446", + "default.handlebars->29->1482" ] }, { @@ -7060,7 +7060,7 @@ "zh-chs": "车臣", "zh-cht": "車臣", "xloc": [ - "default.handlebars->29->1067" + "default.handlebars->29->1072" ] }, { @@ -7160,8 +7160,8 @@ "zh-chs": "检查...", "zh-cht": "檢查...", "xloc": [ - "default.handlebars->29->1033", - "default.handlebars->29->2111" + "default.handlebars->29->1038", + "default.handlebars->29->2116" ] }, { @@ -7181,7 +7181,7 @@ "zh-chs": "中文", "zh-cht": "中文", "xloc": [ - "default.handlebars->29->1068" + "default.handlebars->29->1073" ] }, { @@ -7201,7 +7201,7 @@ "zh-chs": "中文(香港)", "zh-cht": "中文(香港)", "xloc": [ - "default.handlebars->29->1069" + "default.handlebars->29->1074" ] }, { @@ -7221,7 +7221,7 @@ "zh-chs": "中文(中国)", "zh-cht": "中文(中國)", "xloc": [ - "default.handlebars->29->1070" + "default.handlebars->29->1075" ] }, { @@ -7241,7 +7241,7 @@ "zh-chs": "简体中文", "zh-cht": "簡體中文", "xloc": [ - "default.handlebars->29->1230" + "default.handlebars->29->1235" ] }, { @@ -7261,7 +7261,7 @@ "zh-chs": "中文(新加坡)", "zh-cht": "中文(新加坡)", "xloc": [ - "default.handlebars->29->1071" + "default.handlebars->29->1076" ] }, { @@ -7281,7 +7281,7 @@ "zh-chs": "中文(台湾)", "zh-cht": "中文(台灣)", "xloc": [ - "default.handlebars->29->1072" + "default.handlebars->29->1077" ] }, { @@ -7301,7 +7301,7 @@ "zh-chs": "繁体中文", "zh-cht": "繁體中文", "xloc": [ - "default.handlebars->29->1231" + "default.handlebars->29->1236" ] }, { @@ -7342,7 +7342,7 @@ "zh-chs": "楚瓦什", "zh-cht": "楚瓦什", "xloc": [ - "default.handlebars->29->1073" + "default.handlebars->29->1078" ] }, { @@ -7385,11 +7385,11 @@ "default-mobile.handlebars->9->330", "default-mobile.handlebars->9->332", "default-mobile.handlebars->9->59", - "default.handlebars->29->1565", - "default.handlebars->29->898", - "default.handlebars->29->900", - "default.handlebars->29->902", - "default.handlebars->29->904", + "default.handlebars->29->1570", + "default.handlebars->29->903", + "default.handlebars->29->905", + "default.handlebars->29->907", + "default.handlebars->29->909", "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" @@ -7432,7 +7432,7 @@ "zh-chs": "全部清除", "zh-cht": "全部清除", "xloc": [ - "default.handlebars->29->2038" + "default.handlebars->29->2043" ] }, { @@ -7440,7 +7440,7 @@ "nl": "Wis zoekfilter", "xloc": [ "default-mobile.handlebars->9->154", - "default.handlebars->29->227" + "default.handlebars->29->228" ] }, { @@ -7460,7 +7460,7 @@ "zh-chs": "清除核心", "zh-cht": "清除核心", "xloc": [ - "default.handlebars->29->1005" + "default.handlebars->29->1010" ] }, { @@ -7500,7 +7500,7 @@ "zh-chs": "清除此通知", "zh-cht": "清除此通知", "xloc": [ - "default.handlebars->29->2037" + "default.handlebars->29->2042" ] }, { @@ -7560,8 +7560,8 @@ "zh-chs": "单击此处编辑设备组名称", "zh-cht": "單擊此處編輯裝置群名稱", "xloc": [ - "default.handlebars->29->1305", - "default.handlebars->29->1516" + "default.handlebars->29->1310", + "default.handlebars->29->1521" ] }, { @@ -7581,7 +7581,7 @@ "zh-chs": "单击此处编辑服务器端设备名称", "zh-cht": "單擊此處編輯伺服器端裝置名稱", "xloc": [ - "default.handlebars->29->536" + "default.handlebars->29->537" ] }, { @@ -7601,7 +7601,7 @@ "zh-chs": "单击此处编辑用户组名称", "zh-cht": "單擊此處編輯用戶群名稱", "xloc": [ - "default.handlebars->29->1821" + "default.handlebars->29->1826" ] }, { @@ -7662,7 +7662,7 @@ "zh-cht": "單擊確定將驗證電郵發送到:", "xloc": [ "default-mobile.handlebars->9->75", - "default.handlebars->29->1245" + "default.handlebars->29->1250" ] }, { @@ -7703,7 +7703,7 @@ "zh-cht": "客戶端控制模式(CCM)", "xloc": [ "default-mobile.handlebars->9->371", - "default.handlebars->29->960" + "default.handlebars->29->965" ] }, { @@ -7723,7 +7723,7 @@ "zh-chs": "客户编号", "zh-cht": "客戶編號", "xloc": [ - "default.handlebars->29->1287" + "default.handlebars->29->1292" ] }, { @@ -7743,7 +7743,7 @@ "zh-chs": "客户端启动的远程访问", "zh-cht": "客戶端啟動的遠程訪問", "xloc": [ - "default.handlebars->29->1379" + "default.handlebars->29->1384" ] }, { @@ -7763,7 +7763,7 @@ "zh-chs": "客户机密", "zh-cht": "客戶機密", "xloc": [ - "default.handlebars->29->1288" + "default.handlebars->29->1293" ] }, { @@ -7807,7 +7807,7 @@ "default-mobile.handlebars->9->57", "default.handlebars->29->137", "default.handlebars->29->145", - "default.handlebars->29->850" + "default.handlebars->29->855" ] }, { @@ -7827,7 +7827,7 @@ "zh-chs": "封闭式桌面多路复用会话,{0}秒", "zh-cht": "封閉式桌面多路復用會話,{0}秒", "xloc": [ - "default.handlebars->29->1576" + "default.handlebars->29->1581" ] }, { @@ -7847,7 +7847,7 @@ "zh-chs": "码", "zh-cht": "碼", "xloc": [ - "default.handlebars->29->203" + "default.handlebars->29->204" ] }, { @@ -7903,7 +7903,7 @@ "en": "Command", "nl": "Opdracht", "xloc": [ - "default.handlebars->29->395" + "default.handlebars->29->396" ] }, { @@ -7911,9 +7911,9 @@ "nl": "Opdrachten", "xloc": [ "default-mobile.handlebars->9->461", - "default.handlebars->29->1479", - "default.handlebars->29->679", - "default.handlebars->29->700" + "default.handlebars->29->1484", + "default.handlebars->29->680", + "default.handlebars->29->701" ] }, { @@ -7933,8 +7933,8 @@ "zh-chs": "通用设备组", "zh-cht": "通用裝置群", "xloc": [ - "default.handlebars->29->1852", - "default.handlebars->29->1970" + "default.handlebars->29->1857", + "default.handlebars->29->1975" ] }, { @@ -7954,8 +7954,8 @@ "zh-chs": "通用设备", "zh-cht": "通用裝置", "xloc": [ - "default.handlebars->29->1858", - "default.handlebars->29->1982" + "default.handlebars->29->1863", + "default.handlebars->29->1987" ] }, { @@ -7975,7 +7975,7 @@ "zh-chs": "压缩档案...", "zh-cht": "壓縮檔案...", "xloc": [ - "default.handlebars->29->875" + "default.handlebars->29->880" ] }, { @@ -7996,7 +7996,7 @@ "zh-cht": "將{1}入口{2}中的{0}限製到此位置?", "xloc": [ "default-mobile.handlebars->9->127", - "default.handlebars->29->1560" + "default.handlebars->29->1565" ] }, { @@ -8018,14 +8018,14 @@ "xloc": [ "default-mobile.handlebars->9->288", "default-mobile.handlebars->9->419", - "default.handlebars->29->1390", - "default.handlebars->29->1732", - "default.handlebars->29->1811", - "default.handlebars->29->1872", - "default.handlebars->29->1968", - "default.handlebars->29->450", - "default.handlebars->29->768", - "default.handlebars->29->777" + "default.handlebars->29->1395", + "default.handlebars->29->1737", + "default.handlebars->29->1816", + "default.handlebars->29->1877", + "default.handlebars->29->1973", + "default.handlebars->29->451", + "default.handlebars->29->773", + "default.handlebars->29->782" ] }, { @@ -8046,7 +8046,7 @@ "zh-cht": "確認將1個副本複製到此位置?", "xloc": [ "default-mobile.handlebars->9->321", - "default.handlebars->29->893" + "default.handlebars->29->898" ] }, { @@ -8066,7 +8066,7 @@ "zh-chs": "确认{0}个条目的复制到此位置?", "zh-cht": "確認{0}個條目的複製到此位置?", "xloc": [ - "default.handlebars->29->892" + "default.handlebars->29->897" ] }, { @@ -8106,7 +8106,7 @@ "zh-chs": "确认删除选定的帐户?", "zh-cht": "確認刪除所選帳戶?", "xloc": [ - "default.handlebars->29->1731" + "default.handlebars->29->1736" ] }, { @@ -8126,7 +8126,7 @@ "zh-chs": "确认删除选定的设备?", "zh-cht": "確認刪除所選裝置?", "xloc": [ - "default.handlebars->29->449" + "default.handlebars->29->450" ] }, { @@ -8146,7 +8146,7 @@ "zh-chs": "确认删除选定的用户组?", "zh-cht": "確認刪除所選用戶群?", "xloc": [ - "default.handlebars->29->1810" + "default.handlebars->29->1815" ] }, { @@ -8166,7 +8166,7 @@ "zh-chs": "确认删除用户{0}?", "zh-cht": "確認刪除用戶{0}?", "xloc": [ - "default.handlebars->29->1967" + "default.handlebars->29->1972" ] }, { @@ -8186,7 +8186,7 @@ "zh-chs": "确认删除用户“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->29->1875" + "default.handlebars->29->1880" ] }, { @@ -8206,7 +8206,7 @@ "zh-chs": "确认删除用户组“ {0} ”的成员身份?", "zh-cht": "確認刪除用戶群“ {0} ”的成員身份?", "xloc": [ - "default.handlebars->29->1999" + "default.handlebars->29->2004" ] }, { @@ -8227,7 +8227,7 @@ "zh-cht": "確認將1個條目移動到此位置?", "xloc": [ "default-mobile.handlebars->9->323", - "default.handlebars->29->895" + "default.handlebars->29->900" ] }, { @@ -8247,7 +8247,7 @@ "zh-chs": "确认将{0}个条目移到此位置?", "zh-cht": "確認將{0}個條目移到該位置?", "xloc": [ - "default.handlebars->29->894" + "default.handlebars->29->899" ] }, { @@ -8287,7 +8287,7 @@ "zh-chs": "确认覆盖?", "zh-cht": "確認覆蓋?", "xloc": [ - "default.handlebars->29->1559" + "default.handlebars->29->1564" ] }, { @@ -8307,8 +8307,8 @@ "zh-chs": "确认删除设备“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->29->1865", - "default.handlebars->29->1990" + "default.handlebars->29->1870", + "default.handlebars->29->1995" ] }, { @@ -8328,8 +8328,8 @@ "zh-chs": "确认删除设备组“ {0} ”的访问权限?", "zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->29->1867", - "default.handlebars->29->2003" + "default.handlebars->29->1872", + "default.handlebars->29->2008" ] }, { @@ -8349,7 +8349,7 @@ "zh-chs": "确认删除用户“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->29->1992" + "default.handlebars->29->1997" ] }, { @@ -8369,7 +8369,7 @@ "zh-chs": "确认删除用户组“ {0} ”的访问权限?", "zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?", "xloc": [ - "default.handlebars->29->1995" + "default.handlebars->29->2000" ] }, { @@ -8389,8 +8389,8 @@ "zh-chs": "确认删除访问权限?", "zh-cht": "確認刪除訪問權限?", "xloc": [ - "default.handlebars->29->1993", - "default.handlebars->29->1996" + "default.handlebars->29->1998", + "default.handlebars->29->2001" ] }, { @@ -8411,7 +8411,7 @@ "zh-cht": "確認刪除身份驗證軟體兩步登入?", "xloc": [ "default-mobile.handlebars->9->74", - "default.handlebars->29->1023" + "default.handlebars->29->1028" ] }, { @@ -8435,7 +8435,7 @@ "en": "Confirm removal of device share \\\"{0}\\\"?", "nl": "Bevestig de verwijdering van apparaatdeling \\\"{0}\\\"?", "xloc": [ - "default.handlebars->29->1988" + "default.handlebars->29->1993" ] }, { @@ -8489,7 +8489,7 @@ "zh-chs": "确认删除用户“ {0} ”的权限?", "zh-cht": "確認刪除用戶“ {0} ”的權限?", "xloc": [ - "default.handlebars->29->1488" + "default.handlebars->29->1493" ] }, { @@ -8509,7 +8509,7 @@ "zh-chs": "确认删除用户组“ {0} ”的权限?", "zh-cht": "確認刪除用戶群“ {0} ”的權限?", "xloc": [ - "default.handlebars->29->1490" + "default.handlebars->29->1495" ] }, { @@ -8569,8 +8569,8 @@ "default-mobile.handlebars->9->303", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3", - "default.handlebars->29->1333", - "default.handlebars->29->871", + "default.handlebars->29->1338", + "default.handlebars->29->876", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3", @@ -8596,7 +8596,7 @@ "zh-chs": "全部连接", "zh-cht": "全部連接", "xloc": [ - "default.handlebars->29->270", + "default.handlebars->29->271", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar" ] }, @@ -8617,7 +8617,7 @@ "zh-chs": "连接到服务器", "zh-cht": "連接到伺服器", "xloc": [ - "default.handlebars->29->1383" + "default.handlebars->29->1388" ] }, { @@ -8738,7 +8738,7 @@ "zh-chs": "已连接的英特尔®AMT", "zh-cht": "已連接的Intel® AMT", "xloc": [ - "default.handlebars->29->2056" + "default.handlebars->29->2061" ] }, { @@ -8758,7 +8758,7 @@ "zh-chs": "已连接的用户", "zh-cht": "已连接的用户", "xloc": [ - "default.handlebars->29->2061" + "default.handlebars->29->2066" ] }, { @@ -8779,7 +8779,7 @@ "zh-cht": "現在已連接", "xloc": [ "default-mobile.handlebars->9->346", - "default.handlebars->29->925" + "default.handlebars->29->930" ] }, { @@ -8822,11 +8822,11 @@ "default-mobile.handlebars->9->2", "default-mobile.handlebars->9->339", "default-mobile.handlebars->9->37", - "default.handlebars->29->243", - "default.handlebars->29->246", - "default.handlebars->29->273", + "default.handlebars->29->244", + "default.handlebars->29->247", + "default.handlebars->29->274", "default.handlebars->29->9", - "default.handlebars->29->916", + "default.handlebars->29->921", "desktop.handlebars->3->2", "xterm.handlebars->9->2" ] @@ -8848,7 +8848,7 @@ "zh-chs": "连接数量", "zh-cht": "連接數量", "xloc": [ - "default.handlebars->29->2075" + "default.handlebars->29->2080" ] }, { @@ -8868,7 +8868,7 @@ "zh-chs": "连接转发器", "zh-cht": "連接轉發器", "xloc": [ - "default.handlebars->29->2103" + "default.handlebars->29->2108" ] }, { @@ -8929,9 +8929,9 @@ "zh-cht": "連接性", "xloc": [ "default-mobile.handlebars->9->255", - "default.handlebars->29->1523", - "default.handlebars->29->234", - "default.handlebars->29->606", + "default.handlebars->29->1528", + "default.handlebars->29->235", + "default.handlebars->29->607", "default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1" ] }, @@ -8952,8 +8952,8 @@ "zh-chs": "控制台", "zh-cht": "控制台", "xloc": [ - "default.handlebars->29->672", - "default.handlebars->29->693", + "default.handlebars->29->673", + "default.handlebars->29->694", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole", "default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole", "default.handlebars->contextMenu->cxconsole" @@ -8976,7 +8976,7 @@ "zh-chs": "控制台 -", "zh-cht": "控制台 -", "xloc": [ - "default.handlebars->29->537" + "default.handlebars->29->538" ] }, { @@ -8996,8 +8996,8 @@ "zh-chs": "控制", "zh-cht": "控制", "xloc": [ - "default.handlebars->29->671", - "default.handlebars->29->692", + "default.handlebars->29->672", + "default.handlebars->29->693", "messenger.handlebars->13->1" ] }, @@ -9018,7 +9018,7 @@ "zh-chs": "Cookie编码器", "zh-cht": "Cookie編碼器", "xloc": [ - "default.handlebars->29->2089" + "default.handlebars->29->2094" ] }, { @@ -9083,7 +9083,7 @@ "zh-chs": "将Windows 32位代理URL复制到剪贴板", "zh-cht": "將Windows 32位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->370" + "default.handlebars->29->371" ] }, { @@ -9103,7 +9103,7 @@ "zh-chs": "将Windows 64位代理URL复制到剪贴板", "zh-cht": "將Windows 64位代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->374" + "default.handlebars->29->375" ] }, { @@ -9154,8 +9154,8 @@ "zh-chs": "将代理URL复制到剪贴板", "zh-cht": "將代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->394", - "default.handlebars->29->396" + "default.handlebars->29->395", + "default.handlebars->29->397" ] }, { @@ -9175,10 +9175,10 @@ "zh-chs": "复制连结到剪贴板", "zh-cht": "複製連結到剪貼板", "xloc": [ - "default.handlebars->29->1528", - "default.handlebars->29->1547", - "default.handlebars->29->195", - "default.handlebars->29->352" + "default.handlebars->29->1533", + "default.handlebars->29->1552", + "default.handlebars->29->196", + "default.handlebars->29->353" ] }, { @@ -9198,7 +9198,7 @@ "zh-chs": "将macOS代理URL复制到剪贴板", "zh-cht": "將macOS代理URL複製到剪貼板", "xloc": [ - "default.handlebars->29->382" + "default.handlebars->29->383" ] }, { @@ -9279,7 +9279,7 @@ "zh-chs": "复制:“{0}”到“{1}”", "zh-cht": "複製:“{0}”到“{1}”", "xloc": [ - "default.handlebars->29->1619" + "default.handlebars->29->1624" ] }, { @@ -9425,7 +9425,7 @@ "zh-chs": "核心服务器", "zh-cht": "核心伺服器", "xloc": [ - "default.handlebars->29->2088" + "default.handlebars->29->2093" ] }, { @@ -9445,7 +9445,7 @@ "zh-chs": "科西嘉文", "zh-cht": "科西嘉文", "xloc": [ - "default.handlebars->29->1074" + "default.handlebars->29->1079" ] }, { @@ -9465,7 +9465,7 @@ "zh-chs": "创建帐号", "zh-cht": "創建帳號", "xloc": [ - "default.handlebars->29->1779", + "default.handlebars->29->1784", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1", "login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1", "login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1" @@ -9508,7 +9508,7 @@ "zh-chs": "创建用户组", "zh-cht": "創建用戶群", "xloc": [ - "default.handlebars->29->1818" + "default.handlebars->29->1823" ] }, { @@ -9528,7 +9528,7 @@ "zh-chs": "创建连结以与访客共享此设备", "zh-cht": "創建鏈結以與訪客共享此裝置", "xloc": [ - "default.handlebars->29->617" + "default.handlebars->29->618" ] }, { @@ -9548,7 +9548,7 @@ "zh-chs": "使用以下选项创建一个新的设备组。", "zh-cht": "使用以下選項創建一個新的裝置群。", "xloc": [ - "default.handlebars->29->1268" + "default.handlebars->29->1273" ] }, { @@ -9568,7 +9568,7 @@ "zh-chs": "创建一个新的设备组。", "zh-cht": "創建一個新的裝置群。", "xloc": [ - "default.handlebars->29->236" + "default.handlebars->29->237" ] }, { @@ -9588,7 +9588,7 @@ "zh-chs": "创建文件夹:“{0}”", "zh-cht": "創建文件夾:“{0}”", "xloc": [ - "default.handlebars->29->1612" + "default.handlebars->29->1617" ] }, { @@ -9608,7 +9608,7 @@ "zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:", "zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:", "xloc": [ - "default.handlebars->29->1743" + "default.handlebars->29->1748" ] }, { @@ -9650,7 +9650,13 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "創建的設備組:{0}", "xloc": [ - "default.handlebars->29->1623" + "default.handlebars->29->1628" + ] + }, + { + "en": "Creates a link that allows a guest without an account to remote desktop into this device for a limited time.", + "xloc": [ + "default.handlebars->29->712" ] }, { @@ -9668,10 +9674,7 @@ "ru": "Создает ссылку, которая позволяет гостю без учетной записи перейти на удаленный рабочий стол на этом устройстве на срок до 1 часа.", "tr": "Hesabı olmayan bir misafirin 1 saate kadar bu cihaza uzak masaüstüne girmesine izin veren bir bağlantı oluşturur.", "zh-chs": "创建一个连结,该连结允许没有帐户的访客将远程桌面访问此设备最多1小时。", - "zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。", - "xloc": [ - "default.handlebars->29->711" - ] + "zh-cht": "創建一個鏈結,該鏈結允許沒有帳戶的訪客將遠程桌面訪問此裝置最多1小時。" }, { "cs": "Vytváření", @@ -9690,7 +9693,7 @@ "zh-chs": "创建", "zh-cht": "創建", "xloc": [ - "default.handlebars->29->1904" + "default.handlebars->29->1909" ] }, { @@ -9710,7 +9713,7 @@ "zh-chs": "创建时间", "zh-cht": "創作時間", "xloc": [ - "default.handlebars->29->1315" + "default.handlebars->29->1320" ] }, { @@ -9752,8 +9755,8 @@ "zh-chs": "创建者", "zh-cht": "創作者", "xloc": [ - "default.handlebars->29->1313", - "default.handlebars->29->1314" + "default.handlebars->29->1318", + "default.handlebars->29->1319" ] }, { @@ -9773,7 +9776,7 @@ "zh-chs": "证书", "zh-cht": "證書", "xloc": [ - "default.handlebars->29->1285" + "default.handlebars->29->1290" ] }, { @@ -9793,7 +9796,7 @@ "zh-chs": "克里语", "zh-cht": "克里語", "xloc": [ - "default.handlebars->29->1075" + "default.handlebars->29->1080" ] }, { @@ -9813,7 +9816,7 @@ "zh-chs": "克罗地亚文", "zh-cht": "克羅地亞文", "xloc": [ - "default.handlebars->29->1076" + "default.handlebars->29->1081" ] }, { @@ -9980,7 +9983,7 @@ "zh-chs": "捷克文", "zh-cht": "捷克文", "xloc": [ - "default.handlebars->29->1077" + "default.handlebars->29->1082" ] }, { @@ -10020,7 +10023,7 @@ "zh-chs": "丹麦文", "zh-cht": "丹麥文", "xloc": [ - "default.handlebars->29->1078" + "default.handlebars->29->1083" ] }, { @@ -10040,8 +10043,8 @@ "zh-chs": "数据通道", "zh-cht": "數據通道", "xloc": [ - "default.handlebars->29->820", - "desktop.handlebars->3->12" + "default.handlebars->29->825", + "desktop.handlebars->3->11" ] }, { @@ -10061,7 +10064,7 @@ "zh-chs": "日期和时间", "zh-cht": "日期和時間", "xloc": [ - "default.handlebars->29->1236" + "default.handlebars->29->1241" ] }, { @@ -10082,14 +10085,14 @@ "zh-cht": "天", "xloc": [ "default-mobile.handlebars->9->278", - "default.handlebars->29->752" + "default.handlebars->29->757" ] }, { "en": "Deactivate", "nl": "Deactiveren", "xloc": [ - "default.handlebars->29->1366" + "default.handlebars->29->1371" ] }, { @@ -10127,7 +10130,7 @@ "zh-cht": "沉睡", "xloc": [ "default-mobile.handlebars->9->192", - "default.handlebars->29->407" + "default.handlebars->29->408" ] }, { @@ -10147,10 +10150,10 @@ "zh-chs": "默认", "zh-cht": "默認", "xloc": [ - "default.handlebars->29->1766", - "default.handlebars->29->1814", - "default.handlebars->29->1825", - "default.handlebars->29->1893" + "default.handlebars->29->1771", + "default.handlebars->29->1819", + "default.handlebars->29->1830", + "default.handlebars->29->1898" ] }, { @@ -10174,9 +10177,9 @@ "default-mobile.handlebars->9->313", "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->29->1554", - "default.handlebars->29->507", - "default.handlebars->29->884", + "default.handlebars->29->1559", + "default.handlebars->29->508", + "default.handlebars->29->889", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->container->dialog->idx_dlgButtonBar->5", @@ -10204,7 +10207,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->9->84", - "default.handlebars->29->1253" + "default.handlebars->29->1258" ] }, { @@ -10224,7 +10227,7 @@ "zh-chs": "删除帐户", "zh-cht": "刪除帳戶", "xloc": [ - "default.handlebars->29->1733" + "default.handlebars->29->1738" ] }, { @@ -10245,7 +10248,7 @@ "zh-cht": "刪除裝置", "xloc": [ "default-mobile.handlebars->9->260", - "default.handlebars->29->621" + "default.handlebars->29->622" ] }, { @@ -10267,8 +10270,8 @@ "xloc": [ "default-mobile.handlebars->9->417", "default-mobile.handlebars->9->420", - "default.handlebars->29->1362", - "default.handlebars->29->1391" + "default.handlebars->29->1367", + "default.handlebars->29->1396" ] }, { @@ -10289,7 +10292,7 @@ "zh-cht": "刪除節點", "xloc": [ "default-mobile.handlebars->9->286", - "default.handlebars->29->778" + "default.handlebars->29->783" ] }, { @@ -10309,7 +10312,7 @@ "zh-chs": "删除节点", "zh-cht": "刪除節點", "xloc": [ - "default.handlebars->29->451" + "default.handlebars->29->452" ] }, { @@ -10329,7 +10332,7 @@ "zh-chs": "删除用户", "zh-cht": "刪除用戶", "xloc": [ - "default.handlebars->29->1943" + "default.handlebars->29->1948" ] }, { @@ -10349,8 +10352,8 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->29->1863", - "default.handlebars->29->1873" + "default.handlebars->29->1868", + "default.handlebars->29->1878" ] }, { @@ -10370,7 +10373,7 @@ "zh-chs": "删除用户群组", "zh-cht": "刪除用戶群組", "xloc": [ - "default.handlebars->29->1812" + "default.handlebars->29->1817" ] }, { @@ -10390,7 +10393,7 @@ "zh-chs": "删除用户{0}", "zh-cht": "刪除用戶{0}", "xloc": [ - "default.handlebars->29->1966" + "default.handlebars->29->1971" ] }, { @@ -10411,7 +10414,7 @@ "zh-cht": "刪除帳戶", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0", - "default.handlebars->29->1729", + "default.handlebars->29->1734", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7" ] }, @@ -10432,7 +10435,7 @@ "zh-chs": "删除设备", "zh-cht": "刪除裝置", "xloc": [ - "default.handlebars->29->444" + "default.handlebars->29->445" ] }, { @@ -10452,7 +10455,7 @@ "zh-chs": "删除群组", "zh-cht": "刪除群組", "xloc": [ - "default.handlebars->29->1808" + "default.handlebars->29->1813" ] }, { @@ -10472,7 +10475,7 @@ "zh-chs": "删除项目?", "zh-cht": "刪除項目?", "xloc": [ - "default.handlebars->29->508" + "default.handlebars->29->509" ] }, { @@ -10492,7 +10495,7 @@ "zh-chs": "递归删除:“{0}”,{1}个元素已删除", "zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除", "xloc": [ - "default.handlebars->29->1614" + "default.handlebars->29->1619" ] }, { @@ -10514,8 +10517,8 @@ "xloc": [ "default-mobile.handlebars->9->124", "default-mobile.handlebars->9->315", - "default.handlebars->29->1556", - "default.handlebars->29->886" + "default.handlebars->29->1561", + "default.handlebars->29->891" ] }, { @@ -10535,7 +10538,7 @@ "zh-chs": "删除用户群组{0}?", "zh-cht": "刪除用戶群組{0}?", "xloc": [ - "default.handlebars->29->1871" + "default.handlebars->29->1876" ] }, { @@ -10557,8 +10560,8 @@ "xloc": [ "default-mobile.handlebars->9->123", "default-mobile.handlebars->9->314", - "default.handlebars->29->1555", - "default.handlebars->29->885" + "default.handlebars->29->1560", + "default.handlebars->29->890" ] }, { @@ -10598,7 +10601,7 @@ "zh-chs": "删除:“{0}”", "zh-cht": "刪除:“{0}”", "xloc": [ - "default.handlebars->29->1613" + "default.handlebars->29->1618" ] }, { @@ -10618,7 +10621,7 @@ "zh-chs": "删除:“{0}”,{1}个元素已删除", "zh-cht": "刪除:“{0}”,已刪除{1}個元素", "xloc": [ - "default.handlebars->29->1615" + "default.handlebars->29->1620" ] }, { @@ -10638,8 +10641,8 @@ "zh-chs": "被拒绝", "zh-cht": "被拒絕", "xloc": [ - "default.handlebars->29->816", - "desktop.handlebars->3->8" + "default.handlebars->29->821", + "desktop.handlebars->3->7" ] }, { @@ -10735,19 +10738,19 @@ "default-mobile.handlebars->9->352", "default-mobile.handlebars->9->409", "default-mobile.handlebars->9->422", - "default.handlebars->29->1273", - "default.handlebars->29->1310", - "default.handlebars->29->1393", - "default.handlebars->29->1817", - "default.handlebars->29->1827", - "default.handlebars->29->1828", - "default.handlebars->29->1869", - "default.handlebars->29->548", + "default.handlebars->29->1278", + "default.handlebars->29->1315", + "default.handlebars->29->1398", + "default.handlebars->29->1822", + "default.handlebars->29->1832", + "default.handlebars->29->1833", + "default.handlebars->29->1874", "default.handlebars->29->549", + "default.handlebars->29->550", "default.handlebars->29->77", - "default.handlebars->29->811", - "default.handlebars->29->931", - "default.handlebars->29->941", + "default.handlebars->29->816", + "default.handlebars->29->936", + "default.handlebars->29->946", "default.handlebars->container->column_l->p42->p42tbl->1->0->3" ] }, @@ -10786,13 +10789,13 @@ "zh-cht": "桌面", "xloc": [ "default-mobile.handlebars->9->267", - "default.handlebars->29->1399", - "default.handlebars->29->2015", - "default.handlebars->29->513", - "default.handlebars->29->856", + "default.handlebars->29->1404", + "default.handlebars->29->2020", + "default.handlebars->29->514", + "default.handlebars->29->861", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop", "default.handlebars->contextMenu->cxdesktop", - "desktop.handlebars->3->24" + "desktop.handlebars->3->23" ] }, { @@ -10832,10 +10835,10 @@ "zh-chs": "桌面通知", "zh-cht": "桌面通知", "xloc": [ - "default.handlebars->29->1324", - "default.handlebars->29->1832", - "default.handlebars->29->1919", - "default.handlebars->29->587" + "default.handlebars->29->1329", + "default.handlebars->29->1837", + "default.handlebars->29->1924", + "default.handlebars->29->588" ] }, { @@ -10855,10 +10858,10 @@ "zh-chs": "桌面提示", "zh-cht": "桌面提示", "xloc": [ - "default.handlebars->29->1323", - "default.handlebars->29->1831", - "default.handlebars->29->1918", - "default.handlebars->29->586" + "default.handlebars->29->1328", + "default.handlebars->29->1836", + "default.handlebars->29->1923", + "default.handlebars->29->587" ] }, { @@ -10878,10 +10881,10 @@ "zh-chs": "桌面提示+工具栏", "zh-cht": "桌面提示+工具欄", "xloc": [ - "default.handlebars->29->1321", - "default.handlebars->29->1829", - "default.handlebars->29->1916", - "default.handlebars->29->584" + "default.handlebars->29->1326", + "default.handlebars->29->1834", + "default.handlebars->29->1921", + "default.handlebars->29->585" ] }, { @@ -10905,6 +10908,13 @@ "desktop.handlebars->p11->deskarea0->deskarea4->1" ] }, + { + "en": "Desktop Sharing", + "xloc": [ + "message.handlebars->3->2", + "message2.handlebars->5->2" + ] + }, { "cs": "Panel nástrojů na ploše", "de": "Desktop-Werkzeugleiste", @@ -10922,10 +10932,10 @@ "zh-chs": "桌面工具栏", "zh-cht": "桌面工具欄", "xloc": [ - "default.handlebars->29->1322", - "default.handlebars->29->1830", - "default.handlebars->29->1917", - "default.handlebars->29->585" + "default.handlebars->29->1327", + "default.handlebars->29->1835", + "default.handlebars->29->1922", + "default.handlebars->29->586" ] }, { @@ -10945,7 +10955,7 @@ "zh-chs": "桌面时段", "zh-cht": "桌面時段", "xloc": [ - "default.handlebars->29->855" + "default.handlebars->29->860" ] }, { @@ -11028,9 +11038,9 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->29->1422", + "default.handlebars->29->1427", "default.handlebars->29->186", - "default.handlebars->29->1985", + "default.handlebars->29->1990", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5" ] }, @@ -11052,7 +11062,7 @@ "zh-cht": "裝置指令", "xloc": [ "default-mobile.handlebars->9->277", - "default.handlebars->29->743" + "default.handlebars->29->748" ] }, { @@ -11079,14 +11089,14 @@ "zh-chs": "设备组", "zh-cht": "裝置群", "xloc": [ - "default.handlebars->29->1417", - "default.handlebars->29->1420", - "default.handlebars->29->1421", - "default.handlebars->29->1680", - "default.handlebars->29->1855", - "default.handlebars->29->1861", - "default.handlebars->29->1973", - "default.handlebars->29->2024" + "default.handlebars->29->1422", + "default.handlebars->29->1425", + "default.handlebars->29->1426", + "default.handlebars->29->1685", + "default.handlebars->29->1860", + "default.handlebars->29->1866", + "default.handlebars->29->1978", + "default.handlebars->29->2029" ] }, { @@ -11107,7 +11117,7 @@ "zh-cht": "裝置群用戶", "xloc": [ "default-mobile.handlebars->9->468", - "default.handlebars->29->1486" + "default.handlebars->29->1491" ] }, { @@ -11128,11 +11138,11 @@ "zh-cht": "裝置群", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3", - "default.handlebars->29->1696", - "default.handlebars->29->1802", - "default.handlebars->29->1842", - "default.handlebars->29->1913", - "default.handlebars->29->2059", + "default.handlebars->29->1701", + "default.handlebars->29->1807", + "default.handlebars->29->1847", + "default.handlebars->29->1918", + "default.handlebars->29->2064", "default.handlebars->container->column_l->p2->p2info->7" ] }, @@ -11153,7 +11163,7 @@ "zh-chs": "设备信息导出", "zh-cht": "裝置訊息輸出", "xloc": [ - "default.handlebars->29->478" + "default.handlebars->29->479" ] }, { @@ -11173,7 +11183,7 @@ "zh-chs": "设备位置", "zh-cht": "裝置位置", "xloc": [ - "default.handlebars->29->779" + "default.handlebars->29->784" ] }, { @@ -11193,7 +11203,7 @@ "zh-chs": "设备消息", "zh-cht": "裝置訊息", "xloc": [ - "default.handlebars->29->708" + "default.handlebars->29->709" ] }, { @@ -11214,9 +11224,9 @@ "zh-cht": "裝置名稱", "xloc": [ "default-mobile.handlebars->9->290", - "default.handlebars->29->2023", - "default.handlebars->29->287", - "default.handlebars->29->809", + "default.handlebars->29->2028", + "default.handlebars->29->288", + "default.handlebars->29->814", "player.handlebars->3->9" ] }, @@ -11237,15 +11247,15 @@ "zh-chs": "设备通知", "zh-cht": "裝置通知", "xloc": [ - "default.handlebars->29->472", - "default.handlebars->29->710" + "default.handlebars->29->473", + "default.handlebars->29->711" ] }, { "en": "Device Sharing Link", "nl": "Apparaat deel Link", "xloc": [ - "default.handlebars->29->662" + "default.handlebars->29->663" ] }, { @@ -11285,8 +11295,8 @@ "zh-chs": "设备连接。", "zh-cht": "裝置連接。", "xloc": [ - "default.handlebars->29->1241", - "default.handlebars->29->1507" + "default.handlebars->29->1246", + "default.handlebars->29->1512" ] }, { @@ -11306,8 +11316,8 @@ "zh-chs": "设备断开连接。", "zh-cht": "裝置斷開連接。", "xloc": [ - "default.handlebars->29->1242", - "default.handlebars->29->1508" + "default.handlebars->29->1247", + "default.handlebars->29->1513" ] }, { @@ -11327,7 +11337,7 @@ "zh-chs": "创建的设备组:{0}", "zh-cht": "設備組已創建:{0}", "xloc": [ - "default.handlebars->29->1644" + "default.handlebars->29->1649" ] }, { @@ -11347,7 +11357,7 @@ "zh-chs": "设备组已删除:{0}", "zh-cht": "設備組已刪除:{0}", "xloc": [ - "default.handlebars->29->1645" + "default.handlebars->29->1650" ] }, { @@ -11367,7 +11377,7 @@ "zh-chs": "设备组成员身份已更改:{0}", "zh-cht": "設備組成員身份已更改:{0}", "xloc": [ - "default.handlebars->29->1646" + "default.handlebars->29->1651" ] }, { @@ -11387,7 +11397,7 @@ "zh-chs": "其他设备组管理员可以查看和更改设备组注释。", "zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。", "xloc": [ - "default.handlebars->29->705" + "default.handlebars->29->706" ] }, { @@ -11407,7 +11417,7 @@ "zh-chs": "设备组通知已更改", "zh-cht": "設備組通知已更改", "xloc": [ - "default.handlebars->29->1641" + "default.handlebars->29->1646" ] }, { @@ -11427,7 +11437,7 @@ "zh-chs": "未删除的设备组:{0}", "zh-cht": "未刪除的設備組:{0}", "xloc": [ - "default.handlebars->29->1624" + "default.handlebars->29->1629" ] }, { @@ -11449,8 +11459,8 @@ "xloc": [ "default-mobile.handlebars->9->160", "default-mobile.handlebars->9->216", - "default.handlebars->29->211", - "default.handlebars->29->534" + "default.handlebars->29->212", + "default.handlebars->29->535" ] }, { @@ -11470,7 +11480,7 @@ "zh-chs": "检测到设备,但无法获得电源状态。", "zh-cht": "檢測到裝置,但無法獲得電源狀態。", "xloc": [ - "default.handlebars->29->412" + "default.handlebars->29->413" ] }, { @@ -11491,7 +11501,7 @@ "zh-cht": "裝置正在休眠(S4)", "xloc": [ "default-mobile.handlebars->9->200", - "default.handlebars->29->418" + "default.handlebars->29->419" ] }, { @@ -11512,7 +11522,7 @@ "zh-cht": "裝置處於深度睡眠狀態(S3)", "xloc": [ "default-mobile.handlebars->9->199", - "default.handlebars->29->417" + "default.handlebars->29->418" ] }, { @@ -11532,7 +11542,7 @@ "zh-chs": "设备处于深度睡眠状态(S3)。", "zh-cht": "裝置處於深度睡眠狀態(S3)。", "xloc": [ - "default.handlebars->29->406" + "default.handlebars->29->407" ] }, { @@ -11552,7 +11562,7 @@ "zh-chs": "设备处于休眠状态(S4)。", "zh-cht": "裝置處於休眠狀態(S4)。", "xloc": [ - "default.handlebars->29->408" + "default.handlebars->29->409" ] }, { @@ -11572,7 +11582,7 @@ "zh-chs": "设备处于关机状态(S5)。", "zh-cht": "裝置處於關機狀態(S5)。", "xloc": [ - "default.handlebars->29->410" + "default.handlebars->29->411" ] }, { @@ -11593,7 +11603,7 @@ "zh-cht": "裝置處於睡眠狀態(S1)", "xloc": [ "default-mobile.handlebars->9->197", - "default.handlebars->29->415" + "default.handlebars->29->416" ] }, { @@ -11613,7 +11623,7 @@ "zh-chs": "设备处于睡眠状态(S1)。", "zh-cht": "裝置處於睡眠狀態(S1)。", "xloc": [ - "default.handlebars->29->402" + "default.handlebars->29->403" ] }, { @@ -11634,7 +11644,7 @@ "zh-cht": "裝置處於睡眠狀態(S2)", "xloc": [ "default-mobile.handlebars->9->198", - "default.handlebars->29->416" + "default.handlebars->29->417" ] }, { @@ -11654,7 +11664,7 @@ "zh-chs": "设备处于睡眠状态(S2)。", "zh-cht": "裝置處於睡眠狀態(S2)。", "xloc": [ - "default.handlebars->29->404" + "default.handlebars->29->405" ] }, { @@ -11675,7 +11685,7 @@ "zh-cht": "裝置處於軟關機狀態(S5)", "xloc": [ "default-mobile.handlebars->9->201", - "default.handlebars->29->419" + "default.handlebars->29->420" ] }, { @@ -11697,8 +11707,8 @@ "xloc": [ "default-mobile.handlebars->9->159", "default-mobile.handlebars->9->215", - "default.handlebars->29->210", - "default.handlebars->29->533" + "default.handlebars->29->211", + "default.handlebars->29->534" ] }, { @@ -11719,7 +11729,7 @@ "zh-cht": "裝置已連接電源", "xloc": [ "default-mobile.handlebars->9->196", - "default.handlebars->29->414" + "default.handlebars->29->415" ] }, { @@ -11739,7 +11749,7 @@ "zh-chs": "设备已连接电源。", "zh-cht": "裝置已連接電源。", "xloc": [ - "default.handlebars->29->400" + "default.handlebars->29->401" ] }, { @@ -11760,7 +11770,7 @@ "zh-cht": "裝置存在,但無法確定電源狀態", "xloc": [ "default-mobile.handlebars->9->202", - "default.handlebars->29->420" + "default.handlebars->29->421" ] }, { @@ -11780,7 +11790,7 @@ "zh-chs": "设备名称", "zh-cht": "裝置名稱", "xloc": [ - "default.handlebars->29->525" + "default.handlebars->29->526" ] }, { @@ -11800,7 +11810,7 @@ "zh-chs": "设备通知", "zh-cht": "設備通知", "xloc": [ - "default.handlebars->29->442" + "default.handlebars->29->443" ] }, { @@ -11820,7 +11830,7 @@ "zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}", "zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}", "xloc": [ - "default.handlebars->29->1626" + "default.handlebars->29->1631" ] }, { @@ -11857,8 +11867,8 @@ "zh-chs": "设备", "zh-cht": "裝置", "xloc": [ - "default.handlebars->29->1803", - "default.handlebars->29->1843" + "default.handlebars->29->1808", + "default.handlebars->29->1848" ] }, { @@ -11878,7 +11888,7 @@ "zh-chs": "已禁用", "zh-cht": "已禁用", "xloc": [ - "default.handlebars->29->579" + "default.handlebars->29->580" ] }, { @@ -11898,7 +11908,7 @@ "zh-chs": "禁用的电子邮件两因素身份验证", "zh-cht": "禁用的電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->29->1657" + "default.handlebars->29->1662" ] }, { @@ -11920,8 +11930,8 @@ "xloc": [ "default-mobile.handlebars->9->304", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3", - "default.handlebars->29->1334", - "default.handlebars->29->872", + "default.handlebars->29->1339", + "default.handlebars->29->877", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span", "desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span", @@ -11968,10 +11978,10 @@ "default-mobile.handlebars->9->1", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status", - "default.handlebars->29->222", - "default.handlebars->29->242", - "default.handlebars->29->245", - "default.handlebars->29->272", + "default.handlebars->29->223", + "default.handlebars->29->243", + "default.handlebars->29->246", + "default.handlebars->29->273", "default.handlebars->29->8", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus", @@ -11998,7 +12008,7 @@ "zh-chs": "在远程设备上显示一个消息框。", "zh-cht": "在遠程裝置上顯示一個訊息框。", "xloc": [ - "default.handlebars->29->709" + "default.handlebars->29->710" ] }, { @@ -12038,7 +12048,7 @@ "zh-chs": "在远程设备上显示短信", "zh-cht": "在遠程裝置上顯示短信", "xloc": [ - "default.handlebars->29->615" + "default.handlebars->29->616" ] }, { @@ -12058,7 +12068,7 @@ "zh-chs": "显示设备组名称", "zh-cht": "顯示裝置群名稱", "xloc": [ - "default.handlebars->29->1240" + "default.handlebars->29->1245" ] }, { @@ -12078,7 +12088,7 @@ "zh-chs": "显示名称", "zh-cht": "顯示名稱", "xloc": [ - "default.handlebars->29->841" + "default.handlebars->29->846" ] }, { @@ -12098,7 +12108,7 @@ "zh-chs": "显示公共连结", "zh-cht": "顯示公共鏈結", "xloc": [ - "default.handlebars->29->1527" + "default.handlebars->29->1532" ] }, { @@ -12118,7 +12128,7 @@ "zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->29->1586" + "default.handlebars->29->1591" ] }, { @@ -12138,7 +12148,7 @@ "zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”", "zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”", "xloc": [ - "default.handlebars->29->1594" + "default.handlebars->29->1599" ] }, { @@ -12158,8 +12168,8 @@ "zh-chs": "什么都不做", "zh-cht": "什麼都不做", "xloc": [ - "default.handlebars->29->1377", - "default.handlebars->29->1381" + "default.handlebars->29->1382", + "default.handlebars->29->1386" ] }, { @@ -12179,10 +12189,10 @@ "zh-chs": "域", "zh-cht": "域", "xloc": [ - "default.handlebars->29->1767", - "default.handlebars->29->1815", - "default.handlebars->29->1824", - "default.handlebars->29->1892", + "default.handlebars->29->1772", + "default.handlebars->29->1820", + "default.handlebars->29->1829", + "default.handlebars->29->1897", "mstsc.handlebars->main->1->3->1->2->1->0", "mstsc.handlebars->main->1->3->1->2->3" ] @@ -12221,7 +12231,7 @@ "zh-chs": "不要连接到服务器", "zh-cht": "不要連接到伺服器", "xloc": [ - "default.handlebars->29->1382" + "default.handlebars->29->1387" ] }, { @@ -12341,7 +12351,7 @@ "zh-cht": "下載檔案", "xloc": [ "default-mobile.handlebars->9->334", - "default.handlebars->29->905" + "default.handlebars->29->910" ] }, { @@ -12361,7 +12371,7 @@ "zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。", "zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。", "xloc": [ - "default.handlebars->29->240" + "default.handlebars->29->241" ] }, { @@ -12381,7 +12391,7 @@ "zh-chs": "下载MeshCmd", "zh-cht": "下載MeshCmd", "xloc": [ - "default.handlebars->29->801" + "default.handlebars->29->806" ] }, { @@ -12401,7 +12411,7 @@ "zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。", "zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。", "xloc": [ - "default.handlebars->29->238" + "default.handlebars->29->239" ] }, { @@ -12441,7 +12451,7 @@ "zh-chs": "下载报告", "zh-cht": "下載報告", "xloc": [ - "default.handlebars->29->1685", + "default.handlebars->29->1690", "default.handlebars->container->column_l->p3->3->1->0->3" ] }, @@ -12462,7 +12472,7 @@ "zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。", "zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。", "xloc": [ - "default.handlebars->29->794" + "default.handlebars->29->799" ] }, { @@ -12542,7 +12552,7 @@ "zh-chs": "下载电源事件", "zh-cht": "下載電源事件", "xloc": [ - "default.handlebars->29->753" + "default.handlebars->29->758" ] }, { @@ -12622,7 +12632,7 @@ "zh-chs": "使用以下一种档案格式下载设备列表。", "zh-cht": "使用以下一種檔案格式下載裝置列表。", "xloc": [ - "default.handlebars->29->473" + "default.handlebars->29->474" ] }, { @@ -12642,7 +12652,7 @@ "zh-chs": "使用以下一种档案格式下载事件列表。", "zh-cht": "使用以下一種檔案格式下載事件列表。", "xloc": [ - "default.handlebars->29->1686" + "default.handlebars->29->1691" ] }, { @@ -12662,7 +12672,7 @@ "zh-chs": "使用以下一种档案格式下载用户列表。", "zh-cht": "使用以下一種檔案格式下載用戶列表。", "xloc": [ - "default.handlebars->29->1751" + "default.handlebars->29->1756" ] }, { @@ -12743,7 +12753,7 @@ "zh-chs": "下载:“{0}”", "zh-cht": "下載:“{0}”", "xloc": [ - "default.handlebars->29->1617" + "default.handlebars->29->1622" ] }, { @@ -12783,7 +12793,7 @@ "zh-chs": "代理重复", "zh-cht": "代理重複", "xloc": [ - "default.handlebars->29->2055" + "default.handlebars->29->2060" ] }, { @@ -12823,7 +12833,7 @@ "zh-chs": "复制用户组", "zh-cht": "複製用戶群", "xloc": [ - "default.handlebars->29->1819" + "default.handlebars->29->1824" ] }, { @@ -12860,8 +12870,8 @@ "zh-chs": "持续时间", "zh-cht": "持續時間", "xloc": [ - "default.handlebars->29->2009", - "default.handlebars->29->2029", + "default.handlebars->29->2014", + "default.handlebars->29->2034", "player.handlebars->3->2" ] }, @@ -12899,7 +12909,7 @@ "zh-chs": "荷兰文(比利时)", "zh-cht": "荷蘭文(比利時)", "xloc": [ - "default.handlebars->29->1080" + "default.handlebars->29->1085" ] }, { @@ -12919,7 +12929,7 @@ "zh-chs": "荷兰文(标准)", "zh-cht": "荷蘭文(標準)", "xloc": [ - "default.handlebars->29->1079" + "default.handlebars->29->1084" ] }, { @@ -12939,8 +12949,8 @@ "zh-chs": "电邮“ {0} ”已在其他帐户上使用。更改电邮地址,然后重试。", "zh-cht": "電郵“ {0} ”已在其他帳戶上使用。更改電郵地址,然後重試。", "xloc": [ - "message.handlebars->3->6", - "message2.handlebars->5->6" + "message.handlebars->3->7", + "message2.handlebars->5->7" ] }, { @@ -12960,8 +12970,8 @@ "zh-chs": "用户“ {1} ”的电邮“ {0} ”已通过验证。", "zh-cht": "用戶“ {1} ”的電郵“ {0} ”已通過驗證。", "xloc": [ - "message.handlebars->3->5", - "message2.handlebars->5->5" + "message.handlebars->3->6", + "message2.handlebars->5->6" ] }, { @@ -12981,8 +12991,8 @@ "zh-chs": "未验证用户“ {1} ”的电邮“ {0} ”。", "zh-cht": "未驗證用戶“ {1} ”的電郵“ {0} ”。", "xloc": [ - "message.handlebars->3->8", - "message2.handlebars->5->8" + "message.handlebars->3->9", + "message2.handlebars->5->9" ] }, { @@ -13022,8 +13032,8 @@ "zh-chs": "错误:无效的帐户检查,验证网址仅在30分钟内有效。", "zh-cht": "錯誤:無效的帳戶檢查,驗證網址僅在30分鐘內有效。", "xloc": [ - "message.handlebars->3->12", - "message2.handlebars->5->12" + "message.handlebars->3->13", + "message2.handlebars->5->13" ] }, { @@ -13043,8 +13053,8 @@ "zh-chs": "错误:无效的帐户检查。", "zh-cht": "錯誤:無效的帳戶檢查。", "xloc": [ - "message.handlebars->3->11", - "message2.handlebars->5->11" + "message.handlebars->3->12", + "message2.handlebars->5->12" ] }, { @@ -13064,8 +13074,8 @@ "zh-chs": "错误:无效的域。", "zh-cht": "錯誤:無效的域。", "xloc": [ - "message.handlebars->3->2", - "message2.handlebars->5->2" + "message.handlebars->3->3", + "message2.handlebars->5->3" ] }, { @@ -13085,8 +13095,8 @@ "zh-chs": "错误:用户“ {1} ”的电邮“ {0} ”无效。", "zh-cht": "錯誤:用戶“ {1} ”的電郵“ {0} ”無效。", "xloc": [ - "message.handlebars->3->4", - "message2.handlebars->5->4" + "message.handlebars->3->5", + "message2.handlebars->5->5" ] }, { @@ -13106,8 +13116,8 @@ "zh-chs": "错误:无效的用户名“ {0} ”。", "zh-cht": "錯誤:無效的用戶名“ {0} ”。", "xloc": [ - "message.handlebars->3->3", - "message2.handlebars->5->3" + "message.handlebars->3->4", + "message2.handlebars->5->4" ] }, { @@ -13190,7 +13200,7 @@ "zh-cht": "編輯裝置", "xloc": [ "default-mobile.handlebars->9->295", - "default.handlebars->29->814" + "default.handlebars->29->819" ] }, { @@ -13213,10 +13223,10 @@ "default-mobile.handlebars->9->423", "default-mobile.handlebars->9->425", "default-mobile.handlebars->9->445", - "default.handlebars->29->1394", - "default.handlebars->29->1426", - "default.handlebars->29->1450", - "default.handlebars->29->1462" + "default.handlebars->29->1399", + "default.handlebars->29->1431", + "default.handlebars->29->1455", + "default.handlebars->29->1467" ] }, { @@ -13236,7 +13246,7 @@ "zh-chs": "编辑设备组功能", "zh-cht": "編輯裝置群功能", "xloc": [ - "default.handlebars->29->1412" + "default.handlebars->29->1417" ] }, { @@ -13256,8 +13266,8 @@ "zh-chs": "编辑设备组权限", "zh-cht": "編輯裝置群權限", "xloc": [ - "default.handlebars->29->1447", - "default.handlebars->29->1459" + "default.handlebars->29->1452", + "default.handlebars->29->1464" ] }, { @@ -13277,7 +13287,7 @@ "zh-chs": "编辑设备组用户同意", "zh-cht": "編輯裝置群用戶同意", "xloc": [ - "default.handlebars->29->1395" + "default.handlebars->29->1400" ] }, { @@ -13298,7 +13308,7 @@ "zh-cht": "編輯裝置筆記", "xloc": [ "default-mobile.handlebars->9->437", - "default.handlebars->29->1439" + "default.handlebars->29->1444" ] }, { @@ -13318,8 +13328,8 @@ "zh-chs": "编辑设备权限", "zh-cht": "編輯裝置權限", "xloc": [ - "default.handlebars->29->1452", - "default.handlebars->29->1454" + "default.handlebars->29->1457", + "default.handlebars->29->1459" ] }, { @@ -13339,7 +13349,7 @@ "zh-chs": "编辑设备标签", "zh-cht": "編輯裝置標籤", "xloc": [ - "default.handlebars->29->467" + "default.handlebars->29->468" ] }, { @@ -13359,7 +13369,7 @@ "zh-chs": "编辑设备用户同意", "zh-cht": "編輯裝置用戶同意", "xloc": [ - "default.handlebars->29->1397" + "default.handlebars->29->1402" ] }, { @@ -13379,7 +13389,7 @@ "zh-chs": "编辑群组", "zh-cht": "編輯群組", "xloc": [ - "default.handlebars->29->683" + "default.handlebars->29->684" ] }, { @@ -13403,10 +13413,10 @@ "default-mobile.handlebars->9->242", "default-mobile.handlebars->9->245", "default-mobile.handlebars->9->285", - "default.handlebars->29->563", - "default.handlebars->29->566", - "default.handlebars->29->569", - "default.handlebars->29->760" + "default.handlebars->29->564", + "default.handlebars->29->567", + "default.handlebars->29->570", + "default.handlebars->29->765" ] }, { @@ -13427,7 +13437,7 @@ "zh-cht": "編輯筆記", "xloc": [ "default-mobile.handlebars->9->452", - "default.handlebars->29->1469" + "default.handlebars->29->1474" ] }, { @@ -13447,7 +13457,7 @@ "zh-chs": "编辑用户同意", "zh-cht": "編輯用戶同意", "xloc": [ - "default.handlebars->29->1396" + "default.handlebars->29->1401" ] }, { @@ -13467,7 +13477,7 @@ "zh-chs": "编辑用户设备组权限", "zh-cht": "編輯用戶裝置群權限", "xloc": [ - "default.handlebars->29->1460" + "default.handlebars->29->1465" ] }, { @@ -13487,7 +13497,7 @@ "zh-chs": "编辑用户设备权限", "zh-cht": "編輯用戶裝置權限", "xloc": [ - "default.handlebars->29->1455" + "default.handlebars->29->1460" ] }, { @@ -13507,7 +13517,7 @@ "zh-chs": "编辑用户组", "zh-cht": "編輯用戶群", "xloc": [ - "default.handlebars->29->1870" + "default.handlebars->29->1875" ] }, { @@ -13527,14 +13537,14 @@ "zh-chs": "编辑用户组设备权限", "zh-cht": "編輯用戶群裝置權限", "xloc": [ - "default.handlebars->29->1457" + "default.handlebars->29->1462" ] }, { "en": "Edit User Group User Consent", "nl": "Bewerk groepsgebruikerstoestemming", "xloc": [ - "default.handlebars->29->1398" + "default.handlebars->29->1403" ] }, { @@ -13575,7 +13585,7 @@ "zh-chs": "编辑标签", "zh-cht": "編輯標籤", "xloc": [ - "default.handlebars->29->443" + "default.handlebars->29->444" ] }, { @@ -13596,12 +13606,12 @@ "zh-cht": "電郵", "xloc": [ "default-mobile.handlebars->9->78", - "default.handlebars->29->1769", - "default.handlebars->29->1896", - "default.handlebars->29->1898", - "default.handlebars->29->1938", - "default.handlebars->29->1954", - "default.handlebars->29->319", + "default.handlebars->29->1774", + "default.handlebars->29->1901", + "default.handlebars->29->1903", + "default.handlebars->29->1943", + "default.handlebars->29->1959", + "default.handlebars->29->320", "login-mobile.handlebars->5->42", "login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3", "login.handlebars->5->43", @@ -13633,7 +13643,7 @@ "zh-cht": "電郵地址變更", "xloc": [ "default-mobile.handlebars->9->79", - "default.handlebars->29->1249" + "default.handlebars->29->1254" ] }, { @@ -13654,7 +13664,7 @@ "zh-cht": "電郵認證", "xloc": [ "default-mobile.handlebars->9->68", - "default.handlebars->29->1017" + "default.handlebars->29->1022" ] }, { @@ -13714,7 +13724,7 @@ "zh-cht": "電郵驗證", "xloc": [ "default-mobile.handlebars->9->77", - "default.handlebars->29->1247" + "default.handlebars->29->1252" ] }, { @@ -13734,7 +13744,7 @@ "zh-chs": "电邮邀请", "zh-cht": "電郵邀請", "xloc": [ - "default.handlebars->29->316" + "default.handlebars->29->317" ] }, { @@ -13754,7 +13764,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->29->1715" + "default.handlebars->29->1720" ] }, { @@ -13774,8 +13784,8 @@ "zh-chs": "电邮已验证", "zh-cht": "電郵已驗證", "xloc": [ - "default.handlebars->29->1716", - "default.handlebars->29->1890" + "default.handlebars->29->1721", + "default.handlebars->29->1895" ] }, { @@ -13795,7 +13805,7 @@ "zh-chs": "电邮已验证。", "zh-cht": "電郵已驗證。", "xloc": [ - "default.handlebars->29->1775" + "default.handlebars->29->1780" ] }, { @@ -13815,7 +13825,7 @@ "zh-chs": "电邮未验证", "zh-cht": "電郵未驗證", "xloc": [ - "default.handlebars->29->1891" + "default.handlebars->29->1896" ] }, { @@ -13879,7 +13889,7 @@ "zh-chs": "已通过电邮验证,并且需要重置密码。", "zh-cht": "已通過電郵驗證,並且需要重置密碼。", "xloc": [ - "default.handlebars->29->1776" + "default.handlebars->29->1781" ] }, { @@ -13899,7 +13909,7 @@ "zh-chs": "电邮/短信流量", "zh-cht": "電郵/短信流量", "xloc": [ - "default.handlebars->29->2097" + "default.handlebars->29->2102" ] }, { @@ -13945,7 +13955,7 @@ "zh-chs": "启用邀请代码", "zh-cht": "啟用邀請代碼", "xloc": [ - "default.handlebars->29->1492" + "default.handlebars->29->1497" ] }, { @@ -13986,7 +13996,7 @@ "zh-cht": "啟用電郵二因子鑑別。", "xloc": [ "default-mobile.handlebars->9->70", - "default.handlebars->29->1019" + "default.handlebars->29->1024" ] }, { @@ -14026,7 +14036,7 @@ "zh-chs": "已启用", "zh-cht": "已啟用", "xloc": [ - "default.handlebars->29->2031" + "default.handlebars->29->2036" ] }, { @@ -14046,7 +14056,7 @@ "zh-chs": "启用电子邮件两因素身份验证", "zh-cht": "啟用電子郵件兩因素身份驗證", "xloc": [ - "default.handlebars->29->1656" + "default.handlebars->29->1661" ] }, { @@ -14086,7 +14096,7 @@ "zh-chs": "时间结束", "zh-cht": "時間結束", "xloc": [ - "default.handlebars->29->2028" + "default.handlebars->29->2033" ] }, { @@ -14106,7 +14116,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”", "xloc": [ - "default.handlebars->29->1579" + "default.handlebars->29->1584" ] }, { @@ -14126,7 +14136,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”", "xloc": [ - "default.handlebars->29->1580" + "default.handlebars->29->1585" ] }, { @@ -14146,7 +14156,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”", "xloc": [ - "default.handlebars->29->1577" + "default.handlebars->29->1582" ] }, { @@ -14166,7 +14176,7 @@ "zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”", "zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”", "xloc": [ - "default.handlebars->29->1578" + "default.handlebars->29->1583" ] }, { @@ -14186,7 +14196,7 @@ "zh-chs": "英文", "zh-cht": "英文", "xloc": [ - "default.handlebars->29->1081" + "default.handlebars->29->1086" ] }, { @@ -14206,7 +14216,7 @@ "zh-chs": "英文(澳洲)", "zh-cht": "英文(澳洲)", "xloc": [ - "default.handlebars->29->1082" + "default.handlebars->29->1087" ] }, { @@ -14226,7 +14236,7 @@ "zh-chs": "英文(伯利茲)", "zh-cht": "英文(伯利茲)", "xloc": [ - "default.handlebars->29->1083" + "default.handlebars->29->1088" ] }, { @@ -14246,7 +14256,7 @@ "zh-chs": "英文(加拿大)", "zh-cht": "英文(加拿大)", "xloc": [ - "default.handlebars->29->1084" + "default.handlebars->29->1089" ] }, { @@ -14266,7 +14276,7 @@ "zh-chs": "英文(爱尔兰)", "zh-cht": "英文(愛爾蘭)", "xloc": [ - "default.handlebars->29->1085" + "default.handlebars->29->1090" ] }, { @@ -14286,7 +14296,7 @@ "zh-chs": "英文(牙买加)", "zh-cht": "英文(牙買加)", "xloc": [ - "default.handlebars->29->1086" + "default.handlebars->29->1091" ] }, { @@ -14306,7 +14316,7 @@ "zh-chs": "英文(纽西兰)", "zh-cht": "英文(紐西蘭)", "xloc": [ - "default.handlebars->29->1087" + "default.handlebars->29->1092" ] }, { @@ -14326,7 +14336,7 @@ "zh-chs": "英文(菲律宾)", "zh-cht": "英文(菲律賓)", "xloc": [ - "default.handlebars->29->1088" + "default.handlebars->29->1093" ] }, { @@ -14346,7 +14356,7 @@ "zh-chs": "英语(南非)", "zh-cht": "英語(南非)", "xloc": [ - "default.handlebars->29->1089" + "default.handlebars->29->1094" ] }, { @@ -14366,7 +14376,7 @@ "zh-chs": "英文(特立尼达和多巴哥)", "zh-cht": "英文(特立尼達和多巴哥)", "xloc": [ - "default.handlebars->29->1090" + "default.handlebars->29->1095" ] }, { @@ -14386,7 +14396,7 @@ "zh-chs": "英文(英国)", "zh-cht": "英文(英國)", "xloc": [ - "default.handlebars->29->1091" + "default.handlebars->29->1096" ] }, { @@ -14406,7 +14416,7 @@ "zh-chs": "美国英文", "zh-cht": "美國英語", "xloc": [ - "default.handlebars->29->1092" + "default.handlebars->29->1097" ] }, { @@ -14426,7 +14436,7 @@ "zh-chs": "英文(津巴布韦)", "zh-cht": "英文(津巴布韋)", "xloc": [ - "default.handlebars->29->1093" + "default.handlebars->29->1098" ] }, { @@ -14446,8 +14456,8 @@ "zh-chs": "输入", "zh-cht": "輸入", "xloc": [ - "default.handlebars->29->1275", - "default.handlebars->29->1276" + "default.handlebars->29->1280", + "default.handlebars->29->1281" ] }, { @@ -14467,7 +14477,7 @@ "zh-chs": "输入管理领域名称的逗号分隔列表。", "zh-cht": "輸入管理領域名稱的逗號分隔列表。", "xloc": [ - "default.handlebars->29->1780" + "default.handlebars->29->1785" ] }, { @@ -14487,7 +14497,7 @@ "zh-chs": "输入IP地址范围以扫描英特尔AMT设备。", "zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。", "xloc": [ - "default.handlebars->29->307" + "default.handlebars->29->308" ] }, { @@ -14507,8 +14517,8 @@ "zh-chs": "输入文本,然后单击“确定”以使用美式英语键盘远程输入文本。在继续操作之前,请确保将远程鼠标放置在正确的位置。", "zh-cht": "輸入文本,然後單擊“確定”以使用美式英語鍵盤遠程輸入文本。在繼續操作之前,請確保將遠程光標放置在正確的位置。", "xloc": [ - "default.handlebars->29->835", - "desktop.handlebars->3->22" + "default.handlebars->29->840", + "desktop.handlebars->3->21" ] }, { @@ -14570,7 +14580,7 @@ "zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。", "zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。", "xloc": [ - "default.handlebars->29->1014" + "default.handlebars->29->1019" ] }, { @@ -14630,7 +14640,7 @@ "zh-chs": "世界文", "zh-cht": "世界語", "xloc": [ - "default.handlebars->29->1094" + "default.handlebars->29->1099" ] }, { @@ -14650,7 +14660,7 @@ "zh-chs": "爱沙尼亚文", "zh-cht": "愛沙尼亞語", "xloc": [ - "default.handlebars->29->1095" + "default.handlebars->29->1100" ] }, { @@ -14670,7 +14680,7 @@ "zh-chs": "事件详情", "zh-cht": "事件詳情", "xloc": [ - "default.handlebars->29->918" + "default.handlebars->29->923" ] }, { @@ -14690,7 +14700,7 @@ "zh-chs": "事件列表输出", "zh-cht": "事件列表輸出", "xloc": [ - "default.handlebars->29->1691" + "default.handlebars->29->1696" ] }, { @@ -14782,8 +14792,8 @@ "zh-chs": "到期时间", "zh-cht": "到期時間", "xloc": [ - "default.handlebars->29->188", - "default.handlebars->29->728" + "default.handlebars->29->189", + "default.handlebars->29->732" ] }, { @@ -14803,7 +14813,13 @@ "zh-chs": "于{0}到期", "zh-cht": "於{0}到期", "xloc": [ - "desktop.handlebars->3->6" + "desktop.handlebars->3->26" + ] + }, + { + "en": "Expires {0}", + "xloc": [ + "desktop.handlebars->3->27" ] }, { @@ -14823,7 +14839,7 @@ "zh-chs": "输出设备信息", "zh-cht": "輸出裝置訊息", "xloc": [ - "default.handlebars->29->447" + "default.handlebars->29->448" ] }, { @@ -14843,7 +14859,7 @@ "zh-chs": "扩充式ASCII", "zh-cht": "擴充式ASCII", "xloc": [ - "default.handlebars->29->863" + "default.handlebars->29->868" ] }, { @@ -14883,7 +14899,7 @@ "zh-chs": "外部", "zh-cht": "外部", "xloc": [ - "default.handlebars->29->2082" + "default.handlebars->29->2087" ] }, { @@ -14923,7 +14939,7 @@ "zh-chs": "FYRO马其顿语", "zh-cht": "FYRO馬其頓語", "xloc": [ - "default.handlebars->29->1145" + "default.handlebars->29->1150" ] }, { @@ -14943,7 +14959,7 @@ "zh-chs": "法罗语", "zh-cht": "法羅語", "xloc": [ - "default.handlebars->29->1096" + "default.handlebars->29->1101" ] }, { @@ -14983,7 +14999,7 @@ "zh-chs": "本地用户拒绝后无法启动远程桌面", "zh-cht": "本地用戶拒絕後無法啟動遠程桌面", "xloc": [ - "default.handlebars->29->1602" + "default.handlebars->29->1607" ] }, { @@ -15003,7 +15019,7 @@ "zh-chs": "本地用户拒绝后无法启动远程文件", "zh-cht": "本地用戶拒絕後無法啟動遠程文件", "xloc": [ - "default.handlebars->29->1609" + "default.handlebars->29->1614" ] }, { @@ -15023,8 +15039,8 @@ "zh-chs": "无法启动远程终端接合{0}({1})", "zh-cht": "無法啟動遠程終端接合{0}({1})", "xloc": [ - "default.handlebars->29->817", - "desktop.handlebars->3->9" + "default.handlebars->29->822", + "desktop.handlebars->3->8" ] }, { @@ -15044,7 +15060,7 @@ "zh-chs": "波斯文(波斯文)", "zh-cht": "波斯語(波斯語)", "xloc": [ - "default.handlebars->29->1097" + "default.handlebars->29->1102" ] }, { @@ -15086,7 +15102,7 @@ "zh-chs": "功能", "zh-cht": "功能", "xloc": [ - "default.handlebars->29->1320" + "default.handlebars->29->1325" ] }, { @@ -15106,7 +15122,7 @@ "zh-chs": "斐济", "zh-cht": "斐濟", "xloc": [ - "default.handlebars->29->1098" + "default.handlebars->29->1103" ] }, { @@ -15147,8 +15163,8 @@ "zh-cht": "檔案編輯器", "xloc": [ "default-mobile.handlebars->9->318", - "default.handlebars->29->505", - "default.handlebars->29->889" + "default.handlebars->29->506", + "default.handlebars->29->894" ] }, { @@ -15168,8 +15184,8 @@ "zh-chs": "档案操作", "zh-cht": "檔案操作", "xloc": [ - "default.handlebars->29->874", - "default.handlebars->29->876" + "default.handlebars->29->879", + "default.handlebars->29->881" ] }, { @@ -15209,7 +15225,7 @@ "zh-chs": "文件系统驱动", "zh-cht": "FileSystemDriver", "xloc": [ - "default.handlebars->29->844" + "default.handlebars->29->849" ] }, { @@ -15231,9 +15247,9 @@ "xloc": [ "default-mobile.handlebars->9->171", "default-mobile.handlebars->9->268", - "default.handlebars->29->1406", - "default.handlebars->29->2016", - "default.handlebars->29->258", + "default.handlebars->29->1411", + "default.handlebars->29->2021", + "default.handlebars->29->259", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles", "default.handlebars->contextMenu->cxfiles" ] @@ -15275,10 +15291,10 @@ "zh-chs": "档案通知", "zh-cht": "檔案通知", "xloc": [ - "default.handlebars->29->1328", - "default.handlebars->29->1836", - "default.handlebars->29->1923", - "default.handlebars->29->591" + "default.handlebars->29->1333", + "default.handlebars->29->1841", + "default.handlebars->29->1928", + "default.handlebars->29->592" ] }, { @@ -15298,10 +15314,10 @@ "zh-chs": "档案提示", "zh-cht": "檔案提示", "xloc": [ - "default.handlebars->29->1327", - "default.handlebars->29->1835", - "default.handlebars->29->1922", - "default.handlebars->29->590" + "default.handlebars->29->1332", + "default.handlebars->29->1840", + "default.handlebars->29->1927", + "default.handlebars->29->591" ] }, { @@ -15344,7 +15360,7 @@ "zh-chs": "录制会话已完成,{0}秒", "zh-cht": "錄製會話已完成,{0}秒", "xloc": [ - "default.handlebars->29->1575" + "default.handlebars->29->1580" ] }, { @@ -15364,7 +15380,7 @@ "zh-chs": "芬兰", "zh-cht": "芬蘭", "xloc": [ - "default.handlebars->29->1099" + "default.handlebars->29->1104" ] }, { @@ -15437,7 +15453,7 @@ "en": "For ACM activation, Intel® AMT will need to be set to the following trusted FQDN:", "nl": "Voor ACM activering moet Intel® AMT worden ingesteld op de volgende vertrouwde FQDN:", "xloc": [ - "default.handlebars->29->298" + "default.handlebars->29->299" ] }, { @@ -15518,8 +15534,8 @@ "zh-chs": "下次登录时强制重置密码。", "zh-cht": "下次登入時強制重置密碼。", "xloc": [ - "default.handlebars->29->1774", - "default.handlebars->29->1963" + "default.handlebars->29->1779", + "default.handlebars->29->1968" ] }, { @@ -15602,7 +15618,7 @@ "zh-chs": "格式化", "zh-cht": "格式化", "xloc": [ - "default.handlebars->29->1682" + "default.handlebars->29->1687" ] }, { @@ -15643,8 +15659,8 @@ "zh-chs": "自由", "zh-cht": "自由", "xloc": [ - "default.handlebars->29->2040", - "default.handlebars->29->2042" + "default.handlebars->29->2045", + "default.handlebars->29->2047" ] }, { @@ -15685,7 +15701,7 @@ "zh-chs": "法文(比利时)", "zh-cht": "法語(比利時)", "xloc": [ - "default.handlebars->29->1101" + "default.handlebars->29->1106" ] }, { @@ -15705,7 +15721,7 @@ "zh-chs": "法文(加拿大)", "zh-cht": "法語(加拿大)", "xloc": [ - "default.handlebars->29->1102" + "default.handlebars->29->1107" ] }, { @@ -15725,7 +15741,7 @@ "zh-chs": "法文(法国)", "zh-cht": "法語(法國)", "xloc": [ - "default.handlebars->29->1103" + "default.handlebars->29->1108" ] }, { @@ -15745,7 +15761,7 @@ "zh-chs": "法文(卢森堡)", "zh-cht": "法語(盧森堡)", "xloc": [ - "default.handlebars->29->1104" + "default.handlebars->29->1109" ] }, { @@ -15765,7 +15781,7 @@ "zh-chs": "法文(摩纳哥)", "zh-cht": "法語(摩納哥)", "xloc": [ - "default.handlebars->29->1105" + "default.handlebars->29->1110" ] }, { @@ -15785,7 +15801,7 @@ "zh-chs": "法文(标准)", "zh-cht": "法語(標準)", "xloc": [ - "default.handlebars->29->1100" + "default.handlebars->29->1105" ] }, { @@ -15805,7 +15821,7 @@ "zh-chs": "法文(瑞士)", "zh-cht": "法語(瑞士)", "xloc": [ - "default.handlebars->29->1106" + "default.handlebars->29->1111" ] }, { @@ -15825,7 +15841,7 @@ "zh-chs": "弗里斯兰文", "zh-cht": "弗里斯蘭語", "xloc": [ - "default.handlebars->29->1107" + "default.handlebars->29->1112" ] }, { @@ -15845,7 +15861,7 @@ "zh-chs": "弗留利", "zh-cht": "弗留利", "xloc": [ - "default.handlebars->29->1108" + "default.handlebars->29->1113" ] }, { @@ -15869,9 +15885,9 @@ "default-mobile.handlebars->9->415", "default-mobile.handlebars->9->424", "default-mobile.handlebars->9->444", - "default.handlebars->29->1282", - "default.handlebars->29->1425", - "default.handlebars->29->1786" + "default.handlebars->29->1287", + "default.handlebars->29->1430", + "default.handlebars->29->1791" ] }, { @@ -15891,7 +15907,7 @@ "zh-chs": "完整管理员(保留所有权利)", "zh-cht": "完整管理員(保留所有權利)", "xloc": [ - "default.handlebars->29->1461" + "default.handlebars->29->1466" ] }, { @@ -15928,7 +15944,7 @@ "zh-chs": "完整设备权限", "zh-cht": "完整裝置權限", "xloc": [ - "default.handlebars->29->664" + "default.handlebars->29->665" ] }, { @@ -15948,7 +15964,7 @@ "zh-chs": "全部权限", "zh-cht": "全部權限", "xloc": [ - "default.handlebars->29->682" + "default.handlebars->29->683" ] }, { @@ -15990,15 +16006,15 @@ "zh-chs": "完整管理员", "zh-cht": "完整管理員", "xloc": [ - "default.handlebars->29->1884" + "default.handlebars->29->1889" ] }, { "en": "Fully Automatic", "nl": "Vol automatisch", "xloc": [ - "default.handlebars->29->1345", - "default.handlebars->29->1368" + "default.handlebars->29->1350", + "default.handlebars->29->1373" ] }, { @@ -16019,7 +16035,7 @@ "zh-cht": "GPU", "xloc": [ "default-mobile.handlebars->9->391", - "default.handlebars->29->980" + "default.handlebars->29->985" ] }, { @@ -16039,7 +16055,7 @@ "zh-chs": "盖尔文(爱尔兰)", "zh-cht": "蓋爾語(愛爾蘭)", "xloc": [ - "default.handlebars->29->1110" + "default.handlebars->29->1115" ] }, { @@ -16059,7 +16075,7 @@ "zh-chs": "盖尔文(苏格兰文)", "zh-cht": "蓋爾語(蘇格蘭語)", "xloc": [ - "default.handlebars->29->1109" + "default.handlebars->29->1114" ] }, { @@ -16079,7 +16095,7 @@ "zh-chs": "加拉契文", "zh-cht": "加拉契語", "xloc": [ - "default.handlebars->29->1111" + "default.handlebars->29->1116" ] }, { @@ -16165,7 +16181,7 @@ "zh-chs": "一般信息", "zh-cht": "一般訊息", "xloc": [ - "default.handlebars->29->512" + "default.handlebars->29->513" ] }, { @@ -16205,7 +16221,7 @@ "zh-chs": "格鲁吉亚文", "zh-cht": "格魯吉亞文", "xloc": [ - "default.handlebars->29->1112" + "default.handlebars->29->1117" ] }, { @@ -16225,7 +16241,7 @@ "zh-chs": "德文(奥地利)", "zh-cht": "德語(奧地利)", "xloc": [ - "default.handlebars->29->1114" + "default.handlebars->29->1119" ] }, { @@ -16245,7 +16261,7 @@ "zh-chs": "德文(德国)", "zh-cht": "德文(德國)", "xloc": [ - "default.handlebars->29->1115" + "default.handlebars->29->1120" ] }, { @@ -16265,7 +16281,7 @@ "zh-chs": "德文(列支敦士登)", "zh-cht": "德文(列支敦士登)", "xloc": [ - "default.handlebars->29->1116" + "default.handlebars->29->1121" ] }, { @@ -16285,7 +16301,7 @@ "zh-chs": "德文(卢森堡)", "zh-cht": "德語(盧森堡)", "xloc": [ - "default.handlebars->29->1117" + "default.handlebars->29->1122" ] }, { @@ -16305,7 +16321,7 @@ "zh-chs": "德文(标准)", "zh-cht": "德語(標準)", "xloc": [ - "default.handlebars->29->1113" + "default.handlebars->29->1118" ] }, { @@ -16325,7 +16341,7 @@ "zh-chs": "德文(瑞士)", "zh-cht": "德文(瑞士)", "xloc": [ - "default.handlebars->29->1118" + "default.handlebars->29->1123" ] }, { @@ -16345,7 +16361,7 @@ "zh-chs": "获取此设备的MQTT登录凭证。", "zh-cht": "獲取此裝置的MQTT登入憑證。", "xloc": [ - "default.handlebars->29->640" + "default.handlebars->29->641" ] }, { @@ -16386,7 +16402,7 @@ "zh-chs": "正在获取剪贴板内容,{0}个字节", "zh-cht": "正在獲取剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->29->1589" + "default.handlebars->29->1594" ] }, { @@ -16406,8 +16422,8 @@ "zh-chs": "进入登录页面", "zh-cht": "進入登入頁面", "xloc": [ - "message.handlebars->3->13", - "message2.handlebars->5->13" + "message.handlebars->3->16", + "message2.handlebars->5->16" ] }, { @@ -16448,7 +16464,7 @@ "zh-chs": "好", "zh-cht": "好", "xloc": [ - "default.handlebars->29->1278" + "default.handlebars->29->1283" ] }, { @@ -16493,9 +16509,9 @@ "zh-chs": "Google云端硬盘备份", "zh-cht": "Google雲端硬盤備份", "xloc": [ - "default.handlebars->29->1289", - "default.handlebars->29->1292", - "default.handlebars->29->204" + "default.handlebars->29->1294", + "default.handlebars->29->1297", + "default.handlebars->29->205" ] }, { @@ -16515,7 +16531,7 @@ "zh-chs": "Google云端硬盘控制台", "zh-cht": "Google雲端硬盤控制台", "xloc": [ - "default.handlebars->29->1286" + "default.handlebars->29->1291" ] }, { @@ -16555,7 +16571,7 @@ "zh-chs": "Google云端硬盘备份当前处于活动状态。", "zh-cht": "Google雲端硬盤備份當前處於活動狀態。", "xloc": [ - "default.handlebars->29->1290" + "default.handlebars->29->1295" ] }, { @@ -16575,7 +16591,7 @@ "zh-chs": "希腊文", "zh-cht": "希臘文", "xloc": [ - "default.handlebars->29->1119" + "default.handlebars->29->1124" ] }, { @@ -16596,7 +16612,7 @@ "zh-cht": "群", "xloc": [ "default-mobile.handlebars->9->218", - "default.handlebars->29->540", + "default.handlebars->29->541", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1" ] }, @@ -16617,9 +16633,9 @@ "zh-chs": "集体指令", "zh-cht": "集體指令", "xloc": [ - "default.handlebars->29->1730", - "default.handlebars->29->1809", - "default.handlebars->29->448", + "default.handlebars->29->1735", + "default.handlebars->29->1814", + "default.handlebars->29->449", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p4->3->1->0->3->3", "default.handlebars->container->column_l->p50->3->1->0->3->3" @@ -16642,7 +16658,7 @@ "zh-chs": "通过...分组", "zh-cht": "通過...分群", "xloc": [ - "default.handlebars->29->1678" + "default.handlebars->29->1683" ] }, { @@ -16662,7 +16678,7 @@ "zh-chs": "组标识符", "zh-cht": "群標識符", "xloc": [ - "default.handlebars->29->1826" + "default.handlebars->29->1831" ] }, { @@ -16682,7 +16698,7 @@ "zh-chs": "群组成员", "zh-cht": "群組成員", "xloc": [ - "default.handlebars->29->1847" + "default.handlebars->29->1852" ] }, { @@ -16702,7 +16718,7 @@ "zh-chs": "用户{0}的群组权限。", "zh-cht": "用戶{0}的群組權限。", "xloc": [ - "default.handlebars->29->1424" + "default.handlebars->29->1429" ] }, { @@ -16722,7 +16738,7 @@ "zh-chs": "{0}的群组权限。", "zh-cht": "{0}的群組權限。", "xloc": [ - "default.handlebars->29->1423" + "default.handlebars->29->1428" ] }, { @@ -16790,7 +16806,7 @@ "zh-cht": "來賓姓名", "xloc": [ "default.handlebars->29->187", - "default.handlebars->29->712" + "default.handlebars->29->713" ] }, { @@ -16810,7 +16826,7 @@ "zh-chs": "古久拉提", "zh-cht": "古久拉提", "xloc": [ - "default.handlebars->29->1120" + "default.handlebars->29->1125" ] }, { @@ -16853,7 +16869,7 @@ "zh-chs": "海地文", "zh-cht": "海地文", "xloc": [ - "default.handlebars->29->1121" + "default.handlebars->29->1126" ] }, { @@ -16893,7 +16909,7 @@ "zh-chs": "强行断开代理", "zh-cht": "強行斷開代理", "xloc": [ - "default.handlebars->29->1009" + "default.handlebars->29->1014" ] }, { @@ -16913,7 +16929,7 @@ "zh-chs": "堆总数", "zh-cht": "堆總數", "xloc": [ - "default.handlebars->29->2084" + "default.handlebars->29->2089" ] }, { @@ -16933,7 +16949,7 @@ "zh-chs": "堆使用", "zh-cht": "堆使用", "xloc": [ - "default.handlebars->29->2083" + "default.handlebars->29->2088" ] }, { @@ -16953,7 +16969,7 @@ "zh-chs": "希伯来文", "zh-cht": "希伯來文", "xloc": [ - "default.handlebars->29->1122" + "default.handlebars->29->1127" ] }, { @@ -16988,7 +17004,7 @@ "en": "Help Requested, user: {0}, details: {1}", "nl": "Hulp verzoek van, user: {0}, details: {1}", "xloc": [ - "default.handlebars->29->1666" + "default.handlebars->29->1671" ] }, { @@ -16996,7 +17012,7 @@ "nl": "Hulp verzoeken", "xloc": [ "default-mobile.handlebars->9->161", - "default.handlebars->29->248" + "default.handlebars->29->249" ] }, { @@ -17023,7 +17039,7 @@ "zh-chs": "帮助翻译MeshCentral", "zh-cht": "幫助翻譯MeshCentral", "xloc": [ - "default.handlebars->29->1237" + "default.handlebars->29->1242" ] }, { @@ -17106,7 +17122,7 @@ "xloc": [ "default-mobile.handlebars->9->186", "default-mobile.handlebars->9->193", - "default.handlebars->29->409", + "default.handlebars->29->410", "default.handlebars->29->5" ] }, @@ -17127,7 +17143,7 @@ "zh-chs": "印地文", "zh-cht": "印地文", "xloc": [ - "default.handlebars->29->1123" + "default.handlebars->29->1128" ] }, { @@ -17165,7 +17181,7 @@ "zh-cht": "保存1個項目進行複製", "xloc": [ "default-mobile.handlebars->9->327", - "default.handlebars->29->899" + "default.handlebars->29->904" ] }, { @@ -17186,7 +17202,7 @@ "zh-cht": "保存1個項目進行移動", "xloc": [ "default-mobile.handlebars->9->331", - "default.handlebars->29->903" + "default.handlebars->29->908" ] }, { @@ -17207,7 +17223,7 @@ "zh-cht": "保留{0}個項目進行複製", "xloc": [ "default-mobile.handlebars->9->325", - "default.handlebars->29->897" + "default.handlebars->29->902" ] }, { @@ -17228,7 +17244,7 @@ "zh-cht": "保存{0}個項目以進行移動", "xloc": [ "default-mobile.handlebars->9->329", - "default.handlebars->29->901" + "default.handlebars->29->906" ] }, { @@ -17249,7 +17265,7 @@ "zh-cht": "保存{0}項目{1}給{2}", "xloc": [ "default-mobile.handlebars->9->129", - "default.handlebars->29->1562" + "default.handlebars->29->1567" ] }, { @@ -17273,9 +17289,9 @@ "default-mobile.handlebars->9->221", "default-mobile.handlebars->9->223", "default-mobile.handlebars->9->291", - "default.handlebars->29->288", - "default.handlebars->29->545", - "default.handlebars->29->810" + "default.handlebars->29->289", + "default.handlebars->29->546", + "default.handlebars->29->815" ] }, { @@ -17295,7 +17311,7 @@ "zh-chs": "主机名同步", "zh-cht": "主機名同步", "xloc": [ - "default.handlebars->29->1317" + "default.handlebars->29->1322" ] }, { @@ -17315,7 +17331,7 @@ "zh-chs": "匈牙利文", "zh-cht": "匈牙利文", "xloc": [ - "default.handlebars->29->1124" + "default.handlebars->29->1129" ] }, { @@ -17335,8 +17351,8 @@ "zh-chs": "IP范围", "zh-cht": "IP範圍", "xloc": [ - "default.handlebars->29->308", - "default.handlebars->29->310" + "default.handlebars->29->309", + "default.handlebars->29->311" ] }, { @@ -17380,9 +17396,9 @@ "xloc": [ "default-mobile.handlebars->9->360", "default-mobile.handlebars->9->364", - "default.handlebars->29->939", - "default.handlebars->29->949", - "default.handlebars->29->953" + "default.handlebars->29->944", + "default.handlebars->29->954", + "default.handlebars->29->958" ] }, { @@ -17404,9 +17420,9 @@ "xloc": [ "default-mobile.handlebars->9->358", "default-mobile.handlebars->9->362", - "default.handlebars->29->937", - "default.handlebars->29->947", - "default.handlebars->29->951" + "default.handlebars->29->942", + "default.handlebars->29->952", + "default.handlebars->29->956" ] }, { @@ -17428,10 +17444,10 @@ "xloc": [ "default-mobile.handlebars->9->357", "default-mobile.handlebars->9->359", - "default.handlebars->29->936", - "default.handlebars->29->938", - "default.handlebars->29->946", - "default.handlebars->29->948" + "default.handlebars->29->941", + "default.handlebars->29->943", + "default.handlebars->29->951", + "default.handlebars->29->953" ] }, { @@ -17516,8 +17532,8 @@ "xloc": [ "default-mobile.handlebars->9->361", "default-mobile.handlebars->9->363", - "default.handlebars->29->950", - "default.handlebars->29->952" + "default.handlebars->29->955", + "default.handlebars->29->957" ] }, { @@ -17597,7 +17613,7 @@ "zh-chs": "冰岛文", "zh-cht": "冰島文", "xloc": [ - "default.handlebars->29->1125" + "default.handlebars->29->1130" ] }, { @@ -17618,7 +17634,7 @@ "zh-cht": "圖符選擇", "xloc": [ "default-mobile.handlebars->9->289", - "default.handlebars->29->808" + "default.handlebars->29->813" ] }, { @@ -17639,14 +17655,14 @@ "zh-cht": "識別符", "xloc": [ "default-mobile.handlebars->9->389", - "default.handlebars->29->978" + "default.handlebars->29->983" ] }, { "en": "If in CCM, reactivate Intel® AMT", "nl": "Indien in CCM, heractiveer Intel® AMT", "xloc": [ - "default.handlebars->29->1378" + "default.handlebars->29->1383" ] }, { @@ -17772,9 +17788,9 @@ "zh-cht": "個別裝置", "xloc": [ "default-mobile.handlebars->9->148", - "default.handlebars->29->207", - "default.handlebars->29->223", - "default.handlebars->29->224" + "default.handlebars->29->208", + "default.handlebars->29->224", + "default.handlebars->29->225" ] }, { @@ -17794,7 +17810,7 @@ "zh-chs": "印度尼西亚文", "zh-cht": "印度尼西亞文", "xloc": [ - "default.handlebars->29->1126" + "default.handlebars->29->1131" ] }, { @@ -17967,11 +17983,11 @@ "zh-chs": "安装类型", "zh-cht": "安裝方式", "xloc": [ - "default.handlebars->29->1494", - "default.handlebars->29->1501", - "default.handlebars->29->334", - "default.handlebars->29->348", - "default.handlebars->29->362" + "default.handlebars->29->1499", + "default.handlebars->29->1506", + "default.handlebars->29->335", + "default.handlebars->29->349", + "default.handlebars->29->363" ] }, { @@ -17991,7 +18007,7 @@ "zh-chs": "英特尔(F10 = ESC + [OM)", "zh-cht": "Intel(F10 = ESC + [OM)", "xloc": [ - "default.handlebars->29->865", + "default.handlebars->29->870", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons" ] }, @@ -18012,7 +18028,7 @@ "zh-chs": "英特尔AMT", "zh-cht": "英特爾AMT", "xloc": [ - "default.handlebars->29->2080" + "default.handlebars->29->2085" ] }, { @@ -18032,7 +18048,7 @@ "zh-chs": "英特尔ASCII", "zh-cht": "Intel ASCII", "xloc": [ - "default.handlebars->29->864" + "default.handlebars->29->869" ] }, { @@ -18055,21 +18071,21 @@ "default-mobile.handlebars->9->205", "default-mobile.handlebars->9->247", "default-mobile.handlebars->9->252", - "default.handlebars->29->1335", - "default.handlebars->29->1346", - "default.handlebars->29->1513", - "default.handlebars->29->1521", - "default.handlebars->29->2102", - "default.handlebars->29->515", - "default.handlebars->29->573", - "default.handlebars->29->601" + "default.handlebars->29->1340", + "default.handlebars->29->1351", + "default.handlebars->29->1518", + "default.handlebars->29->1526", + "default.handlebars->29->2107", + "default.handlebars->29->516", + "default.handlebars->29->574", + "default.handlebars->29->602" ] }, { "en": "Intel® AMT ACM", "nl": "Intel® AMT ACM", "xloc": [ - "default.handlebars->29->306" + "default.handlebars->29->307" ] }, { @@ -18090,7 +18106,7 @@ "zh-cht": "Intel® AMT CIRA", "xloc": [ "default-mobile.handlebars->9->251", - "default.handlebars->29->599" + "default.handlebars->29->600" ] }, { @@ -18150,9 +18166,9 @@ "zh-chs": "英特尔®AMT CIRA已连接并可以使用。", "zh-cht": "Intel® AMT CIRA已連接並可以使用。", "xloc": [ - "default.handlebars->29->214", - "default.handlebars->29->423", - "default.handlebars->29->598" + "default.handlebars->29->215", + "default.handlebars->29->424", + "default.handlebars->29->599" ] }, { @@ -18215,7 +18231,7 @@ "zh-chs": "英特尔®AMT政策", "zh-cht": "Intel® AMT政策", "xloc": [ - "default.handlebars->29->1369" + "default.handlebars->29->1374" ] }, { @@ -18235,7 +18251,7 @@ "zh-chs": "英特尔®AMT重定向", "zh-cht": "Intel® AMT重定向", "xloc": [ - "default.handlebars->29->2018", + "default.handlebars->29->2023", "player.handlebars->3->14" ] }, @@ -18256,7 +18272,7 @@ "zh-chs": "英特尔®AMT标签", "zh-cht": "Intel® AMT標籤", "xloc": [ - "default.handlebars->29->577" + "default.handlebars->29->578" ] }, { @@ -18276,7 +18292,7 @@ "zh-chs": "英特尔®AMT WSMAN", "zh-cht": "Intle® AMT WSMAN", "xloc": [ - "default.handlebars->29->2017", + "default.handlebars->29->2022", "player.handlebars->3->13" ] }, @@ -18315,8 +18331,8 @@ "zh-cht": "Intel ®AMT已連接", "xloc": [ "default-mobile.handlebars->9->262", - "default.handlebars->29->646", - "default.handlebars->29->647" + "default.handlebars->29->647", + "default.handlebars->29->648" ] }, { @@ -18336,8 +18352,8 @@ "zh-chs": "英特尔®AMT桌面和串行事件。", "zh-cht": "Intel® AMT桌面和串行事件。", "xloc": [ - "default.handlebars->29->1243", - "default.handlebars->29->1509" + "default.handlebars->29->1248", + "default.handlebars->29->1514" ] }, { @@ -18359,8 +18375,8 @@ "xloc": [ "default-mobile.handlebars->9->263", "default.handlebars->29->164", - "default.handlebars->29->648", - "default.handlebars->29->649" + "default.handlebars->29->649", + "default.handlebars->29->650" ] }, { @@ -18380,7 +18396,7 @@ "zh-chs": "在Intel® AMT尔AMT", "zh-cht": "在管理控制模式下啟動了Intel® AMT", "xloc": [ - "default.handlebars->29->559" + "default.handlebars->29->560" ] }, { @@ -18400,7 +18416,7 @@ "zh-chs": "英特尔AMT在客户端控制模式下被激活", "zh-cht": "Intel® AMT在客户端控制模式下被启动", "xloc": [ - "default.handlebars->29->557" + "default.handlebars->29->558" ] }, { @@ -18420,7 +18436,7 @@ "zh-chs": "英特尔®AMT可路由并可以使用。", "zh-cht": "Intel® AMT可路由並可以使用。", "xloc": [ - "default.handlebars->29->600" + "default.handlebars->29->601" ] }, { @@ -18440,8 +18456,8 @@ "zh-chs": "英特尔®AMT是可路由的。", "zh-cht": "Intel® AMT是可路由的。", "xloc": [ - "default.handlebars->29->216", - "default.handlebars->29->425" + "default.handlebars->29->217", + "default.handlebars->29->426" ] }, { @@ -18462,7 +18478,7 @@ "zh-cht": "Intel® AMT已設置TLS網絡安全性", "xloc": [ "default-mobile.handlebars->9->237", - "default.handlebars->29->561" + "default.handlebars->29->562" ] }, { @@ -18523,15 +18539,15 @@ "zh-cht": "僅限Intel® AMT,無代理", "xloc": [ "default-mobile.handlebars->9->406", - "default.handlebars->29->1272", - "default.handlebars->29->1307" + "default.handlebars->29->1277", + "default.handlebars->29->1312" ] }, { "en": "Intel® AMT setup", "nl": "Intel® AMT setup", "xloc": [ - "default.handlebars->29->299" + "default.handlebars->29->300" ] }, { @@ -18568,7 +18584,7 @@ "zh-chs": "英特尔®主动管理技术", "zh-cht": "Intel® Active Management Technology", "xloc": [ - "default.handlebars->29->572" + "default.handlebars->29->573" ] }, { @@ -18589,7 +18605,7 @@ "zh-cht": "Intel ® Active Management Technology(Intel® AMT)", "xloc": [ "default-mobile.handlebars->9->381", - "default.handlebars->29->970" + "default.handlebars->29->975" ] }, { @@ -18610,7 +18626,7 @@ "zh-cht": "Intel® ME", "xloc": [ "default-mobile.handlebars->9->246", - "default.handlebars->29->571" + "default.handlebars->29->572" ] }, { @@ -18630,7 +18646,7 @@ "zh-chs": "英特尔®可管理性引擎", "zh-cht": "Intel® Management Engine", "xloc": [ - "default.handlebars->29->570" + "default.handlebars->29->571" ] }, { @@ -18651,7 +18667,7 @@ "zh-cht": "Intel® M", "xloc": [ "default-mobile.handlebars->9->248", - "default.handlebars->29->575" + "default.handlebars->29->576" ] }, { @@ -18671,7 +18687,7 @@ "zh-chs": "英特尔®标准可管理性", "zh-cht": "Intel® Standard Manageability", "xloc": [ - "default.handlebars->29->574" + "default.handlebars->29->575" ] }, { @@ -18794,7 +18810,7 @@ "zh-chs": "互动", "zh-cht": "互動", "xloc": [ - "default.handlebars->29->845" + "default.handlebars->29->850" ] }, { @@ -18814,11 +18830,11 @@ "zh-chs": "仅限互动", "zh-cht": "僅限互動", "xloc": [ - "default.handlebars->29->1497", - "default.handlebars->29->1504", - "default.handlebars->29->337", - "default.handlebars->29->351", - "default.handlebars->29->365" + "default.handlebars->29->1502", + "default.handlebars->29->1509", + "default.handlebars->29->338", + "default.handlebars->29->352", + "default.handlebars->29->366" ] }, { @@ -18838,7 +18854,7 @@ "zh-chs": "介面", "zh-cht": "介面", "xloc": [ - "default.handlebars->29->623" + "default.handlebars->29->624" ] }, { @@ -18858,7 +18874,7 @@ "zh-chs": "因纽特文", "zh-cht": "因紐特文", "xloc": [ - "default.handlebars->29->1127" + "default.handlebars->29->1132" ] }, { @@ -18867,8 +18883,8 @@ "xloc": [ "default-mobile.handlebars->9->243", "default-mobile.handlebars->9->244", - "default.handlebars->29->567", - "default.handlebars->29->568" + "default.handlebars->29->568", + "default.handlebars->29->569" ] }, { @@ -18888,7 +18904,7 @@ "zh-chs": "无效的设备组类型", "zh-cht": "無效的裝置群類型", "xloc": [ - "default.handlebars->29->2054" + "default.handlebars->29->2059" ] }, { @@ -18908,7 +18924,7 @@ "zh-chs": "无效的JSON", "zh-cht": "無效的JSON", "xloc": [ - "default.handlebars->29->2048" + "default.handlebars->29->2053" ] }, { @@ -18928,8 +18944,8 @@ "zh-chs": "无效的JSON档案格式。", "zh-cht": "無效的JSON檔案格式。", "xloc": [ - "default.handlebars->29->1748", - "default.handlebars->29->1750" + "default.handlebars->29->1753", + "default.handlebars->29->1755" ] }, { @@ -18949,7 +18965,7 @@ "zh-chs": "无效的JSON档案:{0}。", "zh-cht": "無效的JSON檔案:{0}。", "xloc": [ - "default.handlebars->29->1746" + "default.handlebars->29->1751" ] }, { @@ -18969,7 +18985,7 @@ "zh-chs": "无效的PKCS签名", "zh-cht": "無效的PKCS簽名", "xloc": [ - "default.handlebars->29->2046" + "default.handlebars->29->2051" ] }, { @@ -18989,7 +19005,7 @@ "zh-chs": "無效的RSA密碼", "zh-cht": "無效的RSA密碼", "xloc": [ - "default.handlebars->29->2047" + "default.handlebars->29->2052" ] }, { @@ -19116,7 +19132,7 @@ "zh-chs": "使电邮无效", "zh-cht": "使電郵無效", "xloc": [ - "default.handlebars->29->1724" + "default.handlebars->29->1729" ] }, { @@ -19173,7 +19189,7 @@ "zh-chs": "邀请类型", "zh-cht": "邀請類型", "xloc": [ - "default.handlebars->29->314" + "default.handlebars->29->315" ] }, { @@ -19193,7 +19209,7 @@ "zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:", "zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->29->1499" + "default.handlebars->29->1504" ] }, { @@ -19233,9 +19249,9 @@ "zh-chs": "邀请", "zh-cht": "邀請", "xloc": [ - "default.handlebars->29->1356", - "default.handlebars->29->285", - "default.handlebars->29->353" + "default.handlebars->29->1361", + "default.handlebars->29->286", + "default.handlebars->29->354" ] }, { @@ -19255,11 +19271,11 @@ "zh-chs": "邀请码", "zh-cht": "邀請碼", "xloc": [ - "default.handlebars->29->1339", - "default.handlebars->29->1493", + "default.handlebars->29->1344", "default.handlebars->29->1498", - "default.handlebars->29->1500", - "default.handlebars->29->1505" + "default.handlebars->29->1503", + "default.handlebars->29->1505", + "default.handlebars->29->1510" ] }, { @@ -19279,7 +19295,7 @@ "zh-chs": "通过共享邀请连结来邀请某人安装网格代理。该连结为用户提供“ {0} ”设备组的安装说明。该连结是公用的,不需要这服务器的帐户。", "zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。", "xloc": [ - "default.handlebars->29->340" + "default.handlebars->29->341" ] }, { @@ -19299,8 +19315,8 @@ "zh-chs": "邀请某人在该设备组上安装网格代理。", "zh-cht": "邀請某人在該裝置群上安裝mesh agent。", "xloc": [ - "default.handlebars->29->1355", - "default.handlebars->29->284" + "default.handlebars->29->1360", + "default.handlebars->29->285" ] }, { @@ -19320,7 +19336,7 @@ "zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。", "zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。", "xloc": [ - "default.handlebars->29->317" + "default.handlebars->29->318" ] }, { @@ -19340,7 +19356,7 @@ "zh-chs": "爱尔兰文", "zh-cht": "愛爾蘭文", "xloc": [ - "default.handlebars->29->1128" + "default.handlebars->29->1133" ] }, { @@ -19360,7 +19376,7 @@ "zh-chs": "意大利文(标准)", "zh-cht": "意大利文(標準)", "xloc": [ - "default.handlebars->29->1129" + "default.handlebars->29->1134" ] }, { @@ -19380,7 +19396,7 @@ "zh-chs": "意大利文(瑞士)", "zh-cht": "義大利文(瑞士)", "xloc": [ - "default.handlebars->29->1130" + "default.handlebars->29->1135" ] }, { @@ -19400,7 +19416,7 @@ "zh-chs": "JSON", "zh-cht": "JSON", "xloc": [ - "default.handlebars->29->1684" + "default.handlebars->29->1689" ] }, { @@ -19420,9 +19436,9 @@ "zh-chs": "JSON格式", "zh-cht": "JSON格式", "xloc": [ - "default.handlebars->29->1689", - "default.handlebars->29->1754", - "default.handlebars->29->476" + "default.handlebars->29->1694", + "default.handlebars->29->1759", + "default.handlebars->29->477" ] }, { @@ -19442,7 +19458,7 @@ "zh-chs": "日文", "zh-cht": "日文", "xloc": [ - "default.handlebars->29->1131" + "default.handlebars->29->1136" ] }, { @@ -19462,7 +19478,7 @@ "zh-chs": "已加入桌面Multiplex会话", "zh-cht": "已加入桌面Multiplex會話", "xloc": [ - "default.handlebars->29->1572" + "default.handlebars->29->1577" ] }, { @@ -19482,7 +19498,7 @@ "zh-chs": "卡纳达文", "zh-cht": "卡納達文", "xloc": [ - "default.handlebars->29->1132" + "default.handlebars->29->1137" ] }, { @@ -19502,7 +19518,7 @@ "zh-chs": "克什米尔文", "zh-cht": "克什米爾文", "xloc": [ - "default.handlebars->29->1133" + "default.handlebars->29->1138" ] }, { @@ -19522,14 +19538,14 @@ "zh-chs": "哈萨克文", "zh-cht": "哈薩克文", "xloc": [ - "default.handlebars->29->1134" + "default.handlebars->29->1139" ] }, { "en": "Keep existing password", "nl": "Behoud huidige wachtwoord", "xloc": [ - "default.handlebars->29->1370" + "default.handlebars->29->1375" ] }, { @@ -19549,7 +19565,7 @@ "zh-chs": "内核驱动器", "zh-cht": "內核驅動器", "xloc": [ - "default.handlebars->29->846" + "default.handlebars->29->851" ] }, { @@ -19569,8 +19585,8 @@ "zh-chs": "键名", "zh-cht": "鍵名", "xloc": [ - "default.handlebars->29->1025", - "default.handlebars->29->1028" + "default.handlebars->29->1030", + "default.handlebars->29->1033" ] }, { @@ -19630,7 +19646,7 @@ "zh-chs": "高棉文", "zh-cht": "高棉文", "xloc": [ - "default.handlebars->29->1135" + "default.handlebars->29->1140" ] }, { @@ -19650,7 +19666,7 @@ "zh-chs": "杀死进程{0}", "zh-cht": "殺死進程{0}", "xloc": [ - "default.handlebars->29->1587" + "default.handlebars->29->1592" ] }, { @@ -19670,7 +19686,7 @@ "zh-chs": "吉尔吉斯", "zh-cht": "吉爾吉斯", "xloc": [ - "default.handlebars->29->1136" + "default.handlebars->29->1141" ] }, { @@ -19690,7 +19706,7 @@ "zh-chs": "克林贡", "zh-cht": "克林貢", "xloc": [ - "default.handlebars->29->1137" + "default.handlebars->29->1142" ] }, { @@ -19711,7 +19727,7 @@ "zh-cht": "已知的", "xloc": [ "default-mobile.handlebars->9->380", - "default.handlebars->29->969" + "default.handlebars->29->974" ] }, { @@ -19731,7 +19747,7 @@ "zh-chs": "韩文", "zh-cht": "韓文", "xloc": [ - "default.handlebars->29->1138" + "default.handlebars->29->1143" ] }, { @@ -19751,7 +19767,7 @@ "zh-chs": "韩文(朝鲜)", "zh-cht": "韓文(朝鮮)", "xloc": [ - "default.handlebars->29->1139" + "default.handlebars->29->1144" ] }, { @@ -19771,7 +19787,7 @@ "zh-chs": "韩文(韩国)", "zh-cht": "韓文(韓國)", "xloc": [ - "default.handlebars->29->1140" + "default.handlebars->29->1145" ] }, { @@ -19791,8 +19807,8 @@ "zh-chs": "如果", "zh-cht": "如果", "xloc": [ - "default.handlebars->29->860", - "default.handlebars->29->869" + "default.handlebars->29->865", + "default.handlebars->29->874" ] }, { @@ -19812,7 +19828,7 @@ "zh-chs": "语言", "zh-cht": "語言", "xloc": [ - "default.handlebars->29->1235" + "default.handlebars->29->1240" ] }, { @@ -19852,7 +19868,7 @@ "zh-chs": "大焦点", "zh-cht": "大焦點", "xloc": [ - "default.handlebars->29->834" + "default.handlebars->29->839" ] }, { @@ -20065,7 +20081,7 @@ "zh-chs": "最后访问", "zh-cht": "最後訪問", "xloc": [ - "default.handlebars->29->1697" + "default.handlebars->29->1702" ] }, { @@ -20085,7 +20101,7 @@ "zh-chs": "上次登录", "zh-cht": "上次登入", "xloc": [ - "default.handlebars->29->1905" + "default.handlebars->29->1910" ] }, { @@ -20111,9 +20127,9 @@ "default.handlebars->29->69", "default.handlebars->29->71", "default.handlebars->29->73", - "default.handlebars->29->927", - "default.handlebars->29->928", - "default.handlebars->29->929" + "default.handlebars->29->932", + "default.handlebars->29->933", + "default.handlebars->29->934" ] }, { @@ -20136,8 +20152,8 @@ "default-mobile.handlebars->9->345", "default-mobile.handlebars->9->347", "default.handlebars->29->68", - "default.handlebars->29->924", - "default.handlebars->29->926" + "default.handlebars->29->929", + "default.handlebars->29->931" ] }, { @@ -20157,7 +20173,7 @@ "zh-chs": "上次更改:{0}", "zh-cht": "上次更改:{0}", "xloc": [ - "default.handlebars->29->1909" + "default.handlebars->29->1914" ] }, { @@ -20217,7 +20233,7 @@ "zh-chs": "上次登录:{0}", "zh-cht": "上次登入:{0}", "xloc": [ - "default.handlebars->29->1707" + "default.handlebars->29->1712" ] }, { @@ -20238,7 +20254,7 @@ "zh-cht": "最後一次發現:", "xloc": [ "default.handlebars->29->65", - "default.handlebars->29->652" + "default.handlebars->29->653" ] }, { @@ -20318,7 +20334,7 @@ "zh-chs": "拉丁文", "zh-cht": "拉丁文", "xloc": [ - "default.handlebars->29->1141" + "default.handlebars->29->1146" ] }, { @@ -20338,7 +20354,7 @@ "zh-chs": "拉脱维亚文", "zh-cht": "拉脫維亞文", "xloc": [ - "default.handlebars->29->1142" + "default.handlebars->29->1147" ] }, { @@ -20358,7 +20374,7 @@ "zh-chs": "启动MeshCentral路由器", "zh-cht": "啟動MeshCentral路由器", "xloc": [ - "default.handlebars->29->785" + "default.handlebars->29->790" ] }, { @@ -20378,7 +20394,7 @@ "zh-chs": "启动noVNC连接到此设备", "zh-cht": "啟動noVNC連接到此裝置", "xloc": [ - "default.handlebars->29->636" + "default.handlebars->29->637" ] }, { @@ -20398,7 +20414,7 @@ "zh-chs": "启动基于Web的RDP连接到此设备", "zh-cht": "啟動基於Web的RDP連接到此裝置", "xloc": [ - "default.handlebars->29->638" + "default.handlebars->29->639" ] }, { @@ -20418,7 +20434,7 @@ "zh-chs": "如没有请留空。", "zh-cht": "如沒有請留空。", "xloc": [ - "default.handlebars->29->1949" + "default.handlebars->29->1954" ] }, { @@ -20463,7 +20479,7 @@ "zh-chs": "离开桌面多路复用会话", "zh-cht": "離開桌面多路復用會話", "xloc": [ - "default.handlebars->29->1573" + "default.handlebars->29->1578" ] }, { @@ -20483,7 +20499,7 @@ "zh-chs": "减", "zh-cht": "減", "xloc": [ - "default.handlebars->29->2119" + "default.handlebars->29->2124" ] }, { @@ -20503,8 +20519,8 @@ "zh-chs": "限制事件", "zh-cht": "限制事件", "xloc": [ - "default.handlebars->29->676", - "default.handlebars->29->697" + "default.handlebars->29->677", + "default.handlebars->29->698" ] }, { @@ -20546,9 +20562,9 @@ "zh-cht": "有限輸入", "xloc": [ "default-mobile.handlebars->9->457", - "default.handlebars->29->1475", - "default.handlebars->29->669", - "default.handlebars->29->690" + "default.handlebars->29->1480", + "default.handlebars->29->670", + "default.handlebars->29->691" ] }, { @@ -20569,7 +20585,7 @@ "zh-cht": "僅有限輸入", "xloc": [ "default-mobile.handlebars->9->430", - "default.handlebars->29->1431" + "default.handlebars->29->1436" ] }, { @@ -20610,8 +20626,8 @@ "zh-chs": "连结过期", "zh-cht": "鏈結過期", "xloc": [ - "default.handlebars->29->327", - "default.handlebars->29->341" + "default.handlebars->29->328", + "default.handlebars->29->342" ] }, { @@ -20631,7 +20647,7 @@ "zh-chs": "连结邀请", "zh-cht": "鏈結邀請", "xloc": [ - "default.handlebars->29->315" + "default.handlebars->29->316" ] }, { @@ -20672,7 +20688,7 @@ "zh-chs": "Linux / BSD", "zh-cht": "Linux / BSD", "xloc": [ - "default.handlebars->29->356" + "default.handlebars->29->357" ] }, { @@ -20692,7 +20708,7 @@ "zh-chs": "Linux / BSD(卸载)", "zh-cht": "Linux / BSD(解除安裝)", "xloc": [ - "default.handlebars->29->360" + "default.handlebars->29->361" ] }, { @@ -20712,7 +20728,7 @@ "zh-chs": "Linux / BSD / macOS二进制安装程序", "zh-cht": "Linux / BSD / macOS二進制安裝軟體", "xloc": [ - "default.handlebars->29->357" + "default.handlebars->29->358" ] }, { @@ -20795,7 +20811,7 @@ "zh-chs": "Linux ARM,Raspberry Pi(32位)", "zh-cht": "Linux ARM,Raspberry Pi(32位)", "xloc": [ - "default.handlebars->29->792" + "default.handlebars->29->797" ] }, { @@ -20899,7 +20915,7 @@ "zh-chs": "只限Linux", "zh-cht": "只限Linux", "xloc": [ - "default.handlebars->29->326" + "default.handlebars->29->327" ] }, { @@ -20919,7 +20935,7 @@ "zh-chs": "Linux x86(32位)", "zh-cht": "Linux x86(32位)", "xloc": [ - "default.handlebars->29->789" + "default.handlebars->29->794" ] }, { @@ -20939,7 +20955,7 @@ "zh-chs": "Linux x86(64位)", "zh-cht": "Linux x86(64位)", "xloc": [ - "default.handlebars->29->790" + "default.handlebars->29->795" ] }, { @@ -20959,8 +20975,8 @@ "zh-chs": "Linux / BSD / macOS命令外壳", "zh-cht": "Linux / BSD / macOS命令外殼", "xloc": [ - "default.handlebars->29->455", - "default.handlebars->29->747" + "default.handlebars->29->456", + "default.handlebars->29->752" ] }, { @@ -21018,7 +21034,7 @@ "zh-chs": "立陶宛文", "zh-cht": "立陶宛文", "xloc": [ - "default.handlebars->29->1143" + "default.handlebars->29->1148" ] }, { @@ -21039,11 +21055,11 @@ "zh-cht": "載入中...", "xloc": [ "default-mobile.handlebars->9->72", - "default.handlebars->29->1021", - "default.handlebars->29->1298", - "default.handlebars->29->1302", - "default.handlebars->29->2005", - "default.handlebars->29->781" + "default.handlebars->29->1026", + "default.handlebars->29->1303", + "default.handlebars->29->1307", + "default.handlebars->29->2010", + "default.handlebars->29->786" ] }, { @@ -21125,7 +21141,7 @@ "zh-chs": "本地用户接受的远程终端请求", "zh-cht": "本地用戶接受的遠程終端請求", "xloc": [ - "default.handlebars->29->1595" + "default.handlebars->29->1600" ] }, { @@ -21145,7 +21161,7 @@ "zh-chs": "本地用户拒绝了远程终端请求", "zh-cht": "本地用戶拒絕了遠程終端請求", "xloc": [ - "default.handlebars->29->1596" + "default.handlebars->29->1601" ] }, { @@ -21165,7 +21181,7 @@ "zh-chs": "本地化设置", "zh-cht": "本地化設置", "xloc": [ - "default.handlebars->29->1238", + "default.handlebars->29->1243", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7" ] }, @@ -21186,7 +21202,7 @@ "zh-chs": "位置", "zh-cht": "位置", "xloc": [ - "default.handlebars->29->625" + "default.handlebars->29->626" ] }, { @@ -21226,7 +21242,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1794" + "default.handlebars->29->1799" ] }, { @@ -21246,7 +21262,7 @@ "zh-chs": "锁定帐户设置", "zh-cht": "鎖定帳戶設置", "xloc": [ - "default.handlebars->29->1797" + "default.handlebars->29->1802" ] }, { @@ -21266,7 +21282,7 @@ "zh-chs": "锁定账户", "zh-cht": "鎖定賬戶", "xloc": [ - "default.handlebars->29->1727" + "default.handlebars->29->1732" ] }, { @@ -21286,7 +21302,7 @@ "zh-chs": "已锁定", "zh-cht": "已鎖定", "xloc": [ - "default.handlebars->29->1708" + "default.handlebars->29->1713" ] }, { @@ -21306,7 +21322,7 @@ "zh-chs": "被锁定账户", "zh-cht": "被鎖定賬戶", "xloc": [ - "default.handlebars->29->1881" + "default.handlebars->29->1886" ] }, { @@ -21326,7 +21342,7 @@ "zh-chs": "将远程用户锁定在桌面之外", "zh-cht": "將遠程用戶鎖定在桌面之外", "xloc": [ - "default.handlebars->29->1621" + "default.handlebars->29->1626" ] }, { @@ -21346,7 +21362,7 @@ "zh-chs": "记录事件", "zh-cht": "記錄事件", "xloc": [ - "default.handlebars->29->612" + "default.handlebars->29->613" ] }, { @@ -21478,8 +21494,8 @@ "zh-chs": "登录并转到“我的帐户”选项卡以更新密码。", "zh-cht": "登入並進入“我的帳戶”標籤以更新密碼。", "xloc": [ - "message.handlebars->3->10", - "message2.handlebars->5->10" + "message.handlebars->3->11", + "message2.handlebars->5->11" ] }, { @@ -21566,7 +21582,7 @@ "zh-chs": "卢森堡文", "zh-cht": "盧森堡文", "xloc": [ - "default.handlebars->29->1144" + "default.handlebars->29->1149" ] }, { @@ -21588,10 +21604,10 @@ "xloc": [ "default-mobile.handlebars->9->353", "default-mobile.handlebars->9->355", - "default.handlebars->29->932", - "default.handlebars->29->934", - "default.handlebars->29->942", - "default.handlebars->29->944" + "default.handlebars->29->937", + "default.handlebars->29->939", + "default.handlebars->29->947", + "default.handlebars->29->949" ] }, { @@ -21633,8 +21649,8 @@ "zh-cht": "MAC:{0}", "xloc": [ "default-mobile.handlebars->9->356", - "default.handlebars->29->935", - "default.handlebars->29->945" + "default.handlebars->29->940", + "default.handlebars->29->950" ] }, { @@ -21655,8 +21671,8 @@ "zh-cht": "MAC:{0},網關:{1}", "xloc": [ "default-mobile.handlebars->9->354", - "default.handlebars->29->933", - "default.handlebars->29->943" + "default.handlebars->29->938", + "default.handlebars->29->948" ] }, { @@ -21737,11 +21753,11 @@ "xloc": [ "default-mobile.handlebars->9->207", "default-mobile.handlebars->9->254", - "default.handlebars->29->1000", - "default.handlebars->29->221", - "default.handlebars->29->430", - "default.handlebars->29->605", - "default.handlebars->29->999", + "default.handlebars->29->1004", + "default.handlebars->29->1005", + "default.handlebars->29->222", + "default.handlebars->29->431", + "default.handlebars->29->606", "default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3" ] }, @@ -21762,7 +21778,7 @@ "zh-chs": "MQTT凭证", "zh-cht": "MQTT憑證", "xloc": [ - "default.handlebars->29->198" + "default.handlebars->29->199" ] }, { @@ -21782,7 +21798,7 @@ "zh-chs": "MQTT登录", "zh-cht": "MQTT登入", "xloc": [ - "default.handlebars->29->641" + "default.handlebars->29->642" ] }, { @@ -21803,7 +21819,7 @@ "zh-cht": "MQTT通道已連接", "xloc": [ "default-mobile.handlebars->9->264", - "default.handlebars->29->651" + "default.handlebars->29->652" ] }, { @@ -21824,7 +21840,7 @@ "zh-cht": "MQTT已連接", "xloc": [ "default.handlebars->29->166", - "default.handlebars->29->650" + "default.handlebars->29->651" ] }, { @@ -21844,9 +21860,9 @@ "zh-chs": "与设备的MQTT连接已激活。", "zh-cht": "與裝置的MQTT連接已啟動。", "xloc": [ - "default.handlebars->29->220", - "default.handlebars->29->429", - "default.handlebars->29->604" + "default.handlebars->29->221", + "default.handlebars->29->430", + "default.handlebars->29->605" ] }, { @@ -21946,7 +21962,7 @@ "zh-chs": "主服务器信息", "zh-cht": "主伺服器訊息", "xloc": [ - "default.handlebars->29->2091" + "default.handlebars->29->2096" ] }, { @@ -21966,7 +21982,7 @@ "zh-chs": "马来文", "zh-cht": "馬來文", "xloc": [ - "default.handlebars->29->1146" + "default.handlebars->29->1151" ] }, { @@ -21986,7 +22002,7 @@ "zh-chs": "玛拉雅拉姆文", "zh-cht": "馬拉雅拉姆文", "xloc": [ - "default.handlebars->29->1147" + "default.handlebars->29->1152" ] }, { @@ -22006,7 +22022,7 @@ "zh-chs": "马耳他文", "zh-cht": "馬耳他文", "xloc": [ - "default.handlebars->29->1148" + "default.handlebars->29->1153" ] }, { @@ -22049,8 +22065,8 @@ "xloc": [ "default-mobile.handlebars->9->427", "default-mobile.handlebars->9->447", - "default.handlebars->29->1428", - "default.handlebars->29->1464" + "default.handlebars->29->1433", + "default.handlebars->29->1469" ] }, { @@ -22072,8 +22088,8 @@ "xloc": [ "default-mobile.handlebars->9->426", "default-mobile.handlebars->9->446", - "default.handlebars->29->1427", - "default.handlebars->29->1463" + "default.handlebars->29->1432", + "default.handlebars->29->1468" ] }, { @@ -22093,7 +22109,7 @@ "zh-chs": "管理设备", "zh-cht": "管理裝置", "xloc": [ - "default.handlebars->29->685" + "default.handlebars->29->686" ] }, { @@ -22113,7 +22129,7 @@ "zh-chs": "管理录音", "zh-cht": "管理錄音", "xloc": [ - "default.handlebars->29->1792" + "default.handlebars->29->1797" ] }, { @@ -22153,7 +22169,7 @@ "zh-chs": "管理用户组", "zh-cht": "管理用戶群", "xloc": [ - "default.handlebars->29->1791" + "default.handlebars->29->1796" ] }, { @@ -22173,8 +22189,8 @@ "zh-chs": "管理用户", "zh-cht": "管理用戶", "xloc": [ - "default.handlebars->29->1790", - "default.handlebars->29->684" + "default.handlebars->29->1795", + "default.handlebars->29->685" ] }, { @@ -22300,7 +22316,7 @@ "zh-chs": "使用软件代理进行管理", "zh-cht": "使用軟體代理進行管理", "xloc": [ - "default.handlebars->29->1271" + "default.handlebars->29->1276" ] }, { @@ -22321,7 +22337,7 @@ "zh-cht": "使用軟體代理進行管理", "xloc": [ "default-mobile.handlebars->9->407", - "default.handlebars->29->1308" + "default.handlebars->29->1313" ] }, { @@ -22341,7 +22357,7 @@ "zh-chs": "经理", "zh-cht": "經理", "xloc": [ - "default.handlebars->29->1713" + "default.handlebars->29->1718" ] }, { @@ -22395,7 +22411,7 @@ "zh-chs": "毛利文", "zh-cht": "毛利文", "xloc": [ - "default.handlebars->29->1149" + "default.handlebars->29->1154" ] }, { @@ -22436,7 +22452,7 @@ "zh-chs": "马拉地文", "zh-cht": "馬拉地文", "xloc": [ - "default.handlebars->29->1150" + "default.handlebars->29->1155" ] }, { @@ -22456,7 +22472,7 @@ "zh-chs": "达到连接数量上限", "zh-cht": "達到連接數量上限", "xloc": [ - "default.handlebars->29->2052" + "default.handlebars->29->2057" ] }, { @@ -22521,7 +22537,7 @@ "zh-chs": "Megabyte", "zh-cht": "Megabyte", "xloc": [ - "default.handlebars->29->2081" + "default.handlebars->29->2086" ] }, { @@ -22542,8 +22558,8 @@ "zh-cht": "記憶體", "xloc": [ "default-mobile.handlebars->9->398", - "default.handlebars->29->2072", - "default.handlebars->29->987", + "default.handlebars->29->2077", + "default.handlebars->29->992", "default.handlebars->container->column_l->p40->3->1->p40type->3" ] }, @@ -22567,16 +22583,16 @@ "default-mobile.handlebars->9->261", "default-mobile.handlebars->9->344", "default-mobile.handlebars->9->351", - "default.handlebars->29->367", - "default.handlebars->29->371", - "default.handlebars->29->380", - "default.handlebars->29->384", - "default.handlebars->29->387", - "default.handlebars->29->392", - "default.handlebars->29->550", - "default.handlebars->29->597", - "default.handlebars->29->923", - "default.handlebars->29->930" + "default.handlebars->29->368", + "default.handlebars->29->372", + "default.handlebars->29->381", + "default.handlebars->29->385", + "default.handlebars->29->388", + "default.handlebars->29->393", + "default.handlebars->29->551", + "default.handlebars->29->598", + "default.handlebars->29->928", + "default.handlebars->29->935" ] }, { @@ -22597,7 +22613,7 @@ "zh-cht": "網格代理控制台", "xloc": [ "default-mobile.handlebars->9->434", - "default.handlebars->29->1436" + "default.handlebars->29->1441" ] }, { @@ -22617,7 +22633,7 @@ "zh-chs": "网格中继", "zh-cht": "Mesh Relay", "xloc": [ - "default.handlebars->29->603" + "default.handlebars->29->604" ] }, { @@ -22637,9 +22653,9 @@ "zh-chs": "已连接网状代理并准备使用。", "zh-cht": "已連接Mesh Agent並準備使用。", "xloc": [ - "default.handlebars->29->212", - "default.handlebars->29->421", - "default.handlebars->29->596" + "default.handlebars->29->213", + "default.handlebars->29->422", + "default.handlebars->29->597" ] }, { @@ -22659,9 +22675,9 @@ "zh-chs": "网格代理可以经过其他代理作为中继访问得到。", "zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。", "xloc": [ - "default.handlebars->29->218", - "default.handlebars->29->427", - "default.handlebars->29->602" + "default.handlebars->29->219", + "default.handlebars->29->428", + "default.handlebars->29->603" ] }, { @@ -22681,8 +22697,8 @@ "zh-chs": "MeshAction(.txt)", "zh-cht": "MeshAction(.txt)", "xloc": [ - "default.handlebars->29->798", - "default.handlebars->29->800" + "default.handlebars->29->803", + "default.handlebars->29->805" ] }, { @@ -22702,7 +22718,7 @@ "zh-chs": "MeshAgent流量", "zh-cht": "MeshAgent流量", "xloc": [ - "default.handlebars->29->2093" + "default.handlebars->29->2098" ] }, { @@ -22722,7 +22738,7 @@ "zh-chs": "MeshAgent更新", "zh-cht": "MeshAgent更新", "xloc": [ - "default.handlebars->29->2094" + "default.handlebars->29->2099" ] }, { @@ -22762,7 +22778,7 @@ "zh-chs": "MeshCentral错误", "zh-cht": "MeshCentral錯誤", "xloc": [ - "default.handlebars->29->1301" + "default.handlebars->29->1306" ] }, { @@ -22782,7 +22798,7 @@ "zh-chs": "MeshCentral路由器", "zh-cht": "MeshCentral Router", "xloc": [ - "default.handlebars->29->786" + "default.handlebars->29->791" ] }, { @@ -22802,7 +22818,7 @@ "zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。", "zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。", "xloc": [ - "default.handlebars->29->782" + "default.handlebars->29->787" ] }, { @@ -22843,7 +22859,7 @@ "zh-chs": "MeshCentral服务器同级化", "zh-cht": "MeshCentral伺服器同級化", "xloc": [ - "default.handlebars->29->2092" + "default.handlebars->29->2097" ] }, { @@ -22885,7 +22901,7 @@ "xloc": [ "default.handlebars->29->115", "default.handlebars->29->117", - "default.handlebars->29->1297" + "default.handlebars->29->1302" ] }, { @@ -22905,9 +22921,9 @@ "zh-chs": "MeshCmd", "zh-cht": "MeshCmd", "xloc": [ - "default.handlebars->29->239", - "default.handlebars->29->627", - "default.handlebars->29->796" + "default.handlebars->29->240", + "default.handlebars->29->628", + "default.handlebars->29->801" ] }, { @@ -22927,7 +22943,7 @@ "zh-chs": "MeshCmd(Linux ARM,32位)", "zh-cht": "MeshCmd(Linux ARM,32位)", "xloc": [ - "default.handlebars->29->807" + "default.handlebars->29->812" ] }, { @@ -22947,7 +22963,7 @@ "zh-chs": "MeshCmd(Linux x86,32bit)", "zh-cht": "MeshCmd(Linux x86,32bit)", "xloc": [ - "default.handlebars->29->804" + "default.handlebars->29->809" ] }, { @@ -22967,7 +22983,7 @@ "zh-chs": "MeshCmd(Linux x86,64位)", "zh-cht": "MeshCmd(Linux x86,64位)", "xloc": [ - "default.handlebars->29->805" + "default.handlebars->29->810" ] }, { @@ -22987,7 +23003,7 @@ "zh-chs": "MeshCmd(Win32可执行档案)", "zh-cht": "MeshCmd(Win32可執行檔案)", "xloc": [ - "default.handlebars->29->802" + "default.handlebars->29->807" ] }, { @@ -23007,7 +23023,7 @@ "zh-chs": "MeshCmd(Win64可执行档案)", "zh-cht": "MeshCmd(Win64可執行檔案)", "xloc": [ - "default.handlebars->29->803" + "default.handlebars->29->808" ] }, { @@ -23027,7 +23043,7 @@ "zh-chs": "MeshCmd(macOS,64位)", "zh-cht": "MeshCmd(macOS,64位)", "xloc": [ - "default.handlebars->29->806" + "default.handlebars->29->811" ] }, { @@ -23047,7 +23063,7 @@ "zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。", "zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。", "xloc": [ - "default.handlebars->29->793" + "default.handlebars->29->798" ] }, { @@ -23123,9 +23139,9 @@ "zh-chs": "消息", "zh-cht": "訊息", "xloc": [ - "default.handlebars->29->338", - "default.handlebars->29->614", - "default.handlebars->29->762" + "default.handlebars->29->339", + "default.handlebars->29->615", + "default.handlebars->29->767" ] }, { @@ -23145,7 +23161,7 @@ "zh-chs": "留言框", "zh-cht": "留言框", "xloc": [ - "default.handlebars->29->470" + "default.handlebars->29->471" ] }, { @@ -23165,7 +23181,7 @@ "zh-chs": "消息调度器", "zh-cht": "電郵調度器", "xloc": [ - "default.handlebars->29->2090" + "default.handlebars->29->2095" ] }, { @@ -23288,7 +23304,7 @@ "zh-cht": "模型", "xloc": [ "default-mobile.handlebars->9->399", - "default.handlebars->29->988" + "default.handlebars->29->993" ] }, { @@ -23308,7 +23324,7 @@ "zh-chs": "修改节点位置", "zh-cht": "修改節點位置", "xloc": [ - "default.handlebars->29->509" + "default.handlebars->29->510" ] }, { @@ -23328,7 +23344,7 @@ "zh-chs": "摩尔达维亚文", "zh-cht": "摩爾達維亞文", "xloc": [ - "default.handlebars->29->1151" + "default.handlebars->29->1156" ] }, { @@ -23348,7 +23364,7 @@ "zh-chs": "更多", "zh-cht": "更多", "xloc": [ - "default.handlebars->29->2118" + "default.handlebars->29->2123" ] }, { @@ -23369,7 +23385,7 @@ "zh-cht": "母板", "xloc": [ "default-mobile.handlebars->9->392", - "default.handlebars->29->981" + "default.handlebars->29->986" ] }, { @@ -23389,7 +23405,7 @@ "zh-chs": "将此设备移到其他设备组", "zh-cht": "將此裝置移至其他裝置群", "xloc": [ - "default.handlebars->29->618" + "default.handlebars->29->619" ] }, { @@ -23409,7 +23425,7 @@ "zh-chs": "移至设备组", "zh-cht": "移至裝置群", "xloc": [ - "default.handlebars->29->435" + "default.handlebars->29->436" ] }, { @@ -23429,7 +23445,7 @@ "zh-chs": "移动:“{0}”到“{1}”", "zh-cht": "移動:“{0}”到“{1}”", "xloc": [ - "default.handlebars->29->1620" + "default.handlebars->29->1625" ] }, { @@ -23449,7 +23465,7 @@ "zh-chs": "将设备{0}移动到组{1}", "zh-cht": "將設備{0}移動到組{1}", "xloc": [ - "default.handlebars->29->1653" + "default.handlebars->29->1658" ] }, { @@ -23489,15 +23505,15 @@ "zh-chs": "多路复用器", "zh-cht": "多工器", "xloc": [ - "default.handlebars->29->2030" + "default.handlebars->29->2035" ] }, { "en": "Must run as user", "nl": "Moet als gebruiker worden uitgevoerd", "xloc": [ - "default.handlebars->29->458", - "default.handlebars->29->750" + "default.handlebars->29->459", + "default.handlebars->29->755" ] }, { @@ -23630,7 +23646,7 @@ "zh-chs": "我的服务器控制台", "zh-cht": "我的伺服器控制台", "xloc": [ - "default.handlebars->29->994" + "default.handlebars->29->999" ] }, { @@ -23792,8 +23808,8 @@ "zh-chs": "我的密钥", "zh-cht": "我的密鍵", "xloc": [ - "default.handlebars->29->1026", - "default.handlebars->29->1029" + "default.handlebars->29->1031", + "default.handlebars->29->1034" ] }, { @@ -23813,7 +23829,7 @@ "zh-chs": "导航到下面的URL,授予访问权限并将令牌代码复制回去。", "zh-cht": "導航到下面的URL,授予訪問權限並將令牌代碼複製回去。", "xloc": [ - "default.handlebars->29->201" + "default.handlebars->29->202" ] }, { @@ -23840,21 +23856,21 @@ "default-mobile.handlebars->9->421", "default-mobile.handlebars->9->97", "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->1", - "default.handlebars->29->1269", - "default.handlebars->29->1309", - "default.handlebars->29->1392", - "default.handlebars->29->1695", - "default.handlebars->29->1800", - "default.handlebars->29->1816", - "default.handlebars->29->1823", - "default.handlebars->29->1868", - "default.handlebars->29->1887", - "default.handlebars->29->538", + "default.handlebars->29->1274", + "default.handlebars->29->1314", + "default.handlebars->29->1397", + "default.handlebars->29->1700", + "default.handlebars->29->1805", + "default.handlebars->29->1821", + "default.handlebars->29->1828", + "default.handlebars->29->1873", + "default.handlebars->29->1892", + "default.handlebars->29->539", "default.handlebars->29->76", - "default.handlebars->29->840", + "default.handlebars->29->845", "default.handlebars->29->90", - "default.handlebars->29->919", - "default.handlebars->29->975", + "default.handlebars->29->924", + "default.handlebars->29->980", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3", "default.handlebars->container->column_l->p42->p42tbl->1->0->2" @@ -23877,7 +23893,7 @@ "zh-chs": "名称(可选)", "zh-cht": "名稱(可選)", "xloc": [ - "default.handlebars->29->318" + "default.handlebars->29->319" ] }, { @@ -23897,7 +23913,7 @@ "zh-chs": "名称1,名称2,名称3", "zh-cht": "名稱1,名稱2,名稱3", "xloc": [ - "default.handlebars->29->1782" + "default.handlebars->29->1787" ] }, { @@ -23917,7 +23933,7 @@ "zh-chs": "纳瓦霍文", "zh-cht": "納瓦霍文", "xloc": [ - "default.handlebars->29->1152" + "default.handlebars->29->1157" ] }, { @@ -23937,7 +23953,7 @@ "zh-chs": "恩东加", "zh-cht": "恩東加", "xloc": [ - "default.handlebars->29->1153" + "default.handlebars->29->1158" ] }, { @@ -23957,7 +23973,7 @@ "zh-chs": "尼泊尔文", "zh-cht": "尼泊爾文", "xloc": [ - "default.handlebars->29->1154" + "default.handlebars->29->1159" ] }, { @@ -23977,7 +23993,7 @@ "zh-chs": "网络接口", "zh-cht": "網絡介面", "xloc": [ - "default.handlebars->29->780" + "default.handlebars->29->785" ] }, { @@ -24015,8 +24031,8 @@ "zh-cht": "網路", "xloc": [ "default-mobile.handlebars->9->365", - "default.handlebars->29->940", - "default.handlebars->29->954" + "default.handlebars->29->945", + "default.handlebars->29->959" ] }, { @@ -24057,7 +24073,7 @@ "zh-chs": "生成新的2FA备份代码", "zh-cht": "生成新的2FA備份代碼", "xloc": [ - "default.handlebars->29->1660" + "default.handlebars->29->1665" ] }, { @@ -24098,9 +24114,9 @@ "zh-cht": "新裝置群", "xloc": [ "default-mobile.handlebars->9->91", - "default.handlebars->29->1262", - "default.handlebars->29->1274", - "default.handlebars->29->772" + "default.handlebars->29->1267", + "default.handlebars->29->1279", + "default.handlebars->29->777" ] }, { @@ -24122,8 +24138,8 @@ "xloc": [ "default-mobile.handlebars->9->120", "default-mobile.handlebars->9->311", - "default.handlebars->29->1552", - "default.handlebars->29->882", + "default.handlebars->29->1557", + "default.handlebars->29->887", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" ] @@ -24152,8 +24168,8 @@ "en": "New Password*", "nl": "Nieuw Wachtwoord*", "xloc": [ - "default.handlebars->29->303", - "default.handlebars->29->304" + "default.handlebars->29->304", + "default.handlebars->29->305" ] }, { @@ -24180,8 +24196,8 @@ "en": "New password*", "nl": "Nieuw wachtwoord*", "xloc": [ - "default.handlebars->29->1374", - "default.handlebars->29->1375" + "default.handlebars->29->1379", + "default.handlebars->29->1380" ] }, { @@ -24203,8 +24219,8 @@ "xloc": [ "default-mobile.handlebars->9->86", "default-mobile.handlebars->9->87", - "default.handlebars->29->1257", - "default.handlebars->29->1258" + "default.handlebars->29->1262", + "default.handlebars->29->1263" ] }, { @@ -24224,8 +24240,8 @@ "zh-chs": "没有AMT", "zh-cht": "沒有AMT", "xloc": [ - "default.handlebars->29->668", - "default.handlebars->29->689" + "default.handlebars->29->669", + "default.handlebars->29->690" ] }, { @@ -24285,8 +24301,8 @@ "xloc": [ "default-mobile.handlebars->9->240", "default-mobile.handlebars->9->241", - "default.handlebars->29->564", - "default.handlebars->29->565" + "default.handlebars->29->565", + "default.handlebars->29->566" ] }, { @@ -24306,9 +24322,9 @@ "zh-chs": "没有桌面", "zh-cht": "沒有桌面", "xloc": [ - "default.handlebars->29->1471", - "default.handlebars->29->670", - "default.handlebars->29->691" + "default.handlebars->29->1476", + "default.handlebars->29->671", + "default.handlebars->29->692" ] }, { @@ -24328,7 +24344,7 @@ "zh-chs": "不能访问桌面", "zh-cht": "不能訪問桌面", "xloc": [ - "default.handlebars->29->1432" + "default.handlebars->29->1437" ] }, { @@ -24348,9 +24364,9 @@ "zh-chs": "找不到事件", "zh-cht": "找不到事件", "xloc": [ - "default.handlebars->29->1671", - "default.handlebars->29->2004", - "default.handlebars->29->917" + "default.handlebars->29->1676", + "default.handlebars->29->2009", + "default.handlebars->29->922" ] }, { @@ -24371,7 +24387,7 @@ "zh-cht": "不能存取檔案", "xloc": [ "default-mobile.handlebars->9->432", - "default.handlebars->29->1434" + "default.handlebars->29->1439" ] }, { @@ -24392,9 +24408,9 @@ "zh-cht": "沒有檔案", "xloc": [ "default-mobile.handlebars->9->455", - "default.handlebars->29->1473", - "default.handlebars->29->667", - "default.handlebars->29->688" + "default.handlebars->29->1478", + "default.handlebars->29->668", + "default.handlebars->29->689" ] }, { @@ -24414,8 +24430,8 @@ "zh-chs": "无输入", "zh-cht": "無輸入", "xloc": [ - "default.handlebars->29->665", - "default.handlebars->29->686" + "default.handlebars->29->666", + "default.handlebars->29->687" ] }, { @@ -24437,8 +24453,8 @@ "xloc": [ "default-mobile.handlebars->9->433", "default-mobile.handlebars->9->456", - "default.handlebars->29->1435", - "default.handlebars->29->1474" + "default.handlebars->29->1440", + "default.handlebars->29->1479" ] }, { @@ -24478,7 +24494,7 @@ "zh-chs": "此网格中没有英特尔®AMT设备", "zh-cht": "此網格中沒有Intel® AMT裝置", "xloc": [ - "default.handlebars->29->228" + "default.handlebars->29->229" ] }, { @@ -24518,7 +24534,7 @@ "zh-chs": "没有成员", "zh-cht": "沒有成員", "xloc": [ - "default.handlebars->29->1850" + "default.handlebars->29->1855" ] }, { @@ -24538,7 +24554,7 @@ "zh-chs": "没有新的设备组", "zh-cht": "沒有新的裝置群", "xloc": [ - "default.handlebars->29->1795" + "default.handlebars->29->1800" ] }, { @@ -24558,8 +24574,8 @@ "zh-chs": "没有政策", "zh-cht": "沒有政策", "xloc": [ - "default.handlebars->29->1340", - "default.handlebars->29->1365" + "default.handlebars->29->1345", + "default.handlebars->29->1370" ] }, { @@ -24582,10 +24598,10 @@ "default-mobile.handlebars->9->106", "default-mobile.handlebars->9->416", "default-mobile.handlebars->9->463", - "default.handlebars->29->1283", - "default.handlebars->29->1481", - "default.handlebars->29->681", - "default.handlebars->29->702" + "default.handlebars->29->1288", + "default.handlebars->29->1486", + "default.handlebars->29->682", + "default.handlebars->29->703" ] }, { @@ -24606,8 +24622,8 @@ "zh-cht": "沒有TLS加密", "xloc": [ "default-mobile.handlebars->9->283", - "default.handlebars->29->294", - "default.handlebars->29->758" + "default.handlebars->29->295", + "default.handlebars->29->763" ] }, { @@ -24628,9 +24644,9 @@ "zh-cht": "沒有終端", "xloc": [ "default-mobile.handlebars->9->454", - "default.handlebars->29->1472", - "default.handlebars->29->666", - "default.handlebars->29->687" + "default.handlebars->29->1477", + "default.handlebars->29->667", + "default.handlebars->29->688" ] }, { @@ -24651,7 +24667,7 @@ "zh-cht": "不能訪問終端", "xloc": [ "default-mobile.handlebars->9->431", - "default.handlebars->29->1433" + "default.handlebars->29->1438" ] }, { @@ -24671,7 +24687,7 @@ "zh-chs": "没有工具(MeshCmd /路由器)", "zh-cht": "沒有工具(MeshCmd /路由器)", "xloc": [ - "default.handlebars->29->1796" + "default.handlebars->29->1801" ] }, { @@ -24679,7 +24695,7 @@ "nl": "Er zijn momenteel geen acties beschikbaar voor dit apparaat.", "xloc": [ "default-mobile.handlebars->9->276", - "default.handlebars->29->742" + "default.handlebars->29->747" ] }, { @@ -24699,8 +24715,8 @@ "zh-chs": "没有共同的设备组", "zh-cht": "沒有共同的裝置群", "xloc": [ - "default.handlebars->29->1856", - "default.handlebars->29->1974" + "default.handlebars->29->1861", + "default.handlebars->29->1979" ] }, { @@ -24763,7 +24779,7 @@ "zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。", "zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。", "xloc": [ - "default.handlebars->29->225" + "default.handlebars->29->226" ] }, { @@ -24800,7 +24816,7 @@ "zh-chs": "找不到设备。", "zh-cht": "找不到裝置。", "xloc": [ - "default.handlebars->29->526" + "default.handlebars->29->527" ] }, { @@ -24820,8 +24836,8 @@ "zh-chs": "没有共同的设备", "zh-cht": "沒有共同的裝置", "xloc": [ - "default.handlebars->29->1862", - "default.handlebars->29->1986" + "default.handlebars->29->1867", + "default.handlebars->29->1991" ] }, { @@ -24841,7 +24857,7 @@ "zh-chs": "该设备组中没有设备。", "zh-cht": "該裝置群中沒有裝置。", "xloc": [ - "default.handlebars->29->1524" + "default.handlebars->29->1529" ] }, { @@ -24862,7 +24878,7 @@ "zh-cht": "該群中沒有裝置", "xloc": [ "default-mobile.handlebars->9->151", - "default.handlebars->29->230" + "default.handlebars->29->231" ] }, { @@ -24884,7 +24900,7 @@ "xloc": [ "default-mobile.handlebars->9->149", "default-mobile.handlebars->9->153", - "default.handlebars->29->226" + "default.handlebars->29->227" ] }, { @@ -24904,7 +24920,7 @@ "zh-chs": "找不到带有标签的设备。", "zh-cht": "找不到帶有標籤的裝置。", "xloc": [ - "default.handlebars->29->235" + "default.handlebars->29->236" ] }, { @@ -24924,7 +24940,7 @@ "zh-chs": "找不到群组。", "zh-cht": "找不到群組。", "xloc": [ - "default.handlebars->29->1799" + "default.handlebars->29->1804" ] }, { @@ -24945,7 +24961,7 @@ "zh-cht": "沒有此裝置的訊息。", "xloc": [ "default-mobile.handlebars->9->404", - "default.handlebars->29->993" + "default.handlebars->29->998" ] }, { @@ -24965,7 +24981,7 @@ "zh-chs": "找不到位置。", "zh-cht": "找不到位置。", "xloc": [ - "default.handlebars->29->528" + "default.handlebars->29->529" ] }, { @@ -25005,7 +25021,7 @@ "zh-chs": "没有其他相同类型的设备组。", "zh-cht": "沒有其他相同類型的裝置群。", "xloc": [ - "default.handlebars->29->775" + "default.handlebars->29->780" ] }, { @@ -25045,7 +25061,7 @@ "zh-chs": "没有录音。", "zh-cht": "沒有錄音。", "xloc": [ - "default.handlebars->29->2006" + "default.handlebars->29->2011" ] }, { @@ -25065,7 +25081,7 @@ "zh-chs": "没有服务器权限", "zh-cht": "沒有伺服器權限", "xloc": [ - "default.handlebars->29->1882" + "default.handlebars->29->1887" ] }, { @@ -25085,7 +25101,7 @@ "zh-chs": "没有用户组成员身份", "zh-cht": "沒有用戶群成員身份", "xloc": [ - "default.handlebars->29->1980" + "default.handlebars->29->1985" ] }, { @@ -25105,7 +25121,7 @@ "zh-chs": "未找到相应的用户。", "zh-cht": "未找到相應的用戶。", "xloc": [ - "default.handlebars->29->1703" + "default.handlebars->29->1708" ] }, { @@ -25125,7 +25141,7 @@ "zh-chs": "没有拥有特殊设备权限的用户", "zh-cht": "沒有擁有特殊裝置權限的用戶", "xloc": [ - "default.handlebars->29->660" + "default.handlebars->29->661" ] }, { @@ -25195,32 +25211,32 @@ "default-mobile.handlebars->9->256", "default-mobile.handlebars->9->309", "default-mobile.handlebars->9->410", - "default.handlebars->29->1304", - "default.handlebars->29->1311", - "default.handlebars->29->1319", - "default.handlebars->29->1331", + "default.handlebars->29->1309", + "default.handlebars->29->1316", + "default.handlebars->29->1324", "default.handlebars->29->1336", - "default.handlebars->29->1338", - "default.handlebars->29->1515", - "default.handlebars->29->1534", + "default.handlebars->29->1341", + "default.handlebars->29->1343", + "default.handlebars->29->1520", "default.handlebars->29->1539", - "default.handlebars->29->1679", + "default.handlebars->29->1544", + "default.handlebars->29->1684", "default.handlebars->29->177", - "default.handlebars->29->1820", - "default.handlebars->29->1822", - "default.handlebars->29->1839", - "default.handlebars->29->1901", - "default.handlebars->29->1910", - "default.handlebars->29->1914", - "default.handlebars->29->192", - "default.handlebars->29->1926", - "default.handlebars->29->208", + "default.handlebars->29->1825", + "default.handlebars->29->1827", + "default.handlebars->29->1844", + "default.handlebars->29->1906", + "default.handlebars->29->1915", + "default.handlebars->29->1919", + "default.handlebars->29->193", + "default.handlebars->29->1931", "default.handlebars->29->209", - "default.handlebars->29->535", - "default.handlebars->29->546", + "default.handlebars->29->210", + "default.handlebars->29->536", "default.handlebars->29->547", - "default.handlebars->29->594", - "default.handlebars->29->607", + "default.handlebars->29->548", + "default.handlebars->29->595", + "default.handlebars->29->608", "default.handlebars->29->63", "default.handlebars->container->column_l->p41->3->3->p41traceStatus" ] @@ -25262,7 +25278,7 @@ "zh-chs": "挪威文", "zh-cht": "挪威文", "xloc": [ - "default.handlebars->29->1155" + "default.handlebars->29->1160" ] }, { @@ -25282,7 +25298,7 @@ "zh-chs": "挪威文(Bokmal)", "zh-cht": "挪威文(Bokmal)", "xloc": [ - "default.handlebars->29->1156" + "default.handlebars->29->1161" ] }, { @@ -25302,14 +25318,14 @@ "zh-chs": "挪威文(尼诺斯克)", "zh-cht": "挪威文(尼諾斯克)", "xloc": [ - "default.handlebars->29->1157" + "default.handlebars->29->1162" ] }, { "en": "Not Activated", "nl": "Niet geactiveerd", "xloc": [ - "default.handlebars->29->957" + "default.handlebars->29->962" ] }, { @@ -25331,7 +25347,7 @@ "xloc": [ "default-mobile.handlebars->9->230", "default-mobile.handlebars->9->369", - "default.handlebars->29->552" + "default.handlebars->29->553" ] }, { @@ -25353,7 +25369,7 @@ "xloc": [ "default-mobile.handlebars->9->229", "default-mobile.handlebars->9->368", - "default.handlebars->29->551" + "default.handlebars->29->552" ] }, { @@ -25373,8 +25389,8 @@ "zh-chs": "未连接", "zh-cht": "未連接", "xloc": [ - "default.handlebars->29->1511", - "default.handlebars->29->1519" + "default.handlebars->29->1516", + "default.handlebars->29->1524" ] }, { @@ -25395,7 +25411,7 @@ "zh-cht": "未知", "xloc": [ "default-mobile.handlebars->9->379", - "default.handlebars->29->968" + "default.handlebars->29->973" ] }, { @@ -25415,7 +25431,7 @@ "zh-chs": "不在服务器上", "zh-cht": "不在伺服器上", "xloc": [ - "default.handlebars->29->2022" + "default.handlebars->29->2027" ] }, { @@ -25435,8 +25451,8 @@ "zh-chs": "没有设置", "zh-cht": "沒有設置", "xloc": [ - "default.handlebars->29->1888", - "default.handlebars->29->1889" + "default.handlebars->29->1893", + "default.handlebars->29->1894" ] }, { @@ -25456,7 +25472,7 @@ "zh-chs": "未经审核的", "zh-cht": "未經審核的", "xloc": [ - "default.handlebars->29->1956" + "default.handlebars->29->1961" ] }, { @@ -25476,12 +25492,12 @@ "zh-chs": "笔记", "zh-cht": "筆記", "xloc": [ - "default.handlebars->29->1347", - "default.handlebars->29->1934", - "default.handlebars->29->610", - "default.handlebars->29->675", - "default.handlebars->29->696", - "default.handlebars->29->706" + "default.handlebars->29->1352", + "default.handlebars->29->1939", + "default.handlebars->29->611", + "default.handlebars->29->676", + "default.handlebars->29->697", + "default.handlebars->29->707" ] }, { @@ -25521,8 +25537,8 @@ "zh-chs": "通知设置", "zh-cht": "通知設定", "xloc": [ - "default.handlebars->29->1244", - "default.handlebars->29->1510", + "default.handlebars->29->1249", + "default.handlebars->29->1515", "default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10" ] }, @@ -25543,7 +25559,7 @@ "zh-chs": "通知设置还必须在帐户设置中启用。", "zh-cht": "通知設定還必須在帳戶設定中啟用。", "xloc": [ - "default.handlebars->29->1506" + "default.handlebars->29->1511" ] }, { @@ -25563,7 +25579,7 @@ "zh-chs": "通知音效。", "zh-cht": "通知音效。", "xloc": [ - "default.handlebars->29->1239" + "default.handlebars->29->1244" ] }, { @@ -25583,7 +25599,7 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->29->1337" + "default.handlebars->29->1342" ] }, { @@ -25603,8 +25619,8 @@ "zh-chs": "通知", "zh-cht": "通知", "xloc": [ - "default.handlebars->29->189", - "default.handlebars->29->1940" + "default.handlebars->29->190", + "default.handlebars->29->1945" ] }, { @@ -25624,7 +25640,7 @@ "zh-chs": "仅通知", "zh-cht": "只通知", "xloc": [ - "default.handlebars->29->731" + "default.handlebars->29->736" ] }, { @@ -25644,9 +25660,9 @@ "zh-chs": "通知使用者", "zh-cht": "通知使用者", "xloc": [ - "default.handlebars->29->1400", - "default.handlebars->29->1404", - "default.handlebars->29->1407" + "default.handlebars->29->1405", + "default.handlebars->29->1409", + "default.handlebars->29->1412" ] }, { @@ -25666,7 +25682,7 @@ "zh-chs": "通知{0}", "zh-cht": "通知{0}", "xloc": [ - "default.handlebars->29->1742" + "default.handlebars->29->1747" ] }, { @@ -25688,8 +25704,8 @@ "xloc": [ "default-mobile.handlebars->9->83", "default-mobile.handlebars->dialog->idx_dlgButtonBar", - "default.handlebars->29->1295", - "default.handlebars->29->581", + "default.handlebars->29->1300", + "default.handlebars->29->582", "default.handlebars->container->dialog->idx_dlgButtonBar", "desktop.handlebars->p11->dialog->idx_dlgButtonBar", "login-mobile.handlebars->dialog->idx_dlgButtonBar", @@ -25717,7 +25733,7 @@ "zh-cht": "操作系統名稱", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5", - "default.handlebars->29->543", + "default.handlebars->29->544", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->9->1" ] }, @@ -25738,7 +25754,7 @@ "zh-chs": "欧舒丹", "zh-cht": "歐舒丹", "xloc": [ - "default.handlebars->29->1158" + "default.handlebars->29->1163" ] }, { @@ -25758,7 +25774,7 @@ "zh-chs": "发生在{0}", "zh-cht": "發生在{0}", "xloc": [ - "default.handlebars->29->2036" + "default.handlebars->29->2041" ] }, { @@ -25785,14 +25801,14 @@ "zh-chs": "离线用户", "zh-cht": "離線用戶", "xloc": [ - "default.handlebars->29->1700" + "default.handlebars->29->1705" ] }, { "en": "Old Password", "nl": "Oud wachtwoord", "xloc": [ - "default.handlebars->29->302" + "default.handlebars->29->303" ] }, { @@ -25813,7 +25829,7 @@ "zh-cht": "舊密碼:", "xloc": [ "default-mobile.handlebars->9->85", - "default.handlebars->29->1256" + "default.handlebars->29->1261" ] }, { @@ -25833,7 +25849,7 @@ "zh-chs": "一天", "zh-cht": "一天", "xloc": [ - "default.handlebars->29->1676" + "default.handlebars->29->1681" ] }, { @@ -25896,7 +25912,7 @@ "zh-chs": "在线用户", "zh-cht": "在線用戶", "xloc": [ - "default.handlebars->29->1699" + "default.handlebars->29->1704" ] }, { @@ -25917,8 +25933,8 @@ "zh-cht": "只能編輯小於200k的檔案。", "xloc": [ "default-mobile.handlebars->9->319", - "default.handlebars->29->506", - "default.handlebars->29->890" + "default.handlebars->29->507", + "default.handlebars->29->895" ] }, { @@ -25979,7 +25995,7 @@ "zh-chs": "在设备上打开页面", "zh-cht": "在裝置上打開頁面", "xloc": [ - "default.handlebars->29->707" + "default.handlebars->29->708" ] }, { @@ -26020,7 +26036,7 @@ "zh-chs": "打开XTerm终端", "zh-cht": "打開XTerm終端", "xloc": [ - "default.handlebars->29->628" + "default.handlebars->29->629" ] }, { @@ -26080,7 +26096,7 @@ "zh-chs": "开头:{0}", "zh-cht": "開場:{0}", "xloc": [ - "default.handlebars->29->1588" + "default.handlebars->29->1593" ] }, { @@ -26101,11 +26117,11 @@ "zh-cht": "操作系統", "xloc": [ "default-mobile.handlebars->9->343", - "default.handlebars->29->321", - "default.handlebars->29->354", - "default.handlebars->29->578", - "default.handlebars->29->795", - "default.handlebars->29->922" + "default.handlebars->29->322", + "default.handlebars->29->355", + "default.handlebars->29->579", + "default.handlebars->29->800", + "default.handlebars->29->927" ] }, { @@ -26126,11 +26142,11 @@ "zh-cht": "操作", "xloc": [ "default-mobile.handlebars->9->275", - "default.handlebars->29->1726", - "default.handlebars->29->1807", - "default.handlebars->29->446", - "default.handlebars->29->461", - "default.handlebars->29->741" + "default.handlebars->29->1731", + "default.handlebars->29->1812", + "default.handlebars->29->447", + "default.handlebars->29->462", + "default.handlebars->29->746" ] }, { @@ -26167,7 +26183,7 @@ "zh-chs": "奥里亚", "zh-cht": "奧里亞", "xloc": [ - "default.handlebars->29->1159" + "default.handlebars->29->1164" ] }, { @@ -26187,7 +26203,7 @@ "zh-chs": "奥罗莫", "zh-cht": "奧羅莫", "xloc": [ - "default.handlebars->29->1160" + "default.handlebars->29->1165" ] }, { @@ -26249,7 +26265,7 @@ "zh-chs": "过时的", "zh-cht": "過時的", "xloc": [ - "default.handlebars->29->580" + "default.handlebars->29->581" ] }, { @@ -26269,7 +26285,7 @@ "zh-chs": "自己的过程", "zh-cht": "自己的過程", "xloc": [ - "default.handlebars->29->847" + "default.handlebars->29->852" ] }, { @@ -26290,7 +26306,7 @@ "zh-cht": "PID", "xloc": [ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->5->1->0", - "default.handlebars->29->843", + "default.handlebars->29->848", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1" ] }, @@ -26312,7 +26328,7 @@ "zh-cht": "零件號", "xloc": [ "default-mobile.handlebars->9->397", - "default.handlebars->29->986" + "default.handlebars->29->991" ] }, { @@ -26332,7 +26348,7 @@ "zh-chs": "部分的", "zh-cht": "部分的", "xloc": [ - "default.handlebars->29->1714" + "default.handlebars->29->1719" ] }, { @@ -26388,7 +26404,7 @@ "xloc": [ "default-mobile.handlebars->9->104", "default-mobile.handlebars->9->414", - "default.handlebars->29->1281" + "default.handlebars->29->1286" ] }, { @@ -26408,7 +26424,7 @@ "zh-chs": "部分权限", "zh-cht": "部分權限", "xloc": [ - "default.handlebars->29->1885" + "default.handlebars->29->1890" ] }, { @@ -26449,15 +26465,15 @@ "zh-cht": "密碼", "xloc": [ "default-mobile.handlebars->9->281", - "default.handlebars->29->1371", - "default.handlebars->29->1770", - "default.handlebars->29->1771", - "default.handlebars->29->1906", - "default.handlebars->29->1908", - "default.handlebars->29->1959", - "default.handlebars->29->1960", - "default.handlebars->29->292", - "default.handlebars->29->756", + "default.handlebars->29->1376", + "default.handlebars->29->1775", + "default.handlebars->29->1776", + "default.handlebars->29->1911", + "default.handlebars->29->1913", + "default.handlebars->29->1964", + "default.handlebars->29->1965", + "default.handlebars->29->293", + "default.handlebars->29->761", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->2->1", "mstsc.handlebars->main->1->3->1->6->1->0", @@ -26577,8 +26593,8 @@ "zh-chs": "帐户{0}的密码已重置为:", "zh-cht": "帳戶{0}的密碼已重置為:", "xloc": [ - "message.handlebars->3->9", - "message2.handlebars->5->9" + "message.handlebars->3->10", + "message2.handlebars->5->10" ] }, { @@ -26598,7 +26614,7 @@ "zh-chs": "密码提示", "zh-cht": "密碼提示", "xloc": [ - "default.handlebars->29->1961" + "default.handlebars->29->1966" ] }, { @@ -26619,7 +26635,7 @@ "zh-cht": "密碼提示:", "xloc": [ "default-mobile.handlebars->9->88", - "default.handlebars->29->1259" + "default.handlebars->29->1264" ] }, { @@ -26698,8 +26714,8 @@ "account-invite.html->2->5", "default-mobile.handlebars->9->80", "default-mobile.handlebars->9->81", - "default.handlebars->29->1251", - "default.handlebars->29->1252", + "default.handlebars->29->1256", + "default.handlebars->29->1257", "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", @@ -26737,9 +26753,9 @@ "default-mobile.handlebars->9->324", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->1561", - "default.handlebars->29->870", - "default.handlebars->29->896", + "default.handlebars->29->1566", + "default.handlebars->29->875", + "default.handlebars->29->901", "default.handlebars->container->column_l->p12->termTable->1->1->6->1->3", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3" @@ -26802,7 +26818,7 @@ "zh-chs": "执行代理指令", "zh-cht": "執行代理指令", "xloc": [ - "default.handlebars->29->1002" + "default.handlebars->29->1007" ] }, { @@ -26843,8 +26859,8 @@ "en": "Perform Intel® AMT activation and configuration.", "nl": "Voer Intel® AMT-activering en configuratie uit.", "xloc": [ - "default.handlebars->29->1351", - "default.handlebars->29->280" + "default.handlebars->29->1356", + "default.handlebars->29->281" ] }, { @@ -26932,7 +26948,7 @@ "zh-chs": "执行批量设备通知", "zh-cht": "執行批量設備通知", "xloc": [ - "default.handlebars->29->468" + "default.handlebars->29->469" ] }, { @@ -26952,7 +26968,7 @@ "zh-chs": "执行批量设备标签操作", "zh-cht": "執行批次裝置標籤操作", "xloc": [ - "default.handlebars->29->460" + "default.handlebars->29->461" ] }, { @@ -26972,7 +26988,7 @@ "zh-chs": "在设备上执行电源操作", "zh-cht": "在裝置上執行電源操作", "xloc": [ - "default.handlebars->29->609", + "default.handlebars->29->610", "default.handlebars->container->column_l->p11->deskarea0->deskarea1->1", "default.handlebars->container->column_l->p12->termTable->1->1->0->1->1", "default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1" @@ -26995,7 +27011,7 @@ "zh-chs": "执行电源操作= {0},强制执行= {1}", "zh-cht": "執行電源操作= {0},強制執行= {1}", "xloc": [ - "default.handlebars->29->1593" + "default.handlebars->29->1598" ] }, { @@ -27016,8 +27032,8 @@ "zh-cht": "權限", "xloc": [ "default-mobile.handlebars->9->466", - "default.handlebars->29->1484", - "default.handlebars->29->1698" + "default.handlebars->29->1489", + "default.handlebars->29->1703" ] }, { @@ -27037,7 +27053,7 @@ "zh-chs": "波斯/伊朗", "zh-cht": "波斯/伊朗", "xloc": [ - "default.handlebars->29->1161" + "default.handlebars->29->1166" ] }, { @@ -27060,10 +27076,10 @@ "default-mobile.handlebars->9->62", "default-mobile.handlebars->9->65", "default-mobile.handlebars->9->67", - "default.handlebars->29->1013", - "default.handlebars->29->1016", + "default.handlebars->29->1018", + "default.handlebars->29->1021", "default.handlebars->29->159", - "default.handlebars->29->1951" + "default.handlebars->29->1956" ] }, { @@ -27083,7 +27099,7 @@ "zh-chs": "电话号码", "zh-cht": "電話號碼", "xloc": [ - "default.handlebars->29->1900" + "default.handlebars->29->1905" ] }, { @@ -27104,8 +27120,8 @@ "zh-cht": "電話號碼:", "xloc": [ "default-mobile.handlebars->9->66", - "default.handlebars->29->1015", - "default.handlebars->29->1950" + "default.handlebars->29->1020", + "default.handlebars->29->1955" ] }, { @@ -27142,7 +27158,7 @@ "zh-chs": "将节点放在这里", "zh-cht": "將節點放在這裡", "xloc": [ - "default.handlebars->29->521" + "default.handlebars->29->522" ] }, { @@ -27202,7 +27218,7 @@ "zh-chs": "请注意,不建议降级。请仅在最近的升级后发生问题时才这样做。", "zh-cht": "請注意,不建議降級。請僅在最近的升級後發生問題時才這樣做。", "xloc": [ - "default.handlebars->29->200" + "default.handlebars->29->201" ] }, { @@ -27244,7 +27260,7 @@ "zh-cht": "請等待幾分鐘以接收驗證。", "xloc": [ "default-mobile.handlebars->9->76", - "default.handlebars->29->1246" + "default.handlebars->29->1251" ] }, { @@ -27264,8 +27280,8 @@ "zh-chs": "插件指令", "zh-cht": "外掛指令", "xloc": [ - "default.handlebars->29->199", - "default.handlebars->29->2115" + "default.handlebars->29->200", + "default.handlebars->29->2120" ] }, { @@ -27285,7 +27301,7 @@ "zh-chs": "插件错误", "zh-cht": "外掛錯誤", "xloc": [ - "default.handlebars->29->205" + "default.handlebars->29->206" ] }, { @@ -27409,7 +27425,7 @@ "zh-cht": "政策", "xloc": [ "default-mobile.handlebars->9->103", - "default.handlebars->29->1280" + "default.handlebars->29->1285" ] }, { @@ -27429,7 +27445,7 @@ "zh-chs": "波兰文", "zh-cht": "波蘭文", "xloc": [ - "default.handlebars->29->1162" + "default.handlebars->29->1167" ] }, { @@ -27449,7 +27465,7 @@ "zh-chs": "葡萄牙文", "zh-cht": "葡萄牙文", "xloc": [ - "default.handlebars->29->1163" + "default.handlebars->29->1168" ] }, { @@ -27469,7 +27485,7 @@ "zh-chs": "葡萄牙文(巴西)", "zh-cht": "葡萄牙文(巴西)", "xloc": [ - "default.handlebars->29->1164" + "default.handlebars->29->1169" ] }, { @@ -27550,7 +27566,7 @@ "zh-chs": "电源状态", "zh-cht": "電源狀態", "xloc": [ - "default.handlebars->29->1517", + "default.handlebars->29->1522", "default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1" ] }, @@ -27574,7 +27590,7 @@ "default-mobile.handlebars->9->187", "default-mobile.handlebars->9->274", "default.handlebars->29->6", - "default.handlebars->29->738" + "default.handlebars->29->743" ] }, { @@ -27594,7 +27610,7 @@ "zh-chs": "关闭设备", "zh-cht": "關閉裝置", "xloc": [ - "default.handlebars->29->440" + "default.handlebars->29->441" ] }, { @@ -27617,14 +27633,14 @@ "default-mobile.handlebars->9->182", "default-mobile.handlebars->9->189", "default.handlebars->29->1", - "default.handlebars->29->401" + "default.handlebars->29->402" ] }, { "en": "Pre-activation", "nl": "Pre-activering", "xloc": [ - "default.handlebars->29->958" + "default.handlebars->29->963" ] }, { @@ -27646,7 +27662,7 @@ "xloc": [ "default-mobile.handlebars->9->188", "default-mobile.handlebars->9->195", - "default.handlebars->29->413", + "default.handlebars->29->414", "default.handlebars->29->7" ] }, @@ -27667,7 +27683,7 @@ "zh-chs": "存在于服务器上", "zh-cht": "存在於伺服器上", "xloc": [ - "default.handlebars->29->2021" + "default.handlebars->29->2026" ] }, { @@ -27750,7 +27766,7 @@ "zh-chs": "隐私栏", "zh-cht": "隱私欄", "xloc": [ - "default.handlebars->29->191" + "default.handlebars->29->192" ] }, { @@ -27771,8 +27787,8 @@ "zh-cht": "進程控制", "xloc": [ "default-mobile.handlebars->9->301", - "default.handlebars->29->857", - "desktop.handlebars->3->25" + "default.handlebars->29->862", + "desktop.handlebars->3->24" ] }, { @@ -27813,7 +27829,7 @@ "zh-chs": "处理控制台命令:“{0}”", "zh-cht": "處理控制台命令:“{0}”", "xloc": [ - "default.handlebars->29->1585" + "default.handlebars->29->1590" ] }, { @@ -27833,7 +27849,7 @@ "zh-chs": "提示", "zh-cht": "提示", "xloc": [ - "default.handlebars->29->190" + "default.handlebars->29->191" ] }, { @@ -27853,7 +27869,7 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->29->730" + "default.handlebars->29->735" ] }, { @@ -27873,9 +27889,9 @@ "zh-chs": "用户同意提示", "zh-cht": "用戶同意提示", "xloc": [ - "default.handlebars->29->1401", - "default.handlebars->29->1405", - "default.handlebars->29->1408" + "default.handlebars->29->1406", + "default.handlebars->29->1410", + "default.handlebars->29->1413" ] }, { @@ -27895,7 +27911,7 @@ "zh-chs": "协议", "zh-cht": "協議", "xloc": [ - "default.handlebars->29->2019", + "default.handlebars->29->2024", "player.handlebars->3->16" ] }, @@ -27934,7 +27950,7 @@ "zh-cht": "配置狀態", "xloc": [ "default-mobile.handlebars->9->373", - "default.handlebars->29->962" + "default.handlebars->29->967" ] }, { @@ -27955,7 +27971,7 @@ "zh-cht": "公開鏈結", "xloc": [ "default-mobile.handlebars->9->115", - "default.handlebars->29->1546" + "default.handlebars->29->1551" ] }, { @@ -27975,7 +27991,7 @@ "zh-chs": "旁遮普文", "zh-cht": "旁遮普文", "xloc": [ - "default.handlebars->29->1165" + "default.handlebars->29->1170" ] }, { @@ -27995,7 +28011,7 @@ "zh-chs": "旁遮普(印度)", "zh-cht": "旁遮普(印度)", "xloc": [ - "default.handlebars->29->1166" + "default.handlebars->29->1171" ] }, { @@ -28015,7 +28031,7 @@ "zh-chs": "旁遮普(巴基斯坦)", "zh-cht": "旁遮普(巴基斯坦)", "xloc": [ - "default.handlebars->29->1167" + "default.handlebars->29->1172" ] }, { @@ -28035,7 +28051,7 @@ "zh-chs": "Putty", "zh-cht": "Putty", "xloc": [ - "default.handlebars->29->633" + "default.handlebars->29->634" ] }, { @@ -28077,7 +28093,7 @@ "zh-chs": "盖丘亚族", "zh-cht": "蓋丘亞族", "xloc": [ - "default.handlebars->29->1168" + "default.handlebars->29->1173" ] }, { @@ -28141,7 +28157,7 @@ "zh-chs": "RDP", "zh-cht": "RDP", "xloc": [ - "default.handlebars->29->631" + "default.handlebars->29->632" ] }, { @@ -28161,7 +28177,7 @@ "zh-chs": "RDP连接", "zh-cht": "RDP連接", "xloc": [ - "default.handlebars->29->501" + "default.handlebars->29->502" ] }, { @@ -28181,7 +28197,7 @@ "zh-chs": "RDP远程连接端口:", "zh-cht": "RDP遠程連接介面:", "xloc": [ - "default.handlebars->29->500" + "default.handlebars->29->501" ] }, { @@ -28262,14 +28278,14 @@ "zh-chs": "RSS", "zh-cht": "RSS", "xloc": [ - "default.handlebars->29->2085" + "default.handlebars->29->2090" ] }, { "en": "Randomize password", "nl": "Willekeurig wachtwoord", "xloc": [ - "default.handlebars->29->1372" + "default.handlebars->29->1377" ] }, { @@ -28289,7 +28305,7 @@ "zh-chs": "随机密码。", "zh-cht": "隨機密碼。", "xloc": [ - "default.handlebars->29->1772" + "default.handlebars->29->1777" ] }, { @@ -28346,9 +28362,9 @@ "zh-chs": "真正的名字", "zh-cht": "真正的名字", "xloc": [ - "default.handlebars->29->1897", - "default.handlebars->29->1899", - "default.handlebars->29->1952" + "default.handlebars->29->1902", + "default.handlebars->29->1904", + "default.handlebars->29->1957" ] }, { @@ -28368,7 +28384,7 @@ "zh-chs": "境界", "zh-cht": "境界", "xloc": [ - "default.handlebars->29->1781" + "default.handlebars->29->1786" ] }, { @@ -28388,15 +28404,15 @@ "zh-chs": "收到无效的网络数据", "zh-cht": "收到無效的網絡數據", "xloc": [ - "default.handlebars->29->819", - "desktop.handlebars->3->11" + "default.handlebars->29->824", + "desktop.handlebars->3->10" ] }, { "en": "Record Sessions", "nl": "Sessies opnemen", "xloc": [ - "default.handlebars->29->1318" + "default.handlebars->29->1323" ] }, { @@ -28423,7 +28439,7 @@ "en": "Record sessions", "nl": "Sessies opnemen", "xloc": [ - "default.handlebars->29->1411" + "default.handlebars->29->1416" ] }, { @@ -28443,7 +28459,7 @@ "zh-chs": "记录细节", "zh-cht": "記錄細節", "xloc": [ - "default.handlebars->29->2033" + "default.handlebars->29->2038" ] }, { @@ -28485,8 +28501,8 @@ "xloc": [ "default-mobile.handlebars->9->121", "default-mobile.handlebars->9->312", - "default.handlebars->29->1553", - "default.handlebars->29->883" + "default.handlebars->29->1558", + "default.handlebars->29->888" ] }, { @@ -28532,7 +28548,7 @@ "default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea3->deskarea3x->DeskTools->DeskToolsRefreshButton", "default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3", "default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3", - "default.handlebars->29->518", + "default.handlebars->29->519", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p40->3->3", @@ -28584,8 +28600,8 @@ "zh-cht": "中繼", "xloc": [ "default-mobile.handlebars->9->206", - "default.handlebars->29->219", - "default.handlebars->29->428" + "default.handlebars->29->220", + "default.handlebars->29->429" ] }, { @@ -28605,7 +28621,7 @@ "zh-chs": "中继数量", "zh-cht": "中繼數量", "xloc": [ - "default.handlebars->29->2064" + "default.handlebars->29->2069" ] }, { @@ -28625,7 +28641,7 @@ "zh-chs": "中继错误", "zh-cht": "中繼錯誤", "xloc": [ - "default.handlebars->29->2057" + "default.handlebars->29->2062" ] }, { @@ -28645,8 +28661,8 @@ "zh-chs": "中继连接", "zh-cht": "中繼連接", "xloc": [ - "default.handlebars->29->2063", - "default.handlebars->29->2079" + "default.handlebars->29->2068", + "default.handlebars->29->2084" ] }, { @@ -28783,7 +28799,7 @@ "zh-chs": "远程剪贴板", "zh-cht": "遠程剪貼板", "xloc": [ - "default.handlebars->29->838" + "default.handlebars->29->843" ] }, { @@ -28791,7 +28807,7 @@ "nl": "Externe opdrachten", "xloc": [ "default-mobile.handlebars->9->441", - "default.handlebars->29->1443" + "default.handlebars->29->1448" ] }, { @@ -28813,8 +28829,8 @@ "xloc": [ "default-mobile.handlebars->9->428", "default-mobile.handlebars->9->448", - "default.handlebars->29->1429", - "default.handlebars->29->1465" + "default.handlebars->29->1434", + "default.handlebars->29->1470" ] }, { @@ -28836,8 +28852,8 @@ "xloc": [ "default-mobile.handlebars->9->162", "default-mobile.handlebars->9->165", - "default.handlebars->29->249", - "default.handlebars->29->252" + "default.handlebars->29->250", + "default.handlebars->29->253" ] }, { @@ -28857,8 +28873,8 @@ "zh-chs": "远程桌面连接栏已激活/更新", "zh-cht": "遠程桌面連接欄已激活/更新", "xloc": [ - "default.handlebars->29->1599", - "default.handlebars->29->1605" + "default.handlebars->29->1604", + "default.handlebars->29->1610" ] }, { @@ -28878,7 +28894,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->29->1600" + "default.handlebars->29->1605" ] }, { @@ -28898,7 +28914,7 @@ "zh-chs": "远程桌面连接栏失败或不受支持", "zh-cht": "遠程桌面連接欄失敗或不受支持", "xloc": [ - "default.handlebars->29->1606" + "default.handlebars->29->1611" ] }, { @@ -28918,9 +28934,9 @@ "zh-chs": "本地用户强行关闭了远程桌面连接", "zh-cht": "本地用戶強行關閉了遠程桌面連接", "xloc": [ - "default.handlebars->29->1597", - "default.handlebars->29->1601", - "default.handlebars->29->1607" + "default.handlebars->29->1602", + "default.handlebars->29->1606", + "default.handlebars->29->1612" ] }, { @@ -28940,7 +28956,7 @@ "zh-chs": "远程桌面连结", "zh-cht": "遠程桌面鏈結", "xloc": [ - "default.handlebars->29->194" + "default.handlebars->29->195" ] }, { @@ -28961,9 +28977,9 @@ "zh-cht": "遠程桌面設置", "xloc": [ "default-mobile.handlebars->9->297", - "default.handlebars->29->275", - "default.handlebars->29->830", - "desktop.handlebars->3->21" + "default.handlebars->29->276", + "default.handlebars->29->835", + "desktop.handlebars->3->20" ] }, { @@ -28983,8 +28999,8 @@ "zh-chs": "远程键盘输入", "zh-cht": "遠程鍵盤輸入", "xloc": [ - "default.handlebars->29->836", - "desktop.handlebars->3->23" + "default.handlebars->29->841", + "desktop.handlebars->3->22" ] }, { @@ -29043,8 +29059,8 @@ "xloc": [ "default-mobile.handlebars->9->429", "default-mobile.handlebars->9->453", - "default.handlebars->29->1430", - "default.handlebars->29->1470" + "default.handlebars->29->1435", + "default.handlebars->29->1475" ] }, { @@ -29064,7 +29080,7 @@ "zh-chs": "远程剪贴板的有效期为60秒。", "zh-cht": "遠程剪貼板的有效期為60秒。", "xloc": [ - "default.handlebars->29->837" + "default.handlebars->29->842" ] }, { @@ -29125,7 +29141,7 @@ "zh-chs": "删除配置", "zh-cht": "刪除配置", "xloc": [ - "default.handlebars->29->1291" + "default.handlebars->29->1296" ] }, { @@ -29179,8 +29195,8 @@ "zh-chs": "删除设备组权限", "zh-cht": "刪除裝置群權限", "xloc": [ - "default.handlebars->29->1866", - "default.handlebars->29->2002" + "default.handlebars->29->1871", + "default.handlebars->29->2007" ] }, { @@ -29200,15 +29216,15 @@ "zh-chs": "删除设备权限", "zh-cht": "刪除裝置權限", "xloc": [ - "default.handlebars->29->1864", - "default.handlebars->29->1989" + "default.handlebars->29->1869", + "default.handlebars->29->1994" ] }, { "en": "Remove Device Share", "nl": "Verwijder apparaat deling", "xloc": [ - "default.handlebars->29->1987" + "default.handlebars->29->1992" ] }, { @@ -29245,7 +29261,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->29->1998" + "default.handlebars->29->2003" ] }, { @@ -29265,8 +29281,8 @@ "zh-chs": "删除用户组权限", "zh-cht": "刪除用戶群權限", "xloc": [ - "default.handlebars->29->1489", - "default.handlebars->29->1994" + "default.handlebars->29->1494", + "default.handlebars->29->1999" ] }, { @@ -29286,7 +29302,7 @@ "zh-chs": "删除用户成员资格", "zh-cht": "刪除用戶成員資格", "xloc": [ - "default.handlebars->29->1874" + "default.handlebars->29->1879" ] }, { @@ -29306,8 +29322,8 @@ "zh-chs": "删除用户权限", "zh-cht": "刪除用戶權限", "xloc": [ - "default.handlebars->29->1487", - "default.handlebars->29->1991" + "default.handlebars->29->1492", + "default.handlebars->29->1996" ] }, { @@ -29327,7 +29343,7 @@ "zh-chs": "删除所有两因素认证。", "zh-cht": "刪除所有二因子鑑別。", "xloc": [ - "default.handlebars->29->1964" + "default.handlebars->29->1969" ] }, { @@ -29347,7 +29363,7 @@ "zh-chs": "删除此用户标识的所有先前事件。", "zh-cht": "刪除此用戶標識的所有先前事件。", "xloc": [ - "default.handlebars->29->1773" + "default.handlebars->29->1778" ] }, { @@ -29367,14 +29383,14 @@ "zh-chs": "断开连接后移除设备", "zh-cht": "斷開連接後删除裝置", "xloc": [ - "default.handlebars->29->1409" + "default.handlebars->29->1414" ] }, { "en": "Remove device sharing", "nl": "Apparaat deling verwijderen", "xloc": [ - "default.handlebars->29->663" + "default.handlebars->29->664" ] }, { @@ -29394,7 +29410,7 @@ "zh-chs": "删除节点位置", "zh-cht": "刪除節點位置", "xloc": [ - "default.handlebars->29->510" + "default.handlebars->29->511" ] }, { @@ -29415,7 +29431,7 @@ "zh-cht": "刪除電話號碼", "xloc": [ "default-mobile.handlebars->9->64", - "default.handlebars->29->1012" + "default.handlebars->29->1017" ] }, { @@ -29435,7 +29451,7 @@ "zh-chs": "移除标签", "zh-cht": "删除標籤", "xloc": [ - "default.handlebars->29->464" + "default.handlebars->29->465" ] }, { @@ -29455,7 +29471,7 @@ "zh-chs": "删除此设备", "zh-cht": "刪除此裝置", "xloc": [ - "default.handlebars->29->620" + "default.handlebars->29->621" ] }, { @@ -29475,7 +29491,7 @@ "zh-chs": "删除此用户", "zh-cht": "刪除此用戶", "xloc": [ - "default.handlebars->29->1942" + "default.handlebars->29->1947" ] }, { @@ -29495,7 +29511,7 @@ "zh-chs": "删除用户组成员身份", "zh-cht": "刪除用戶群成員身份", "xloc": [ - "default.handlebars->29->1978" + "default.handlebars->29->1983" ] }, { @@ -29515,7 +29531,7 @@ "zh-chs": "删除此设备的用户组权限", "zh-cht": "刪除此裝置的用戶群權限", "xloc": [ - "default.handlebars->29->1860" + "default.handlebars->29->1865" ] }, { @@ -29535,8 +29551,8 @@ "zh-chs": "删除此设备组的用户组权限", "zh-cht": "刪除此裝置群的用戶群權限", "xloc": [ - "default.handlebars->29->1854", - "default.handlebars->29->656" + "default.handlebars->29->1859", + "default.handlebars->29->657" ] }, { @@ -29556,11 +29572,11 @@ "zh-chs": "删除此设备组的用户权限", "zh-cht": "刪除此裝置群的用戶權限", "xloc": [ - "default.handlebars->29->1360", - "default.handlebars->29->1848", - "default.handlebars->29->1972", - "default.handlebars->29->1984", - "default.handlebars->29->657" + "default.handlebars->29->1365", + "default.handlebars->29->1853", + "default.handlebars->29->1977", + "default.handlebars->29->1989", + "default.handlebars->29->658" ] }, { @@ -29580,14 +29596,14 @@ "zh-chs": "删除身份验证应用程序", "zh-cht": "刪除身份驗證應用程序", "xloc": [ - "default.handlebars->29->1659" + "default.handlebars->29->1664" ] }, { "en": "Removed device share {0}", "nl": "Apparaatdeling {0} verwijderd", "xloc": [ - "default.handlebars->29->1670" + "default.handlebars->29->1675" ] }, { @@ -29607,7 +29623,7 @@ "zh-chs": "从设备组{1}中删除了设备{0}", "zh-cht": "從設備組{1}中刪除了設備{0}", "xloc": [ - "default.handlebars->29->1655" + "default.handlebars->29->1660" ] }, { @@ -29627,7 +29643,7 @@ "zh-chs": "已删除用户{0}的电话号码", "zh-cht": "已刪除用戶{0}的電話號碼", "xloc": [ - "default.handlebars->29->1665" + "default.handlebars->29->1670" ] }, { @@ -29647,7 +29663,7 @@ "zh-chs": "移除安全密钥", "zh-cht": "移除安全密鑰", "xloc": [ - "default.handlebars->29->1662" + "default.handlebars->29->1667" ] }, { @@ -29667,9 +29683,9 @@ "zh-chs": "删除了{0}的用户设备权限", "zh-cht": "刪除了{0}的用戶設備權限", "xloc": [ - "default.handlebars->29->1628", - "default.handlebars->29->1649", - "default.handlebars->29->1654" + "default.handlebars->29->1633", + "default.handlebars->29->1654", + "default.handlebars->29->1659" ] }, { @@ -29689,7 +29705,7 @@ "zh-chs": "从设备组{1}中删除了用户组{0}", "zh-cht": "從設備組{1}中刪除了用戶組{0}", "xloc": [ - "default.handlebars->29->1638" + "default.handlebars->29->1643" ] }, { @@ -29709,7 +29725,7 @@ "zh-chs": "从设备组{1}中删除了用户{0}", "zh-cht": "已從設備組{1}中刪除用戶{0}", "xloc": [ - "default.handlebars->29->1651" + "default.handlebars->29->1656" ] }, { @@ -29729,8 +29745,8 @@ "zh-chs": "从用户组{1}中删除了用户{0}", "zh-cht": "從用戶組{1}中刪除了用戶{0}", "xloc": [ - "default.handlebars->29->1630", - "default.handlebars->29->1640" + "default.handlebars->29->1635", + "default.handlebars->29->1645" ] }, { @@ -29754,9 +29770,9 @@ "default-mobile.handlebars->9->316", "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->29->1557", - "default.handlebars->29->504", - "default.handlebars->29->887", + "default.handlebars->29->1562", + "default.handlebars->29->505", + "default.handlebars->29->892", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3", "default.handlebars->filesContextMenu->1" @@ -29779,7 +29795,7 @@ "zh-chs": "重命名:“{0}”为“{1}”", "zh-cht": "重命名:“{0}”為“{1}”", "xloc": [ - "default.handlebars->29->1616" + "default.handlebars->29->1621" ] }, { @@ -29799,7 +29815,7 @@ "zh-chs": "报告日", "zh-cht": "報告日", "xloc": [ - "default.handlebars->29->1677" + "default.handlebars->29->1682" ] }, { @@ -29819,7 +29835,7 @@ "zh-chs": "报告类型", "zh-cht": "報告類型", "xloc": [ - "default.handlebars->29->1672" + "default.handlebars->29->1677" ] }, { @@ -29839,7 +29855,7 @@ "zh-chs": "要求:", "zh-cht": "要求:", "xloc": [ - "default.handlebars->29->1260" + "default.handlebars->29->1265" ] }, { @@ -29860,23 +29876,23 @@ "zh-cht": "要求:{0}。", "xloc": [ "default-mobile.handlebars->9->89", - "default.handlebars->29->1778", - "default.handlebars->29->1962" + "default.handlebars->29->1783", + "default.handlebars->29->1967" ] }, { "en": "Requires installation of MeshCentral Router", "nl": "Vereist de installatie van MeshCentral Router", "xloc": [ - "default.handlebars->29->630" + "default.handlebars->29->631" ] }, { "en": "Requires installation of MeshCentral Router.", "nl": "Vereist de installatie van MeshCentral Router.", "xloc": [ - "default.handlebars->29->632", - "default.handlebars->29->634" + "default.handlebars->29->633", + "default.handlebars->29->635" ] }, { @@ -29919,7 +29935,7 @@ "zh-cht": "重設", "xloc": [ "default-mobile.handlebars->9->273", - "default.handlebars->29->737", + "default.handlebars->29->742", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -29928,7 +29944,7 @@ "nl": "Reset / uitschakelen", "xloc": [ "default-mobile.handlebars->9->442", - "default.handlebars->29->1444" + "default.handlebars->29->1449" ] }, { @@ -30014,7 +30030,7 @@ "zh-chs": "重置设备", "zh-cht": "重置裝置", "xloc": [ - "default.handlebars->29->439" + "default.handlebars->29->440" ] }, { @@ -30042,9 +30058,9 @@ "nl": "Reset/Uit", "xloc": [ "default-mobile.handlebars->9->462", - "default.handlebars->29->1480", - "default.handlebars->29->680", - "default.handlebars->29->701" + "default.handlebars->29->1485", + "default.handlebars->29->681", + "default.handlebars->29->702" ] }, { @@ -30064,7 +30080,7 @@ "zh-chs": "重新启动", "zh-cht": "重新啟動", "xloc": [ - "default.handlebars->29->853", + "default.handlebars->29->858", "player.handlebars->p11->deskarea0->deskarea4->3" ] }, @@ -30085,7 +30101,7 @@ "zh-chs": "还原服务器", "zh-cht": "還原伺服器", "xloc": [ - "default.handlebars->29->1296" + "default.handlebars->29->1301" ] }, { @@ -30125,7 +30141,7 @@ "zh-chs": "使用备份还原服务器,这将删除现有服务器数据。仅当您知道自己在做什么时才这样做。", "zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據。僅當你知道自己在做什麼時才這樣做。", "xloc": [ - "default.handlebars->29->1293" + "default.handlebars->29->1298" ] }, { @@ -30134,7 +30150,7 @@ "xloc": [ "default-mobile.handlebars->9->227", "default.handlebars->29->162", - "default.handlebars->29->643" + "default.handlebars->29->644" ] }, { @@ -30154,7 +30170,7 @@ "zh-chs": "限制条件", "zh-cht": "限制條件", "xloc": [ - "default.handlebars->29->1886" + "default.handlebars->29->1891" ] }, { @@ -30174,7 +30190,7 @@ "zh-chs": "雷托-罗曼语", "zh-cht": "雷托-羅曼語", "xloc": [ - "default.handlebars->29->1169" + "default.handlebars->29->1174" ] }, { @@ -30194,7 +30210,7 @@ "zh-chs": "罗马尼亚文", "zh-cht": "羅馬尼亞文", "xloc": [ - "default.handlebars->29->1170" + "default.handlebars->29->1175" ] }, { @@ -30214,7 +30230,7 @@ "zh-chs": "罗马尼亚文(摩尔达维亚)", "zh-cht": "羅馬尼亞文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->1171" + "default.handlebars->29->1176" ] }, { @@ -30236,8 +30252,8 @@ "xloc": [ "default-mobile.handlebars->9->107", "default-mobile.handlebars->9->306", - "default.handlebars->29->1525", - "default.handlebars->29->877" + "default.handlebars->29->1530", + "default.handlebars->29->882" ] }, { @@ -30354,7 +30370,7 @@ "zh-chs": "路由器", "zh-cht": "路由器", "xloc": [ - "default.handlebars->29->241" + "default.handlebars->29->242" ] }, { @@ -30374,9 +30390,9 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->29->459", - "default.handlebars->29->735", - "default.handlebars->29->751" + "default.handlebars->29->460", + "default.handlebars->29->740", + "default.handlebars->29->756" ] }, { @@ -30396,23 +30412,23 @@ "zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。", "zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。", "xloc": [ - "default.handlebars->29->784" + "default.handlebars->29->789" ] }, { "en": "Run as agent", "nl": "Uitvoeren als agent", "xloc": [ - "default.handlebars->29->456", - "default.handlebars->29->748" + "default.handlebars->29->457", + "default.handlebars->29->753" ] }, { "en": "Run as user, agent if no user", "nl": "Uitvoeren als gebruiker, agent als er geen gebruiker is", "xloc": [ - "default.handlebars->29->457", - "default.handlebars->29->749" + "default.handlebars->29->458", + "default.handlebars->29->754" ] }, { @@ -30432,7 +30448,7 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->29->441" + "default.handlebars->29->442" ] }, { @@ -30452,8 +30468,8 @@ "zh-chs": "在所选设备上运行命令。", "zh-cht": "在所選裝置上運行命令。", "xloc": [ - "default.handlebars->29->452", - "default.handlebars->29->744" + "default.handlebars->29->453", + "default.handlebars->29->749" ] }, { @@ -30490,21 +30506,21 @@ "zh-chs": "运行命令", "zh-cht": "運行命令", "xloc": [ - "default.handlebars->29->1592" + "default.handlebars->29->1597" ] }, { "en": "Running commands as user", "nl": "Commando's uitvoeren als gebruiker", "xloc": [ - "default.handlebars->29->1667" + "default.handlebars->29->1672" ] }, { "en": "Running commands as user if possible", "nl": "Indien mogelijk commando's uitvoeren als gebruiker", "xloc": [ - "default.handlebars->29->1668" + "default.handlebars->29->1673" ] }, { @@ -30524,7 +30540,7 @@ "zh-chs": "俄文", "zh-cht": "俄文", "xloc": [ - "default.handlebars->29->1172" + "default.handlebars->29->1177" ] }, { @@ -30544,7 +30560,7 @@ "zh-chs": "俄文(摩尔达维亚)", "zh-cht": "俄文(摩爾達維亞)", "xloc": [ - "default.handlebars->29->1173" + "default.handlebars->29->1178" ] }, { @@ -30564,8 +30580,8 @@ "zh-chs": "短信", "zh-cht": "短信", "xloc": [ - "default.handlebars->29->1931", "default.handlebars->29->1936", + "default.handlebars->29->1941", "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", @@ -30590,7 +30606,7 @@ "zh-chs": "此用户的短信功能电话号码。", "zh-cht": "此用戶的短信功能電話號碼。", "xloc": [ - "default.handlebars->29->1948" + "default.handlebars->29->1953" ] }, { @@ -30632,7 +30648,7 @@ "zh-chs": "与设备名称相同", "zh-cht": "與裝置名稱相同", "xloc": [ - "default.handlebars->29->289" + "default.handlebars->29->290" ] }, { @@ -30652,7 +30668,7 @@ "zh-chs": "萨米(拉普兰)", "zh-cht": "薩米(拉普蘭)", "xloc": [ - "default.handlebars->29->1174" + "default.handlebars->29->1179" ] }, { @@ -30710,7 +30726,7 @@ "zh-chs": "三乡", "zh-cht": "三鄉", "xloc": [ - "default.handlebars->29->1175" + "default.handlebars->29->1180" ] }, { @@ -30730,7 +30746,7 @@ "zh-chs": "梵文", "zh-cht": "梵文", "xloc": [ - "default.handlebars->29->1176" + "default.handlebars->29->1181" ] }, { @@ -30750,7 +30766,7 @@ "zh-chs": "撒丁岛", "zh-cht": "撒丁島", "xloc": [ - "default.handlebars->29->1177" + "default.handlebars->29->1182" ] }, { @@ -30811,7 +30827,7 @@ "zh-chs": "保存节点位置", "zh-cht": "保存節點位置", "xloc": [ - "default.handlebars->29->511" + "default.handlebars->29->512" ] }, { @@ -30870,8 +30886,8 @@ "zh-chs": "扫瞄", "zh-cht": "掃瞄", "xloc": [ - "default.handlebars->29->309", - "default.handlebars->29->311" + "default.handlebars->29->310", + "default.handlebars->29->312" ] }, { @@ -30891,7 +30907,7 @@ "zh-chs": "扫描网络", "zh-cht": "掃描網絡", "xloc": [ - "default.handlebars->29->279" + "default.handlebars->29->280" ] }, { @@ -30911,7 +30927,7 @@ "zh-chs": "扫描英特尔®AMT设备", "zh-cht": "掃描Intel® AMT裝置", "xloc": [ - "default.handlebars->29->312" + "default.handlebars->29->313" ] }, { @@ -30951,7 +30967,7 @@ "zh-chs": "扫描...", "zh-cht": "掃描...", "xloc": [ - "default.handlebars->29->313" + "default.handlebars->29->314" ] }, { @@ -31031,7 +31047,7 @@ "zh-chs": "搜寻", "zh-cht": "搜尋", "xloc": [ - "default.handlebars->29->524", + "default.handlebars->29->525", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar" ] }, @@ -31118,7 +31134,7 @@ "zh-cht": "已使用TLS保安", "xloc": [ "default-mobile.handlebars->9->376", - "default.handlebars->29->965" + "default.handlebars->29->970" ] }, { @@ -31140,10 +31156,10 @@ "xloc": [ "default-mobile.handlebars->9->282", "default-mobile.handlebars->9->375", - "default.handlebars->29->1932", - "default.handlebars->29->293", - "default.handlebars->29->757", - "default.handlebars->29->964" + "default.handlebars->29->1937", + "default.handlebars->29->294", + "default.handlebars->29->762", + "default.handlebars->29->969" ] }, { @@ -31163,7 +31179,7 @@ "zh-chs": "安全密钥", "zh-cht": "安全密鑰", "xloc": [ - "default.handlebars->29->1929" + "default.handlebars->29->1934" ] }, { @@ -31203,12 +31219,12 @@ "zh-chs": "全选", "zh-cht": "全選", "xloc": [ - "default.handlebars->29->1549", - "default.handlebars->29->1722", - "default.handlebars->29->1805", - "default.handlebars->29->433", - "default.handlebars->29->879", - "default.handlebars->29->881", + "default.handlebars->29->1554", + "default.handlebars->29->1727", + "default.handlebars->29->1810", + "default.handlebars->29->434", + "default.handlebars->29->884", + "default.handlebars->29->886", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar", "default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3", "default.handlebars->container->column_l->p4->3->1->0->3->3", @@ -31234,11 +31250,11 @@ "zh-chs": "选择无", "zh-cht": "選擇無", "xloc": [ - "default.handlebars->29->1548", - "default.handlebars->29->1721", - "default.handlebars->29->1804", - "default.handlebars->29->432", - "default.handlebars->29->880", + "default.handlebars->29->1553", + "default.handlebars->29->1726", + "default.handlebars->29->1809", + "default.handlebars->29->433", + "default.handlebars->29->885", "default.handlebars->meshContextMenu->cxselectnone" ] }, @@ -31259,7 +31275,7 @@ "zh-chs": "为所选设备选择一个新组", "zh-cht": "為所選裝置選擇一個新群", "xloc": [ - "default.handlebars->29->771" + "default.handlebars->29->776" ] }, { @@ -31279,7 +31295,7 @@ "zh-chs": "选择此设备的新组", "zh-cht": "選擇此裝置的新群", "xloc": [ - "default.handlebars->29->770" + "default.handlebars->29->775" ] }, { @@ -31299,7 +31315,7 @@ "zh-chs": "选择要放置的节点", "zh-cht": "選擇要放置的節點", "xloc": [ - "default.handlebars->29->527" + "default.handlebars->29->528" ] }, { @@ -31319,7 +31335,7 @@ "zh-chs": "选择要在所有选定设备上执行的操作。仅在拥有适当权限的情况下才能执行操作。", "zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。", "xloc": [ - "default.handlebars->29->445" + "default.handlebars->29->446" ] }, { @@ -31339,8 +31355,8 @@ "zh-chs": "选择要对所有选定用户执行的操作。", "zh-cht": "選擇要對所有選定用戶執行的操作。", "xloc": [ - "default.handlebars->29->1725", - "default.handlebars->29->1806" + "default.handlebars->29->1730", + "default.handlebars->29->1811" ] }, { @@ -31361,14 +31377,14 @@ "zh-cht": "選擇要在此裝置上執行的操作。", "xloc": [ "default-mobile.handlebars->9->270", - "default.handlebars->29->733" + "default.handlebars->29->738" ] }, { "en": "Select new password", "nl": "Selecteer nieuw wachtwoord", "xloc": [ - "default.handlebars->29->1373" + "default.handlebars->29->1378" ] }, { @@ -31410,7 +31426,7 @@ "zh-cht": "僅自我事件", "xloc": [ "default-mobile.handlebars->9->458", - "default.handlebars->29->1476" + "default.handlebars->29->1481" ] }, { @@ -31453,7 +31469,7 @@ "zh-chs": "发电邮", "zh-cht": "發電郵", "xloc": [ - "default.handlebars->29->1736" + "default.handlebars->29->1741" ] }, { @@ -31473,8 +31489,8 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->29->434", - "default.handlebars->29->739" + "default.handlebars->29->435", + "default.handlebars->29->744" ] }, { @@ -31494,7 +31510,7 @@ "zh-chs": "发送MQTT消息", "zh-cht": "發送MQTT消息", "xloc": [ - "default.handlebars->29->763" + "default.handlebars->29->768" ] }, { @@ -31514,7 +31530,7 @@ "zh-chs": "发送短信", "zh-cht": "發送簡訊", "xloc": [ - "default.handlebars->29->1734" + "default.handlebars->29->1739" ] }, { @@ -31534,7 +31550,7 @@ "zh-chs": "发送短信给该用户", "zh-cht": "發送短信給該用戶", "xloc": [ - "default.handlebars->29->1937" + "default.handlebars->29->1942" ] }, { @@ -31554,7 +31570,7 @@ "zh-chs": "发送电邮给该用户", "zh-cht": "發送電郵給該用戶", "xloc": [ - "default.handlebars->29->1939" + "default.handlebars->29->1944" ] }, { @@ -31574,7 +31590,7 @@ "zh-chs": "向该组中的所有用户发送通知。", "zh-cht": "向該群中的所有用戶發送通知。", "xloc": [ - "default.handlebars->29->1845" + "default.handlebars->29->1850" ] }, { @@ -31594,7 +31610,7 @@ "zh-chs": "向该用户发送文本通知。", "zh-cht": "向該用戶發送文本通知。", "xloc": [ - "default.handlebars->29->1737" + "default.handlebars->29->1742" ] }, { @@ -31614,7 +31630,7 @@ "zh-chs": "发送电邮给用户", "zh-cht": "發送電郵給用戶", "xloc": [ - "default.handlebars->29->1717" + "default.handlebars->29->1722" ] }, { @@ -31634,7 +31650,7 @@ "zh-chs": "发送安装连结", "zh-cht": "發送安裝鏈結", "xloc": [ - "default.handlebars->29->322" + "default.handlebars->29->323" ] }, { @@ -31654,7 +31670,7 @@ "zh-chs": "发送邀请电邮。", "zh-cht": "發送邀請電郵。", "xloc": [ - "default.handlebars->29->1777" + "default.handlebars->29->1782" ] }, { @@ -31776,7 +31792,7 @@ "zh-chs": "发送用户通知", "zh-cht": "發送用戶通知", "xloc": [ - "default.handlebars->29->1941" + "default.handlebars->29->1946" ] }, { @@ -31796,7 +31812,7 @@ "zh-chs": "塞尔维亚", "zh-cht": "塞爾維亞", "xloc": [ - "default.handlebars->29->1180" + "default.handlebars->29->1185" ] }, { @@ -31817,7 +31833,7 @@ "zh-cht": "序列號", "xloc": [ "default-mobile.handlebars->9->387", - "default.handlebars->29->976" + "default.handlebars->29->981" ] }, { @@ -31837,7 +31853,7 @@ "zh-chs": "服务器备份", "zh-cht": "伺服器備份", "xloc": [ - "default.handlebars->29->1787" + "default.handlebars->29->1792" ] }, { @@ -31857,7 +31873,7 @@ "zh-chs": "服务器证书", "zh-cht": "伺服器憑證", "xloc": [ - "default.handlebars->29->2095" + "default.handlebars->29->2100" ] }, { @@ -31877,7 +31893,7 @@ "zh-chs": "服务器数据库", "zh-cht": "伺服器數據庫", "xloc": [ - "default.handlebars->29->2096" + "default.handlebars->29->2101" ] }, { @@ -31899,11 +31915,11 @@ "xloc": [ "default-mobile.handlebars->9->435", "default-mobile.handlebars->9->450", - "default.handlebars->29->1437", - "default.handlebars->29->1467", - "default.handlebars->29->1784", - "default.handlebars->29->673", - "default.handlebars->29->694" + "default.handlebars->29->1442", + "default.handlebars->29->1472", + "default.handlebars->29->1789", + "default.handlebars->29->674", + "default.handlebars->29->695" ] }, { @@ -31923,8 +31939,8 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->29->1709", - "default.handlebars->29->1798" + "default.handlebars->29->1714", + "default.handlebars->29->1803" ] }, { @@ -31944,7 +31960,7 @@ "zh-chs": "服务器配额", "zh-cht": "伺服器配額", "xloc": [ - "default.handlebars->29->1903" + "default.handlebars->29->1908" ] }, { @@ -31964,7 +31980,7 @@ "zh-chs": "服务器还原", "zh-cht": "伺服器還原", "xloc": [ - "default.handlebars->29->1788" + "default.handlebars->29->1793" ] }, { @@ -31984,7 +32000,7 @@ "zh-chs": "服务器权限", "zh-cht": "伺服器權限", "xloc": [ - "default.handlebars->29->1902" + "default.handlebars->29->1907" ] }, { @@ -32004,7 +32020,7 @@ "zh-chs": "服务器状态", "zh-cht": "伺服器狀態", "xloc": [ - "default.handlebars->29->2043" + "default.handlebars->29->2048" ] }, { @@ -32044,7 +32060,7 @@ "zh-chs": "服务器跟踪", "zh-cht": "伺服器追蹤", "xloc": [ - "default.handlebars->29->2106" + "default.handlebars->29->2111" ] }, { @@ -32064,7 +32080,7 @@ "zh-chs": "服务器更新", "zh-cht": "伺服器更新", "xloc": [ - "default.handlebars->29->1789" + "default.handlebars->29->1794" ] }, { @@ -32207,7 +32223,7 @@ "zh-chs": "ServerStats.csv", "zh-cht": "ServerStats.csv", "xloc": [ - "default.handlebars->29->2087" + "default.handlebars->29->2092" ] }, { @@ -32227,7 +32243,7 @@ "zh-chs": "服务详情", "zh-cht": "服務詳情", "xloc": [ - "default.handlebars->29->854" + "default.handlebars->29->859" ] }, { @@ -32267,7 +32283,7 @@ "zh-chs": "会话", "zh-cht": "節", "xloc": [ - "default.handlebars->29->2007" + "default.handlebars->29->2012" ] }, { @@ -32287,8 +32303,8 @@ "zh-chs": "会话信息", "zh-cht": "會議訊息", "xloc": [ - "default.handlebars->29->827", - "desktop.handlebars->3->19" + "default.handlebars->29->832", + "desktop.handlebars->3->18" ] }, { @@ -32351,7 +32367,7 @@ "zh-cht": "節", "xloc": [ "default-mobile.handlebars->9->180", - "default.handlebars->29->267", + "default.handlebars->29->268", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7" ] }, @@ -32372,7 +32388,7 @@ "zh-chs": "设置标签", "zh-cht": "設置標籤", "xloc": [ - "default.handlebars->29->463" + "default.handlebars->29->464" ] }, { @@ -32392,7 +32408,7 @@ "zh-chs": "设置剪贴板内容,{0}个字节", "zh-cht": "設置剪貼板內容,{0}個字節", "xloc": [ - "default.handlebars->29->1590" + "default.handlebars->29->1595" ] }, { @@ -32433,7 +32449,7 @@ "zh-chs": "设定档案", "zh-cht": "設定檔案", "xloc": [ - "default.handlebars->29->375" + "default.handlebars->29->376" ] }, { @@ -32461,8 +32477,8 @@ "en": "Setup", "nl": "Setup", "xloc": [ - "default.handlebars->29->1352", - "default.handlebars->29->281" + "default.handlebars->29->1357", + "default.handlebars->29->282" ] }, { @@ -32516,7 +32532,7 @@ "zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。", "zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。", "xloc": [ - "default.handlebars->29->1284" + "default.handlebars->29->1289" ] }, { @@ -32538,9 +32554,9 @@ "xloc": [ "default-mobile.handlebars->9->3", "default.handlebars->29->10", - "default.handlebars->29->244", - "default.handlebars->29->247", - "default.handlebars->29->274", + "default.handlebars->29->245", + "default.handlebars->29->248", + "default.handlebars->29->275", "desktop.handlebars->3->3", "xterm.handlebars->9->3" ] @@ -32562,7 +32578,7 @@ "zh-chs": "共享", "zh-cht": "共享", "xloc": [ - "default.handlebars->29->616" + "default.handlebars->29->617" ] }, { @@ -32582,8 +32598,8 @@ "zh-chs": "共享设备", "zh-cht": "共享裝置", "xloc": [ - "default.handlebars->29->196", - "default.handlebars->29->732" + "default.handlebars->29->197", + "default.handlebars->29->737" ] }, { @@ -32623,7 +32639,21 @@ "zh-chs": "共享过程", "zh-cht": "共享過程", "xloc": [ - "default.handlebars->29->848" + "default.handlebars->29->853" + ] + }, + { + "en": "Sharing link is expired.", + "xloc": [ + "message.handlebars->3->15", + "message2.handlebars->5->15" + ] + }, + { + "en": "Sharing link not valid yet.", + "xloc": [ + "message.handlebars->3->14", + "message2.handlebars->5->14" ] }, { @@ -32775,7 +32805,7 @@ "zh-cht": "只顯示自己的事件", "xloc": [ "default-mobile.handlebars->9->438", - "default.handlebars->29->1440" + "default.handlebars->29->1445" ] }, { @@ -32795,7 +32825,7 @@ "zh-chs": "显示连接工具栏", "zh-cht": "顯示連接工具欄", "xloc": [ - "default.handlebars->29->1402" + "default.handlebars->29->1407" ] }, { @@ -32815,7 +32845,7 @@ "zh-chs": "显示设备位置信息", "zh-cht": "顯示裝置位置訊息", "xloc": [ - "default.handlebars->29->624" + "default.handlebars->29->625" ] }, { @@ -32835,7 +32865,7 @@ "zh-chs": "显示设备网络接口信息", "zh-cht": "顯示裝置網絡介面訊息", "xloc": [ - "default.handlebars->29->622" + "default.handlebars->29->623" ] }, { @@ -32875,8 +32905,8 @@ "zh-chs": "显示1分钟", "zh-cht": "顯示1分鐘", "xloc": [ - "default.handlebars->29->1740", - "default.handlebars->29->1763" + "default.handlebars->29->1745", + "default.handlebars->29->1768" ] }, { @@ -32896,8 +32926,8 @@ "zh-chs": "显示10秒", "zh-cht": "顯示10秒", "xloc": [ - "default.handlebars->29->1739", - "default.handlebars->29->1762" + "default.handlebars->29->1744", + "default.handlebars->29->1767" ] }, { @@ -32917,8 +32947,8 @@ "zh-chs": "显示5分钟", "zh-cht": "顯示5分鐘", "xloc": [ - "default.handlebars->29->1741", - "default.handlebars->29->1764" + "default.handlebars->29->1746", + "default.handlebars->29->1769" ] }, { @@ -32938,8 +32968,8 @@ "zh-chs": "显示消息,直到被用户拒绝", "zh-cht": "顯示消息,直到被用戶拒絕", "xloc": [ - "default.handlebars->29->1738", - "default.handlebars->29->1761" + "default.handlebars->29->1743", + "default.handlebars->29->1766" ] }, { @@ -33133,8 +33163,8 @@ "zh-chs": "简单管理员控制模式(ACM)", "zh-cht": "簡單管理員控制模式(ACM)", "xloc": [ - "default.handlebars->29->1343", - "default.handlebars->29->1363" + "default.handlebars->29->1348", + "default.handlebars->29->1368" ] }, { @@ -33154,8 +33184,8 @@ "zh-chs": "简单客户端控制模式(CCM)", "zh-cht": "簡單客戶端控制模式(CCM)", "xloc": [ - "default.handlebars->29->1341", - "default.handlebars->29->1367" + "default.handlebars->29->1346", + "default.handlebars->29->1372" ] }, { @@ -33175,7 +33205,7 @@ "zh-chs": "信地", "zh-cht": "信地", "xloc": [ - "default.handlebars->29->1178" + "default.handlebars->29->1183" ] }, { @@ -33195,7 +33225,7 @@ "zh-chs": "僧伽罗文", "zh-cht": "僧伽羅文", "xloc": [ - "default.handlebars->29->1179" + "default.handlebars->29->1184" ] }, { @@ -33237,8 +33267,8 @@ "zh-chs": "尺寸", "zh-cht": "尺寸", "xloc": [ - "default.handlebars->29->2010", - "default.handlebars->29->2025", + "default.handlebars->29->2015", + "default.handlebars->29->2030", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize" ] }, @@ -33259,7 +33289,7 @@ "zh-chs": "缩放:100%", "zh-cht": "縮放:100%", "xloc": [ - "default.handlebars->29->908" + "default.handlebars->29->913" ] }, { @@ -33279,7 +33309,7 @@ "zh-chs": "缩放:125%", "zh-cht": "縮放:125%", "xloc": [ - "default.handlebars->29->909" + "default.handlebars->29->914" ] }, { @@ -33299,7 +33329,7 @@ "zh-chs": "缩放:150%", "zh-cht": "縮放:150%", "xloc": [ - "default.handlebars->29->910" + "default.handlebars->29->915" ] }, { @@ -33319,7 +33349,7 @@ "zh-chs": "缩放:200%", "zh-cht": "縮放:200%", "xloc": [ - "default.handlebars->29->911" + "default.handlebars->29->916" ] }, { @@ -33346,7 +33376,7 @@ "default.handlebars->29->2", "default.handlebars->29->3", "default.handlebars->29->4", - "default.handlebars->29->736" + "default.handlebars->29->741" ] }, { @@ -33366,7 +33396,7 @@ "zh-chs": "把装置休眠", "zh-cht": "把裝置休眠", "xloc": [ - "default.handlebars->29->438" + "default.handlebars->29->439" ] }, { @@ -33388,8 +33418,8 @@ "xloc": [ "default-mobile.handlebars->9->190", "default-mobile.handlebars->9->191", - "default.handlebars->29->403", - "default.handlebars->29->405" + "default.handlebars->29->404", + "default.handlebars->29->406" ] }, { @@ -33409,7 +33439,7 @@ "zh-chs": "斯洛伐克文", "zh-cht": "斯洛伐克文", "xloc": [ - "default.handlebars->29->1181" + "default.handlebars->29->1186" ] }, { @@ -33429,7 +33459,7 @@ "zh-chs": "斯洛文尼亞文", "zh-cht": "斯洛文尼亞文", "xloc": [ - "default.handlebars->29->1182" + "default.handlebars->29->1187" ] }, { @@ -33492,7 +33522,7 @@ "zh-chs": "小焦点", "zh-cht": "小焦點", "xloc": [ - "default.handlebars->29->833" + "default.handlebars->29->838" ] }, { @@ -33512,7 +33542,7 @@ "zh-chs": "软断开代理", "zh-cht": "軟斷開代理", "xloc": [ - "default.handlebars->29->1008" + "default.handlebars->29->1013" ] }, { @@ -33533,7 +33563,7 @@ "zh-cht": "軟關機", "xloc": [ "default-mobile.handlebars->9->194", - "default.handlebars->29->411" + "default.handlebars->29->412" ] }, { @@ -33573,7 +33603,7 @@ "zh-chs": "索马尼", "zh-cht": "索馬尼", "xloc": [ - "default.handlebars->29->1183" + "default.handlebars->29->1188" ] }, { @@ -33593,7 +33623,7 @@ "zh-chs": "索比亚文", "zh-cht": "索比亞文", "xloc": [ - "default.handlebars->29->1184" + "default.handlebars->29->1189" ] }, { @@ -33744,7 +33774,7 @@ "zh-chs": "西班牙文", "zh-cht": "西班牙文", "xloc": [ - "default.handlebars->29->1185" + "default.handlebars->29->1190" ] }, { @@ -33764,7 +33794,7 @@ "zh-chs": "西班牙文(阿根廷)", "zh-cht": "西班牙文(阿根廷)", "xloc": [ - "default.handlebars->29->1186" + "default.handlebars->29->1191" ] }, { @@ -33784,7 +33814,7 @@ "zh-chs": "西班牙文(玻利维亚)", "zh-cht": "西班牙文(玻利維亞)", "xloc": [ - "default.handlebars->29->1187" + "default.handlebars->29->1192" ] }, { @@ -33804,7 +33834,7 @@ "zh-chs": "西班牙文(智利)", "zh-cht": "西班牙文(智利)", "xloc": [ - "default.handlebars->29->1188" + "default.handlebars->29->1193" ] }, { @@ -33824,7 +33854,7 @@ "zh-chs": "西班牙文(哥伦比亚)", "zh-cht": "西班牙文(哥倫比亞)", "xloc": [ - "default.handlebars->29->1189" + "default.handlebars->29->1194" ] }, { @@ -33844,7 +33874,7 @@ "zh-chs": "西班牙文(哥斯达黎加)", "zh-cht": "西班牙文(哥斯達黎加)", "xloc": [ - "default.handlebars->29->1190" + "default.handlebars->29->1195" ] }, { @@ -33864,7 +33894,7 @@ "zh-chs": "西班牙文(多米尼加共和国)", "zh-cht": "西班牙文(多米尼加共和國)", "xloc": [ - "default.handlebars->29->1191" + "default.handlebars->29->1196" ] }, { @@ -33884,7 +33914,7 @@ "zh-chs": "西班牙文(厄瓜多尔)", "zh-cht": "西班牙文(厄瓜多爾)", "xloc": [ - "default.handlebars->29->1192" + "default.handlebars->29->1197" ] }, { @@ -33904,7 +33934,7 @@ "zh-chs": "西班牙文(萨尔瓦多)", "zh-cht": "西班牙文(薩爾瓦多)", "xloc": [ - "default.handlebars->29->1193" + "default.handlebars->29->1198" ] }, { @@ -33924,7 +33954,7 @@ "zh-chs": "西班牙文(危地马拉)", "zh-cht": "西班牙文(危地馬拉)", "xloc": [ - "default.handlebars->29->1194" + "default.handlebars->29->1199" ] }, { @@ -33944,7 +33974,7 @@ "zh-chs": "西班牙文(洪都拉斯)", "zh-cht": "西班牙文(洪都拉斯)", "xloc": [ - "default.handlebars->29->1195" + "default.handlebars->29->1200" ] }, { @@ -33964,7 +33994,7 @@ "zh-chs": "西班牙文(墨西哥)", "zh-cht": "西班牙文(墨西哥)", "xloc": [ - "default.handlebars->29->1196" + "default.handlebars->29->1201" ] }, { @@ -33984,7 +34014,7 @@ "zh-chs": "西班牙文(尼加拉瓜)", "zh-cht": "西班牙文(尼加拉瓜)", "xloc": [ - "default.handlebars->29->1197" + "default.handlebars->29->1202" ] }, { @@ -34004,7 +34034,7 @@ "zh-chs": "西班牙文(巴拿马)", "zh-cht": "西班牙文(巴拿馬)", "xloc": [ - "default.handlebars->29->1198" + "default.handlebars->29->1203" ] }, { @@ -34024,7 +34054,7 @@ "zh-chs": "西班牙文(巴拉圭)", "zh-cht": "西班牙文(巴拉圭)", "xloc": [ - "default.handlebars->29->1199" + "default.handlebars->29->1204" ] }, { @@ -34044,7 +34074,7 @@ "zh-chs": "西班牙文(秘鲁)", "zh-cht": "西班牙文(秘魯)", "xloc": [ - "default.handlebars->29->1200" + "default.handlebars->29->1205" ] }, { @@ -34064,7 +34094,7 @@ "zh-chs": "西班牙文(波多黎各)", "zh-cht": "西班牙文(波多黎各)", "xloc": [ - "default.handlebars->29->1201" + "default.handlebars->29->1206" ] }, { @@ -34084,7 +34114,7 @@ "zh-chs": "西班牙文(西班牙)", "zh-cht": "西班牙文(西班牙)", "xloc": [ - "default.handlebars->29->1202" + "default.handlebars->29->1207" ] }, { @@ -34104,7 +34134,7 @@ "zh-chs": "西班牙文(乌拉圭)", "zh-cht": "西班牙文(烏拉圭)", "xloc": [ - "default.handlebars->29->1203" + "default.handlebars->29->1208" ] }, { @@ -34124,7 +34154,7 @@ "zh-chs": "西班牙文(委内瑞拉)", "zh-cht": "西班牙文(委內瑞拉)", "xloc": [ - "default.handlebars->29->1204" + "default.handlebars->29->1209" ] }, { @@ -34191,7 +34221,7 @@ "zh-chs": "开始", "zh-cht": "開始", "xloc": [ - "default.handlebars->29->851" + "default.handlebars->29->856" ] }, { @@ -34228,17 +34258,18 @@ "zh-chs": "开始时间", "zh-cht": "開始時間", "xloc": [ - "default.handlebars->29->2008", - "default.handlebars->29->2027", - "default.handlebars->29->823", - "desktop.handlebars->3->15" + "default.handlebars->29->188", + "default.handlebars->29->2013", + "default.handlebars->29->2032", + "default.handlebars->29->828", + "desktop.handlebars->3->14" ] }, { "en": "Start by entering the old and new MBEx password. ", "nl": "Begin met het invoeren van het oude en nieuwe MBEx-wachtwoord. ", "xloc": [ - "default.handlebars->29->301" + "default.handlebars->29->302" ] }, { @@ -34258,7 +34289,7 @@ "zh-chs": "开始桌面多重会话", "zh-cht": "啟動桌面多路復用會話", "xloc": [ - "default.handlebars->29->1574" + "default.handlebars->29->1579" ] }, { @@ -34278,7 +34309,7 @@ "zh-chs": "从{1}到{2}开始了桌面会话“{0}”", "zh-cht": "從{1}到{2}開始了桌面會話“{0}”", "xloc": [ - "default.handlebars->29->1583" + "default.handlebars->29->1588" ] }, { @@ -34298,7 +34329,7 @@ "zh-chs": "从{1}到{2}开始文件管理会话“{0}”", "zh-cht": "從{1}到{2}開始文件管理會話“{0}”", "xloc": [ - "default.handlebars->29->1584" + "default.handlebars->29->1589" ] }, { @@ -34318,7 +34349,7 @@ "zh-chs": "从{1}到{2}开始中继会话“{0}”", "zh-cht": "從{1}到{2}開始中繼會話“{0}”", "xloc": [ - "default.handlebars->29->1581" + "default.handlebars->29->1586" ] }, { @@ -34338,7 +34369,7 @@ "zh-chs": "使用Toast通知启动远程桌面", "zh-cht": "使用Toast通知啟動遠程桌面", "xloc": [ - "default.handlebars->29->1603" + "default.handlebars->29->1608" ] }, { @@ -34358,7 +34389,7 @@ "zh-chs": "启动远程桌面,而无需通知", "zh-cht": "啟動遠程桌面,而無需通知", "xloc": [ - "default.handlebars->29->1604" + "default.handlebars->29->1609" ] }, { @@ -34378,7 +34409,7 @@ "zh-chs": "启动带有Toast通知的远程文件", "zh-cht": "啟動帶有Toast通知的遠程文件", "xloc": [ - "default.handlebars->29->1610" + "default.handlebars->29->1615" ] }, { @@ -34398,7 +34429,7 @@ "zh-chs": "已启动的远程文件,恕不另行通知", "zh-cht": "已啟動的遠程文件,恕不另行通知", "xloc": [ - "default.handlebars->29->1611" + "default.handlebars->29->1616" ] }, { @@ -34418,7 +34449,13 @@ "zh-chs": "从{1}到{2}开始了终端会话“{0}”", "zh-cht": "從{1}到{2}開始了終端會話“{0}”", "xloc": [ - "default.handlebars->29->1582" + "default.handlebars->29->1587" + ] + }, + { + "en": "Starting now", + "xloc": [ + "default.handlebars->29->730" ] }, { @@ -34438,7 +34475,7 @@ "zh-chs": "接受本地用户后启动远程桌面", "zh-cht": "接受本地用戶後啟動遠程桌面", "xloc": [ - "default.handlebars->29->1598" + "default.handlebars->29->1603" ] }, { @@ -34458,7 +34495,7 @@ "zh-chs": "本地用户接受后启动远程文件", "zh-cht": "本地用戶接受後啟動遠程文件", "xloc": [ - "default.handlebars->29->1608" + "default.handlebars->29->1613" ] }, { @@ -34478,7 +34515,7 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->29->842", + "default.handlebars->29->847", "default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1" ] }, @@ -34519,8 +34556,8 @@ "zh-chs": "状况", "zh-cht": "狀態", "xloc": [ - "default.handlebars->29->1955", - "default.handlebars->29->2020", + "default.handlebars->29->1960", + "default.handlebars->29->2025", "default.handlebars->container->column_l->p42->p42tbl->1->0->7" ] }, @@ -34541,7 +34578,7 @@ "zh-chs": "停止", "zh-cht": "停止", "xloc": [ - "default.handlebars->29->852" + "default.handlebars->29->857" ] }, { @@ -34561,7 +34598,7 @@ "zh-chs": "停止进程", "zh-cht": "停止進程", "xloc": [ - "default.handlebars->29->839" + "default.handlebars->29->844" ] }, { @@ -34569,8 +34606,8 @@ "nl": "Stop proces #{0} \\\"{1}\\\"?", "xloc": [ "default-mobile.handlebars->9->302", - "default.handlebars->29->858", - "desktop.handlebars->3->26" + "default.handlebars->29->863", + "desktop.handlebars->3->25" ] }, { @@ -34608,7 +34645,7 @@ "zh-cht": "儲存", "xloc": [ "default-mobile.handlebars->9->403", - "default.handlebars->29->992" + "default.handlebars->29->997" ] }, { @@ -34648,7 +34685,7 @@ "zh-chs": "超出储存空间", "zh-cht": "超出儲存空間", "xloc": [ - "default.handlebars->29->1529" + "default.handlebars->29->1534" ] }, { @@ -34668,7 +34705,7 @@ "zh-chs": "强", "zh-cht": "強", "xloc": [ - "default.handlebars->29->1277" + "default.handlebars->29->1282" ] }, { @@ -34713,7 +34750,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->29->1735" + "default.handlebars->29->1740" ] }, { @@ -34813,7 +34850,7 @@ "zh-chs": "苏图", "zh-cht": "蘇圖", "xloc": [ - "default.handlebars->29->1205" + "default.handlebars->29->1210" ] }, { @@ -34833,7 +34870,7 @@ "zh-chs": "斯瓦希里文", "zh-cht": "斯瓦希里文", "xloc": [ - "default.handlebars->29->1206" + "default.handlebars->29->1211" ] }, { @@ -34860,7 +34897,7 @@ "zh-chs": "瑞典文", "zh-cht": "瑞典文", "xloc": [ - "default.handlebars->29->1207" + "default.handlebars->29->1212" ] }, { @@ -34880,7 +34917,7 @@ "zh-chs": "瑞典文(芬兰)", "zh-cht": "瑞典文(芬蘭)", "xloc": [ - "default.handlebars->29->1208" + "default.handlebars->29->1213" ] }, { @@ -34900,14 +34937,14 @@ "zh-chs": "瑞典文(瑞典)", "zh-cht": "瑞典文(瑞典)", "xloc": [ - "default.handlebars->29->1209" + "default.handlebars->29->1214" ] }, { "en": "Switch Intel AMT to Admin Control Mode (ACM).", "nl": "Schakel Intel AMT over naar Admin Control Mode (ACM).", "xloc": [ - "default.handlebars->29->1357" + "default.handlebars->29->1362" ] }, { @@ -34927,7 +34964,7 @@ "zh-chs": "将服务器设备名称同步到主机名称", "zh-cht": "將伺服器裝置名稱同步到主機名稱", "xloc": [ - "default.handlebars->29->1410" + "default.handlebars->29->1415" ] }, { @@ -34947,7 +34984,7 @@ "zh-chs": "系统类型", "zh-cht": "系統類型", "xloc": [ - "default.handlebars->29->361" + "default.handlebars->29->362" ] }, { @@ -34968,7 +35005,7 @@ "zh-cht": "TCP路由", "xloc": [ "default-mobile.handlebars->9->174", - "default.handlebars->29->261" + "default.handlebars->29->262" ] }, { @@ -35056,7 +35093,7 @@ "zh-cht": "TLS", "xloc": [ "default-mobile.handlebars->9->238", - "default.handlebars->29->562" + "default.handlebars->29->563" ] }, { @@ -35077,7 +35114,7 @@ "zh-cht": "未設置TLS", "xloc": [ "default-mobile.handlebars->9->377", - "default.handlebars->29->966" + "default.handlebars->29->971" ] }, { @@ -35098,8 +35135,8 @@ "zh-cht": "需要TLS加密", "xloc": [ "default-mobile.handlebars->9->284", - "default.handlebars->29->295", - "default.handlebars->29->759" + "default.handlebars->29->296", + "default.handlebars->29->764" ] }, { @@ -35139,8 +35176,8 @@ "zh-chs": "标签1,标签2,标签3", "zh-cht": "標籤1,標籤2,標籤3", "xloc": [ - "default.handlebars->29->466", - "default.handlebars->29->813" + "default.handlebars->29->467", + "default.handlebars->29->818" ] }, { @@ -35170,8 +35207,8 @@ "default-mobile.handlebars->9->257", "default-mobile.handlebars->9->258", "default-mobile.handlebars->9->293", - "default.handlebars->29->465", - "default.handlebars->29->812", + "default.handlebars->29->466", + "default.handlebars->29->817", "default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7" ] }, @@ -35192,7 +35229,7 @@ "zh-chs": "泰米尔文", "zh-cht": "泰米爾文", "xloc": [ - "default.handlebars->29->1210" + "default.handlebars->29->1215" ] }, { @@ -35212,7 +35249,7 @@ "zh-chs": "塔塔尔族", "zh-cht": "塔塔爾族", "xloc": [ - "default.handlebars->29->1211" + "default.handlebars->29->1216" ] }, { @@ -35232,7 +35269,7 @@ "zh-chs": "泰卢加", "zh-cht": "泰盧加", "xloc": [ - "default.handlebars->29->1212" + "default.handlebars->29->1217" ] }, { @@ -35253,10 +35290,10 @@ "zh-cht": "終端機", "xloc": [ "default-mobile.handlebars->9->168", - "default.handlebars->29->1403", - "default.handlebars->29->2014", - "default.handlebars->29->255", - "default.handlebars->29->514", + "default.handlebars->29->1408", + "default.handlebars->29->2019", + "default.handlebars->29->256", + "default.handlebars->29->515", "default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal", "default.handlebars->contextMenu->cxterminal" ] @@ -35298,10 +35335,10 @@ "zh-chs": "终端通知", "zh-cht": "終端機通知", "xloc": [ - "default.handlebars->29->1326", - "default.handlebars->29->1834", - "default.handlebars->29->1921", - "default.handlebars->29->589" + "default.handlebars->29->1331", + "default.handlebars->29->1839", + "default.handlebars->29->1926", + "default.handlebars->29->590" ] }, { @@ -35321,10 +35358,10 @@ "zh-chs": "终端提示", "zh-cht": "終端機提示", "xloc": [ - "default.handlebars->29->1325", - "default.handlebars->29->1833", - "default.handlebars->29->1920", - "default.handlebars->29->588" + "default.handlebars->29->1330", + "default.handlebars->29->1838", + "default.handlebars->29->1925", + "default.handlebars->29->589" ] }, { @@ -35392,7 +35429,7 @@ "zh-chs": "泰国", "zh-cht": "泰國", "xloc": [ - "default.handlebars->29->1213" + "default.handlebars->29->1218" ] }, { @@ -35433,7 +35470,7 @@ "zh-chs": "此计算机所属的设备组的名称", "zh-cht": "此電腦所屬的裝置群的名稱", "xloc": [ - "default.handlebars->29->541" + "default.handlebars->29->542" ] }, { @@ -35453,7 +35490,7 @@ "zh-chs": "此计算机所属的设备组的名称。", "zh-cht": "此電腦所屬的裝置群的名稱。", "xloc": [ - "default.handlebars->29->539" + "default.handlebars->29->540" ] }, { @@ -35473,8 +35510,8 @@ "zh-chs": "此计算机的在操作系统中已设置的名称", "zh-cht": "此電腦在操作系統中已設置的的名稱", "xloc": [ - "default.handlebars->29->542", - "default.handlebars->29->544" + "default.handlebars->29->543", + "default.handlebars->29->545" ] }, { @@ -35494,7 +35531,7 @@ "zh-chs": "目前没有任何通知", "zh-cht": "目前沒有任何通知", "xloc": [ - "default.handlebars->29->2035" + "default.handlebars->29->2040" ] }, { @@ -35534,7 +35571,7 @@ "zh-chs": "这些设置可用于连接该设备的MQTT。", "zh-cht": "這些設置可用於連接該裝置的MQTT。", "xloc": [ - "default.handlebars->29->197" + "default.handlebars->29->198" ] }, { @@ -35555,7 +35592,7 @@ "zh-cht": "此帳戶無權建立新的裝置群。", "xloc": [ "default-mobile.handlebars->9->92", - "default.handlebars->29->1263" + "default.handlebars->29->1268" ] }, { @@ -35575,7 +35612,7 @@ "zh-chs": "这是OS图形用户界面上的可执行档案。您需要'chmod + x meshagent'并运行此档案。", "zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。", "xloc": [ - "default.handlebars->29->391" + "default.handlebars->29->392" ] }, { @@ -35636,7 +35673,7 @@ "en": "This is the recommanded policy. Intel® AMT activation and management is completely automated and the server will attempt to make best possible use of hardware management.", "nl": "Dit is het aanbevolen beleid. Activering en beheer van Intel® AMT is volledig geautomatiseerd en de server zal proberen om optimaal gebruik te maken van hardwarebeheer.", "xloc": [ - "default.handlebars->29->1388" + "default.handlebars->29->1393" ] }, { @@ -35677,7 +35714,7 @@ "zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。", "zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。", "xloc": [ - "default.handlebars->29->1385" + "default.handlebars->29->1390" ] }, { @@ -35760,7 +35797,7 @@ "zh-chs": "这会在此设备的事件日志中添加一个条目。", "zh-cht": "這會在此裝置的事件日誌中增加一個記錄。", "xloc": [ - "default.handlebars->29->704" + "default.handlebars->29->705" ] }, { @@ -35797,7 +35834,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->29->766" + "default.handlebars->29->771" ] }, { @@ -35817,7 +35854,7 @@ "zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。", "zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。", "xloc": [ - "default.handlebars->29->767" + "default.handlebars->29->772" ] }, { @@ -35837,7 +35874,7 @@ "zh-chs": "蒂格雷", "zh-cht": "蒂格雷", "xloc": [ - "default.handlebars->29->1214" + "default.handlebars->29->1219" ] }, { @@ -35860,6 +35897,12 @@ "player.handlebars->3->1" ] }, + { + "en": "Time Range", + "xloc": [ + "default.handlebars->29->733" + ] + }, { "cs": "Časové rozpětí", "de": "Zeitspanne", @@ -35877,7 +35920,13 @@ "zh-chs": "时间跨度", "zh-cht": "時間跨度", "xloc": [ - "default.handlebars->29->1674" + "default.handlebars->29->1679" + ] + }, + { + "en": "Time range", + "xloc": [ + "default.handlebars->29->731" ] }, { @@ -35897,8 +35946,8 @@ "zh-chs": "超时", "zh-cht": "超時", "xloc": [ - "default.handlebars->29->818", - "desktop.handlebars->3->10" + "default.handlebars->29->823", + "desktop.handlebars->3->9" ] }, { @@ -35918,7 +35967,7 @@ "zh-chs": "标题", "zh-cht": "標題", "xloc": [ - "default.handlebars->29->471" + "default.handlebars->29->472" ] }, { @@ -35938,7 +35987,7 @@ "zh-chs": "要将计算机添加到{0},请运行以下命令。命令需要root凭证。", "zh-cht": "要將電腦新增到{0},請運行以下命令。命令需要root憑據。", "xloc": [ - "default.handlebars->29->377" + "default.handlebars->29->378" ] }, { @@ -36009,7 +36058,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。这代理中已嵌入了服务器和设备组信息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->29->366" + "default.handlebars->29->367" ] }, { @@ -36029,7 +36078,7 @@ "zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。该代理安装程序中已嵌入了服务器和设备组讯息。", "zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。", "xloc": [ - "default.handlebars->29->379" + "default.handlebars->29->380" ] }, { @@ -36049,7 +36098,7 @@ "zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。", "zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。", "xloc": [ - "default.handlebars->29->1250" + "default.handlebars->29->1255" ] }, { @@ -36149,7 +36198,7 @@ "zh-chs": "要删除网格代理,请下载以下档案,运行并单击“卸载”。", "zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。", "xloc": [ - "default.handlebars->29->383" + "default.handlebars->29->384" ] }, { @@ -36169,7 +36218,7 @@ "zh-chs": "要删除网格代理,请运行以下命令。需要根凭证。", "zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。", "xloc": [ - "default.handlebars->29->390" + "default.handlebars->29->391" ] }, { @@ -36209,7 +36258,7 @@ "zh-chs": "吐司通知", "zh-cht": "吐司通知", "xloc": [ - "default.handlebars->29->469" + "default.handlebars->29->470" ] }, { @@ -36525,7 +36574,7 @@ "zh-chs": "主题", "zh-cht": "主題", "xloc": [ - "default.handlebars->29->761" + "default.handlebars->29->766" ] }, { @@ -36585,7 +36634,7 @@ "zh-chs": "用于通过此服务器连接到设备的流量路由器", "zh-cht": "用於通過此伺服器連接到裝置的流量路由器", "xloc": [ - "default.handlebars->29->626" + "default.handlebars->29->627" ] }, { @@ -36625,7 +36674,7 @@ "zh-chs": "特松加", "zh-cht": "特松加", "xloc": [ - "default.handlebars->29->1215" + "default.handlebars->29->1220" ] }, { @@ -36645,7 +36694,7 @@ "zh-chs": "茨瓦纳", "zh-cht": "茨瓦納", "xloc": [ - "default.handlebars->29->1216" + "default.handlebars->29->1221" ] }, { @@ -36665,7 +36714,7 @@ "zh-chs": "土耳其", "zh-cht": "土耳其", "xloc": [ - "default.handlebars->29->1217" + "default.handlebars->29->1222" ] }, { @@ -36685,7 +36734,7 @@ "zh-chs": "土库曼文", "zh-cht": "土庫曼文", "xloc": [ - "default.handlebars->29->1218" + "default.handlebars->29->1223" ] }, { @@ -36727,10 +36776,10 @@ "xloc": [ "default-mobile.handlebars->9->411", "default-mobile.handlebars->9->98", - "default.handlebars->29->1270", - "default.handlebars->29->1312", - "default.handlebars->29->1364", - "default.handlebars->29->849", + "default.handlebars->29->1275", + "default.handlebars->29->1317", + "default.handlebars->29->1369", + "default.handlebars->29->854", "default.handlebars->container->column_l->p11->deskarea0->deskarea4->3", "desktop.handlebars->p11->deskarea0->deskarea4->3" ] @@ -36752,7 +36801,7 @@ "zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。", "zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。", "xloc": [ - "default.handlebars->29->1027" + "default.handlebars->29->1032" ] }, { @@ -36772,7 +36821,7 @@ "zh-chs": "输入要添加的密钥的名称。", "zh-cht": "輸入要新增的密鑰的名稱。", "xloc": [ - "default.handlebars->29->1024" + "default.handlebars->29->1029" ] }, { @@ -36793,7 +36842,7 @@ "zh-cht": "UDP路由", "xloc": [ "default-mobile.handlebars->9->177", - "default.handlebars->29->264" + "default.handlebars->29->265" ] }, { @@ -36813,7 +36862,7 @@ "zh-chs": "UTF8终端", "zh-cht": "UTF8終端", "xloc": [ - "default.handlebars->29->862" + "default.handlebars->29->867" ] }, { @@ -36833,7 +36882,7 @@ "zh-chs": "乌克兰", "zh-cht": "烏克蘭", "xloc": [ - "default.handlebars->29->1219" + "default.handlebars->29->1224" ] }, { @@ -36853,8 +36902,8 @@ "zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电邮地址。", "zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電郵地址。", "xloc": [ - "default.handlebars->29->1265", - "default.handlebars->29->530" + "default.handlebars->29->1270", + "default.handlebars->29->531" ] }, { @@ -36916,8 +36965,8 @@ "zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。", "zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。", "xloc": [ - "default.handlebars->29->1267", - "default.handlebars->29->532" + "default.handlebars->29->1272", + "default.handlebars->29->533" ] }, { @@ -37044,9 +37093,9 @@ "zh-cht": "卸載", "xloc": [ "default-mobile.handlebars->9->460", - "default.handlebars->29->1478", - "default.handlebars->29->678", - "default.handlebars->29->699" + "default.handlebars->29->1483", + "default.handlebars->29->679", + "default.handlebars->29->700" ] }, { @@ -37067,8 +37116,8 @@ "zh-cht": "卸載代理", "xloc": [ "default-mobile.handlebars->9->440", - "default.handlebars->29->436", - "default.handlebars->29->740" + "default.handlebars->29->437", + "default.handlebars->29->745" ] }, { @@ -37088,7 +37137,7 @@ "zh-chs": "卸载代理/删除设备", "zh-cht": "卸載代理/刪除設備", "xloc": [ - "default.handlebars->29->1442" + "default.handlebars->29->1447" ] }, { @@ -37108,7 +37157,7 @@ "zh-chs": "卸载代理", "zh-cht": "卸載代理", "xloc": [ - "default.handlebars->29->769" + "default.handlebars->29->774" ] }, { @@ -37138,16 +37187,16 @@ "default.handlebars->29->109", "default.handlebars->29->111", "default.handlebars->29->113", - "default.handlebars->29->1299", "default.handlebars->29->13", - "default.handlebars->29->1300", - "default.handlebars->29->1997", - "default.handlebars->29->2012", - "default.handlebars->29->2013", + "default.handlebars->29->1304", + "default.handlebars->29->1305", + "default.handlebars->29->2002", + "default.handlebars->29->2017", + "default.handlebars->29->2018", "default.handlebars->29->42", - "default.handlebars->29->431", - "default.handlebars->29->956", - "default.handlebars->29->963" + "default.handlebars->29->432", + "default.handlebars->29->961", + "default.handlebars->29->968" ] }, { @@ -37168,7 +37217,7 @@ "zh-cht": "未知#{0}", "xloc": [ "default-mobile.handlebars->9->405", - "default.handlebars->29->1306" + "default.handlebars->29->1311" ] }, { @@ -37188,7 +37237,7 @@ "zh-chs": "未知动作", "zh-cht": "未知動作", "xloc": [ - "default.handlebars->29->2049" + "default.handlebars->29->2054" ] }, { @@ -37208,8 +37257,8 @@ "zh-chs": "未知设备", "zh-cht": "未知裝置", "xloc": [ - "default.handlebars->29->1859", - "default.handlebars->29->1983" + "default.handlebars->29->1864", + "default.handlebars->29->1988" ] }, { @@ -37229,9 +37278,9 @@ "zh-chs": "未知设备组", "zh-cht": "未知裝置群", "xloc": [ - "default.handlebars->29->1853", - "default.handlebars->29->1971", - "default.handlebars->29->2053" + "default.handlebars->29->1858", + "default.handlebars->29->1976", + "default.handlebars->29->2058" ] }, { @@ -37251,7 +37300,7 @@ "zh-chs": "未知群组", "zh-cht": "未知群組", "xloc": [ - "default.handlebars->29->2045" + "default.handlebars->29->2050" ] }, { @@ -37272,7 +37321,7 @@ "zh-cht": "未知狀態", "xloc": [ "default-mobile.handlebars->9->232", - "default.handlebars->29->554" + "default.handlebars->29->555" ] }, { @@ -37292,7 +37341,7 @@ "zh-chs": "未知用户组", "zh-cht": "未知用戶群", "xloc": [ - "default.handlebars->29->1977" + "default.handlebars->29->1982" ] }, { @@ -37313,14 +37362,14 @@ "zh-cht": "未知版本和狀態", "xloc": [ "default-mobile.handlebars->9->234", - "default.handlebars->29->556" + "default.handlebars->29->557" ] }, { "en": "Unknown password", "nl": "Onbekend wachtwoord", "xloc": [ - "default.handlebars->29->1376" + "default.handlebars->29->1381" ] }, { @@ -37341,8 +37390,8 @@ "zh-cht": "無限", "xloc": [ "default.handlebars->29->184", - "default.handlebars->29->333", - "default.handlebars->29->347" + "default.handlebars->29->334", + "default.handlebars->29->348" ] }, { @@ -37362,7 +37411,7 @@ "zh-chs": "解锁帐户", "zh-cht": "解鎖帳戶", "xloc": [ - "default.handlebars->29->1728" + "default.handlebars->29->1733" ] }, { @@ -37413,7 +37462,7 @@ "zh-chs": "最新", "zh-cht": "最新", "xloc": [ - "default.handlebars->29->2113" + "default.handlebars->29->2118" ] }, { @@ -37461,11 +37510,11 @@ "default-mobile.handlebars->9->317", "default-mobile.handlebars->9->335", "default-mobile.handlebars->9->338", - "default.handlebars->29->1558", - "default.handlebars->29->1566", - "default.handlebars->29->888", - "default.handlebars->29->912", - "default.handlebars->29->915", + "default.handlebars->29->1563", + "default.handlebars->29->1571", + "default.handlebars->29->893", + "default.handlebars->29->917", + "default.handlebars->29->920", "default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1" ] }, @@ -37486,7 +37535,7 @@ "zh-chs": "上载网格代理核心", "zh-cht": "上載mesh agent核心", "xloc": [ - "default.handlebars->29->1010" + "default.handlebars->29->1015" ] }, { @@ -37506,7 +37555,7 @@ "zh-chs": "上载核心档案", "zh-cht": "上載核心檔案", "xloc": [ - "default.handlebars->29->1007" + "default.handlebars->29->1012" ] }, { @@ -37526,7 +37575,7 @@ "zh-chs": "上载默认服务器核心", "zh-cht": "上載默認伺服器核心", "xloc": [ - "default.handlebars->29->1004" + "default.handlebars->29->1009" ] }, { @@ -37566,7 +37615,7 @@ "zh-chs": "上传恢复核心", "zh-cht": "上傳恢復核心", "xloc": [ - "default.handlebars->29->1006" + "default.handlebars->29->1011" ] }, { @@ -37587,8 +37636,8 @@ "zh-cht": "上傳將覆蓋1個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->336", - "default.handlebars->29->1567", - "default.handlebars->29->913" + "default.handlebars->29->1572", + "default.handlebars->29->918" ] }, { @@ -37609,8 +37658,8 @@ "zh-cht": "上傳將覆蓋{0}個檔案。繼續?", "xloc": [ "default-mobile.handlebars->9->337", - "default.handlebars->29->1568", - "default.handlebars->29->914" + "default.handlebars->29->1573", + "default.handlebars->29->919" ] }, { @@ -37647,7 +37696,7 @@ "zh-chs": "上传:“{0}”", "zh-cht": "上傳:“{0}”", "xloc": [ - "default.handlebars->29->1618" + "default.handlebars->29->1623" ] }, { @@ -37667,7 +37716,7 @@ "zh-chs": "上索布族", "zh-cht": "上索布族", "xloc": [ - "default.handlebars->29->1220" + "default.handlebars->29->1225" ] }, { @@ -37687,7 +37736,7 @@ "zh-chs": "乌尔都文", "zh-cht": "烏爾都文", "xloc": [ - "default.handlebars->29->1221" + "default.handlebars->29->1226" ] }, { @@ -37751,8 +37800,8 @@ "zh-chs": "用过的", "zh-cht": "用過的", "xloc": [ - "default.handlebars->29->2039", - "default.handlebars->29->2041" + "default.handlebars->29->2044", + "default.handlebars->29->2046" ] }, { @@ -37772,13 +37821,13 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->29->1361", - "default.handlebars->29->1681", - "default.handlebars->29->1710", - "default.handlebars->29->1849", - "default.handlebars->29->2032", - "default.handlebars->29->232", - "default.handlebars->29->659" + "default.handlebars->29->1366", + "default.handlebars->29->1686", + "default.handlebars->29->1715", + "default.handlebars->29->1854", + "default.handlebars->29->2037", + "default.handlebars->29->233", + "default.handlebars->29->660" ] }, { @@ -37798,7 +37847,7 @@ "zh-chs": "用户+档案", "zh-cht": "用戶+檔案", "xloc": [ - "default.handlebars->29->1711" + "default.handlebars->29->1716" ] }, { @@ -37818,10 +37867,10 @@ "zh-chs": "用户帐户导入", "zh-cht": "用戶帳戶導入", "xloc": [ - "default.handlebars->29->1744", - "default.handlebars->29->1745", - "default.handlebars->29->1747", - "default.handlebars->29->1749" + "default.handlebars->29->1749", + "default.handlebars->29->1750", + "default.handlebars->29->1752", + "default.handlebars->29->1754" ] }, { @@ -37841,7 +37890,7 @@ "zh-chs": "用户帐户", "zh-cht": "用戶帳戶", "xloc": [ - "default.handlebars->29->2058" + "default.handlebars->29->2063" ] }, { @@ -37862,8 +37911,8 @@ "zh-cht": "用戶授權", "xloc": [ "default-mobile.handlebars->9->413", - "default.handlebars->29->1359", - "default.handlebars->29->655" + "default.handlebars->29->1364", + "default.handlebars->29->656" ] }, { @@ -37883,12 +37932,12 @@ "zh-chs": "用户同意", "zh-cht": "用戶同意", "xloc": [ - "default.handlebars->29->1332", - "default.handlebars->29->1840", - "default.handlebars->29->1927", - "default.handlebars->29->193", - "default.handlebars->29->595", - "default.handlebars->29->729" + "default.handlebars->29->1337", + "default.handlebars->29->1845", + "default.handlebars->29->1932", + "default.handlebars->29->194", + "default.handlebars->29->596", + "default.handlebars->29->734" ] }, { @@ -37908,12 +37957,12 @@ "zh-chs": "用户组", "zh-cht": "用戶群", "xloc": [ - "default.handlebars->29->1418", - "default.handlebars->29->1419", - "default.handlebars->29->1813", - "default.handlebars->29->1979", - "default.handlebars->29->2000", - "default.handlebars->29->658" + "default.handlebars->29->1423", + "default.handlebars->29->1424", + "default.handlebars->29->1818", + "default.handlebars->29->1984", + "default.handlebars->29->2005", + "default.handlebars->29->659" ] }, { @@ -37953,7 +38002,7 @@ "zh-chs": "用户组成员", "zh-cht": "用戶群成員", "xloc": [ - "default.handlebars->29->1976" + "default.handlebars->29->1981" ] }, { @@ -37993,9 +38042,9 @@ "zh-chs": "用户识别码", "zh-cht": "用戶識別碼", "xloc": [ - "default.handlebars->29->1483", - "default.handlebars->29->1894", - "default.handlebars->29->1895" + "default.handlebars->29->1488", + "default.handlebars->29->1899", + "default.handlebars->29->1900" ] }, { @@ -38015,8 +38064,8 @@ "zh-chs": "用户标识符", "zh-cht": "用戶標識符", "xloc": [ - "default.handlebars->29->1416", - "default.handlebars->29->1878" + "default.handlebars->29->1421", + "default.handlebars->29->1883" ] }, { @@ -38036,7 +38085,7 @@ "zh-chs": "用户列表输出", "zh-cht": "用戶列表輸出", "xloc": [ - "default.handlebars->29->1756" + "default.handlebars->29->1761" ] }, { @@ -38057,7 +38106,7 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->9->464", - "default.handlebars->29->1482" + "default.handlebars->29->1487" ] }, { @@ -38132,7 +38181,7 @@ "zh-chs": "用户节", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->29->2078" + "default.handlebars->29->2083" ] }, { @@ -38215,8 +38264,8 @@ "zh-chs": "用户“{0}”", "zh-cht": "用戶“{0}”", "xloc": [ - "default.handlebars->29->826", - "desktop.handlebars->3->18" + "default.handlebars->29->831", + "desktop.handlebars->3->17" ] }, { @@ -38236,8 +38285,8 @@ "zh-chs": "用户浏览器值", "zh-cht": "用戶瀏覽器值", "xloc": [ - "default.handlebars->29->1232", - "default.handlebars->29->1234" + "default.handlebars->29->1237", + "default.handlebars->29->1239" ] }, { @@ -38257,7 +38306,7 @@ "zh-chs": "用户组已更改:{0}", "zh-cht": "用戶組已更改:{0}", "xloc": [ - "default.handlebars->29->1647" + "default.handlebars->29->1652" ] }, { @@ -38277,7 +38326,7 @@ "zh-chs": "已创建用户组:{0}", "zh-cht": "已創建用戶組:{0}", "xloc": [ - "default.handlebars->29->1637" + "default.handlebars->29->1642" ] }, { @@ -38297,7 +38346,7 @@ "zh-chs": "用户组成员身份已更改:{0}", "zh-cht": "用戶組成員身份已更改:{0}", "xloc": [ - "default.handlebars->29->1635" + "default.handlebars->29->1640" ] }, { @@ -38363,9 +38412,9 @@ "zh-cht": "用戶名", "xloc": [ "default-mobile.handlebars->9->280", - "default.handlebars->29->1768", - "default.handlebars->29->290", - "default.handlebars->29->755", + "default.handlebars->29->1773", + "default.handlebars->29->291", + "default.handlebars->29->760", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1", "login2.handlebars->centralTable->1->0->logincell->loginpanel->1->5->1->0->1", "mstsc.handlebars->main->1->3->1->4->1->0", @@ -38437,9 +38486,9 @@ "zh-chs": "用户", "zh-cht": "用戶", "xloc": [ - "default.handlebars->29->1801", - "default.handlebars->29->1841", - "default.handlebars->29->2077", + "default.handlebars->29->1806", + "default.handlebars->29->1846", + "default.handlebars->29->2082", "default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral" ] }, @@ -38460,7 +38509,7 @@ "zh-chs": "用户会话", "zh-cht": "用戶節", "xloc": [ - "default.handlebars->29->2062" + "default.handlebars->29->2067" ] }, { @@ -38480,7 +38529,7 @@ "zh-chs": "VT100 +(F10 = ESC + [OY)", "zh-cht": "VT100 +(F10 = ESC + [OY)", "xloc": [ - "default.handlebars->29->867" + "default.handlebars->29->872" ] }, { @@ -38500,7 +38549,13 @@ "zh-chs": "验证电邮", "zh-cht": "驗證電郵", "xloc": [ - "default.handlebars->29->1723" + "default.handlebars->29->1728" + ] + }, + { + "en": "Validity", + "xloc": [ + "default.handlebars->29->729" ] }, { @@ -38520,7 +38575,7 @@ "zh-chs": "文达", "zh-cht": "文達", "xloc": [ - "default.handlebars->29->1222" + "default.handlebars->29->1227" ] }, { @@ -38542,8 +38597,8 @@ "xloc": [ "default-mobile.handlebars->9->382", "default-mobile.handlebars->9->385", - "default.handlebars->29->971", - "default.handlebars->29->974" + "default.handlebars->29->976", + "default.handlebars->29->979" ] }, { @@ -38584,7 +38639,7 @@ "zh-chs": "已验证", "zh-cht": "已驗證", "xloc": [ - "default.handlebars->29->1957" + "default.handlebars->29->1962" ] }, { @@ -38604,8 +38659,8 @@ "zh-chs": "用户帐户{1}的已验证电邮{0}。", "zh-cht": "用戶帳戶{1}的已驗證電郵{0}。", "xloc": [ - "message.handlebars->3->7", - "message2.handlebars->5->7" + "message.handlebars->3->8", + "message2.handlebars->5->8" ] }, { @@ -38626,8 +38681,8 @@ "zh-cht": "驗證電話號碼", "xloc": [ "default-mobile.handlebars->9->63", - "default.handlebars->29->1011", - "default.handlebars->29->1719" + "default.handlebars->29->1016", + "default.handlebars->29->1724" ] }, { @@ -38647,7 +38702,7 @@ "zh-chs": "用户{0}的已验证电话号码", "zh-cht": "用戶{0}的已驗證電話號碼", "xloc": [ - "default.handlebars->29->1664" + "default.handlebars->29->1669" ] }, { @@ -38712,10 +38767,10 @@ "default-mobile.handlebars->9->366", "default-mobile.handlebars->9->383", "default-mobile.handlebars->9->388", - "default.handlebars->29->920", - "default.handlebars->29->955", - "default.handlebars->29->972", + "default.handlebars->29->925", + "default.handlebars->29->960", "default.handlebars->29->977", + "default.handlebars->29->982", "default.handlebars->container->column_l->p42->p42tbl->1->0->5" ] }, @@ -38736,7 +38791,7 @@ "zh-chs": "版本不兼容,请先升级您的MeshCentral", "zh-cht": "版本不兼容,請先升級你的MeshCentral", "xloc": [ - "default.handlebars->29->2109" + "default.handlebars->29->2114" ] }, { @@ -38778,7 +38833,7 @@ "zh-chs": "越南文", "zh-cht": "越南文", "xloc": [ - "default.handlebars->29->1223" + "default.handlebars->29->1228" ] }, { @@ -38818,7 +38873,7 @@ "zh-chs": "查看所有事件", "zh-cht": "查看所有事件", "xloc": [ - "default.handlebars->29->1793" + "default.handlebars->29->1798" ] }, { @@ -38838,8 +38893,8 @@ "zh-chs": "查看变更日志", "zh-cht": "查看變更日誌", "xloc": [ - "default.handlebars->29->2112", - "default.handlebars->29->2114" + "default.handlebars->29->2117", + "default.handlebars->29->2119" ] }, { @@ -38859,7 +38914,7 @@ "zh-chs": "查看有关此设备的注释", "zh-cht": "查看有關此裝置的註釋", "xloc": [ - "default.handlebars->29->611" + "default.handlebars->29->612" ] }, { @@ -38879,7 +38934,7 @@ "zh-chs": "查看有关此设备组的注释", "zh-cht": "查看有關此裝置群的註釋", "xloc": [ - "default.handlebars->29->1348" + "default.handlebars->29->1353" ] }, { @@ -38899,7 +38954,7 @@ "zh-chs": "查看有关此用户的注释", "zh-cht": "查看有關此用戶的註釋", "xloc": [ - "default.handlebars->29->1935" + "default.handlebars->29->1940" ] }, { @@ -38919,7 +38974,7 @@ "zh-chs": "沃拉普克", "zh-cht": "沃拉普克", "xloc": [ - "default.handlebars->29->1224" + "default.handlebars->29->1229" ] }, { @@ -38979,8 +39034,8 @@ "zh-chs": "正在等待用户授予访问权限...", "zh-cht": "正在等待用戶授予訪問權限...", "xloc": [ - "default.handlebars->29->815", - "desktop.handlebars->3->7" + "default.handlebars->29->820", + "desktop.handlebars->3->6" ] }, { @@ -39000,8 +39055,8 @@ "zh-chs": "唤醒", "zh-cht": "喚醒", "xloc": [ - "default.handlebars->29->674", - "default.handlebars->29->695" + "default.handlebars->29->675", + "default.handlebars->29->696" ] }, { @@ -39023,8 +39078,8 @@ "xloc": [ "default-mobile.handlebars->9->436", "default-mobile.handlebars->9->451", - "default.handlebars->29->1438", - "default.handlebars->29->1468" + "default.handlebars->29->1443", + "default.handlebars->29->1473" ] }, { @@ -39045,7 +39100,7 @@ "zh-cht": "喚醒", "xloc": [ "default-mobile.handlebars->9->271", - "default.handlebars->29->734" + "default.handlebars->29->739" ] }, { @@ -39065,7 +39120,7 @@ "zh-chs": "唤醒设备", "zh-cht": "喚醒裝置", "xloc": [ - "default.handlebars->29->437" + "default.handlebars->29->438" ] }, { @@ -39085,7 +39140,7 @@ "zh-chs": "瓦隆", "zh-cht": "瓦隆", "xloc": [ - "default.handlebars->29->1225" + "default.handlebars->29->1230" ] }, { @@ -39105,7 +39160,7 @@ "zh-chs": "弱", "zh-cht": "弱", "xloc": [ - "default.handlebars->29->1279" + "default.handlebars->29->1284" ] }, { @@ -39150,8 +39205,8 @@ "zh-chs": "网络服务器", "zh-cht": "網絡伺服器", "xloc": [ - "default.handlebars->29->2098", - "default.handlebars->29->2099" + "default.handlebars->29->2103", + "default.handlebars->29->2104" ] }, { @@ -39171,7 +39226,7 @@ "zh-chs": "Web服务器请求", "zh-cht": "Web伺服器請求", "xloc": [ - "default.handlebars->29->2100" + "default.handlebars->29->2105" ] }, { @@ -39191,7 +39246,7 @@ "zh-chs": "Web套接字中继", "zh-cht": "Web插座中繼", "xloc": [ - "default.handlebars->29->2101" + "default.handlebars->29->2106" ] }, { @@ -39211,7 +39266,7 @@ "zh-chs": "网络RDP", "zh-cht": "網絡RDP", "xloc": [ - "default.handlebars->29->639" + "default.handlebars->29->640" ] }, { @@ -39273,7 +39328,7 @@ "zh-chs": "威尔士文", "zh-cht": "威爾士文", "xloc": [ - "default.handlebars->29->1226" + "default.handlebars->29->1231" ] }, { @@ -39293,7 +39348,7 @@ "zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:", "zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:", "xloc": [ - "default.handlebars->29->1491" + "default.handlebars->29->1496" ] }, { @@ -39314,14 +39369,14 @@ "zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。", "xloc": [ "default-mobile.handlebars->9->69", - "default.handlebars->29->1018" + "default.handlebars->29->1023" ] }, { "en": "When this policy is selected, Intel® AMT is not managed by this server. Intel AMT can still be used by manually activating and configuring it.", "nl": "Als dit beleid is geselecteerd, wordt Intel® AMT niet beheerd door deze server. Intel AMT kan nog steeds worden gebruikt door het handmatig te activeren en te configureren.", "xloc": [ - "default.handlebars->29->1386" + "default.handlebars->29->1391" ] }, { @@ -39332,7 +39387,7 @@ "en": "When this policy is selected, any Intel® AMT in Client Control Mode (CCM) will be deactivated. Other devices will have CIRA cleared and can still be managed manually.", "nl": "Wanneer dit beleid is geselecteerd, wordt elke Intel® AMT in Client Control Mode (CCM) gedeactiveerd. Bij andere apparaten is CIRA gewist en kunnen ze nog steeds handmatig worden beheerd.", "xloc": [ - "default.handlebars->29->1387" + "default.handlebars->29->1392" ] }, { @@ -39352,7 +39407,7 @@ "zh-chs": "下次登录时将更改。", "zh-cht": "下次登入時將更改。", "xloc": [ - "default.handlebars->29->1907" + "default.handlebars->29->1912" ] }, { @@ -39546,7 +39601,7 @@ "zh-chs": "Win32可执行档案", "zh-cht": "Win32可執行檔案", "xloc": [ - "default.handlebars->29->783" + "default.handlebars->29->788" ] }, { @@ -39566,7 +39621,7 @@ "zh-chs": "WinSCP", "zh-cht": "WinSCP", "xloc": [ - "default.handlebars->29->635" + "default.handlebars->29->636" ] }, { @@ -39586,7 +39641,7 @@ "zh-chs": "窗口", "zh-cht": "視窗", "xloc": [ - "default.handlebars->29->355" + "default.handlebars->29->356" ] }, { @@ -39606,8 +39661,8 @@ "zh-chs": "Windows(.exe)", "zh-cht": "Windows(.exe)", "xloc": [ - "default.handlebars->29->369", - "default.handlebars->29->386" + "default.handlebars->29->370", + "default.handlebars->29->387" ] }, { @@ -39627,7 +39682,7 @@ "zh-chs": "Windows(32位)", "zh-cht": "Windows(32位)", "xloc": [ - "default.handlebars->29->787" + "default.handlebars->29->792" ] }, { @@ -39647,7 +39702,7 @@ "zh-chs": "Windows(64位)", "zh-cht": "Windows(64位)", "xloc": [ - "default.handlebars->29->788" + "default.handlebars->29->793" ] }, { @@ -39667,7 +39722,7 @@ "zh-chs": "Windows(卸载)", "zh-cht": "Windows(卸載)", "xloc": [ - "default.handlebars->29->359" + "default.handlebars->29->360" ] }, { @@ -39811,8 +39866,8 @@ "zh-chs": "Windows命令提示", "zh-cht": "Windows命令提示", "xloc": [ - "default.handlebars->29->453", - "default.handlebars->29->745" + "default.handlebars->29->454", + "default.handlebars->29->750" ] }, { @@ -39874,8 +39929,8 @@ "zh-chs": "Windows PowerShell", "zh-cht": "Windows PowerShell", "xloc": [ - "default.handlebars->29->454", - "default.handlebars->29->746" + "default.handlebars->29->455", + "default.handlebars->29->751" ] }, { @@ -39895,7 +39950,7 @@ "zh-chs": "仅Windows", "zh-cht": "僅Windows", "xloc": [ - "default.handlebars->29->324" + "default.handlebars->29->325" ] }, { @@ -39915,8 +39970,8 @@ "zh-chs": "Windows x64(.exe)", "zh-cht": "Windows x64(.exe)", "xloc": [ - "default.handlebars->29->373", - "default.handlebars->29->389" + "default.handlebars->29->374", + "default.handlebars->29->390" ] }, { @@ -39956,7 +40011,7 @@ "zh-chs": "换行:关", "zh-cht": "换行:關", "xloc": [ - "default.handlebars->29->907" + "default.handlebars->29->912" ] }, { @@ -39976,7 +40031,7 @@ "zh-chs": "换行:开", "zh-cht": "换行:開", "xloc": [ - "default.handlebars->29->906" + "default.handlebars->29->911" ] }, { @@ -39996,7 +40051,7 @@ "zh-chs": "为此设备写一个事件", "zh-cht": "為此裝置寫一個事件", "xloc": [ - "default.handlebars->29->613" + "default.handlebars->29->614" ] }, { @@ -40057,7 +40112,7 @@ "zh-chs": "XTerm", "zh-cht": "XTerm", "xloc": [ - "default.handlebars->29->629" + "default.handlebars->29->630" ] }, { @@ -40077,7 +40132,7 @@ "zh-chs": "科萨", "zh-cht": "科薩", "xloc": [ - "default.handlebars->29->1227" + "default.handlebars->29->1232" ] }, { @@ -40097,7 +40152,7 @@ "zh-chs": "意第绪文", "zh-cht": "意第緒文", "xloc": [ - "default.handlebars->29->1228" + "default.handlebars->29->1233" ] }, { @@ -40215,7 +40270,7 @@ "zh-chs": "YubiKey™ OTP", "zh-cht": "YubiKey™OTP", "xloc": [ - "default.handlebars->29->1030" + "default.handlebars->29->1035" ] }, { @@ -40255,7 +40310,7 @@ "zh-chs": "邮编档案名", "zh-cht": "郵編檔案名", "xloc": [ - "default.handlebars->29->891" + "default.handlebars->29->896" ] }, { @@ -40275,7 +40330,7 @@ "zh-chs": "缩放至适合范围", "zh-cht": "縮放至適合範圍", "xloc": [ - "default.handlebars->29->519" + "default.handlebars->29->520" ] }, { @@ -40295,8 +40350,8 @@ "zh-chs": "放大到一定程度", "zh-cht": "放大到一定程度", "xloc": [ - "default.handlebars->29->516", - "default.handlebars->29->522" + "default.handlebars->29->517", + "default.handlebars->29->523" ] }, { @@ -40316,8 +40371,8 @@ "zh-chs": "缩小到一定程度", "zh-cht": "縮小到一定程度", "xloc": [ - "default.handlebars->29->517", - "default.handlebars->29->523" + "default.handlebars->29->518", + "default.handlebars->29->524" ] }, { @@ -40337,7 +40392,7 @@ "zh-chs": "祖鲁族", "zh-cht": "祖魯族", "xloc": [ - "default.handlebars->29->1229" + "default.handlebars->29->1234" ] }, { @@ -40605,7 +40660,7 @@ "zh-chs": "\\\\'", "zh-cht": "\\\\'", "xloc": [ - "default.handlebars->29->2110" + "default.handlebars->29->2115" ] }, { @@ -40625,8 +40680,8 @@ "zh-chs": "A:", "zh-cht": "A:", "xloc": [ - "default.handlebars->29->498", - "default.handlebars->29->499" + "default.handlebars->29->499", + "default.handlebars->29->500" ] }, { @@ -40646,8 +40701,8 @@ "zh-chs": "加一", "zh-cht": "加一", "xloc": [ - "default.handlebars->29->229", - "default.handlebars->29->231" + "default.handlebars->29->230", + "default.handlebars->29->232" ] }, { @@ -40667,7 +40722,7 @@ "zh-chs": "管理员", "zh-cht": "管理員", "xloc": [ - "default.handlebars->29->291" + "default.handlebars->29->292" ] }, { @@ -40728,8 +40783,8 @@ "zh-chs": "atag:", "zh-cht": "atag:", "xloc": [ - "default.handlebars->29->496", - "default.handlebars->29->497" + "default.handlebars->29->497", + "default.handlebars->29->498" ] }, { @@ -40831,7 +40886,7 @@ "zh-chs": "console.txt", "zh-cht": "console.txt", "xloc": [ - "default.handlebars->29->1001" + "default.handlebars->29->1006" ] }, { @@ -40852,7 +40907,7 @@ "zh-cht": "複製", "xloc": [ "default-mobile.handlebars->9->130", - "default.handlebars->29->1563" + "default.handlebars->29->1568" ] }, { @@ -40892,8 +40947,8 @@ "zh-chs": "devicelist.csv", "zh-cht": "devicelist.csv", "xloc": [ - "default.handlebars->29->475", - "default.handlebars->29->480" + "default.handlebars->29->476", + "default.handlebars->29->481" ] }, { @@ -40913,8 +40968,8 @@ "zh-chs": "devicelist.json", "zh-cht": "devicelist.json", "xloc": [ - "default.handlebars->29->477", - "default.handlebars->29->481" + "default.handlebars->29->478", + "default.handlebars->29->482" ] }, { @@ -40951,8 +41006,8 @@ "zh-chs": "eventslist.csv", "zh-cht": "eventslist.csv", "xloc": [ - "default.handlebars->29->1688", - "default.handlebars->29->1693" + "default.handlebars->29->1693", + "default.handlebars->29->1698" ] }, { @@ -40972,8 +41027,8 @@ "zh-chs": "eventslist.json", "zh-cht": "eventslist.json", "xloc": [ - "default.handlebars->29->1690", - "default.handlebars->29->1694" + "default.handlebars->29->1695", + "default.handlebars->29->1699" ] }, { @@ -40993,7 +41048,7 @@ "zh-chs": "example@email.com", "zh-cht": "example@email.com", "xloc": [ - "default.handlebars->29->320" + "default.handlebars->29->321" ] }, { @@ -41013,8 +41068,8 @@ "zh-chs": "免费", "zh-cht": "免費", "xloc": [ - "default.handlebars->29->2070", - "default.handlebars->29->2073" + "default.handlebars->29->2075", + "default.handlebars->29->2078" ] }, { @@ -41036,8 +41091,8 @@ "xloc": [ "default-mobile.handlebars->9->141", "default-mobile.handlebars->9->142", - "default.handlebars->29->490", - "default.handlebars->29->491" + "default.handlebars->29->491", + "default.handlebars->29->492" ] }, { @@ -41059,8 +41114,8 @@ "xloc": [ "default-mobile.handlebars->9->139", "default-mobile.handlebars->9->140", - "default.handlebars->29->488", - "default.handlebars->29->489" + "default.handlebars->29->489", + "default.handlebars->29->490" ] }, { @@ -41229,7 +41284,7 @@ "zh-chs": "id, name, email, creation, lastlogin, groups, authfactors", "zh-cht": "id, name, email, creation, lastlogin, groups, authfactors", "xloc": [ - "default.handlebars->29->1757" + "default.handlebars->29->1762" ] }, { @@ -41249,7 +41304,7 @@ "zh-chs": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "zh-cht": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr", "xloc": [ - "default.handlebars->29->479" + "default.handlebars->29->480" ] }, { @@ -41271,8 +41326,8 @@ "xloc": [ "default-mobile.handlebars->9->137", "default-mobile.handlebars->9->138", - "default.handlebars->29->486", - "default.handlebars->29->487" + "default.handlebars->29->487", + "default.handlebars->29->488" ] }, { @@ -41352,7 +41407,7 @@ "zh-chs": "k max,默认为空白", "zh-cht": "k max,默認為空白", "xloc": [ - "default.handlebars->29->1785" + "default.handlebars->29->1790" ] }, { @@ -41413,7 +41468,7 @@ "zh-chs": "macOS (64位)", "zh-cht": "macOS(64位)", "xloc": [ - "default.handlebars->29->791" + "default.handlebars->29->796" ] }, { @@ -41473,7 +41528,7 @@ "zh-chs": "MeshAgent", "zh-cht": "MeshAgent", "xloc": [ - "default.handlebars->29->393" + "default.handlebars->29->394" ] }, { @@ -41494,7 +41549,7 @@ "zh-cht": "移動", "xloc": [ "default-mobile.handlebars->9->131", - "default.handlebars->29->1564" + "default.handlebars->29->1569" ] }, { @@ -41514,7 +41569,7 @@ "zh-chs": "无VNC", "zh-cht": "無VNC", "xloc": [ - "default.handlebars->29->637" + "default.handlebars->29->638" ] }, { @@ -41534,7 +41589,7 @@ "zh-chs": "noVNC连接", "zh-cht": "noVNC連接", "xloc": [ - "default.handlebars->29->503" + "default.handlebars->29->504" ] }, { @@ -41554,7 +41609,7 @@ "zh-chs": "noVNC远程连接端口:", "zh-cht": "noVNC遠程連接端口:", "xloc": [ - "default.handlebars->29->502" + "default.handlebars->29->503" ] }, { @@ -41591,7 +41646,7 @@ "zh-chs": "servererrors.txt", "zh-cht": "servererrors.txt", "xloc": [ - "default.handlebars->29->1303" + "default.handlebars->29->1308" ] }, { @@ -41611,7 +41666,7 @@ "zh-chs": "servertrace.csv", "zh-cht": "servertrace.csv", "xloc": [ - "default.handlebars->29->2108" + "default.handlebars->29->2113" ] }, { @@ -41633,8 +41688,8 @@ "xloc": [ "default-mobile.handlebars->9->145", "default-mobile.handlebars->9->146", - "default.handlebars->29->494", - "default.handlebars->29->495" + "default.handlebars->29->495", + "default.handlebars->29->496" ] }, { @@ -41656,8 +41711,8 @@ "xloc": [ "default-mobile.handlebars->9->143", "default-mobile.handlebars->9->144", - "default.handlebars->29->492", - "default.handlebars->29->493" + "default.handlebars->29->493", + "default.handlebars->29->494" ] }, { @@ -41677,7 +41732,7 @@ "zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss", "xloc": [ - "default.handlebars->29->2086" + "default.handlebars->29->2091" ] }, { @@ -41697,7 +41752,7 @@ "zh-chs": "时间,来源,信息", "zh-cht": "時間,來源,訊息", "xloc": [ - "default.handlebars->29->2107" + "default.handlebars->29->2112" ] }, { @@ -41734,8 +41789,8 @@ "zh-chs": "总计", "zh-cht": "總", "xloc": [ - "default.handlebars->29->2071", - "default.handlebars->29->2074" + "default.handlebars->29->2076", + "default.handlebars->29->2079" ] }, { @@ -41757,8 +41812,8 @@ "xloc": [ "default-mobile.handlebars->9->135", "default-mobile.handlebars->9->136", - "default.handlebars->29->484", - "default.handlebars->29->485" + "default.handlebars->29->485", + "default.handlebars->29->486" ] }, { @@ -41797,8 +41852,8 @@ "xloc": [ "default-mobile.handlebars->9->133", "default-mobile.handlebars->9->134", - "default.handlebars->29->482", - "default.handlebars->29->483" + "default.handlebars->29->483", + "default.handlebars->29->484" ] }, { @@ -41818,8 +41873,8 @@ "zh-chs": "userlist.csv", "zh-cht": "userlist.csv", "xloc": [ - "default.handlebars->29->1753", - "default.handlebars->29->1758" + "default.handlebars->29->1758", + "default.handlebars->29->1763" ] }, { @@ -41839,8 +41894,8 @@ "zh-chs": "userlist.json", "zh-cht": "userlist.json", "xloc": [ - "default.handlebars->29->1755", - "default.handlebars->29->1759" + "default.handlebars->29->1760", + "default.handlebars->29->1764" ] }, { @@ -41860,7 +41915,7 @@ "zh-chs": "utc,时间,类型,指令,用户,设备,消息", "zh-cht": "utc,時間,類型,指令,用戶,裝置,消息", "xloc": [ - "default.handlebars->29->1692" + "default.handlebars->29->1697" ] }, { @@ -41900,8 +41955,8 @@ "zh-chs": "{0} Gb", "zh-cht": "{0} Gb", "xloc": [ - "default.handlebars->29->1538", - "default.handlebars->29->1543" + "default.handlebars->29->1543", + "default.handlebars->29->1548" ] }, { @@ -41921,9 +41976,9 @@ "zh-chs": "{0} Kb", "zh-cht": "{0} Kb", "xloc": [ - "default.handlebars->29->1536", "default.handlebars->29->1541", - "default.handlebars->29->2011" + "default.handlebars->29->1546", + "default.handlebars->29->2016" ] }, { @@ -41945,10 +42000,10 @@ "xloc": [ "default-mobile.handlebars->9->396", "default-mobile.handlebars->9->401", - "default.handlebars->29->1537", "default.handlebars->29->1542", - "default.handlebars->29->985", - "default.handlebars->29->990" + "default.handlebars->29->1547", + "default.handlebars->29->990", + "default.handlebars->29->995" ] }, { @@ -41969,7 +42024,7 @@ "zh-cht": "{0} Mb,{1} Mhz", "xloc": [ "default-mobile.handlebars->9->394", - "default.handlebars->29->983" + "default.handlebars->29->988" ] }, { @@ -41989,7 +42044,7 @@ "zh-chs": "{0}个活跃会话", "zh-cht": "{0}個活躍節", "xloc": [ - "default.handlebars->29->1947" + "default.handlebars->29->1952" ] }, { @@ -42009,8 +42064,8 @@ "zh-chs": "{0} b", "zh-cht": "{0} b", "xloc": [ - "default.handlebars->29->1535", - "default.handlebars->29->1540" + "default.handlebars->29->1540", + "default.handlebars->29->1545" ] }, { @@ -42031,8 +42086,8 @@ "zh-cht": "{0}個字節", "xloc": [ "default-mobile.handlebars->9->119", - "default.handlebars->29->1551", - "default.handlebars->29->2026", + "default.handlebars->29->1556", + "default.handlebars->29->2031", "download.handlebars->3->2", "download2.handlebars->5->2" ] @@ -42054,7 +42109,7 @@ "zh-chs": "剩余{0}个字节", "zh-cht": "剩餘{0}個字節", "xloc": [ - "default.handlebars->29->1530" + "default.handlebars->29->1535" ] }, { @@ -42074,8 +42129,8 @@ "zh-chs": "{0}个连接", "zh-cht": "{0}個連接", "xloc": [ - "default.handlebars->29->825", - "desktop.handlebars->3->17" + "default.handlebars->29->830", + "desktop.handlebars->3->16" ] }, { @@ -42095,7 +42150,7 @@ "zh-chs": "剩余{0} GB", "zh-cht": "剩餘{0} GB", "xloc": [ - "default.handlebars->29->1533" + "default.handlebars->29->1538" ] }, { @@ -42115,7 +42170,7 @@ "zh-chs": "{0}个群组", "zh-cht": "{0}個群組", "xloc": [ - "default.handlebars->29->1912" + "default.handlebars->29->1917" ] }, { @@ -42172,7 +42227,7 @@ "zh-chs": "剩余{0}千字节", "zh-cht": "剩餘{0}千字節", "xloc": [ - "default.handlebars->29->1531" + "default.handlebars->29->1536" ] }, { @@ -42214,7 +42269,7 @@ "zh-chs": "剩余{0}兆字节", "zh-cht": "剩餘{0}兆字節", "xloc": [ - "default.handlebars->29->1532" + "default.handlebars->29->1537" ] }, { @@ -42254,7 +42309,7 @@ "zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...", "zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...", "xloc": [ - "default.handlebars->29->1702" + "default.handlebars->29->1707" ] }, { @@ -42274,7 +42329,7 @@ "zh-chs": "{0}个节点", "zh-cht": "{0}個節點", "xloc": [ - "default.handlebars->29->399" + "default.handlebars->29->400" ] }, { @@ -42418,13 +42473,13 @@ "default-mobile.handlebars->9->173", "default-mobile.handlebars->9->176", "default-mobile.handlebars->9->179", - "default.handlebars->29->1706", - "default.handlebars->29->251", - "default.handlebars->29->254", - "default.handlebars->29->257", - "default.handlebars->29->260", - "default.handlebars->29->263", - "default.handlebars->29->266" + "default.handlebars->29->1711", + "default.handlebars->29->252", + "default.handlebars->29->255", + "default.handlebars->29->258", + "default.handlebars->29->261", + "default.handlebars->29->264", + "default.handlebars->29->267" ] }, { @@ -42444,7 +42499,7 @@ "zh-chs": "{0}设置(.msh)", "zh-cht": "{0}设置(.msh)", "xloc": [ - "default.handlebars->29->376" + "default.handlebars->29->377" ] }, { @@ -42506,7 +42561,7 @@ "zh-chs": "{0}个用户", "zh-cht": "{0}個用戶", "xloc": [ - "default.handlebars->29->269" + "default.handlebars->29->270" ] }, { @@ -42566,7 +42621,7 @@ "zh-chs": "{0}k在1档案内。最多{1}k", "zh-cht": "{0}k在1檔案內。最多{1}k", "xloc": [ - "default.handlebars->29->1545" + "default.handlebars->29->1550" ] }, { @@ -42586,7 +42641,7 @@ "zh-chs": "{1}k在{0}个档案中。最多{2}k", "zh-cht": "{1}k在{0}個檔案中。最多{2}k", "xloc": [ - "default.handlebars->29->1544" + "default.handlebars->29->1549" ] }, { diff --git a/views/default.handlebars b/views/default.handlebars index b8fc6590..eb3ef8a0 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -12,6 +12,7 @@ + @@ -31,6 +32,7 @@ + @@ -3071,6 +3073,7 @@ if (node == null) break; x += addHtmlValue("Device", node.name); x += addHtmlValue("Guest Name", message.guestname); + x += addHtmlValue("Start Time", printDateTime(new Date(message.start))); x += addHtmlValue("Expire Time", printDateTime(new Date(message.expire))); var y = []; if (message.consent & 1) { y.push("Notify"); } @@ -6157,6 +6160,7 @@ meshserver.send({ action: 'toast', nodeids: [ currentNode._id ], title: decodeURIComponent('{{{extitle}}}'), msg: Q('d2devToast').value }); } + /* function showShareDevice() { if (xxdialogMode) return; var y = '', x = "Creates a link that allows a guest without an account to remote desktop into this device for up to 1 hour." + '

'; @@ -6168,9 +6172,45 @@ setDialogMode(2, "Share Device", 3, showShareDeviceEx, x); showShareDeviceValidate(); } + */ - function showShareDeviceValidate() { QE('idx_dlgOkButton', Q('d2inviteName').value.trim().length > 0); } - function showShareDeviceEx() { meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), expire: parseInt(Q('d2inviteExpire').value), consent: parseInt(Q('d2userConsent').value) }); } + function showShareDevice() { + if (xxdialogMode) return; + var y = '', x = "Creates a link that allows a guest without an account to remote desktop into this device for a limited time." + '

'; + x += addHtmlValue("Guest Name", ''); + var options = { 1 : "1 minute", 5 : "5 minutes", 10 : "10 minutes", 15 : "15 minutes", 30 : "30 minutes", 45 : "45 minutes", 60 : "60 minutes", 120 : "2 hours", 240 : "4 hours", 480 : "8 hours", 720 : "12 hours", 960 : "16 hours", 1440 : "24 hours", 2880 : "2 days", 5760 : "4 days" } + for (var i in options) { y += ''; } + x += addHtmlValue("Validity", ''); + x += '
'; + x += addHtmlValue("Expire Time", ''); + x += '
'; + x += addHtmlValue("User Consent", ''); + setDialogMode(2, "Share Device", 3, showShareDeviceEx, x); + showShareDeviceValidate(); + var tomorrow = new Date(); + tomorrow.setDate(tomorrow.getDate() + 1); + var rangeTime = flatpickr('#d2timeRangeSelector', { mode: 'range', enableTime: true, minDate: new Date(), defaultDate: [ new Date(), tomorrow ] }); + xxdialogTag = rangeTime; + } + + function showShareDeviceValidate() { + QV('d2modenow', Q('d2timeRange').value == 0); + QV('d2moderange', Q('d2timeRange').value == 1); + var ok = true; + + if (Q('d2inviteName').value.trim().length == 0) { ok = false; } + + QE('idx_dlgOkButton', ok); + } + function showShareDeviceEx(b, tag) { + if (Q('d2timeRange').value == 0) { + meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), expire: parseInt(Q('d2inviteExpire').value), consent: parseInt(Q('d2userConsent').value) }); + } else { + meshserver.send({ action: 'createDeviceShareLink', nodeid: currentNode._id, guestname: Q('d2inviteName').value.trim(), start: Math.floor(tag.selectedDates[0].getTime() / 1000), end: Math.floor(tag.selectedDates[1].getTime() / 1000), consent: parseInt(Q('d2userConsent').value) }); + } + } function deviceActionFunction() { if (xxdialogMode) return; diff --git a/views/desktop.handlebars b/views/desktop.handlebars index 1b431ffd..7747e0f1 100644 --- a/views/desktop.handlebars +++ b/views/desktop.handlebars @@ -172,7 +172,7 @@ var StatusStrs = ["Disconnected", "Connecting...", "Setup...", "Connected", "Intel® AMT Connected"]; var webPageFullScreen = false; var expire = '{{{expire}}}'; - if (expire != '') { QH('p11power', format("Expires at {0}", printTime(new Date(parseInt(expire))))) } + if (expire != '') { QH('p11power', printFlexDateTime(new Date(parseInt(expire)))); } function start() { window.onresize = deskAdjust; @@ -1161,6 +1161,7 @@ function printDate(d) { return d.toLocaleDateString(urlargs.locale); } function printTime(d) { return d.toLocaleTimeString(urlargs.locale); } function printDateTime(d) { return d.toLocaleString(urlargs.locale); } + function printFlexDateTime(d) { if (printDate(new Date()) == printDate(d)) { return format("Expires at {0}", printTime(d)); } else { return format("Expires {0}", printDateTime(d)); } } start(); diff --git a/views/message.handlebars b/views/message.handlebars index 46d6f184..eda42b45 100644 --- a/views/message.handlebars +++ b/views/message.handlebars @@ -27,7 +27,7 @@

-

+