From 70b53b0f1c6578670e9bb40eb91216f8a159b084 Mon Sep 17 00:00:00 2001
From: Ylian Saint-Hilaire
Date: Sun, 24 Jan 2021 18:43:15 -0800
Subject: [PATCH] Added tiny core support.
---
meshagent.js | 5 +-
meshcentral.js | 86 +-
meshuser.js | 3 +
public/scripts/amt-wsman-0.2.0-min.js | 2 +-
translate/translate.json | 2311 +++++++++++++------------
views/default.handlebars | 5 +-
webserver.js | 4 +
7 files changed, 1225 insertions(+), 1191 deletions(-)
diff --git a/meshagent.js b/meshagent.js
index 972edbb4..9e3b3ed8 100644
--- a/meshagent.js
+++ b/meshagent.js
@@ -161,6 +161,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
if ((obj.agentCoreCheck == 1001) || (obj.agentCoreUpdate == true)) {
// If the user asked, use the recovery core.
corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].rcore;
+ } else if (obj.agentCoreCheck == 1011) {
+ // If the user asked, use the tiny core.
+ corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].tcore;
} else if (obj.agentInfo.capabilities & 0x40) {
// If this is a recovery agent, use the agent recovery core.
corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].arcore;
@@ -174,7 +177,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
if (corename != null) {
const meshcorehash = parent.parent.defaultMeshCoresHash[corename];
if (agentMeshCoreHash != meshcorehash) {
- if ((obj.agentCoreCheck < 5) || (obj.agentCoreCheck == 1001) || (obj.agentCoreUpdate == true)) {
+ if ((obj.agentCoreCheck < 5) || (obj.agentCoreCheck == 1001) || (obj.agentCoreCheck == 1011) || (obj.agentCoreUpdate == true)) {
if (meshcorehash == null) {
// Clear the core
obj.sendBinary(common.ShortToStr(10) + common.ShortToStr(0)); // MeshCommand_CoreModule, ask mesh agent to clear the core
diff --git a/meshcentral.js b/meshcentral.js
index 9ea90dcb..5a68c00e 100644
--- a/meshcentral.js
+++ b/meshcentral.js
@@ -2174,6 +2174,16 @@ function CreateMeshCentralServer(config, args) {
}
}
+ // Read the tiny core if present
+ var meshTinyCore = null;
+ if (obj.fs.existsSync(obj.path.join(__dirname, 'agents', 'tinycore.js')) == true) {
+ try { meshTinyCore = obj.fs.readFileSync(obj.path.join(__dirname, 'agents', 'tinycore.js')).toString(); } catch (ex) { }
+ if (meshTinyCore != null) {
+ modulesAdd['windows-tiny'] = ['var addedModules = [];\r\n'];
+ modulesAdd['linux-tiny'] = ['var addedModules = [];\r\n'];
+ }
+ }
+
if (obj.args.minifycore !== false) { try { meshCore = obj.fs.readFileSync(obj.path.join(meshcorePath, 'meshcore.min.js')).toString(); } catch (e) { } } // Favor minified meshcore if present.
if (meshCore == null) { try { meshCore = obj.fs.readFileSync(obj.path.join(meshcorePath, 'meshcore.js')).toString(); } catch (e) { } } // Use non-minified meshcore.
if (meshCore != null) {
@@ -2237,6 +2247,8 @@ function CreateMeshCentralServer(config, args) {
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshRecoveryCore].join('');
} else if ((i == 'windows-agentrecovery') || (i == 'linux-agentrecovery')) {
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshAgentRecoveryCore].join('');
+ } else if ((i == 'windows-tiny') || (i == 'linux-tiny')) {
+ obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshTinyCore].join('');
} else {
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshCore].join('');
}
@@ -2387,43 +2399,43 @@ function CreateMeshCentralServer(config, args) {
// List of possible mesh agents
obj.meshAgentsArchitectureNumbers = {
- 0: { id: 0, localname: 'Unknown', rname: 'meshconsole.exe', desc: 'Unknown agent', update: false, amt: true, platform: 'unknown', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 1: { id: 1, localname: 'MeshConsole.exe', rname: 'meshconsole32.exe', desc: 'Windows x86-32 console', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 2: { id: 2, localname: 'MeshConsole64.exe', rname: 'meshconsole64.exe', desc: 'Windows x86-64 console', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 3: { id: 3, localname: 'MeshService-signed.exe', rname: 'meshagent32.exe', desc: 'Windows x86-32 service', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 4: { id: 4, localname: 'MeshService64-signed.exe', rname: 'meshagent64.exe', desc: 'Windows x86-64 service', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 5: { id: 5, localname: 'meshagent_x86', rname: 'meshagent', desc: 'Linux x86-32', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 6: { id: 6, localname: 'meshagent_x86-64', rname: 'meshagent', desc: 'Linux x86-64', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 7: { id: 7, localname: 'meshagent_mips', rname: 'meshagent', desc: 'Linux MIPS', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 8: { id: 8, localname: 'MeshAgent-Linux-XEN-x86-32', rname: 'meshagent', desc: 'XEN x86-64', update: true, amt: false, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 9: { id: 9, localname: 'meshagent_arm', rname: 'meshagent', desc: 'Linux ARM5', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 10: { id: 10, localname: 'MeshAgent-Linux-ARM-PlugPC', rname: 'meshagent', desc: 'Linux ARM PlugPC', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 11: { id: 11, localname: 'meshagent_osx-x86-32', rname: 'meshosx', desc: 'Apple macOS x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Apple x86-32 binary, no longer supported.
- 12: { id: 12, localname: 'MeshAgent-Android-x86', rname: 'meshandroid', desc: 'Android x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 13: { id: 13, localname: 'meshagent_pogo', rname: 'meshagent', desc: 'Linux ARM PogoPlug', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 14: { id: 14, localname: 'MeshAgent-Android-APK', rname: 'meshandroid', desc: 'Android', update: false, amt: false, platform: 'android', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Get this one from Google Play
- 15: { id: 15, localname: 'meshagent_poky', rname: 'meshagent', desc: 'Linux Poky x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 16: { id: 16, localname: 'meshagent_osx-x86-64', rname: 'meshagent', desc: 'Apple macOS x86-64', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Apple x86-64 binary
- 17: { id: 17, localname: 'MeshAgent-ChromeOS', rname: 'meshagent', desc: 'Google ChromeOS', update: false, amt: false, platform: 'chromeos', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Get this one from Chrome store
- 18: { id: 18, localname: 'meshagent_poky64', rname: 'meshagent', desc: 'Linux Poky x86-64', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 19: { id: 19, localname: 'meshagent_x86_nokvm', rname: 'meshagent', desc: 'Linux x86-32 NoKVM', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 20: { id: 20, localname: 'meshagent_x86-64_nokvm', rname: 'meshagent', desc: 'Linux x86-64 NoKVM', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 21: { id: 21, localname: 'MeshAgent-WinMinCore-Console-x86-32.exe', rname: 'meshagent.exe', desc: 'Windows MinCore Console x86-32', update: true, amt: false, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 22: { id: 22, localname: 'MeshAgent-WinMinCore-Service-x86-64.exe', rname: 'meshagent.exe', desc: 'Windows MinCore Service x86-32', update: true, amt: false, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery' },
- 23: { id: 23, localname: 'MeshAgent-NodeJS', rname: 'meshagent', desc: 'NodeJS', update: false, amt: false, platform: 'node', core: 'nodejs', rcore: 'nodejs', arcore: 'nodejs' }, // NodeJS based agent
- 24: { id: 24, localname: 'meshagent_arm-linaro', rname: 'meshagent', desc: 'Linux ARM Linaro', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 25: { id: 25, localname: 'meshagent_armhf', rname: 'meshagent', desc: 'Linux ARM - HardFloat', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // "armv6l" and "armv7l"
- 26: { id: 26, localname: 'meshagent_arm64', rname: 'meshagent', desc: 'Linux ARMv8-64', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // "aarch64"
- 27: { id: 27, localname: 'meshagent_armhf2', rname: 'meshagent', desc: 'Linux ARM - HardFloat', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Raspbian 7 2015-02-02 for old Raspberry Pi.
- 28: { id: 28, localname: 'meshagent_mips24kc', rname: 'meshagent', desc: 'Linux MIPS24KC/MUSL (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // MIPS Router with OpenWRT
- 29: { id: 29, localname: 'meshagent_osx-arm-64', rname: 'meshagent', desc: 'Apple macOS ARM-64', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Apple Silicon ARM 64bit
- 30: { id: 30, localname: 'meshagent_freebsd_x86-64', rname: 'meshagent', desc: 'FreeBSD x86-64', update: true, amt: false, platform: 'freebsd', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // FreeBSD x64
- 32: { id: 32, localname: 'meshagent_aarch64', rname: 'meshagent', desc: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' },
- 40: { id: 40, localname: 'meshagent_mipsel24kc', rname: 'meshagent', desc: 'Linux MIPSEL24KC (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // MIPS Router with OpenWRT
- 41: { id: 41, localname: 'meshagent_aarch64-cortex-a53', rname: 'meshagent', desc: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // OpenWRT Routers
- 10003: { id: 3, localname: 'MeshService.exe', rname: 'meshagent.exe', desc: 'Win x86-32 service, unsigned', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Unsigned version of the Windows MeshAgent x86
- 10004: { id: 4, localname: 'MeshService64.exe', rname: 'meshagent.exe', desc: 'Win x86-64 service, unsigned', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' }, // Unsigned version of the Windows MeshAgent x64
- 10005: { id: 10005, localname: 'meshagent_osx-universal-64', rname: 'meshagent', desc: 'Apple macOS Universal Binary', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery' } // Apple Silicon + x86 universal binary
+ 0: { id: 0, localname: 'Unknown', rname: 'meshconsole.exe', desc: 'Unknown agent', update: false, amt: true, platform: 'unknown', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 1: { id: 1, localname: 'MeshConsole.exe', rname: 'meshconsole32.exe', desc: 'Windows x86-32 console', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 2: { id: 2, localname: 'MeshConsole64.exe', rname: 'meshconsole64.exe', desc: 'Windows x86-64 console', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 3: { id: 3, localname: 'MeshService-signed.exe', rname: 'meshagent32.exe', desc: 'Windows x86-32 service', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 4: { id: 4, localname: 'MeshService64-signed.exe', rname: 'meshagent64.exe', desc: 'Windows x86-64 service', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 5: { id: 5, localname: 'meshagent_x86', rname: 'meshagent', desc: 'Linux x86-32', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 6: { id: 6, localname: 'meshagent_x86-64', rname: 'meshagent', desc: 'Linux x86-64', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 7: { id: 7, localname: 'meshagent_mips', rname: 'meshagent', desc: 'Linux MIPS', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 8: { id: 8, localname: 'MeshAgent-Linux-XEN-x86-32', rname: 'meshagent', desc: 'XEN x86-64', update: true, amt: false, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 9: { id: 9, localname: 'meshagent_arm', rname: 'meshagent', desc: 'Linux ARM5', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 10: { id: 10, localname: 'MeshAgent-Linux-ARM-PlugPC', rname: 'meshagent', desc: 'Linux ARM PlugPC', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 11: { id: 11, localname: 'meshagent_osx-x86-32', rname: 'meshosx', desc: 'Apple macOS x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Apple x86-32 binary, no longer supported.
+ 12: { id: 12, localname: 'MeshAgent-Android-x86', rname: 'meshandroid', desc: 'Android x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 13: { id: 13, localname: 'meshagent_pogo', rname: 'meshagent', desc: 'Linux ARM PogoPlug', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 14: { id: 14, localname: 'MeshAgent-Android-APK', rname: 'meshandroid', desc: 'Android', update: false, amt: false, platform: 'android', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Get this one from Google Play
+ 15: { id: 15, localname: 'meshagent_poky', rname: 'meshagent', desc: 'Linux Poky x86-32', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 16: { id: 16, localname: 'meshagent_osx-x86-64', rname: 'meshagent', desc: 'Apple macOS x86-64', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Apple x86-64 binary
+ 17: { id: 17, localname: 'MeshAgent-ChromeOS', rname: 'meshagent', desc: 'Google ChromeOS', update: false, amt: false, platform: 'chromeos', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Get this one from Chrome store
+ 18: { id: 18, localname: 'meshagent_poky64', rname: 'meshagent', desc: 'Linux Poky x86-64', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 19: { id: 19, localname: 'meshagent_x86_nokvm', rname: 'meshagent', desc: 'Linux x86-32 NoKVM', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 20: { id: 20, localname: 'meshagent_x86-64_nokvm', rname: 'meshagent', desc: 'Linux x86-64 NoKVM', update: true, amt: true, platform: 'linux', core: 'linux-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 21: { id: 21, localname: 'MeshAgent-WinMinCore-Console-x86-32.exe', rname: 'meshagent.exe', desc: 'Windows MinCore Console x86-32', update: true, amt: false, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 22: { id: 22, localname: 'MeshAgent-WinMinCore-Service-x86-64.exe', rname: 'meshagent.exe', desc: 'Windows MinCore Service x86-32', update: true, amt: false, platform: 'win32', core: 'windows-amt', rcore: 'windows-recovery', arcore: 'windows-agentrecovery', tcore: 'windows-tiny' },
+ 23: { id: 23, localname: 'MeshAgent-NodeJS', rname: 'meshagent', desc: 'NodeJS', update: false, amt: false, platform: 'node', core: 'nodejs', rcore: 'nodejs', arcore: 'nodejs', tcore: 'nodejs' }, // NodeJS based agent
+ 24: { id: 24, localname: 'meshagent_arm-linaro', rname: 'meshagent', desc: 'Linux ARM Linaro', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 25: { id: 25, localname: 'meshagent_armhf', rname: 'meshagent', desc: 'Linux ARM - HardFloat', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // "armv6l" and "armv7l"
+ 26: { id: 26, localname: 'meshagent_arm64', rname: 'meshagent', desc: 'Linux ARMv8-64', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // "aarch64"
+ 27: { id: 27, localname: 'meshagent_armhf2', rname: 'meshagent', desc: 'Linux ARM - HardFloat', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Raspbian 7 2015-02-02 for old Raspberry Pi.
+ 28: { id: 28, localname: 'meshagent_mips24kc', rname: 'meshagent', desc: 'Linux MIPS24KC/MUSL (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // MIPS Router with OpenWRT
+ 29: { id: 29, localname: 'meshagent_osx-arm-64', rname: 'meshagent', desc: 'Apple macOS ARM-64', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Apple Silicon ARM 64bit
+ 30: { id: 30, localname: 'meshagent_freebsd_x86-64', rname: 'meshagent', desc: 'FreeBSD x86-64', update: true, amt: false, platform: 'freebsd', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // FreeBSD x64
+ 32: { id: 32, localname: 'meshagent_aarch64', rname: 'meshagent', desc: 'Linux ARM 64 bit (glibc/2.24 NOKVM)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' },
+ 40: { id: 40, localname: 'meshagent_mipsel24kc', rname: 'meshagent', desc: 'Linux MIPSEL24KC (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // MIPS Router with OpenWRT
+ 41: { id: 41, localname: 'meshagent_aarch64-cortex-a53', rname: 'meshagent', desc: 'ARMADA/CORTEX-A53/MUSL (OpenWRT)', update: true, amt: false, platform: 'linux', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // OpenWRT Routers
+ 10003: { id: 3, localname: 'MeshService.exe', rname: 'meshagent.exe', desc: 'Win x86-32 service, unsigned', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Unsigned version of the Windows MeshAgent x86
+ 10004: { id: 4, localname: 'MeshService64.exe', rname: 'meshagent.exe', desc: 'Win x86-64 service, unsigned', update: true, amt: true, platform: 'win32', core: 'windows-amt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' }, // Unsigned version of the Windows MeshAgent x64
+ 10005: { id: 10005, localname: 'meshagent_osx-universal-64', rname: 'meshagent', desc: 'Apple macOS Universal Binary', update: true, amt: false, platform: 'osx', core: 'linux-noamt', rcore: 'linux-recovery', arcore: 'linux-agentrecovery', tcore: 'linux-tiny' } // Apple Silicon + x86 universal binary
};
// Update the list of available mesh agents
diff --git a/meshuser.js b/meshuser.js
index fc26e417..0b37f8cc 100644
--- a/meshuser.js
+++ b/meshuser.js
@@ -4006,6 +4006,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
} else if (command.type == 'recovery') {
// Send the recovery core to the agent
parent.sendMeshAgentCore(user, domain, node._id, 'recovery');
+ } else if (command.type == 'tiny') {
+ // Send the tiny core to the agent
+ parent.sendMeshAgentCore(user, domain, node._id, 'tiny');
} else if ((command.type == 'custom') && (common.validateString(command.path, 1, 2048) == true)) {
// Send a mesh agent core to the mesh agent
var file = parent.getServerFilePath(user, domain, command.path);
diff --git a/public/scripts/amt-wsman-0.2.0-min.js b/public/scripts/amt-wsman-0.2.0-min.js
index 86d1ae50..a8eb3bca 100644
--- a/public/scripts/amt-wsman-0.2.0-min.js
+++ b/public/scripts/amt-wsman-0.2.0-min.js
@@ -1 +1 @@
-var WsmanStackCreateService=function(e,s,r,a,o,t){var p={};function l(e){if(!e)return"";var s=" ";for(var r in e)e.hasOwnProperty(r)&&0===r.indexOf("@")&&(s+=r.substring(1)+'="'+e[r]+'" ');return s}function w(e){if(!e)return"";if("string"==typeof e)return e;if(e.InstanceID)return''+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,c,d){var m="",i="";null!=c&&null!=d&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+c+''+d+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+''+r+""+i+"PT0.000000S";p.PerformAjax(u+"",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var c in s)l+=""+s[c]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S
'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o'+e.InstanceID+"";var s="";for(var r in e)if(e.hasOwnProperty(r)){if(s+='',e[r].ReferenceParameters){s+="",s+=""+e[r].Address+""+e[r].ReferenceParameters.ResourceURI+"";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o"+a[o].Value+"";else s+=""+a.Value+"";s+=""}else s+=e[r];s+=""}return s+=""}return p.NextMessageId=1,p.Address="/wsman",p.comm=CreateWsmanComm(e,s,r,a,o,t),p.PerformAjax=function(e,o,s,r,a){null==a&&(a=""),p.comm.PerformAjax('"+e,function(e,s,r){if(200==s){var a=p.ParseWsman(e);a&&null!=a?o(p,a.Header.ResourceURI,a,200,r):o(p,null,{Header:{HttpError:s}},601,r)}else o(p,null,{Header:{HttpError:s}},s,r)},s,r)},p.CancelAllQueries=function(e){p.comm.CancelAllQueries(e)},p.GetNameFromUrl=function(e){var s=e.lastIndexOf("/");return-1==s?e:e.substring(s+1)},p.ExecSubscribe=function(e,s,r,a,o,t,n,l,d,c){var m="",i="";null!=d&&null!=c&&(m="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken"+d+''+c+"",i=''),l=null!=l&&null!=l?""+l+"":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(n)+m+''+r+""+i+"PT0.000000S";p.PerformAjax(u+"",a,o,t,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing" xmlns:t="http://schemas.xmlsoap.org/ws/2005/02/trust" xmlns:se="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:m="http://x.com"')},p.ExecUnSubscribe=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/08/eventing/Unsubscribe"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous"+w(o)+"";p.PerformAjax(t+"",s,r,a,'xmlns:e="http://schemas.xmlsoap.org/ws/2004/08/eventing"')},p.ExecPut=function(e,s,r,a,o,t){var n="http://schemas.xmlsoap.org/ws/2004/09/transfer/Put"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S"+w(t)+""+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="';for(var o in s)if(s.hasOwnProperty(o)&&0!==o.indexOf("__")&&0!==o.indexOf("@")&&void 0!==s[o]&&null!==s[o]&&"function"!=typeof s[o])if("object"==typeof s[o]&&s[o].ReferenceParameters){a+=""+s[o].Address+""+s[o].ReferenceParameters.ResourceURI+"";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n"+t[n].Value+"";else a+=""+t.Value+"";a+=""}else if(Array.isArray(s[o]))for(n=0;n"+s[o][n].toString()+"";else a+=""+s[o].toString()+"";return a+=""}(e,s);p.PerformAjax(n+"",r,a,o)},p.ExecCreate=function(e,s,r,a,o,t){var n=p.GetNameFromUrl(e),l="http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(t)+"';for(var d in s)l+=""+s[d]+"";p.PerformAjax(l+"",r,a,o)},p.ExecCreateXml=function(e,s,r,a,o){var t=p.GetNameFromUrl(e);p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Create"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60.000S'+s+"",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S"+w(s)+"";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get"+p.Address+""+e+""+p.NextMessageId+++"http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+r+"",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull"+p.Address+""+e+""+p.NextMessageId+++'http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymousPT60S'+s+"99999999",r,a,o)},p.ParseWsman=function(s){try{s.childNodes||(s=function(e){{if(window.DOMParser)return(new DOMParser).parseFromString(e,"text/xml");var s=new ActiveXObject("Microsoft.XMLDOM");return s.async=!1,s.loadXML(e),s}}(s));var e,r={Header:{}},a=s.getElementsByTagName("Header")[0];if(!(a=a||s.getElementsByTagName("a:Header")[0]))return null;for(var o=0;o31->1429",
- "default.handlebars->31->1431"
+ "default.handlebars->31->1430",
+ "default.handlebars->31->1432"
]
},
{
@@ -204,7 +204,7 @@
"zh-chs": " 可以使用密码提示,但不建议使用。",
"zh-cht": " 可以使用密碼提示,但不建議使用。",
"xloc": [
- "default.handlebars->31->1342"
+ "default.handlebars->31->1343"
]
},
{
@@ -224,8 +224,8 @@
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
"xloc": [
- "default.handlebars->31->1506",
- "default.handlebars->31->1970"
+ "default.handlebars->31->1507",
+ "default.handlebars->31->1971"
]
},
{
@@ -432,7 +432,7 @@
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
"xloc": [
- "default.handlebars->31->1475",
+ "default.handlebars->31->1476",
"default.handlebars->31->323"
]
},
@@ -508,7 +508,7 @@
"zh-cht": ",",
"xloc": [
"default-mobile.handlebars->11->515",
- "default.handlebars->31->1576"
+ "default.handlebars->31->1577"
]
},
{
@@ -825,8 +825,8 @@
"xloc": [
"default-mobile.handlebars->11->119",
"default-mobile.handlebars->11->349",
- "default.handlebars->31->1617",
- "default.handlebars->31->2129",
+ "default.handlebars->31->1618",
+ "default.handlebars->31->2130",
"default.handlebars->31->954"
]
},
@@ -884,7 +884,7 @@
"zh-chs": "1个活跃时段",
"zh-cht": "1個活躍時段",
"xloc": [
- "default.handlebars->31->2041"
+ "default.handlebars->31->2042"
]
},
{
@@ -906,7 +906,7 @@
"xloc": [
"default-mobile.handlebars->11->129",
"default-mobile.handlebars->11->558",
- "default.handlebars->31->1641",
+ "default.handlebars->31->1642",
"download.handlebars->3->1",
"download2.handlebars->5->1"
]
@@ -971,7 +971,7 @@
"zh-chs": "1组",
"zh-cht": "1群",
"xloc": [
- "default.handlebars->31->2004"
+ "default.handlebars->31->2005"
]
},
{
@@ -1075,7 +1075,7 @@
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
"xloc": [
- "default.handlebars->31->1794"
+ "default.handlebars->31->1795"
]
},
{
@@ -1141,7 +1141,7 @@
"default-mobile.handlebars->11->183",
"default-mobile.handlebars->11->186",
"default-mobile.handlebars->11->189",
- "default.handlebars->31->1798",
+ "default.handlebars->31->1799",
"default.handlebars->31->268",
"default.handlebars->31->271",
"default.handlebars->31->274",
@@ -1624,7 +1624,7 @@
"zh-chs": "2FA备份代码已清除",
"zh-cht": "2FA備份代碼已清除",
"xloc": [
- "default.handlebars->31->1752"
+ "default.handlebars->31->1753"
]
},
{
@@ -1644,8 +1644,8 @@
"zh-chs": "启用第二因素身份验证",
"zh-cht": "啟用第二因素身份驗證",
"xloc": [
- "default.handlebars->31->1811",
- "default.handlebars->31->2026"
+ "default.handlebars->31->1812",
+ "default.handlebars->31->2027"
]
},
{
@@ -2347,11 +2347,14 @@
"nl": ""
},
{
- "en": " ",
+ "en": " ",
"xloc": [
"default.handlebars->31->403"
]
},
+ {
+ "en": " "
+ },
{
"cs": "<<",
"de": "<<",
@@ -2510,7 +2513,7 @@
"zh-cht": "ACM",
"xloc": [
"default-mobile.handlebars->11->247",
- "default.handlebars->31->1445",
+ "default.handlebars->31->1446",
"default.handlebars->31->588"
]
},
@@ -2733,7 +2736,7 @@
"zh-chs": "访问服务器档案",
"zh-cht": "存取伺服器檔案",
"xloc": [
- "default.handlebars->31->1976"
+ "default.handlebars->31->1977"
]
},
{
@@ -2822,9 +2825,9 @@
"default-mobile.handlebars->11->222",
"default-mobile.handlebars->11->224",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
- "default.handlebars->31->1351",
- "default.handlebars->31->1353",
- "default.handlebars->31->2243",
+ "default.handlebars->31->1352",
+ "default.handlebars->31->1354",
+ "default.handlebars->31->2244",
"default.handlebars->31->557",
"default.handlebars->31->559"
]
@@ -2835,7 +2838,7 @@
"fr": "Paramètres du compte",
"xloc": [
"default-mobile.handlebars->11->526",
- "default.handlebars->31->2137"
+ "default.handlebars->31->2138"
]
},
{
@@ -2896,7 +2899,7 @@
"zh-chs": "帐户已更改:{0}",
"zh-cht": "帳戶已更改:{0}",
"xloc": [
- "default.handlebars->31->1725"
+ "default.handlebars->31->1726"
]
},
{
@@ -2916,7 +2919,7 @@
"zh-chs": "创建帐户,电子邮件为{0}",
"zh-cht": "創建帳戶,電子郵件為{0}",
"xloc": [
- "default.handlebars->31->1724"
+ "default.handlebars->31->1725"
]
},
{
@@ -2936,7 +2939,7 @@
"zh-chs": "创建帐户,用户名是{0}",
"zh-cht": "帳戶已創建,用戶名是{0}",
"xloc": [
- "default.handlebars->31->1723"
+ "default.handlebars->31->1724"
]
},
{
@@ -2956,8 +2959,8 @@
"zh-chs": "帐户已被锁定",
"zh-cht": "帳戶已被鎖定",
"xloc": [
- "default.handlebars->31->1813",
- "default.handlebars->31->1973"
+ "default.handlebars->31->1814",
+ "default.handlebars->31->1974"
]
},
{
@@ -2978,7 +2981,7 @@
"zh-cht": "達到帳戶限制。",
"xloc": [
"default-mobile.handlebars->11->538",
- "default.handlebars->31->2149",
+ "default.handlebars->31->2150",
"login-mobile.handlebars->5->6",
"login.handlebars->5->6",
"login2.handlebars->7->7"
@@ -3023,7 +3026,7 @@
"zh-chs": "帐号登录",
"zh-cht": "帳號登錄",
"xloc": [
- "default.handlebars->31->1660"
+ "default.handlebars->31->1661"
]
},
{
@@ -3043,7 +3046,7 @@
"zh-chs": "帐户登出",
"zh-cht": "帳戶登出",
"xloc": [
- "default.handlebars->31->1661"
+ "default.handlebars->31->1662"
]
},
{
@@ -3085,7 +3088,7 @@
"zh-chs": "帐户密码已更改:{0}",
"zh-cht": "帳戶密碼已更改:{0}",
"xloc": [
- "default.handlebars->31->1733"
+ "default.handlebars->31->1734"
]
},
{
@@ -3105,7 +3108,7 @@
"zh-chs": "帐户已删除",
"zh-cht": "帳戶已刪除",
"xloc": [
- "default.handlebars->31->1722"
+ "default.handlebars->31->1723"
]
},
{
@@ -3273,7 +3276,7 @@
"zh-chs": "如果ACM失败,则激活到CCM",
"zh-cht": "如果ACM失敗,則激活到CCM",
"xloc": [
- "default.handlebars->31->1466"
+ "default.handlebars->31->1467"
]
},
{
@@ -3384,7 +3387,7 @@
"zh-chs": "添加代理",
"zh-cht": "新增代理",
"xloc": [
- "default.handlebars->31->1441",
+ "default.handlebars->31->1442",
"default.handlebars->31->301"
]
},
@@ -3422,8 +3425,8 @@
"zh-chs": "添加设备",
"zh-cht": "新增裝置",
"xloc": [
- "default.handlebars->31->1950",
- "default.handlebars->31->2076"
+ "default.handlebars->31->1951",
+ "default.handlebars->31->2077"
]
},
{
@@ -3463,9 +3466,9 @@
"zh-chs": "添加设备组",
"zh-cht": "新增裝置群",
"xloc": [
- "default.handlebars->31->1540",
- "default.handlebars->31->1944",
- "default.handlebars->31->2064",
+ "default.handlebars->31->1541",
+ "default.handlebars->31->1945",
+ "default.handlebars->31->2065",
"default.handlebars->31->238"
]
},
@@ -3486,7 +3489,7 @@
"zh-chs": "添加设备组权限",
"zh-cht": "新增裝置群權限",
"xloc": [
- "default.handlebars->31->1537"
+ "default.handlebars->31->1538"
]
},
{
@@ -3506,8 +3509,8 @@
"zh-chs": "添加设备权限",
"zh-cht": "新增裝置權限",
"xloc": [
- "default.handlebars->31->1542",
- "default.handlebars->31->1544"
+ "default.handlebars->31->1543",
+ "default.handlebars->31->1545"
]
},
{
@@ -3604,7 +3607,7 @@
"zh-chs": "添加成员身份",
"zh-cht": "新增成員身份",
"xloc": [
- "default.handlebars->31->2096"
+ "default.handlebars->31->2097"
]
},
{
@@ -3644,8 +3647,8 @@
"zh-chs": "添加安全密钥",
"zh-cht": "新增安全密鑰",
"xloc": [
- "default.handlebars->31->1118",
"default.handlebars->31->1119",
+ "default.handlebars->31->1120",
"default.handlebars->31->160",
"default.handlebars->31->162",
"default.handlebars->31->165",
@@ -3690,7 +3693,7 @@
"zh-chs": "添加用户设备权限",
"zh-cht": "新增用戶裝置權限",
"xloc": [
- "default.handlebars->31->1547"
+ "default.handlebars->31->1548"
]
},
{
@@ -3710,9 +3713,9 @@
"zh-chs": "添加用户组",
"zh-cht": "新增用戶群",
"xloc": [
- "default.handlebars->31->1437",
- "default.handlebars->31->1539",
- "default.handlebars->31->2070",
+ "default.handlebars->31->1438",
+ "default.handlebars->31->1540",
+ "default.handlebars->31->2071",
"default.handlebars->31->683"
]
},
@@ -3733,7 +3736,7 @@
"zh-chs": "添加用户组设备权限",
"zh-cht": "新增用戶群裝置權限",
"xloc": [
- "default.handlebars->31->1549"
+ "default.handlebars->31->1550"
]
},
{
@@ -3790,8 +3793,8 @@
"zh-chs": "添加用户",
"zh-cht": "新增用戶",
"xloc": [
- "default.handlebars->31->1436",
- "default.handlebars->31->1939"
+ "default.handlebars->31->1437",
+ "default.handlebars->31->1940"
]
},
{
@@ -3811,7 +3814,7 @@
"zh-chs": "将用户添加到设备组",
"zh-cht": "將用戶新增到裝置群",
"xloc": [
- "default.handlebars->31->1536"
+ "default.handlebars->31->1537"
]
},
{
@@ -3831,7 +3834,7 @@
"zh-chs": "将用户添加到用户组",
"zh-cht": "將用戶新增到用戶群",
"xloc": [
- "default.handlebars->31->1972"
+ "default.handlebars->31->1973"
]
},
{
@@ -3948,7 +3951,7 @@
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
"xloc": [
- "default.handlebars->31->1440",
+ "default.handlebars->31->1441",
"default.handlebars->31->300"
]
},
@@ -4009,7 +4012,7 @@
"zh-chs": "添加了身份验证应用程序",
"zh-cht": "添加了身份驗證應用程序",
"xloc": [
- "default.handlebars->31->1749"
+ "default.handlebars->31->1750"
]
},
{
@@ -4029,7 +4032,7 @@
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
"xloc": [
- "default.handlebars->31->1760"
+ "default.handlebars->31->1761"
]
},
{
@@ -4049,8 +4052,8 @@
"zh-chs": "已将设备{0}添加到设备组{1}",
"zh-cht": "已將設備{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->31->1716",
- "default.handlebars->31->1743"
+ "default.handlebars->31->1717",
+ "default.handlebars->31->1744"
]
},
{
@@ -4070,7 +4073,7 @@
"zh-chs": "添加了安全密钥",
"zh-cht": "添加了安全密鑰",
"xloc": [
- "default.handlebars->31->1754"
+ "default.handlebars->31->1755"
]
},
{
@@ -4090,7 +4093,7 @@
"zh-chs": "已将用户组{0}添加到设备组{1}",
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->31->1727"
+ "default.handlebars->31->1728"
]
},
{
@@ -4110,8 +4113,8 @@
"zh-chs": "已将用户{0}添加到用户组{1}",
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"xloc": [
- "default.handlebars->31->1730",
- "default.handlebars->31->1739"
+ "default.handlebars->31->1731",
+ "default.handlebars->31->1740"
]
},
{
@@ -4234,7 +4237,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->31->2008"
+ "default.handlebars->31->2009"
]
},
{
@@ -4275,7 +4278,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->31->1876"
+ "default.handlebars->31->1877"
]
},
{
@@ -4295,7 +4298,7 @@
"zh-chs": "管理员",
"zh-cht": "管理員",
"xloc": [
- "default.handlebars->31->1805"
+ "default.handlebars->31->1806"
]
},
{
@@ -4315,7 +4318,7 @@
"zh-chs": "南非文",
"zh-cht": "南非文",
"xloc": [
- "default.handlebars->31->1121"
+ "default.handlebars->31->1122"
]
},
{
@@ -4339,8 +4342,8 @@
"default-mobile.handlebars->11->214",
"default-mobile.handlebars->11->239",
"default-mobile.handlebars->11->261",
- "default.handlebars->31->1603",
- "default.handlebars->31->1611",
+ "default.handlebars->31->1604",
+ "default.handlebars->31->1612",
"default.handlebars->31->254",
"default.handlebars->31->443",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4363,8 +4366,8 @@
"zh-chs": "代理+英特尔AMT",
"zh-cht": "代理+Intel® AMT",
"xloc": [
- "default.handlebars->31->1605",
- "default.handlebars->31->1613"
+ "default.handlebars->31->1606",
+ "default.handlebars->31->1614"
]
},
{
@@ -4405,7 +4408,7 @@
"zh-cht": "代理控制台",
"xloc": [
"default-mobile.handlebars->11->497",
- "default.handlebars->31->1557"
+ "default.handlebars->31->1558"
]
},
{
@@ -4425,7 +4428,7 @@
"zh-chs": "代理错误计数器",
"zh-cht": "代理錯誤計數器",
"xloc": [
- "default.handlebars->31->2174"
+ "default.handlebars->31->2175"
]
},
{
@@ -4528,7 +4531,7 @@
"zh-chs": "代理时段",
"zh-cht": "代理時段",
"xloc": [
- "default.handlebars->31->2190"
+ "default.handlebars->31->2191"
]
},
{
@@ -4569,7 +4572,7 @@
"zh-chs": "代理类型",
"zh-cht": "代理類型",
"xloc": [
- "default.handlebars->31->1609",
+ "default.handlebars->31->1610",
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
]
},
@@ -4590,7 +4593,7 @@
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"xloc": [
- "default.handlebars->31->1713"
+ "default.handlebars->31->1714"
]
},
{
@@ -4713,7 +4716,7 @@
"zh-chs": "代理",
"zh-cht": "代理",
"xloc": [
- "default.handlebars->31->2206"
+ "default.handlebars->31->2207"
]
},
{
@@ -4733,7 +4736,7 @@
"zh-chs": "阿尔巴尼亚文",
"zh-cht": "阿爾巴尼亞文",
"xloc": [
- "default.handlebars->31->1122"
+ "default.handlebars->31->1123"
]
},
{
@@ -4776,7 +4779,7 @@
"zh-chs": "全部可用",
"zh-cht": "全部可用",
"xloc": [
- "default.handlebars->31->1768"
+ "default.handlebars->31->1769"
]
},
{
@@ -4813,7 +4816,7 @@
"zh-chs": "所有事件",
"zh-cht": "所有事件",
"xloc": [
- "default.handlebars->31->1766"
+ "default.handlebars->31->1767"
]
},
{
@@ -4855,8 +4858,8 @@
"zh-chs": "允许用户管理此设备组和该组中的设备。",
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"xloc": [
- "default.handlebars->31->1504",
- "default.handlebars->31->1969"
+ "default.handlebars->31->1505",
+ "default.handlebars->31->1970"
]
},
{
@@ -4876,7 +4879,7 @@
"zh-chs": "允许用户管理此设备。",
"zh-cht": "允許用戶管理此裝置。",
"xloc": [
- "default.handlebars->31->1505"
+ "default.handlebars->31->1506"
]
},
{
@@ -4998,9 +5001,9 @@
"zh-chs": "一直通知",
"zh-cht": "一直通知",
"xloc": [
- "default.handlebars->31->1416",
- "default.handlebars->31->1930",
- "default.handlebars->31->2017",
+ "default.handlebars->31->1417",
+ "default.handlebars->31->1931",
+ "default.handlebars->31->2018",
"default.handlebars->31->619"
]
},
@@ -5021,9 +5024,9 @@
"zh-chs": "一直提示",
"zh-cht": "一直提示",
"xloc": [
- "default.handlebars->31->1417",
- "default.handlebars->31->1931",
- "default.handlebars->31->2018",
+ "default.handlebars->31->1418",
+ "default.handlebars->31->1932",
+ "default.handlebars->31->2019",
"default.handlebars->31->620"
]
},
@@ -5285,7 +5288,7 @@
"zh-chs": "阿拉伯文(阿尔及利亚)",
"zh-cht": "阿拉伯文(阿爾及利亞)",
"xloc": [
- "default.handlebars->31->1124"
+ "default.handlebars->31->1125"
]
},
{
@@ -5305,7 +5308,7 @@
"zh-chs": "阿拉伯文(巴林)",
"zh-cht": "阿拉伯文(巴林)",
"xloc": [
- "default.handlebars->31->1125"
+ "default.handlebars->31->1126"
]
},
{
@@ -5325,7 +5328,7 @@
"zh-chs": "阿拉伯文(埃及)",
"zh-cht": "阿拉伯文(埃及)",
"xloc": [
- "default.handlebars->31->1126"
+ "default.handlebars->31->1127"
]
},
{
@@ -5345,7 +5348,7 @@
"zh-chs": "阿拉伯文(伊拉克)",
"zh-cht": "阿拉伯文(伊拉克)",
"xloc": [
- "default.handlebars->31->1127"
+ "default.handlebars->31->1128"
]
},
{
@@ -5365,7 +5368,7 @@
"zh-chs": "阿拉伯文(约旦)",
"zh-cht": "阿拉伯文(約旦)",
"xloc": [
- "default.handlebars->31->1128"
+ "default.handlebars->31->1129"
]
},
{
@@ -5385,7 +5388,7 @@
"zh-chs": "阿拉伯文(科威特)",
"zh-cht": "阿拉伯文(科威特)",
"xloc": [
- "default.handlebars->31->1129"
+ "default.handlebars->31->1130"
]
},
{
@@ -5405,7 +5408,7 @@
"zh-chs": "阿拉伯文(黎巴嫩)",
"zh-cht": "阿拉伯文(黎巴嫩)",
"xloc": [
- "default.handlebars->31->1130"
+ "default.handlebars->31->1131"
]
},
{
@@ -5425,7 +5428,7 @@
"zh-chs": "阿拉伯文(利比亚)",
"zh-cht": "阿拉伯文(利比亞)",
"xloc": [
- "default.handlebars->31->1131"
+ "default.handlebars->31->1132"
]
},
{
@@ -5445,7 +5448,7 @@
"zh-chs": "阿拉伯文(摩洛哥)",
"zh-cht": "阿拉伯文(摩洛哥)",
"xloc": [
- "default.handlebars->31->1132"
+ "default.handlebars->31->1133"
]
},
{
@@ -5465,7 +5468,7 @@
"zh-chs": "阿拉伯文(阿曼)",
"zh-cht": "阿拉伯文(阿曼)",
"xloc": [
- "default.handlebars->31->1133"
+ "default.handlebars->31->1134"
]
},
{
@@ -5485,7 +5488,7 @@
"zh-chs": "阿拉伯文(卡塔尔)",
"zh-cht": "阿拉伯文(卡塔爾)",
"xloc": [
- "default.handlebars->31->1134"
+ "default.handlebars->31->1135"
]
},
{
@@ -5505,7 +5508,7 @@
"zh-chs": "阿拉伯文(沙特阿拉伯)",
"zh-cht": "阿拉伯文(沙特阿拉伯)",
"xloc": [
- "default.handlebars->31->1135"
+ "default.handlebars->31->1136"
]
},
{
@@ -5525,7 +5528,7 @@
"zh-chs": "阿拉伯文(标准)",
"zh-cht": "阿拉伯文(標準)",
"xloc": [
- "default.handlebars->31->1123"
+ "default.handlebars->31->1124"
]
},
{
@@ -5545,7 +5548,7 @@
"zh-chs": "阿拉伯文(叙利亚)",
"zh-cht": "阿拉伯文(敘利亞)",
"xloc": [
- "default.handlebars->31->1136"
+ "default.handlebars->31->1137"
]
},
{
@@ -5565,7 +5568,7 @@
"zh-chs": "阿拉伯文(突尼斯)",
"zh-cht": "阿拉伯文(突尼斯)",
"xloc": [
- "default.handlebars->31->1137"
+ "default.handlebars->31->1138"
]
},
{
@@ -5585,7 +5588,7 @@
"zh-chs": "阿拉伯文(阿联酋)",
"zh-cht": "阿拉伯文(阿聯酋)",
"xloc": [
- "default.handlebars->31->1138"
+ "default.handlebars->31->1139"
]
},
{
@@ -5605,7 +5608,7 @@
"zh-chs": "阿拉伯文(也门)",
"zh-cht": "阿拉伯文(也門)",
"xloc": [
- "default.handlebars->31->1139"
+ "default.handlebars->31->1140"
]
},
{
@@ -5625,7 +5628,7 @@
"zh-chs": "阿拉贡文",
"zh-cht": "阿拉貢文",
"xloc": [
- "default.handlebars->31->1140"
+ "default.handlebars->31->1141"
]
},
{
@@ -5687,7 +5690,7 @@
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
"xloc": [
"default-mobile.handlebars->11->466",
- "default.handlebars->31->1480"
+ "default.handlebars->31->1481"
]
},
{
@@ -5767,7 +5770,7 @@
"zh-chs": "您确定要{0}插件吗:{1}",
"zh-cht": "你確定要{0}外掛嗎:{1}",
"xloc": [
- "default.handlebars->31->2252"
+ "default.handlebars->31->2253"
]
},
{
@@ -5787,7 +5790,7 @@
"zh-chs": "亚美尼亚文",
"zh-cht": "亞美尼亞文",
"xloc": [
- "default.handlebars->31->1141"
+ "default.handlebars->31->1142"
]
},
{
@@ -5847,7 +5850,7 @@
"zh-chs": "阿萨姆文",
"zh-cht": "阿薩姆文",
"xloc": [
- "default.handlebars->31->1142"
+ "default.handlebars->31->1143"
]
},
{
@@ -5867,7 +5870,7 @@
"zh-chs": "阿斯图里亚斯文",
"zh-cht": "阿斯圖里亞斯文",
"xloc": [
- "default.handlebars->31->1143"
+ "default.handlebars->31->1144"
]
},
{
@@ -5887,7 +5890,7 @@
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"xloc": [
- "default.handlebars->31->1682"
+ "default.handlebars->31->1683"
]
},
{
@@ -5907,7 +5910,7 @@
"zh-chs": "认证软件",
"zh-cht": "認證軟體",
"xloc": [
- "default.handlebars->31->2021"
+ "default.handlebars->31->2022"
]
},
{
@@ -5931,8 +5934,8 @@
"default-mobile.handlebars->11->63",
"default-mobile.handlebars->11->82",
"default-mobile.handlebars->11->84",
- "default.handlebars->31->1107",
- "default.handlebars->31->1109",
+ "default.handlebars->31->1108",
+ "default.handlebars->31->1110",
"default.handlebars->31->136",
"default.handlebars->31->141"
]
@@ -6014,7 +6017,7 @@
"zh-chs": "自动删除",
"zh-cht": "自動刪除",
"xloc": [
- "default.handlebars->31->1403"
+ "default.handlebars->31->1404"
]
},
{
@@ -6058,7 +6061,7 @@
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
"xloc": [
- "default.handlebars->31->1763"
+ "default.handlebars->31->1764"
]
},
{
@@ -6098,7 +6101,7 @@
"zh-chs": "可用內存",
"zh-cht": "可用內存",
"xloc": [
- "default.handlebars->31->2199"
+ "default.handlebars->31->2200"
]
},
{
@@ -6118,7 +6121,7 @@
"zh-chs": "阿塞拜疆文",
"zh-cht": "阿塞拜疆文",
"xloc": [
- "default.handlebars->31->1144"
+ "default.handlebars->31->1145"
]
},
{
@@ -6263,8 +6266,8 @@
"zh-chs": "背景与互动",
"zh-cht": "背景與互動",
"xloc": [
- "default.handlebars->31->1586",
- "default.handlebars->31->1593",
+ "default.handlebars->31->1587",
+ "default.handlebars->31->1594",
"default.handlebars->31->353",
"default.handlebars->31->367"
]
@@ -6286,8 +6289,8 @@
"zh-chs": "仅背景",
"zh-cht": "僅背景",
"xloc": [
- "default.handlebars->31->1587",
- "default.handlebars->31->1594",
+ "default.handlebars->31->1588",
+ "default.handlebars->31->1595",
"default.handlebars->31->354",
"default.handlebars->31->368",
"default.handlebars->31->383"
@@ -6331,7 +6334,7 @@
"zh-chs": "备用码",
"zh-cht": "備用碼",
"xloc": [
- "default.handlebars->31->2023"
+ "default.handlebars->31->2024"
]
},
{
@@ -6351,7 +6354,7 @@
"zh-chs": "错误的签名",
"zh-cht": "錯誤的簽名",
"xloc": [
- "default.handlebars->31->2181"
+ "default.handlebars->31->2182"
]
},
{
@@ -6371,7 +6374,7 @@
"zh-chs": "错误的网络证书",
"zh-cht": "錯誤的網絡憑證",
"xloc": [
- "default.handlebars->31->2180"
+ "default.handlebars->31->2181"
]
},
{
@@ -6391,7 +6394,7 @@
"zh-chs": "巴斯克",
"zh-cht": "巴斯克",
"xloc": [
- "default.handlebars->31->1145"
+ "default.handlebars->31->1146"
]
},
{
@@ -6451,7 +6454,7 @@
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
"xloc": [
- "default.handlebars->31->1762"
+ "default.handlebars->31->1763"
]
},
{
@@ -6471,7 +6474,7 @@
"zh-chs": "白俄罗斯文",
"zh-cht": "白俄羅斯文",
"xloc": [
- "default.handlebars->31->1147"
+ "default.handlebars->31->1148"
]
},
{
@@ -6491,7 +6494,7 @@
"zh-chs": "孟加拉",
"zh-cht": "孟加拉",
"xloc": [
- "default.handlebars->31->1148"
+ "default.handlebars->31->1149"
]
},
{
@@ -6542,7 +6545,7 @@
"zh-chs": "波斯尼亚文",
"zh-cht": "波斯尼亞文",
"xloc": [
- "default.handlebars->31->1149"
+ "default.handlebars->31->1150"
]
},
{
@@ -6562,7 +6565,7 @@
"zh-chs": "布列塔尼",
"zh-cht": "布列塔尼",
"xloc": [
- "default.handlebars->31->1150"
+ "default.handlebars->31->1151"
]
},
{
@@ -6582,7 +6585,7 @@
"zh-chs": "广播",
"zh-cht": "廣播",
"xloc": [
- "default.handlebars->31->1937",
+ "default.handlebars->31->1938",
"default.handlebars->container->column_l->p4->3->1->0->3->1"
]
},
@@ -6603,7 +6606,7 @@
"zh-chs": "广播消息",
"zh-cht": "廣播消息",
"xloc": [
- "default.handlebars->31->1858"
+ "default.handlebars->31->1859"
]
},
{
@@ -6623,7 +6626,7 @@
"zh-chs": "向所有连接的用户广播消息。",
"zh-cht": "向所有連接的用戶廣播消息。",
"xloc": [
- "default.handlebars->31->1853"
+ "default.handlebars->31->1854"
]
},
{
@@ -6643,7 +6646,7 @@
"zh-chs": "保加利亚文",
"zh-cht": "保加利亞文",
"xloc": [
- "default.handlebars->31->1146"
+ "default.handlebars->31->1147"
]
},
{
@@ -6663,7 +6666,7 @@
"zh-chs": "缅甸文",
"zh-cht": "緬甸文",
"xloc": [
- "default.handlebars->31->1151"
+ "default.handlebars->31->1152"
]
},
{
@@ -6704,7 +6707,7 @@
"zh-chs": "CCM模式",
"zh-cht": "CCM模式",
"xloc": [
- "default.handlebars->31->1463"
+ "default.handlebars->31->1464"
]
},
{
@@ -6746,7 +6749,7 @@
"zh-chs": "CIRA服务器",
"zh-cht": "CIRA伺服器",
"xloc": [
- "default.handlebars->31->2238"
+ "default.handlebars->31->2239"
]
},
{
@@ -6766,7 +6769,7 @@
"zh-chs": "CIRA服务器命令",
"zh-cht": "CIRA伺服器指令",
"xloc": [
- "default.handlebars->31->2239"
+ "default.handlebars->31->2240"
]
},
{
@@ -6786,7 +6789,7 @@
"zh-chs": "CIRA设置",
"zh-cht": "CIRA設置",
"xloc": [
- "default.handlebars->31->1471"
+ "default.handlebars->31->1472"
]
},
{
@@ -6827,7 +6830,7 @@
"zh-chs": "CPU负载",
"zh-cht": "CPU負載",
"xloc": [
- "default.handlebars->31->2195"
+ "default.handlebars->31->2196"
]
},
{
@@ -6847,7 +6850,7 @@
"zh-chs": "最近15分钟的CPU负载",
"zh-cht": "最近15分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2198"
+ "default.handlebars->31->2199"
]
},
{
@@ -6867,7 +6870,7 @@
"zh-chs": "最近5分钟的CPU负载",
"zh-cht": "最近5分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2197"
+ "default.handlebars->31->2198"
]
},
{
@@ -6887,7 +6890,7 @@
"zh-chs": "最近一分钟的CPU负载",
"zh-cht": "最近一分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2196"
+ "default.handlebars->31->2197"
]
},
{
@@ -6932,7 +6935,7 @@
"zh-chs": "CSV",
"zh-cht": "CSV",
"xloc": [
- "default.handlebars->31->1776"
+ "default.handlebars->31->1777"
]
},
{
@@ -6952,8 +6955,8 @@
"zh-chs": "CSV格式",
"zh-cht": "CSV格式",
"xloc": [
- "default.handlebars->31->1780",
- "default.handlebars->31->1845",
+ "default.handlebars->31->1781",
+ "default.handlebars->31->1846",
"default.handlebars->31->502"
]
},
@@ -6991,7 +6994,7 @@
"zh-chs": "呼叫错误",
"zh-cht": "呼叫錯誤",
"xloc": [
- "default.handlebars->31->2253"
+ "default.handlebars->31->2254"
]
},
{
@@ -7014,7 +7017,7 @@
"agent-translations.json",
"default-mobile.handlebars->11->93",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->31->1381",
+ "default.handlebars->31->1382",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7088,7 +7091,7 @@
"zh-chs": "加泰罗尼亚文",
"zh-cht": "加泰羅尼亞文",
"xloc": [
- "default.handlebars->31->1152"
+ "default.handlebars->31->1153"
]
},
{
@@ -7128,7 +7131,7 @@
"zh-chs": "查莫罗",
"zh-cht": "查莫羅",
"xloc": [
- "default.handlebars->31->1153"
+ "default.handlebars->31->1154"
]
},
{
@@ -7170,7 +7173,7 @@
"zh-chs": "更改{0}的电邮",
"zh-cht": "更改{0}的電郵",
"xloc": [
- "default.handlebars->31->2053"
+ "default.handlebars->31->2054"
]
},
{
@@ -7213,8 +7216,8 @@
"zh-cht": "更改密碼",
"xloc": [
"default-mobile.handlebars->11->101",
- "default.handlebars->31->1348",
- "default.handlebars->31->2040"
+ "default.handlebars->31->1349",
+ "default.handlebars->31->2041"
]
},
{
@@ -7234,7 +7237,7 @@
"zh-chs": "更改{0}的密码",
"zh-cht": "更改{0}的密碼",
"xloc": [
- "default.handlebars->31->2060"
+ "default.handlebars->31->2061"
]
},
{
@@ -7254,7 +7257,7 @@
"zh-chs": "更改{0}的真实名称",
"zh-cht": "更改{0}的真實名稱",
"xloc": [
- "default.handlebars->31->2048"
+ "default.handlebars->31->2049"
]
},
{
@@ -7336,7 +7339,7 @@
"zh-chs": "更改该用户的密码",
"zh-cht": "更改該用戶的密碼",
"xloc": [
- "default.handlebars->31->2039"
+ "default.handlebars->31->2040"
]
},
{
@@ -7376,7 +7379,7 @@
"zh-chs": "在此处更改您的帐户电邮地址。",
"zh-cht": "在此處更改你的帳戶電郵地址。",
"xloc": [
- "default.handlebars->31->1335"
+ "default.handlebars->31->1336"
]
},
{
@@ -7396,7 +7399,7 @@
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
"xloc": [
- "default.handlebars->31->1341"
+ "default.handlebars->31->1342"
]
},
{
@@ -7416,7 +7419,7 @@
"zh-chs": "更改帐户凭据",
"zh-cht": "帳戶憑證已更改",
"xloc": [
- "default.handlebars->31->1734"
+ "default.handlebars->31->1735"
]
},
{
@@ -7436,7 +7439,7 @@
"zh-chs": "{1}组中的设备{0}已更改:{2}",
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"xloc": [
- "default.handlebars->31->1718"
+ "default.handlebars->31->1719"
]
},
{
@@ -7456,7 +7459,7 @@
"zh-chs": "语言从{1}更改为{2}",
"zh-cht": "語言從{1}更改為{2}",
"xloc": [
- "default.handlebars->31->1662"
+ "default.handlebars->31->1663"
]
},
{
@@ -7476,8 +7479,8 @@
"zh-chs": "已更改{0}的用户设备权限",
"zh-cht": "已更改{0}的用戶設備權限",
"xloc": [
- "default.handlebars->31->1720",
- "default.handlebars->31->1741"
+ "default.handlebars->31->1721",
+ "default.handlebars->31->1742"
]
},
{
@@ -7497,7 +7500,7 @@
"zh-chs": "更改语言将需要刷新页面。",
"zh-cht": "更改語言將需要刷新頁面。",
"xloc": [
- "default.handlebars->31->1320"
+ "default.handlebars->31->1321"
]
},
{
@@ -7517,9 +7520,9 @@
"zh-chs": "聊天",
"zh-cht": "聊天",
"xloc": [
- "default.handlebars->31->1797",
- "default.handlebars->31->2035",
+ "default.handlebars->31->1798",
"default.handlebars->31->2036",
+ "default.handlebars->31->2037",
"default.handlebars->31->713",
"default.handlebars->31->734"
]
@@ -7543,8 +7546,8 @@
"xloc": [
"default-mobile.handlebars->11->487",
"default-mobile.handlebars->11->507",
- "default.handlebars->31->1532",
- "default.handlebars->31->1568"
+ "default.handlebars->31->1533",
+ "default.handlebars->31->1569"
]
},
{
@@ -7553,7 +7556,7 @@
"fr": "Demande de chat, cliquez ici pour accepter.",
"xloc": [
"default-mobile.handlebars->11->539",
- "default.handlebars->31->2150"
+ "default.handlebars->31->2151"
]
},
{
@@ -7593,7 +7596,7 @@
"zh-chs": "车臣",
"zh-cht": "車臣",
"xloc": [
- "default.handlebars->31->1154"
+ "default.handlebars->31->1155"
]
},
{
@@ -7693,8 +7696,8 @@
"zh-chs": "检查...",
"zh-cht": "檢查...",
"xloc": [
- "default.handlebars->31->1120",
- "default.handlebars->31->2247"
+ "default.handlebars->31->1121",
+ "default.handlebars->31->2248"
]
},
{
@@ -7714,7 +7717,7 @@
"zh-chs": "中文",
"zh-cht": "中文",
"xloc": [
- "default.handlebars->31->1155"
+ "default.handlebars->31->1156"
]
},
{
@@ -7734,7 +7737,7 @@
"zh-chs": "中文(香港)",
"zh-cht": "中文(香港)",
"xloc": [
- "default.handlebars->31->1156"
+ "default.handlebars->31->1157"
]
},
{
@@ -7754,7 +7757,7 @@
"zh-chs": "中文(中国)",
"zh-cht": "中文(中國)",
"xloc": [
- "default.handlebars->31->1157"
+ "default.handlebars->31->1158"
]
},
{
@@ -7774,7 +7777,7 @@
"zh-chs": "简体中文",
"zh-cht": "簡體中文",
"xloc": [
- "default.handlebars->31->1317"
+ "default.handlebars->31->1318"
]
},
{
@@ -7794,7 +7797,7 @@
"zh-chs": "中文(新加坡)",
"zh-cht": "中文(新加坡)",
"xloc": [
- "default.handlebars->31->1158"
+ "default.handlebars->31->1159"
]
},
{
@@ -7814,7 +7817,7 @@
"zh-chs": "中文(台湾)",
"zh-cht": "中文(台灣)",
"xloc": [
- "default.handlebars->31->1159"
+ "default.handlebars->31->1160"
]
},
{
@@ -7834,7 +7837,7 @@
"zh-chs": "繁体中文",
"zh-cht": "繁體中文",
"xloc": [
- "default.handlebars->31->1318"
+ "default.handlebars->31->1319"
]
},
{
@@ -7875,7 +7878,7 @@
"zh-chs": "楚瓦什",
"zh-cht": "楚瓦什",
"xloc": [
- "default.handlebars->31->1160"
+ "default.handlebars->31->1161"
]
},
{
@@ -7918,7 +7921,7 @@
"default-mobile.handlebars->11->372",
"default-mobile.handlebars->11->374",
"default-mobile.handlebars->11->70",
- "default.handlebars->31->1656",
+ "default.handlebars->31->1657",
"default.handlebars->31->979",
"default.handlebars->31->981",
"default.handlebars->31->983",
@@ -7966,7 +7969,7 @@
"zh-cht": "全部清除",
"xloc": [
"default-mobile.handlebars->11->522",
- "default.handlebars->31->2133"
+ "default.handlebars->31->2134"
]
},
{
@@ -8048,7 +8051,7 @@
"zh-cht": "清除此通知",
"xloc": [
"default-mobile.handlebars->11->521",
- "default.handlebars->31->2132"
+ "default.handlebars->31->2133"
]
},
{
@@ -8108,8 +8111,8 @@
"zh-chs": "单击此处编辑设备组名称",
"zh-cht": "單擊此處編輯裝置群名稱",
"xloc": [
- "default.handlebars->31->1392",
- "default.handlebars->31->1607"
+ "default.handlebars->31->1393",
+ "default.handlebars->31->1608"
]
},
{
@@ -8149,7 +8152,7 @@
"zh-chs": "单击此处编辑用户组名称",
"zh-cht": "單擊此處編輯用戶群名稱",
"xloc": [
- "default.handlebars->31->1914"
+ "default.handlebars->31->1915"
]
},
{
@@ -8220,7 +8223,7 @@
"zh-cht": "單擊確定將驗證電郵發送到:",
"xloc": [
"default-mobile.handlebars->11->86",
- "default.handlebars->31->1332"
+ "default.handlebars->31->1333"
]
},
{
@@ -8302,7 +8305,7 @@
"zh-chs": "客户编号",
"zh-cht": "客戶編號",
"xloc": [
- "default.handlebars->31->1374"
+ "default.handlebars->31->1375"
]
},
{
@@ -8322,7 +8325,7 @@
"zh-chs": "客户端启动的远程访问",
"zh-cht": "客戶端啟動的遠程訪問",
"xloc": [
- "default.handlebars->31->1470"
+ "default.handlebars->31->1471"
]
},
{
@@ -8342,7 +8345,7 @@
"zh-chs": "客户机密",
"zh-cht": "客戶機密",
"xloc": [
- "default.handlebars->31->1375"
+ "default.handlebars->31->1376"
]
},
{
@@ -8407,7 +8410,7 @@
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"xloc": [
- "default.handlebars->31->1667"
+ "default.handlebars->31->1668"
]
},
{
@@ -8530,7 +8533,7 @@
"zh-cht": "指令",
"xloc": [
"default-mobile.handlebars->11->509",
- "default.handlebars->31->1570",
+ "default.handlebars->31->1571",
"default.handlebars->31->715",
"default.handlebars->31->736"
]
@@ -8552,8 +8555,8 @@
"zh-chs": "通用设备组",
"zh-cht": "通用裝置群",
"xloc": [
- "default.handlebars->31->1945",
- "default.handlebars->31->2065"
+ "default.handlebars->31->1946",
+ "default.handlebars->31->2066"
]
},
{
@@ -8573,8 +8576,8 @@
"zh-chs": "通用设备",
"zh-cht": "通用裝置",
"xloc": [
- "default.handlebars->31->1951",
- "default.handlebars->31->2077"
+ "default.handlebars->31->1952",
+ "default.handlebars->31->2078"
]
},
{
@@ -8616,11 +8619,11 @@
"xloc": [
"default-mobile.handlebars->11->301",
"default-mobile.handlebars->11->467",
- "default.handlebars->31->1481",
- "default.handlebars->31->1825",
- "default.handlebars->31->1904",
- "default.handlebars->31->1965",
- "default.handlebars->31->2063",
+ "default.handlebars->31->1482",
+ "default.handlebars->31->1826",
+ "default.handlebars->31->1905",
+ "default.handlebars->31->1966",
+ "default.handlebars->31->2064",
"default.handlebars->31->472",
"default.handlebars->31->812",
"default.handlebars->31->821"
@@ -8704,7 +8707,7 @@
"zh-chs": "确认删除选定的帐户?",
"zh-cht": "確認刪除所選帳戶?",
"xloc": [
- "default.handlebars->31->1824"
+ "default.handlebars->31->1825"
]
},
{
@@ -8744,7 +8747,7 @@
"zh-chs": "确认删除选定的用户组?",
"zh-cht": "確認刪除所選用戶群?",
"xloc": [
- "default.handlebars->31->1903"
+ "default.handlebars->31->1904"
]
},
{
@@ -8764,7 +8767,7 @@
"zh-chs": "确认删除用户{0}?",
"zh-cht": "確認刪除用戶{0}?",
"xloc": [
- "default.handlebars->31->2062"
+ "default.handlebars->31->2063"
]
},
{
@@ -8784,7 +8787,7 @@
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->31->1968"
+ "default.handlebars->31->1969"
]
},
{
@@ -8804,7 +8807,7 @@
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->31->2094"
+ "default.handlebars->31->2095"
]
},
{
@@ -8885,7 +8888,7 @@
"zh-chs": "确认覆盖?",
"zh-cht": "確認覆蓋?",
"xloc": [
- "default.handlebars->31->1650"
+ "default.handlebars->31->1651"
]
},
{
@@ -8905,8 +8908,8 @@
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->1958",
- "default.handlebars->31->2085"
+ "default.handlebars->31->1959",
+ "default.handlebars->31->2086"
]
},
{
@@ -8926,8 +8929,8 @@
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->1960",
- "default.handlebars->31->2098"
+ "default.handlebars->31->1961",
+ "default.handlebars->31->2099"
]
},
{
@@ -8947,7 +8950,7 @@
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->2087"
+ "default.handlebars->31->2088"
]
},
{
@@ -8967,7 +8970,7 @@
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->2090"
+ "default.handlebars->31->2091"
]
},
{
@@ -8987,8 +8990,8 @@
"zh-chs": "确认删除访问权限?",
"zh-cht": "確認刪除訪問權限?",
"xloc": [
- "default.handlebars->31->2088",
- "default.handlebars->31->2091"
+ "default.handlebars->31->2089",
+ "default.handlebars->31->2092"
]
},
{
@@ -9009,7 +9012,7 @@
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
"xloc": [
"default-mobile.handlebars->11->85",
- "default.handlebars->31->1110"
+ "default.handlebars->31->1111"
]
},
{
@@ -9046,7 +9049,7 @@
"zh-chs": "确认删除设备共享“{0}”?",
"zh-cht": "確認刪除設備共享“{0}”?",
"xloc": [
- "default.handlebars->31->2083"
+ "default.handlebars->31->2084"
]
},
{
@@ -9100,7 +9103,7 @@
"zh-chs": "确认删除用户“ {0} ”的权限?",
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"xloc": [
- "default.handlebars->31->1579"
+ "default.handlebars->31->1580"
]
},
{
@@ -9120,7 +9123,7 @@
"zh-chs": "确认删除用户组“ {0} ”的权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"xloc": [
- "default.handlebars->31->1581"
+ "default.handlebars->31->1582"
]
},
{
@@ -9178,7 +9181,7 @@
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
"xloc": [
"default-mobile.handlebars->11->138",
- "default.handlebars->31->1651"
+ "default.handlebars->31->1652"
]
},
{
@@ -9202,7 +9205,7 @@
"default-mobile.handlebars->11->345",
"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->31->1420",
+ "default.handlebars->31->1421",
"default.handlebars->31->946",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -9251,7 +9254,7 @@
"zh-chs": "连接到服务器",
"zh-cht": "連接到伺服器",
"xloc": [
- "default.handlebars->31->1474"
+ "default.handlebars->31->1475"
]
},
{
@@ -9373,7 +9376,7 @@
"zh-chs": "已连接的英特尔®AMT",
"zh-cht": "已連接的Intel® AMT",
"xloc": [
- "default.handlebars->31->2186"
+ "default.handlebars->31->2187"
]
},
{
@@ -9393,7 +9396,7 @@
"zh-chs": "已连接的用户",
"zh-cht": "已连接的用户",
"xloc": [
- "default.handlebars->31->2191"
+ "default.handlebars->31->2192"
]
},
{
@@ -9484,7 +9487,7 @@
"zh-chs": "连接数量",
"zh-cht": "連接數量",
"xloc": [
- "default.handlebars->31->2205"
+ "default.handlebars->31->2206"
]
},
{
@@ -9504,7 +9507,7 @@
"zh-chs": "连接转发器",
"zh-cht": "連接轉發器",
"xloc": [
- "default.handlebars->31->2237"
+ "default.handlebars->31->2238"
]
},
{
@@ -9565,7 +9568,7 @@
"zh-cht": "連接性",
"xloc": [
"default-mobile.handlebars->11->266",
- "default.handlebars->31->1614",
+ "default.handlebars->31->1615",
"default.handlebars->31->235",
"default.handlebars->31->633",
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -9654,7 +9657,7 @@
"zh-chs": "Cookie编码器",
"zh-cht": "Cookie編碼器",
"xloc": [
- "default.handlebars->31->2221"
+ "default.handlebars->31->2222"
]
},
{
@@ -9811,8 +9814,8 @@
"zh-chs": "复制连结到剪贴板",
"zh-cht": "複製連結到剪貼板",
"xloc": [
- "default.handlebars->31->1619",
- "default.handlebars->31->1638",
+ "default.handlebars->31->1620",
+ "default.handlebars->31->1639",
"default.handlebars->31->211",
"default.handlebars->31->370"
]
@@ -9915,7 +9918,7 @@
"zh-chs": "复制:“{0}”到“{1}”",
"zh-cht": "複製:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->31->1710"
+ "default.handlebars->31->1711"
]
},
{
@@ -10061,7 +10064,7 @@
"zh-chs": "核心服务器",
"zh-cht": "核心伺服器",
"xloc": [
- "default.handlebars->31->2220"
+ "default.handlebars->31->2221"
]
},
{
@@ -10081,7 +10084,7 @@
"zh-chs": "科西嘉文",
"zh-cht": "科西嘉文",
"xloc": [
- "default.handlebars->31->1161"
+ "default.handlebars->31->1162"
]
},
{
@@ -10101,7 +10104,7 @@
"zh-chs": "创建帐号",
"zh-cht": "創建帳號",
"xloc": [
- "default.handlebars->31->1872",
+ "default.handlebars->31->1873",
"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"
@@ -10144,7 +10147,7 @@
"zh-chs": "创建用户组",
"zh-cht": "創建用戶群",
"xloc": [
- "default.handlebars->31->1911"
+ "default.handlebars->31->1912"
]
},
{
@@ -10184,7 +10187,7 @@
"zh-chs": "使用以下选项创建一个新的设备组。",
"zh-cht": "使用以下選項創建一個新的裝置群。",
"xloc": [
- "default.handlebars->31->1355"
+ "default.handlebars->31->1356"
]
},
{
@@ -10244,7 +10247,7 @@
"zh-chs": "创建文件夹:“{0}”",
"zh-cht": "創建文件夾:“{0}”",
"xloc": [
- "default.handlebars->31->1703"
+ "default.handlebars->31->1704"
]
},
{
@@ -10264,7 +10267,7 @@
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
"xloc": [
- "default.handlebars->31->1836"
+ "default.handlebars->31->1837"
]
},
{
@@ -10306,7 +10309,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "創建的設備組:{0}",
"xloc": [
- "default.handlebars->31->1714"
+ "default.handlebars->31->1715"
]
},
{
@@ -10380,7 +10383,7 @@
"zh-chs": "创建",
"zh-cht": "創建",
"xloc": [
- "default.handlebars->31->1997"
+ "default.handlebars->31->1998"
]
},
{
@@ -10400,7 +10403,7 @@
"zh-chs": "创建时间",
"zh-cht": "創作時間",
"xloc": [
- "default.handlebars->31->1402"
+ "default.handlebars->31->1403"
]
},
{
@@ -10442,8 +10445,8 @@
"zh-chs": "创建者",
"zh-cht": "創作者",
"xloc": [
- "default.handlebars->31->1400",
- "default.handlebars->31->1401"
+ "default.handlebars->31->1401",
+ "default.handlebars->31->1402"
]
},
{
@@ -10463,7 +10466,7 @@
"zh-chs": "证书",
"zh-cht": "證書",
"xloc": [
- "default.handlebars->31->1372"
+ "default.handlebars->31->1373"
]
},
{
@@ -10483,7 +10486,7 @@
"zh-chs": "克里语",
"zh-cht": "克里語",
"xloc": [
- "default.handlebars->31->1162"
+ "default.handlebars->31->1163"
]
},
{
@@ -10503,7 +10506,7 @@
"zh-chs": "克罗地亚文",
"zh-cht": "克羅地亞文",
"xloc": [
- "default.handlebars->31->1163"
+ "default.handlebars->31->1164"
]
},
{
@@ -10678,7 +10681,7 @@
"fr": "Le mot de passe actuel n'est pas correct.",
"xloc": [
"default-mobile.handlebars->11->549",
- "default.handlebars->31->2160"
+ "default.handlebars->31->2161"
]
},
{
@@ -10736,7 +10739,7 @@
"zh-chs": "捷克文",
"zh-cht": "捷克文",
"xloc": [
- "default.handlebars->31->1164"
+ "default.handlebars->31->1165"
]
},
{
@@ -10776,7 +10779,7 @@
"zh-chs": "丹麦文",
"zh-cht": "丹麥文",
"xloc": [
- "default.handlebars->31->1165"
+ "default.handlebars->31->1166"
]
},
{
@@ -10817,7 +10820,7 @@
"zh-chs": "日期和时间",
"zh-cht": "日期和時間",
"xloc": [
- "default.handlebars->31->1323"
+ "default.handlebars->31->1324"
]
},
{
@@ -10858,7 +10861,7 @@
"zh-chs": "停用",
"zh-cht": "停用",
"xloc": [
- "default.handlebars->31->1453"
+ "default.handlebars->31->1454"
]
},
{
@@ -10878,7 +10881,7 @@
"zh-chs": "如果设置停用CCM",
"zh-cht": "如果設置停用CCM",
"xloc": [
- "default.handlebars->31->1465"
+ "default.handlebars->31->1466"
]
},
{
@@ -10936,10 +10939,10 @@
"zh-chs": "默认",
"zh-cht": "默認",
"xloc": [
- "default.handlebars->31->1859",
- "default.handlebars->31->1907",
- "default.handlebars->31->1918",
- "default.handlebars->31->1986"
+ "default.handlebars->31->1860",
+ "default.handlebars->31->1908",
+ "default.handlebars->31->1919",
+ "default.handlebars->31->1987"
]
},
{
@@ -10972,7 +10975,7 @@
"default-mobile.handlebars->11->355",
"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->31->1645",
+ "default.handlebars->31->1646",
"default.handlebars->31->535",
"default.handlebars->31->965",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -11003,7 +11006,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->11->95",
- "default.handlebars->31->1340"
+ "default.handlebars->31->1341"
]
},
{
@@ -11023,7 +11026,7 @@
"zh-chs": "删除帐户",
"zh-cht": "刪除帳戶",
"xloc": [
- "default.handlebars->31->1826"
+ "default.handlebars->31->1827"
]
},
{
@@ -11066,8 +11069,8 @@
"xloc": [
"default-mobile.handlebars->11->465",
"default-mobile.handlebars->11->468",
- "default.handlebars->31->1449",
- "default.handlebars->31->1482"
+ "default.handlebars->31->1450",
+ "default.handlebars->31->1483"
]
},
{
@@ -11128,7 +11131,7 @@
"zh-chs": "删除用户",
"zh-cht": "刪除用戶",
"xloc": [
- "default.handlebars->31->2038"
+ "default.handlebars->31->2039"
]
},
{
@@ -11148,8 +11151,8 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->31->1956",
- "default.handlebars->31->1966"
+ "default.handlebars->31->1957",
+ "default.handlebars->31->1967"
]
},
{
@@ -11169,7 +11172,7 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->31->1905"
+ "default.handlebars->31->1906"
]
},
{
@@ -11189,7 +11192,7 @@
"zh-chs": "删除用户{0}",
"zh-cht": "刪除用戶{0}",
"xloc": [
- "default.handlebars->31->2061"
+ "default.handlebars->31->2062"
]
},
{
@@ -11210,7 +11213,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
- "default.handlebars->31->1822",
+ "default.handlebars->31->1823",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -11251,7 +11254,7 @@
"zh-chs": "删除群组",
"zh-cht": "刪除群組",
"xloc": [
- "default.handlebars->31->1901"
+ "default.handlebars->31->1902"
]
},
{
@@ -11291,7 +11294,7 @@
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"xloc": [
- "default.handlebars->31->1705"
+ "default.handlebars->31->1706"
]
},
{
@@ -11313,7 +11316,7 @@
"xloc": [
"default-mobile.handlebars->11->135",
"default-mobile.handlebars->11->357",
- "default.handlebars->31->1647",
+ "default.handlebars->31->1648",
"default.handlebars->31->967"
]
},
@@ -11334,7 +11337,7 @@
"zh-chs": "删除用户群组{0}?",
"zh-cht": "刪除用戶群組{0}?",
"xloc": [
- "default.handlebars->31->1964"
+ "default.handlebars->31->1965"
]
},
{
@@ -11356,7 +11359,7 @@
"xloc": [
"default-mobile.handlebars->11->134",
"default-mobile.handlebars->11->356",
- "default.handlebars->31->1646",
+ "default.handlebars->31->1647",
"default.handlebars->31->966"
]
},
@@ -11397,7 +11400,7 @@
"zh-chs": "删除:“{0}”",
"zh-cht": "刪除:“{0}”",
"xloc": [
- "default.handlebars->31->1704"
+ "default.handlebars->31->1705"
]
},
{
@@ -11417,7 +11420,7 @@
"zh-chs": "删除:“{0}”,{1}个元素已删除",
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"xloc": [
- "default.handlebars->31->1706"
+ "default.handlebars->31->1707"
]
},
{
@@ -11538,13 +11541,13 @@
"default-mobile.handlebars->11->470",
"default.handlebars->31->1018",
"default.handlebars->31->1028",
- "default.handlebars->31->1360",
- "default.handlebars->31->1397",
- "default.handlebars->31->1484",
- "default.handlebars->31->1910",
- "default.handlebars->31->1920",
+ "default.handlebars->31->1361",
+ "default.handlebars->31->1398",
+ "default.handlebars->31->1485",
+ "default.handlebars->31->1911",
"default.handlebars->31->1921",
- "default.handlebars->31->1962",
+ "default.handlebars->31->1922",
+ "default.handlebars->31->1963",
"default.handlebars->31->576",
"default.handlebars->31->577",
"default.handlebars->31->860",
@@ -11587,8 +11590,8 @@
"zh-cht": "桌面",
"xloc": [
"default-mobile.handlebars->11->278",
- "default.handlebars->31->1490",
- "default.handlebars->31->2110",
+ "default.handlebars->31->1491",
+ "default.handlebars->31->2111",
"default.handlebars->31->541",
"default.handlebars->31->695",
"default.handlebars->31->750",
@@ -11635,9 +11638,9 @@
"zh-chs": "桌面通知",
"zh-cht": "桌面通知",
"xloc": [
- "default.handlebars->31->1411",
- "default.handlebars->31->1925",
- "default.handlebars->31->2012",
+ "default.handlebars->31->1412",
+ "default.handlebars->31->1926",
+ "default.handlebars->31->2013",
"default.handlebars->31->614"
]
},
@@ -11658,9 +11661,9 @@
"zh-chs": "桌面提示",
"zh-cht": "桌面提示",
"xloc": [
- "default.handlebars->31->1410",
- "default.handlebars->31->1924",
- "default.handlebars->31->2011",
+ "default.handlebars->31->1411",
+ "default.handlebars->31->1925",
+ "default.handlebars->31->2012",
"default.handlebars->31->613"
]
},
@@ -11681,9 +11684,9 @@
"zh-chs": "桌面提示+工具栏",
"zh-cht": "桌面提示+工具欄",
"xloc": [
- "default.handlebars->31->1408",
- "default.handlebars->31->1922",
- "default.handlebars->31->2009",
+ "default.handlebars->31->1409",
+ "default.handlebars->31->1923",
+ "default.handlebars->31->2010",
"default.handlebars->31->611"
]
},
@@ -11746,9 +11749,9 @@
"zh-chs": "桌面工具栏",
"zh-cht": "桌面工具欄",
"xloc": [
- "default.handlebars->31->1409",
- "default.handlebars->31->1923",
- "default.handlebars->31->2010",
+ "default.handlebars->31->1410",
+ "default.handlebars->31->1924",
+ "default.handlebars->31->2011",
"default.handlebars->31->612"
]
},
@@ -11861,9 +11864,9 @@
"xloc": [
"default-mobile.handlebars->11->395",
"default.handlebars->31->1013",
- "default.handlebars->31->1513",
+ "default.handlebars->31->1514",
"default.handlebars->31->197",
- "default.handlebars->31->2080",
+ "default.handlebars->31->2081",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
]
},
@@ -11928,15 +11931,15 @@
"xloc": [
"agent-translations.json",
"default-mobile.handlebars->11->527",
- "default.handlebars->31->1508",
- "default.handlebars->31->1511",
+ "default.handlebars->31->1509",
"default.handlebars->31->1512",
- "default.handlebars->31->1773",
- "default.handlebars->31->1948",
- "default.handlebars->31->1954",
- "default.handlebars->31->2068",
- "default.handlebars->31->2119",
- "default.handlebars->31->2138"
+ "default.handlebars->31->1513",
+ "default.handlebars->31->1774",
+ "default.handlebars->31->1949",
+ "default.handlebars->31->1955",
+ "default.handlebars->31->2069",
+ "default.handlebars->31->2120",
+ "default.handlebars->31->2139"
]
},
{
@@ -11957,7 +11960,7 @@
"zh-cht": "裝置群用戶",
"xloc": [
"default-mobile.handlebars->11->516",
- "default.handlebars->31->1577"
+ "default.handlebars->31->1578"
]
},
{
@@ -11978,11 +11981,11 @@
"zh-cht": "裝置群",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
- "default.handlebars->31->1789",
- "default.handlebars->31->1895",
- "default.handlebars->31->1935",
- "default.handlebars->31->2006",
- "default.handlebars->31->2189",
+ "default.handlebars->31->1790",
+ "default.handlebars->31->1896",
+ "default.handlebars->31->1936",
+ "default.handlebars->31->2007",
+ "default.handlebars->31->2190",
"default.handlebars->container->column_l->p2->p2info->7"
]
},
@@ -12064,7 +12067,7 @@
"zh-cht": "裝置名稱",
"xloc": [
"default-mobile.handlebars->11->303",
- "default.handlebars->31->2118",
+ "default.handlebars->31->2119",
"default.handlebars->31->305",
"default.handlebars->31->858",
"player.handlebars->3->9"
@@ -12165,8 +12168,8 @@
"zh-chs": "设备连接。",
"zh-cht": "裝置連接。",
"xloc": [
- "default.handlebars->31->1328",
- "default.handlebars->31->1598"
+ "default.handlebars->31->1329",
+ "default.handlebars->31->1599"
]
},
{
@@ -12186,8 +12189,8 @@
"zh-chs": "设备断开连接。",
"zh-cht": "裝置斷開連接。",
"xloc": [
- "default.handlebars->31->1329",
- "default.handlebars->31->1599"
+ "default.handlebars->31->1330",
+ "default.handlebars->31->1600"
]
},
{
@@ -12207,7 +12210,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "設備組已創建:{0}",
"xloc": [
- "default.handlebars->31->1735"
+ "default.handlebars->31->1736"
]
},
{
@@ -12227,7 +12230,7 @@
"zh-chs": "设备组已删除:{0}",
"zh-cht": "設備組已刪除:{0}",
"xloc": [
- "default.handlebars->31->1736"
+ "default.handlebars->31->1737"
]
},
{
@@ -12247,7 +12250,7 @@
"zh-chs": "设备组成员身份已更改:{0}",
"zh-cht": "設備組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->31->1737"
+ "default.handlebars->31->1738"
]
},
{
@@ -12287,7 +12290,7 @@
"zh-chs": "设备组通知已更改",
"zh-cht": "設備組通知已更改",
"xloc": [
- "default.handlebars->31->1732"
+ "default.handlebars->31->1733"
]
},
{
@@ -12307,7 +12310,7 @@
"zh-chs": "未删除的设备组:{0}",
"zh-cht": "未刪除的設備組:{0}",
"xloc": [
- "default.handlebars->31->1715"
+ "default.handlebars->31->1716"
]
},
{
@@ -12700,7 +12703,7 @@
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"xloc": [
- "default.handlebars->31->1717"
+ "default.handlebars->31->1718"
]
},
{
@@ -12737,8 +12740,8 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->31->1896",
- "default.handlebars->31->1936"
+ "default.handlebars->31->1897",
+ "default.handlebars->31->1937"
]
},
{
@@ -12778,7 +12781,7 @@
"zh-chs": "禁用的电子邮件两因素身份验证",
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->31->1748"
+ "default.handlebars->31->1749"
]
},
{
@@ -12801,7 +12804,7 @@
"agent-translations.json",
"default-mobile.handlebars->11->346",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
- "default.handlebars->31->1421",
+ "default.handlebars->31->1422",
"default.handlebars->31->947",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -12962,7 +12965,7 @@
"zh-chs": "显示设备组名称",
"zh-cht": "顯示裝置群名稱",
"xloc": [
- "default.handlebars->31->1327"
+ "default.handlebars->31->1328"
]
},
{
@@ -13002,7 +13005,7 @@
"zh-chs": "显示公共连结",
"zh-cht": "顯示公共鏈結",
"xloc": [
- "default.handlebars->31->1618"
+ "default.handlebars->31->1619"
]
},
{
@@ -13022,7 +13025,7 @@
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->31->1677"
+ "default.handlebars->31->1678"
]
},
{
@@ -13042,7 +13045,7 @@
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->31->1685"
+ "default.handlebars->31->1686"
]
},
{
@@ -13062,8 +13065,8 @@
"zh-chs": "什么都不做",
"zh-cht": "什麼都不做",
"xloc": [
- "default.handlebars->31->1468",
- "default.handlebars->31->1472"
+ "default.handlebars->31->1469",
+ "default.handlebars->31->1473"
]
},
{
@@ -13083,10 +13086,10 @@
"zh-chs": "域",
"zh-cht": "域",
"xloc": [
- "default.handlebars->31->1860",
- "default.handlebars->31->1908",
- "default.handlebars->31->1917",
- "default.handlebars->31->1985",
+ "default.handlebars->31->1861",
+ "default.handlebars->31->1909",
+ "default.handlebars->31->1918",
+ "default.handlebars->31->1986",
"mstsc.handlebars->main->1->3->1->2->1->0",
"mstsc.handlebars->main->1->3->1->2->3"
]
@@ -13108,7 +13111,7 @@
"zh-chs": "请勿更改,如果设置请保留CCM",
"zh-cht": "請勿更改,如果設置請保留CCM",
"xloc": [
- "default.handlebars->31->1464"
+ "default.handlebars->31->1465"
]
},
{
@@ -13145,7 +13148,7 @@
"zh-chs": "不要连接到服务器",
"zh-cht": "不要連接到伺服器",
"xloc": [
- "default.handlebars->31->1473"
+ "default.handlebars->31->1474"
]
},
{
@@ -13374,7 +13377,7 @@
"zh-chs": "下载报告",
"zh-cht": "下載報告",
"xloc": [
- "default.handlebars->31->1778",
+ "default.handlebars->31->1779",
"default.handlebars->container->column_l->p3->3->1->0->3"
]
},
@@ -13575,7 +13578,7 @@
"zh-chs": "使用以下一种档案格式下载事件列表。",
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"xloc": [
- "default.handlebars->31->1779"
+ "default.handlebars->31->1780"
]
},
{
@@ -13595,7 +13598,7 @@
"zh-chs": "使用以下一种档案格式下载用户列表。",
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"xloc": [
- "default.handlebars->31->1844"
+ "default.handlebars->31->1845"
]
},
{
@@ -13676,7 +13679,7 @@
"zh-chs": "下载:“{0}”",
"zh-cht": "下載:“{0}”",
"xloc": [
- "default.handlebars->31->1708"
+ "default.handlebars->31->1709"
]
},
{
@@ -13716,7 +13719,7 @@
"zh-chs": "代理重复",
"zh-cht": "代理重複",
"xloc": [
- "default.handlebars->31->2185"
+ "default.handlebars->31->2186"
]
},
{
@@ -13756,7 +13759,7 @@
"zh-chs": "复制用户组",
"zh-cht": "複製用戶群",
"xloc": [
- "default.handlebars->31->1912"
+ "default.handlebars->31->1913"
]
},
{
@@ -13793,8 +13796,8 @@
"zh-chs": "持续时间",
"zh-cht": "持續時間",
"xloc": [
- "default.handlebars->31->2104",
- "default.handlebars->31->2124",
+ "default.handlebars->31->2105",
+ "default.handlebars->31->2125",
"player.handlebars->3->2"
]
},
@@ -13832,7 +13835,7 @@
"zh-chs": "荷兰文(比利时)",
"zh-cht": "荷蘭文(比利時)",
"xloc": [
- "default.handlebars->31->1167"
+ "default.handlebars->31->1168"
]
},
{
@@ -13852,7 +13855,7 @@
"zh-chs": "荷兰文(标准)",
"zh-cht": "荷蘭文(標準)",
"xloc": [
- "default.handlebars->31->1166"
+ "default.handlebars->31->1167"
]
},
{
@@ -14164,10 +14167,10 @@
"default-mobile.handlebars->11->471",
"default-mobile.handlebars->11->473",
"default-mobile.handlebars->11->493",
- "default.handlebars->31->1485",
- "default.handlebars->31->1517",
- "default.handlebars->31->1541",
- "default.handlebars->31->1553"
+ "default.handlebars->31->1486",
+ "default.handlebars->31->1518",
+ "default.handlebars->31->1542",
+ "default.handlebars->31->1554"
]
},
{
@@ -14187,7 +14190,7 @@
"zh-chs": "编辑设备组功能",
"zh-cht": "編輯裝置群功能",
"xloc": [
- "default.handlebars->31->1503"
+ "default.handlebars->31->1504"
]
},
{
@@ -14207,8 +14210,8 @@
"zh-chs": "编辑设备组权限",
"zh-cht": "編輯裝置群權限",
"xloc": [
- "default.handlebars->31->1538",
- "default.handlebars->31->1550"
+ "default.handlebars->31->1539",
+ "default.handlebars->31->1551"
]
},
{
@@ -14228,7 +14231,7 @@
"zh-chs": "编辑设备组用户同意",
"zh-cht": "編輯裝置群用戶同意",
"xloc": [
- "default.handlebars->31->1486"
+ "default.handlebars->31->1487"
]
},
{
@@ -14249,7 +14252,7 @@
"zh-cht": "編輯裝置筆記",
"xloc": [
"default-mobile.handlebars->11->485",
- "default.handlebars->31->1530"
+ "default.handlebars->31->1531"
]
},
{
@@ -14269,8 +14272,8 @@
"zh-chs": "编辑设备权限",
"zh-cht": "編輯裝置權限",
"xloc": [
- "default.handlebars->31->1543",
- "default.handlebars->31->1545"
+ "default.handlebars->31->1544",
+ "default.handlebars->31->1546"
]
},
{
@@ -14310,7 +14313,7 @@
"zh-chs": "编辑设备用户同意",
"zh-cht": "編輯裝置用戶同意",
"xloc": [
- "default.handlebars->31->1488"
+ "default.handlebars->31->1489"
]
},
{
@@ -14378,7 +14381,7 @@
"zh-cht": "編輯筆記",
"xloc": [
"default-mobile.handlebars->11->500",
- "default.handlebars->31->1560"
+ "default.handlebars->31->1561"
]
},
{
@@ -14398,7 +14401,7 @@
"zh-chs": "编辑用户同意",
"zh-cht": "編輯用戶同意",
"xloc": [
- "default.handlebars->31->1487"
+ "default.handlebars->31->1488"
]
},
{
@@ -14418,7 +14421,7 @@
"zh-chs": "编辑用户设备组权限",
"zh-cht": "編輯用戶裝置群權限",
"xloc": [
- "default.handlebars->31->1551"
+ "default.handlebars->31->1552"
]
},
{
@@ -14438,7 +14441,7 @@
"zh-chs": "编辑用户设备权限",
"zh-cht": "編輯用戶裝置權限",
"xloc": [
- "default.handlebars->31->1546"
+ "default.handlebars->31->1547"
]
},
{
@@ -14458,7 +14461,7 @@
"zh-chs": "编辑用户组",
"zh-cht": "編輯用戶群",
"xloc": [
- "default.handlebars->31->1963"
+ "default.handlebars->31->1964"
]
},
{
@@ -14478,7 +14481,7 @@
"zh-chs": "编辑用户组设备权限",
"zh-cht": "編輯用戶群裝置權限",
"xloc": [
- "default.handlebars->31->1548"
+ "default.handlebars->31->1549"
]
},
{
@@ -14498,7 +14501,7 @@
"zh-chs": "编辑用户组用户同意",
"zh-cht": "編輯用戶組用戶同意",
"xloc": [
- "default.handlebars->31->1489"
+ "default.handlebars->31->1490"
]
},
{
@@ -14580,11 +14583,11 @@
"zh-cht": "電郵",
"xloc": [
"default-mobile.handlebars->11->89",
- "default.handlebars->31->1862",
- "default.handlebars->31->1989",
- "default.handlebars->31->1991",
- "default.handlebars->31->2031",
- "default.handlebars->31->2049",
+ "default.handlebars->31->1863",
+ "default.handlebars->31->1990",
+ "default.handlebars->31->1992",
+ "default.handlebars->31->2032",
+ "default.handlebars->31->2050",
"default.handlebars->31->337",
"login-mobile.handlebars->5->42",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14617,7 +14620,7 @@
"zh-cht": "電郵地址變更",
"xloc": [
"default-mobile.handlebars->11->90",
- "default.handlebars->31->1336"
+ "default.handlebars->31->1337"
]
},
{
@@ -14638,7 +14641,7 @@
"zh-cht": "電郵認證",
"xloc": [
"default-mobile.handlebars->11->79",
- "default.handlebars->31->1104"
+ "default.handlebars->31->1105"
]
},
{
@@ -14698,7 +14701,7 @@
"zh-cht": "電郵驗證",
"xloc": [
"default-mobile.handlebars->11->88",
- "default.handlebars->31->1334"
+ "default.handlebars->31->1335"
]
},
{
@@ -14738,7 +14741,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->31->1808"
+ "default.handlebars->31->1809"
]
},
{
@@ -14758,8 +14761,8 @@
"zh-chs": "电子邮件已验证",
"zh-cht": "電子郵件已驗證",
"xloc": [
- "default.handlebars->31->1809",
- "default.handlebars->31->1983"
+ "default.handlebars->31->1810",
+ "default.handlebars->31->1984"
]
},
{
@@ -14779,7 +14782,7 @@
"zh-chs": "电邮已验证。",
"zh-cht": "電郵已驗證。",
"xloc": [
- "default.handlebars->31->1868"
+ "default.handlebars->31->1869"
]
},
{
@@ -14799,7 +14802,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->31->1984"
+ "default.handlebars->31->1985"
]
},
{
@@ -14820,7 +14823,7 @@
"zh-cht": "電郵已發送。",
"xloc": [
"default-mobile.handlebars->11->542",
- "default.handlebars->31->2153",
+ "default.handlebars->31->2154",
"login-mobile.handlebars->5->2",
"login.handlebars->5->2",
"login2.handlebars->7->3"
@@ -14865,7 +14868,7 @@
"zh-chs": "已通过电邮验证,并且需要重置密码。",
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"xloc": [
- "default.handlebars->31->1869"
+ "default.handlebars->31->1870"
]
},
{
@@ -14885,7 +14888,7 @@
"zh-chs": "电邮/短信流量",
"zh-cht": "電郵/短信流量",
"xloc": [
- "default.handlebars->31->2229"
+ "default.handlebars->31->2230"
]
},
{
@@ -14931,7 +14934,7 @@
"zh-chs": "启用邀请代码",
"zh-cht": "啟用邀請代碼",
"xloc": [
- "default.handlebars->31->1583"
+ "default.handlebars->31->1584"
]
},
{
@@ -14972,7 +14975,7 @@
"zh-cht": "啟用電郵二因子鑑別。",
"xloc": [
"default-mobile.handlebars->11->81",
- "default.handlebars->31->1106"
+ "default.handlebars->31->1107"
]
},
{
@@ -15012,7 +15015,7 @@
"zh-chs": "已启用",
"zh-cht": "已啟用",
"xloc": [
- "default.handlebars->31->2126"
+ "default.handlebars->31->2127"
]
},
{
@@ -15032,7 +15035,7 @@
"zh-chs": "启用电子邮件两因素身份验证",
"zh-cht": "啟用電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->31->1747"
+ "default.handlebars->31->1748"
]
},
{
@@ -15081,7 +15084,7 @@
"zh-chs": "时间结束",
"zh-cht": "時間結束",
"xloc": [
- "default.handlebars->31->2123"
+ "default.handlebars->31->2124"
]
},
{
@@ -15101,7 +15104,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"xloc": [
- "default.handlebars->31->1670"
+ "default.handlebars->31->1671"
]
},
{
@@ -15121,7 +15124,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"xloc": [
- "default.handlebars->31->1671"
+ "default.handlebars->31->1672"
]
},
{
@@ -15141,7 +15144,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"xloc": [
- "default.handlebars->31->1668"
+ "default.handlebars->31->1669"
]
},
{
@@ -15161,7 +15164,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"xloc": [
- "default.handlebars->31->1669"
+ "default.handlebars->31->1670"
]
},
{
@@ -15181,7 +15184,7 @@
"zh-chs": "英文",
"zh-cht": "英文",
"xloc": [
- "default.handlebars->31->1168"
+ "default.handlebars->31->1169"
]
},
{
@@ -15201,7 +15204,7 @@
"zh-chs": "英文(澳洲)",
"zh-cht": "英文(澳洲)",
"xloc": [
- "default.handlebars->31->1169"
+ "default.handlebars->31->1170"
]
},
{
@@ -15221,7 +15224,7 @@
"zh-chs": "英文(伯利茲)",
"zh-cht": "英文(伯利茲)",
"xloc": [
- "default.handlebars->31->1170"
+ "default.handlebars->31->1171"
]
},
{
@@ -15241,7 +15244,7 @@
"zh-chs": "英文(加拿大)",
"zh-cht": "英文(加拿大)",
"xloc": [
- "default.handlebars->31->1171"
+ "default.handlebars->31->1172"
]
},
{
@@ -15261,7 +15264,7 @@
"zh-chs": "英文(爱尔兰)",
"zh-cht": "英文(愛爾蘭)",
"xloc": [
- "default.handlebars->31->1172"
+ "default.handlebars->31->1173"
]
},
{
@@ -15281,7 +15284,7 @@
"zh-chs": "英文(牙买加)",
"zh-cht": "英文(牙買加)",
"xloc": [
- "default.handlebars->31->1173"
+ "default.handlebars->31->1174"
]
},
{
@@ -15301,7 +15304,7 @@
"zh-chs": "英文(纽西兰)",
"zh-cht": "英文(紐西蘭)",
"xloc": [
- "default.handlebars->31->1174"
+ "default.handlebars->31->1175"
]
},
{
@@ -15321,7 +15324,7 @@
"zh-chs": "英文(菲律宾)",
"zh-cht": "英文(菲律賓)",
"xloc": [
- "default.handlebars->31->1175"
+ "default.handlebars->31->1176"
]
},
{
@@ -15341,7 +15344,7 @@
"zh-chs": "英语(南非)",
"zh-cht": "英語(南非)",
"xloc": [
- "default.handlebars->31->1176"
+ "default.handlebars->31->1177"
]
},
{
@@ -15361,7 +15364,7 @@
"zh-chs": "英文(特立尼达和多巴哥)",
"zh-cht": "英文(特立尼達和多巴哥)",
"xloc": [
- "default.handlebars->31->1177"
+ "default.handlebars->31->1178"
]
},
{
@@ -15381,7 +15384,7 @@
"zh-chs": "英文(英国)",
"zh-cht": "英文(英國)",
"xloc": [
- "default.handlebars->31->1178"
+ "default.handlebars->31->1179"
]
},
{
@@ -15401,7 +15404,7 @@
"zh-chs": "美国英文",
"zh-cht": "美國英語",
"xloc": [
- "default.handlebars->31->1179"
+ "default.handlebars->31->1180"
]
},
{
@@ -15421,7 +15424,7 @@
"zh-chs": "英文(津巴布韦)",
"zh-cht": "英文(津巴布韋)",
"xloc": [
- "default.handlebars->31->1180"
+ "default.handlebars->31->1181"
]
},
{
@@ -15442,8 +15445,8 @@
"zh-cht": "輸入",
"xloc": [
"default-mobile.handlebars->11->319",
- "default.handlebars->31->1362",
"default.handlebars->31->1363",
+ "default.handlebars->31->1364",
"default.handlebars->31->886",
"default.handlebars->31->959"
]
@@ -15465,7 +15468,7 @@
"zh-chs": "输入管理领域名称的逗号分隔列表。",
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"xloc": [
- "default.handlebars->31->1873"
+ "default.handlebars->31->1874"
]
},
{
@@ -15587,7 +15590,7 @@
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
"xloc": [
- "default.handlebars->31->1101"
+ "default.handlebars->31->1102"
]
},
{
@@ -15616,7 +15619,7 @@
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
"xloc": [
"default-mobile.handlebars->11->550",
- "default.handlebars->31->2161"
+ "default.handlebars->31->2162"
]
},
{
@@ -15625,7 +15628,7 @@
"fr": "Erreur, mot de passe non modifié.",
"xloc": [
"default-mobile.handlebars->11->547",
- "default.handlebars->31->2158"
+ "default.handlebars->31->2159"
]
},
{
@@ -15634,7 +15637,7 @@
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
"xloc": [
"default-mobile.handlebars->11->546",
- "default.handlebars->31->2157"
+ "default.handlebars->31->2158"
]
},
{
@@ -15643,7 +15646,7 @@
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
"xloc": [
"default-mobile.handlebars->11->545",
- "default.handlebars->31->2156"
+ "default.handlebars->31->2157"
]
},
{
@@ -15692,7 +15695,7 @@
"zh-chs": "世界文",
"zh-cht": "世界語",
"xloc": [
- "default.handlebars->31->1181"
+ "default.handlebars->31->1182"
]
},
{
@@ -15712,7 +15715,7 @@
"zh-chs": "爱沙尼亚文",
"zh-cht": "愛沙尼亞語",
"xloc": [
- "default.handlebars->31->1182"
+ "default.handlebars->31->1183"
]
},
{
@@ -15752,7 +15755,7 @@
"zh-chs": "事件列表输出",
"zh-cht": "事件列表輸出",
"xloc": [
- "default.handlebars->31->1784"
+ "default.handlebars->31->1785"
]
},
{
@@ -15982,7 +15985,7 @@
"zh-chs": "外部",
"zh-cht": "外部",
"xloc": [
- "default.handlebars->31->2212"
+ "default.handlebars->31->2213"
]
},
{
@@ -16022,7 +16025,7 @@
"zh-chs": "FYRO马其顿语",
"zh-cht": "FYRO馬其頓語",
"xloc": [
- "default.handlebars->31->1232"
+ "default.handlebars->31->1233"
]
},
{
@@ -16042,7 +16045,7 @@
"zh-chs": "法罗语",
"zh-cht": "法羅語",
"xloc": [
- "default.handlebars->31->1183"
+ "default.handlebars->31->1184"
]
},
{
@@ -16071,7 +16074,7 @@
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
"xloc": [
"default-mobile.handlebars->11->541",
- "default.handlebars->31->2152"
+ "default.handlebars->31->2153"
]
},
{
@@ -16091,7 +16094,7 @@
"zh-chs": "本地用户拒绝后无法启动远程桌面",
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1693"
+ "default.handlebars->31->1694"
]
},
{
@@ -16111,7 +16114,7 @@
"zh-chs": "本地用户拒绝后无法启动远程文件",
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"xloc": [
- "default.handlebars->31->1700"
+ "default.handlebars->31->1701"
]
},
{
@@ -16154,7 +16157,7 @@
"zh-chs": "波斯文(波斯文)",
"zh-cht": "波斯語(波斯語)",
"xloc": [
- "default.handlebars->31->1184"
+ "default.handlebars->31->1185"
]
},
{
@@ -16196,7 +16199,7 @@
"zh-chs": "功能",
"zh-cht": "功能",
"xloc": [
- "default.handlebars->31->1407"
+ "default.handlebars->31->1408"
]
},
{
@@ -16216,7 +16219,7 @@
"zh-chs": "斐济",
"zh-cht": "斐濟",
"xloc": [
- "default.handlebars->31->1185"
+ "default.handlebars->31->1186"
]
},
{
@@ -16357,8 +16360,8 @@
"xloc": [
"default-mobile.handlebars->11->182",
"default-mobile.handlebars->11->279",
- "default.handlebars->31->1497",
- "default.handlebars->31->2111",
+ "default.handlebars->31->1498",
+ "default.handlebars->31->2112",
"default.handlebars->31->276",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles"
@@ -16401,9 +16404,9 @@
"zh-chs": "档案通知",
"zh-cht": "檔案通知",
"xloc": [
- "default.handlebars->31->1415",
- "default.handlebars->31->1929",
- "default.handlebars->31->2016",
+ "default.handlebars->31->1416",
+ "default.handlebars->31->1930",
+ "default.handlebars->31->2017",
"default.handlebars->31->618"
]
},
@@ -16424,9 +16427,9 @@
"zh-chs": "档案提示",
"zh-cht": "檔案提示",
"xloc": [
- "default.handlebars->31->1414",
- "default.handlebars->31->1928",
- "default.handlebars->31->2015",
+ "default.handlebars->31->1415",
+ "default.handlebars->31->1929",
+ "default.handlebars->31->2016",
"default.handlebars->31->617"
]
},
@@ -16511,7 +16514,7 @@
"zh-chs": "录制会话已完成,{0}秒",
"zh-cht": "錄製會話已完成,{0}秒",
"xloc": [
- "default.handlebars->31->1666"
+ "default.handlebars->31->1667"
]
},
{
@@ -16531,7 +16534,7 @@
"zh-chs": "芬兰",
"zh-cht": "芬蘭",
"xloc": [
- "default.handlebars->31->1186"
+ "default.handlebars->31->1187"
]
},
{
@@ -16698,8 +16701,8 @@
"zh-chs": "下次登录时强制重置密码。",
"zh-cht": "下次登入時強制重置密碼。",
"xloc": [
- "default.handlebars->31->1867",
- "default.handlebars->31->2058"
+ "default.handlebars->31->1868",
+ "default.handlebars->31->2059"
]
},
{
@@ -16782,7 +16785,7 @@
"zh-chs": "格式化",
"zh-cht": "格式化",
"xloc": [
- "default.handlebars->31->1775"
+ "default.handlebars->31->1776"
]
},
{
@@ -16823,8 +16826,8 @@
"zh-chs": "自由",
"zh-cht": "自由",
"xloc": [
- "default.handlebars->31->2170",
- "default.handlebars->31->2172"
+ "default.handlebars->31->2171",
+ "default.handlebars->31->2173"
]
},
{
@@ -16865,7 +16868,7 @@
"zh-chs": "法文(比利时)",
"zh-cht": "法語(比利時)",
"xloc": [
- "default.handlebars->31->1188"
+ "default.handlebars->31->1189"
]
},
{
@@ -16885,7 +16888,7 @@
"zh-chs": "法文(加拿大)",
"zh-cht": "法語(加拿大)",
"xloc": [
- "default.handlebars->31->1189"
+ "default.handlebars->31->1190"
]
},
{
@@ -16905,7 +16908,7 @@
"zh-chs": "法文(法国)",
"zh-cht": "法語(法國)",
"xloc": [
- "default.handlebars->31->1190"
+ "default.handlebars->31->1191"
]
},
{
@@ -16925,7 +16928,7 @@
"zh-chs": "法文(卢森堡)",
"zh-cht": "法語(盧森堡)",
"xloc": [
- "default.handlebars->31->1191"
+ "default.handlebars->31->1192"
]
},
{
@@ -16945,7 +16948,7 @@
"zh-chs": "法文(摩纳哥)",
"zh-cht": "法語(摩納哥)",
"xloc": [
- "default.handlebars->31->1192"
+ "default.handlebars->31->1193"
]
},
{
@@ -16965,7 +16968,7 @@
"zh-chs": "法文(标准)",
"zh-cht": "法語(標準)",
"xloc": [
- "default.handlebars->31->1187"
+ "default.handlebars->31->1188"
]
},
{
@@ -16985,7 +16988,7 @@
"zh-chs": "法文(瑞士)",
"zh-cht": "法語(瑞士)",
"xloc": [
- "default.handlebars->31->1193"
+ "default.handlebars->31->1194"
]
},
{
@@ -17005,7 +17008,7 @@
"zh-chs": "弗里斯兰文",
"zh-cht": "弗里斯蘭語",
"xloc": [
- "default.handlebars->31->1194"
+ "default.handlebars->31->1195"
]
},
{
@@ -17025,7 +17028,7 @@
"zh-chs": "弗留利",
"zh-cht": "弗留利",
"xloc": [
- "default.handlebars->31->1195"
+ "default.handlebars->31->1196"
]
},
{
@@ -17049,9 +17052,9 @@
"default-mobile.handlebars->11->463",
"default-mobile.handlebars->11->472",
"default-mobile.handlebars->11->492",
- "default.handlebars->31->1369",
- "default.handlebars->31->1516",
- "default.handlebars->31->1879"
+ "default.handlebars->31->1370",
+ "default.handlebars->31->1517",
+ "default.handlebars->31->1880"
]
},
{
@@ -17071,7 +17074,7 @@
"zh-chs": "完整管理员(保留所有权利)",
"zh-cht": "完整管理員(保留所有權利)",
"xloc": [
- "default.handlebars->31->1552"
+ "default.handlebars->31->1553"
]
},
{
@@ -17190,7 +17193,7 @@
"zh-chs": "完整管理员",
"zh-cht": "完整管理員",
"xloc": [
- "default.handlebars->31->1977"
+ "default.handlebars->31->1978"
]
},
{
@@ -17210,8 +17213,8 @@
"zh-chs": "全自动的",
"zh-cht": "全自動的",
"xloc": [
- "default.handlebars->31->1432",
- "default.handlebars->31->1455"
+ "default.handlebars->31->1433",
+ "default.handlebars->31->1456"
]
},
{
@@ -17252,7 +17255,7 @@
"zh-chs": "盖尔文(爱尔兰)",
"zh-cht": "蓋爾語(愛爾蘭)",
"xloc": [
- "default.handlebars->31->1197"
+ "default.handlebars->31->1198"
]
},
{
@@ -17272,7 +17275,7 @@
"zh-chs": "盖尔文(苏格兰文)",
"zh-cht": "蓋爾語(蘇格蘭語)",
"xloc": [
- "default.handlebars->31->1196"
+ "default.handlebars->31->1197"
]
},
{
@@ -17292,7 +17295,7 @@
"zh-chs": "加拉契文",
"zh-cht": "加拉契語",
"xloc": [
- "default.handlebars->31->1198"
+ "default.handlebars->31->1199"
]
},
{
@@ -17418,7 +17421,7 @@
"zh-chs": "格鲁吉亚文",
"zh-cht": "格魯吉亞文",
"xloc": [
- "default.handlebars->31->1199"
+ "default.handlebars->31->1200"
]
},
{
@@ -17438,7 +17441,7 @@
"zh-chs": "德文(奥地利)",
"zh-cht": "德語(奧地利)",
"xloc": [
- "default.handlebars->31->1201"
+ "default.handlebars->31->1202"
]
},
{
@@ -17458,7 +17461,7 @@
"zh-chs": "德文(德国)",
"zh-cht": "德文(德國)",
"xloc": [
- "default.handlebars->31->1202"
+ "default.handlebars->31->1203"
]
},
{
@@ -17478,7 +17481,7 @@
"zh-chs": "德文(列支敦士登)",
"zh-cht": "德文(列支敦士登)",
"xloc": [
- "default.handlebars->31->1203"
+ "default.handlebars->31->1204"
]
},
{
@@ -17498,7 +17501,7 @@
"zh-chs": "德文(卢森堡)",
"zh-cht": "德語(盧森堡)",
"xloc": [
- "default.handlebars->31->1204"
+ "default.handlebars->31->1205"
]
},
{
@@ -17518,7 +17521,7 @@
"zh-chs": "德文(标准)",
"zh-cht": "德語(標準)",
"xloc": [
- "default.handlebars->31->1200"
+ "default.handlebars->31->1201"
]
},
{
@@ -17538,7 +17541,7 @@
"zh-chs": "德文(瑞士)",
"zh-cht": "德文(瑞士)",
"xloc": [
- "default.handlebars->31->1205"
+ "default.handlebars->31->1206"
]
},
{
@@ -17599,7 +17602,7 @@
"zh-chs": "正在获取剪贴板内容,{0}个字节",
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->31->1680"
+ "default.handlebars->31->1681"
]
},
{
@@ -17661,7 +17664,7 @@
"zh-chs": "好",
"zh-cht": "好",
"xloc": [
- "default.handlebars->31->1365"
+ "default.handlebars->31->1366"
]
},
{
@@ -17706,8 +17709,8 @@
"zh-chs": "Google云端硬盘备份",
"zh-cht": "Google雲端硬盤備份",
"xloc": [
- "default.handlebars->31->1376",
- "default.handlebars->31->1379",
+ "default.handlebars->31->1377",
+ "default.handlebars->31->1380",
"default.handlebars->31->220"
]
},
@@ -17728,7 +17731,7 @@
"zh-chs": "Google云端硬盘控制台",
"zh-cht": "Google雲端硬盤控制台",
"xloc": [
- "default.handlebars->31->1373"
+ "default.handlebars->31->1374"
]
},
{
@@ -17768,7 +17771,7 @@
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
"xloc": [
- "default.handlebars->31->1377"
+ "default.handlebars->31->1378"
]
},
{
@@ -17788,7 +17791,7 @@
"zh-chs": "希腊文",
"zh-cht": "希臘文",
"xloc": [
- "default.handlebars->31->1206"
+ "default.handlebars->31->1207"
]
},
{
@@ -17830,8 +17833,8 @@
"zh-chs": "集体指令",
"zh-cht": "集體指令",
"xloc": [
- "default.handlebars->31->1823",
- "default.handlebars->31->1902",
+ "default.handlebars->31->1824",
+ "default.handlebars->31->1903",
"default.handlebars->31->470",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -17855,7 +17858,7 @@
"zh-chs": "通过...分组",
"zh-cht": "通過...分群",
"xloc": [
- "default.handlebars->31->1771"
+ "default.handlebars->31->1772"
]
},
{
@@ -17875,7 +17878,7 @@
"zh-chs": "组标识符",
"zh-cht": "群標識符",
"xloc": [
- "default.handlebars->31->1919"
+ "default.handlebars->31->1920"
]
},
{
@@ -17895,7 +17898,7 @@
"zh-chs": "群组成员",
"zh-cht": "群組成員",
"xloc": [
- "default.handlebars->31->1940"
+ "default.handlebars->31->1941"
]
},
{
@@ -17915,7 +17918,7 @@
"zh-chs": "用户{0}的群组权限。",
"zh-cht": "用戶{0}的群組權限。",
"xloc": [
- "default.handlebars->31->1515"
+ "default.handlebars->31->1516"
]
},
{
@@ -17935,7 +17938,7 @@
"zh-chs": "{0}的群组权限。",
"zh-cht": "{0}的群組權限。",
"xloc": [
- "default.handlebars->31->1514"
+ "default.handlebars->31->1515"
]
},
{
@@ -18036,7 +18039,7 @@
"zh-chs": "古久拉提",
"zh-cht": "古久拉提",
"xloc": [
- "default.handlebars->31->1207"
+ "default.handlebars->31->1208"
]
},
{
@@ -18079,7 +18082,7 @@
"zh-chs": "海地文",
"zh-cht": "海地文",
"xloc": [
- "default.handlebars->31->1208"
+ "default.handlebars->31->1209"
]
},
{
@@ -18119,7 +18122,7 @@
"zh-chs": "强行断开代理",
"zh-cht": "強行斷開代理",
"xloc": [
- "default.handlebars->31->1096"
+ "default.handlebars->31->1097"
]
},
{
@@ -18139,7 +18142,7 @@
"zh-chs": "堆总数",
"zh-cht": "堆總數",
"xloc": [
- "default.handlebars->31->2214"
+ "default.handlebars->31->2215"
]
},
{
@@ -18159,7 +18162,7 @@
"zh-chs": "堆使用",
"zh-cht": "堆使用",
"xloc": [
- "default.handlebars->31->2213"
+ "default.handlebars->31->2214"
]
},
{
@@ -18179,7 +18182,7 @@
"zh-chs": "希伯来文",
"zh-cht": "希伯來文",
"xloc": [
- "default.handlebars->31->1209"
+ "default.handlebars->31->1210"
]
},
{
@@ -18240,7 +18243,7 @@
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
"xloc": [
- "default.handlebars->31->1757"
+ "default.handlebars->31->1758"
]
},
{
@@ -18301,7 +18304,7 @@
"zh-chs": "帮助翻译MeshCentral",
"zh-cht": "幫助翻譯MeshCentral",
"xloc": [
- "default.handlebars->31->1324"
+ "default.handlebars->31->1325"
]
},
{
@@ -18405,7 +18408,7 @@
"zh-chs": "印地文",
"zh-cht": "印地文",
"xloc": [
- "default.handlebars->31->1210"
+ "default.handlebars->31->1211"
]
},
{
@@ -18527,7 +18530,7 @@
"zh-cht": "保存{0}項目{1}給{2}",
"xloc": [
"default-mobile.handlebars->11->140",
- "default.handlebars->31->1653"
+ "default.handlebars->31->1654"
]
},
{
@@ -18584,7 +18587,7 @@
"zh-chs": "主机名同步",
"zh-cht": "主機名同步",
"xloc": [
- "default.handlebars->31->1404"
+ "default.handlebars->31->1405"
]
},
{
@@ -18604,7 +18607,7 @@
"zh-chs": "匈牙利文",
"zh-cht": "匈牙利文",
"xloc": [
- "default.handlebars->31->1211"
+ "default.handlebars->31->1212"
]
},
{
@@ -18886,7 +18889,7 @@
"zh-chs": "冰岛文",
"zh-cht": "冰島文",
"xloc": [
- "default.handlebars->31->1212"
+ "default.handlebars->31->1213"
]
},
{
@@ -18950,7 +18953,7 @@
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
"xloc": [
- "default.handlebars->31->1469"
+ "default.handlebars->31->1470"
]
},
{
@@ -19119,7 +19122,7 @@
"zh-chs": "印度尼西亚文",
"zh-cht": "印度尼西亞文",
"xloc": [
- "default.handlebars->31->1213"
+ "default.handlebars->31->1214"
]
},
{
@@ -19304,8 +19307,8 @@
"zh-chs": "安装类型",
"zh-cht": "安裝方式",
"xloc": [
- "default.handlebars->31->1585",
- "default.handlebars->31->1592",
+ "default.handlebars->31->1586",
+ "default.handlebars->31->1593",
"default.handlebars->31->352",
"default.handlebars->31->366",
"default.handlebars->31->381"
@@ -19351,7 +19354,7 @@
"zh-chs": "英特尔AMT",
"zh-cht": "英特爾AMT",
"xloc": [
- "default.handlebars->31->2210"
+ "default.handlebars->31->2211"
]
},
{
@@ -19359,7 +19362,7 @@
"fr": "Gestionnaire Intel AMT",
"nl": "Intel AMT beheerder",
"xloc": [
- "default.handlebars->31->2236"
+ "default.handlebars->31->2237"
]
},
{
@@ -19403,11 +19406,11 @@
"default-mobile.handlebars->11->216",
"default-mobile.handlebars->11->258",
"default-mobile.handlebars->11->263",
- "default.handlebars->31->1422",
- "default.handlebars->31->1433",
- "default.handlebars->31->1604",
- "default.handlebars->31->1612",
- "default.handlebars->31->2235",
+ "default.handlebars->31->1423",
+ "default.handlebars->31->1434",
+ "default.handlebars->31->1605",
+ "default.handlebars->31->1613",
+ "default.handlebars->31->2236",
"default.handlebars->31->543",
"default.handlebars->31->601",
"default.handlebars->31->628"
@@ -19577,7 +19580,7 @@
"zh-chs": "英特尔®AMT政策",
"zh-cht": "Intel® AMT政策",
"xloc": [
- "default.handlebars->31->1456"
+ "default.handlebars->31->1457"
]
},
{
@@ -19597,7 +19600,7 @@
"zh-chs": "英特尔®AMT重定向",
"zh-cht": "Intel® AMT重定向",
"xloc": [
- "default.handlebars->31->2113",
+ "default.handlebars->31->2114",
"player.handlebars->3->14"
]
},
@@ -19638,7 +19641,7 @@
"zh-chs": "英特尔®AMT WSMAN",
"zh-cht": "Intle® AMT WSMAN",
"xloc": [
- "default.handlebars->31->2112",
+ "default.handlebars->31->2113",
"player.handlebars->3->13"
]
},
@@ -19698,8 +19701,8 @@
"zh-chs": "英特尔®AMT桌面和串行事件。",
"zh-cht": "Intel® AMT桌面和串行事件。",
"xloc": [
- "default.handlebars->31->1330",
- "default.handlebars->31->1600"
+ "default.handlebars->31->1331",
+ "default.handlebars->31->1601"
]
},
{
@@ -19885,8 +19888,8 @@
"zh-cht": "僅限Intel® AMT,無代理",
"xloc": [
"default-mobile.handlebars->11->454",
- "default.handlebars->31->1359",
- "default.handlebars->31->1394"
+ "default.handlebars->31->1360",
+ "default.handlebars->31->1395"
]
},
{
@@ -20190,8 +20193,8 @@
"zh-chs": "仅限互动",
"zh-cht": "僅限互動",
"xloc": [
- "default.handlebars->31->1588",
- "default.handlebars->31->1595",
+ "default.handlebars->31->1589",
+ "default.handlebars->31->1596",
"default.handlebars->31->355",
"default.handlebars->31->369",
"default.handlebars->31->384"
@@ -20234,7 +20237,7 @@
"zh-chs": "因纽特文",
"zh-cht": "因紐特文",
"xloc": [
- "default.handlebars->31->1214"
+ "default.handlebars->31->1215"
]
},
{
@@ -20277,7 +20280,7 @@
"zh-chs": "无效的设备组类型",
"zh-cht": "無效的裝置群類型",
"xloc": [
- "default.handlebars->31->2184"
+ "default.handlebars->31->2185"
]
},
{
@@ -20297,7 +20300,7 @@
"zh-chs": "无效的JSON",
"zh-cht": "無效的JSON",
"xloc": [
- "default.handlebars->31->2178"
+ "default.handlebars->31->2179"
]
},
{
@@ -20317,8 +20320,8 @@
"zh-chs": "无效的JSON档案格式。",
"zh-cht": "無效的JSON檔案格式。",
"xloc": [
- "default.handlebars->31->1841",
- "default.handlebars->31->1843"
+ "default.handlebars->31->1842",
+ "default.handlebars->31->1844"
]
},
{
@@ -20338,7 +20341,7 @@
"zh-chs": "无效的JSON档案:{0}。",
"zh-cht": "無效的JSON檔案:{0}。",
"xloc": [
- "default.handlebars->31->1839"
+ "default.handlebars->31->1840"
]
},
{
@@ -20358,7 +20361,7 @@
"zh-chs": "无效的PKCS签名",
"zh-cht": "無效的PKCS簽名",
"xloc": [
- "default.handlebars->31->2176"
+ "default.handlebars->31->2177"
]
},
{
@@ -20378,7 +20381,7 @@
"zh-chs": "無效的RSA密碼",
"zh-cht": "無效的RSA密碼",
"xloc": [
- "default.handlebars->31->2177"
+ "default.handlebars->31->2178"
]
},
{
@@ -20387,7 +20390,7 @@
"fr": "Message SMS non valide",
"xloc": [
"default-mobile.handlebars->11->553",
- "default.handlebars->31->2164"
+ "default.handlebars->31->2165"
]
},
{
@@ -20418,7 +20421,7 @@
"fr": "Domaine non valide",
"xloc": [
"default-mobile.handlebars->11->533",
- "default.handlebars->31->2144"
+ "default.handlebars->31->2145"
]
},
{
@@ -20427,7 +20430,7 @@
"fr": "Email invalide",
"xloc": [
"default-mobile.handlebars->11->532",
- "default.handlebars->31->2143"
+ "default.handlebars->31->2144"
]
},
{
@@ -20499,7 +20502,7 @@
"fr": "Mot de passe incorrect",
"xloc": [
"default-mobile.handlebars->11->531",
- "default.handlebars->31->2142"
+ "default.handlebars->31->2143"
]
},
{
@@ -20508,7 +20511,7 @@
"fr": "Autorisations de site non valides",
"xloc": [
"default-mobile.handlebars->11->534",
- "default.handlebars->31->2145"
+ "default.handlebars->31->2146"
]
},
{
@@ -20539,7 +20542,7 @@
"fr": "Nom d'utilisateur invalide",
"xloc": [
"default-mobile.handlebars->11->530",
- "default.handlebars->31->2141"
+ "default.handlebars->31->2142"
]
},
{
@@ -20559,7 +20562,7 @@
"zh-chs": "使电邮无效",
"zh-cht": "使電郵無效",
"xloc": [
- "default.handlebars->31->1817"
+ "default.handlebars->31->1818"
]
},
{
@@ -20636,7 +20639,7 @@
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->31->1590"
+ "default.handlebars->31->1591"
]
},
{
@@ -20676,7 +20679,7 @@
"zh-chs": "邀请",
"zh-cht": "邀請",
"xloc": [
- "default.handlebars->31->1443",
+ "default.handlebars->31->1444",
"default.handlebars->31->303",
"default.handlebars->31->371"
]
@@ -20699,12 +20702,12 @@
"zh-cht": "邀請碼",
"xloc": [
"default-mobile.handlebars->11->528",
- "default.handlebars->31->1426",
- "default.handlebars->31->1584",
- "default.handlebars->31->1589",
- "default.handlebars->31->1591",
- "default.handlebars->31->1596",
- "default.handlebars->31->2139"
+ "default.handlebars->31->1427",
+ "default.handlebars->31->1585",
+ "default.handlebars->31->1590",
+ "default.handlebars->31->1592",
+ "default.handlebars->31->1597",
+ "default.handlebars->31->2140"
]
},
{
@@ -20744,7 +20747,7 @@
"zh-chs": "邀请某人在该设备组上安装网格代理。",
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
"xloc": [
- "default.handlebars->31->1442",
+ "default.handlebars->31->1443",
"default.handlebars->31->302"
]
},
@@ -20785,7 +20788,7 @@
"zh-chs": "爱尔兰文",
"zh-cht": "愛爾蘭文",
"xloc": [
- "default.handlebars->31->1215"
+ "default.handlebars->31->1216"
]
},
{
@@ -20805,7 +20808,7 @@
"zh-chs": "意大利文(标准)",
"zh-cht": "意大利文(標準)",
"xloc": [
- "default.handlebars->31->1216"
+ "default.handlebars->31->1217"
]
},
{
@@ -20825,7 +20828,7 @@
"zh-chs": "意大利文(瑞士)",
"zh-cht": "義大利文(瑞士)",
"xloc": [
- "default.handlebars->31->1217"
+ "default.handlebars->31->1218"
]
},
{
@@ -20845,7 +20848,7 @@
"zh-chs": "JSON",
"zh-cht": "JSON",
"xloc": [
- "default.handlebars->31->1777"
+ "default.handlebars->31->1778"
]
},
{
@@ -20865,8 +20868,8 @@
"zh-chs": "JSON格式",
"zh-cht": "JSON格式",
"xloc": [
- "default.handlebars->31->1782",
- "default.handlebars->31->1847",
+ "default.handlebars->31->1783",
+ "default.handlebars->31->1848",
"default.handlebars->31->504"
]
},
@@ -20887,7 +20890,7 @@
"zh-chs": "日文",
"zh-cht": "日文",
"xloc": [
- "default.handlebars->31->1218"
+ "default.handlebars->31->1219"
]
},
{
@@ -20907,7 +20910,7 @@
"zh-chs": "已加入桌面Multiplex会话",
"zh-cht": "已加入桌面Multiplex會話",
"xloc": [
- "default.handlebars->31->1663"
+ "default.handlebars->31->1664"
]
},
{
@@ -20927,7 +20930,7 @@
"zh-chs": "卡纳达文",
"zh-cht": "卡納達文",
"xloc": [
- "default.handlebars->31->1219"
+ "default.handlebars->31->1220"
]
},
{
@@ -20947,7 +20950,7 @@
"zh-chs": "克什米尔文",
"zh-cht": "克什米爾文",
"xloc": [
- "default.handlebars->31->1220"
+ "default.handlebars->31->1221"
]
},
{
@@ -20967,7 +20970,7 @@
"zh-chs": "哈萨克文",
"zh-cht": "哈薩克文",
"xloc": [
- "default.handlebars->31->1221"
+ "default.handlebars->31->1222"
]
},
{
@@ -20987,7 +20990,7 @@
"zh-chs": "保留现有密码",
"zh-cht": "保留現有密碼",
"xloc": [
- "default.handlebars->31->1457"
+ "default.handlebars->31->1458"
]
},
{
@@ -21027,8 +21030,8 @@
"zh-chs": "键名",
"zh-cht": "鍵名",
"xloc": [
- "default.handlebars->31->1112",
- "default.handlebars->31->1115"
+ "default.handlebars->31->1113",
+ "default.handlebars->31->1116"
]
},
{
@@ -21091,7 +21094,7 @@
"zh-chs": "高棉文",
"zh-cht": "高棉文",
"xloc": [
- "default.handlebars->31->1222"
+ "default.handlebars->31->1223"
]
},
{
@@ -21111,7 +21114,7 @@
"zh-chs": "杀死进程{0}",
"zh-cht": "殺死進程{0}",
"xloc": [
- "default.handlebars->31->1678"
+ "default.handlebars->31->1679"
]
},
{
@@ -21131,7 +21134,7 @@
"zh-chs": "吉尔吉斯",
"zh-cht": "吉爾吉斯",
"xloc": [
- "default.handlebars->31->1223"
+ "default.handlebars->31->1224"
]
},
{
@@ -21151,7 +21154,7 @@
"zh-chs": "克林贡",
"zh-cht": "克林貢",
"xloc": [
- "default.handlebars->31->1224"
+ "default.handlebars->31->1225"
]
},
{
@@ -21192,7 +21195,7 @@
"zh-chs": "韩文",
"zh-cht": "韓文",
"xloc": [
- "default.handlebars->31->1225"
+ "default.handlebars->31->1226"
]
},
{
@@ -21212,7 +21215,7 @@
"zh-chs": "韩文(朝鲜)",
"zh-cht": "韓文(朝鮮)",
"xloc": [
- "default.handlebars->31->1226"
+ "default.handlebars->31->1227"
]
},
{
@@ -21232,7 +21235,7 @@
"zh-chs": "韩文(韩国)",
"zh-cht": "韓文(韓國)",
"xloc": [
- "default.handlebars->31->1227"
+ "default.handlebars->31->1228"
]
},
{
@@ -21275,7 +21278,7 @@
"zh-chs": "语言",
"zh-cht": "語言",
"xloc": [
- "default.handlebars->31->1322"
+ "default.handlebars->31->1323"
]
},
{
@@ -21528,7 +21531,7 @@
"zh-chs": "最后访问",
"zh-cht": "最後訪問",
"xloc": [
- "default.handlebars->31->1790"
+ "default.handlebars->31->1791"
]
},
{
@@ -21548,7 +21551,7 @@
"zh-chs": "上次登录",
"zh-cht": "上次登入",
"xloc": [
- "default.handlebars->31->1998"
+ "default.handlebars->31->1999"
]
},
{
@@ -21620,7 +21623,7 @@
"zh-chs": "上次更改:{0}",
"zh-cht": "上次更改:{0}",
"xloc": [
- "default.handlebars->31->2002"
+ "default.handlebars->31->2003"
]
},
{
@@ -21680,7 +21683,7 @@
"zh-chs": "上次登录:{0}",
"zh-cht": "上次登入:{0}",
"xloc": [
- "default.handlebars->31->1800"
+ "default.handlebars->31->1801"
]
},
{
@@ -21781,7 +21784,7 @@
"zh-chs": "拉丁文",
"zh-cht": "拉丁文",
"xloc": [
- "default.handlebars->31->1228"
+ "default.handlebars->31->1229"
]
},
{
@@ -21801,7 +21804,7 @@
"zh-chs": "拉脱维亚文",
"zh-cht": "拉脫維亞文",
"xloc": [
- "default.handlebars->31->1229"
+ "default.handlebars->31->1230"
]
},
{
@@ -21881,7 +21884,7 @@
"zh-chs": "如没有请留空。",
"zh-cht": "如沒有請留空。",
"xloc": [
- "default.handlebars->31->2044"
+ "default.handlebars->31->2045"
]
},
{
@@ -21935,7 +21938,7 @@
"zh-chs": "离开桌面多路复用会话",
"zh-cht": "離開桌面多路復用會話",
"xloc": [
- "default.handlebars->31->1664"
+ "default.handlebars->31->1665"
]
},
{
@@ -21955,7 +21958,7 @@
"zh-chs": "减",
"zh-cht": "減",
"xloc": [
- "default.handlebars->31->2255"
+ "default.handlebars->31->2256"
]
},
{
@@ -22018,7 +22021,7 @@
"zh-cht": "有限輸入",
"xloc": [
"default-mobile.handlebars->11->505",
- "default.handlebars->31->1566",
+ "default.handlebars->31->1567",
"default.handlebars->31->705",
"default.handlebars->31->726"
]
@@ -22041,7 +22044,7 @@
"zh-cht": "僅有限輸入",
"xloc": [
"default-mobile.handlebars->11->478",
- "default.handlebars->31->1522"
+ "default.handlebars->31->1523"
]
},
{
@@ -22551,7 +22554,7 @@
"zh-chs": "立陶宛文",
"zh-cht": "立陶宛文",
"xloc": [
- "default.handlebars->31->1230"
+ "default.handlebars->31->1231"
]
},
{
@@ -22592,10 +22595,10 @@
"zh-cht": "載入中...",
"xloc": [
"default-mobile.handlebars->11->83",
- "default.handlebars->31->1108",
- "default.handlebars->31->1385",
- "default.handlebars->31->1389",
- "default.handlebars->31->2100",
+ "default.handlebars->31->1109",
+ "default.handlebars->31->1386",
+ "default.handlebars->31->1390",
+ "default.handlebars->31->2101",
"default.handlebars->31->825"
]
},
@@ -22678,7 +22681,7 @@
"zh-chs": "本地用户接受的远程终端请求",
"zh-cht": "本地用戶接受的遠程終端請求",
"xloc": [
- "default.handlebars->31->1686"
+ "default.handlebars->31->1687"
]
},
{
@@ -22698,7 +22701,7 @@
"zh-chs": "本地用户拒绝了远程终端请求",
"zh-cht": "本地用戶拒絕了遠程終端請求",
"xloc": [
- "default.handlebars->31->1687"
+ "default.handlebars->31->1688"
]
},
{
@@ -22718,7 +22721,7 @@
"zh-chs": "本地化设置",
"zh-cht": "本地化設置",
"xloc": [
- "default.handlebars->31->1325",
+ "default.handlebars->31->1326",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
]
},
@@ -22779,7 +22782,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->31->1887"
+ "default.handlebars->31->1888"
]
},
{
@@ -22799,7 +22802,7 @@
"zh-chs": "锁定帐户设置",
"zh-cht": "鎖定帳戶設置",
"xloc": [
- "default.handlebars->31->1890"
+ "default.handlebars->31->1891"
]
},
{
@@ -22819,7 +22822,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->31->1820"
+ "default.handlebars->31->1821"
]
},
{
@@ -22845,7 +22848,7 @@
"zh-chs": "已锁定",
"zh-cht": "已鎖定",
"xloc": [
- "default.handlebars->31->1801"
+ "default.handlebars->31->1802"
]
},
{
@@ -22865,7 +22868,7 @@
"zh-chs": "被锁定账户",
"zh-cht": "被鎖定賬戶",
"xloc": [
- "default.handlebars->31->1974"
+ "default.handlebars->31->1975"
]
},
{
@@ -22885,7 +22888,7 @@
"zh-chs": "将远程用户锁定在桌面之外",
"zh-cht": "將遠程用戶鎖定在桌面之外",
"xloc": [
- "default.handlebars->31->1712"
+ "default.handlebars->31->1713"
]
},
{
@@ -23125,7 +23128,7 @@
"zh-chs": "卢森堡文",
"zh-cht": "盧森堡文",
"xloc": [
- "default.handlebars->31->1231"
+ "default.handlebars->31->1232"
]
},
{
@@ -23516,7 +23519,7 @@
"zh-chs": "主服务器信息",
"zh-cht": "主伺服器訊息",
"xloc": [
- "default.handlebars->31->2223"
+ "default.handlebars->31->2224"
]
},
{
@@ -23536,7 +23539,7 @@
"zh-chs": "马来文",
"zh-cht": "馬來文",
"xloc": [
- "default.handlebars->31->1233"
+ "default.handlebars->31->1234"
]
},
{
@@ -23556,7 +23559,7 @@
"zh-chs": "玛拉雅拉姆文",
"zh-cht": "馬拉雅拉姆文",
"xloc": [
- "default.handlebars->31->1234"
+ "default.handlebars->31->1235"
]
},
{
@@ -23576,7 +23579,7 @@
"zh-chs": "马耳他文",
"zh-cht": "馬耳他文",
"xloc": [
- "default.handlebars->31->1235"
+ "default.handlebars->31->1236"
]
},
{
@@ -23619,8 +23622,8 @@
"xloc": [
"default-mobile.handlebars->11->475",
"default-mobile.handlebars->11->495",
- "default.handlebars->31->1519",
- "default.handlebars->31->1555"
+ "default.handlebars->31->1520",
+ "default.handlebars->31->1556"
]
},
{
@@ -23642,8 +23645,8 @@
"xloc": [
"default-mobile.handlebars->11->474",
"default-mobile.handlebars->11->494",
- "default.handlebars->31->1518",
- "default.handlebars->31->1554"
+ "default.handlebars->31->1519",
+ "default.handlebars->31->1555"
]
},
{
@@ -23683,7 +23686,7 @@
"zh-chs": "管理录音",
"zh-cht": "管理錄音",
"xloc": [
- "default.handlebars->31->1885"
+ "default.handlebars->31->1886"
]
},
{
@@ -23723,7 +23726,7 @@
"zh-chs": "管理用户组",
"zh-cht": "管理用戶群",
"xloc": [
- "default.handlebars->31->1884"
+ "default.handlebars->31->1885"
]
},
{
@@ -23743,7 +23746,7 @@
"zh-chs": "管理用户",
"zh-cht": "管理用戶",
"xloc": [
- "default.handlebars->31->1883",
+ "default.handlebars->31->1884",
"default.handlebars->31->720"
]
},
@@ -23870,7 +23873,7 @@
"zh-chs": "使用软件代理进行管理",
"zh-cht": "使用軟體代理進行管理",
"xloc": [
- "default.handlebars->31->1358"
+ "default.handlebars->31->1359"
]
},
{
@@ -23891,7 +23894,7 @@
"zh-cht": "使用軟體代理進行管理",
"xloc": [
"default-mobile.handlebars->11->455",
- "default.handlebars->31->1395"
+ "default.handlebars->31->1396"
]
},
{
@@ -23911,7 +23914,7 @@
"zh-chs": "经理",
"zh-cht": "經理",
"xloc": [
- "default.handlebars->31->1806"
+ "default.handlebars->31->1807"
]
},
{
@@ -23965,7 +23968,7 @@
"zh-chs": "毛利文",
"zh-cht": "毛利文",
"xloc": [
- "default.handlebars->31->1236"
+ "default.handlebars->31->1237"
]
},
{
@@ -24006,7 +24009,7 @@
"zh-chs": "马拉地文",
"zh-cht": "馬拉地文",
"xloc": [
- "default.handlebars->31->1237"
+ "default.handlebars->31->1238"
]
},
{
@@ -24026,7 +24029,7 @@
"zh-chs": "达到连接数量上限",
"zh-cht": "達到連接數量上限",
"xloc": [
- "default.handlebars->31->2182"
+ "default.handlebars->31->2183"
]
},
{
@@ -24091,7 +24094,7 @@
"zh-chs": "Megabyte",
"zh-cht": "Megabyte",
"xloc": [
- "default.handlebars->31->2211"
+ "default.handlebars->31->2212"
]
},
{
@@ -24113,7 +24116,7 @@
"xloc": [
"default-mobile.handlebars->11->446",
"default.handlebars->31->1074",
- "default.handlebars->31->2202",
+ "default.handlebars->31->2203",
"default.handlebars->container->column_l->p40->3->1->p40type->3"
]
},
@@ -24167,7 +24170,7 @@
"zh-cht": "網格代理控制台",
"xloc": [
"default-mobile.handlebars->11->482",
- "default.handlebars->31->1527"
+ "default.handlebars->31->1528"
]
},
{
@@ -24312,7 +24315,7 @@
"zh-chs": "MeshAgent流量",
"zh-cht": "MeshAgent流量",
"xloc": [
- "default.handlebars->31->2225"
+ "default.handlebars->31->2226"
]
},
{
@@ -24332,7 +24335,7 @@
"zh-chs": "MeshAgent更新",
"zh-cht": "MeshAgent更新",
"xloc": [
- "default.handlebars->31->2226"
+ "default.handlebars->31->2227"
]
},
{
@@ -24372,7 +24375,7 @@
"zh-chs": "MeshCentral错误",
"zh-cht": "MeshCentral錯誤",
"xloc": [
- "default.handlebars->31->1388"
+ "default.handlebars->31->1389"
]
},
{
@@ -24453,7 +24456,7 @@
"zh-chs": "MeshCentral服务器同级化",
"zh-cht": "MeshCentral伺服器同級化",
"xloc": [
- "default.handlebars->31->2224"
+ "default.handlebars->31->2225"
]
},
{
@@ -24495,7 +24498,7 @@
"xloc": [
"default.handlebars->31->126",
"default.handlebars->31->128",
- "default.handlebars->31->1384"
+ "default.handlebars->31->1385"
]
},
{
@@ -24832,7 +24835,7 @@
"zh-chs": "消息调度器",
"zh-cht": "電郵調度器",
"xloc": [
- "default.handlebars->31->2222"
+ "default.handlebars->31->2223"
]
},
{
@@ -25012,7 +25015,7 @@
"zh-chs": "摩尔达维亚文",
"zh-cht": "摩爾達維亞文",
"xloc": [
- "default.handlebars->31->1238"
+ "default.handlebars->31->1239"
]
},
{
@@ -25032,7 +25035,7 @@
"zh-chs": "更多",
"zh-cht": "更多",
"xloc": [
- "default.handlebars->31->2254"
+ "default.handlebars->31->2255"
]
},
{
@@ -25113,7 +25116,7 @@
"zh-chs": "移动:“{0}”到“{1}”",
"zh-cht": "移動:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->31->1711"
+ "default.handlebars->31->1712"
]
},
{
@@ -25133,7 +25136,7 @@
"zh-chs": "将设备{0}移动到组{1}",
"zh-cht": "將設備{0}移動到組{1}",
"xloc": [
- "default.handlebars->31->1744"
+ "default.handlebars->31->1745"
]
},
{
@@ -25173,7 +25176,7 @@
"zh-chs": "多路复用器",
"zh-cht": "多工器",
"xloc": [
- "default.handlebars->31->2125"
+ "default.handlebars->31->2126"
]
},
{
@@ -25489,8 +25492,8 @@
"zh-chs": "我的密钥",
"zh-cht": "我的密鍵",
"xloc": [
- "default.handlebars->31->1113",
- "default.handlebars->31->1116"
+ "default.handlebars->31->1114",
+ "default.handlebars->31->1117"
]
},
{
@@ -25579,15 +25582,15 @@
"default.handlebars->31->1000",
"default.handlebars->31->101",
"default.handlebars->31->1062",
- "default.handlebars->31->1356",
- "default.handlebars->31->1396",
- "default.handlebars->31->1483",
- "default.handlebars->31->1788",
- "default.handlebars->31->1893",
- "default.handlebars->31->1909",
- "default.handlebars->31->1916",
- "default.handlebars->31->1961",
- "default.handlebars->31->1980",
+ "default.handlebars->31->1357",
+ "default.handlebars->31->1397",
+ "default.handlebars->31->1484",
+ "default.handlebars->31->1789",
+ "default.handlebars->31->1894",
+ "default.handlebars->31->1910",
+ "default.handlebars->31->1917",
+ "default.handlebars->31->1962",
+ "default.handlebars->31->1981",
"default.handlebars->31->566",
"default.handlebars->31->87",
"default.handlebars->31->915",
@@ -25633,7 +25636,7 @@
"zh-chs": "名称1,名称2,名称3",
"zh-cht": "名稱1,名稱2,名稱3",
"xloc": [
- "default.handlebars->31->1875"
+ "default.handlebars->31->1876"
]
},
{
@@ -25653,7 +25656,7 @@
"zh-chs": "纳瓦霍文",
"zh-cht": "納瓦霍文",
"xloc": [
- "default.handlebars->31->1239"
+ "default.handlebars->31->1240"
]
},
{
@@ -25673,7 +25676,7 @@
"zh-chs": "恩东加",
"zh-cht": "恩東加",
"xloc": [
- "default.handlebars->31->1240"
+ "default.handlebars->31->1241"
]
},
{
@@ -25693,7 +25696,7 @@
"zh-chs": "尼泊尔文",
"zh-cht": "尼泊爾文",
"xloc": [
- "default.handlebars->31->1241"
+ "default.handlebars->31->1242"
]
},
{
@@ -25793,7 +25796,7 @@
"zh-chs": "生成新的2FA备份代码",
"zh-cht": "生成新的2FA備份代碼",
"xloc": [
- "default.handlebars->31->1751"
+ "default.handlebars->31->1752"
]
},
{
@@ -25802,7 +25805,7 @@
"fr": "Nouveau compte",
"xloc": [
"default-mobile.handlebars->11->523",
- "default.handlebars->31->2134"
+ "default.handlebars->31->2135"
]
},
{
@@ -25863,8 +25866,8 @@
"zh-cht": "新裝置群",
"xloc": [
"default-mobile.handlebars->11->102",
- "default.handlebars->31->1349",
- "default.handlebars->31->1361",
+ "default.handlebars->31->1350",
+ "default.handlebars->31->1362",
"default.handlebars->31->816"
]
},
@@ -25887,7 +25890,7 @@
"xloc": [
"default-mobile.handlebars->11->131",
"default-mobile.handlebars->11->353",
- "default.handlebars->31->1643",
+ "default.handlebars->31->1644",
"default.handlebars->31->963",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -25971,8 +25974,8 @@
"zh-chs": "新密码*",
"zh-cht": "新密碼*",
"xloc": [
- "default.handlebars->31->1461",
- "default.handlebars->31->1462"
+ "default.handlebars->31->1462",
+ "default.handlebars->31->1463"
]
},
{
@@ -25994,8 +25997,8 @@
"xloc": [
"default-mobile.handlebars->11->97",
"default-mobile.handlebars->11->98",
- "default.handlebars->31->1344",
- "default.handlebars->31->1345"
+ "default.handlebars->31->1345",
+ "default.handlebars->31->1346"
]
},
{
@@ -26097,7 +26100,7 @@
"zh-chs": "没有桌面",
"zh-cht": "沒有桌面",
"xloc": [
- "default.handlebars->31->1562",
+ "default.handlebars->31->1563",
"default.handlebars->31->706",
"default.handlebars->31->727"
]
@@ -26119,7 +26122,7 @@
"zh-chs": "不能访问桌面",
"zh-cht": "不能訪問桌面",
"xloc": [
- "default.handlebars->31->1523"
+ "default.handlebars->31->1524"
]
},
{
@@ -26139,8 +26142,8 @@
"zh-chs": "找不到事件",
"zh-cht": "找不到事件",
"xloc": [
- "default.handlebars->31->1764",
- "default.handlebars->31->2099",
+ "default.handlebars->31->1765",
+ "default.handlebars->31->2100",
"default.handlebars->31->998"
]
},
@@ -26162,7 +26165,7 @@
"zh-cht": "不能存取檔案",
"xloc": [
"default-mobile.handlebars->11->480",
- "default.handlebars->31->1525"
+ "default.handlebars->31->1526"
]
},
{
@@ -26183,7 +26186,7 @@
"zh-cht": "沒有檔案",
"xloc": [
"default-mobile.handlebars->11->503",
- "default.handlebars->31->1564",
+ "default.handlebars->31->1565",
"default.handlebars->31->703",
"default.handlebars->31->724"
]
@@ -26228,8 +26231,8 @@
"xloc": [
"default-mobile.handlebars->11->481",
"default-mobile.handlebars->11->504",
- "default.handlebars->31->1526",
- "default.handlebars->31->1565"
+ "default.handlebars->31->1527",
+ "default.handlebars->31->1566"
]
},
{
@@ -26309,7 +26312,7 @@
"zh-chs": "没有成员",
"zh-cht": "沒有成員",
"xloc": [
- "default.handlebars->31->1943"
+ "default.handlebars->31->1944"
]
},
{
@@ -26329,7 +26332,7 @@
"zh-chs": "没有新的设备组",
"zh-cht": "沒有新的裝置群",
"xloc": [
- "default.handlebars->31->1888"
+ "default.handlebars->31->1889"
]
},
{
@@ -26349,8 +26352,8 @@
"zh-chs": "没有政策",
"zh-cht": "沒有政策",
"xloc": [
- "default.handlebars->31->1427",
- "default.handlebars->31->1452"
+ "default.handlebars->31->1428",
+ "default.handlebars->31->1453"
]
},
{
@@ -26373,8 +26376,8 @@
"default-mobile.handlebars->11->117",
"default-mobile.handlebars->11->464",
"default-mobile.handlebars->11->511",
- "default.handlebars->31->1370",
- "default.handlebars->31->1572",
+ "default.handlebars->31->1371",
+ "default.handlebars->31->1573",
"default.handlebars->31->717",
"default.handlebars->31->738"
]
@@ -26419,7 +26422,7 @@
"zh-cht": "沒有終端",
"xloc": [
"default-mobile.handlebars->11->502",
- "default.handlebars->31->1563",
+ "default.handlebars->31->1564",
"default.handlebars->31->702",
"default.handlebars->31->723"
]
@@ -26442,7 +26445,7 @@
"zh-cht": "不能訪問終端",
"xloc": [
"default-mobile.handlebars->11->479",
- "default.handlebars->31->1524"
+ "default.handlebars->31->1525"
]
},
{
@@ -26462,7 +26465,7 @@
"zh-chs": "没有工具(MeshCmd /路由器)",
"zh-cht": "沒有工具(MeshCmd /路由器)",
"xloc": [
- "default.handlebars->31->1889"
+ "default.handlebars->31->1890"
]
},
{
@@ -26503,8 +26506,8 @@
"zh-chs": "没有共同的设备组",
"zh-cht": "沒有共同的裝置群",
"xloc": [
- "default.handlebars->31->1949",
- "default.handlebars->31->2069"
+ "default.handlebars->31->1950",
+ "default.handlebars->31->2070"
]
},
{
@@ -26624,8 +26627,8 @@
"zh-chs": "没有共同的设备",
"zh-cht": "沒有共同的裝置",
"xloc": [
- "default.handlebars->31->1955",
- "default.handlebars->31->2081"
+ "default.handlebars->31->1956",
+ "default.handlebars->31->2082"
]
},
{
@@ -26645,7 +26648,7 @@
"zh-chs": "该设备组中没有设备。",
"zh-cht": "該裝置群中沒有裝置。",
"xloc": [
- "default.handlebars->31->1615"
+ "default.handlebars->31->1616"
]
},
{
@@ -26748,7 +26751,7 @@
"zh-chs": "找不到群组。",
"zh-cht": "找不到群組。",
"xloc": [
- "default.handlebars->31->1892"
+ "default.handlebars->31->1893"
]
},
{
@@ -26847,7 +26850,7 @@
"fr": "Aucun numéro de téléphone pour cet utilisateur",
"xloc": [
"default-mobile.handlebars->11->554",
- "default.handlebars->31->2165"
+ "default.handlebars->31->2166"
]
},
{
@@ -26887,7 +26890,7 @@
"zh-chs": "没有录音。",
"zh-cht": "沒有錄音。",
"xloc": [
- "default.handlebars->31->2101"
+ "default.handlebars->31->2102"
]
},
{
@@ -26907,7 +26910,7 @@
"zh-chs": "没有服务器权限",
"zh-cht": "沒有伺服器權限",
"xloc": [
- "default.handlebars->31->1975"
+ "default.handlebars->31->1976"
]
},
{
@@ -26927,7 +26930,7 @@
"zh-chs": "没有用户组成员身份",
"zh-cht": "沒有用戶群成員身份",
"xloc": [
- "default.handlebars->31->2075"
+ "default.handlebars->31->2076"
]
},
{
@@ -26936,7 +26939,7 @@
"fr": "Aucun droit de gestion des utilisateurs",
"xloc": [
"default-mobile.handlebars->11->552",
- "default.handlebars->31->2163"
+ "default.handlebars->31->2164"
]
},
{
@@ -26956,7 +26959,7 @@
"zh-chs": "未找到相应的用户。",
"zh-cht": "未找到相應的用戶。",
"xloc": [
- "default.handlebars->31->1796"
+ "default.handlebars->31->1797"
]
},
{
@@ -27047,24 +27050,24 @@
"default-mobile.handlebars->11->331",
"default-mobile.handlebars->11->351",
"default-mobile.handlebars->11->458",
- "default.handlebars->31->1391",
- "default.handlebars->31->1398",
- "default.handlebars->31->1406",
- "default.handlebars->31->1418",
- "default.handlebars->31->1423",
- "default.handlebars->31->1425",
- "default.handlebars->31->1606",
- "default.handlebars->31->1625",
- "default.handlebars->31->1630",
- "default.handlebars->31->1772",
+ "default.handlebars->31->1392",
+ "default.handlebars->31->1399",
+ "default.handlebars->31->1407",
+ "default.handlebars->31->1419",
+ "default.handlebars->31->1424",
+ "default.handlebars->31->1426",
+ "default.handlebars->31->1607",
+ "default.handlebars->31->1626",
+ "default.handlebars->31->1631",
+ "default.handlebars->31->1773",
"default.handlebars->31->188",
- "default.handlebars->31->1913",
- "default.handlebars->31->1915",
- "default.handlebars->31->1932",
- "default.handlebars->31->1994",
- "default.handlebars->31->2003",
- "default.handlebars->31->2007",
- "default.handlebars->31->2019",
+ "default.handlebars->31->1914",
+ "default.handlebars->31->1916",
+ "default.handlebars->31->1933",
+ "default.handlebars->31->1995",
+ "default.handlebars->31->2004",
+ "default.handlebars->31->2008",
+ "default.handlebars->31->2020",
"default.handlebars->31->207",
"default.handlebars->31->249",
"default.handlebars->31->250",
@@ -27115,7 +27118,7 @@
"zh-chs": "挪威文",
"zh-cht": "挪威文",
"xloc": [
- "default.handlebars->31->1242"
+ "default.handlebars->31->1243"
]
},
{
@@ -27135,7 +27138,7 @@
"zh-chs": "挪威文(Bokmal)",
"zh-cht": "挪威文(Bokmal)",
"xloc": [
- "default.handlebars->31->1243"
+ "default.handlebars->31->1244"
]
},
{
@@ -27155,7 +27158,7 @@
"zh-chs": "挪威文(尼诺斯克)",
"zh-cht": "挪威文(尼諾斯克)",
"xloc": [
- "default.handlebars->31->1244"
+ "default.handlebars->31->1245"
]
},
{
@@ -27239,8 +27242,8 @@
"zh-chs": "未连接",
"zh-cht": "未連接",
"xloc": [
- "default.handlebars->31->1602",
- "default.handlebars->31->1610"
+ "default.handlebars->31->1603",
+ "default.handlebars->31->1611"
]
},
{
@@ -27288,7 +27291,7 @@
"zh-chs": "不在服务器上",
"zh-cht": "不在伺服器上",
"xloc": [
- "default.handlebars->31->2117"
+ "default.handlebars->31->2118"
]
},
{
@@ -27308,8 +27311,8 @@
"zh-chs": "没有设置",
"zh-cht": "沒有設置",
"xloc": [
- "default.handlebars->31->1981",
- "default.handlebars->31->1982"
+ "default.handlebars->31->1982",
+ "default.handlebars->31->1983"
]
},
{
@@ -27329,7 +27332,7 @@
"zh-chs": "未经审核的",
"zh-cht": "未經審核的",
"xloc": [
- "default.handlebars->31->2051"
+ "default.handlebars->31->2052"
]
},
{
@@ -27349,8 +27352,8 @@
"zh-chs": "笔记",
"zh-cht": "筆記",
"xloc": [
- "default.handlebars->31->1434",
- "default.handlebars->31->2027",
+ "default.handlebars->31->1435",
+ "default.handlebars->31->2028",
"default.handlebars->31->639",
"default.handlebars->31->711",
"default.handlebars->31->732",
@@ -27394,8 +27397,8 @@
"zh-chs": "通知设置",
"zh-cht": "通知設定",
"xloc": [
- "default.handlebars->31->1331",
- "default.handlebars->31->1601",
+ "default.handlebars->31->1332",
+ "default.handlebars->31->1602",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
]
},
@@ -27416,7 +27419,7 @@
"zh-chs": "通知设置还必须在帐户设置中启用。",
"zh-cht": "通知設定還必須在帳戶設定中啟用。",
"xloc": [
- "default.handlebars->31->1597"
+ "default.handlebars->31->1598"
]
},
{
@@ -27436,7 +27439,7 @@
"zh-chs": "通知音效。",
"zh-cht": "通知音效。",
"xloc": [
- "default.handlebars->31->1326"
+ "default.handlebars->31->1327"
]
},
{
@@ -27456,7 +27459,7 @@
"zh-chs": "通知",
"zh-cht": "通知",
"xloc": [
- "default.handlebars->31->1424"
+ "default.handlebars->31->1425"
]
},
{
@@ -27476,7 +27479,7 @@
"zh-chs": "通知",
"zh-cht": "通知",
"xloc": [
- "default.handlebars->31->2033",
+ "default.handlebars->31->2034",
"default.handlebars->31->204"
]
},
@@ -27517,9 +27520,9 @@
"zh-chs": "通知使用者",
"zh-cht": "通知使用者",
"xloc": [
- "default.handlebars->31->1491",
- "default.handlebars->31->1495",
- "default.handlebars->31->1498"
+ "default.handlebars->31->1492",
+ "default.handlebars->31->1496",
+ "default.handlebars->31->1499"
]
},
{
@@ -27539,7 +27542,7 @@
"zh-chs": "通知{0}",
"zh-cht": "通知{0}",
"xloc": [
- "default.handlebars->31->1835"
+ "default.handlebars->31->1836"
]
},
{
@@ -27547,7 +27550,7 @@
"fr": "Null",
"nl": "Null",
"xloc": [
- "default.handlebars->31->2216"
+ "default.handlebars->31->2217"
]
},
{
@@ -27570,7 +27573,7 @@
"default-mobile.handlebars->11->94",
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->31->1382",
+ "default.handlebars->31->1383",
"default.handlebars->31->609",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
@@ -27621,7 +27624,7 @@
"zh-chs": "欧舒丹",
"zh-cht": "歐舒丹",
"xloc": [
- "default.handlebars->31->1245"
+ "default.handlebars->31->1246"
]
},
{
@@ -27642,7 +27645,7 @@
"zh-cht": "發生在{0}",
"xloc": [
"default-mobile.handlebars->11->520",
- "default.handlebars->31->2131"
+ "default.handlebars->31->2132"
]
},
{
@@ -27682,7 +27685,7 @@
"zh-chs": "离线用户",
"zh-cht": "離線用戶",
"xloc": [
- "default.handlebars->31->1793"
+ "default.handlebars->31->1794"
]
},
{
@@ -27723,7 +27726,7 @@
"zh-cht": "舊密碼:",
"xloc": [
"default-mobile.handlebars->11->96",
- "default.handlebars->31->1343"
+ "default.handlebars->31->1344"
]
},
{
@@ -27743,7 +27746,7 @@
"zh-chs": "一天",
"zh-cht": "一天",
"xloc": [
- "default.handlebars->31->1769"
+ "default.handlebars->31->1770"
]
},
{
@@ -27806,7 +27809,7 @@
"zh-chs": "在线用户",
"zh-cht": "在線用戶",
"xloc": [
- "default.handlebars->31->1792"
+ "default.handlebars->31->1793"
]
},
{
@@ -27990,7 +27993,7 @@
"zh-chs": "开头:{0}",
"zh-cht": "開場:{0}",
"xloc": [
- "default.handlebars->31->1679"
+ "default.handlebars->31->1680"
]
},
{
@@ -28036,8 +28039,8 @@
"zh-cht": "操作",
"xloc": [
"default-mobile.handlebars->11->286",
- "default.handlebars->31->1819",
- "default.handlebars->31->1900",
+ "default.handlebars->31->1820",
+ "default.handlebars->31->1901",
"default.handlebars->31->468",
"default.handlebars->31->483",
"default.handlebars->31->785"
@@ -28077,7 +28080,7 @@
"zh-chs": "奥里亚",
"zh-cht": "奧里亞",
"xloc": [
- "default.handlebars->31->1246"
+ "default.handlebars->31->1247"
]
},
{
@@ -28097,7 +28100,7 @@
"zh-chs": "奥罗莫",
"zh-cht": "奧羅莫",
"xloc": [
- "default.handlebars->31->1247"
+ "default.handlebars->31->1248"
]
},
{
@@ -28276,7 +28279,7 @@
"zh-chs": "部分的",
"zh-cht": "部分的",
"xloc": [
- "default.handlebars->31->1807"
+ "default.handlebars->31->1808"
]
},
{
@@ -28332,7 +28335,7 @@
"xloc": [
"default-mobile.handlebars->11->115",
"default-mobile.handlebars->11->462",
- "default.handlebars->31->1368"
+ "default.handlebars->31->1369"
]
},
{
@@ -28352,7 +28355,7 @@
"zh-chs": "部分权限",
"zh-cht": "部分權限",
"xloc": [
- "default.handlebars->31->1978"
+ "default.handlebars->31->1979"
]
},
{
@@ -28393,13 +28396,13 @@
"zh-cht": "密碼",
"xloc": [
"default-mobile.handlebars->11->294",
- "default.handlebars->31->1458",
- "default.handlebars->31->1863",
+ "default.handlebars->31->1459",
"default.handlebars->31->1864",
- "default.handlebars->31->1999",
- "default.handlebars->31->2001",
- "default.handlebars->31->2054",
+ "default.handlebars->31->1865",
+ "default.handlebars->31->2000",
+ "default.handlebars->31->2002",
"default.handlebars->31->2055",
+ "default.handlebars->31->2056",
"default.handlebars->31->310",
"default.handlebars->31->800",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
@@ -28510,7 +28513,7 @@
"fr": "Mot de passe changé.",
"xloc": [
"default-mobile.handlebars->11->548",
- "default.handlebars->31->2159"
+ "default.handlebars->31->2160"
]
},
{
@@ -28551,7 +28554,7 @@
"zh-chs": "密码提示",
"zh-cht": "密碼提示",
"xloc": [
- "default.handlebars->31->2056"
+ "default.handlebars->31->2057"
]
},
{
@@ -28572,7 +28575,7 @@
"zh-cht": "密碼提示:",
"xloc": [
"default-mobile.handlebars->11->99",
- "default.handlebars->31->1346"
+ "default.handlebars->31->1347"
]
},
{
@@ -28651,8 +28654,8 @@
"account-invite.html->2->5",
"default-mobile.handlebars->11->91",
"default-mobile.handlebars->11->92",
- "default.handlebars->31->1338",
"default.handlebars->31->1339",
+ "default.handlebars->31->1340",
"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",
@@ -28690,7 +28693,7 @@
"default-mobile.handlebars->11->366",
"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->31->1652",
+ "default.handlebars->31->1653",
"default.handlebars->31->945",
"default.handlebars->31->977",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
@@ -28812,7 +28815,7 @@
"zh-chs": "执行英特尔®AMT激活和配置。",
"zh-cht": "執行英特爾®AMT激活和配置。",
"xloc": [
- "default.handlebars->31->1438",
+ "default.handlebars->31->1439",
"default.handlebars->31->298"
]
},
@@ -28964,7 +28967,7 @@
"zh-chs": "执行电源操作= {0},强制执行= {1}",
"zh-cht": "執行電源操作= {0},強制執行= {1}",
"xloc": [
- "default.handlebars->31->1684"
+ "default.handlebars->31->1685"
]
},
{
@@ -28973,7 +28976,7 @@
"fr": "Permission refusée",
"xloc": [
"default-mobile.handlebars->11->529",
- "default.handlebars->31->2140"
+ "default.handlebars->31->2141"
]
},
{
@@ -28994,8 +28997,8 @@
"zh-cht": "權限",
"xloc": [
"default-mobile.handlebars->11->514",
- "default.handlebars->31->1575",
- "default.handlebars->31->1791"
+ "default.handlebars->31->1576",
+ "default.handlebars->31->1792"
]
},
{
@@ -29015,7 +29018,7 @@
"zh-chs": "波斯/伊朗",
"zh-cht": "波斯/伊朗",
"xloc": [
- "default.handlebars->31->1248"
+ "default.handlebars->31->1249"
]
},
{
@@ -29038,10 +29041,10 @@
"default-mobile.handlebars->11->73",
"default-mobile.handlebars->11->76",
"default-mobile.handlebars->11->78",
- "default.handlebars->31->1100",
- "default.handlebars->31->1103",
+ "default.handlebars->31->1101",
+ "default.handlebars->31->1104",
"default.handlebars->31->170",
- "default.handlebars->31->2046"
+ "default.handlebars->31->2047"
]
},
{
@@ -29061,7 +29064,7 @@
"zh-chs": "电话号码",
"zh-cht": "電話號碼",
"xloc": [
- "default.handlebars->31->1993"
+ "default.handlebars->31->1994"
]
},
{
@@ -29082,8 +29085,8 @@
"zh-cht": "電話號碼:",
"xloc": [
"default-mobile.handlebars->11->77",
- "default.handlebars->31->1102",
- "default.handlebars->31->2045"
+ "default.handlebars->31->1103",
+ "default.handlebars->31->2046"
]
},
{
@@ -29242,7 +29245,7 @@
"zh-cht": "請等待幾分鐘以接收驗證。",
"xloc": [
"default-mobile.handlebars->11->87",
- "default.handlebars->31->1333"
+ "default.handlebars->31->1334"
]
},
{
@@ -29263,7 +29266,7 @@
"zh-cht": "外掛指令",
"xloc": [
"default.handlebars->31->215",
- "default.handlebars->31->2251"
+ "default.handlebars->31->2252"
]
},
{
@@ -29407,7 +29410,7 @@
"zh-cht": "政策",
"xloc": [
"default-mobile.handlebars->11->114",
- "default.handlebars->31->1367"
+ "default.handlebars->31->1368"
]
},
{
@@ -29427,7 +29430,7 @@
"zh-chs": "波兰文",
"zh-cht": "波蘭文",
"xloc": [
- "default.handlebars->31->1249"
+ "default.handlebars->31->1250"
]
},
{
@@ -29447,7 +29450,7 @@
"zh-chs": "葡萄牙文",
"zh-cht": "葡萄牙文",
"xloc": [
- "default.handlebars->31->1250"
+ "default.handlebars->31->1251"
]
},
{
@@ -29467,7 +29470,7 @@
"zh-chs": "葡萄牙文(巴西)",
"zh-cht": "葡萄牙文(巴西)",
"xloc": [
- "default.handlebars->31->1251"
+ "default.handlebars->31->1252"
]
},
{
@@ -29548,7 +29551,7 @@
"zh-chs": "电源状态",
"zh-cht": "電源狀態",
"xloc": [
- "default.handlebars->31->1608",
+ "default.handlebars->31->1609",
"default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
]
},
@@ -29678,7 +29681,7 @@
"zh-chs": "存在于服务器上",
"zh-cht": "存在於伺服器上",
"xloc": [
- "default.handlebars->31->2116"
+ "default.handlebars->31->2117"
]
},
{
@@ -29862,7 +29865,7 @@
"zh-chs": "处理控制台命令:“{0}”",
"zh-cht": "處理控制台命令:“{0}”",
"xloc": [
- "default.handlebars->31->1676"
+ "default.handlebars->31->1677"
]
},
{
@@ -29922,9 +29925,9 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->31->1492",
- "default.handlebars->31->1496",
- "default.handlebars->31->1499"
+ "default.handlebars->31->1493",
+ "default.handlebars->31->1497",
+ "default.handlebars->31->1500"
]
},
{
@@ -29944,7 +29947,7 @@
"zh-chs": "协议",
"zh-cht": "協議",
"xloc": [
- "default.handlebars->31->2114",
+ "default.handlebars->31->2115",
"player.handlebars->3->16"
]
},
@@ -30004,7 +30007,7 @@
"zh-cht": "公開鏈結",
"xloc": [
"default-mobile.handlebars->11->126",
- "default.handlebars->31->1637"
+ "default.handlebars->31->1638"
]
},
{
@@ -30024,7 +30027,7 @@
"zh-chs": "旁遮普文",
"zh-cht": "旁遮普文",
"xloc": [
- "default.handlebars->31->1252"
+ "default.handlebars->31->1253"
]
},
{
@@ -30044,7 +30047,7 @@
"zh-chs": "旁遮普(印度)",
"zh-cht": "旁遮普(印度)",
"xloc": [
- "default.handlebars->31->1253"
+ "default.handlebars->31->1254"
]
},
{
@@ -30064,7 +30067,7 @@
"zh-chs": "旁遮普(巴基斯坦)",
"zh-cht": "旁遮普(巴基斯坦)",
"xloc": [
- "default.handlebars->31->1254"
+ "default.handlebars->31->1255"
]
},
{
@@ -30123,7 +30126,7 @@
"zh-chs": "盖丘亚族",
"zh-cht": "蓋丘亞族",
"xloc": [
- "default.handlebars->31->1255"
+ "default.handlebars->31->1256"
]
},
{
@@ -30308,7 +30311,7 @@
"zh-chs": "RSS",
"zh-cht": "RSS",
"xloc": [
- "default.handlebars->31->2215"
+ "default.handlebars->31->2216"
]
},
{
@@ -30348,7 +30351,7 @@
"zh-chs": "随机密码",
"zh-cht": "隨機密碼",
"xloc": [
- "default.handlebars->31->1459"
+ "default.handlebars->31->1460"
]
},
{
@@ -30368,7 +30371,7 @@
"zh-chs": "随机密码。",
"zh-cht": "隨機密碼。",
"xloc": [
- "default.handlebars->31->1865"
+ "default.handlebars->31->1866"
]
},
{
@@ -30425,9 +30428,9 @@
"zh-chs": "真正的名字",
"zh-cht": "真正的名字",
"xloc": [
- "default.handlebars->31->1990",
- "default.handlebars->31->1992",
- "default.handlebars->31->2047"
+ "default.handlebars->31->1991",
+ "default.handlebars->31->1993",
+ "default.handlebars->31->2048"
]
},
{
@@ -30447,7 +30450,7 @@
"zh-chs": "境界",
"zh-cht": "境界",
"xloc": [
- "default.handlebars->31->1874"
+ "default.handlebars->31->1875"
]
},
{
@@ -30490,7 +30493,7 @@
"zh-chs": "记录会议",
"zh-cht": "記錄會議",
"xloc": [
- "default.handlebars->31->1405"
+ "default.handlebars->31->1406"
]
},
{
@@ -30530,7 +30533,7 @@
"zh-chs": "记录会议",
"zh-cht": "記錄會議",
"xloc": [
- "default.handlebars->31->1502"
+ "default.handlebars->31->1503"
]
},
{
@@ -30550,7 +30553,7 @@
"zh-chs": "记录细节",
"zh-cht": "記錄細節",
"xloc": [
- "default.handlebars->31->2128"
+ "default.handlebars->31->2129"
]
},
{
@@ -30592,7 +30595,7 @@
"xloc": [
"default-mobile.handlebars->11->132",
"default-mobile.handlebars->11->354",
- "default.handlebars->31->1644",
+ "default.handlebars->31->1645",
"default.handlebars->31->964"
]
},
@@ -30724,7 +30727,7 @@
"zh-chs": "中继数量",
"zh-cht": "中繼數量",
"xloc": [
- "default.handlebars->31->2194"
+ "default.handlebars->31->2195"
]
},
{
@@ -30744,7 +30747,7 @@
"zh-chs": "中继错误",
"zh-cht": "中繼錯誤",
"xloc": [
- "default.handlebars->31->2187"
+ "default.handlebars->31->2188"
]
},
{
@@ -30764,8 +30767,8 @@
"zh-chs": "中继连接",
"zh-cht": "中繼連接",
"xloc": [
- "default.handlebars->31->2193",
- "default.handlebars->31->2209"
+ "default.handlebars->31->2194",
+ "default.handlebars->31->2210"
]
},
{
@@ -30923,7 +30926,7 @@
"zh-cht": "遠程命令",
"xloc": [
"default-mobile.handlebars->11->489",
- "default.handlebars->31->1534"
+ "default.handlebars->31->1535"
]
},
{
@@ -30945,8 +30948,8 @@
"xloc": [
"default-mobile.handlebars->11->476",
"default-mobile.handlebars->11->496",
- "default.handlebars->31->1520",
- "default.handlebars->31->1556"
+ "default.handlebars->31->1521",
+ "default.handlebars->31->1557"
]
},
{
@@ -30989,8 +30992,8 @@
"zh-chs": "远程桌面连接栏已激活/更新",
"zh-cht": "遠程桌面連接欄已激活/更新",
"xloc": [
- "default.handlebars->31->1690",
- "default.handlebars->31->1696"
+ "default.handlebars->31->1691",
+ "default.handlebars->31->1697"
]
},
{
@@ -31010,7 +31013,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->31->1691"
+ "default.handlebars->31->1692"
]
},
{
@@ -31030,7 +31033,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->31->1697"
+ "default.handlebars->31->1698"
]
},
{
@@ -31050,9 +31053,9 @@
"zh-chs": "本地用户强行关闭了远程桌面连接",
"zh-cht": "本地用戶強行關閉了遠程桌面連接",
"xloc": [
- "default.handlebars->31->1688",
- "default.handlebars->31->1692",
- "default.handlebars->31->1698"
+ "default.handlebars->31->1689",
+ "default.handlebars->31->1693",
+ "default.handlebars->31->1699"
]
},
{
@@ -31195,8 +31198,8 @@
"xloc": [
"default-mobile.handlebars->11->477",
"default-mobile.handlebars->11->501",
- "default.handlebars->31->1521",
- "default.handlebars->31->1561"
+ "default.handlebars->31->1522",
+ "default.handlebars->31->1562"
]
},
{
@@ -31278,7 +31281,7 @@
"zh-chs": "删除配置",
"zh-cht": "刪除配置",
"xloc": [
- "default.handlebars->31->1378"
+ "default.handlebars->31->1379"
]
},
{
@@ -31332,8 +31335,8 @@
"zh-chs": "删除设备组权限",
"zh-cht": "刪除裝置群權限",
"xloc": [
- "default.handlebars->31->1959",
- "default.handlebars->31->2097"
+ "default.handlebars->31->1960",
+ "default.handlebars->31->2098"
]
},
{
@@ -31353,8 +31356,8 @@
"zh-chs": "删除设备权限",
"zh-cht": "刪除裝置權限",
"xloc": [
- "default.handlebars->31->1957",
- "default.handlebars->31->2084"
+ "default.handlebars->31->1958",
+ "default.handlebars->31->2085"
]
},
{
@@ -31374,7 +31377,7 @@
"zh-chs": "删除设备共享",
"zh-cht": "刪除設備共享",
"xloc": [
- "default.handlebars->31->2082"
+ "default.handlebars->31->2083"
]
},
{
@@ -31411,7 +31414,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->31->2093"
+ "default.handlebars->31->2094"
]
},
{
@@ -31431,8 +31434,8 @@
"zh-chs": "删除用户组权限",
"zh-cht": "刪除用戶群權限",
"xloc": [
- "default.handlebars->31->1580",
- "default.handlebars->31->2089"
+ "default.handlebars->31->1581",
+ "default.handlebars->31->2090"
]
},
{
@@ -31452,7 +31455,7 @@
"zh-chs": "删除用户成员资格",
"zh-cht": "刪除用戶成員資格",
"xloc": [
- "default.handlebars->31->1967"
+ "default.handlebars->31->1968"
]
},
{
@@ -31472,8 +31475,8 @@
"zh-chs": "删除用户权限",
"zh-cht": "刪除用戶權限",
"xloc": [
- "default.handlebars->31->1578",
- "default.handlebars->31->2086"
+ "default.handlebars->31->1579",
+ "default.handlebars->31->2087"
]
},
{
@@ -31493,7 +31496,7 @@
"zh-chs": "删除所有两因素认证。",
"zh-cht": "刪除所有二因子鑑別。",
"xloc": [
- "default.handlebars->31->2059"
+ "default.handlebars->31->2060"
]
},
{
@@ -31513,7 +31516,7 @@
"zh-chs": "删除此用户标识的所有先前事件。",
"zh-cht": "刪除此用戶標識的所有先前事件。",
"xloc": [
- "default.handlebars->31->1866"
+ "default.handlebars->31->1867"
]
},
{
@@ -31533,7 +31536,7 @@
"zh-chs": "断开连接后移除设备",
"zh-cht": "斷開連接後删除裝置",
"xloc": [
- "default.handlebars->31->1500"
+ "default.handlebars->31->1501"
]
},
{
@@ -31594,7 +31597,7 @@
"zh-cht": "刪除電話號碼",
"xloc": [
"default-mobile.handlebars->11->75",
- "default.handlebars->31->1099"
+ "default.handlebars->31->1100"
]
},
{
@@ -31654,7 +31657,7 @@
"zh-chs": "删除此用户",
"zh-cht": "刪除此用戶",
"xloc": [
- "default.handlebars->31->2037"
+ "default.handlebars->31->2038"
]
},
{
@@ -31674,7 +31677,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->31->2073"
+ "default.handlebars->31->2074"
]
},
{
@@ -31694,7 +31697,7 @@
"zh-chs": "删除此设备的用户组权限",
"zh-cht": "刪除此裝置的用戶群權限",
"xloc": [
- "default.handlebars->31->1953"
+ "default.handlebars->31->1954"
]
},
{
@@ -31714,7 +31717,7 @@
"zh-chs": "删除此设备组的用户组权限",
"zh-cht": "刪除此裝置群的用戶群權限",
"xloc": [
- "default.handlebars->31->1947",
+ "default.handlebars->31->1948",
"default.handlebars->31->685"
]
},
@@ -31735,10 +31738,10 @@
"zh-chs": "删除此设备组的用户权限",
"zh-cht": "刪除此裝置群的用戶權限",
"xloc": [
- "default.handlebars->31->1447",
- "default.handlebars->31->1941",
- "default.handlebars->31->2067",
- "default.handlebars->31->2079",
+ "default.handlebars->31->1448",
+ "default.handlebars->31->1942",
+ "default.handlebars->31->2068",
+ "default.handlebars->31->2080",
"default.handlebars->31->686"
]
},
@@ -31759,7 +31762,7 @@
"zh-chs": "删除身份验证应用程序",
"zh-cht": "刪除身份驗證應用程序",
"xloc": [
- "default.handlebars->31->1750"
+ "default.handlebars->31->1751"
]
},
{
@@ -31779,7 +31782,7 @@
"zh-chs": "删除的设备共享{0}",
"zh-cht": "刪除的設備共享{0}",
"xloc": [
- "default.handlebars->31->1761"
+ "default.handlebars->31->1762"
]
},
{
@@ -31799,7 +31802,7 @@
"zh-chs": "从设备组{1}中删除了设备{0}",
"zh-cht": "從設備組{1}中刪除了設備{0}",
"xloc": [
- "default.handlebars->31->1746"
+ "default.handlebars->31->1747"
]
},
{
@@ -31819,7 +31822,7 @@
"zh-chs": "已删除用户{0}的电话号码",
"zh-cht": "已刪除用戶{0}的電話號碼",
"xloc": [
- "default.handlebars->31->1756"
+ "default.handlebars->31->1757"
]
},
{
@@ -31839,7 +31842,7 @@
"zh-chs": "移除安全密钥",
"zh-cht": "移除安全密鑰",
"xloc": [
- "default.handlebars->31->1753"
+ "default.handlebars->31->1754"
]
},
{
@@ -31859,9 +31862,9 @@
"zh-chs": "删除了{0}的用户设备权限",
"zh-cht": "刪除了{0}的用戶設備權限",
"xloc": [
- "default.handlebars->31->1719",
- "default.handlebars->31->1740",
- "default.handlebars->31->1745"
+ "default.handlebars->31->1720",
+ "default.handlebars->31->1741",
+ "default.handlebars->31->1746"
]
},
{
@@ -31881,7 +31884,7 @@
"zh-chs": "从设备组{1}中删除了用户组{0}",
"zh-cht": "從設備組{1}中刪除了用戶組{0}",
"xloc": [
- "default.handlebars->31->1729"
+ "default.handlebars->31->1730"
]
},
{
@@ -31901,7 +31904,7 @@
"zh-chs": "从设备组{1}中删除了用户{0}",
"zh-cht": "已從設備組{1}中刪除用戶{0}",
"xloc": [
- "default.handlebars->31->1742"
+ "default.handlebars->31->1743"
]
},
{
@@ -31921,8 +31924,8 @@
"zh-chs": "从用户组{1}中删除了用户{0}",
"zh-cht": "從用戶組{1}中刪除了用戶{0}",
"xloc": [
- "default.handlebars->31->1721",
- "default.handlebars->31->1731"
+ "default.handlebars->31->1722",
+ "default.handlebars->31->1732"
]
},
{
@@ -31946,7 +31949,7 @@
"default-mobile.handlebars->11->358",
"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->31->1648",
+ "default.handlebars->31->1649",
"default.handlebars->31->532",
"default.handlebars->31->968",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -31971,7 +31974,7 @@
"zh-chs": "重命名:“{0}”为“{1}”",
"zh-cht": "重命名:“{0}”為“{1}”",
"xloc": [
- "default.handlebars->31->1707"
+ "default.handlebars->31->1708"
]
},
{
@@ -31991,7 +31994,7 @@
"zh-chs": "报告日",
"zh-cht": "報告日",
"xloc": [
- "default.handlebars->31->1770"
+ "default.handlebars->31->1771"
]
},
{
@@ -32011,7 +32014,7 @@
"zh-chs": "报告类型",
"zh-cht": "報告類型",
"xloc": [
- "default.handlebars->31->1765"
+ "default.handlebars->31->1766"
]
},
{
@@ -32031,7 +32034,7 @@
"zh-chs": "要求:",
"zh-cht": "要求:",
"xloc": [
- "default.handlebars->31->1347"
+ "default.handlebars->31->1348"
]
},
{
@@ -32052,8 +32055,8 @@
"zh-cht": "要求:{0}。",
"xloc": [
"default-mobile.handlebars->11->100",
- "default.handlebars->31->1871",
- "default.handlebars->31->2057"
+ "default.handlebars->31->1872",
+ "default.handlebars->31->2058"
]
},
{
@@ -32159,7 +32162,7 @@
"zh-cht": "重置/關閉電源",
"xloc": [
"default-mobile.handlebars->11->490",
- "default.handlebars->31->1535"
+ "default.handlebars->31->1536"
]
},
{
@@ -32286,7 +32289,7 @@
"zh-cht": "重置/關閉",
"xloc": [
"default-mobile.handlebars->11->510",
- "default.handlebars->31->1571",
+ "default.handlebars->31->1572",
"default.handlebars->31->716",
"default.handlebars->31->737"
]
@@ -32329,7 +32332,7 @@
"zh-chs": "还原服务器",
"zh-cht": "還原伺服器",
"xloc": [
- "default.handlebars->31->1383"
+ "default.handlebars->31->1384"
]
},
{
@@ -32369,7 +32372,7 @@
"zh-chs": "使用备份还原服务器,这将删除现有服务器数据 span>。仅当您知道自己在做什么时才这样做。",
"zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據 span>。僅當你知道自己在做什麼時才這樣做。",
"xloc": [
- "default.handlebars->31->1380"
+ "default.handlebars->31->1381"
]
},
{
@@ -32411,7 +32414,7 @@
"zh-chs": "限制条件",
"zh-cht": "限制條件",
"xloc": [
- "default.handlebars->31->1979"
+ "default.handlebars->31->1980"
]
},
{
@@ -32431,7 +32434,7 @@
"zh-chs": "雷托-罗曼语",
"zh-cht": "雷托-羅曼語",
"xloc": [
- "default.handlebars->31->1256"
+ "default.handlebars->31->1257"
]
},
{
@@ -32460,7 +32463,7 @@
"zh-chs": "罗马尼亚文",
"zh-cht": "羅馬尼亞文",
"xloc": [
- "default.handlebars->31->1257"
+ "default.handlebars->31->1258"
]
},
{
@@ -32480,7 +32483,7 @@
"zh-chs": "罗马尼亚文(摩尔达维亚)",
"zh-cht": "羅馬尼亞文(摩爾達維亞)",
"xloc": [
- "default.handlebars->31->1258"
+ "default.handlebars->31->1259"
]
},
{
@@ -32502,7 +32505,7 @@
"xloc": [
"default-mobile.handlebars->11->118",
"default-mobile.handlebars->11->348",
- "default.handlebars->31->1616",
+ "default.handlebars->31->1617",
"default.handlebars->31->953"
]
},
@@ -32782,7 +32785,7 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->31->1683"
+ "default.handlebars->31->1684"
]
},
{
@@ -32802,7 +32805,7 @@
"zh-chs": "以用户身份运行命令",
"zh-cht": "以用戶身份運行命令",
"xloc": [
- "default.handlebars->31->1758"
+ "default.handlebars->31->1759"
]
},
{
@@ -32822,7 +32825,7 @@
"zh-chs": "如果可能,以用户身份运行命令",
"zh-cht": "如果可能,以用戶身份運行命令",
"xloc": [
- "default.handlebars->31->1759"
+ "default.handlebars->31->1760"
]
},
{
@@ -32842,7 +32845,7 @@
"zh-chs": "俄文",
"zh-cht": "俄文",
"xloc": [
- "default.handlebars->31->1259"
+ "default.handlebars->31->1260"
]
},
{
@@ -32862,7 +32865,7 @@
"zh-chs": "俄文(摩尔达维亚)",
"zh-cht": "俄文(摩爾達維亞)",
"xloc": [
- "default.handlebars->31->1260"
+ "default.handlebars->31->1261"
]
},
{
@@ -32900,8 +32903,8 @@
"zh-chs": "短信",
"zh-cht": "短信",
"xloc": [
- "default.handlebars->31->2024",
- "default.handlebars->31->2029",
+ "default.handlebars->31->2025",
+ "default.handlebars->31->2030",
"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",
@@ -32926,7 +32929,7 @@
"zh-chs": "此用户的短信功能电话号码。",
"zh-cht": "此用戶的短信功能電話號碼。",
"xloc": [
- "default.handlebars->31->2043"
+ "default.handlebars->31->2044"
]
},
{
@@ -32935,7 +32938,7 @@
"fr": "Erreur SMS",
"xloc": [
"default-mobile.handlebars->11->556",
- "default.handlebars->31->2167"
+ "default.handlebars->31->2168"
]
},
{
@@ -32944,7 +32947,7 @@
"fr": "Erreur SMS: {0}",
"xloc": [
"default-mobile.handlebars->11->557",
- "default.handlebars->31->2168"
+ "default.handlebars->31->2169"
]
},
{
@@ -32953,7 +32956,7 @@
"fr": "Passerelle SMS non activée",
"xloc": [
"default-mobile.handlebars->11->551",
- "default.handlebars->31->2162"
+ "default.handlebars->31->2163"
]
},
{
@@ -32984,7 +32987,7 @@
"fr": "SMS envoyé avec succès.",
"xloc": [
"default-mobile.handlebars->11->555",
- "default.handlebars->31->2166"
+ "default.handlebars->31->2167"
]
},
{
@@ -33042,7 +33045,7 @@
"zh-chs": "萨米(拉普兰)",
"zh-cht": "薩米(拉普蘭)",
"xloc": [
- "default.handlebars->31->1261"
+ "default.handlebars->31->1262"
]
},
{
@@ -33100,7 +33103,7 @@
"zh-chs": "三乡",
"zh-cht": "三鄉",
"xloc": [
- "default.handlebars->31->1262"
+ "default.handlebars->31->1263"
]
},
{
@@ -33120,7 +33123,7 @@
"zh-chs": "梵文",
"zh-cht": "梵文",
"xloc": [
- "default.handlebars->31->1263"
+ "default.handlebars->31->1264"
]
},
{
@@ -33140,7 +33143,7 @@
"zh-chs": "撒丁岛",
"zh-cht": "撒丁島",
"xloc": [
- "default.handlebars->31->1264"
+ "default.handlebars->31->1265"
]
},
{
@@ -33532,7 +33535,7 @@
"default-mobile.handlebars->11->295",
"default-mobile.handlebars->11->423",
"default.handlebars->31->1051",
- "default.handlebars->31->2025",
+ "default.handlebars->31->2026",
"default.handlebars->31->311",
"default.handlebars->31->801"
]
@@ -33554,7 +33557,7 @@
"zh-chs": "安全密钥",
"zh-cht": "安全密鑰",
"xloc": [
- "default.handlebars->31->2022"
+ "default.handlebars->31->2023"
]
},
{
@@ -33563,7 +33566,7 @@
"fr": "Avertissement de sécurité",
"xloc": [
"default-mobile.handlebars->11->525",
- "default.handlebars->31->2136"
+ "default.handlebars->31->2137"
]
},
{
@@ -33603,9 +33606,9 @@
"zh-chs": "全选",
"zh-cht": "全選",
"xloc": [
- "default.handlebars->31->1640",
- "default.handlebars->31->1815",
- "default.handlebars->31->1898",
+ "default.handlebars->31->1641",
+ "default.handlebars->31->1816",
+ "default.handlebars->31->1899",
"default.handlebars->31->454",
"default.handlebars->31->960",
"default.handlebars->31->962",
@@ -33634,9 +33637,9 @@
"zh-chs": "选择无",
"zh-cht": "選擇無",
"xloc": [
- "default.handlebars->31->1639",
- "default.handlebars->31->1814",
- "default.handlebars->31->1897",
+ "default.handlebars->31->1640",
+ "default.handlebars->31->1815",
+ "default.handlebars->31->1898",
"default.handlebars->31->453",
"default.handlebars->31->961",
"default.handlebars->meshContextMenu->cxselectnone"
@@ -33739,8 +33742,8 @@
"zh-chs": "选择要对所有选定用户执行的操作。",
"zh-cht": "選擇要對所有選定用戶執行的操作。",
"xloc": [
- "default.handlebars->31->1818",
- "default.handlebars->31->1899"
+ "default.handlebars->31->1819",
+ "default.handlebars->31->1900"
]
},
{
@@ -33781,7 +33784,7 @@
"zh-chs": "选择新密码",
"zh-cht": "選擇新密碼",
"xloc": [
- "default.handlebars->31->1460"
+ "default.handlebars->31->1461"
]
},
{
@@ -33823,7 +33826,7 @@
"zh-cht": "僅自我事件",
"xloc": [
"default-mobile.handlebars->11->506",
- "default.handlebars->31->1567"
+ "default.handlebars->31->1568"
]
},
{
@@ -33867,7 +33870,7 @@
"zh-chs": "发电邮",
"zh-cht": "發電郵",
"xloc": [
- "default.handlebars->31->1829"
+ "default.handlebars->31->1830"
]
},
{
@@ -33928,7 +33931,7 @@
"zh-chs": "发送短信",
"zh-cht": "發送簡訊",
"xloc": [
- "default.handlebars->31->1827"
+ "default.handlebars->31->1828"
]
},
{
@@ -33948,7 +33951,7 @@
"zh-chs": "发送短信给该用户",
"zh-cht": "發送短信給該用戶",
"xloc": [
- "default.handlebars->31->2030"
+ "default.handlebars->31->2031"
]
},
{
@@ -33968,7 +33971,7 @@
"zh-chs": "发送电邮给该用户",
"zh-cht": "發送電郵給該用戶",
"xloc": [
- "default.handlebars->31->2032"
+ "default.handlebars->31->2033"
]
},
{
@@ -33988,7 +33991,7 @@
"zh-chs": "向该组中的所有用户发送通知。",
"zh-cht": "向該群中的所有用戶發送通知。",
"xloc": [
- "default.handlebars->31->1938"
+ "default.handlebars->31->1939"
]
},
{
@@ -34008,7 +34011,7 @@
"zh-chs": "向该用户发送文本通知。",
"zh-cht": "向該用戶發送文本通知。",
"xloc": [
- "default.handlebars->31->1830"
+ "default.handlebars->31->1831"
]
},
{
@@ -34028,7 +34031,7 @@
"zh-chs": "发送电邮给用户",
"zh-cht": "發送電郵給用戶",
"xloc": [
- "default.handlebars->31->1810"
+ "default.handlebars->31->1811"
]
},
{
@@ -34068,7 +34071,7 @@
"zh-chs": "发送邀请电邮。",
"zh-cht": "發送邀請電郵。",
"xloc": [
- "default.handlebars->31->1870"
+ "default.handlebars->31->1871"
]
},
{
@@ -34191,7 +34194,7 @@
"zh-chs": "发送用户通知",
"zh-cht": "發送用戶通知",
"xloc": [
- "default.handlebars->31->2034"
+ "default.handlebars->31->2035"
]
},
{
@@ -34211,7 +34214,7 @@
"zh-chs": "塞尔维亚",
"zh-cht": "塞爾維亞",
"xloc": [
- "default.handlebars->31->1267"
+ "default.handlebars->31->1268"
]
},
{
@@ -34252,7 +34255,7 @@
"zh-chs": "服务器备份",
"zh-cht": "伺服器備份",
"xloc": [
- "default.handlebars->31->1880"
+ "default.handlebars->31->1881"
]
},
{
@@ -34272,7 +34275,7 @@
"zh-chs": "服务器证书",
"zh-cht": "伺服器憑證",
"xloc": [
- "default.handlebars->31->2227"
+ "default.handlebars->31->2228"
]
},
{
@@ -34292,7 +34295,7 @@
"zh-chs": "服务器数据库",
"zh-cht": "伺服器數據庫",
"xloc": [
- "default.handlebars->31->2228"
+ "default.handlebars->31->2229"
]
},
{
@@ -34314,9 +34317,9 @@
"xloc": [
"default-mobile.handlebars->11->483",
"default-mobile.handlebars->11->498",
- "default.handlebars->31->1528",
- "default.handlebars->31->1558",
- "default.handlebars->31->1877",
+ "default.handlebars->31->1529",
+ "default.handlebars->31->1559",
+ "default.handlebars->31->1878",
"default.handlebars->31->709",
"default.handlebars->31->730"
]
@@ -34347,7 +34350,7 @@
"fr": "Limite du serveur",
"xloc": [
"default-mobile.handlebars->11->524",
- "default.handlebars->31->2135"
+ "default.handlebars->31->2136"
]
},
{
@@ -34367,8 +34370,8 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->31->1802",
- "default.handlebars->31->1891"
+ "default.handlebars->31->1803",
+ "default.handlebars->31->1892"
]
},
{
@@ -34388,7 +34391,7 @@
"zh-chs": "服务器配额",
"zh-cht": "伺服器配額",
"xloc": [
- "default.handlebars->31->1996"
+ "default.handlebars->31->1997"
]
},
{
@@ -34408,7 +34411,7 @@
"zh-chs": "服务器还原",
"zh-cht": "伺服器還原",
"xloc": [
- "default.handlebars->31->1881"
+ "default.handlebars->31->1882"
]
},
{
@@ -34428,7 +34431,7 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->31->1995"
+ "default.handlebars->31->1996"
]
},
{
@@ -34448,7 +34451,7 @@
"zh-chs": "服务器状态",
"zh-cht": "伺服器狀態",
"xloc": [
- "default.handlebars->31->2173"
+ "default.handlebars->31->2174"
]
},
{
@@ -34488,14 +34491,14 @@
"zh-chs": "服务器跟踪",
"zh-cht": "伺服器追蹤",
"xloc": [
- "default.handlebars->31->2240"
+ "default.handlebars->31->2241"
]
},
{
"en": "Server Tracing Event",
"nl": "Server Tracing Event",
"xloc": [
- "default.handlebars->31->2219"
+ "default.handlebars->31->2220"
]
},
{
@@ -34556,7 +34559,7 @@
"zh-chs": "服务器更新",
"zh-cht": "伺服器更新",
"xloc": [
- "default.handlebars->31->1882"
+ "default.handlebars->31->1883"
]
},
{
@@ -34721,7 +34724,7 @@
"zh-chs": "ServerStats.csv",
"zh-cht": "ServerStats.csv",
"xloc": [
- "default.handlebars->31->2218"
+ "default.handlebars->31->2219"
]
},
{
@@ -34781,7 +34784,7 @@
"zh-chs": "会话",
"zh-cht": "節",
"xloc": [
- "default.handlebars->31->2102"
+ "default.handlebars->31->2103"
]
},
{
@@ -34907,7 +34910,7 @@
"zh-chs": "设置剪贴板内容,{0}个字节",
"zh-cht": "設置剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->31->1681"
+ "default.handlebars->31->1682"
]
},
{
@@ -34990,7 +34993,7 @@
"zh-cht": "設定",
"xloc": [
"agent-translations.json",
- "default.handlebars->31->1439",
+ "default.handlebars->31->1440",
"default.handlebars->31->299"
]
},
@@ -35045,7 +35048,7 @@
"zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。",
"zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。",
"xloc": [
- "default.handlebars->31->1371"
+ "default.handlebars->31->1372"
]
},
{
@@ -35389,7 +35392,7 @@
"zh-cht": "只顯示自己的事件",
"xloc": [
"default-mobile.handlebars->11->486",
- "default.handlebars->31->1531"
+ "default.handlebars->31->1532"
]
},
{
@@ -35409,7 +35412,7 @@
"zh-chs": "显示连接工具栏",
"zh-cht": "顯示連接工具欄",
"xloc": [
- "default.handlebars->31->1493"
+ "default.handlebars->31->1494"
]
},
{
@@ -35509,8 +35512,8 @@
"zh-chs": "显示1分钟",
"zh-cht": "顯示1分鐘",
"xloc": [
- "default.handlebars->31->1833",
- "default.handlebars->31->1856"
+ "default.handlebars->31->1834",
+ "default.handlebars->31->1857"
]
},
{
@@ -35530,8 +35533,8 @@
"zh-chs": "显示10秒",
"zh-cht": "顯示10秒",
"xloc": [
- "default.handlebars->31->1832",
- "default.handlebars->31->1855"
+ "default.handlebars->31->1833",
+ "default.handlebars->31->1856"
]
},
{
@@ -35551,8 +35554,8 @@
"zh-chs": "显示5分钟",
"zh-cht": "顯示5分鐘",
"xloc": [
- "default.handlebars->31->1834",
- "default.handlebars->31->1857"
+ "default.handlebars->31->1835",
+ "default.handlebars->31->1858"
]
},
{
@@ -35572,8 +35575,8 @@
"zh-chs": "显示消息,直到被用户拒绝",
"zh-cht": "顯示消息,直到被用戶拒絕",
"xloc": [
- "default.handlebars->31->1831",
- "default.handlebars->31->1854"
+ "default.handlebars->31->1832",
+ "default.handlebars->31->1855"
]
},
{
@@ -35767,8 +35770,8 @@
"zh-chs": "简单管理员控制模式(ACM)",
"zh-cht": "簡單管理員控制模式(ACM)",
"xloc": [
- "default.handlebars->31->1430",
- "default.handlebars->31->1450"
+ "default.handlebars->31->1431",
+ "default.handlebars->31->1451"
]
},
{
@@ -35788,8 +35791,8 @@
"zh-chs": "简单客户端控制模式(CCM)",
"zh-cht": "簡單客戶端控制模式(CCM)",
"xloc": [
- "default.handlebars->31->1428",
- "default.handlebars->31->1454"
+ "default.handlebars->31->1429",
+ "default.handlebars->31->1455"
]
},
{
@@ -35809,7 +35812,7 @@
"zh-chs": "信地",
"zh-cht": "信地",
"xloc": [
- "default.handlebars->31->1265"
+ "default.handlebars->31->1266"
]
},
{
@@ -35829,7 +35832,7 @@
"zh-chs": "僧伽罗文",
"zh-cht": "僧伽羅文",
"xloc": [
- "default.handlebars->31->1266"
+ "default.handlebars->31->1267"
]
},
{
@@ -35871,8 +35874,8 @@
"zh-chs": "尺寸",
"zh-cht": "尺寸",
"xloc": [
- "default.handlebars->31->2105",
- "default.handlebars->31->2120",
+ "default.handlebars->31->2106",
+ "default.handlebars->31->2121",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
]
},
@@ -36043,7 +36046,7 @@
"zh-chs": "斯洛伐克文",
"zh-cht": "斯洛伐克文",
"xloc": [
- "default.handlebars->31->1268"
+ "default.handlebars->31->1269"
]
},
{
@@ -36063,7 +36066,7 @@
"zh-chs": "斯洛文尼亞文",
"zh-cht": "斯洛文尼亞文",
"xloc": [
- "default.handlebars->31->1269"
+ "default.handlebars->31->1270"
]
},
{
@@ -36146,7 +36149,7 @@
"zh-chs": "软断开代理",
"zh-cht": "軟斷開代理",
"xloc": [
- "default.handlebars->31->1095"
+ "default.handlebars->31->1096"
]
},
{
@@ -36207,7 +36210,7 @@
"zh-chs": "索马尼",
"zh-cht": "索馬尼",
"xloc": [
- "default.handlebars->31->1270"
+ "default.handlebars->31->1271"
]
},
{
@@ -36227,7 +36230,7 @@
"zh-chs": "索比亚文",
"zh-cht": "索比亞文",
"xloc": [
- "default.handlebars->31->1271"
+ "default.handlebars->31->1272"
]
},
{
@@ -36378,7 +36381,7 @@
"zh-chs": "西班牙文",
"zh-cht": "西班牙文",
"xloc": [
- "default.handlebars->31->1272"
+ "default.handlebars->31->1273"
]
},
{
@@ -36398,7 +36401,7 @@
"zh-chs": "西班牙文(阿根廷)",
"zh-cht": "西班牙文(阿根廷)",
"xloc": [
- "default.handlebars->31->1273"
+ "default.handlebars->31->1274"
]
},
{
@@ -36418,7 +36421,7 @@
"zh-chs": "西班牙文(玻利维亚)",
"zh-cht": "西班牙文(玻利維亞)",
"xloc": [
- "default.handlebars->31->1274"
+ "default.handlebars->31->1275"
]
},
{
@@ -36438,7 +36441,7 @@
"zh-chs": "西班牙文(智利)",
"zh-cht": "西班牙文(智利)",
"xloc": [
- "default.handlebars->31->1275"
+ "default.handlebars->31->1276"
]
},
{
@@ -36458,7 +36461,7 @@
"zh-chs": "西班牙文(哥伦比亚)",
"zh-cht": "西班牙文(哥倫比亞)",
"xloc": [
- "default.handlebars->31->1276"
+ "default.handlebars->31->1277"
]
},
{
@@ -36478,7 +36481,7 @@
"zh-chs": "西班牙文(哥斯达黎加)",
"zh-cht": "西班牙文(哥斯達黎加)",
"xloc": [
- "default.handlebars->31->1277"
+ "default.handlebars->31->1278"
]
},
{
@@ -36498,7 +36501,7 @@
"zh-chs": "西班牙文(多米尼加共和国)",
"zh-cht": "西班牙文(多米尼加共和國)",
"xloc": [
- "default.handlebars->31->1278"
+ "default.handlebars->31->1279"
]
},
{
@@ -36518,7 +36521,7 @@
"zh-chs": "西班牙文(厄瓜多尔)",
"zh-cht": "西班牙文(厄瓜多爾)",
"xloc": [
- "default.handlebars->31->1279"
+ "default.handlebars->31->1280"
]
},
{
@@ -36538,7 +36541,7 @@
"zh-chs": "西班牙文(萨尔瓦多)",
"zh-cht": "西班牙文(薩爾瓦多)",
"xloc": [
- "default.handlebars->31->1280"
+ "default.handlebars->31->1281"
]
},
{
@@ -36558,7 +36561,7 @@
"zh-chs": "西班牙文(危地马拉)",
"zh-cht": "西班牙文(危地馬拉)",
"xloc": [
- "default.handlebars->31->1281"
+ "default.handlebars->31->1282"
]
},
{
@@ -36578,7 +36581,7 @@
"zh-chs": "西班牙文(洪都拉斯)",
"zh-cht": "西班牙文(洪都拉斯)",
"xloc": [
- "default.handlebars->31->1282"
+ "default.handlebars->31->1283"
]
},
{
@@ -36598,7 +36601,7 @@
"zh-chs": "西班牙文(墨西哥)",
"zh-cht": "西班牙文(墨西哥)",
"xloc": [
- "default.handlebars->31->1283"
+ "default.handlebars->31->1284"
]
},
{
@@ -36618,7 +36621,7 @@
"zh-chs": "西班牙文(尼加拉瓜)",
"zh-cht": "西班牙文(尼加拉瓜)",
"xloc": [
- "default.handlebars->31->1284"
+ "default.handlebars->31->1285"
]
},
{
@@ -36638,7 +36641,7 @@
"zh-chs": "西班牙文(巴拿马)",
"zh-cht": "西班牙文(巴拿馬)",
"xloc": [
- "default.handlebars->31->1285"
+ "default.handlebars->31->1286"
]
},
{
@@ -36658,7 +36661,7 @@
"zh-chs": "西班牙文(巴拉圭)",
"zh-cht": "西班牙文(巴拉圭)",
"xloc": [
- "default.handlebars->31->1286"
+ "default.handlebars->31->1287"
]
},
{
@@ -36678,7 +36681,7 @@
"zh-chs": "西班牙文(秘鲁)",
"zh-cht": "西班牙文(秘魯)",
"xloc": [
- "default.handlebars->31->1287"
+ "default.handlebars->31->1288"
]
},
{
@@ -36698,7 +36701,7 @@
"zh-chs": "西班牙文(波多黎各)",
"zh-cht": "西班牙文(波多黎各)",
"xloc": [
- "default.handlebars->31->1288"
+ "default.handlebars->31->1289"
]
},
{
@@ -36718,7 +36721,7 @@
"zh-chs": "西班牙文(西班牙)",
"zh-cht": "西班牙文(西班牙)",
"xloc": [
- "default.handlebars->31->1289"
+ "default.handlebars->31->1290"
]
},
{
@@ -36738,7 +36741,7 @@
"zh-chs": "西班牙文(乌拉圭)",
"zh-cht": "西班牙文(烏拉圭)",
"xloc": [
- "default.handlebars->31->1290"
+ "default.handlebars->31->1291"
]
},
{
@@ -36758,7 +36761,7 @@
"zh-chs": "西班牙文(委内瑞拉)",
"zh-cht": "西班牙文(委內瑞拉)",
"xloc": [
- "default.handlebars->31->1291"
+ "default.handlebars->31->1292"
]
},
{
@@ -36876,8 +36879,8 @@
"zh-cht": "開始時間",
"xloc": [
"default.handlebars->31->202",
- "default.handlebars->31->2103",
- "default.handlebars->31->2122",
+ "default.handlebars->31->2104",
+ "default.handlebars->31->2123",
"default.handlebars->31->872",
"desktop.handlebars->3->14"
]
@@ -36927,7 +36930,7 @@
"zh-chs": "开始桌面多重会话",
"zh-cht": "啟動桌面多路復用會話",
"xloc": [
- "default.handlebars->31->1665"
+ "default.handlebars->31->1666"
]
},
{
@@ -36947,7 +36950,7 @@
"zh-chs": "从{1}到{2}开始了桌面会话“{0}”",
"zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
"xloc": [
- "default.handlebars->31->1674"
+ "default.handlebars->31->1675"
]
},
{
@@ -36967,7 +36970,7 @@
"zh-chs": "从{1}到{2}开始文件管理会话“{0}”",
"zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
"xloc": [
- "default.handlebars->31->1675"
+ "default.handlebars->31->1676"
]
},
{
@@ -36987,7 +36990,7 @@
"zh-chs": "从{1}到{2}开始中继会话“{0}”",
"zh-cht": "從{1}到{2}開始中繼會話“{0}”",
"xloc": [
- "default.handlebars->31->1672"
+ "default.handlebars->31->1673"
]
},
{
@@ -37007,7 +37010,7 @@
"zh-chs": "使用Toast通知启动远程桌面",
"zh-cht": "使用Toast通知啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1694"
+ "default.handlebars->31->1695"
]
},
{
@@ -37027,7 +37030,7 @@
"zh-chs": "启动远程桌面,而无需通知",
"zh-cht": "啟動遠程桌面,而無需通知",
"xloc": [
- "default.handlebars->31->1695"
+ "default.handlebars->31->1696"
]
},
{
@@ -37047,7 +37050,7 @@
"zh-chs": "启动带有Toast通知的远程文件",
"zh-cht": "啟動帶有Toast通知的遠程文件",
"xloc": [
- "default.handlebars->31->1701"
+ "default.handlebars->31->1702"
]
},
{
@@ -37067,7 +37070,7 @@
"zh-chs": "已启动的远程文件,恕不另行通知",
"zh-cht": "已啟動的遠程文件,恕不另行通知",
"xloc": [
- "default.handlebars->31->1702"
+ "default.handlebars->31->1703"
]
},
{
@@ -37087,7 +37090,7 @@
"zh-chs": "从{1}到{2}开始了终端会话“{0}”",
"zh-cht": "從{1}到{2}開始了終端會話“{0}”",
"xloc": [
- "default.handlebars->31->1673"
+ "default.handlebars->31->1674"
]
},
{
@@ -37127,7 +37130,7 @@
"zh-chs": "接受本地用户后启动远程桌面",
"zh-cht": "接受本地用戶後啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1689"
+ "default.handlebars->31->1690"
]
},
{
@@ -37147,7 +37150,7 @@
"zh-chs": "本地用户接受后启动远程文件",
"zh-cht": "本地用戶接受後啟動遠程文件",
"xloc": [
- "default.handlebars->31->1699"
+ "default.handlebars->31->1700"
]
},
{
@@ -37208,8 +37211,8 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->31->2050",
- "default.handlebars->31->2115",
+ "default.handlebars->31->2051",
+ "default.handlebars->31->2116",
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
]
},
@@ -37349,7 +37352,7 @@
"zh-chs": "超出储存空间",
"zh-cht": "超出儲存空間",
"xloc": [
- "default.handlebars->31->1620"
+ "default.handlebars->31->1621"
]
},
{
@@ -37369,7 +37372,7 @@
"zh-chs": "强",
"zh-cht": "強",
"xloc": [
- "default.handlebars->31->1364"
+ "default.handlebars->31->1365"
]
},
{
@@ -37414,7 +37417,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->31->1828"
+ "default.handlebars->31->1829"
]
},
{
@@ -37514,7 +37517,7 @@
"zh-chs": "苏图",
"zh-cht": "蘇圖",
"xloc": [
- "default.handlebars->31->1292"
+ "default.handlebars->31->1293"
]
},
{
@@ -37534,7 +37537,7 @@
"zh-chs": "斯瓦希里文",
"zh-cht": "斯瓦希里文",
"xloc": [
- "default.handlebars->31->1293"
+ "default.handlebars->31->1294"
]
},
{
@@ -37574,7 +37577,7 @@
"zh-chs": "瑞典文",
"zh-cht": "瑞典文",
"xloc": [
- "default.handlebars->31->1294"
+ "default.handlebars->31->1295"
]
},
{
@@ -37594,7 +37597,7 @@
"zh-chs": "瑞典文(芬兰)",
"zh-cht": "瑞典文(芬蘭)",
"xloc": [
- "default.handlebars->31->1295"
+ "default.handlebars->31->1296"
]
},
{
@@ -37614,7 +37617,7 @@
"zh-chs": "瑞典文(瑞典)",
"zh-cht": "瑞典文(瑞典)",
"xloc": [
- "default.handlebars->31->1296"
+ "default.handlebars->31->1297"
]
},
{
@@ -37634,7 +37637,7 @@
"zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。",
"zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。",
"xloc": [
- "default.handlebars->31->1444"
+ "default.handlebars->31->1445"
]
},
{
@@ -37654,7 +37657,7 @@
"zh-chs": "将服务器设备名称同步到主机名称",
"zh-cht": "將伺服器裝置名稱同步到主機名稱",
"xloc": [
- "default.handlebars->31->1501"
+ "default.handlebars->31->1502"
]
},
{
@@ -37953,7 +37956,7 @@
"zh-chs": "泰米尔文",
"zh-cht": "泰米爾文",
"xloc": [
- "default.handlebars->31->1297"
+ "default.handlebars->31->1298"
]
},
{
@@ -37973,7 +37976,7 @@
"zh-chs": "塔塔尔族",
"zh-cht": "塔塔爾族",
"xloc": [
- "default.handlebars->31->1298"
+ "default.handlebars->31->1299"
]
},
{
@@ -37993,7 +37996,7 @@
"zh-chs": "泰卢加",
"zh-cht": "泰盧加",
"xloc": [
- "default.handlebars->31->1299"
+ "default.handlebars->31->1300"
]
},
{
@@ -38014,8 +38017,8 @@
"zh-cht": "終端機",
"xloc": [
"default-mobile.handlebars->11->179",
- "default.handlebars->31->1494",
- "default.handlebars->31->2109",
+ "default.handlebars->31->1495",
+ "default.handlebars->31->2110",
"default.handlebars->31->273",
"default.handlebars->31->542",
"default.handlebars->31->694",
@@ -38061,9 +38064,9 @@
"zh-chs": "终端通知",
"zh-cht": "終端機通知",
"xloc": [
- "default.handlebars->31->1413",
- "default.handlebars->31->1927",
- "default.handlebars->31->2014",
+ "default.handlebars->31->1414",
+ "default.handlebars->31->1928",
+ "default.handlebars->31->2015",
"default.handlebars->31->616"
]
},
@@ -38084,9 +38087,9 @@
"zh-chs": "终端提示",
"zh-cht": "終端機提示",
"xloc": [
- "default.handlebars->31->1412",
- "default.handlebars->31->1926",
- "default.handlebars->31->2013",
+ "default.handlebars->31->1413",
+ "default.handlebars->31->1927",
+ "default.handlebars->31->2014",
"default.handlebars->31->615"
]
},
@@ -38196,7 +38199,7 @@
"zh-chs": "泰国",
"zh-cht": "泰國",
"xloc": [
- "default.handlebars->31->1300"
+ "default.handlebars->31->1301"
]
},
{
@@ -38336,7 +38339,7 @@
"zh-cht": "目前沒有任何通知",
"xloc": [
"default-mobile.handlebars->11->519",
- "default.handlebars->31->2130"
+ "default.handlebars->31->2131"
]
},
{
@@ -38345,7 +38348,7 @@
"fr": "Il y a eu {0} tentatives de connexion infructueuses sur ce compte depuis la dernière connexion.",
"xloc": [
"default-mobile.handlebars->11->540",
- "default.handlebars->31->2151"
+ "default.handlebars->31->2152"
]
},
{
@@ -38406,7 +38409,7 @@
"zh-cht": "此帳戶無權建立新的裝置群。",
"xloc": [
"default-mobile.handlebars->11->103",
- "default.handlebars->31->1350"
+ "default.handlebars->31->1351"
]
},
{
@@ -38500,7 +38503,7 @@
"zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。",
"zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。",
"xloc": [
- "default.handlebars->31->1479"
+ "default.handlebars->31->1480"
]
},
{
@@ -38541,7 +38544,7 @@
"zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。",
"zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
"xloc": [
- "default.handlebars->31->1476"
+ "default.handlebars->31->1477"
]
},
{
@@ -38701,7 +38704,7 @@
"zh-chs": "蒂格雷",
"zh-cht": "蒂格雷",
"xloc": [
- "default.handlebars->31->1301"
+ "default.handlebars->31->1302"
]
},
{
@@ -38761,7 +38764,7 @@
"zh-chs": "时间跨度",
"zh-cht": "時間跨度",
"xloc": [
- "default.handlebars->31->1767"
+ "default.handlebars->31->1768"
]
},
{
@@ -38962,7 +38965,7 @@
"zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。",
"zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。",
"xloc": [
- "default.handlebars->31->1337"
+ "default.handlebars->31->1338"
]
},
{
@@ -39561,7 +39564,7 @@
"zh-chs": "特松加",
"zh-cht": "特松加",
"xloc": [
- "default.handlebars->31->1302"
+ "default.handlebars->31->1303"
]
},
{
@@ -39581,7 +39584,7 @@
"zh-chs": "茨瓦纳",
"zh-cht": "茨瓦納",
"xloc": [
- "default.handlebars->31->1303"
+ "default.handlebars->31->1304"
]
},
{
@@ -39601,7 +39604,7 @@
"zh-chs": "土耳其",
"zh-cht": "土耳其",
"xloc": [
- "default.handlebars->31->1304"
+ "default.handlebars->31->1305"
]
},
{
@@ -39621,7 +39624,7 @@
"zh-chs": "土库曼文",
"zh-cht": "土庫曼文",
"xloc": [
- "default.handlebars->31->1305"
+ "default.handlebars->31->1306"
]
},
{
@@ -39663,9 +39666,9 @@
"xloc": [
"default-mobile.handlebars->11->109",
"default-mobile.handlebars->11->459",
- "default.handlebars->31->1357",
- "default.handlebars->31->1399",
- "default.handlebars->31->1451",
+ "default.handlebars->31->1358",
+ "default.handlebars->31->1400",
+ "default.handlebars->31->1452",
"default.handlebars->31->749",
"default.handlebars->31->924",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
@@ -39689,7 +39692,7 @@
"zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。",
"zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。",
"xloc": [
- "default.handlebars->31->1114"
+ "default.handlebars->31->1115"
]
},
{
@@ -39709,7 +39712,7 @@
"zh-chs": "输入要添加的密钥的名称。",
"zh-cht": "輸入要新增的密鑰的名稱。",
"xloc": [
- "default.handlebars->31->1111"
+ "default.handlebars->31->1112"
]
},
{
@@ -39771,7 +39774,7 @@
"zh-chs": "乌克兰",
"zh-cht": "烏克蘭",
"xloc": [
- "default.handlebars->31->1306"
+ "default.handlebars->31->1307"
]
},
{
@@ -39867,7 +39870,7 @@
"zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。",
"zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。",
"xloc": [
- "default.handlebars->31->1352",
+ "default.handlebars->31->1353",
"default.handlebars->31->558"
]
},
@@ -39888,8 +39891,8 @@
"zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。",
"zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
"xloc": [
- "default.handlebars->31->1354",
- "default.handlebars->31->2244",
+ "default.handlebars->31->1355",
+ "default.handlebars->31->2245",
"default.handlebars->31->560"
]
},
@@ -39899,7 +39902,7 @@
"fr": "Impossible d'ajouter un utilisateur dans ce mode",
"xloc": [
"default-mobile.handlebars->11->536",
- "default.handlebars->31->2147"
+ "default.handlebars->31->2148"
]
},
{
@@ -40027,7 +40030,7 @@
"xloc": [
"agent-translations.json",
"default-mobile.handlebars->11->508",
- "default.handlebars->31->1569",
+ "default.handlebars->31->1570",
"default.handlebars->31->714",
"default.handlebars->31->735"
]
@@ -40071,7 +40074,7 @@
"zh-chs": "卸载代理/删除设备",
"zh-cht": "卸載代理/刪除設備",
"xloc": [
- "default.handlebars->31->1533"
+ "default.handlebars->31->1534"
]
},
{
@@ -40131,11 +40134,11 @@
"default.handlebars->31->122",
"default.handlebars->31->124",
"default.handlebars->31->13",
- "default.handlebars->31->1386",
"default.handlebars->31->1387",
- "default.handlebars->31->2092",
- "default.handlebars->31->2107",
+ "default.handlebars->31->1388",
+ "default.handlebars->31->2093",
"default.handlebars->31->2108",
+ "default.handlebars->31->2109",
"default.handlebars->31->44",
"default.handlebars->31->452",
"default.handlebars->31->46",
@@ -40165,7 +40168,7 @@
"zh-cht": "未知#{0}",
"xloc": [
"default-mobile.handlebars->11->453",
- "default.handlebars->31->1393"
+ "default.handlebars->31->1394"
]
},
{
@@ -40185,7 +40188,7 @@
"zh-chs": "未知动作",
"zh-cht": "未知動作",
"xloc": [
- "default.handlebars->31->2179"
+ "default.handlebars->31->2180"
]
},
{
@@ -40205,8 +40208,8 @@
"zh-chs": "未知设备",
"zh-cht": "未知裝置",
"xloc": [
- "default.handlebars->31->1952",
- "default.handlebars->31->2078"
+ "default.handlebars->31->1953",
+ "default.handlebars->31->2079"
]
},
{
@@ -40226,9 +40229,9 @@
"zh-chs": "未知设备组",
"zh-cht": "未知裝置群",
"xloc": [
- "default.handlebars->31->1946",
- "default.handlebars->31->2066",
- "default.handlebars->31->2183"
+ "default.handlebars->31->1947",
+ "default.handlebars->31->2067",
+ "default.handlebars->31->2184"
]
},
{
@@ -40248,7 +40251,7 @@
"zh-chs": "未知群组",
"zh-cht": "未知群組",
"xloc": [
- "default.handlebars->31->2175"
+ "default.handlebars->31->2176"
]
},
{
@@ -40289,7 +40292,7 @@
"zh-chs": "未知用户组",
"zh-cht": "未知用戶群",
"xloc": [
- "default.handlebars->31->2072"
+ "default.handlebars->31->2073"
]
},
{
@@ -40330,7 +40333,7 @@
"zh-chs": "密码未知",
"zh-cht": "密碼未知",
"xloc": [
- "default.handlebars->31->1467"
+ "default.handlebars->31->1468"
]
},
{
@@ -40372,7 +40375,7 @@
"zh-chs": "解锁帐户",
"zh-cht": "解鎖帳戶",
"xloc": [
- "default.handlebars->31->1821"
+ "default.handlebars->31->1822"
]
},
{
@@ -40438,7 +40441,7 @@
"zh-chs": "最新",
"zh-cht": "最新",
"xloc": [
- "default.handlebars->31->2249"
+ "default.handlebars->31->2250"
]
},
{
@@ -40506,8 +40509,8 @@
"default-mobile.handlebars->11->359",
"default-mobile.handlebars->11->377",
"default-mobile.handlebars->11->380",
- "default.handlebars->31->1649",
- "default.handlebars->31->1657",
+ "default.handlebars->31->1650",
+ "default.handlebars->31->1658",
"default.handlebars->31->969",
"default.handlebars->31->993",
"default.handlebars->31->996",
@@ -40531,7 +40534,7 @@
"zh-chs": "上载网格代理核心",
"zh-cht": "上載mesh agent核心",
"xloc": [
- "default.handlebars->31->1097"
+ "default.handlebars->31->1098"
]
},
{
@@ -40551,7 +40554,7 @@
"zh-chs": "上载核心档案",
"zh-cht": "上載核心檔案",
"xloc": [
- "default.handlebars->31->1094"
+ "default.handlebars->31->1095"
]
},
{
@@ -40654,6 +40657,12 @@
"default.handlebars->31->495"
]
},
+ {
+ "en": "Upload tiny core",
+ "xloc": [
+ "default.handlebars->31->1094"
+ ]
+ },
{
"cs": "Nahrání přepíše 1 soubor. Pokračovat?",
"de": "Das Hochladen wird 1 Datei überschreiben. Fortfahren?",
@@ -40672,7 +40681,7 @@
"zh-cht": "上傳將覆蓋1個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->11->378",
- "default.handlebars->31->1658",
+ "default.handlebars->31->1659",
"default.handlebars->31->994"
]
},
@@ -40694,7 +40703,7 @@
"zh-cht": "上傳將覆蓋{0}個檔案。繼續?",
"xloc": [
"default-mobile.handlebars->11->379",
- "default.handlebars->31->1659",
+ "default.handlebars->31->1660",
"default.handlebars->31->995"
]
},
@@ -40732,7 +40741,7 @@
"zh-chs": "上传:“{0}”",
"zh-cht": "上傳:“{0}”",
"xloc": [
- "default.handlebars->31->1709"
+ "default.handlebars->31->1710"
]
},
{
@@ -40752,7 +40761,7 @@
"zh-chs": "上索布族",
"zh-cht": "上索布族",
"xloc": [
- "default.handlebars->31->1307"
+ "default.handlebars->31->1308"
]
},
{
@@ -40772,7 +40781,7 @@
"zh-chs": "乌尔都文",
"zh-cht": "烏爾都文",
"xloc": [
- "default.handlebars->31->1308"
+ "default.handlebars->31->1309"
]
},
{
@@ -40856,8 +40865,8 @@
"zh-chs": "用过的",
"zh-cht": "用過的",
"xloc": [
- "default.handlebars->31->2169",
- "default.handlebars->31->2171"
+ "default.handlebars->31->2170",
+ "default.handlebars->31->2172"
]
},
{
@@ -40877,11 +40886,11 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->31->1448",
- "default.handlebars->31->1774",
- "default.handlebars->31->1803",
- "default.handlebars->31->1942",
- "default.handlebars->31->2127",
+ "default.handlebars->31->1449",
+ "default.handlebars->31->1775",
+ "default.handlebars->31->1804",
+ "default.handlebars->31->1943",
+ "default.handlebars->31->2128",
"default.handlebars->31->233",
"default.handlebars->31->688"
]
@@ -40903,7 +40912,7 @@
"zh-chs": "用户+档案",
"zh-cht": "用戶+檔案",
"xloc": [
- "default.handlebars->31->1804"
+ "default.handlebars->31->1805"
]
},
{
@@ -40923,10 +40932,10 @@
"zh-chs": "用户帐户导入",
"zh-cht": "用戶帳戶導入",
"xloc": [
- "default.handlebars->31->1837",
"default.handlebars->31->1838",
- "default.handlebars->31->1840",
- "default.handlebars->31->1842"
+ "default.handlebars->31->1839",
+ "default.handlebars->31->1841",
+ "default.handlebars->31->1843"
]
},
{
@@ -40946,7 +40955,7 @@
"zh-chs": "用户帐户",
"zh-cht": "用戶帳戶",
"xloc": [
- "default.handlebars->31->2188"
+ "default.handlebars->31->2189"
]
},
{
@@ -40967,7 +40976,7 @@
"zh-cht": "用戶授權",
"xloc": [
"default-mobile.handlebars->11->461",
- "default.handlebars->31->1446",
+ "default.handlebars->31->1447",
"default.handlebars->31->684"
]
},
@@ -40988,9 +40997,9 @@
"zh-chs": "用户同意",
"zh-cht": "用戶同意",
"xloc": [
- "default.handlebars->31->1419",
- "default.handlebars->31->1933",
- "default.handlebars->31->2020",
+ "default.handlebars->31->1420",
+ "default.handlebars->31->1934",
+ "default.handlebars->31->2021",
"default.handlebars->31->208",
"default.handlebars->31->622",
"default.handlebars->31->773"
@@ -41013,11 +41022,11 @@
"zh-chs": "用户组",
"zh-cht": "用戶群",
"xloc": [
- "default.handlebars->31->1509",
"default.handlebars->31->1510",
- "default.handlebars->31->1906",
- "default.handlebars->31->2074",
- "default.handlebars->31->2095",
+ "default.handlebars->31->1511",
+ "default.handlebars->31->1907",
+ "default.handlebars->31->2075",
+ "default.handlebars->31->2096",
"default.handlebars->31->687"
]
},
@@ -41058,7 +41067,7 @@
"zh-chs": "用户组成员",
"zh-cht": "用戶群成員",
"xloc": [
- "default.handlebars->31->2071"
+ "default.handlebars->31->2072"
]
},
{
@@ -41098,9 +41107,9 @@
"zh-chs": "用户识别码",
"zh-cht": "用戶識別碼",
"xloc": [
- "default.handlebars->31->1574",
- "default.handlebars->31->1987",
- "default.handlebars->31->1988"
+ "default.handlebars->31->1575",
+ "default.handlebars->31->1988",
+ "default.handlebars->31->1989"
]
},
{
@@ -41120,8 +41129,8 @@
"zh-chs": "用户标识符",
"zh-cht": "用戶標識符",
"xloc": [
- "default.handlebars->31->1507",
- "default.handlebars->31->1971"
+ "default.handlebars->31->1508",
+ "default.handlebars->31->1972"
]
},
{
@@ -41148,7 +41157,7 @@
"zh-chs": "用户列表输出",
"zh-cht": "用戶列表輸出",
"xloc": [
- "default.handlebars->31->1849"
+ "default.handlebars->31->1850"
]
},
{
@@ -41169,7 +41178,7 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->11->512",
- "default.handlebars->31->1573"
+ "default.handlebars->31->1574"
]
},
{
@@ -41244,7 +41253,7 @@
"zh-chs": "用户节",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->31->2208"
+ "default.handlebars->31->2209"
]
},
{
@@ -41337,7 +41346,7 @@
"fr": "L'utilisateur existe déjà",
"xloc": [
"default-mobile.handlebars->11->535",
- "default.handlebars->31->2146"
+ "default.handlebars->31->2147"
]
},
{
@@ -41357,8 +41366,8 @@
"zh-chs": "用户浏览器值",
"zh-cht": "用戶瀏覽器值",
"xloc": [
- "default.handlebars->31->1319",
- "default.handlebars->31->1321"
+ "default.handlebars->31->1320",
+ "default.handlebars->31->1322"
]
},
{
@@ -41378,7 +41387,7 @@
"zh-chs": "用户组已更改:{0}",
"zh-cht": "用戶組已更改:{0}",
"xloc": [
- "default.handlebars->31->1738"
+ "default.handlebars->31->1739"
]
},
{
@@ -41398,7 +41407,7 @@
"zh-chs": "已创建用户组:{0}",
"zh-cht": "已創建用戶組:{0}",
"xloc": [
- "default.handlebars->31->1728"
+ "default.handlebars->31->1729"
]
},
{
@@ -41418,7 +41427,7 @@
"zh-chs": "用户组成员身份已更改:{0}",
"zh-cht": "用戶組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->31->1726"
+ "default.handlebars->31->1727"
]
},
{
@@ -41452,7 +41461,7 @@
"fr": "Utilisateur {0} introuvable.",
"xloc": [
"default-mobile.handlebars->11->543",
- "default.handlebars->31->2154"
+ "default.handlebars->31->2155"
]
},
{
@@ -41493,7 +41502,7 @@
"zh-cht": "用戶名",
"xloc": [
"default-mobile.handlebars->11->293",
- "default.handlebars->31->1861",
+ "default.handlebars->31->1862",
"default.handlebars->31->308",
"default.handlebars->31->799",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
@@ -41567,9 +41576,9 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->31->1894",
- "default.handlebars->31->1934",
- "default.handlebars->31->2207",
+ "default.handlebars->31->1895",
+ "default.handlebars->31->1935",
+ "default.handlebars->31->2208",
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
]
},
@@ -41590,7 +41599,7 @@
"zh-chs": "用户会话",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->31->2192"
+ "default.handlebars->31->2193"
]
},
{
@@ -41599,7 +41608,7 @@
"fr": "Utilisateurs {0} introuvables.",
"xloc": [
"default-mobile.handlebars->11->544",
- "default.handlebars->31->2155"
+ "default.handlebars->31->2156"
]
},
{
@@ -41640,7 +41649,7 @@
"zh-chs": "验证电邮",
"zh-cht": "驗證電郵",
"xloc": [
- "default.handlebars->31->1816"
+ "default.handlebars->31->1817"
]
},
{
@@ -41649,7 +41658,7 @@
"fr": "Exception de validation",
"xloc": [
"default-mobile.handlebars->11->537",
- "default.handlebars->31->2148"
+ "default.handlebars->31->2149"
]
},
{
@@ -41689,7 +41698,7 @@
"zh-chs": "文达",
"zh-cht": "文達",
"xloc": [
- "default.handlebars->31->1309"
+ "default.handlebars->31->1310"
]
},
{
@@ -41753,7 +41762,7 @@
"zh-chs": "已验证",
"zh-cht": "已驗證",
"xloc": [
- "default.handlebars->31->2052"
+ "default.handlebars->31->2053"
]
},
{
@@ -41795,8 +41804,8 @@
"zh-cht": "驗證電話號碼",
"xloc": [
"default-mobile.handlebars->11->74",
- "default.handlebars->31->1098",
- "default.handlebars->31->1812"
+ "default.handlebars->31->1099",
+ "default.handlebars->31->1813"
]
},
{
@@ -41816,7 +41825,7 @@
"zh-chs": "用户{0}的已验证电话号码",
"zh-cht": "用戶{0}的已驗證電話號碼",
"xloc": [
- "default.handlebars->31->1755"
+ "default.handlebars->31->1756"
]
},
{
@@ -41905,7 +41914,7 @@
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
"xloc": [
- "default.handlebars->31->2245"
+ "default.handlebars->31->2246"
]
},
{
@@ -41947,7 +41956,7 @@
"zh-chs": "越南文",
"zh-cht": "越南文",
"xloc": [
- "default.handlebars->31->1310"
+ "default.handlebars->31->1311"
]
},
{
@@ -41987,7 +41996,7 @@
"zh-chs": "查看所有事件",
"zh-cht": "查看所有事件",
"xloc": [
- "default.handlebars->31->1886"
+ "default.handlebars->31->1887"
]
},
{
@@ -42007,8 +42016,8 @@
"zh-chs": "查看变更日志",
"zh-cht": "查看變更日誌",
"xloc": [
- "default.handlebars->31->2248",
- "default.handlebars->31->2250"
+ "default.handlebars->31->2249",
+ "default.handlebars->31->2251"
]
},
{
@@ -42048,7 +42057,7 @@
"zh-chs": "查看有关此设备组的注释",
"zh-cht": "查看有關此裝置群的註釋",
"xloc": [
- "default.handlebars->31->1435"
+ "default.handlebars->31->1436"
]
},
{
@@ -42068,7 +42077,7 @@
"zh-chs": "查看有关此用户的注释",
"zh-cht": "查看有關此用戶的註釋",
"xloc": [
- "default.handlebars->31->2028"
+ "default.handlebars->31->2029"
]
},
{
@@ -42088,7 +42097,7 @@
"zh-chs": "沃拉普克",
"zh-cht": "沃拉普克",
"xloc": [
- "default.handlebars->31->1311"
+ "default.handlebars->31->1312"
]
},
{
@@ -42279,8 +42288,8 @@
"xloc": [
"default-mobile.handlebars->11->484",
"default-mobile.handlebars->11->499",
- "default.handlebars->31->1529",
- "default.handlebars->31->1559"
+ "default.handlebars->31->1530",
+ "default.handlebars->31->1560"
]
},
{
@@ -42341,7 +42350,7 @@
"zh-chs": "瓦隆",
"zh-cht": "瓦隆",
"xloc": [
- "default.handlebars->31->1312"
+ "default.handlebars->31->1313"
]
},
{
@@ -42361,7 +42370,7 @@
"zh-chs": "弱",
"zh-cht": "弱",
"xloc": [
- "default.handlebars->31->1366"
+ "default.handlebars->31->1367"
]
},
{
@@ -42406,15 +42415,15 @@
"zh-chs": "网络服务器",
"zh-cht": "網絡伺服器",
"xloc": [
- "default.handlebars->31->2230",
- "default.handlebars->31->2231"
+ "default.handlebars->31->2231",
+ "default.handlebars->31->2232"
]
},
{
"en": "Web Server HTTP Headers",
"nl": "Webserver HTTP Headers",
"xloc": [
- "default.handlebars->31->2234"
+ "default.handlebars->31->2235"
]
},
{
@@ -42434,7 +42443,7 @@
"zh-chs": "Web服务器请求",
"zh-cht": "Web伺服器請求",
"xloc": [
- "default.handlebars->31->2232"
+ "default.handlebars->31->2233"
]
},
{
@@ -42454,7 +42463,7 @@
"zh-chs": "Web套接字中继",
"zh-cht": "Web插座中繼",
"xloc": [
- "default.handlebars->31->2233"
+ "default.handlebars->31->2234"
]
},
{
@@ -42536,7 +42545,7 @@
"zh-chs": "威尔士文",
"zh-cht": "威爾士文",
"xloc": [
- "default.handlebars->31->1313"
+ "default.handlebars->31->1314"
]
},
{
@@ -42556,7 +42565,7 @@
"zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:",
"zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->31->1582"
+ "default.handlebars->31->1583"
]
},
{
@@ -42577,7 +42586,7 @@
"zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。",
"xloc": [
"default-mobile.handlebars->11->80",
- "default.handlebars->31->1105"
+ "default.handlebars->31->1106"
]
},
{
@@ -42597,7 +42606,7 @@
"zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。",
"zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。",
"xloc": [
- "default.handlebars->31->1477"
+ "default.handlebars->31->1478"
]
},
{
@@ -42634,7 +42643,7 @@
"zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。",
"zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。",
"xloc": [
- "default.handlebars->31->1478"
+ "default.handlebars->31->1479"
]
},
{
@@ -42654,7 +42663,7 @@
"zh-chs": "下次登录时将更改。",
"zh-cht": "下次登入時將更改。",
"xloc": [
- "default.handlebars->31->2000"
+ "default.handlebars->31->2001"
]
},
{
@@ -43392,7 +43401,7 @@
"zh-chs": "科萨",
"zh-cht": "科薩",
"xloc": [
- "default.handlebars->31->1314"
+ "default.handlebars->31->1315"
]
},
{
@@ -43412,7 +43421,7 @@
"zh-chs": "意第绪文",
"zh-cht": "意第緒文",
"xloc": [
- "default.handlebars->31->1315"
+ "default.handlebars->31->1316"
]
},
{
@@ -43550,7 +43559,7 @@
"zh-chs": "YubiKey™ OTP",
"zh-cht": "YubiKey™OTP",
"xloc": [
- "default.handlebars->31->1117"
+ "default.handlebars->31->1118"
]
},
{
@@ -43672,7 +43681,7 @@
"zh-chs": "祖鲁族",
"zh-cht": "祖魯族",
"xloc": [
- "default.handlebars->31->1316"
+ "default.handlebars->31->1317"
]
},
{
@@ -43940,7 +43949,7 @@
"zh-chs": "\\\\'",
"zh-cht": "\\\\'",
"xloc": [
- "default.handlebars->31->2246"
+ "default.handlebars->31->2247"
]
},
{
@@ -44207,7 +44216,7 @@
"zh-cht": "複製",
"xloc": [
"default-mobile.handlebars->11->141",
- "default.handlebars->31->1654"
+ "default.handlebars->31->1655"
]
},
{
@@ -44306,8 +44315,8 @@
"zh-chs": "eventslist.csv",
"zh-cht": "eventslist.csv",
"xloc": [
- "default.handlebars->31->1781",
- "default.handlebars->31->1786"
+ "default.handlebars->31->1782",
+ "default.handlebars->31->1787"
]
},
{
@@ -44327,8 +44336,8 @@
"zh-chs": "eventslist.json",
"zh-cht": "eventslist.json",
"xloc": [
- "default.handlebars->31->1783",
- "default.handlebars->31->1787"
+ "default.handlebars->31->1784",
+ "default.handlebars->31->1788"
]
},
{
@@ -44368,8 +44377,8 @@
"zh-chs": "免费",
"zh-cht": "免費",
"xloc": [
- "default.handlebars->31->2200",
- "default.handlebars->31->2203"
+ "default.handlebars->31->2201",
+ "default.handlebars->31->2204"
]
},
{
@@ -44584,7 +44593,7 @@
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
"xloc": [
- "default.handlebars->31->1850"
+ "default.handlebars->31->1851"
]
},
{
@@ -44707,7 +44716,7 @@
"zh-chs": "k max,默认为空白",
"zh-cht": "k max,默認為空白",
"xloc": [
- "default.handlebars->31->1878"
+ "default.handlebars->31->1879"
]
},
{
@@ -44922,7 +44931,7 @@
"zh-cht": "移動",
"xloc": [
"default-mobile.handlebars->11->142",
- "default.handlebars->31->1655"
+ "default.handlebars->31->1656"
]
},
{
@@ -45019,7 +45028,7 @@
"zh-chs": "servererrors.txt",
"zh-cht": "servererrors.txt",
"xloc": [
- "default.handlebars->31->1390"
+ "default.handlebars->31->1391"
]
},
{
@@ -45039,7 +45048,7 @@
"zh-chs": "servertrace.csv",
"zh-cht": "servertrace.csv",
"xloc": [
- "default.handlebars->31->2242"
+ "default.handlebars->31->2243"
]
},
{
@@ -45105,7 +45114,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->31->2217"
+ "default.handlebars->31->2218"
]
},
{
@@ -45125,7 +45134,7 @@
"zh-chs": "时间,来源,信息",
"zh-cht": "時間,來源,訊息",
"xloc": [
- "default.handlebars->31->2241"
+ "default.handlebars->31->2242"
]
},
{
@@ -45162,8 +45171,8 @@
"zh-chs": "总计",
"zh-cht": "總",
"xloc": [
- "default.handlebars->31->2201",
- "default.handlebars->31->2204"
+ "default.handlebars->31->2202",
+ "default.handlebars->31->2205"
]
},
{
@@ -45246,8 +45255,8 @@
"zh-chs": "userlist.csv",
"zh-cht": "userlist.csv",
"xloc": [
- "default.handlebars->31->1846",
- "default.handlebars->31->1851"
+ "default.handlebars->31->1847",
+ "default.handlebars->31->1852"
]
},
{
@@ -45267,8 +45276,8 @@
"zh-chs": "userlist.json",
"zh-cht": "userlist.json",
"xloc": [
- "default.handlebars->31->1848",
- "default.handlebars->31->1852"
+ "default.handlebars->31->1849",
+ "default.handlebars->31->1853"
]
},
{
@@ -45288,7 +45297,7 @@
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
"xloc": [
- "default.handlebars->31->1785"
+ "default.handlebars->31->1786"
]
},
{
@@ -45328,8 +45337,8 @@
"zh-chs": "{0} Gb",
"zh-cht": "{0} Gb",
"xloc": [
- "default.handlebars->31->1629",
- "default.handlebars->31->1634"
+ "default.handlebars->31->1630",
+ "default.handlebars->31->1635"
]
},
{
@@ -45349,9 +45358,9 @@
"zh-chs": "{0} Kb",
"zh-cht": "{0} Kb",
"xloc": [
- "default.handlebars->31->1627",
- "default.handlebars->31->1632",
- "default.handlebars->31->2106"
+ "default.handlebars->31->1628",
+ "default.handlebars->31->1633",
+ "default.handlebars->31->2107"
]
},
{
@@ -45375,8 +45384,8 @@
"default-mobile.handlebars->11->449",
"default.handlebars->31->1072",
"default.handlebars->31->1077",
- "default.handlebars->31->1628",
- "default.handlebars->31->1633"
+ "default.handlebars->31->1629",
+ "default.handlebars->31->1634"
]
},
{
@@ -45417,7 +45426,7 @@
"zh-chs": "{0}个活跃会话",
"zh-cht": "{0}個活躍節",
"xloc": [
- "default.handlebars->31->2042"
+ "default.handlebars->31->2043"
]
},
{
@@ -45437,8 +45446,8 @@
"zh-chs": "{0} b",
"zh-cht": "{0} b",
"xloc": [
- "default.handlebars->31->1626",
- "default.handlebars->31->1631"
+ "default.handlebars->31->1627",
+ "default.handlebars->31->1632"
]
},
{
@@ -45459,8 +45468,8 @@
"zh-cht": "{0}個字節",
"xloc": [
"default-mobile.handlebars->11->130",
- "default.handlebars->31->1642",
- "default.handlebars->31->2121",
+ "default.handlebars->31->1643",
+ "default.handlebars->31->2122",
"download.handlebars->3->2",
"download2.handlebars->5->2"
]
@@ -45482,7 +45491,7 @@
"zh-chs": "剩余{0}个字节",
"zh-cht": "剩餘{0}個字節",
"xloc": [
- "default.handlebars->31->1621"
+ "default.handlebars->31->1622"
]
},
{
@@ -45523,7 +45532,7 @@
"zh-chs": "剩余{0} GB",
"zh-cht": "剩餘{0} GB",
"xloc": [
- "default.handlebars->31->1624"
+ "default.handlebars->31->1625"
]
},
{
@@ -45543,7 +45552,7 @@
"zh-chs": "{0}个群组",
"zh-cht": "{0}個群組",
"xloc": [
- "default.handlebars->31->2005"
+ "default.handlebars->31->2006"
]
},
{
@@ -45600,7 +45609,7 @@
"zh-chs": "剩余{0}千字节",
"zh-cht": "剩餘{0}千字節",
"xloc": [
- "default.handlebars->31->1622"
+ "default.handlebars->31->1623"
]
},
{
@@ -45642,7 +45651,7 @@
"zh-chs": "剩余{0}兆字节",
"zh-cht": "剩餘{0}兆字節",
"xloc": [
- "default.handlebars->31->1623"
+ "default.handlebars->31->1624"
]
},
{
@@ -45682,7 +45691,7 @@
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
"xloc": [
- "default.handlebars->31->1795"
+ "default.handlebars->31->1796"
]
},
{
@@ -45846,7 +45855,7 @@
"default-mobile.handlebars->11->184",
"default-mobile.handlebars->11->187",
"default-mobile.handlebars->11->190",
- "default.handlebars->31->1799",
+ "default.handlebars->31->1800",
"default.handlebars->31->269",
"default.handlebars->31->272",
"default.handlebars->31->275",
@@ -46014,7 +46023,7 @@
"zh-chs": "{0}k在1档案内。最多{1}k",
"zh-cht": "{0}k在1檔案內。最多{1}k",
"xloc": [
- "default.handlebars->31->1636"
+ "default.handlebars->31->1637"
]
},
{
@@ -46034,7 +46043,7 @@
"zh-chs": "{1}k在{0}个档案中。最多{2}k",
"zh-cht": "{1}k在{0}個檔案中。最多{2}k",
"xloc": [
- "default.handlebars->31->1635"
+ "default.handlebars->31->1636"
]
},
{
diff --git a/views/default.handlebars b/views/default.handlebars
index 923e2243..5f499010 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -9385,7 +9385,7 @@
if (e.shiftKey == true) { meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type: 'default' }); } // Upload default core
else if (e.altKey == true) { meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type: 'clear' }); } // Clear the core
else if (e.ctrlKey == true) { p15uploadCore2(); } // Upload the core from a file
- else { setDialogMode(2, "Perform Agent Action", 3, p15uploadCoreEx, addHtmlValue("Action", '')); }
+ else { setDialogMode(2, "Perform Agent Action", 3, p15uploadCoreEx, addHtmlValue("Action", '')); }
}
function p15uploadCoreEx() {
@@ -9407,6 +9407,9 @@
} else if (Q('d3coreMode').value == 6) {
// Upload a recovery core
meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type:'recovery' });
+ } else if (Q('d3coreMode').value == 7) {
+ // Upload a tiny core
+ meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type:'tiny' });
}
}
diff --git a/webserver.js b/webserver.js
index acfbe28d..3a2b9251 100644
--- a/webserver.js
+++ b/webserver.js
@@ -5762,6 +5762,10 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
// Reset to recovery core
agent.agentCoreCheck = 1001; // Tell the agent object we are using the recovery core.
agent.send(obj.common.ShortToStr(11) + obj.common.ShortToStr(0)); // Command 11, ask for mesh core hash.
+ } else if (coretype == 'tiny') {
+ // Reset to tiny core
+ agent.agentCoreCheck = 1011; // Tell the agent object we are using the tiny core.
+ agent.send(obj.common.ShortToStr(11) + obj.common.ShortToStr(0)); // Command 11, ask for mesh core hash.
} else if (coretype == 'custom') {
agent.agentCoreCheck = 1000; // Tell the agent object we are using a custom core.
const hash = obj.crypto.createHash('sha384').update(Buffer.from(coredata, 'binary')).digest().toString('binary'); // Perform a SHA384 hash on the core module