Added tiny core support.
Ylian Saint-Hilaire committed
Jan 24, 2021 at 18:43 UTC
70b53b0f1c6578670e9bb40eb91216f8a159b084
7 files changed
+1225
-1191
meshagent.js
+4
-1
@@ -161,6 +161,9 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
161
if ((obj.agentCoreCheck == 1001) || (obj.agentCoreUpdate == true)) {
162
// If the user asked, use the recovery core.
163
corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].rcore;
164
+ } else if (obj.agentCoreCheck == 1011) {
165
+ // If the user asked, use the tiny core.
166
+ corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].tcore;
167
} else if (obj.agentInfo.capabilities & 0x40) {
168
// If this is a recovery agent, use the agent recovery core.
169
corename = parent.parent.meshAgentsArchitectureNumbers[obj.agentInfo.agentId].arcore;
@@ -174,7 +177,7 @@ module.exports.CreateMeshAgent = function (parent, db, ws, req, args, domain) {
177
if (corename != null) {
178
const meshcorehash = parent.parent.defaultMeshCoresHash[corename];
179
if (agentMeshCoreHash != meshcorehash) {
177
- if ((obj.agentCoreCheck < 5) || (obj.agentCoreCheck == 1001) || (obj.agentCoreUpdate == true)) {
180
+ if ((obj.agentCoreCheck < 5) || (obj.agentCoreCheck == 1001) || (obj.agentCoreCheck == 1011) || (obj.agentCoreUpdate == true)) {
181
if (meshcorehash == null) {
182
// Clear the core
183
obj.sendBinary(common.ShortToStr(10) + common.ShortToStr(0)); // MeshCommand_CoreModule, ask mesh agent to clear the core
meshcentral.js
+49
-37
@@ -2174,6 +2174,16 @@ function CreateMeshCentralServer(config, args) {
2174
}
2175
}
2176
2177
+ // Read the tiny core if present
2178
+ var meshTinyCore = null;
2179
+ if (obj.fs.existsSync(obj.path.join(__dirname, 'agents', 'tinycore.js')) == true) {
2180
+ try { meshTinyCore = obj.fs.readFileSync(obj.path.join(__dirname, 'agents', 'tinycore.js')).toString(); } catch (ex) { }
2181
+ if (meshTinyCore != null) {
2182
+ modulesAdd['windows-tiny'] = ['var addedModules = [];\r\n'];
2183
+ modulesAdd['linux-tiny'] = ['var addedModules = [];\r\n'];
2184
+ }
2185
+ }
2186
+
2187
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.
2188
if (meshCore == null) { try { meshCore = obj.fs.readFileSync(obj.path.join(meshcorePath, 'meshcore.js')).toString(); } catch (e) { } } // Use non-minified meshcore.
2189
if (meshCore != null) {
@@ -2237,6 +2247,8 @@ function CreateMeshCentralServer(config, args) {
2247
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshRecoveryCore].join('');
2248
} else if ((i == 'windows-agentrecovery') || (i == 'linux-agentrecovery')) {
2249
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshAgentRecoveryCore].join('');
2250
+ } else if ((i == 'windows-tiny') || (i == 'linux-tiny')) {
2251
+ obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshTinyCore].join('');
2252
} else {
2253
obj.defaultMeshCores[i] = [obj.common.IntToStr(0), ...modulesAdd[i], meshCore].join('');
2254
}
@@ -2387,43 +2399,43 @@ function CreateMeshCentralServer(config, args) {
2399
2400
// List of possible mesh agents
2401
obj.meshAgentsArchitectureNumbers = {
2390
- 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' },
2391
- 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' },
2392
- 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' },
2393
- 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' },
2394
- 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' },
2395
- 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' },
2396
- 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' },
2397
- 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' },
2398
- 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' },
2399
- 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' },
2400
- 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' },
2401
- 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.
2402
- 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' },
2403
- 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' },
2404
- 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
2405
- 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' },
2406
- 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
2407
- 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
2408
- 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' },
2409
- 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' },
2410
- 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' },
2411
- 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' },
2412
- 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' },
2413
- 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
2414
- 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' },
2415
- 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"
2416
- 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"
2417
- 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.
2418
- 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
2419
- 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
2420
- 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
2421
- 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' },
2422
- 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
2423
- 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
2424
- 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
2425
- 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
2426
- 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
2402
+ 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' },
2403
+ 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' },
2404
+ 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' },
2405
+ 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' },
2406
+ 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' },
2407
+ 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' },
2408
+ 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' },
2409
+ 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' },
2410
+ 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' },
2411
+ 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' },
2412
+ 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' },
2413
+ 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.
2414
+ 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' },
2415
+ 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' },
2416
+ 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
2417
+ 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' },
2418
+ 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
2419
+ 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
2420
+ 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' },
2421
+ 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' },
2422
+ 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' },
2423
+ 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' },
2424
+ 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' },
2425
+ 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
2426
+ 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' },
2427
+ 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"
2428
+ 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"
2429
+ 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.
2430
+ 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
2431
+ 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
2432
+ 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
2433
+ 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' },
2434
+ 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
2435
+ 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
2436
+ 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
2437
+ 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
2438
+ 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
2439
};
2440
2441
// Update the list of available mesh agents
meshuser.js
+3
@@ -4006,6 +4006,9 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
4006
} else if (command.type == 'recovery') {
4007
// Send the recovery core to the agent
4008
parent.sendMeshAgentCore(user, domain, node._id, 'recovery');
4009
+ } else if (command.type == 'tiny') {
4010
+ // Send the tiny core to the agent
4011
+ parent.sendMeshAgentCore(user, domain, node._id, 'tiny');
4012
} else if ((command.type == 'custom') && (common.validateString(command.path, 1, 2048) == true)) {
4013
// Send a mesh agent core to the mesh agent
4014
var file = parent.getServerFilePath(user, domain, command.path);
public/scripts/amt-wsman-0.2.0-min.js
+1
-1
@@ -1 +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'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}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('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+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="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+c+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+d+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';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+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var c in s)l+="<g:"+c+">"+s[c]+"</g:"+c+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var c in r)if(null!=r[c])if(Array.isArray(r[c]))for(var d in r[c])l+="<r:"+c+">"+r[c][d]+"</r:"+c+">";else l+="<r:"+c+">"+r[c]+"</r:"+c+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",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<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
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'<w:SelectorSet><w:Selector Name="InstanceID">'+e.InstanceID+"</w:Selector></w:SelectorSet>";var s="<w:SelectorSet>";for(var r in e)if(e.hasOwnProperty(r)){if(s+='<w:Selector Name="'+r+'">',e[r].ReferenceParameters){s+="<a:EndpointReference>",s+="<a:Address>"+e[r].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+e[r].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var a=e[r].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(a))for(var o=0;o<a.length;o++)s+="<w:Selector"+l(a[o])+">"+a[o].Value+"</w:Selector>";else s+="<w:Selector"+l(a)+">"+a.Value+"</w:Selector>";s+="</w:SelectorSet></a:ReferenceParameters></a:EndpointReference>"}else s+=e[r];s+="</w:Selector>"}return s+="</w:SelectorSet>"}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('<?xml version=\"1.0\" encoding=\"utf-8\"?><Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:w="http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd" xmlns="http://www.w3.org/2003/05/soap-envelope" '+a+"><Header><a:Action>"+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="<t:IssuedTokens><t:RequestSecurityTokenResponse><t:TokenType>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#UsernameToken</t:TokenType><t:RequestedSecurityToken><se:UsernameToken><se:Username>"+d+'</se:Username><se:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd#PasswordText">'+c+"</se:Password></se:UsernameToken></t:RequestedSecurityToken></t:RequestSecurityTokenResponse></t:IssuedTokens>",i='<Auth Profile="http://schemas.xmlsoap.org/ws/2004/08/eventing/DeliveryModes/secprofile/http/digest"/>'),l=null!=l&&null!=l?"<a:ReferenceParameters>"+l+"</a:ReferenceParameters>":"";var u="http://schemas.xmlsoap.org/ws/2004/08/eventing/Subscribe</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(n)+m+'</Header><Body><e:Subscribe><e:Delivery Mode="http://schemas.dmtf.org/wbem/wsman/1/wsman/'+s+'"><e:NotifyTo><a:Address>'+r+"</a:Address></e:NotifyTo>"+i+"</e:Delivery><e:Expires>PT0.000000S</e:Expires></e:Subscribe>";p.PerformAjax(u+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo>"+w(o)+"</Header><Body><e:Unsubscribe/>";p.PerformAjax(t+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout>"+w(t)+"</Header><Body>"+function(e,s){if(!e||null==s)return"";var r=p.GetNameFromUrl(e),a="<r:"+r+' xmlns:r="'+e+'">';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+="<r:"+o+"><a:Address>"+s[o].Address+"</a:Address><a:ReferenceParameters><w:ResourceURI>"+s[o].ReferenceParameters.ResourceURI+"</w:ResourceURI><w:SelectorSet>";var t=s[o].ReferenceParameters.SelectorSet.Selector;if(Array.isArray(t))for(var n=0;n<t.length;n++)a+="<w:Selector"+l(t[n])+">"+t[n].Value+"</w:Selector>";else a+="<w:Selector"+l(t)+">"+t.Value+"</w:Selector>";a+="</w:SelectorSet></a:ReferenceParameters></r:"+o+">"}else if(Array.isArray(s[o]))for(n=0;n<s[o].length;n++)a+="<r:"+o+">"+s[o][n].toString()+"</r:"+o+">";else a+="<r:"+o+">"+s[o].toString()+"</r:"+o+">";return a+="</r:"+r+">"}(e,s);p.PerformAjax(n+"</Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(t)+"</Header><Body><g:"+n+' xmlns:g="'+e+'">';for(var d in s)l+="<g:"+d+">"+s[d]+"</g:"+d+">";p.PerformAjax(l+"</g:"+n+"></Body></Envelope>",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</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60.000S</w:OperationTimeout></Header><Body><r:"+t+' xmlns:r="'+e+'">'+s+"</r:"+t+"></Body></Envelope>",r,a,o)},p.ExecDelete=function(e,s,r,a,o){var t="http://schemas.xmlsoap.org/ws/2004/09/transfer/Delete</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(s)+"</Header><Body /></Envelope>";p.PerformAjax(t,r,a,o)},p.ExecGet=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/transfer/Get</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body /></Envelope>",s,r,a)},p.ExecMethod=function(e,s,r,a,o,t,n){var l="";for(var d in r)if(null!=r[d])if(Array.isArray(r[d]))for(var c in r[d])l+="<r:"+d+">"+r[d][c]+"</r:"+d+">";else l+="<r:"+d+">"+r[d]+"</r:"+d+">";p.ExecMethodXml(e,s,l,a,o,t,n)},p.ExecMethodXml=function(e,s,r,a,o,t,n){p.PerformAjax(e+"/"+s+"</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++"</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout>"+w(n)+"</Header><Body><r:"+s+'_INPUT xmlns:r="'+e+'">'+r+"</r:"+s+"_INPUT></Body></Envelope>",a,o,t)},p.ExecEnum=function(e,s,r,a){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Enumerate</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Enumerate xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration" /></Body></Envelope>',s,r,a)},p.ExecPull=function(e,s,r,a,o){p.PerformAjax("http://schemas.xmlsoap.org/ws/2004/09/enumeration/Pull</a:Action><a:To>"+p.Address+"</a:To><w:ResourceURI>"+e+"</w:ResourceURI><a:MessageID>"+p.NextMessageId+++'</a:MessageID><a:ReplyTo><a:Address>http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous</a:Address></a:ReplyTo><w:OperationTimeout>PT60S</w:OperationTimeout></Header><Body><Pull xmlns="http://schemas.xmlsoap.org/ws/2004/09/enumeration"><EnumerationContext>'+s+"</EnumerationContext><MaxElements>999</MaxElements><MaxCharacters>99999</MaxCharacters></Pull></Body></Envelope>",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<a.childNodes.length;o++){var t=a.childNodes[o];r.Header[t.localName]=t.textContent}var n=s.getElementsByTagName("Body")[0];if(!(n=n||s.getElementsByTagName("a:Body")[0]))return null;if(0<n.childNodes.length){var l=(e=n.childNodes[0].localName).indexOf("_OUTPUT");-1!=l&&l==e.length-7&&(e=e.substring(0,e.length-7)),r.Header.Method=e,r.Body=function e(s){var r,a={};for(var o=0;o<s.childNodes.length;o++){var t=s.childNodes[o];"true"==(r=0==t.childElementCount?t.textContent:e(t))&&(r=!0),"false"==r&&(r=!1);var n=r;if(0<t.attributes.length){n={Value:r};for(var l=0;l<t.attributes.length;l++)n["@"+t.attributes[l].name]=t.attributes[l].value}a[t.localName]instanceof Array?a[t.localName].push(n):null==a[t.localName]?a[t.localName]=n:a[t.localName]=[a[t.localName],n]}return a}(n.childNodes[0])}return r}catch(e){return console.log("Unable to parse XML: "+s),null}},p}
\ No newline at end of file
translate/translate.json
+1160
-1151
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1429",
21
- "default.handlebars->31->1431"
20
+ "default.handlebars->31->1430",
21
+ "default.handlebars->31->1432"
22
]
23
},
24
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1342"
207
+ "default.handlebars->31->1343"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1506",
228
- "default.handlebars->31->1970"
227
+ "default.handlebars->31->1507",
228
+ "default.handlebars->31->1971"
229
]
230
},
231
{
@@ -432,7 +432,7 @@
432
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434
"xloc": [
435
- "default.handlebars->31->1475",
435
+ "default.handlebars->31->1476",
436
"default.handlebars->31->323"
437
]
438
},
@@ -508,7 +508,7 @@
508
"zh-cht": ",",
509
"xloc": [
510
"default-mobile.handlebars->11->515",
511
- "default.handlebars->31->1576"
511
+ "default.handlebars->31->1577"
512
]
513
},
514
{
@@ -825,8 +825,8 @@
825
"xloc": [
826
"default-mobile.handlebars->11->119",
827
"default-mobile.handlebars->11->349",
828
- "default.handlebars->31->1617",
829
- "default.handlebars->31->2129",
828
+ "default.handlebars->31->1618",
829
+ "default.handlebars->31->2130",
830
"default.handlebars->31->954"
831
]
832
},
@@ -884,7 +884,7 @@
884
"zh-chs": "1个活跃时段",
885
"zh-cht": "1個活躍時段",
886
"xloc": [
887
- "default.handlebars->31->2041"
887
+ "default.handlebars->31->2042"
888
]
889
},
890
{
@@ -906,7 +906,7 @@
906
"xloc": [
907
"default-mobile.handlebars->11->129",
908
"default-mobile.handlebars->11->558",
909
- "default.handlebars->31->1641",
909
+ "default.handlebars->31->1642",
910
"download.handlebars->3->1",
911
"download2.handlebars->5->1"
912
]
@@ -971,7 +971,7 @@
971
"zh-chs": "1组",
972
"zh-cht": "1群",
973
"xloc": [
974
- "default.handlebars->31->2004"
974
+ "default.handlebars->31->2005"
975
]
976
},
977
{
@@ -1075,7 +1075,7 @@
1075
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1076
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1077
"xloc": [
1078
- "default.handlebars->31->1794"
1078
+ "default.handlebars->31->1795"
1079
]
1080
},
1081
{
@@ -1141,7 +1141,7 @@
1141
"default-mobile.handlebars->11->183",
1142
"default-mobile.handlebars->11->186",
1143
"default-mobile.handlebars->11->189",
1144
- "default.handlebars->31->1798",
1144
+ "default.handlebars->31->1799",
1145
"default.handlebars->31->268",
1146
"default.handlebars->31->271",
1147
"default.handlebars->31->274",
@@ -1624,7 +1624,7 @@
1624
"zh-chs": "2FA备份代码已清除",
1625
"zh-cht": "2FA備份代碼已清除",
1626
"xloc": [
1627
- "default.handlebars->31->1752"
1627
+ "default.handlebars->31->1753"
1628
]
1629
},
1630
{
@@ -1644,8 +1644,8 @@
1644
"zh-chs": "启用第二因素身份验证",
1645
"zh-cht": "啟用第二因素身份驗證",
1646
"xloc": [
1647
- "default.handlebars->31->1811",
1648
- "default.handlebars->31->2026"
1647
+ "default.handlebars->31->1812",
1648
+ "default.handlebars->31->2027"
1649
]
1650
},
1651
{
@@ -2347,11 +2347,14 @@
2347
"nl": "</div></div>"
2348
},
2349
{
2350
- "en": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android40.png\\\" srcset=\\\"images/android80.png 2x\\\" /></a></div></div>",
2350
+ "en": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android-40.png\\\" srcset=\\\"images/android-80.png 2x\\\" /></a></div></div>",
2351
"xloc": [
2352
"default.handlebars->31->403"
2353
]
2354
},
2355
+ {
2356
+ "en": "</div><div><a rel=\\\"noreferrer noopener\\\" target=_blank href=\\\"https://play.google.com/store/apps/details?id=com.meshcentral.agent2\\\"><img style=margin-top:20px;margin-left:5px;cursor:pointer width=40 height=40 src=\\\"images/android40.png\\\" srcset=\\\"images/android80.png 2x\\\" /></a></div></div>"
2357
+ },
2358
{
2359
"cs": "<<",
2360
"de": "<<",
@@ -2510,7 +2513,7 @@
2513
"zh-cht": "ACM",
2514
"xloc": [
2515
"default-mobile.handlebars->11->247",
2513
- "default.handlebars->31->1445",
2516
+ "default.handlebars->31->1446",
2517
"default.handlebars->31->588"
2518
]
2519
},
@@ -2733,7 +2736,7 @@
2736
"zh-chs": "访问服务器档案",
2737
"zh-cht": "存取伺服器檔案",
2738
"xloc": [
2736
- "default.handlebars->31->1976"
2739
+ "default.handlebars->31->1977"
2740
]
2741
},
2742
{
@@ -2822,9 +2825,9 @@
2825
"default-mobile.handlebars->11->222",
2826
"default-mobile.handlebars->11->224",
2827
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2825
- "default.handlebars->31->1351",
2826
- "default.handlebars->31->1353",
2827
- "default.handlebars->31->2243",
2828
+ "default.handlebars->31->1352",
2829
+ "default.handlebars->31->1354",
2830
+ "default.handlebars->31->2244",
2831
"default.handlebars->31->557",
2832
"default.handlebars->31->559"
2833
]
@@ -2835,7 +2838,7 @@
2838
"fr": "Paramètres du compte",
2839
"xloc": [
2840
"default-mobile.handlebars->11->526",
2838
- "default.handlebars->31->2137"
2841
+ "default.handlebars->31->2138"
2842
]
2843
},
2844
{
@@ -2896,7 +2899,7 @@
2899
"zh-chs": "帐户已更改:{0}",
2900
"zh-cht": "帳戶已更改:{0}",
2901
"xloc": [
2899
- "default.handlebars->31->1725"
2902
+ "default.handlebars->31->1726"
2903
]
2904
},
2905
{
@@ -2916,7 +2919,7 @@
2919
"zh-chs": "创建帐户,电子邮件为{0}",
2920
"zh-cht": "創建帳戶,電子郵件為{0}",
2921
"xloc": [
2919
- "default.handlebars->31->1724"
2922
+ "default.handlebars->31->1725"
2923
]
2924
},
2925
{
@@ -2936,7 +2939,7 @@
2939
"zh-chs": "创建帐户,用户名是{0}",
2940
"zh-cht": "帳戶已創建,用戶名是{0}",
2941
"xloc": [
2939
- "default.handlebars->31->1723"
2942
+ "default.handlebars->31->1724"
2943
]
2944
},
2945
{
@@ -2956,8 +2959,8 @@
2959
"zh-chs": "帐户已被锁定",
2960
"zh-cht": "帳戶已被鎖定",
2961
"xloc": [
2959
- "default.handlebars->31->1813",
2960
- "default.handlebars->31->1973"
2962
+ "default.handlebars->31->1814",
2963
+ "default.handlebars->31->1974"
2964
]
2965
},
2966
{
@@ -2978,7 +2981,7 @@
2981
"zh-cht": "達到帳戶限制。",
2982
"xloc": [
2983
"default-mobile.handlebars->11->538",
2981
- "default.handlebars->31->2149",
2984
+ "default.handlebars->31->2150",
2985
"login-mobile.handlebars->5->6",
2986
"login.handlebars->5->6",
2987
"login2.handlebars->7->7"
@@ -3023,7 +3026,7 @@
3026
"zh-chs": "帐号登录",
3027
"zh-cht": "帳號登錄",
3028
"xloc": [
3026
- "default.handlebars->31->1660"
3029
+ "default.handlebars->31->1661"
3030
]
3031
},
3032
{
@@ -3043,7 +3046,7 @@
3046
"zh-chs": "帐户登出",
3047
"zh-cht": "帳戶登出",
3048
"xloc": [
3046
- "default.handlebars->31->1661"
3049
+ "default.handlebars->31->1662"
3050
]
3051
},
3052
{
@@ -3085,7 +3088,7 @@
3088
"zh-chs": "帐户密码已更改:{0}",
3089
"zh-cht": "帳戶密碼已更改:{0}",
3090
"xloc": [
3088
- "default.handlebars->31->1733"
3091
+ "default.handlebars->31->1734"
3092
]
3093
},
3094
{
@@ -3105,7 +3108,7 @@
3108
"zh-chs": "帐户已删除",
3109
"zh-cht": "帳戶已刪除",
3110
"xloc": [
3108
- "default.handlebars->31->1722"
3111
+ "default.handlebars->31->1723"
3112
]
3113
},
3114
{
@@ -3273,7 +3276,7 @@
3276
"zh-chs": "如果ACM失败,则激活到CCM",
3277
"zh-cht": "如果ACM失敗,則激活到CCM",
3278
"xloc": [
3276
- "default.handlebars->31->1466"
3279
+ "default.handlebars->31->1467"
3280
]
3281
},
3282
{
@@ -3384,7 +3387,7 @@
3387
"zh-chs": "添加代理",
3388
"zh-cht": "新增代理",
3389
"xloc": [
3387
- "default.handlebars->31->1441",
3390
+ "default.handlebars->31->1442",
3391
"default.handlebars->31->301"
3392
]
3393
},
@@ -3422,8 +3425,8 @@
3425
"zh-chs": "添加设备",
3426
"zh-cht": "新增裝置",
3427
"xloc": [
3425
- "default.handlebars->31->1950",
3426
- "default.handlebars->31->2076"
3428
+ "default.handlebars->31->1951",
3429
+ "default.handlebars->31->2077"
3430
]
3431
},
3432
{
@@ -3463,9 +3466,9 @@
3466
"zh-chs": "添加设备组",
3467
"zh-cht": "新增裝置群",
3468
"xloc": [
3466
- "default.handlebars->31->1540",
3467
- "default.handlebars->31->1944",
3468
- "default.handlebars->31->2064",
3469
+ "default.handlebars->31->1541",
3470
+ "default.handlebars->31->1945",
3471
+ "default.handlebars->31->2065",
3472
"default.handlebars->31->238"
3473
]
3474
},
@@ -3486,7 +3489,7 @@
3489
"zh-chs": "添加设备组权限",
3490
"zh-cht": "新增裝置群權限",
3491
"xloc": [
3489
- "default.handlebars->31->1537"
3492
+ "default.handlebars->31->1538"
3493
]
3494
},
3495
{
@@ -3506,8 +3509,8 @@
3509
"zh-chs": "添加设备权限",
3510
"zh-cht": "新增裝置權限",
3511
"xloc": [
3509
- "default.handlebars->31->1542",
3510
- "default.handlebars->31->1544"
3512
+ "default.handlebars->31->1543",
3513
+ "default.handlebars->31->1545"
3514
]
3515
},
3516
{
@@ -3604,7 +3607,7 @@
3607
"zh-chs": "添加成员身份",
3608
"zh-cht": "新增成員身份",
3609
"xloc": [
3607
- "default.handlebars->31->2096"
3610
+ "default.handlebars->31->2097"
3611
]
3612
},
3613
{
@@ -3644,8 +3647,8 @@
3647
"zh-chs": "添加安全密钥",
3648
"zh-cht": "新增安全密鑰",
3649
"xloc": [
3647
- "default.handlebars->31->1118",
3650
"default.handlebars->31->1119",
3651
+ "default.handlebars->31->1120",
3652
"default.handlebars->31->160",
3653
"default.handlebars->31->162",
3654
"default.handlebars->31->165",
@@ -3690,7 +3693,7 @@
3693
"zh-chs": "添加用户设备权限",
3694
"zh-cht": "新增用戶裝置權限",
3695
"xloc": [
3693
- "default.handlebars->31->1547"
3696
+ "default.handlebars->31->1548"
3697
]
3698
},
3699
{
@@ -3710,9 +3713,9 @@
3713
"zh-chs": "添加用户组",
3714
"zh-cht": "新增用戶群",
3715
"xloc": [
3713
- "default.handlebars->31->1437",
3714
- "default.handlebars->31->1539",
3715
- "default.handlebars->31->2070",
3716
+ "default.handlebars->31->1438",
3717
+ "default.handlebars->31->1540",
3718
+ "default.handlebars->31->2071",
3719
"default.handlebars->31->683"
3720
]
3721
},
@@ -3733,7 +3736,7 @@
3736
"zh-chs": "添加用户组设备权限",
3737
"zh-cht": "新增用戶群裝置權限",
3738
"xloc": [
3736
- "default.handlebars->31->1549"
3739
+ "default.handlebars->31->1550"
3740
]
3741
},
3742
{
@@ -3790,8 +3793,8 @@
3793
"zh-chs": "添加用户",
3794
"zh-cht": "新增用戶",
3795
"xloc": [
3793
- "default.handlebars->31->1436",
3794
- "default.handlebars->31->1939"
3796
+ "default.handlebars->31->1437",
3797
+ "default.handlebars->31->1940"
3798
]
3799
},
3800
{
@@ -3811,7 +3814,7 @@
3814
"zh-chs": "将用户添加到设备组",
3815
"zh-cht": "將用戶新增到裝置群",
3816
"xloc": [
3814
- "default.handlebars->31->1536"
3817
+ "default.handlebars->31->1537"
3818
]
3819
},
3820
{
@@ -3831,7 +3834,7 @@
3834
"zh-chs": "将用户添加到用户组",
3835
"zh-cht": "將用戶新增到用戶群",
3836
"xloc": [
3834
- "default.handlebars->31->1972"
3837
+ "default.handlebars->31->1973"
3838
]
3839
},
3840
{
@@ -3948,7 +3951,7 @@
3951
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3952
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3953
"xloc": [
3951
- "default.handlebars->31->1440",
3954
+ "default.handlebars->31->1441",
3955
"default.handlebars->31->300"
3956
]
3957
},
@@ -4009,7 +4012,7 @@
4012
"zh-chs": "添加了身份验证应用程序",
4013
"zh-cht": "添加了身份驗證應用程序",
4014
"xloc": [
4012
- "default.handlebars->31->1749"
4015
+ "default.handlebars->31->1750"
4016
]
4017
},
4018
{
@@ -4029,7 +4032,7 @@
4032
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4033
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4034
"xloc": [
4032
- "default.handlebars->31->1760"
4035
+ "default.handlebars->31->1761"
4036
]
4037
},
4038
{
@@ -4049,8 +4052,8 @@
4052
"zh-chs": "已将设备{0}添加到设备组{1}",
4053
"zh-cht": "已將設備{0}添加到設備組{1}",
4054
"xloc": [
4052
- "default.handlebars->31->1716",
4053
- "default.handlebars->31->1743"
4055
+ "default.handlebars->31->1717",
4056
+ "default.handlebars->31->1744"
4057
]
4058
},
4059
{
@@ -4070,7 +4073,7 @@
4073
"zh-chs": "添加了安全密钥",
4074
"zh-cht": "添加了安全密鑰",
4075
"xloc": [
4073
- "default.handlebars->31->1754"
4076
+ "default.handlebars->31->1755"
4077
]
4078
},
4079
{
@@ -4090,7 +4093,7 @@
4093
"zh-chs": "已将用户组{0}添加到设备组{1}",
4094
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4095
"xloc": [
4093
- "default.handlebars->31->1727"
4096
+ "default.handlebars->31->1728"
4097
]
4098
},
4099
{
@@ -4110,8 +4113,8 @@
4113
"zh-chs": "已将用户{0}添加到用户组{1}",
4114
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4115
"xloc": [
4113
- "default.handlebars->31->1730",
4114
- "default.handlebars->31->1739"
4116
+ "default.handlebars->31->1731",
4117
+ "default.handlebars->31->1740"
4118
]
4119
},
4120
{
@@ -4234,7 +4237,7 @@
4237
"zh-chs": "管理领域",
4238
"zh-cht": "管理領域",
4239
"xloc": [
4237
- "default.handlebars->31->2008"
4240
+ "default.handlebars->31->2009"
4241
]
4242
},
4243
{
@@ -4275,7 +4278,7 @@
4278
"zh-chs": "管理领域",
4279
"zh-cht": "管理領域",
4280
"xloc": [
4278
- "default.handlebars->31->1876"
4281
+ "default.handlebars->31->1877"
4282
]
4283
},
4284
{
@@ -4295,7 +4298,7 @@
4298
"zh-chs": "管理员",
4299
"zh-cht": "管理員",
4300
"xloc": [
4298
- "default.handlebars->31->1805"
4301
+ "default.handlebars->31->1806"
4302
]
4303
},
4304
{
@@ -4315,7 +4318,7 @@
4318
"zh-chs": "南非文",
4319
"zh-cht": "南非文",
4320
"xloc": [
4318
- "default.handlebars->31->1121"
4321
+ "default.handlebars->31->1122"
4322
]
4323
},
4324
{
@@ -4339,8 +4342,8 @@
4342
"default-mobile.handlebars->11->214",
4343
"default-mobile.handlebars->11->239",
4344
"default-mobile.handlebars->11->261",
4342
- "default.handlebars->31->1603",
4343
- "default.handlebars->31->1611",
4345
+ "default.handlebars->31->1604",
4346
+ "default.handlebars->31->1612",
4347
"default.handlebars->31->254",
4348
"default.handlebars->31->443",
4349
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
@@ -4363,8 +4366,8 @@
4366
"zh-chs": "代理+英特尔AMT",
4367
"zh-cht": "代理+Intel® AMT",
4368
"xloc": [
4366
- "default.handlebars->31->1605",
4367
- "default.handlebars->31->1613"
4369
+ "default.handlebars->31->1606",
4370
+ "default.handlebars->31->1614"
4371
]
4372
},
4373
{
@@ -4405,7 +4408,7 @@
4408
"zh-cht": "代理控制台",
4409
"xloc": [
4410
"default-mobile.handlebars->11->497",
4408
- "default.handlebars->31->1557"
4411
+ "default.handlebars->31->1558"
4412
]
4413
},
4414
{
@@ -4425,7 +4428,7 @@
4428
"zh-chs": "代理错误计数器",
4429
"zh-cht": "代理錯誤計數器",
4430
"xloc": [
4428
- "default.handlebars->31->2174"
4431
+ "default.handlebars->31->2175"
4432
]
4433
},
4434
{
@@ -4528,7 +4531,7 @@
4531
"zh-chs": "代理时段",
4532
"zh-cht": "代理時段",
4533
"xloc": [
4531
- "default.handlebars->31->2190"
4534
+ "default.handlebars->31->2191"
4535
]
4536
},
4537
{
@@ -4569,7 +4572,7 @@
4572
"zh-chs": "代理类型",
4573
"zh-cht": "代理類型",
4574
"xloc": [
4572
- "default.handlebars->31->1609",
4575
+ "default.handlebars->31->1610",
4576
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4577
]
4578
},
@@ -4590,7 +4593,7 @@
4593
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4594
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4595
"xloc": [
4593
- "default.handlebars->31->1713"
4596
+ "default.handlebars->31->1714"
4597
]
4598
},
4599
{
@@ -4713,7 +4716,7 @@
4716
"zh-chs": "代理",
4717
"zh-cht": "代理",
4718
"xloc": [
4716
- "default.handlebars->31->2206"
4719
+ "default.handlebars->31->2207"
4720
]
4721
},
4722
{
@@ -4733,7 +4736,7 @@
4736
"zh-chs": "阿尔巴尼亚文",
4737
"zh-cht": "阿爾巴尼亞文",
4738
"xloc": [
4736
- "default.handlebars->31->1122"
4739
+ "default.handlebars->31->1123"
4740
]
4741
},
4742
{
@@ -4776,7 +4779,7 @@
4779
"zh-chs": "全部可用",
4780
"zh-cht": "全部可用",
4781
"xloc": [
4779
- "default.handlebars->31->1768"
4782
+ "default.handlebars->31->1769"
4783
]
4784
},
4785
{
@@ -4813,7 +4816,7 @@
4816
"zh-chs": "所有事件",
4817
"zh-cht": "所有事件",
4818
"xloc": [
4816
- "default.handlebars->31->1766"
4819
+ "default.handlebars->31->1767"
4820
]
4821
},
4822
{
@@ -4855,8 +4858,8 @@
4858
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4859
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4860
"xloc": [
4858
- "default.handlebars->31->1504",
4859
- "default.handlebars->31->1969"
4861
+ "default.handlebars->31->1505",
4862
+ "default.handlebars->31->1970"
4863
]
4864
},
4865
{
@@ -4876,7 +4879,7 @@
4879
"zh-chs": "允许用户管理此设备。",
4880
"zh-cht": "允許用戶管理此裝置。",
4881
"xloc": [
4879
- "default.handlebars->31->1505"
4882
+ "default.handlebars->31->1506"
4883
]
4884
},
4885
{
@@ -4998,9 +5001,9 @@
5001
"zh-chs": "一直通知",
5002
"zh-cht": "一直通知",
5003
"xloc": [
5001
- "default.handlebars->31->1416",
5002
- "default.handlebars->31->1930",
5003
- "default.handlebars->31->2017",
5004
+ "default.handlebars->31->1417",
5005
+ "default.handlebars->31->1931",
5006
+ "default.handlebars->31->2018",
5007
"default.handlebars->31->619"
5008
]
5009
},
@@ -5021,9 +5024,9 @@
5024
"zh-chs": "一直提示",
5025
"zh-cht": "一直提示",
5026
"xloc": [
5024
- "default.handlebars->31->1417",
5025
- "default.handlebars->31->1931",
5026
- "default.handlebars->31->2018",
5027
+ "default.handlebars->31->1418",
5028
+ "default.handlebars->31->1932",
5029
+ "default.handlebars->31->2019",
5030
"default.handlebars->31->620"
5031
]
5032
},
@@ -5285,7 +5288,7 @@
5288
"zh-chs": "阿拉伯文(阿尔及利亚)",
5289
"zh-cht": "阿拉伯文(阿爾及利亞)",
5290
"xloc": [
5288
- "default.handlebars->31->1124"
5291
+ "default.handlebars->31->1125"
5292
]
5293
},
5294
{
@@ -5305,7 +5308,7 @@
5308
"zh-chs": "阿拉伯文(巴林)",
5309
"zh-cht": "阿拉伯文(巴林)",
5310
"xloc": [
5308
- "default.handlebars->31->1125"
5311
+ "default.handlebars->31->1126"
5312
]
5313
},
5314
{
@@ -5325,7 +5328,7 @@
5328
"zh-chs": "阿拉伯文(埃及)",
5329
"zh-cht": "阿拉伯文(埃及)",
5330
"xloc": [
5328
- "default.handlebars->31->1126"
5331
+ "default.handlebars->31->1127"
5332
]
5333
},
5334
{
@@ -5345,7 +5348,7 @@
5348
"zh-chs": "阿拉伯文(伊拉克)",
5349
"zh-cht": "阿拉伯文(伊拉克)",
5350
"xloc": [
5348
- "default.handlebars->31->1127"
5351
+ "default.handlebars->31->1128"
5352
]
5353
},
5354
{
@@ -5365,7 +5368,7 @@
5368
"zh-chs": "阿拉伯文(约旦)",
5369
"zh-cht": "阿拉伯文(約旦)",
5370
"xloc": [
5368
- "default.handlebars->31->1128"
5371
+ "default.handlebars->31->1129"
5372
]
5373
},
5374
{
@@ -5385,7 +5388,7 @@
5388
"zh-chs": "阿拉伯文(科威特)",
5389
"zh-cht": "阿拉伯文(科威特)",
5390
"xloc": [
5388
- "default.handlebars->31->1129"
5391
+ "default.handlebars->31->1130"
5392
]
5393
},
5394
{
@@ -5405,7 +5408,7 @@
5408
"zh-chs": "阿拉伯文(黎巴嫩)",
5409
"zh-cht": "阿拉伯文(黎巴嫩)",
5410
"xloc": [
5408
- "default.handlebars->31->1130"
5411
+ "default.handlebars->31->1131"
5412
]
5413
},
5414
{
@@ -5425,7 +5428,7 @@
5428
"zh-chs": "阿拉伯文(利比亚)",
5429
"zh-cht": "阿拉伯文(利比亞)",
5430
"xloc": [
5428
- "default.handlebars->31->1131"
5431
+ "default.handlebars->31->1132"
5432
]
5433
},
5434
{
@@ -5445,7 +5448,7 @@
5448
"zh-chs": "阿拉伯文(摩洛哥)",
5449
"zh-cht": "阿拉伯文(摩洛哥)",
5450
"xloc": [
5448
- "default.handlebars->31->1132"
5451
+ "default.handlebars->31->1133"
5452
]
5453
},
5454
{
@@ -5465,7 +5468,7 @@
5468
"zh-chs": "阿拉伯文(阿曼)",
5469
"zh-cht": "阿拉伯文(阿曼)",
5470
"xloc": [
5468
- "default.handlebars->31->1133"
5471
+ "default.handlebars->31->1134"
5472
]
5473
},
5474
{
@@ -5485,7 +5488,7 @@
5488
"zh-chs": "阿拉伯文(卡塔尔)",
5489
"zh-cht": "阿拉伯文(卡塔爾)",
5490
"xloc": [
5488
- "default.handlebars->31->1134"
5491
+ "default.handlebars->31->1135"
5492
]
5493
},
5494
{
@@ -5505,7 +5508,7 @@
5508
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5509
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5510
"xloc": [
5508
- "default.handlebars->31->1135"
5511
+ "default.handlebars->31->1136"
5512
]
5513
},
5514
{
@@ -5525,7 +5528,7 @@
5528
"zh-chs": "阿拉伯文(标准)",
5529
"zh-cht": "阿拉伯文(標準)",
5530
"xloc": [
5528
- "default.handlebars->31->1123"
5531
+ "default.handlebars->31->1124"
5532
]
5533
},
5534
{
@@ -5545,7 +5548,7 @@
5548
"zh-chs": "阿拉伯文(叙利亚)",
5549
"zh-cht": "阿拉伯文(敘利亞)",
5550
"xloc": [
5548
- "default.handlebars->31->1136"
5551
+ "default.handlebars->31->1137"
5552
]
5553
},
5554
{
@@ -5565,7 +5568,7 @@
5568
"zh-chs": "阿拉伯文(突尼斯)",
5569
"zh-cht": "阿拉伯文(突尼斯)",
5570
"xloc": [
5568
- "default.handlebars->31->1137"
5571
+ "default.handlebars->31->1138"
5572
]
5573
},
5574
{
@@ -5585,7 +5588,7 @@
5588
"zh-chs": "阿拉伯文(阿联酋)",
5589
"zh-cht": "阿拉伯文(阿聯酋)",
5590
"xloc": [
5588
- "default.handlebars->31->1138"
5591
+ "default.handlebars->31->1139"
5592
]
5593
},
5594
{
@@ -5605,7 +5608,7 @@
5608
"zh-chs": "阿拉伯文(也门)",
5609
"zh-cht": "阿拉伯文(也門)",
5610
"xloc": [
5608
- "default.handlebars->31->1139"
5611
+ "default.handlebars->31->1140"
5612
]
5613
},
5614
{
@@ -5625,7 +5628,7 @@
5628
"zh-chs": "阿拉贡文",
5629
"zh-cht": "阿拉貢文",
5630
"xloc": [
5628
- "default.handlebars->31->1140"
5631
+ "default.handlebars->31->1141"
5632
]
5633
},
5634
{
@@ -5687,7 +5690,7 @@
5690
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5691
"xloc": [
5692
"default-mobile.handlebars->11->466",
5690
- "default.handlebars->31->1480"
5693
+ "default.handlebars->31->1481"
5694
]
5695
},
5696
{
@@ -5767,7 +5770,7 @@
5770
"zh-chs": "您确定要{0}插件吗:{1}",
5771
"zh-cht": "你確定要{0}外掛嗎:{1}",
5772
"xloc": [
5770
- "default.handlebars->31->2252"
5773
+ "default.handlebars->31->2253"
5774
]
5775
},
5776
{
@@ -5787,7 +5790,7 @@
5790
"zh-chs": "亚美尼亚文",
5791
"zh-cht": "亞美尼亞文",
5792
"xloc": [
5790
- "default.handlebars->31->1141"
5793
+ "default.handlebars->31->1142"
5794
]
5795
},
5796
{
@@ -5847,7 +5850,7 @@
5850
"zh-chs": "阿萨姆文",
5851
"zh-cht": "阿薩姆文",
5852
"xloc": [
5850
- "default.handlebars->31->1142"
5853
+ "default.handlebars->31->1143"
5854
]
5855
},
5856
{
@@ -5867,7 +5870,7 @@
5870
"zh-chs": "阿斯图里亚斯文",
5871
"zh-cht": "阿斯圖里亞斯文",
5872
"xloc": [
5870
- "default.handlebars->31->1143"
5873
+ "default.handlebars->31->1144"
5874
]
5875
},
5876
{
@@ -5887,7 +5890,7 @@
5890
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5891
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5892
"xloc": [
5890
- "default.handlebars->31->1682"
5893
+ "default.handlebars->31->1683"
5894
]
5895
},
5896
{
@@ -5907,7 +5910,7 @@
5910
"zh-chs": "认证软件",
5911
"zh-cht": "認證軟體",
5912
"xloc": [
5910
- "default.handlebars->31->2021"
5913
+ "default.handlebars->31->2022"
5914
]
5915
},
5916
{
@@ -5931,8 +5934,8 @@
5934
"default-mobile.handlebars->11->63",
5935
"default-mobile.handlebars->11->82",
5936
"default-mobile.handlebars->11->84",
5934
- "default.handlebars->31->1107",
5935
- "default.handlebars->31->1109",
5937
+ "default.handlebars->31->1108",
5938
+ "default.handlebars->31->1110",
5939
"default.handlebars->31->136",
5940
"default.handlebars->31->141"
5941
]
@@ -6014,7 +6017,7 @@
6017
"zh-chs": "自动删除",
6018
"zh-cht": "自動刪除",
6019
"xloc": [
6017
- "default.handlebars->31->1403"
6020
+ "default.handlebars->31->1404"
6021
]
6022
},
6023
{
@@ -6058,7 +6061,7 @@
6061
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6062
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6063
"xloc": [
6061
- "default.handlebars->31->1763"
6064
+ "default.handlebars->31->1764"
6065
]
6066
},
6067
{
@@ -6098,7 +6101,7 @@
6101
"zh-chs": "可用內存",
6102
"zh-cht": "可用內存",
6103
"xloc": [
6101
- "default.handlebars->31->2199"
6104
+ "default.handlebars->31->2200"
6105
]
6106
},
6107
{
@@ -6118,7 +6121,7 @@
6121
"zh-chs": "阿塞拜疆文",
6122
"zh-cht": "阿塞拜疆文",
6123
"xloc": [
6121
- "default.handlebars->31->1144"
6124
+ "default.handlebars->31->1145"
6125
]
6126
},
6127
{
@@ -6263,8 +6266,8 @@
6266
"zh-chs": "背景与互动",
6267
"zh-cht": "背景與互動",
6268
"xloc": [
6266
- "default.handlebars->31->1586",
6267
- "default.handlebars->31->1593",
6269
+ "default.handlebars->31->1587",
6270
+ "default.handlebars->31->1594",
6271
"default.handlebars->31->353",
6272
"default.handlebars->31->367"
6273
]
@@ -6286,8 +6289,8 @@
6289
"zh-chs": "仅背景",
6290
"zh-cht": "僅背景",
6291
"xloc": [
6289
- "default.handlebars->31->1587",
6290
- "default.handlebars->31->1594",
6292
+ "default.handlebars->31->1588",
6293
+ "default.handlebars->31->1595",
6294
"default.handlebars->31->354",
6295
"default.handlebars->31->368",
6296
"default.handlebars->31->383"
@@ -6331,7 +6334,7 @@
6334
"zh-chs": "备用码",
6335
"zh-cht": "備用碼",
6336
"xloc": [
6334
- "default.handlebars->31->2023"
6337
+ "default.handlebars->31->2024"
6338
]
6339
},
6340
{
@@ -6351,7 +6354,7 @@
6354
"zh-chs": "错误的签名",
6355
"zh-cht": "錯誤的簽名",
6356
"xloc": [
6354
- "default.handlebars->31->2181"
6357
+ "default.handlebars->31->2182"
6358
]
6359
},
6360
{
@@ -6371,7 +6374,7 @@
6374
"zh-chs": "错误的网络证书",
6375
"zh-cht": "錯誤的網絡憑證",
6376
"xloc": [
6374
- "default.handlebars->31->2180"
6377
+ "default.handlebars->31->2181"
6378
]
6379
},
6380
{
@@ -6391,7 +6394,7 @@
6394
"zh-chs": "巴斯克",
6395
"zh-cht": "巴斯克",
6396
"xloc": [
6394
- "default.handlebars->31->1145"
6397
+ "default.handlebars->31->1146"
6398
]
6399
},
6400
{
@@ -6451,7 +6454,7 @@
6454
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6455
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6456
"xloc": [
6454
- "default.handlebars->31->1762"
6457
+ "default.handlebars->31->1763"
6458
]
6459
},
6460
{
@@ -6471,7 +6474,7 @@
6474
"zh-chs": "白俄罗斯文",
6475
"zh-cht": "白俄羅斯文",
6476
"xloc": [
6474
- "default.handlebars->31->1147"
6477
+ "default.handlebars->31->1148"
6478
]
6479
},
6480
{
@@ -6491,7 +6494,7 @@
6494
"zh-chs": "孟加拉",
6495
"zh-cht": "孟加拉",
6496
"xloc": [
6494
- "default.handlebars->31->1148"
6497
+ "default.handlebars->31->1149"
6498
]
6499
},
6500
{
@@ -6542,7 +6545,7 @@
6545
"zh-chs": "波斯尼亚文",
6546
"zh-cht": "波斯尼亞文",
6547
"xloc": [
6545
- "default.handlebars->31->1149"
6548
+ "default.handlebars->31->1150"
6549
]
6550
},
6551
{
@@ -6562,7 +6565,7 @@
6565
"zh-chs": "布列塔尼",
6566
"zh-cht": "布列塔尼",
6567
"xloc": [
6565
- "default.handlebars->31->1150"
6568
+ "default.handlebars->31->1151"
6569
]
6570
},
6571
{
@@ -6582,7 +6585,7 @@
6585
"zh-chs": "广播",
6586
"zh-cht": "廣播",
6587
"xloc": [
6585
- "default.handlebars->31->1937",
6588
+ "default.handlebars->31->1938",
6589
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6590
]
6591
},
@@ -6603,7 +6606,7 @@
6606
"zh-chs": "广播消息",
6607
"zh-cht": "廣播消息",
6608
"xloc": [
6606
- "default.handlebars->31->1858"
6609
+ "default.handlebars->31->1859"
6610
]
6611
},
6612
{
@@ -6623,7 +6626,7 @@
6626
"zh-chs": "向所有连接的用户广播消息。",
6627
"zh-cht": "向所有連接的用戶廣播消息。",
6628
"xloc": [
6626
- "default.handlebars->31->1853"
6629
+ "default.handlebars->31->1854"
6630
]
6631
},
6632
{
@@ -6643,7 +6646,7 @@
6646
"zh-chs": "保加利亚文",
6647
"zh-cht": "保加利亞文",
6648
"xloc": [
6646
- "default.handlebars->31->1146"
6649
+ "default.handlebars->31->1147"
6650
]
6651
},
6652
{
@@ -6663,7 +6666,7 @@
6666
"zh-chs": "缅甸文",
6667
"zh-cht": "緬甸文",
6668
"xloc": [
6666
- "default.handlebars->31->1151"
6669
+ "default.handlebars->31->1152"
6670
]
6671
},
6672
{
@@ -6704,7 +6707,7 @@
6707
"zh-chs": "CCM模式",
6708
"zh-cht": "CCM模式",
6709
"xloc": [
6707
- "default.handlebars->31->1463"
6710
+ "default.handlebars->31->1464"
6711
]
6712
},
6713
{
@@ -6746,7 +6749,7 @@
6749
"zh-chs": "CIRA服务器",
6750
"zh-cht": "CIRA伺服器",
6751
"xloc": [
6749
- "default.handlebars->31->2238"
6752
+ "default.handlebars->31->2239"
6753
]
6754
},
6755
{
@@ -6766,7 +6769,7 @@
6769
"zh-chs": "CIRA服务器命令",
6770
"zh-cht": "CIRA伺服器指令",
6771
"xloc": [
6769
- "default.handlebars->31->2239"
6772
+ "default.handlebars->31->2240"
6773
]
6774
},
6775
{
@@ -6786,7 +6789,7 @@
6789
"zh-chs": "CIRA设置",
6790
"zh-cht": "CIRA設置",
6791
"xloc": [
6789
- "default.handlebars->31->1471"
6792
+ "default.handlebars->31->1472"
6793
]
6794
},
6795
{
@@ -6827,7 +6830,7 @@
6830
"zh-chs": "CPU负载",
6831
"zh-cht": "CPU負載",
6832
"xloc": [
6830
- "default.handlebars->31->2195"
6833
+ "default.handlebars->31->2196"
6834
]
6835
},
6836
{
@@ -6847,7 +6850,7 @@
6850
"zh-chs": "最近15分钟的CPU负载",
6851
"zh-cht": "最近15分鐘的CPU負載",
6852
"xloc": [
6850
- "default.handlebars->31->2198"
6853
+ "default.handlebars->31->2199"
6854
]
6855
},
6856
{
@@ -6867,7 +6870,7 @@
6870
"zh-chs": "最近5分钟的CPU负载",
6871
"zh-cht": "最近5分鐘的CPU負載",
6872
"xloc": [
6870
- "default.handlebars->31->2197"
6873
+ "default.handlebars->31->2198"
6874
]
6875
},
6876
{
@@ -6887,7 +6890,7 @@
6890
"zh-chs": "最近一分钟的CPU负载",
6891
"zh-cht": "最近一分鐘的CPU負載",
6892
"xloc": [
6890
- "default.handlebars->31->2196"
6893
+ "default.handlebars->31->2197"
6894
]
6895
},
6896
{
@@ -6932,7 +6935,7 @@
6935
"zh-chs": "CSV",
6936
"zh-cht": "CSV",
6937
"xloc": [
6935
- "default.handlebars->31->1776"
6938
+ "default.handlebars->31->1777"
6939
]
6940
},
6941
{
@@ -6952,8 +6955,8 @@
6955
"zh-chs": "CSV格式",
6956
"zh-cht": "CSV格式",
6957
"xloc": [
6955
- "default.handlebars->31->1780",
6956
- "default.handlebars->31->1845",
6958
+ "default.handlebars->31->1781",
6959
+ "default.handlebars->31->1846",
6960
"default.handlebars->31->502"
6961
]
6962
},
@@ -6991,7 +6994,7 @@
6994
"zh-chs": "呼叫错误",
6995
"zh-cht": "呼叫錯誤",
6996
"xloc": [
6994
- "default.handlebars->31->2253"
6997
+ "default.handlebars->31->2254"
6998
]
6999
},
7000
{
@@ -7014,7 +7017,7 @@
7017
"agent-translations.json",
7018
"default-mobile.handlebars->11->93",
7019
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
7017
- "default.handlebars->31->1381",
7020
+ "default.handlebars->31->1382",
7021
"default.handlebars->container->dialog->idx_dlgButtonBar",
7022
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7023
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7088,7 +7091,7 @@
7091
"zh-chs": "加泰罗尼亚文",
7092
"zh-cht": "加泰羅尼亞文",
7093
"xloc": [
7091
- "default.handlebars->31->1152"
7094
+ "default.handlebars->31->1153"
7095
]
7096
},
7097
{
@@ -7128,7 +7131,7 @@
7131
"zh-chs": "查莫罗",
7132
"zh-cht": "查莫羅",
7133
"xloc": [
7131
- "default.handlebars->31->1153"
7134
+ "default.handlebars->31->1154"
7135
]
7136
},
7137
{
@@ -7170,7 +7173,7 @@
7173
"zh-chs": "更改{0}的电邮",
7174
"zh-cht": "更改{0}的電郵",
7175
"xloc": [
7173
- "default.handlebars->31->2053"
7176
+ "default.handlebars->31->2054"
7177
]
7178
},
7179
{
@@ -7213,8 +7216,8 @@
7216
"zh-cht": "更改密碼",
7217
"xloc": [
7218
"default-mobile.handlebars->11->101",
7216
- "default.handlebars->31->1348",
7217
- "default.handlebars->31->2040"
7219
+ "default.handlebars->31->1349",
7220
+ "default.handlebars->31->2041"
7221
]
7222
},
7223
{
@@ -7234,7 +7237,7 @@
7237
"zh-chs": "更改{0}的密码",
7238
"zh-cht": "更改{0}的密碼",
7239
"xloc": [
7237
- "default.handlebars->31->2060"
7240
+ "default.handlebars->31->2061"
7241
]
7242
},
7243
{
@@ -7254,7 +7257,7 @@
7257
"zh-chs": "更改{0}的真实名称",
7258
"zh-cht": "更改{0}的真實名稱",
7259
"xloc": [
7257
- "default.handlebars->31->2048"
7260
+ "default.handlebars->31->2049"
7261
]
7262
},
7263
{
@@ -7336,7 +7339,7 @@
7339
"zh-chs": "更改该用户的密码",
7340
"zh-cht": "更改該用戶的密碼",
7341
"xloc": [
7339
- "default.handlebars->31->2039"
7342
+ "default.handlebars->31->2040"
7343
]
7344
},
7345
{
@@ -7376,7 +7379,7 @@
7379
"zh-chs": "在此处更改您的帐户电邮地址。",
7380
"zh-cht": "在此處更改你的帳戶電郵地址。",
7381
"xloc": [
7379
- "default.handlebars->31->1335"
7382
+ "default.handlebars->31->1336"
7383
]
7384
},
7385
{
@@ -7396,7 +7399,7 @@
7399
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7400
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7401
"xloc": [
7399
- "default.handlebars->31->1341"
7402
+ "default.handlebars->31->1342"
7403
]
7404
},
7405
{
@@ -7416,7 +7419,7 @@
7419
"zh-chs": "更改帐户凭据",
7420
"zh-cht": "帳戶憑證已更改",
7421
"xloc": [
7419
- "default.handlebars->31->1734"
7422
+ "default.handlebars->31->1735"
7423
]
7424
},
7425
{
@@ -7436,7 +7439,7 @@
7439
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7440
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7441
"xloc": [
7439
- "default.handlebars->31->1718"
7442
+ "default.handlebars->31->1719"
7443
]
7444
},
7445
{
@@ -7456,7 +7459,7 @@
7459
"zh-chs": "语言从{1}更改为{2}",
7460
"zh-cht": "語言從{1}更改為{2}",
7461
"xloc": [
7459
- "default.handlebars->31->1662"
7462
+ "default.handlebars->31->1663"
7463
]
7464
},
7465
{
@@ -7476,8 +7479,8 @@
7479
"zh-chs": "已更改{0}的用户设备权限",
7480
"zh-cht": "已更改{0}的用戶設備權限",
7481
"xloc": [
7479
- "default.handlebars->31->1720",
7480
- "default.handlebars->31->1741"
7482
+ "default.handlebars->31->1721",
7483
+ "default.handlebars->31->1742"
7484
]
7485
},
7486
{
@@ -7497,7 +7500,7 @@
7500
"zh-chs": "更改语言将需要刷新页面。",
7501
"zh-cht": "更改語言將需要刷新頁面。",
7502
"xloc": [
7500
- "default.handlebars->31->1320"
7503
+ "default.handlebars->31->1321"
7504
]
7505
},
7506
{
@@ -7517,9 +7520,9 @@
7520
"zh-chs": "聊天",
7521
"zh-cht": "聊天",
7522
"xloc": [
7520
- "default.handlebars->31->1797",
7521
- "default.handlebars->31->2035",
7523
+ "default.handlebars->31->1798",
7524
"default.handlebars->31->2036",
7525
+ "default.handlebars->31->2037",
7526
"default.handlebars->31->713",
7527
"default.handlebars->31->734"
7528
]
@@ -7543,8 +7546,8 @@
7546
"xloc": [
7547
"default-mobile.handlebars->11->487",
7548
"default-mobile.handlebars->11->507",
7546
- "default.handlebars->31->1532",
7547
- "default.handlebars->31->1568"
7549
+ "default.handlebars->31->1533",
7550
+ "default.handlebars->31->1569"
7551
]
7552
},
7553
{
@@ -7553,7 +7556,7 @@
7556
"fr": "Demande de chat, cliquez ici pour accepter.",
7557
"xloc": [
7558
"default-mobile.handlebars->11->539",
7556
- "default.handlebars->31->2150"
7559
+ "default.handlebars->31->2151"
7560
]
7561
},
7562
{
@@ -7593,7 +7596,7 @@
7596
"zh-chs": "车臣",
7597
"zh-cht": "車臣",
7598
"xloc": [
7596
- "default.handlebars->31->1154"
7599
+ "default.handlebars->31->1155"
7600
]
7601
},
7602
{
@@ -7693,8 +7696,8 @@
7696
"zh-chs": "检查...",
7697
"zh-cht": "檢查...",
7698
"xloc": [
7696
- "default.handlebars->31->1120",
7697
- "default.handlebars->31->2247"
7699
+ "default.handlebars->31->1121",
7700
+ "default.handlebars->31->2248"
7701
]
7702
},
7703
{
@@ -7714,7 +7717,7 @@
7717
"zh-chs": "中文",
7718
"zh-cht": "中文",
7719
"xloc": [
7717
- "default.handlebars->31->1155"
7720
+ "default.handlebars->31->1156"
7721
]
7722
},
7723
{
@@ -7734,7 +7737,7 @@
7737
"zh-chs": "中文(香港)",
7738
"zh-cht": "中文(香港)",
7739
"xloc": [
7737
- "default.handlebars->31->1156"
7740
+ "default.handlebars->31->1157"
7741
]
7742
},
7743
{
@@ -7754,7 +7757,7 @@
7757
"zh-chs": "中文(中国)",
7758
"zh-cht": "中文(中國)",
7759
"xloc": [
7757
- "default.handlebars->31->1157"
7760
+ "default.handlebars->31->1158"
7761
]
7762
},
7763
{
@@ -7774,7 +7777,7 @@
7777
"zh-chs": "简体中文",
7778
"zh-cht": "簡體中文",
7779
"xloc": [
7777
- "default.handlebars->31->1317"
7780
+ "default.handlebars->31->1318"
7781
]
7782
},
7783
{
@@ -7794,7 +7797,7 @@
7797
"zh-chs": "中文(新加坡)",
7798
"zh-cht": "中文(新加坡)",
7799
"xloc": [
7797
- "default.handlebars->31->1158"
7800
+ "default.handlebars->31->1159"
7801
]
7802
},
7803
{
@@ -7814,7 +7817,7 @@
7817
"zh-chs": "中文(台湾)",
7818
"zh-cht": "中文(台灣)",
7819
"xloc": [
7817
- "default.handlebars->31->1159"
7820
+ "default.handlebars->31->1160"
7821
]
7822
},
7823
{
@@ -7834,7 +7837,7 @@
7837
"zh-chs": "繁体中文",
7838
"zh-cht": "繁體中文",
7839
"xloc": [
7837
- "default.handlebars->31->1318"
7840
+ "default.handlebars->31->1319"
7841
]
7842
},
7843
{
@@ -7875,7 +7878,7 @@
7878
"zh-chs": "楚瓦什",
7879
"zh-cht": "楚瓦什",
7880
"xloc": [
7878
- "default.handlebars->31->1160"
7881
+ "default.handlebars->31->1161"
7882
]
7883
},
7884
{
@@ -7918,7 +7921,7 @@
7921
"default-mobile.handlebars->11->372",
7922
"default-mobile.handlebars->11->374",
7923
"default-mobile.handlebars->11->70",
7921
- "default.handlebars->31->1656",
7924
+ "default.handlebars->31->1657",
7925
"default.handlebars->31->979",
7926
"default.handlebars->31->981",
7927
"default.handlebars->31->983",
@@ -7966,7 +7969,7 @@
7969
"zh-cht": "全部清除",
7970
"xloc": [
7971
"default-mobile.handlebars->11->522",
7969
- "default.handlebars->31->2133"
7972
+ "default.handlebars->31->2134"
7973
]
7974
},
7975
{
@@ -8048,7 +8051,7 @@
8051
"zh-cht": "清除此通知",
8052
"xloc": [
8053
"default-mobile.handlebars->11->521",
8051
- "default.handlebars->31->2132"
8054
+ "default.handlebars->31->2133"
8055
]
8056
},
8057
{
@@ -8108,8 +8111,8 @@
8111
"zh-chs": "单击此处编辑设备组名称",
8112
"zh-cht": "單擊此處編輯裝置群名稱",
8113
"xloc": [
8111
- "default.handlebars->31->1392",
8112
- "default.handlebars->31->1607"
8114
+ "default.handlebars->31->1393",
8115
+ "default.handlebars->31->1608"
8116
]
8117
},
8118
{
@@ -8149,7 +8152,7 @@
8152
"zh-chs": "单击此处编辑用户组名称",
8153
"zh-cht": "單擊此處編輯用戶群名稱",
8154
"xloc": [
8152
- "default.handlebars->31->1914"
8155
+ "default.handlebars->31->1915"
8156
]
8157
},
8158
{
@@ -8220,7 +8223,7 @@
8223
"zh-cht": "單擊確定將驗證電郵發送到:",
8224
"xloc": [
8225
"default-mobile.handlebars->11->86",
8223
- "default.handlebars->31->1332"
8226
+ "default.handlebars->31->1333"
8227
]
8228
},
8229
{
@@ -8302,7 +8305,7 @@
8305
"zh-chs": "客户编号",
8306
"zh-cht": "客戶編號",
8307
"xloc": [
8305
- "default.handlebars->31->1374"
8308
+ "default.handlebars->31->1375"
8309
]
8310
},
8311
{
@@ -8322,7 +8325,7 @@
8325
"zh-chs": "客户端启动的远程访问",
8326
"zh-cht": "客戶端啟動的遠程訪問",
8327
"xloc": [
8325
- "default.handlebars->31->1470"
8328
+ "default.handlebars->31->1471"
8329
]
8330
},
8331
{
@@ -8342,7 +8345,7 @@
8345
"zh-chs": "客户机密",
8346
"zh-cht": "客戶機密",
8347
"xloc": [
8345
- "default.handlebars->31->1375"
8348
+ "default.handlebars->31->1376"
8349
]
8350
},
8351
{
@@ -8407,7 +8410,7 @@
8410
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8411
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8412
"xloc": [
8410
- "default.handlebars->31->1667"
8413
+ "default.handlebars->31->1668"
8414
]
8415
},
8416
{
@@ -8530,7 +8533,7 @@
8533
"zh-cht": "指令",
8534
"xloc": [
8535
"default-mobile.handlebars->11->509",
8533
- "default.handlebars->31->1570",
8536
+ "default.handlebars->31->1571",
8537
"default.handlebars->31->715",
8538
"default.handlebars->31->736"
8539
]
@@ -8552,8 +8555,8 @@
8555
"zh-chs": "通用设备组",
8556
"zh-cht": "通用裝置群",
8557
"xloc": [
8555
- "default.handlebars->31->1945",
8556
- "default.handlebars->31->2065"
8558
+ "default.handlebars->31->1946",
8559
+ "default.handlebars->31->2066"
8560
]
8561
},
8562
{
@@ -8573,8 +8576,8 @@
8576
"zh-chs": "通用设备",
8577
"zh-cht": "通用裝置",
8578
"xloc": [
8576
- "default.handlebars->31->1951",
8577
- "default.handlebars->31->2077"
8579
+ "default.handlebars->31->1952",
8580
+ "default.handlebars->31->2078"
8581
]
8582
},
8583
{
@@ -8616,11 +8619,11 @@
8619
"xloc": [
8620
"default-mobile.handlebars->11->301",
8621
"default-mobile.handlebars->11->467",
8619
- "default.handlebars->31->1481",
8620
- "default.handlebars->31->1825",
8621
- "default.handlebars->31->1904",
8622
- "default.handlebars->31->1965",
8623
- "default.handlebars->31->2063",
8622
+ "default.handlebars->31->1482",
8623
+ "default.handlebars->31->1826",
8624
+ "default.handlebars->31->1905",
8625
+ "default.handlebars->31->1966",
8626
+ "default.handlebars->31->2064",
8627
"default.handlebars->31->472",
8628
"default.handlebars->31->812",
8629
"default.handlebars->31->821"
@@ -8704,7 +8707,7 @@
8707
"zh-chs": "确认删除选定的帐户?",
8708
"zh-cht": "確認刪除所選帳戶?",
8709
"xloc": [
8707
- "default.handlebars->31->1824"
8710
+ "default.handlebars->31->1825"
8711
]
8712
},
8713
{
@@ -8744,7 +8747,7 @@
8747
"zh-chs": "确认删除选定的用户组?",
8748
"zh-cht": "確認刪除所選用戶群?",
8749
"xloc": [
8747
- "default.handlebars->31->1903"
8750
+ "default.handlebars->31->1904"
8751
]
8752
},
8753
{
@@ -8764,7 +8767,7 @@
8767
"zh-chs": "确认删除用户{0}?",
8768
"zh-cht": "確認刪除用戶{0}?",
8769
"xloc": [
8767
- "default.handlebars->31->2062"
8770
+ "default.handlebars->31->2063"
8771
]
8772
},
8773
{
@@ -8784,7 +8787,7 @@
8787
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8788
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8789
"xloc": [
8787
- "default.handlebars->31->1968"
8790
+ "default.handlebars->31->1969"
8791
]
8792
},
8793
{
@@ -8804,7 +8807,7 @@
8807
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8808
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8809
"xloc": [
8807
- "default.handlebars->31->2094"
8810
+ "default.handlebars->31->2095"
8811
]
8812
},
8813
{
@@ -8885,7 +8888,7 @@
8888
"zh-chs": "确认覆盖?",
8889
"zh-cht": "確認覆蓋?",
8890
"xloc": [
8888
- "default.handlebars->31->1650"
8891
+ "default.handlebars->31->1651"
8892
]
8893
},
8894
{
@@ -8905,8 +8908,8 @@
8908
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
8909
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8910
"xloc": [
8908
- "default.handlebars->31->1958",
8909
- "default.handlebars->31->2085"
8911
+ "default.handlebars->31->1959",
8912
+ "default.handlebars->31->2086"
8913
]
8914
},
8915
{
@@ -8926,8 +8929,8 @@
8929
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8930
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8931
"xloc": [
8929
- "default.handlebars->31->1960",
8930
- "default.handlebars->31->2098"
8932
+ "default.handlebars->31->1961",
8933
+ "default.handlebars->31->2099"
8934
]
8935
},
8936
{
@@ -8947,7 +8950,7 @@
8950
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
8951
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8952
"xloc": [
8950
- "default.handlebars->31->2087"
8953
+ "default.handlebars->31->2088"
8954
]
8955
},
8956
{
@@ -8967,7 +8970,7 @@
8970
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8971
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8972
"xloc": [
8970
- "default.handlebars->31->2090"
8973
+ "default.handlebars->31->2091"
8974
]
8975
},
8976
{
@@ -8987,8 +8990,8 @@
8990
"zh-chs": "确认删除访问权限?",
8991
"zh-cht": "確認刪除訪問權限?",
8992
"xloc": [
8990
- "default.handlebars->31->2088",
8991
- "default.handlebars->31->2091"
8993
+ "default.handlebars->31->2089",
8994
+ "default.handlebars->31->2092"
8995
]
8996
},
8997
{
@@ -9009,7 +9012,7 @@
9012
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
9013
"xloc": [
9014
"default-mobile.handlebars->11->85",
9012
- "default.handlebars->31->1110"
9015
+ "default.handlebars->31->1111"
9016
]
9017
},
9018
{
@@ -9046,7 +9049,7 @@
9049
"zh-chs": "确认删除设备共享“{0}”?",
9050
"zh-cht": "確認刪除設備共享“{0}”?",
9051
"xloc": [
9049
- "default.handlebars->31->2083"
9052
+ "default.handlebars->31->2084"
9053
]
9054
},
9055
{
@@ -9100,7 +9103,7 @@
9103
"zh-chs": "确认删除用户“ {0} ”的权限?",
9104
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9105
"xloc": [
9103
- "default.handlebars->31->1579"
9106
+ "default.handlebars->31->1580"
9107
]
9108
},
9109
{
@@ -9120,7 +9123,7 @@
9123
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9124
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9125
"xloc": [
9123
- "default.handlebars->31->1581"
9126
+ "default.handlebars->31->1582"
9127
]
9128
},
9129
{
@@ -9178,7 +9181,7 @@
9181
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9182
"xloc": [
9183
"default-mobile.handlebars->11->138",
9181
- "default.handlebars->31->1651"
9184
+ "default.handlebars->31->1652"
9185
]
9186
},
9187
{
@@ -9202,7 +9205,7 @@
9205
"default-mobile.handlebars->11->345",
9206
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9207
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9205
- "default.handlebars->31->1420",
9208
+ "default.handlebars->31->1421",
9209
"default.handlebars->31->946",
9210
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9211
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
@@ -9251,7 +9254,7 @@
9254
"zh-chs": "连接到服务器",
9255
"zh-cht": "連接到伺服器",
9256
"xloc": [
9254
- "default.handlebars->31->1474"
9257
+ "default.handlebars->31->1475"
9258
]
9259
},
9260
{
@@ -9373,7 +9376,7 @@
9376
"zh-chs": "已连接的英特尔®AMT",
9377
"zh-cht": "已連接的Intel® AMT",
9378
"xloc": [
9376
- "default.handlebars->31->2186"
9379
+ "default.handlebars->31->2187"
9380
]
9381
},
9382
{
@@ -9393,7 +9396,7 @@
9396
"zh-chs": "已连接的用户",
9397
"zh-cht": "已连接的用户",
9398
"xloc": [
9396
- "default.handlebars->31->2191"
9399
+ "default.handlebars->31->2192"
9400
]
9401
},
9402
{
@@ -9484,7 +9487,7 @@
9487
"zh-chs": "连接数量",
9488
"zh-cht": "連接數量",
9489
"xloc": [
9487
- "default.handlebars->31->2205"
9490
+ "default.handlebars->31->2206"
9491
]
9492
},
9493
{
@@ -9504,7 +9507,7 @@
9507
"zh-chs": "连接转发器",
9508
"zh-cht": "連接轉發器",
9509
"xloc": [
9507
- "default.handlebars->31->2237"
9510
+ "default.handlebars->31->2238"
9511
]
9512
},
9513
{
@@ -9565,7 +9568,7 @@
9568
"zh-cht": "連接性",
9569
"xloc": [
9570
"default-mobile.handlebars->11->266",
9568
- "default.handlebars->31->1614",
9571
+ "default.handlebars->31->1615",
9572
"default.handlebars->31->235",
9573
"default.handlebars->31->633",
9574
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
@@ -9654,7 +9657,7 @@
9657
"zh-chs": "Cookie编码器",
9658
"zh-cht": "Cookie編碼器",
9659
"xloc": [
9657
- "default.handlebars->31->2221"
9660
+ "default.handlebars->31->2222"
9661
]
9662
},
9663
{
@@ -9811,8 +9814,8 @@
9814
"zh-chs": "复制连结到剪贴板",
9815
"zh-cht": "複製連結到剪貼板",
9816
"xloc": [
9814
- "default.handlebars->31->1619",
9815
- "default.handlebars->31->1638",
9817
+ "default.handlebars->31->1620",
9818
+ "default.handlebars->31->1639",
9819
"default.handlebars->31->211",
9820
"default.handlebars->31->370"
9821
]
@@ -9915,7 +9918,7 @@
9918
"zh-chs": "复制:“{0}”到“{1}”",
9919
"zh-cht": "複製:“{0}”到“{1}”",
9920
"xloc": [
9918
- "default.handlebars->31->1710"
9921
+ "default.handlebars->31->1711"
9922
]
9923
},
9924
{
@@ -10061,7 +10064,7 @@
10064
"zh-chs": "核心服务器",
10065
"zh-cht": "核心伺服器",
10066
"xloc": [
10064
- "default.handlebars->31->2220"
10067
+ "default.handlebars->31->2221"
10068
]
10069
},
10070
{
@@ -10081,7 +10084,7 @@
10084
"zh-chs": "科西嘉文",
10085
"zh-cht": "科西嘉文",
10086
"xloc": [
10084
- "default.handlebars->31->1161"
10087
+ "default.handlebars->31->1162"
10088
]
10089
},
10090
{
@@ -10101,7 +10104,7 @@
10104
"zh-chs": "创建帐号",
10105
"zh-cht": "創建帳號",
10106
"xloc": [
10104
- "default.handlebars->31->1872",
10107
+ "default.handlebars->31->1873",
10108
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10109
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10110
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10144,7 +10147,7 @@
10147
"zh-chs": "创建用户组",
10148
"zh-cht": "創建用戶群",
10149
"xloc": [
10147
- "default.handlebars->31->1911"
10150
+ "default.handlebars->31->1912"
10151
]
10152
},
10153
{
@@ -10184,7 +10187,7 @@
10187
"zh-chs": "使用以下选项创建一个新的设备组。",
10188
"zh-cht": "使用以下選項創建一個新的裝置群。",
10189
"xloc": [
10187
- "default.handlebars->31->1355"
10190
+ "default.handlebars->31->1356"
10191
]
10192
},
10193
{
@@ -10244,7 +10247,7 @@
10247
"zh-chs": "创建文件夹:“{0}”",
10248
"zh-cht": "創建文件夾:“{0}”",
10249
"xloc": [
10247
- "default.handlebars->31->1703"
10250
+ "default.handlebars->31->1704"
10251
]
10252
},
10253
{
@@ -10264,7 +10267,7 @@
10267
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10268
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10269
"xloc": [
10267
- "default.handlebars->31->1836"
10270
+ "default.handlebars->31->1837"
10271
]
10272
},
10273
{
@@ -10306,7 +10309,7 @@
10309
"zh-chs": "创建的设备组:{0}",
10310
"zh-cht": "創建的設備組:{0}",
10311
"xloc": [
10309
- "default.handlebars->31->1714"
10312
+ "default.handlebars->31->1715"
10313
]
10314
},
10315
{
@@ -10380,7 +10383,7 @@
10383
"zh-chs": "创建",
10384
"zh-cht": "創建",
10385
"xloc": [
10383
- "default.handlebars->31->1997"
10386
+ "default.handlebars->31->1998"
10387
]
10388
},
10389
{
@@ -10400,7 +10403,7 @@
10403
"zh-chs": "创建时间",
10404
"zh-cht": "創作時間",
10405
"xloc": [
10403
- "default.handlebars->31->1402"
10406
+ "default.handlebars->31->1403"
10407
]
10408
},
10409
{
@@ -10442,8 +10445,8 @@
10445
"zh-chs": "创建者",
10446
"zh-cht": "創作者",
10447
"xloc": [
10445
- "default.handlebars->31->1400",
10446
- "default.handlebars->31->1401"
10448
+ "default.handlebars->31->1401",
10449
+ "default.handlebars->31->1402"
10450
]
10451
},
10452
{
@@ -10463,7 +10466,7 @@
10466
"zh-chs": "证书",
10467
"zh-cht": "證書",
10468
"xloc": [
10466
- "default.handlebars->31->1372"
10469
+ "default.handlebars->31->1373"
10470
]
10471
},
10472
{
@@ -10483,7 +10486,7 @@
10486
"zh-chs": "克里语",
10487
"zh-cht": "克里語",
10488
"xloc": [
10486
- "default.handlebars->31->1162"
10489
+ "default.handlebars->31->1163"
10490
]
10491
},
10492
{
@@ -10503,7 +10506,7 @@
10506
"zh-chs": "克罗地亚文",
10507
"zh-cht": "克羅地亞文",
10508
"xloc": [
10506
- "default.handlebars->31->1163"
10509
+ "default.handlebars->31->1164"
10510
]
10511
},
10512
{
@@ -10678,7 +10681,7 @@
10681
"fr": "Le mot de passe actuel n'est pas correct.",
10682
"xloc": [
10683
"default-mobile.handlebars->11->549",
10681
- "default.handlebars->31->2160"
10684
+ "default.handlebars->31->2161"
10685
]
10686
},
10687
{
@@ -10736,7 +10739,7 @@
10739
"zh-chs": "捷克文",
10740
"zh-cht": "捷克文",
10741
"xloc": [
10739
- "default.handlebars->31->1164"
10742
+ "default.handlebars->31->1165"
10743
]
10744
},
10745
{
@@ -10776,7 +10779,7 @@
10779
"zh-chs": "丹麦文",
10780
"zh-cht": "丹麥文",
10781
"xloc": [
10779
- "default.handlebars->31->1165"
10782
+ "default.handlebars->31->1166"
10783
]
10784
},
10785
{
@@ -10817,7 +10820,7 @@
10820
"zh-chs": "日期和时间",
10821
"zh-cht": "日期和時間",
10822
"xloc": [
10820
- "default.handlebars->31->1323"
10823
+ "default.handlebars->31->1324"
10824
]
10825
},
10826
{
@@ -10858,7 +10861,7 @@
10861
"zh-chs": "停用",
10862
"zh-cht": "停用",
10863
"xloc": [
10861
- "default.handlebars->31->1453"
10864
+ "default.handlebars->31->1454"
10865
]
10866
},
10867
{
@@ -10878,7 +10881,7 @@
10881
"zh-chs": "如果设置停用CCM",
10882
"zh-cht": "如果設置停用CCM",
10883
"xloc": [
10881
- "default.handlebars->31->1465"
10884
+ "default.handlebars->31->1466"
10885
]
10886
},
10887
{
@@ -10936,10 +10939,10 @@
10939
"zh-chs": "默认",
10940
"zh-cht": "默認",
10941
"xloc": [
10939
- "default.handlebars->31->1859",
10940
- "default.handlebars->31->1907",
10941
- "default.handlebars->31->1918",
10942
- "default.handlebars->31->1986"
10942
+ "default.handlebars->31->1860",
10943
+ "default.handlebars->31->1908",
10944
+ "default.handlebars->31->1919",
10945
+ "default.handlebars->31->1987"
10946
]
10947
},
10948
{
@@ -10972,7 +10975,7 @@
10975
"default-mobile.handlebars->11->355",
10976
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10977
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10975
- "default.handlebars->31->1645",
10978
+ "default.handlebars->31->1646",
10979
"default.handlebars->31->535",
10980
"default.handlebars->31->965",
10981
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
@@ -11003,7 +11006,7 @@
11006
"zh-cht": "刪除帳戶",
11007
"xloc": [
11008
"default-mobile.handlebars->11->95",
11006
- "default.handlebars->31->1340"
11009
+ "default.handlebars->31->1341"
11010
]
11011
},
11012
{
@@ -11023,7 +11026,7 @@
11026
"zh-chs": "删除帐户",
11027
"zh-cht": "刪除帳戶",
11028
"xloc": [
11026
- "default.handlebars->31->1826"
11029
+ "default.handlebars->31->1827"
11030
]
11031
},
11032
{
@@ -11066,8 +11069,8 @@
11069
"xloc": [
11070
"default-mobile.handlebars->11->465",
11071
"default-mobile.handlebars->11->468",
11069
- "default.handlebars->31->1449",
11070
- "default.handlebars->31->1482"
11072
+ "default.handlebars->31->1450",
11073
+ "default.handlebars->31->1483"
11074
]
11075
},
11076
{
@@ -11128,7 +11131,7 @@
11131
"zh-chs": "删除用户",
11132
"zh-cht": "刪除用戶",
11133
"xloc": [
11131
- "default.handlebars->31->2038"
11134
+ "default.handlebars->31->2039"
11135
]
11136
},
11137
{
@@ -11148,8 +11151,8 @@
11151
"zh-chs": "删除用户群组",
11152
"zh-cht": "刪除用戶群組",
11153
"xloc": [
11151
- "default.handlebars->31->1956",
11152
- "default.handlebars->31->1966"
11154
+ "default.handlebars->31->1957",
11155
+ "default.handlebars->31->1967"
11156
]
11157
},
11158
{
@@ -11169,7 +11172,7 @@
11172
"zh-chs": "删除用户群组",
11173
"zh-cht": "刪除用戶群組",
11174
"xloc": [
11172
- "default.handlebars->31->1905"
11175
+ "default.handlebars->31->1906"
11176
]
11177
},
11178
{
@@ -11189,7 +11192,7 @@
11192
"zh-chs": "删除用户{0}",
11193
"zh-cht": "刪除用戶{0}",
11194
"xloc": [
11192
- "default.handlebars->31->2061"
11195
+ "default.handlebars->31->2062"
11196
]
11197
},
11198
{
@@ -11210,7 +11213,7 @@
11213
"zh-cht": "刪除帳戶",
11214
"xloc": [
11215
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11213
- "default.handlebars->31->1822",
11216
+ "default.handlebars->31->1823",
11217
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11218
]
11219
},
@@ -11251,7 +11254,7 @@
11254
"zh-chs": "删除群组",
11255
"zh-cht": "刪除群組",
11256
"xloc": [
11254
- "default.handlebars->31->1901"
11257
+ "default.handlebars->31->1902"
11258
]
11259
},
11260
{
@@ -11291,7 +11294,7 @@
11294
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11295
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11296
"xloc": [
11294
- "default.handlebars->31->1705"
11297
+ "default.handlebars->31->1706"
11298
]
11299
},
11300
{
@@ -11313,7 +11316,7 @@
11316
"xloc": [
11317
"default-mobile.handlebars->11->135",
11318
"default-mobile.handlebars->11->357",
11316
- "default.handlebars->31->1647",
11319
+ "default.handlebars->31->1648",
11320
"default.handlebars->31->967"
11321
]
11322
},
@@ -11334,7 +11337,7 @@
11337
"zh-chs": "删除用户群组{0}?",
11338
"zh-cht": "刪除用戶群組{0}?",
11339
"xloc": [
11337
- "default.handlebars->31->1964"
11340
+ "default.handlebars->31->1965"
11341
]
11342
},
11343
{
@@ -11356,7 +11359,7 @@
11359
"xloc": [
11360
"default-mobile.handlebars->11->134",
11361
"default-mobile.handlebars->11->356",
11359
- "default.handlebars->31->1646",
11362
+ "default.handlebars->31->1647",
11363
"default.handlebars->31->966"
11364
]
11365
},
@@ -11397,7 +11400,7 @@
11400
"zh-chs": "删除:“{0}”",
11401
"zh-cht": "刪除:“{0}”",
11402
"xloc": [
11400
- "default.handlebars->31->1704"
11403
+ "default.handlebars->31->1705"
11404
]
11405
},
11406
{
@@ -11417,7 +11420,7 @@
11420
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11421
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11422
"xloc": [
11420
- "default.handlebars->31->1706"
11423
+ "default.handlebars->31->1707"
11424
]
11425
},
11426
{
@@ -11538,13 +11541,13 @@
11541
"default-mobile.handlebars->11->470",
11542
"default.handlebars->31->1018",
11543
"default.handlebars->31->1028",
11541
- "default.handlebars->31->1360",
11542
- "default.handlebars->31->1397",
11543
- "default.handlebars->31->1484",
11544
- "default.handlebars->31->1910",
11545
- "default.handlebars->31->1920",
11544
+ "default.handlebars->31->1361",
11545
+ "default.handlebars->31->1398",
11546
+ "default.handlebars->31->1485",
11547
+ "default.handlebars->31->1911",
11548
"default.handlebars->31->1921",
11547
- "default.handlebars->31->1962",
11549
+ "default.handlebars->31->1922",
11550
+ "default.handlebars->31->1963",
11551
"default.handlebars->31->576",
11552
"default.handlebars->31->577",
11553
"default.handlebars->31->860",
@@ -11587,8 +11590,8 @@
11590
"zh-cht": "桌面",
11591
"xloc": [
11592
"default-mobile.handlebars->11->278",
11590
- "default.handlebars->31->1490",
11591
- "default.handlebars->31->2110",
11593
+ "default.handlebars->31->1491",
11594
+ "default.handlebars->31->2111",
11595
"default.handlebars->31->541",
11596
"default.handlebars->31->695",
11597
"default.handlebars->31->750",
@@ -11635,9 +11638,9 @@
11638
"zh-chs": "桌面通知",
11639
"zh-cht": "桌面通知",
11640
"xloc": [
11638
- "default.handlebars->31->1411",
11639
- "default.handlebars->31->1925",
11640
- "default.handlebars->31->2012",
11641
+ "default.handlebars->31->1412",
11642
+ "default.handlebars->31->1926",
11643
+ "default.handlebars->31->2013",
11644
"default.handlebars->31->614"
11645
]
11646
},
@@ -11658,9 +11661,9 @@
11661
"zh-chs": "桌面提示",
11662
"zh-cht": "桌面提示",
11663
"xloc": [
11661
- "default.handlebars->31->1410",
11662
- "default.handlebars->31->1924",
11663
- "default.handlebars->31->2011",
11664
+ "default.handlebars->31->1411",
11665
+ "default.handlebars->31->1925",
11666
+ "default.handlebars->31->2012",
11667
"default.handlebars->31->613"
11668
]
11669
},
@@ -11681,9 +11684,9 @@
11684
"zh-chs": "桌面提示+工具栏",
11685
"zh-cht": "桌面提示+工具欄",
11686
"xloc": [
11684
- "default.handlebars->31->1408",
11685
- "default.handlebars->31->1922",
11686
- "default.handlebars->31->2009",
11687
+ "default.handlebars->31->1409",
11688
+ "default.handlebars->31->1923",
11689
+ "default.handlebars->31->2010",
11690
"default.handlebars->31->611"
11691
]
11692
},
@@ -11746,9 +11749,9 @@
11749
"zh-chs": "桌面工具栏",
11750
"zh-cht": "桌面工具欄",
11751
"xloc": [
11749
- "default.handlebars->31->1409",
11750
- "default.handlebars->31->1923",
11751
- "default.handlebars->31->2010",
11752
+ "default.handlebars->31->1410",
11753
+ "default.handlebars->31->1924",
11754
+ "default.handlebars->31->2011",
11755
"default.handlebars->31->612"
11756
]
11757
},
@@ -11861,9 +11864,9 @@
11864
"xloc": [
11865
"default-mobile.handlebars->11->395",
11866
"default.handlebars->31->1013",
11864
- "default.handlebars->31->1513",
11867
+ "default.handlebars->31->1514",
11868
"default.handlebars->31->197",
11866
- "default.handlebars->31->2080",
11869
+ "default.handlebars->31->2081",
11870
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11871
]
11872
},
@@ -11928,15 +11931,15 @@
11931
"xloc": [
11932
"agent-translations.json",
11933
"default-mobile.handlebars->11->527",
11931
- "default.handlebars->31->1508",
11932
- "default.handlebars->31->1511",
11934
+ "default.handlebars->31->1509",
11935
"default.handlebars->31->1512",
11934
- "default.handlebars->31->1773",
11935
- "default.handlebars->31->1948",
11936
- "default.handlebars->31->1954",
11937
- "default.handlebars->31->2068",
11938
- "default.handlebars->31->2119",
11939
- "default.handlebars->31->2138"
11936
+ "default.handlebars->31->1513",
11937
+ "default.handlebars->31->1774",
11938
+ "default.handlebars->31->1949",
11939
+ "default.handlebars->31->1955",
11940
+ "default.handlebars->31->2069",
11941
+ "default.handlebars->31->2120",
11942
+ "default.handlebars->31->2139"
11943
]
11944
},
11945
{
@@ -11957,7 +11960,7 @@
11960
"zh-cht": "裝置群用戶",
11961
"xloc": [
11962
"default-mobile.handlebars->11->516",
11960
- "default.handlebars->31->1577"
11963
+ "default.handlebars->31->1578"
11964
]
11965
},
11966
{
@@ -11978,11 +11981,11 @@
11981
"zh-cht": "裝置群",
11982
"xloc": [
11983
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11981
- "default.handlebars->31->1789",
11982
- "default.handlebars->31->1895",
11983
- "default.handlebars->31->1935",
11984
- "default.handlebars->31->2006",
11985
- "default.handlebars->31->2189",
11984
+ "default.handlebars->31->1790",
11985
+ "default.handlebars->31->1896",
11986
+ "default.handlebars->31->1936",
11987
+ "default.handlebars->31->2007",
11988
+ "default.handlebars->31->2190",
11989
"default.handlebars->container->column_l->p2->p2info->7"
11990
]
11991
},
@@ -12064,7 +12067,7 @@
12067
"zh-cht": "裝置名稱",
12068
"xloc": [
12069
"default-mobile.handlebars->11->303",
12067
- "default.handlebars->31->2118",
12070
+ "default.handlebars->31->2119",
12071
"default.handlebars->31->305",
12072
"default.handlebars->31->858",
12073
"player.handlebars->3->9"
@@ -12165,8 +12168,8 @@
12168
"zh-chs": "设备连接。",
12169
"zh-cht": "裝置連接。",
12170
"xloc": [
12168
- "default.handlebars->31->1328",
12169
- "default.handlebars->31->1598"
12171
+ "default.handlebars->31->1329",
12172
+ "default.handlebars->31->1599"
12173
]
12174
},
12175
{
@@ -12186,8 +12189,8 @@
12189
"zh-chs": "设备断开连接。",
12190
"zh-cht": "裝置斷開連接。",
12191
"xloc": [
12189
- "default.handlebars->31->1329",
12190
- "default.handlebars->31->1599"
12192
+ "default.handlebars->31->1330",
12193
+ "default.handlebars->31->1600"
12194
]
12195
},
12196
{
@@ -12207,7 +12210,7 @@
12210
"zh-chs": "创建的设备组:{0}",
12211
"zh-cht": "設備組已創建:{0}",
12212
"xloc": [
12210
- "default.handlebars->31->1735"
12213
+ "default.handlebars->31->1736"
12214
]
12215
},
12216
{
@@ -12227,7 +12230,7 @@
12230
"zh-chs": "设备组已删除:{0}",
12231
"zh-cht": "設備組已刪除:{0}",
12232
"xloc": [
12230
- "default.handlebars->31->1736"
12233
+ "default.handlebars->31->1737"
12234
]
12235
},
12236
{
@@ -12247,7 +12250,7 @@
12250
"zh-chs": "设备组成员身份已更改:{0}",
12251
"zh-cht": "設備組成員身份已更改:{0}",
12252
"xloc": [
12250
- "default.handlebars->31->1737"
12253
+ "default.handlebars->31->1738"
12254
]
12255
},
12256
{
@@ -12287,7 +12290,7 @@
12290
"zh-chs": "设备组通知已更改",
12291
"zh-cht": "設備組通知已更改",
12292
"xloc": [
12290
- "default.handlebars->31->1732"
12293
+ "default.handlebars->31->1733"
12294
]
12295
},
12296
{
@@ -12307,7 +12310,7 @@
12310
"zh-chs": "未删除的设备组:{0}",
12311
"zh-cht": "未刪除的設備組:{0}",
12312
"xloc": [
12310
- "default.handlebars->31->1715"
12313
+ "default.handlebars->31->1716"
12314
]
12315
},
12316
{
@@ -12700,7 +12703,7 @@
12703
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12704
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12705
"xloc": [
12703
- "default.handlebars->31->1717"
12706
+ "default.handlebars->31->1718"
12707
]
12708
},
12709
{
@@ -12737,8 +12740,8 @@
12740
"zh-chs": "设备",
12741
"zh-cht": "裝置",
12742
"xloc": [
12740
- "default.handlebars->31->1896",
12741
- "default.handlebars->31->1936"
12743
+ "default.handlebars->31->1897",
12744
+ "default.handlebars->31->1937"
12745
]
12746
},
12747
{
@@ -12778,7 +12781,7 @@
12781
"zh-chs": "禁用的电子邮件两因素身份验证",
12782
"zh-cht": "禁用的電子郵件兩因素身份驗證",
12783
"xloc": [
12781
- "default.handlebars->31->1748"
12784
+ "default.handlebars->31->1749"
12785
]
12786
},
12787
{
@@ -12801,7 +12804,7 @@
12804
"agent-translations.json",
12805
"default-mobile.handlebars->11->346",
12806
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12804
- "default.handlebars->31->1421",
12807
+ "default.handlebars->31->1422",
12808
"default.handlebars->31->947",
12809
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12810
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
@@ -12962,7 +12965,7 @@
12965
"zh-chs": "显示设备组名称",
12966
"zh-cht": "顯示裝置群名稱",
12967
"xloc": [
12965
- "default.handlebars->31->1327"
12968
+ "default.handlebars->31->1328"
12969
]
12970
},
12971
{
@@ -13002,7 +13005,7 @@
13005
"zh-chs": "显示公共连结",
13006
"zh-cht": "顯示公共鏈結",
13007
"xloc": [
13005
- "default.handlebars->31->1618"
13008
+ "default.handlebars->31->1619"
13009
]
13010
},
13011
{
@@ -13022,7 +13025,7 @@
13025
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13026
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13027
"xloc": [
13025
- "default.handlebars->31->1677"
13028
+ "default.handlebars->31->1678"
13029
]
13030
},
13031
{
@@ -13042,7 +13045,7 @@
13045
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13046
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13047
"xloc": [
13045
- "default.handlebars->31->1685"
13048
+ "default.handlebars->31->1686"
13049
]
13050
},
13051
{
@@ -13062,8 +13065,8 @@
13065
"zh-chs": "什么都不做",
13066
"zh-cht": "什麼都不做",
13067
"xloc": [
13065
- "default.handlebars->31->1468",
13066
- "default.handlebars->31->1472"
13068
+ "default.handlebars->31->1469",
13069
+ "default.handlebars->31->1473"
13070
]
13071
},
13072
{
@@ -13083,10 +13086,10 @@
13086
"zh-chs": "域",
13087
"zh-cht": "域",
13088
"xloc": [
13086
- "default.handlebars->31->1860",
13087
- "default.handlebars->31->1908",
13088
- "default.handlebars->31->1917",
13089
- "default.handlebars->31->1985",
13089
+ "default.handlebars->31->1861",
13090
+ "default.handlebars->31->1909",
13091
+ "default.handlebars->31->1918",
13092
+ "default.handlebars->31->1986",
13093
"mstsc.handlebars->main->1->3->1->2->1->0",
13094
"mstsc.handlebars->main->1->3->1->2->3"
13095
]
@@ -13108,7 +13111,7 @@
13111
"zh-chs": "请勿更改,如果设置请保留CCM",
13112
"zh-cht": "請勿更改,如果設置請保留CCM",
13113
"xloc": [
13111
- "default.handlebars->31->1464"
13114
+ "default.handlebars->31->1465"
13115
]
13116
},
13117
{
@@ -13145,7 +13148,7 @@
13148
"zh-chs": "不要连接到服务器",
13149
"zh-cht": "不要連接到伺服器",
13150
"xloc": [
13148
- "default.handlebars->31->1473"
13151
+ "default.handlebars->31->1474"
13152
]
13153
},
13154
{
@@ -13374,7 +13377,7 @@
13377
"zh-chs": "下载报告",
13378
"zh-cht": "下載報告",
13379
"xloc": [
13377
- "default.handlebars->31->1778",
13380
+ "default.handlebars->31->1779",
13381
"default.handlebars->container->column_l->p3->3->1->0->3"
13382
]
13383
},
@@ -13575,7 +13578,7 @@
13578
"zh-chs": "使用以下一种档案格式下载事件列表。",
13579
"zh-cht": "使用以下一種檔案格式下載事件列表。",
13580
"xloc": [
13578
- "default.handlebars->31->1779"
13581
+ "default.handlebars->31->1780"
13582
]
13583
},
13584
{
@@ -13595,7 +13598,7 @@
13598
"zh-chs": "使用以下一种档案格式下载用户列表。",
13599
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
13600
"xloc": [
13598
- "default.handlebars->31->1844"
13601
+ "default.handlebars->31->1845"
13602
]
13603
},
13604
{
@@ -13676,7 +13679,7 @@
13679
"zh-chs": "下载:“{0}”",
13680
"zh-cht": "下載:“{0}”",
13681
"xloc": [
13679
- "default.handlebars->31->1708"
13682
+ "default.handlebars->31->1709"
13683
]
13684
},
13685
{
@@ -13716,7 +13719,7 @@
13719
"zh-chs": "代理重复",
13720
"zh-cht": "代理重複",
13721
"xloc": [
13719
- "default.handlebars->31->2185"
13722
+ "default.handlebars->31->2186"
13723
]
13724
},
13725
{
@@ -13756,7 +13759,7 @@
13759
"zh-chs": "复制用户组",
13760
"zh-cht": "複製用戶群",
13761
"xloc": [
13759
- "default.handlebars->31->1912"
13762
+ "default.handlebars->31->1913"
13763
]
13764
},
13765
{
@@ -13793,8 +13796,8 @@
13796
"zh-chs": "持续时间",
13797
"zh-cht": "持續時間",
13798
"xloc": [
13796
- "default.handlebars->31->2104",
13797
- "default.handlebars->31->2124",
13799
+ "default.handlebars->31->2105",
13800
+ "default.handlebars->31->2125",
13801
"player.handlebars->3->2"
13802
]
13803
},
@@ -13832,7 +13835,7 @@
13835
"zh-chs": "荷兰文(比利时)",
13836
"zh-cht": "荷蘭文(比利時)",
13837
"xloc": [
13835
- "default.handlebars->31->1167"
13838
+ "default.handlebars->31->1168"
13839
]
13840
},
13841
{
@@ -13852,7 +13855,7 @@
13855
"zh-chs": "荷兰文(标准)",
13856
"zh-cht": "荷蘭文(標準)",
13857
"xloc": [
13855
- "default.handlebars->31->1166"
13858
+ "default.handlebars->31->1167"
13859
]
13860
},
13861
{
@@ -14164,10 +14167,10 @@
14167
"default-mobile.handlebars->11->471",
14168
"default-mobile.handlebars->11->473",
14169
"default-mobile.handlebars->11->493",
14167
- "default.handlebars->31->1485",
14168
- "default.handlebars->31->1517",
14169
- "default.handlebars->31->1541",
14170
- "default.handlebars->31->1553"
14170
+ "default.handlebars->31->1486",
14171
+ "default.handlebars->31->1518",
14172
+ "default.handlebars->31->1542",
14173
+ "default.handlebars->31->1554"
14174
]
14175
},
14176
{
@@ -14187,7 +14190,7 @@
14190
"zh-chs": "编辑设备组功能",
14191
"zh-cht": "編輯裝置群功能",
14192
"xloc": [
14190
- "default.handlebars->31->1503"
14193
+ "default.handlebars->31->1504"
14194
]
14195
},
14196
{
@@ -14207,8 +14210,8 @@
14210
"zh-chs": "编辑设备组权限",
14211
"zh-cht": "編輯裝置群權限",
14212
"xloc": [
14210
- "default.handlebars->31->1538",
14211
- "default.handlebars->31->1550"
14213
+ "default.handlebars->31->1539",
14214
+ "default.handlebars->31->1551"
14215
]
14216
},
14217
{
@@ -14228,7 +14231,7 @@
14231
"zh-chs": "编辑设备组用户同意",
14232
"zh-cht": "編輯裝置群用戶同意",
14233
"xloc": [
14231
- "default.handlebars->31->1486"
14234
+ "default.handlebars->31->1487"
14235
]
14236
},
14237
{
@@ -14249,7 +14252,7 @@
14252
"zh-cht": "編輯裝置筆記",
14253
"xloc": [
14254
"default-mobile.handlebars->11->485",
14252
- "default.handlebars->31->1530"
14255
+ "default.handlebars->31->1531"
14256
]
14257
},
14258
{
@@ -14269,8 +14272,8 @@
14272
"zh-chs": "编辑设备权限",
14273
"zh-cht": "編輯裝置權限",
14274
"xloc": [
14272
- "default.handlebars->31->1543",
14273
- "default.handlebars->31->1545"
14275
+ "default.handlebars->31->1544",
14276
+ "default.handlebars->31->1546"
14277
]
14278
},
14279
{
@@ -14310,7 +14313,7 @@
14313
"zh-chs": "编辑设备用户同意",
14314
"zh-cht": "編輯裝置用戶同意",
14315
"xloc": [
14313
- "default.handlebars->31->1488"
14316
+ "default.handlebars->31->1489"
14317
]
14318
},
14319
{
@@ -14378,7 +14381,7 @@
14381
"zh-cht": "編輯筆記",
14382
"xloc": [
14383
"default-mobile.handlebars->11->500",
14381
- "default.handlebars->31->1560"
14384
+ "default.handlebars->31->1561"
14385
]
14386
},
14387
{
@@ -14398,7 +14401,7 @@
14401
"zh-chs": "编辑用户同意",
14402
"zh-cht": "編輯用戶同意",
14403
"xloc": [
14401
- "default.handlebars->31->1487"
14404
+ "default.handlebars->31->1488"
14405
]
14406
},
14407
{
@@ -14418,7 +14421,7 @@
14421
"zh-chs": "编辑用户设备组权限",
14422
"zh-cht": "編輯用戶裝置群權限",
14423
"xloc": [
14421
- "default.handlebars->31->1551"
14424
+ "default.handlebars->31->1552"
14425
]
14426
},
14427
{
@@ -14438,7 +14441,7 @@
14441
"zh-chs": "编辑用户设备权限",
14442
"zh-cht": "編輯用戶裝置權限",
14443
"xloc": [
14441
- "default.handlebars->31->1546"
14444
+ "default.handlebars->31->1547"
14445
]
14446
},
14447
{
@@ -14458,7 +14461,7 @@
14461
"zh-chs": "编辑用户组",
14462
"zh-cht": "編輯用戶群",
14463
"xloc": [
14461
- "default.handlebars->31->1963"
14464
+ "default.handlebars->31->1964"
14465
]
14466
},
14467
{
@@ -14478,7 +14481,7 @@
14481
"zh-chs": "编辑用户组设备权限",
14482
"zh-cht": "編輯用戶群裝置權限",
14483
"xloc": [
14481
- "default.handlebars->31->1548"
14484
+ "default.handlebars->31->1549"
14485
]
14486
},
14487
{
@@ -14498,7 +14501,7 @@
14501
"zh-chs": "编辑用户组用户同意",
14502
"zh-cht": "編輯用戶組用戶同意",
14503
"xloc": [
14501
- "default.handlebars->31->1489"
14504
+ "default.handlebars->31->1490"
14505
]
14506
},
14507
{
@@ -14580,11 +14583,11 @@
14583
"zh-cht": "電郵",
14584
"xloc": [
14585
"default-mobile.handlebars->11->89",
14583
- "default.handlebars->31->1862",
14584
- "default.handlebars->31->1989",
14585
- "default.handlebars->31->1991",
14586
- "default.handlebars->31->2031",
14587
- "default.handlebars->31->2049",
14586
+ "default.handlebars->31->1863",
14587
+ "default.handlebars->31->1990",
14588
+ "default.handlebars->31->1992",
14589
+ "default.handlebars->31->2032",
14590
+ "default.handlebars->31->2050",
14591
"default.handlebars->31->337",
14592
"login-mobile.handlebars->5->42",
14593
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
@@ -14617,7 +14620,7 @@
14620
"zh-cht": "電郵地址變更",
14621
"xloc": [
14622
"default-mobile.handlebars->11->90",
14620
- "default.handlebars->31->1336"
14623
+ "default.handlebars->31->1337"
14624
]
14625
},
14626
{
@@ -14638,7 +14641,7 @@
14641
"zh-cht": "電郵認證",
14642
"xloc": [
14643
"default-mobile.handlebars->11->79",
14641
- "default.handlebars->31->1104"
14644
+ "default.handlebars->31->1105"
14645
]
14646
},
14647
{
@@ -14698,7 +14701,7 @@
14701
"zh-cht": "電郵驗證",
14702
"xloc": [
14703
"default-mobile.handlebars->11->88",
14701
- "default.handlebars->31->1334"
14704
+ "default.handlebars->31->1335"
14705
]
14706
},
14707
{
@@ -14738,7 +14741,7 @@
14741
"zh-chs": "电邮未验证",
14742
"zh-cht": "電郵未驗證",
14743
"xloc": [
14741
- "default.handlebars->31->1808"
14744
+ "default.handlebars->31->1809"
14745
]
14746
},
14747
{
@@ -14758,8 +14761,8 @@
14761
"zh-chs": "电子邮件已验证",
14762
"zh-cht": "電子郵件已驗證",
14763
"xloc": [
14761
- "default.handlebars->31->1809",
14762
- "default.handlebars->31->1983"
14764
+ "default.handlebars->31->1810",
14765
+ "default.handlebars->31->1984"
14766
]
14767
},
14768
{
@@ -14779,7 +14782,7 @@
14782
"zh-chs": "电邮已验证。",
14783
"zh-cht": "電郵已驗證。",
14784
"xloc": [
14782
- "default.handlebars->31->1868"
14785
+ "default.handlebars->31->1869"
14786
]
14787
},
14788
{
@@ -14799,7 +14802,7 @@
14802
"zh-chs": "电邮未验证",
14803
"zh-cht": "電郵未驗證",
14804
"xloc": [
14802
- "default.handlebars->31->1984"
14805
+ "default.handlebars->31->1985"
14806
]
14807
},
14808
{
@@ -14820,7 +14823,7 @@
14823
"zh-cht": "電郵已發送。",
14824
"xloc": [
14825
"default-mobile.handlebars->11->542",
14823
- "default.handlebars->31->2153",
14826
+ "default.handlebars->31->2154",
14827
"login-mobile.handlebars->5->2",
14828
"login.handlebars->5->2",
14829
"login2.handlebars->7->3"
@@ -14865,7 +14868,7 @@
14868
"zh-chs": "已通过电邮验证,并且需要重置密码。",
14869
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
14870
"xloc": [
14868
- "default.handlebars->31->1869"
14871
+ "default.handlebars->31->1870"
14872
]
14873
},
14874
{
@@ -14885,7 +14888,7 @@
14888
"zh-chs": "电邮/短信流量",
14889
"zh-cht": "電郵/短信流量",
14890
"xloc": [
14888
- "default.handlebars->31->2229"
14891
+ "default.handlebars->31->2230"
14892
]
14893
},
14894
{
@@ -14931,7 +14934,7 @@
14934
"zh-chs": "启用邀请代码",
14935
"zh-cht": "啟用邀請代碼",
14936
"xloc": [
14934
- "default.handlebars->31->1583"
14937
+ "default.handlebars->31->1584"
14938
]
14939
},
14940
{
@@ -14972,7 +14975,7 @@
14975
"zh-cht": "啟用電郵二因子鑑別。",
14976
"xloc": [
14977
"default-mobile.handlebars->11->81",
14975
- "default.handlebars->31->1106"
14978
+ "default.handlebars->31->1107"
14979
]
14980
},
14981
{
@@ -15012,7 +15015,7 @@
15015
"zh-chs": "已启用",
15016
"zh-cht": "已啟用",
15017
"xloc": [
15015
- "default.handlebars->31->2126"
15018
+ "default.handlebars->31->2127"
15019
]
15020
},
15021
{
@@ -15032,7 +15035,7 @@
15035
"zh-chs": "启用电子邮件两因素身份验证",
15036
"zh-cht": "啟用電子郵件兩因素身份驗證",
15037
"xloc": [
15035
- "default.handlebars->31->1747"
15038
+ "default.handlebars->31->1748"
15039
]
15040
},
15041
{
@@ -15081,7 +15084,7 @@
15084
"zh-chs": "时间结束",
15085
"zh-cht": "時間結束",
15086
"xloc": [
15084
- "default.handlebars->31->2123"
15087
+ "default.handlebars->31->2124"
15088
]
15089
},
15090
{
@@ -15101,7 +15104,7 @@
15104
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
15105
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
15106
"xloc": [
15104
- "default.handlebars->31->1670"
15107
+ "default.handlebars->31->1671"
15108
]
15109
},
15110
{
@@ -15121,7 +15124,7 @@
15124
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
15125
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
15126
"xloc": [
15124
- "default.handlebars->31->1671"
15127
+ "default.handlebars->31->1672"
15128
]
15129
},
15130
{
@@ -15141,7 +15144,7 @@
15144
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
15145
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
15146
"xloc": [
15144
- "default.handlebars->31->1668"
15147
+ "default.handlebars->31->1669"
15148
]
15149
},
15150
{
@@ -15161,7 +15164,7 @@
15164
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
15165
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
15166
"xloc": [
15164
- "default.handlebars->31->1669"
15167
+ "default.handlebars->31->1670"
15168
]
15169
},
15170
{
@@ -15181,7 +15184,7 @@
15184
"zh-chs": "英文",
15185
"zh-cht": "英文",
15186
"xloc": [
15184
- "default.handlebars->31->1168"
15187
+ "default.handlebars->31->1169"
15188
]
15189
},
15190
{
@@ -15201,7 +15204,7 @@
15204
"zh-chs": "英文(澳洲)",
15205
"zh-cht": "英文(澳洲)",
15206
"xloc": [
15204
- "default.handlebars->31->1169"
15207
+ "default.handlebars->31->1170"
15208
]
15209
},
15210
{
@@ -15221,7 +15224,7 @@
15224
"zh-chs": "英文(伯利茲)",
15225
"zh-cht": "英文(伯利茲)",
15226
"xloc": [
15224
- "default.handlebars->31->1170"
15227
+ "default.handlebars->31->1171"
15228
]
15229
},
15230
{
@@ -15241,7 +15244,7 @@
15244
"zh-chs": "英文(加拿大)",
15245
"zh-cht": "英文(加拿大)",
15246
"xloc": [
15244
- "default.handlebars->31->1171"
15247
+ "default.handlebars->31->1172"
15248
]
15249
},
15250
{
@@ -15261,7 +15264,7 @@
15264
"zh-chs": "英文(爱尔兰)",
15265
"zh-cht": "英文(愛爾蘭)",
15266
"xloc": [
15264
- "default.handlebars->31->1172"
15267
+ "default.handlebars->31->1173"
15268
]
15269
},
15270
{
@@ -15281,7 +15284,7 @@
15284
"zh-chs": "英文(牙买加)",
15285
"zh-cht": "英文(牙買加)",
15286
"xloc": [
15284
- "default.handlebars->31->1173"
15287
+ "default.handlebars->31->1174"
15288
]
15289
},
15290
{
@@ -15301,7 +15304,7 @@
15304
"zh-chs": "英文(纽西兰)",
15305
"zh-cht": "英文(紐西蘭)",
15306
"xloc": [
15304
- "default.handlebars->31->1174"
15307
+ "default.handlebars->31->1175"
15308
]
15309
},
15310
{
@@ -15321,7 +15324,7 @@
15324
"zh-chs": "英文(菲律宾)",
15325
"zh-cht": "英文(菲律賓)",
15326
"xloc": [
15324
- "default.handlebars->31->1175"
15327
+ "default.handlebars->31->1176"
15328
]
15329
},
15330
{
@@ -15341,7 +15344,7 @@
15344
"zh-chs": "英语(南非)",
15345
"zh-cht": "英語(南非)",
15346
"xloc": [
15344
- "default.handlebars->31->1176"
15347
+ "default.handlebars->31->1177"
15348
]
15349
},
15350
{
@@ -15361,7 +15364,7 @@
15364
"zh-chs": "英文(特立尼达和多巴哥)",
15365
"zh-cht": "英文(特立尼達和多巴哥)",
15366
"xloc": [
15364
- "default.handlebars->31->1177"
15367
+ "default.handlebars->31->1178"
15368
]
15369
},
15370
{
@@ -15381,7 +15384,7 @@
15384
"zh-chs": "英文(英国)",
15385
"zh-cht": "英文(英國)",
15386
"xloc": [
15384
- "default.handlebars->31->1178"
15387
+ "default.handlebars->31->1179"
15388
]
15389
},
15390
{
@@ -15401,7 +15404,7 @@
15404
"zh-chs": "美国英文",
15405
"zh-cht": "美國英語",
15406
"xloc": [
15404
- "default.handlebars->31->1179"
15407
+ "default.handlebars->31->1180"
15408
]
15409
},
15410
{
@@ -15421,7 +15424,7 @@
15424
"zh-chs": "英文(津巴布韦)",
15425
"zh-cht": "英文(津巴布韋)",
15426
"xloc": [
15424
- "default.handlebars->31->1180"
15427
+ "default.handlebars->31->1181"
15428
]
15429
},
15430
{
@@ -15442,8 +15445,8 @@
15445
"zh-cht": "輸入",
15446
"xloc": [
15447
"default-mobile.handlebars->11->319",
15445
- "default.handlebars->31->1362",
15448
"default.handlebars->31->1363",
15449
+ "default.handlebars->31->1364",
15450
"default.handlebars->31->886",
15451
"default.handlebars->31->959"
15452
]
@@ -15465,7 +15468,7 @@
15468
"zh-chs": "输入管理领域名称的逗号分隔列表。",
15469
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
15470
"xloc": [
15468
- "default.handlebars->31->1873"
15471
+ "default.handlebars->31->1874"
15472
]
15473
},
15474
{
@@ -15587,7 +15590,7 @@
15590
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
15591
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
15592
"xloc": [
15590
- "default.handlebars->31->1101"
15593
+ "default.handlebars->31->1102"
15594
]
15595
},
15596
{
@@ -15616,7 +15619,7 @@
15619
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
15620
"xloc": [
15621
"default-mobile.handlebars->11->550",
15619
- "default.handlebars->31->2161"
15622
+ "default.handlebars->31->2162"
15623
]
15624
},
15625
{
@@ -15625,7 +15628,7 @@
15628
"fr": "Erreur, mot de passe non modifié.",
15629
"xloc": [
15630
"default-mobile.handlebars->11->547",
15628
- "default.handlebars->31->2158"
15631
+ "default.handlebars->31->2159"
15632
]
15633
},
15634
{
@@ -15634,7 +15637,7 @@
15637
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
15638
"xloc": [
15639
"default-mobile.handlebars->11->546",
15637
- "default.handlebars->31->2157"
15640
+ "default.handlebars->31->2158"
15641
]
15642
},
15643
{
@@ -15643,7 +15646,7 @@
15646
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
15647
"xloc": [
15648
"default-mobile.handlebars->11->545",
15646
- "default.handlebars->31->2156"
15649
+ "default.handlebars->31->2157"
15650
]
15651
},
15652
{
@@ -15692,7 +15695,7 @@
15695
"zh-chs": "世界文",
15696
"zh-cht": "世界語",
15697
"xloc": [
15695
- "default.handlebars->31->1181"
15698
+ "default.handlebars->31->1182"
15699
]
15700
},
15701
{
@@ -15712,7 +15715,7 @@
15715
"zh-chs": "爱沙尼亚文",
15716
"zh-cht": "愛沙尼亞語",
15717
"xloc": [
15715
- "default.handlebars->31->1182"
15718
+ "default.handlebars->31->1183"
15719
]
15720
},
15721
{
@@ -15752,7 +15755,7 @@
15755
"zh-chs": "事件列表输出",
15756
"zh-cht": "事件列表輸出",
15757
"xloc": [
15755
- "default.handlebars->31->1784"
15758
+ "default.handlebars->31->1785"
15759
]
15760
},
15761
{
@@ -15982,7 +15985,7 @@
15985
"zh-chs": "外部",
15986
"zh-cht": "外部",
15987
"xloc": [
15985
- "default.handlebars->31->2212"
15988
+ "default.handlebars->31->2213"
15989
]
15990
},
15991
{
@@ -16022,7 +16025,7 @@
16025
"zh-chs": "FYRO马其顿语",
16026
"zh-cht": "FYRO馬其頓語",
16027
"xloc": [
16025
- "default.handlebars->31->1232"
16028
+ "default.handlebars->31->1233"
16029
]
16030
},
16031
{
@@ -16042,7 +16045,7 @@
16045
"zh-chs": "法罗语",
16046
"zh-cht": "法羅語",
16047
"xloc": [
16045
- "default.handlebars->31->1183"
16048
+ "default.handlebars->31->1184"
16049
]
16050
},
16051
{
@@ -16071,7 +16074,7 @@
16074
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
16075
"xloc": [
16076
"default-mobile.handlebars->11->541",
16074
- "default.handlebars->31->2152"
16077
+ "default.handlebars->31->2153"
16078
]
16079
},
16080
{
@@ -16091,7 +16094,7 @@
16094
"zh-chs": "本地用户拒绝后无法启动远程桌面",
16095
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
16096
"xloc": [
16094
- "default.handlebars->31->1693"
16097
+ "default.handlebars->31->1694"
16098
]
16099
},
16100
{
@@ -16111,7 +16114,7 @@
16114
"zh-chs": "本地用户拒绝后无法启动远程文件",
16115
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
16116
"xloc": [
16114
- "default.handlebars->31->1700"
16117
+ "default.handlebars->31->1701"
16118
]
16119
},
16120
{
@@ -16154,7 +16157,7 @@
16157
"zh-chs": "波斯文(波斯文)",
16158
"zh-cht": "波斯語(波斯語)",
16159
"xloc": [
16157
- "default.handlebars->31->1184"
16160
+ "default.handlebars->31->1185"
16161
]
16162
},
16163
{
@@ -16196,7 +16199,7 @@
16199
"zh-chs": "功能",
16200
"zh-cht": "功能",
16201
"xloc": [
16199
- "default.handlebars->31->1407"
16202
+ "default.handlebars->31->1408"
16203
]
16204
},
16205
{
@@ -16216,7 +16219,7 @@
16219
"zh-chs": "斐济",
16220
"zh-cht": "斐濟",
16221
"xloc": [
16219
- "default.handlebars->31->1185"
16222
+ "default.handlebars->31->1186"
16223
]
16224
},
16225
{
@@ -16357,8 +16360,8 @@
16360
"xloc": [
16361
"default-mobile.handlebars->11->182",
16362
"default-mobile.handlebars->11->279",
16360
- "default.handlebars->31->1497",
16361
- "default.handlebars->31->2111",
16363
+ "default.handlebars->31->1498",
16364
+ "default.handlebars->31->2112",
16365
"default.handlebars->31->276",
16366
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
16367
"default.handlebars->contextMenu->cxfiles"
@@ -16401,9 +16404,9 @@
16404
"zh-chs": "档案通知",
16405
"zh-cht": "檔案通知",
16406
"xloc": [
16404
- "default.handlebars->31->1415",
16405
- "default.handlebars->31->1929",
16406
- "default.handlebars->31->2016",
16407
+ "default.handlebars->31->1416",
16408
+ "default.handlebars->31->1930",
16409
+ "default.handlebars->31->2017",
16410
"default.handlebars->31->618"
16411
]
16412
},
@@ -16424,9 +16427,9 @@
16427
"zh-chs": "档案提示",
16428
"zh-cht": "檔案提示",
16429
"xloc": [
16427
- "default.handlebars->31->1414",
16428
- "default.handlebars->31->1928",
16429
- "default.handlebars->31->2015",
16430
+ "default.handlebars->31->1415",
16431
+ "default.handlebars->31->1929",
16432
+ "default.handlebars->31->2016",
16433
"default.handlebars->31->617"
16434
]
16435
},
@@ -16511,7 +16514,7 @@
16514
"zh-chs": "录制会话已完成,{0}秒",
16515
"zh-cht": "錄製會話已完成,{0}秒",
16516
"xloc": [
16514
- "default.handlebars->31->1666"
16517
+ "default.handlebars->31->1667"
16518
]
16519
},
16520
{
@@ -16531,7 +16534,7 @@
16534
"zh-chs": "芬兰",
16535
"zh-cht": "芬蘭",
16536
"xloc": [
16534
- "default.handlebars->31->1186"
16537
+ "default.handlebars->31->1187"
16538
]
16539
},
16540
{
@@ -16698,8 +16701,8 @@
16701
"zh-chs": "下次登录时强制重置密码。",
16702
"zh-cht": "下次登入時強制重置密碼。",
16703
"xloc": [
16701
- "default.handlebars->31->1867",
16702
- "default.handlebars->31->2058"
16704
+ "default.handlebars->31->1868",
16705
+ "default.handlebars->31->2059"
16706
]
16707
},
16708
{
@@ -16782,7 +16785,7 @@
16785
"zh-chs": "格式化",
16786
"zh-cht": "格式化",
16787
"xloc": [
16785
- "default.handlebars->31->1775"
16788
+ "default.handlebars->31->1776"
16789
]
16790
},
16791
{
@@ -16823,8 +16826,8 @@
16826
"zh-chs": "自由",
16827
"zh-cht": "自由",
16828
"xloc": [
16826
- "default.handlebars->31->2170",
16827
- "default.handlebars->31->2172"
16829
+ "default.handlebars->31->2171",
16830
+ "default.handlebars->31->2173"
16831
]
16832
},
16833
{
@@ -16865,7 +16868,7 @@
16868
"zh-chs": "法文(比利时)",
16869
"zh-cht": "法語(比利時)",
16870
"xloc": [
16868
- "default.handlebars->31->1188"
16871
+ "default.handlebars->31->1189"
16872
]
16873
},
16874
{
@@ -16885,7 +16888,7 @@
16888
"zh-chs": "法文(加拿大)",
16889
"zh-cht": "法語(加拿大)",
16890
"xloc": [
16888
- "default.handlebars->31->1189"
16891
+ "default.handlebars->31->1190"
16892
]
16893
},
16894
{
@@ -16905,7 +16908,7 @@
16908
"zh-chs": "法文(法国)",
16909
"zh-cht": "法語(法國)",
16910
"xloc": [
16908
- "default.handlebars->31->1190"
16911
+ "default.handlebars->31->1191"
16912
]
16913
},
16914
{
@@ -16925,7 +16928,7 @@
16928
"zh-chs": "法文(卢森堡)",
16929
"zh-cht": "法語(盧森堡)",
16930
"xloc": [
16928
- "default.handlebars->31->1191"
16931
+ "default.handlebars->31->1192"
16932
]
16933
},
16934
{
@@ -16945,7 +16948,7 @@
16948
"zh-chs": "法文(摩纳哥)",
16949
"zh-cht": "法語(摩納哥)",
16950
"xloc": [
16948
- "default.handlebars->31->1192"
16951
+ "default.handlebars->31->1193"
16952
]
16953
},
16954
{
@@ -16965,7 +16968,7 @@
16968
"zh-chs": "法文(标准)",
16969
"zh-cht": "法語(標準)",
16970
"xloc": [
16968
- "default.handlebars->31->1187"
16971
+ "default.handlebars->31->1188"
16972
]
16973
},
16974
{
@@ -16985,7 +16988,7 @@
16988
"zh-chs": "法文(瑞士)",
16989
"zh-cht": "法語(瑞士)",
16990
"xloc": [
16988
- "default.handlebars->31->1193"
16991
+ "default.handlebars->31->1194"
16992
]
16993
},
16994
{
@@ -17005,7 +17008,7 @@
17008
"zh-chs": "弗里斯兰文",
17009
"zh-cht": "弗里斯蘭語",
17010
"xloc": [
17008
- "default.handlebars->31->1194"
17011
+ "default.handlebars->31->1195"
17012
]
17013
},
17014
{
@@ -17025,7 +17028,7 @@
17028
"zh-chs": "弗留利",
17029
"zh-cht": "弗留利",
17030
"xloc": [
17028
- "default.handlebars->31->1195"
17031
+ "default.handlebars->31->1196"
17032
]
17033
},
17034
{
@@ -17049,9 +17052,9 @@
17052
"default-mobile.handlebars->11->463",
17053
"default-mobile.handlebars->11->472",
17054
"default-mobile.handlebars->11->492",
17052
- "default.handlebars->31->1369",
17053
- "default.handlebars->31->1516",
17054
- "default.handlebars->31->1879"
17055
+ "default.handlebars->31->1370",
17056
+ "default.handlebars->31->1517",
17057
+ "default.handlebars->31->1880"
17058
]
17059
},
17060
{
@@ -17071,7 +17074,7 @@
17074
"zh-chs": "完整管理员(保留所有权利)",
17075
"zh-cht": "完整管理員(保留所有權利)",
17076
"xloc": [
17074
- "default.handlebars->31->1552"
17077
+ "default.handlebars->31->1553"
17078
]
17079
},
17080
{
@@ -17190,7 +17193,7 @@
17193
"zh-chs": "完整管理员",
17194
"zh-cht": "完整管理員",
17195
"xloc": [
17193
- "default.handlebars->31->1977"
17196
+ "default.handlebars->31->1978"
17197
]
17198
},
17199
{
@@ -17210,8 +17213,8 @@
17213
"zh-chs": "全自动的",
17214
"zh-cht": "全自動的",
17215
"xloc": [
17213
- "default.handlebars->31->1432",
17214
- "default.handlebars->31->1455"
17216
+ "default.handlebars->31->1433",
17217
+ "default.handlebars->31->1456"
17218
]
17219
},
17220
{
@@ -17252,7 +17255,7 @@
17255
"zh-chs": "盖尔文(爱尔兰)",
17256
"zh-cht": "蓋爾語(愛爾蘭)",
17257
"xloc": [
17255
- "default.handlebars->31->1197"
17258
+ "default.handlebars->31->1198"
17259
]
17260
},
17261
{
@@ -17272,7 +17275,7 @@
17275
"zh-chs": "盖尔文(苏格兰文)",
17276
"zh-cht": "蓋爾語(蘇格蘭語)",
17277
"xloc": [
17275
- "default.handlebars->31->1196"
17278
+ "default.handlebars->31->1197"
17279
]
17280
},
17281
{
@@ -17292,7 +17295,7 @@
17295
"zh-chs": "加拉契文",
17296
"zh-cht": "加拉契語",
17297
"xloc": [
17295
- "default.handlebars->31->1198"
17298
+ "default.handlebars->31->1199"
17299
]
17300
},
17301
{
@@ -17418,7 +17421,7 @@
17421
"zh-chs": "格鲁吉亚文",
17422
"zh-cht": "格魯吉亞文",
17423
"xloc": [
17421
- "default.handlebars->31->1199"
17424
+ "default.handlebars->31->1200"
17425
]
17426
},
17427
{
@@ -17438,7 +17441,7 @@
17441
"zh-chs": "德文(奥地利)",
17442
"zh-cht": "德語(奧地利)",
17443
"xloc": [
17441
- "default.handlebars->31->1201"
17444
+ "default.handlebars->31->1202"
17445
]
17446
},
17447
{
@@ -17458,7 +17461,7 @@
17461
"zh-chs": "德文(德国)",
17462
"zh-cht": "德文(德國)",
17463
"xloc": [
17461
- "default.handlebars->31->1202"
17464
+ "default.handlebars->31->1203"
17465
]
17466
},
17467
{
@@ -17478,7 +17481,7 @@
17481
"zh-chs": "德文(列支敦士登)",
17482
"zh-cht": "德文(列支敦士登)",
17483
"xloc": [
17481
- "default.handlebars->31->1203"
17484
+ "default.handlebars->31->1204"
17485
]
17486
},
17487
{
@@ -17498,7 +17501,7 @@
17501
"zh-chs": "德文(卢森堡)",
17502
"zh-cht": "德語(盧森堡)",
17503
"xloc": [
17501
- "default.handlebars->31->1204"
17504
+ "default.handlebars->31->1205"
17505
]
17506
},
17507
{
@@ -17518,7 +17521,7 @@
17521
"zh-chs": "德文(标准)",
17522
"zh-cht": "德語(標準)",
17523
"xloc": [
17521
- "default.handlebars->31->1200"
17524
+ "default.handlebars->31->1201"
17525
]
17526
},
17527
{
@@ -17538,7 +17541,7 @@
17541
"zh-chs": "德文(瑞士)",
17542
"zh-cht": "德文(瑞士)",
17543
"xloc": [
17541
- "default.handlebars->31->1205"
17544
+ "default.handlebars->31->1206"
17545
]
17546
},
17547
{
@@ -17599,7 +17602,7 @@
17602
"zh-chs": "正在获取剪贴板内容,{0}个字节",
17603
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
17604
"xloc": [
17602
- "default.handlebars->31->1680"
17605
+ "default.handlebars->31->1681"
17606
]
17607
},
17608
{
@@ -17661,7 +17664,7 @@
17664
"zh-chs": "好",
17665
"zh-cht": "好",
17666
"xloc": [
17664
- "default.handlebars->31->1365"
17667
+ "default.handlebars->31->1366"
17668
]
17669
},
17670
{
@@ -17706,8 +17709,8 @@
17709
"zh-chs": "Google云端硬盘备份",
17710
"zh-cht": "Google雲端硬盤備份",
17711
"xloc": [
17709
- "default.handlebars->31->1376",
17710
- "default.handlebars->31->1379",
17712
+ "default.handlebars->31->1377",
17713
+ "default.handlebars->31->1380",
17714
"default.handlebars->31->220"
17715
]
17716
},
@@ -17728,7 +17731,7 @@
17731
"zh-chs": "Google云端硬盘控制台",
17732
"zh-cht": "Google雲端硬盤控制台",
17733
"xloc": [
17731
- "default.handlebars->31->1373"
17734
+ "default.handlebars->31->1374"
17735
]
17736
},
17737
{
@@ -17768,7 +17771,7 @@
17771
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
17772
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
17773
"xloc": [
17771
- "default.handlebars->31->1377"
17774
+ "default.handlebars->31->1378"
17775
]
17776
},
17777
{
@@ -17788,7 +17791,7 @@
17791
"zh-chs": "希腊文",
17792
"zh-cht": "希臘文",
17793
"xloc": [
17791
- "default.handlebars->31->1206"
17794
+ "default.handlebars->31->1207"
17795
]
17796
},
17797
{
@@ -17830,8 +17833,8 @@
17833
"zh-chs": "集体指令",
17834
"zh-cht": "集體指令",
17835
"xloc": [
17833
- "default.handlebars->31->1823",
17834
- "default.handlebars->31->1902",
17836
+ "default.handlebars->31->1824",
17837
+ "default.handlebars->31->1903",
17838
"default.handlebars->31->470",
17839
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
17840
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -17855,7 +17858,7 @@
17858
"zh-chs": "通过...分组",
17859
"zh-cht": "通過...分群",
17860
"xloc": [
17858
- "default.handlebars->31->1771"
17861
+ "default.handlebars->31->1772"
17862
]
17863
},
17864
{
@@ -17875,7 +17878,7 @@
17878
"zh-chs": "组标识符",
17879
"zh-cht": "群標識符",
17880
"xloc": [
17878
- "default.handlebars->31->1919"
17881
+ "default.handlebars->31->1920"
17882
]
17883
},
17884
{
@@ -17895,7 +17898,7 @@
17898
"zh-chs": "群组成员",
17899
"zh-cht": "群組成員",
17900
"xloc": [
17898
- "default.handlebars->31->1940"
17901
+ "default.handlebars->31->1941"
17902
]
17903
},
17904
{
@@ -17915,7 +17918,7 @@
17918
"zh-chs": "用户{0}的群组权限。",
17919
"zh-cht": "用戶{0}的群組權限。",
17920
"xloc": [
17918
- "default.handlebars->31->1515"
17921
+ "default.handlebars->31->1516"
17922
]
17923
},
17924
{
@@ -17935,7 +17938,7 @@
17938
"zh-chs": "{0}的群组权限。",
17939
"zh-cht": "{0}的群組權限。",
17940
"xloc": [
17938
- "default.handlebars->31->1514"
17941
+ "default.handlebars->31->1515"
17942
]
17943
},
17944
{
@@ -18036,7 +18039,7 @@
18039
"zh-chs": "古久拉提",
18040
"zh-cht": "古久拉提",
18041
"xloc": [
18039
- "default.handlebars->31->1207"
18042
+ "default.handlebars->31->1208"
18043
]
18044
},
18045
{
@@ -18079,7 +18082,7 @@
18082
"zh-chs": "海地文",
18083
"zh-cht": "海地文",
18084
"xloc": [
18082
- "default.handlebars->31->1208"
18085
+ "default.handlebars->31->1209"
18086
]
18087
},
18088
{
@@ -18119,7 +18122,7 @@
18122
"zh-chs": "强行断开代理",
18123
"zh-cht": "強行斷開代理",
18124
"xloc": [
18122
- "default.handlebars->31->1096"
18125
+ "default.handlebars->31->1097"
18126
]
18127
},
18128
{
@@ -18139,7 +18142,7 @@
18142
"zh-chs": "堆总数",
18143
"zh-cht": "堆總數",
18144
"xloc": [
18142
- "default.handlebars->31->2214"
18145
+ "default.handlebars->31->2215"
18146
]
18147
},
18148
{
@@ -18159,7 +18162,7 @@
18162
"zh-chs": "堆使用",
18163
"zh-cht": "堆使用",
18164
"xloc": [
18162
- "default.handlebars->31->2213"
18165
+ "default.handlebars->31->2214"
18166
]
18167
},
18168
{
@@ -18179,7 +18182,7 @@
18182
"zh-chs": "希伯来文",
18183
"zh-cht": "希伯來文",
18184
"xloc": [
18182
- "default.handlebars->31->1209"
18185
+ "default.handlebars->31->1210"
18186
]
18187
},
18188
{
@@ -18240,7 +18243,7 @@
18243
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
18244
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
18245
"xloc": [
18243
- "default.handlebars->31->1757"
18246
+ "default.handlebars->31->1758"
18247
]
18248
},
18249
{
@@ -18301,7 +18304,7 @@
18304
"zh-chs": "帮助翻译MeshCentral",
18305
"zh-cht": "幫助翻譯MeshCentral",
18306
"xloc": [
18304
- "default.handlebars->31->1324"
18307
+ "default.handlebars->31->1325"
18308
]
18309
},
18310
{
@@ -18405,7 +18408,7 @@
18408
"zh-chs": "印地文",
18409
"zh-cht": "印地文",
18410
"xloc": [
18408
- "default.handlebars->31->1210"
18411
+ "default.handlebars->31->1211"
18412
]
18413
},
18414
{
@@ -18527,7 +18530,7 @@
18530
"zh-cht": "保存{0}項目{1}給{2}",
18531
"xloc": [
18532
"default-mobile.handlebars->11->140",
18530
- "default.handlebars->31->1653"
18533
+ "default.handlebars->31->1654"
18534
]
18535
},
18536
{
@@ -18584,7 +18587,7 @@
18587
"zh-chs": "主机名同步",
18588
"zh-cht": "主機名同步",
18589
"xloc": [
18587
- "default.handlebars->31->1404"
18590
+ "default.handlebars->31->1405"
18591
]
18592
},
18593
{
@@ -18604,7 +18607,7 @@
18607
"zh-chs": "匈牙利文",
18608
"zh-cht": "匈牙利文",
18609
"xloc": [
18607
- "default.handlebars->31->1211"
18610
+ "default.handlebars->31->1212"
18611
]
18612
},
18613
{
@@ -18886,7 +18889,7 @@
18889
"zh-chs": "冰岛文",
18890
"zh-cht": "冰島文",
18891
"xloc": [
18889
- "default.handlebars->31->1212"
18892
+ "default.handlebars->31->1213"
18893
]
18894
},
18895
{
@@ -18950,7 +18953,7 @@
18953
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
18954
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
18955
"xloc": [
18953
- "default.handlebars->31->1469"
18956
+ "default.handlebars->31->1470"
18957
]
18958
},
18959
{
@@ -19119,7 +19122,7 @@
19122
"zh-chs": "印度尼西亚文",
19123
"zh-cht": "印度尼西亞文",
19124
"xloc": [
19122
- "default.handlebars->31->1213"
19125
+ "default.handlebars->31->1214"
19126
]
19127
},
19128
{
@@ -19304,8 +19307,8 @@
19307
"zh-chs": "安装类型",
19308
"zh-cht": "安裝方式",
19309
"xloc": [
19307
- "default.handlebars->31->1585",
19308
- "default.handlebars->31->1592",
19310
+ "default.handlebars->31->1586",
19311
+ "default.handlebars->31->1593",
19312
"default.handlebars->31->352",
19313
"default.handlebars->31->366",
19314
"default.handlebars->31->381"
@@ -19351,7 +19354,7 @@
19354
"zh-chs": "英特尔AMT",
19355
"zh-cht": "英特爾AMT",
19356
"xloc": [
19354
- "default.handlebars->31->2210"
19357
+ "default.handlebars->31->2211"
19358
]
19359
},
19360
{
@@ -19359,7 +19362,7 @@
19362
"fr": "Gestionnaire Intel AMT",
19363
"nl": "Intel AMT beheerder",
19364
"xloc": [
19362
- "default.handlebars->31->2236"
19365
+ "default.handlebars->31->2237"
19366
]
19367
},
19368
{
@@ -19403,11 +19406,11 @@
19406
"default-mobile.handlebars->11->216",
19407
"default-mobile.handlebars->11->258",
19408
"default-mobile.handlebars->11->263",
19406
- "default.handlebars->31->1422",
19407
- "default.handlebars->31->1433",
19408
- "default.handlebars->31->1604",
19409
- "default.handlebars->31->1612",
19410
- "default.handlebars->31->2235",
19409
+ "default.handlebars->31->1423",
19410
+ "default.handlebars->31->1434",
19411
+ "default.handlebars->31->1605",
19412
+ "default.handlebars->31->1613",
19413
+ "default.handlebars->31->2236",
19414
"default.handlebars->31->543",
19415
"default.handlebars->31->601",
19416
"default.handlebars->31->628"
@@ -19577,7 +19580,7 @@
19580
"zh-chs": "英特尔®AMT政策",
19581
"zh-cht": "Intel® AMT政策",
19582
"xloc": [
19580
- "default.handlebars->31->1456"
19583
+ "default.handlebars->31->1457"
19584
]
19585
},
19586
{
@@ -19597,7 +19600,7 @@
19600
"zh-chs": "英特尔®AMT重定向",
19601
"zh-cht": "Intel® AMT重定向",
19602
"xloc": [
19600
- "default.handlebars->31->2113",
19603
+ "default.handlebars->31->2114",
19604
"player.handlebars->3->14"
19605
]
19606
},
@@ -19638,7 +19641,7 @@
19641
"zh-chs": "英特尔®AMT WSMAN",
19642
"zh-cht": "Intle® AMT WSMAN",
19643
"xloc": [
19641
- "default.handlebars->31->2112",
19644
+ "default.handlebars->31->2113",
19645
"player.handlebars->3->13"
19646
]
19647
},
@@ -19698,8 +19701,8 @@
19701
"zh-chs": "英特尔®AMT桌面和串行事件。",
19702
"zh-cht": "Intel® AMT桌面和串行事件。",
19703
"xloc": [
19701
- "default.handlebars->31->1330",
19702
- "default.handlebars->31->1600"
19704
+ "default.handlebars->31->1331",
19705
+ "default.handlebars->31->1601"
19706
]
19707
},
19708
{
@@ -19885,8 +19888,8 @@
19888
"zh-cht": "僅限Intel® AMT,無代理",
19889
"xloc": [
19890
"default-mobile.handlebars->11->454",
19888
- "default.handlebars->31->1359",
19889
- "default.handlebars->31->1394"
19891
+ "default.handlebars->31->1360",
19892
+ "default.handlebars->31->1395"
19893
]
19894
},
19895
{
@@ -20190,8 +20193,8 @@
20193
"zh-chs": "仅限互动",
20194
"zh-cht": "僅限互動",
20195
"xloc": [
20193
- "default.handlebars->31->1588",
20194
- "default.handlebars->31->1595",
20196
+ "default.handlebars->31->1589",
20197
+ "default.handlebars->31->1596",
20198
"default.handlebars->31->355",
20199
"default.handlebars->31->369",
20200
"default.handlebars->31->384"
@@ -20234,7 +20237,7 @@
20237
"zh-chs": "因纽特文",
20238
"zh-cht": "因紐特文",
20239
"xloc": [
20237
- "default.handlebars->31->1214"
20240
+ "default.handlebars->31->1215"
20241
]
20242
},
20243
{
@@ -20277,7 +20280,7 @@
20280
"zh-chs": "无效的设备组类型",
20281
"zh-cht": "無效的裝置群類型",
20282
"xloc": [
20280
- "default.handlebars->31->2184"
20283
+ "default.handlebars->31->2185"
20284
]
20285
},
20286
{
@@ -20297,7 +20300,7 @@
20300
"zh-chs": "无效的JSON",
20301
"zh-cht": "無效的JSON",
20302
"xloc": [
20300
- "default.handlebars->31->2178"
20303
+ "default.handlebars->31->2179"
20304
]
20305
},
20306
{
@@ -20317,8 +20320,8 @@
20320
"zh-chs": "无效的JSON档案格式。",
20321
"zh-cht": "無效的JSON檔案格式。",
20322
"xloc": [
20320
- "default.handlebars->31->1841",
20321
- "default.handlebars->31->1843"
20323
+ "default.handlebars->31->1842",
20324
+ "default.handlebars->31->1844"
20325
]
20326
},
20327
{
@@ -20338,7 +20341,7 @@
20341
"zh-chs": "无效的JSON档案:{0}。",
20342
"zh-cht": "無效的JSON檔案:{0}。",
20343
"xloc": [
20341
- "default.handlebars->31->1839"
20344
+ "default.handlebars->31->1840"
20345
]
20346
},
20347
{
@@ -20358,7 +20361,7 @@
20361
"zh-chs": "无效的PKCS签名",
20362
"zh-cht": "無效的PKCS簽名",
20363
"xloc": [
20361
- "default.handlebars->31->2176"
20364
+ "default.handlebars->31->2177"
20365
]
20366
},
20367
{
@@ -20378,7 +20381,7 @@
20381
"zh-chs": "無效的RSA密碼",
20382
"zh-cht": "無效的RSA密碼",
20383
"xloc": [
20381
- "default.handlebars->31->2177"
20384
+ "default.handlebars->31->2178"
20385
]
20386
},
20387
{
@@ -20387,7 +20390,7 @@
20390
"fr": "Message SMS non valide",
20391
"xloc": [
20392
"default-mobile.handlebars->11->553",
20390
- "default.handlebars->31->2164"
20393
+ "default.handlebars->31->2165"
20394
]
20395
},
20396
{
@@ -20418,7 +20421,7 @@
20421
"fr": "Domaine non valide",
20422
"xloc": [
20423
"default-mobile.handlebars->11->533",
20421
- "default.handlebars->31->2144"
20424
+ "default.handlebars->31->2145"
20425
]
20426
},
20427
{
@@ -20427,7 +20430,7 @@
20430
"fr": "Email invalide",
20431
"xloc": [
20432
"default-mobile.handlebars->11->532",
20430
- "default.handlebars->31->2143"
20433
+ "default.handlebars->31->2144"
20434
]
20435
},
20436
{
@@ -20499,7 +20502,7 @@
20502
"fr": "Mot de passe incorrect",
20503
"xloc": [
20504
"default-mobile.handlebars->11->531",
20502
- "default.handlebars->31->2142"
20505
+ "default.handlebars->31->2143"
20506
]
20507
},
20508
{
@@ -20508,7 +20511,7 @@
20511
"fr": "Autorisations de site non valides",
20512
"xloc": [
20513
"default-mobile.handlebars->11->534",
20511
- "default.handlebars->31->2145"
20514
+ "default.handlebars->31->2146"
20515
]
20516
},
20517
{
@@ -20539,7 +20542,7 @@
20542
"fr": "Nom d'utilisateur invalide",
20543
"xloc": [
20544
"default-mobile.handlebars->11->530",
20542
- "default.handlebars->31->2141"
20545
+ "default.handlebars->31->2142"
20546
]
20547
},
20548
{
@@ -20559,7 +20562,7 @@
20562
"zh-chs": "使电邮无效",
20563
"zh-cht": "使電郵無效",
20564
"xloc": [
20562
- "default.handlebars->31->1817"
20565
+ "default.handlebars->31->1818"
20566
]
20567
},
20568
{
@@ -20636,7 +20639,7 @@
20639
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
20640
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
20641
"xloc": [
20639
- "default.handlebars->31->1590"
20642
+ "default.handlebars->31->1591"
20643
]
20644
},
20645
{
@@ -20676,7 +20679,7 @@
20679
"zh-chs": "邀请",
20680
"zh-cht": "邀請",
20681
"xloc": [
20679
- "default.handlebars->31->1443",
20682
+ "default.handlebars->31->1444",
20683
"default.handlebars->31->303",
20684
"default.handlebars->31->371"
20685
]
@@ -20699,12 +20702,12 @@
20702
"zh-cht": "邀請碼",
20703
"xloc": [
20704
"default-mobile.handlebars->11->528",
20702
- "default.handlebars->31->1426",
20703
- "default.handlebars->31->1584",
20704
- "default.handlebars->31->1589",
20705
- "default.handlebars->31->1591",
20706
- "default.handlebars->31->1596",
20707
- "default.handlebars->31->2139"
20705
+ "default.handlebars->31->1427",
20706
+ "default.handlebars->31->1585",
20707
+ "default.handlebars->31->1590",
20708
+ "default.handlebars->31->1592",
20709
+ "default.handlebars->31->1597",
20710
+ "default.handlebars->31->2140"
20711
]
20712
},
20713
{
@@ -20744,7 +20747,7 @@
20747
"zh-chs": "邀请某人在该设备组上安装网格代理。",
20748
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
20749
"xloc": [
20747
- "default.handlebars->31->1442",
20750
+ "default.handlebars->31->1443",
20751
"default.handlebars->31->302"
20752
]
20753
},
@@ -20785,7 +20788,7 @@
20788
"zh-chs": "爱尔兰文",
20789
"zh-cht": "愛爾蘭文",
20790
"xloc": [
20788
- "default.handlebars->31->1215"
20791
+ "default.handlebars->31->1216"
20792
]
20793
},
20794
{
@@ -20805,7 +20808,7 @@
20808
"zh-chs": "意大利文(标准)",
20809
"zh-cht": "意大利文(標準)",
20810
"xloc": [
20808
- "default.handlebars->31->1216"
20811
+ "default.handlebars->31->1217"
20812
]
20813
},
20814
{
@@ -20825,7 +20828,7 @@
20828
"zh-chs": "意大利文(瑞士)",
20829
"zh-cht": "義大利文(瑞士)",
20830
"xloc": [
20828
- "default.handlebars->31->1217"
20831
+ "default.handlebars->31->1218"
20832
]
20833
},
20834
{
@@ -20845,7 +20848,7 @@
20848
"zh-chs": "JSON",
20849
"zh-cht": "JSON",
20850
"xloc": [
20848
- "default.handlebars->31->1777"
20851
+ "default.handlebars->31->1778"
20852
]
20853
},
20854
{
@@ -20865,8 +20868,8 @@
20868
"zh-chs": "JSON格式",
20869
"zh-cht": "JSON格式",
20870
"xloc": [
20868
- "default.handlebars->31->1782",
20869
- "default.handlebars->31->1847",
20871
+ "default.handlebars->31->1783",
20872
+ "default.handlebars->31->1848",
20873
"default.handlebars->31->504"
20874
]
20875
},
@@ -20887,7 +20890,7 @@
20890
"zh-chs": "日文",
20891
"zh-cht": "日文",
20892
"xloc": [
20890
- "default.handlebars->31->1218"
20893
+ "default.handlebars->31->1219"
20894
]
20895
},
20896
{
@@ -20907,7 +20910,7 @@
20910
"zh-chs": "已加入桌面Multiplex会话",
20911
"zh-cht": "已加入桌面Multiplex會話",
20912
"xloc": [
20910
- "default.handlebars->31->1663"
20913
+ "default.handlebars->31->1664"
20914
]
20915
},
20916
{
@@ -20927,7 +20930,7 @@
20930
"zh-chs": "卡纳达文",
20931
"zh-cht": "卡納達文",
20932
"xloc": [
20930
- "default.handlebars->31->1219"
20933
+ "default.handlebars->31->1220"
20934
]
20935
},
20936
{
@@ -20947,7 +20950,7 @@
20950
"zh-chs": "克什米尔文",
20951
"zh-cht": "克什米爾文",
20952
"xloc": [
20950
- "default.handlebars->31->1220"
20953
+ "default.handlebars->31->1221"
20954
]
20955
},
20956
{
@@ -20967,7 +20970,7 @@
20970
"zh-chs": "哈萨克文",
20971
"zh-cht": "哈薩克文",
20972
"xloc": [
20970
- "default.handlebars->31->1221"
20973
+ "default.handlebars->31->1222"
20974
]
20975
},
20976
{
@@ -20987,7 +20990,7 @@
20990
"zh-chs": "保留现有密码",
20991
"zh-cht": "保留現有密碼",
20992
"xloc": [
20990
- "default.handlebars->31->1457"
20993
+ "default.handlebars->31->1458"
20994
]
20995
},
20996
{
@@ -21027,8 +21030,8 @@
21030
"zh-chs": "键名",
21031
"zh-cht": "鍵名",
21032
"xloc": [
21030
- "default.handlebars->31->1112",
21031
- "default.handlebars->31->1115"
21033
+ "default.handlebars->31->1113",
21034
+ "default.handlebars->31->1116"
21035
]
21036
},
21037
{
@@ -21091,7 +21094,7 @@
21094
"zh-chs": "高棉文",
21095
"zh-cht": "高棉文",
21096
"xloc": [
21094
- "default.handlebars->31->1222"
21097
+ "default.handlebars->31->1223"
21098
]
21099
},
21100
{
@@ -21111,7 +21114,7 @@
21114
"zh-chs": "杀死进程{0}",
21115
"zh-cht": "殺死進程{0}",
21116
"xloc": [
21114
- "default.handlebars->31->1678"
21117
+ "default.handlebars->31->1679"
21118
]
21119
},
21120
{
@@ -21131,7 +21134,7 @@
21134
"zh-chs": "吉尔吉斯",
21135
"zh-cht": "吉爾吉斯",
21136
"xloc": [
21134
- "default.handlebars->31->1223"
21137
+ "default.handlebars->31->1224"
21138
]
21139
},
21140
{
@@ -21151,7 +21154,7 @@
21154
"zh-chs": "克林贡",
21155
"zh-cht": "克林貢",
21156
"xloc": [
21154
- "default.handlebars->31->1224"
21157
+ "default.handlebars->31->1225"
21158
]
21159
},
21160
{
@@ -21192,7 +21195,7 @@
21195
"zh-chs": "韩文",
21196
"zh-cht": "韓文",
21197
"xloc": [
21195
- "default.handlebars->31->1225"
21198
+ "default.handlebars->31->1226"
21199
]
21200
},
21201
{
@@ -21212,7 +21215,7 @@
21215
"zh-chs": "韩文(朝鲜)",
21216
"zh-cht": "韓文(朝鮮)",
21217
"xloc": [
21215
- "default.handlebars->31->1226"
21218
+ "default.handlebars->31->1227"
21219
]
21220
},
21221
{
@@ -21232,7 +21235,7 @@
21235
"zh-chs": "韩文(韩国)",
21236
"zh-cht": "韓文(韓國)",
21237
"xloc": [
21235
- "default.handlebars->31->1227"
21238
+ "default.handlebars->31->1228"
21239
]
21240
},
21241
{
@@ -21275,7 +21278,7 @@
21278
"zh-chs": "语言",
21279
"zh-cht": "語言",
21280
"xloc": [
21278
- "default.handlebars->31->1322"
21281
+ "default.handlebars->31->1323"
21282
]
21283
},
21284
{
@@ -21528,7 +21531,7 @@
21531
"zh-chs": "最后访问",
21532
"zh-cht": "最後訪問",
21533
"xloc": [
21531
- "default.handlebars->31->1790"
21534
+ "default.handlebars->31->1791"
21535
]
21536
},
21537
{
@@ -21548,7 +21551,7 @@
21551
"zh-chs": "上次登录",
21552
"zh-cht": "上次登入",
21553
"xloc": [
21551
- "default.handlebars->31->1998"
21554
+ "default.handlebars->31->1999"
21555
]
21556
},
21557
{
@@ -21620,7 +21623,7 @@
21623
"zh-chs": "上次更改:{0}",
21624
"zh-cht": "上次更改:{0}",
21625
"xloc": [
21623
- "default.handlebars->31->2002"
21626
+ "default.handlebars->31->2003"
21627
]
21628
},
21629
{
@@ -21680,7 +21683,7 @@
21683
"zh-chs": "上次登录:{0}",
21684
"zh-cht": "上次登入:{0}",
21685
"xloc": [
21683
- "default.handlebars->31->1800"
21686
+ "default.handlebars->31->1801"
21687
]
21688
},
21689
{
@@ -21781,7 +21784,7 @@
21784
"zh-chs": "拉丁文",
21785
"zh-cht": "拉丁文",
21786
"xloc": [
21784
- "default.handlebars->31->1228"
21787
+ "default.handlebars->31->1229"
21788
]
21789
},
21790
{
@@ -21801,7 +21804,7 @@
21804
"zh-chs": "拉脱维亚文",
21805
"zh-cht": "拉脫維亞文",
21806
"xloc": [
21804
- "default.handlebars->31->1229"
21807
+ "default.handlebars->31->1230"
21808
]
21809
},
21810
{
@@ -21881,7 +21884,7 @@
21884
"zh-chs": "如没有请留空。",
21885
"zh-cht": "如沒有請留空。",
21886
"xloc": [
21884
- "default.handlebars->31->2044"
21887
+ "default.handlebars->31->2045"
21888
]
21889
},
21890
{
@@ -21935,7 +21938,7 @@
21938
"zh-chs": "离开桌面多路复用会话",
21939
"zh-cht": "離開桌面多路復用會話",
21940
"xloc": [
21938
- "default.handlebars->31->1664"
21941
+ "default.handlebars->31->1665"
21942
]
21943
},
21944
{
@@ -21955,7 +21958,7 @@
21958
"zh-chs": "减",
21959
"zh-cht": "減",
21960
"xloc": [
21958
- "default.handlebars->31->2255"
21961
+ "default.handlebars->31->2256"
21962
]
21963
},
21964
{
@@ -22018,7 +22021,7 @@
22021
"zh-cht": "有限輸入",
22022
"xloc": [
22023
"default-mobile.handlebars->11->505",
22021
- "default.handlebars->31->1566",
22024
+ "default.handlebars->31->1567",
22025
"default.handlebars->31->705",
22026
"default.handlebars->31->726"
22027
]
@@ -22041,7 +22044,7 @@
22044
"zh-cht": "僅有限輸入",
22045
"xloc": [
22046
"default-mobile.handlebars->11->478",
22044
- "default.handlebars->31->1522"
22047
+ "default.handlebars->31->1523"
22048
]
22049
},
22050
{
@@ -22551,7 +22554,7 @@
22554
"zh-chs": "立陶宛文",
22555
"zh-cht": "立陶宛文",
22556
"xloc": [
22554
- "default.handlebars->31->1230"
22557
+ "default.handlebars->31->1231"
22558
]
22559
},
22560
{
@@ -22592,10 +22595,10 @@
22595
"zh-cht": "載入中...",
22596
"xloc": [
22597
"default-mobile.handlebars->11->83",
22595
- "default.handlebars->31->1108",
22596
- "default.handlebars->31->1385",
22597
- "default.handlebars->31->1389",
22598
- "default.handlebars->31->2100",
22598
+ "default.handlebars->31->1109",
22599
+ "default.handlebars->31->1386",
22600
+ "default.handlebars->31->1390",
22601
+ "default.handlebars->31->2101",
22602
"default.handlebars->31->825"
22603
]
22604
},
@@ -22678,7 +22681,7 @@
22681
"zh-chs": "本地用户接受的远程终端请求",
22682
"zh-cht": "本地用戶接受的遠程終端請求",
22683
"xloc": [
22681
- "default.handlebars->31->1686"
22684
+ "default.handlebars->31->1687"
22685
]
22686
},
22687
{
@@ -22698,7 +22701,7 @@
22701
"zh-chs": "本地用户拒绝了远程终端请求",
22702
"zh-cht": "本地用戶拒絕了遠程終端請求",
22703
"xloc": [
22701
- "default.handlebars->31->1687"
22704
+ "default.handlebars->31->1688"
22705
]
22706
},
22707
{
@@ -22718,7 +22721,7 @@
22721
"zh-chs": "本地化设置",
22722
"zh-cht": "本地化設置",
22723
"xloc": [
22721
- "default.handlebars->31->1325",
22724
+ "default.handlebars->31->1326",
22725
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
22726
]
22727
},
@@ -22779,7 +22782,7 @@
22782
"zh-chs": "锁定账户",
22783
"zh-cht": "鎖定賬戶",
22784
"xloc": [
22782
- "default.handlebars->31->1887"
22785
+ "default.handlebars->31->1888"
22786
]
22787
},
22788
{
@@ -22799,7 +22802,7 @@
22802
"zh-chs": "锁定帐户设置",
22803
"zh-cht": "鎖定帳戶設置",
22804
"xloc": [
22802
- "default.handlebars->31->1890"
22805
+ "default.handlebars->31->1891"
22806
]
22807
},
22808
{
@@ -22819,7 +22822,7 @@
22822
"zh-chs": "锁定账户",
22823
"zh-cht": "鎖定賬戶",
22824
"xloc": [
22822
- "default.handlebars->31->1820"
22825
+ "default.handlebars->31->1821"
22826
]
22827
},
22828
{
@@ -22845,7 +22848,7 @@
22848
"zh-chs": "已锁定",
22849
"zh-cht": "已鎖定",
22850
"xloc": [
22848
- "default.handlebars->31->1801"
22851
+ "default.handlebars->31->1802"
22852
]
22853
},
22854
{
@@ -22865,7 +22868,7 @@
22868
"zh-chs": "被锁定账户",
22869
"zh-cht": "被鎖定賬戶",
22870
"xloc": [
22868
- "default.handlebars->31->1974"
22871
+ "default.handlebars->31->1975"
22872
]
22873
},
22874
{
@@ -22885,7 +22888,7 @@
22888
"zh-chs": "将远程用户锁定在桌面之外",
22889
"zh-cht": "將遠程用戶鎖定在桌面之外",
22890
"xloc": [
22888
- "default.handlebars->31->1712"
22891
+ "default.handlebars->31->1713"
22892
]
22893
},
22894
{
@@ -23125,7 +23128,7 @@
23128
"zh-chs": "卢森堡文",
23129
"zh-cht": "盧森堡文",
23130
"xloc": [
23128
- "default.handlebars->31->1231"
23131
+ "default.handlebars->31->1232"
23132
]
23133
},
23134
{
@@ -23516,7 +23519,7 @@
23519
"zh-chs": "主服务器信息",
23520
"zh-cht": "主伺服器訊息",
23521
"xloc": [
23519
- "default.handlebars->31->2223"
23522
+ "default.handlebars->31->2224"
23523
]
23524
},
23525
{
@@ -23536,7 +23539,7 @@
23539
"zh-chs": "马来文",
23540
"zh-cht": "馬來文",
23541
"xloc": [
23539
- "default.handlebars->31->1233"
23542
+ "default.handlebars->31->1234"
23543
]
23544
},
23545
{
@@ -23556,7 +23559,7 @@
23559
"zh-chs": "玛拉雅拉姆文",
23560
"zh-cht": "馬拉雅拉姆文",
23561
"xloc": [
23559
- "default.handlebars->31->1234"
23562
+ "default.handlebars->31->1235"
23563
]
23564
},
23565
{
@@ -23576,7 +23579,7 @@
23579
"zh-chs": "马耳他文",
23580
"zh-cht": "馬耳他文",
23581
"xloc": [
23579
- "default.handlebars->31->1235"
23582
+ "default.handlebars->31->1236"
23583
]
23584
},
23585
{
@@ -23619,8 +23622,8 @@
23622
"xloc": [
23623
"default-mobile.handlebars->11->475",
23624
"default-mobile.handlebars->11->495",
23622
- "default.handlebars->31->1519",
23623
- "default.handlebars->31->1555"
23625
+ "default.handlebars->31->1520",
23626
+ "default.handlebars->31->1556"
23627
]
23628
},
23629
{
@@ -23642,8 +23645,8 @@
23645
"xloc": [
23646
"default-mobile.handlebars->11->474",
23647
"default-mobile.handlebars->11->494",
23645
- "default.handlebars->31->1518",
23646
- "default.handlebars->31->1554"
23648
+ "default.handlebars->31->1519",
23649
+ "default.handlebars->31->1555"
23650
]
23651
},
23652
{
@@ -23683,7 +23686,7 @@
23686
"zh-chs": "管理录音",
23687
"zh-cht": "管理錄音",
23688
"xloc": [
23686
- "default.handlebars->31->1885"
23689
+ "default.handlebars->31->1886"
23690
]
23691
},
23692
{
@@ -23723,7 +23726,7 @@
23726
"zh-chs": "管理用户组",
23727
"zh-cht": "管理用戶群",
23728
"xloc": [
23726
- "default.handlebars->31->1884"
23729
+ "default.handlebars->31->1885"
23730
]
23731
},
23732
{
@@ -23743,7 +23746,7 @@
23746
"zh-chs": "管理用户",
23747
"zh-cht": "管理用戶",
23748
"xloc": [
23746
- "default.handlebars->31->1883",
23749
+ "default.handlebars->31->1884",
23750
"default.handlebars->31->720"
23751
]
23752
},
@@ -23870,7 +23873,7 @@
23873
"zh-chs": "使用软件代理进行管理",
23874
"zh-cht": "使用軟體代理進行管理",
23875
"xloc": [
23873
- "default.handlebars->31->1358"
23876
+ "default.handlebars->31->1359"
23877
]
23878
},
23879
{
@@ -23891,7 +23894,7 @@
23894
"zh-cht": "使用軟體代理進行管理",
23895
"xloc": [
23896
"default-mobile.handlebars->11->455",
23894
- "default.handlebars->31->1395"
23897
+ "default.handlebars->31->1396"
23898
]
23899
},
23900
{
@@ -23911,7 +23914,7 @@
23914
"zh-chs": "经理",
23915
"zh-cht": "經理",
23916
"xloc": [
23914
- "default.handlebars->31->1806"
23917
+ "default.handlebars->31->1807"
23918
]
23919
},
23920
{
@@ -23965,7 +23968,7 @@
23968
"zh-chs": "毛利文",
23969
"zh-cht": "毛利文",
23970
"xloc": [
23968
- "default.handlebars->31->1236"
23971
+ "default.handlebars->31->1237"
23972
]
23973
},
23974
{
@@ -24006,7 +24009,7 @@
24009
"zh-chs": "马拉地文",
24010
"zh-cht": "馬拉地文",
24011
"xloc": [
24009
- "default.handlebars->31->1237"
24012
+ "default.handlebars->31->1238"
24013
]
24014
},
24015
{
@@ -24026,7 +24029,7 @@
24029
"zh-chs": "达到连接数量上限",
24030
"zh-cht": "達到連接數量上限",
24031
"xloc": [
24029
- "default.handlebars->31->2182"
24032
+ "default.handlebars->31->2183"
24033
]
24034
},
24035
{
@@ -24091,7 +24094,7 @@
24094
"zh-chs": "Megabyte",
24095
"zh-cht": "Megabyte",
24096
"xloc": [
24094
- "default.handlebars->31->2211"
24097
+ "default.handlebars->31->2212"
24098
]
24099
},
24100
{
@@ -24113,7 +24116,7 @@
24116
"xloc": [
24117
"default-mobile.handlebars->11->446",
24118
"default.handlebars->31->1074",
24116
- "default.handlebars->31->2202",
24119
+ "default.handlebars->31->2203",
24120
"default.handlebars->container->column_l->p40->3->1->p40type->3"
24121
]
24122
},
@@ -24167,7 +24170,7 @@
24170
"zh-cht": "網格代理控制台",
24171
"xloc": [
24172
"default-mobile.handlebars->11->482",
24170
- "default.handlebars->31->1527"
24173
+ "default.handlebars->31->1528"
24174
]
24175
},
24176
{
@@ -24312,7 +24315,7 @@
24315
"zh-chs": "MeshAgent流量",
24316
"zh-cht": "MeshAgent流量",
24317
"xloc": [
24315
- "default.handlebars->31->2225"
24318
+ "default.handlebars->31->2226"
24319
]
24320
},
24321
{
@@ -24332,7 +24335,7 @@
24335
"zh-chs": "MeshAgent更新",
24336
"zh-cht": "MeshAgent更新",
24337
"xloc": [
24335
- "default.handlebars->31->2226"
24338
+ "default.handlebars->31->2227"
24339
]
24340
},
24341
{
@@ -24372,7 +24375,7 @@
24375
"zh-chs": "MeshCentral错误",
24376
"zh-cht": "MeshCentral錯誤",
24377
"xloc": [
24375
- "default.handlebars->31->1388"
24378
+ "default.handlebars->31->1389"
24379
]
24380
},
24381
{
@@ -24453,7 +24456,7 @@
24456
"zh-chs": "MeshCentral服务器同级化",
24457
"zh-cht": "MeshCentral伺服器同級化",
24458
"xloc": [
24456
- "default.handlebars->31->2224"
24459
+ "default.handlebars->31->2225"
24460
]
24461
},
24462
{
@@ -24495,7 +24498,7 @@
24498
"xloc": [
24499
"default.handlebars->31->126",
24500
"default.handlebars->31->128",
24498
- "default.handlebars->31->1384"
24501
+ "default.handlebars->31->1385"
24502
]
24503
},
24504
{
@@ -24832,7 +24835,7 @@
24835
"zh-chs": "消息调度器",
24836
"zh-cht": "電郵調度器",
24837
"xloc": [
24835
- "default.handlebars->31->2222"
24838
+ "default.handlebars->31->2223"
24839
]
24840
},
24841
{
@@ -25012,7 +25015,7 @@
25015
"zh-chs": "摩尔达维亚文",
25016
"zh-cht": "摩爾達維亞文",
25017
"xloc": [
25015
- "default.handlebars->31->1238"
25018
+ "default.handlebars->31->1239"
25019
]
25020
},
25021
{
@@ -25032,7 +25035,7 @@
25035
"zh-chs": "更多",
25036
"zh-cht": "更多",
25037
"xloc": [
25035
- "default.handlebars->31->2254"
25038
+ "default.handlebars->31->2255"
25039
]
25040
},
25041
{
@@ -25113,7 +25116,7 @@
25116
"zh-chs": "移动:“{0}”到“{1}”",
25117
"zh-cht": "移動:“{0}”到“{1}”",
25118
"xloc": [
25116
- "default.handlebars->31->1711"
25119
+ "default.handlebars->31->1712"
25120
]
25121
},
25122
{
@@ -25133,7 +25136,7 @@
25136
"zh-chs": "将设备{0}移动到组{1}",
25137
"zh-cht": "將設備{0}移動到組{1}",
25138
"xloc": [
25136
- "default.handlebars->31->1744"
25139
+ "default.handlebars->31->1745"
25140
]
25141
},
25142
{
@@ -25173,7 +25176,7 @@
25176
"zh-chs": "多路复用器",
25177
"zh-cht": "多工器",
25178
"xloc": [
25176
- "default.handlebars->31->2125"
25179
+ "default.handlebars->31->2126"
25180
]
25181
},
25182
{
@@ -25489,8 +25492,8 @@
25492
"zh-chs": "我的密钥",
25493
"zh-cht": "我的密鍵",
25494
"xloc": [
25492
- "default.handlebars->31->1113",
25493
- "default.handlebars->31->1116"
25495
+ "default.handlebars->31->1114",
25496
+ "default.handlebars->31->1117"
25497
]
25498
},
25499
{
@@ -25579,15 +25582,15 @@
25582
"default.handlebars->31->1000",
25583
"default.handlebars->31->101",
25584
"default.handlebars->31->1062",
25582
- "default.handlebars->31->1356",
25583
- "default.handlebars->31->1396",
25584
- "default.handlebars->31->1483",
25585
- "default.handlebars->31->1788",
25586
- "default.handlebars->31->1893",
25587
- "default.handlebars->31->1909",
25588
- "default.handlebars->31->1916",
25589
- "default.handlebars->31->1961",
25590
- "default.handlebars->31->1980",
25585
+ "default.handlebars->31->1357",
25586
+ "default.handlebars->31->1397",
25587
+ "default.handlebars->31->1484",
25588
+ "default.handlebars->31->1789",
25589
+ "default.handlebars->31->1894",
25590
+ "default.handlebars->31->1910",
25591
+ "default.handlebars->31->1917",
25592
+ "default.handlebars->31->1962",
25593
+ "default.handlebars->31->1981",
25594
"default.handlebars->31->566",
25595
"default.handlebars->31->87",
25596
"default.handlebars->31->915",
@@ -25633,7 +25636,7 @@
25636
"zh-chs": "名称1,名称2,名称3",
25637
"zh-cht": "名稱1,名稱2,名稱3",
25638
"xloc": [
25636
- "default.handlebars->31->1875"
25639
+ "default.handlebars->31->1876"
25640
]
25641
},
25642
{
@@ -25653,7 +25656,7 @@
25656
"zh-chs": "纳瓦霍文",
25657
"zh-cht": "納瓦霍文",
25658
"xloc": [
25656
- "default.handlebars->31->1239"
25659
+ "default.handlebars->31->1240"
25660
]
25661
},
25662
{
@@ -25673,7 +25676,7 @@
25676
"zh-chs": "恩东加",
25677
"zh-cht": "恩東加",
25678
"xloc": [
25676
- "default.handlebars->31->1240"
25679
+ "default.handlebars->31->1241"
25680
]
25681
},
25682
{
@@ -25693,7 +25696,7 @@
25696
"zh-chs": "尼泊尔文",
25697
"zh-cht": "尼泊爾文",
25698
"xloc": [
25696
- "default.handlebars->31->1241"
25699
+ "default.handlebars->31->1242"
25700
]
25701
},
25702
{
@@ -25793,7 +25796,7 @@
25796
"zh-chs": "生成新的2FA备份代码",
25797
"zh-cht": "生成新的2FA備份代碼",
25798
"xloc": [
25796
- "default.handlebars->31->1751"
25799
+ "default.handlebars->31->1752"
25800
]
25801
},
25802
{
@@ -25802,7 +25805,7 @@
25805
"fr": "Nouveau compte",
25806
"xloc": [
25807
"default-mobile.handlebars->11->523",
25805
- "default.handlebars->31->2134"
25808
+ "default.handlebars->31->2135"
25809
]
25810
},
25811
{
@@ -25863,8 +25866,8 @@
25866
"zh-cht": "新裝置群",
25867
"xloc": [
25868
"default-mobile.handlebars->11->102",
25866
- "default.handlebars->31->1349",
25867
- "default.handlebars->31->1361",
25869
+ "default.handlebars->31->1350",
25870
+ "default.handlebars->31->1362",
25871
"default.handlebars->31->816"
25872
]
25873
},
@@ -25887,7 +25890,7 @@
25890
"xloc": [
25891
"default-mobile.handlebars->11->131",
25892
"default-mobile.handlebars->11->353",
25890
- "default.handlebars->31->1643",
25893
+ "default.handlebars->31->1644",
25894
"default.handlebars->31->963",
25895
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
25896
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
@@ -25971,8 +25974,8 @@
25974
"zh-chs": "新密码*",
25975
"zh-cht": "新密碼*",
25976
"xloc": [
25974
- "default.handlebars->31->1461",
25975
- "default.handlebars->31->1462"
25977
+ "default.handlebars->31->1462",
25978
+ "default.handlebars->31->1463"
25979
]
25980
},
25981
{
@@ -25994,8 +25997,8 @@
25997
"xloc": [
25998
"default-mobile.handlebars->11->97",
25999
"default-mobile.handlebars->11->98",
25997
- "default.handlebars->31->1344",
25998
- "default.handlebars->31->1345"
26000
+ "default.handlebars->31->1345",
26001
+ "default.handlebars->31->1346"
26002
]
26003
},
26004
{
@@ -26097,7 +26100,7 @@
26100
"zh-chs": "没有桌面",
26101
"zh-cht": "沒有桌面",
26102
"xloc": [
26100
- "default.handlebars->31->1562",
26103
+ "default.handlebars->31->1563",
26104
"default.handlebars->31->706",
26105
"default.handlebars->31->727"
26106
]
@@ -26119,7 +26122,7 @@
26122
"zh-chs": "不能访问桌面",
26123
"zh-cht": "不能訪問桌面",
26124
"xloc": [
26122
- "default.handlebars->31->1523"
26125
+ "default.handlebars->31->1524"
26126
]
26127
},
26128
{
@@ -26139,8 +26142,8 @@
26142
"zh-chs": "找不到事件",
26143
"zh-cht": "找不到事件",
26144
"xloc": [
26142
- "default.handlebars->31->1764",
26143
- "default.handlebars->31->2099",
26145
+ "default.handlebars->31->1765",
26146
+ "default.handlebars->31->2100",
26147
"default.handlebars->31->998"
26148
]
26149
},
@@ -26162,7 +26165,7 @@
26165
"zh-cht": "不能存取檔案",
26166
"xloc": [
26167
"default-mobile.handlebars->11->480",
26165
- "default.handlebars->31->1525"
26168
+ "default.handlebars->31->1526"
26169
]
26170
},
26171
{
@@ -26183,7 +26186,7 @@
26186
"zh-cht": "沒有檔案",
26187
"xloc": [
26188
"default-mobile.handlebars->11->503",
26186
- "default.handlebars->31->1564",
26189
+ "default.handlebars->31->1565",
26190
"default.handlebars->31->703",
26191
"default.handlebars->31->724"
26192
]
@@ -26228,8 +26231,8 @@
26231
"xloc": [
26232
"default-mobile.handlebars->11->481",
26233
"default-mobile.handlebars->11->504",
26231
- "default.handlebars->31->1526",
26232
- "default.handlebars->31->1565"
26234
+ "default.handlebars->31->1527",
26235
+ "default.handlebars->31->1566"
26236
]
26237
},
26238
{
@@ -26309,7 +26312,7 @@
26312
"zh-chs": "没有成员",
26313
"zh-cht": "沒有成員",
26314
"xloc": [
26312
- "default.handlebars->31->1943"
26315
+ "default.handlebars->31->1944"
26316
]
26317
},
26318
{
@@ -26329,7 +26332,7 @@
26332
"zh-chs": "没有新的设备组",
26333
"zh-cht": "沒有新的裝置群",
26334
"xloc": [
26332
- "default.handlebars->31->1888"
26335
+ "default.handlebars->31->1889"
26336
]
26337
},
26338
{
@@ -26349,8 +26352,8 @@
26352
"zh-chs": "没有政策",
26353
"zh-cht": "沒有政策",
26354
"xloc": [
26352
- "default.handlebars->31->1427",
26353
- "default.handlebars->31->1452"
26355
+ "default.handlebars->31->1428",
26356
+ "default.handlebars->31->1453"
26357
]
26358
},
26359
{
@@ -26373,8 +26376,8 @@
26376
"default-mobile.handlebars->11->117",
26377
"default-mobile.handlebars->11->464",
26378
"default-mobile.handlebars->11->511",
26376
- "default.handlebars->31->1370",
26377
- "default.handlebars->31->1572",
26379
+ "default.handlebars->31->1371",
26380
+ "default.handlebars->31->1573",
26381
"default.handlebars->31->717",
26382
"default.handlebars->31->738"
26383
]
@@ -26419,7 +26422,7 @@
26422
"zh-cht": "沒有終端",
26423
"xloc": [
26424
"default-mobile.handlebars->11->502",
26422
- "default.handlebars->31->1563",
26425
+ "default.handlebars->31->1564",
26426
"default.handlebars->31->702",
26427
"default.handlebars->31->723"
26428
]
@@ -26442,7 +26445,7 @@
26445
"zh-cht": "不能訪問終端",
26446
"xloc": [
26447
"default-mobile.handlebars->11->479",
26445
- "default.handlebars->31->1524"
26448
+ "default.handlebars->31->1525"
26449
]
26450
},
26451
{
@@ -26462,7 +26465,7 @@
26465
"zh-chs": "没有工具(MeshCmd /路由器)",
26466
"zh-cht": "沒有工具(MeshCmd /路由器)",
26467
"xloc": [
26465
- "default.handlebars->31->1889"
26468
+ "default.handlebars->31->1890"
26469
]
26470
},
26471
{
@@ -26503,8 +26506,8 @@
26506
"zh-chs": "没有共同的设备组",
26507
"zh-cht": "沒有共同的裝置群",
26508
"xloc": [
26506
- "default.handlebars->31->1949",
26507
- "default.handlebars->31->2069"
26509
+ "default.handlebars->31->1950",
26510
+ "default.handlebars->31->2070"
26511
]
26512
},
26513
{
@@ -26624,8 +26627,8 @@
26627
"zh-chs": "没有共同的设备",
26628
"zh-cht": "沒有共同的裝置",
26629
"xloc": [
26627
- "default.handlebars->31->1955",
26628
- "default.handlebars->31->2081"
26630
+ "default.handlebars->31->1956",
26631
+ "default.handlebars->31->2082"
26632
]
26633
},
26634
{
@@ -26645,7 +26648,7 @@
26648
"zh-chs": "该设备组中没有设备。",
26649
"zh-cht": "該裝置群中沒有裝置。",
26650
"xloc": [
26648
- "default.handlebars->31->1615"
26651
+ "default.handlebars->31->1616"
26652
]
26653
},
26654
{
@@ -26748,7 +26751,7 @@
26751
"zh-chs": "找不到群组。",
26752
"zh-cht": "找不到群組。",
26753
"xloc": [
26751
- "default.handlebars->31->1892"
26754
+ "default.handlebars->31->1893"
26755
]
26756
},
26757
{
@@ -26847,7 +26850,7 @@
26850
"fr": "Aucun numéro de téléphone pour cet utilisateur",
26851
"xloc": [
26852
"default-mobile.handlebars->11->554",
26850
- "default.handlebars->31->2165"
26853
+ "default.handlebars->31->2166"
26854
]
26855
},
26856
{
@@ -26887,7 +26890,7 @@
This file is too large to show in full.
views/default.handlebars
+4
-1
@@ -9385,7 +9385,7 @@
9385
if (e.shiftKey == true) { meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type: 'default' }); } // Upload default core
9386
else if (e.altKey == true) { meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type: 'clear' }); } // Clear the core
9387
else if (e.ctrlKey == true) { p15uploadCore2(); } // Upload the core from a file
9388
- else { setDialogMode(2, "Perform Agent Action", 3, p15uploadCoreEx, addHtmlValue("Action", '<select id=d3coreMode style=width:230px><option value=1>' + "Upload default server core" + '</option><option value=2>' + "Clear the core" + '</option><option value=6>' + "Upload recovery core" + '</option><option value=3>' + "Upload a core file" + '</option><option value=4>' + "Soft disconnect agent" + '</option><option value=5>' + "Hard disconnect agent" + '</option></select>')); }
9388
+ else { setDialogMode(2, "Perform Agent Action", 3, p15uploadCoreEx, addHtmlValue("Action", '<select id=d3coreMode style=width:230px><option value=1>' + "Upload default server core" + '</option><option value=2>' + "Clear the core" + '</option><option value=6>' + "Upload recovery core" + '</option><option value=7>' + "Upload tiny core" + '</option><option value=3>' + "Upload a core file" + '</option><option value=4>' + "Soft disconnect agent" + '</option><option value=5>' + "Hard disconnect agent" + '</option></select>')); }
9389
}
9390
9391
function p15uploadCoreEx() {
@@ -9407,6 +9407,9 @@
9407
} else if (Q('d3coreMode').value == 6) {
9408
// Upload a recovery core
9409
meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type:'recovery' });
9410
+ } else if (Q('d3coreMode').value == 7) {
9411
+ // Upload a tiny core
9412
+ meshserver.send({ action: 'uploadagentcore', nodeid: consoleNode._id, type:'tiny' });
9413
}
9414
}
9415
webserver.js
+4
@@ -5762,6 +5762,10 @@ module.exports.CreateWebServer = function (parent, db, args, certificates) {
5762
// Reset to recovery core
5763
agent.agentCoreCheck = 1001; // Tell the agent object we are using the recovery core.
5764
agent.send(obj.common.ShortToStr(11) + obj.common.ShortToStr(0)); // Command 11, ask for mesh core hash.
5765
+ } else if (coretype == 'tiny') {
5766
+ // Reset to tiny core
5767
+ agent.agentCoreCheck = 1011; // Tell the agent object we are using the tiny core.
5768
+ agent.send(obj.common.ShortToStr(11) + obj.common.ShortToStr(0)); // Command 11, ask for mesh core hash.
5769
} else if (coretype == 'custom') {
5770
agent.agentCoreCheck = 1000; // Tell the agent object we are using a custom core.
5771
const hash = obj.crypto.createHash('sha384').update(Buffer.from(coredata, 'binary')).digest().toString('binary'); // Perform a SHA384 hash on the core module