Updated Linux install script.
Ylian Saint-Hilaire committed
Jan 18, 2021 at 20:48 UTC
5500b97dd4b4c7647b5b8e9b5d37ea8c0af9561d
4 files changed
+2759
-2869
agents/meshinstall-linux.sh
+67
-174
@@ -20,26 +20,25 @@ CheckStartupType() {
20
if [[ $starttype1 == 'systemd' ]]
21
then return 1;
22
elif [[ $starttype1 == 'init' || $starttype2 == 'init' ]]
23
- then
24
- if [ -d "/etc/init" ]
25
- then
26
- return 2;
27
- else
28
- return 3;
29
- fi
23
+ then
24
+ if [ -d "/etc/init" ]
25
+ then
26
+ return 2;
27
+ else
28
+ return 3;
29
+ fi
30
fi
31
return 0;
32
}
33
34
35
-
35
# Add "StartupType=(type)" to .msh file
36
UpdateMshFile() {
37
# Remove all lines that start with "StartupType="
39
- sed '/^StartupType=/ d' < /usr/local/mesh/meshagent.msh >> /usr/local/mesh/meshagent2.msh
38
+ sed '/^StartupType=/ d' < ./meshagent.msh >> ./meshagent2.msh
39
# Add the startup type to the file
41
- echo "StartupType=$starttype" >> /usr/local/mesh/meshagent2.msh
42
- mv /usr/local/mesh/meshagent2.msh /usr/local/mesh/meshagent.msh
40
+ echo "StartupType=$starttype" >> ./meshagent2.msh
41
+ mv ./meshagent2.msh ./meshagent.msh
42
}
43
44
CheckInstallAgent() {
@@ -52,8 +51,9 @@ CheckInstallAgent() {
51
fi
52
if [ $# -ge 2 ]
53
then
55
- url=$1
56
- meshid=$2
54
+ uninstall=$1
55
+ url=$2
56
+ meshid=$3
57
meshidlen=${#meshid}
58
if [ $meshidlen -gt 63 ]
59
then
@@ -61,41 +61,41 @@ CheckInstallAgent() {
61
machinetype=$( uname -m )
62
63
# If we have 3 arguments...
64
- if [ $# -ge 3 ]
64
+ if [ $# -ge 4 ]
65
then
66
# echo "Computer type is specified..."
67
- machineid=$3
67
+ machineid=$4
68
else
69
# echo "Detecting computer type..."
70
if [ $machinetype == 'x86_64' ] || [ $machinetype == 'amd64' ]
71
then
72
- if [ $starttype -eq 5 ]
73
- then
74
- # FreeBSD x86, 64 bit
75
- machineid=30
76
- else
77
- # Linux x86, 64 bit
78
- bitlen=$( getconf LONG_BIT )
79
- if [ $bitlen == '32' ]
80
- then
81
- # 32 bit OS
82
- machineid=5
83
- else
84
- # 64 bit OS
85
- machineid=6
86
- fi
87
- fi
72
+ if [ $starttype -eq 5 ]
73
+ then
74
+ # FreeBSD x86, 64 bit
75
+ machineid=30
76
+ else
77
+ # Linux x86, 64 bit
78
+ bitlen=$( getconf LONG_BIT )
79
+ if [ $bitlen == '32' ]
80
+ then
81
+ # 32 bit OS
82
+ machineid=5
83
+ else
84
+ # 64 bit OS
85
+ machineid=6
86
+ fi
87
+ fi
88
fi
89
if [ $machinetype == 'x86' ] || [ $machinetype == 'i686' ] || [ $machinetype == 'i586' ]
90
then
91
- if [ $starttype -eq 5 ]
92
- then
93
- # FreeBSD x86, 32 bit
94
- machineid=31
95
- else
96
- # Linux x86, 32 bit
97
- machineid=5
98
- fi
91
+ if [ $starttype -eq 5 ]
92
+ then
93
+ # FreeBSD x86, 32 bit
94
+ machineid=31
95
+ else
96
+ # Linux x86, 32 bit
97
+ machineid=5
98
+ fi
99
fi
100
if [ $machinetype == 'armv6l' ] || [ $machinetype == 'armv7l' ]
101
then
@@ -114,169 +114,66 @@ CheckInstallAgent() {
114
then
115
echo "Unsupported machine type: $machinetype."
116
else
117
- DownloadAgent $url $meshid $machineid
117
+ DownloadAgent $uninstall $url $meshid $machineid
118
fi
119
120
else
121
- echo "MeshID is not correct, must be at least 64 characters long."
121
+ echo "Device group identifier is not correct, must be at least 64 characters long."
122
fi
123
else
124
- echo "URI and/or MeshID have not been specified, must be passed in as arguments."
124
+ echo "URI and/or device group identifier have not been specified, must be passed in as arguments."
125
return 0;
126
fi
127
}
128
129
DownloadAgent() {
130
- url=$1
131
- meshid=$2
132
- machineid=$3
133
- # Create folder
134
- mkdir -p /usr/local/mesh
135
- cd /usr/local/mesh
136
- echo "Downloading Mesh agent #$machineid..."
137
- wget $url/meshagents?id=$machineid {{{wgetoptionshttps}}}-O /usr/local/mesh/meshagent || curl {{{curloptionshttps}}}--output /usr/local/mesh/meshagent $url/meshagents?id=$machineid
130
+ uninstall=$1
131
+ url=$2
132
+ meshid=$3
133
+ machineid=$4
134
+ echo "Downloading agent #$machineid..."
135
+ wget $url/meshagents?id=$machineid {{{wgetoptionshttps}}}-O ./meshagent || curl {{{curloptionshttps}}}--output ./meshagent $url/meshagents?id=$machineid
136
137
# If it did not work, try again using http
138
if [ $? != 0 ]
139
then
140
url=${url/"https://"/"http://"}
143
- wget $url/meshagents?id=$machineid {{{wgetoptionshttp}}}-O /usr/local/mesh/meshagent || curl {{{curloptionshttp}}}--output /usr/local/mesh/meshagent $url/meshagents?id=$machineid
141
+ wget $url/meshagents?id=$machineid {{{wgetoptionshttp}}}-O ./meshagent || curl {{{curloptionshttp}}}--output ./meshagent $url/meshagents?id=$machineid
142
fi
143
144
if [ $? -eq 0 ]
145
then
148
- echo "Mesh agent downloaded."
146
+ echo "Agent downloaded."
147
# TODO: We could check the meshagent sha256 hash, but best to authenticate the server.
150
- chmod 755 /usr/local/mesh/meshagent
151
- wget $url/meshsettings?id=$meshid {{{wgetoptionshttps}}}-O /usr/local/mesh/meshagent.msh || curl {{{curloptionshttps}}}--output /usr/local/mesh/meshagent.msh $url/meshsettings?id=$meshid
148
+ chmod 755 ./meshagent
149
+ wget $url/meshsettings?id=$meshid {{{wgetoptionshttps}}}-O ./meshagent.msh || curl {{{curloptionshttps}}}--output ./meshagent.msh $url/meshsettings?id=$meshid
150
151
# If it did not work, try again using http
152
if [ $? -ne 0 ]
153
then
156
- wget $url/meshsettings?id=$meshid {{{wgetoptionshttp}}}-O /usr/local/mesh/meshagent.msh || curl {{{curloptionshttp}}}--output /usr/local/mesh/meshagent.msh $url/meshsettings?id=$meshid
154
+ wget $url/meshsettings?id=$meshid {{{wgetoptionshttp}}}-O ./meshagent.msh || curl {{{curloptionshttp}}}--output ./meshagent.msh $url/meshsettings?id=$meshid
155
fi
156
157
if [ $? -eq 0 ]
158
then
161
- UpdateMshFile
162
- if [ $starttype -eq 1 ]
159
+ # Update the .msh file and run the agent installer/uninstaller
160
+ if [ $uninstall == 'uninstall' ] || [ $uninstall == 'UNINSTALL' ]
161
then
164
- # systemd
165
- if [ -d "/lib/systemd/system/" ]
166
- then
167
- echo -e "[Unit]\nDescription=MeshCentral Agent\n[Service]\nWorkingDirectory=/usr/local/mesh\nExecStart=/usr/local/mesh/meshagent\nStandardOutput=null\nRestart=always\nRestartSec=3\n[Install]\nWantedBy=multi-user.target\nAlias=meshagent.service\n" > /lib/systemd/system/meshagent.service
168
- else
169
- # Some distros have the systemd folder at a different place
170
- if [ -d "/usr/lib/systemd/system/" ]
171
- then
172
- echo -e "[Unit]\nDescription=MeshCentral Agent\n[Service]\nWorkingDirectory=/usr/local/mesh\nExecStart=/usr/local/mesh/meshagent\nStandardOutput=null\nRestart=always\nRestartSec=3\n[Install]\nWantedBy=multi-user.target\nAlias=meshagent.service\n" > /usr/lib/systemd/system/meshagent.service
173
- else
174
- echo "Unable to find systemd folder."
175
- fi
176
- fi
177
- systemctl enable meshagent
178
- systemctl start meshagent
179
- echo 'meshagent installed as systemd service.'
180
- echo 'To start service: sudo systemctl start meshagent'
181
- echo 'To stop service: sudo systemctl stop meshagent'
182
- elif [ $starttype -eq 3 ]
183
- then
184
- # initd
185
- wget $url/meshagents?script=2 {{{wgetoptionshttps}}}-O /etc/init.d/meshagent || curl {{{curloptionshttps}}}--output /etc/init.d/meshagent $url/meshagents?script=2
186
- chmod +x /etc/init.d/meshagent
187
- # creates symlinks for rc.d
188
- update-rc.d meshagent defaults
189
- service meshagent start
190
- echo 'meshagent installed as init.d service.'
191
- echo 'To start service: sudo service meshagent start'
192
- echo 'To stop service: sudo service meshagent stop'
193
- elif [ $starttype -eq 2 ]
194
- then
195
- # upstart
196
- echo -e "start on runlevel [2345]\nstop on runlevel [016]\n\nrespawn\n\nchdir /usr/local/mesh\nexec /usr/local/mesh/meshagent\n\n" > /etc/init/meshagent.conf
197
- initctl start meshagent
198
- echo 'meshagent installed as upstart/init.d service.'
199
- echo 'To start service: sudo initctl start meshagent'
200
- echo 'To stop service: sudo initctl stop meshagent'
201
- elif [ $starttype -eq 5 ]
202
- then
203
- # FreeBSD
204
- wget $url/meshagents?script=5 {{{wgetoptionshttps}}}-O /usr/local/etc/rc.d/meshagent || curl {{{curloptionshttps}}}--output /usr/local/etc/rc.d/meshagent $url/meshagents?script=5
205
- chmod +x /usr/local/etc/rc.d/meshagent
206
- service meshagent start
207
- echo 'meshagent installed as BSD service.'
208
- echo 'To start service: sudo service meshagent start'
209
- echo 'To stop service: sudo service meshagent stop'
162
+ # Uninstall the agent
163
+ ./meshagent -fulluninstall
164
else
211
- # unknown
212
- echo "Unknown Service Platform Type. (ie: init, systemd, etc)"
213
- echo "Installing as Pseudo Service (Mesh Daemon)"
214
- /usr/local/mesh/meshagent -exec "require('service-manager').manager.installService({name: 'meshagent', servicePath: process.execPath, files: ['/usr/local/mesh/meshagent.msh']});process.exit();"
215
- /usr/local/mesh_daemons/daemon start meshagent
216
- echo 'To start service: /usr/local/mesh_daemons/daemon start meshagent'
217
- echo 'To stop service: /usr/local/mesh_daemons/daemon stop meshagent'
165
+ # Install the agent
166
+ UpdateMshFile
167
+ ./meshagent -fullinstall --copy-msh=1
168
fi
219
- echo "Mesh agent started."
169
else
221
- echo "Unable to download mesh settings at: $url/meshsettings?id=$meshid."
170
+ echo "Unable to download device group settings at: $url/meshsettings?id=$meshid."
171
fi
172
else
224
- echo "Unable to download mesh agent at: $url/meshagents?id=$machineid."
173
+ echo "Unable to download agent at: $url/meshagents?id=$machineid."
174
fi
175
}
176
228
-UninstallAgent() {
229
-# Uninstall agent
230
- if [ -e "/usr/local" ]
231
- then
232
- installpath="/usr/local/mesh"
233
- else
234
- installpath="/usr/mesh"
235
- fi
236
-
237
- if [ $starttype -eq 1 ]
238
- then
239
- # systemd
240
- systemctl disable meshagent
241
- systemctl stop meshagent
242
- rm -f /sbin/meshcmd /lib/systemd/system/meshagent.service
243
- systemctl stop meshagentDiagnostic &> /dev/null
244
- rm -f /lib/systemd/system/meshagentDiagnostic.service &> /dev/null
245
- else
246
- if [ $starttype -eq 3 ]; then
247
- # initd
248
- service meshagent stop
249
- update-rc.d -f meshagent remove
250
- rm -f /sbin/meshcmd /etc/init.d/meshagent
251
- service meshagentDiagnostic stop &> /dev/null
252
- rm -f /etc/init.d/meshagentDiagnostic &> /dev/null
253
- elif [ $starttype -eq 2 ]; then
254
- # upstart
255
- initctl stop meshagent
256
- rm -f /sbin/meshcmd
257
- rm -f /etc/init/meshagent.conf
258
- rm -f /etc/rc2.d/S20mesh /etc/rc3.d/S20mesh /etc/rc5.d/S20mesh
259
- initctl stop meshagentDiagnostic &> /dev/null
260
- rm -f /etc/init/meshagentDiagnostic.conf &> /dev/null
261
- elif [ $starttype -eq 5 ]; then
262
- # FreeBSD
263
- service meshagent stop
264
- service meshagentDiagnostic stop &> /dev/null
265
- rm -f /usr/local/etc/rc.d/meshagent
266
- rm -f /usr/local/etc/rc.d/meshagentDiagnostic &> /dev/null
267
- fi
268
- fi
269
-
270
- if [ -e $installpath ]
271
- then
272
- rm -rf $installpath/*
273
- rmdir $installpath
274
- fi
275
- rm -rf /usr/local/mesh_services/meshagentDiagnostic &> /dev/null
276
- rm -f /etc/cron.d/meshagentDiagnostic_periodicStart &> /dev/null
277
- echo "Agent uninstalled."
278
-}
279
-
177
178
CheckStartupType
179
starttype=$?
@@ -287,19 +184,15 @@ if [ $currentuser == 'root' ]
184
then
185
if [ $# -eq 0 ]
186
then
290
- echo -e "This script will install or uninstall a mesh agent, usage:\n $0 [serverurl] [meshid] (machineid)\n $0 uninstall"
187
+ echo -e "This script will install or uninstall a agent, usage:\n $0 [serverUrl] [deviceGroupId] (machineId)\n $0 uninstall [serverUrl] [deviceGroupId] (machineId)"
188
else
292
- if [ $# -eq 1 ]
189
+ if [ $1 == 'uninstall' ] || [ $1 == 'UNINSTALL' ]
190
then
294
- if [ $1 == 'uninstall' ] || [ $1 == 'UNINSTALL' ]
295
- then
296
- UninstallAgent
297
- fi
191
+ CheckInstallAgent 'uninstall' $2 $3 $4
192
else
299
- UninstallAgent
300
- CheckInstallAgent $1 $2 $3
193
+ CheckInstallAgent 'install' $1 $2 $3
194
fi
195
fi
196
else
304
- echo "Must be root to install or uninstall mesh agent."
197
+ echo "Must be root to install or uninstall the agent."
198
fi
translate/translate.json
+2682
-2670
@@ -17,8 +17,8 @@
17
"zh-chs": " + CIRA",
18
"zh-cht": " + CIRA",
19
"xloc": [
20
- "default.handlebars->31->1428",
21
- "default.handlebars->31->1430"
20
+ "default.handlebars->31->1429",
21
+ "default.handlebars->31->1431"
22
]
23
},
24
{
@@ -38,8 +38,8 @@
38
"zh-chs": " - 1天后重设。",
39
"zh-cht": " - 1天后重設。",
40
"xloc": [
41
- "default-mobile.handlebars->11->56",
42
- "default.handlebars->31->67"
41
+ "default-mobile.handlebars->11->57",
42
+ "default.handlebars->31->68"
43
]
44
},
45
{
@@ -59,8 +59,8 @@
59
"zh-chs": " - 1小时后重设。",
60
"zh-cht": " - 1小時後重設。",
61
"xloc": [
62
- "default-mobile.handlebars->11->54",
63
- "default.handlebars->31->65"
62
+ "default-mobile.handlebars->11->55",
63
+ "default.handlebars->31->66"
64
]
65
},
66
{
@@ -80,8 +80,8 @@
80
"zh-chs": " - 1分钟后重设。",
81
"zh-cht": " - 1分鐘後重設。",
82
"xloc": [
83
- "default-mobile.handlebars->11->52",
84
- "default.handlebars->31->63"
83
+ "default-mobile.handlebars->11->53",
84
+ "default.handlebars->31->64"
85
]
86
},
87
{
@@ -101,8 +101,8 @@
101
"zh-chs": " - 在{0}天内重置。",
102
"zh-cht": " - 在{0}天內重置。",
103
"xloc": [
104
- "default-mobile.handlebars->11->57",
105
- "default.handlebars->31->68"
104
+ "default-mobile.handlebars->11->58",
105
+ "default.handlebars->31->69"
106
]
107
},
108
{
@@ -122,8 +122,8 @@
122
"zh-chs": " - 在{0}小时内重置。",
123
"zh-cht": " - 在{0}小時內重置。",
124
"xloc": [
125
- "default-mobile.handlebars->11->55",
126
- "default.handlebars->31->66"
125
+ "default-mobile.handlebars->11->56",
126
+ "default.handlebars->31->67"
127
]
128
},
129
{
@@ -143,8 +143,8 @@
143
"zh-chs": " - 在{0}分钟内重置。",
144
"zh-cht": " - 在{0}分鐘內重置。",
145
"xloc": [
146
- "default-mobile.handlebars->11->53",
147
- "default.handlebars->31->64"
146
+ "default-mobile.handlebars->11->54",
147
+ "default.handlebars->31->65"
148
]
149
},
150
{
@@ -164,10 +164,10 @@
164
"zh-chs": " -下次登录时重置。",
165
"zh-cht": " -下次登入時重置。",
166
"xloc": [
167
- "default-mobile.handlebars->11->50",
167
"default-mobile.handlebars->11->51",
169
- "default.handlebars->31->61",
170
- "default.handlebars->31->62"
168
+ "default-mobile.handlebars->11->52",
169
+ "default.handlebars->31->62",
170
+ "default.handlebars->31->63"
171
]
172
},
173
{
@@ -204,7 +204,7 @@
204
"zh-chs": " 可以使用密码提示,但不建议使用。",
205
"zh-cht": " 可以使用密碼提示,但不建議使用。",
206
"xloc": [
207
- "default.handlebars->31->1341"
207
+ "default.handlebars->31->1342"
208
]
209
},
210
{
@@ -224,8 +224,8 @@
224
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
225
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
226
"xloc": [
227
- "default.handlebars->31->1505",
228
- "default.handlebars->31->1969"
227
+ "default.handlebars->31->1506",
228
+ "default.handlebars->31->1970"
229
]
230
},
231
{
@@ -279,7 +279,7 @@
279
"zh-chs": " 节点",
280
"zh-cht": " 節點",
281
"xloc": [
282
- "default-mobile.handlebars->11->219"
282
+ "default-mobile.handlebars->11->220"
283
]
284
},
285
{
@@ -299,7 +299,7 @@
299
"zh-chs": " 节点",
300
"zh-cht": " 節點",
301
"xloc": [
302
- "default-mobile.handlebars->11->220"
302
+ "default-mobile.handlebars->11->221"
303
]
304
},
305
{
@@ -319,7 +319,7 @@
319
"zh-chs": " TLS。",
320
"zh-cht": " TLS。",
321
"xloc": [
322
- "default.handlebars->31->183"
322
+ "default.handlebars->31->184"
323
]
324
},
325
{
@@ -339,7 +339,7 @@
339
"zh-chs": " 没有TLS。",
340
"zh-cht": " 沒有TLS。",
341
"xloc": [
342
- "default.handlebars->31->184"
342
+ "default.handlebars->31->185"
343
]
344
},
345
{
@@ -395,7 +395,7 @@
395
"zh-chs": "(可选的)",
396
"zh-cht": "(可選的)",
397
"xloc": [
398
- "default.handlebars->31->356"
398
+ "default.handlebars->31->357"
399
]
400
},
401
{
@@ -432,8 +432,8 @@
432
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
433
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
434
"xloc": [
435
- "default.handlebars->31->1474",
436
- "default.handlebars->31->322"
435
+ "default.handlebars->31->1475",
436
+ "default.handlebars->31->323"
437
]
438
},
439
{
@@ -453,7 +453,7 @@
453
"zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
454
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
455
"xloc": [
456
- "default.handlebars->31->396"
456
+ "default.handlebars->31->397"
457
]
458
},
459
{
@@ -507,8 +507,8 @@
507
"zh-chs": ",",
508
"zh-cht": ",",
509
"xloc": [
510
- "default-mobile.handlebars->11->514",
511
- "default.handlebars->31->1575"
510
+ "default-mobile.handlebars->11->515",
511
+ "default.handlebars->31->1576"
512
]
513
},
514
{
@@ -528,8 +528,8 @@
528
"zh-chs": ",仅限于Intel®AMT",
529
"zh-cht": ",只適用於Intel®AMT",
530
"xloc": [
531
- "default-mobile.handlebars->11->157",
532
- "default.handlebars->31->221"
531
+ "default-mobile.handlebars->11->158",
532
+ "default.handlebars->31->222"
533
]
534
},
535
{
@@ -549,7 +549,7 @@
549
"zh-chs": ",MQTT在线",
550
"zh-cht": ",MQTT在線",
551
"xloc": [
552
- "default.handlebars->31->1083"
552
+ "default.handlebars->31->1084"
553
]
554
},
555
{
@@ -557,7 +557,7 @@
557
"fr": ", Pas de consentement",
558
"nl": ", Geen toestemming",
559
"xloc": [
560
- "default.handlebars->31->696"
560
+ "default.handlebars->31->697"
561
]
562
},
563
{
@@ -577,7 +577,7 @@
577
"zh-chs": ",提示同意",
578
"zh-cht": ",提示同意",
579
"xloc": [
580
- "default.handlebars->31->697"
580
+ "default.handlebars->31->698"
581
]
582
},
583
{
@@ -597,7 +597,7 @@
597
"zh-chs": ",软体KVM",
598
"zh-cht": ",軟體KVM",
599
"xloc": [
600
- "default.handlebars->31->869",
600
+ "default.handlebars->31->870",
601
"desktop.handlebars->3->12"
602
]
603
},
@@ -606,14 +606,14 @@
606
"fr": ", barre d'outils",
607
"nl": ", Werkbalk",
608
"xloc": [
609
- "default.handlebars->31->698"
609
+ "default.handlebars->31->699"
610
]
611
},
612
{
613
"en": ", View only",
614
"nl": ", Alleen kijken",
615
"xloc": [
616
- "default.handlebars->31->695"
616
+ "default.handlebars->31->696"
617
]
618
},
619
{
@@ -633,11 +633,11 @@
633
"zh-chs": ",WebRTC",
634
"zh-cht": ",WebRTC",
635
"xloc": [
636
- "default-mobile.handlebars->11->313",
637
- "default-mobile.handlebars->11->346",
638
- "default.handlebars->31->876",
639
- "default.handlebars->31->935",
640
- "default.handlebars->31->947",
636
+ "default-mobile.handlebars->11->314",
637
+ "default-mobile.handlebars->11->347",
638
+ "default.handlebars->31->877",
639
+ "default.handlebars->31->936",
640
+ "default.handlebars->31->948",
641
"desktop.handlebars->3->19",
642
"terminal.handlebars->3->9",
643
"xterm.handlebars->9->6"
@@ -760,7 +760,7 @@
760
"zh-chs": ",{0}观看",
761
"zh-cht": ",{0}觀看",
762
"xloc": [
763
- "default.handlebars->31->870",
763
+ "default.handlebars->31->871",
764
"desktop.handlebars->3->13"
765
]
766
},
@@ -823,11 +823,11 @@
823
"zh-chs": "...",
824
"zh-cht": "...",
825
"xloc": [
826
- "default-mobile.handlebars->11->118",
827
- "default-mobile.handlebars->11->348",
828
- "default.handlebars->31->1616",
829
- "default.handlebars->31->2128",
830
- "default.handlebars->31->953"
826
+ "default-mobile.handlebars->11->119",
827
+ "default-mobile.handlebars->11->349",
828
+ "default.handlebars->31->1617",
829
+ "default.handlebars->31->2129",
830
+ "default.handlebars->31->954"
831
]
832
},
833
{
@@ -884,7 +884,7 @@
884
"zh-chs": "1个活跃时段",
885
"zh-cht": "1個活躍時段",
886
"xloc": [
887
- "default.handlebars->31->2040"
887
+ "default.handlebars->31->2041"
888
]
889
},
890
{
@@ -904,9 +904,9 @@
904
"zh-chs": "1个字节",
905
"zh-cht": "1個位元組",
906
"xloc": [
907
- "default-mobile.handlebars->11->128",
908
- "default-mobile.handlebars->11->557",
909
- "default.handlebars->31->1640",
907
+ "default-mobile.handlebars->11->129",
908
+ "default-mobile.handlebars->11->558",
909
+ "default.handlebars->31->1641",
910
"download.handlebars->3->1",
911
"download2.handlebars->5->1"
912
]
@@ -928,7 +928,7 @@
928
"zh-chs": "1条连接",
929
"zh-cht": "1位聯絡文",
930
"xloc": [
931
- "default.handlebars->31->872",
931
+ "default.handlebars->31->873",
932
"desktop.handlebars->3->15"
933
]
934
},
@@ -949,9 +949,9 @@
949
"zh-chs": "1天",
950
"zh-cht": "1天",
951
"xloc": [
952
- "default.handlebars->31->191",
953
- "default.handlebars->31->347",
954
- "default.handlebars->31->361"
952
+ "default.handlebars->31->192",
953
+ "default.handlebars->31->348",
954
+ "default.handlebars->31->362"
955
]
956
},
957
{
@@ -971,7 +971,7 @@
971
"zh-chs": "1组",
972
"zh-cht": "1群",
973
"xloc": [
974
- "default.handlebars->31->2003"
974
+ "default.handlebars->31->2004"
975
]
976
},
977
{
@@ -991,9 +991,9 @@
991
"zh-chs": "1小时",
992
"zh-cht": "1小時",
993
"xloc": [
994
- "default.handlebars->31->189",
995
- "default.handlebars->31->345",
996
- "default.handlebars->31->359"
994
+ "default.handlebars->31->190",
995
+ "default.handlebars->31->346",
996
+ "default.handlebars->31->360"
997
]
998
},
999
{
@@ -1013,7 +1013,7 @@
1013
"zh-chs": "1分钟",
1014
"zh-cht": "1分鐘",
1015
"xloc": [
1016
- "default.handlebars->31->752"
1016
+ "default.handlebars->31->753"
1017
]
1018
},
1019
{
@@ -1033,7 +1033,7 @@
1033
"zh-chs": "1分钟之后断开连接",
1034
"zh-cht": "1分鐘之後離線",
1035
"xloc": [
1036
- "default.handlebars->31->71"
1036
+ "default.handlebars->31->72"
1037
]
1038
},
1039
{
@@ -1053,9 +1053,9 @@
1053
"zh-chs": "1个月",
1054
"zh-cht": "1個月",
1055
"xloc": [
1056
- "default.handlebars->31->193",
1057
- "default.handlebars->31->349",
1058
- "default.handlebars->31->363"
1056
+ "default.handlebars->31->194",
1057
+ "default.handlebars->31->350",
1058
+ "default.handlebars->31->364"
1059
]
1060
},
1061
{
@@ -1075,7 +1075,7 @@
1075
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
1076
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
1077
"xloc": [
1078
- "default.handlebars->31->1793"
1078
+ "default.handlebars->31->1794"
1079
]
1080
},
1081
{
@@ -1095,7 +1095,7 @@
1095
"zh-chs": "1个节点",
1096
"zh-cht": "1個節點",
1097
"xloc": [
1098
- "default.handlebars->31->418"
1098
+ "default.handlebars->31->419"
1099
]
1100
},
1101
{
@@ -1115,7 +1115,7 @@
1115
"zh-chs": "1秒之后断开连接",
1116
"zh-cht": "1秒之後離線",
1117
"xloc": [
1118
- "default.handlebars->31->69"
1118
+ "default.handlebars->31->70"
1119
]
1120
},
1121
{
@@ -1135,19 +1135,19 @@
1135
"zh-chs": "1节",
1136
"zh-cht": "1節",
1137
"xloc": [
1138
- "default-mobile.handlebars->11->173",
1139
- "default-mobile.handlebars->11->176",
1140
- "default-mobile.handlebars->11->179",
1141
- "default-mobile.handlebars->11->182",
1142
- "default-mobile.handlebars->11->185",
1143
- "default-mobile.handlebars->11->188",
1144
- "default.handlebars->31->1797",
1145
- "default.handlebars->31->267",
1146
- "default.handlebars->31->270",
1147
- "default.handlebars->31->273",
1148
- "default.handlebars->31->276",
1149
- "default.handlebars->31->279",
1150
- "default.handlebars->31->282"
1138
+ "default-mobile.handlebars->11->174",
1139
+ "default-mobile.handlebars->11->177",
1140
+ "default-mobile.handlebars->11->180",
1141
+ "default-mobile.handlebars->11->183",
1142
+ "default-mobile.handlebars->11->186",
1143
+ "default-mobile.handlebars->11->189",
1144
+ "default.handlebars->31->1798",
1145
+ "default.handlebars->31->268",
1146
+ "default.handlebars->31->271",
1147
+ "default.handlebars->31->274",
1148
+ "default.handlebars->31->277",
1149
+ "default.handlebars->31->280",
1150
+ "default.handlebars->31->283"
1151
]
1152
},
1153
{
@@ -1167,9 +1167,9 @@
1167
"zh-chs": "1周",
1168
"zh-cht": "1週",
1169
"xloc": [
1170
- "default.handlebars->31->192",
1171
- "default.handlebars->31->348",
1172
- "default.handlebars->31->362"
1170
+ "default.handlebars->31->193",
1171
+ "default.handlebars->31->349",
1172
+ "default.handlebars->31->363"
1173
]
1174
},
1175
{
@@ -1273,7 +1273,7 @@
1273
"zh-chs": "10分钟",
1274
"zh-cht": "10分鐘",
1275
"xloc": [
1276
- "default.handlebars->31->754"
1276
+ "default.handlebars->31->755"
1277
]
1278
},
1279
{
@@ -1356,7 +1356,7 @@
1356
"zh-chs": "12小时",
1357
"zh-cht": "12小時",
1358
"xloc": [
1359
- "default.handlebars->31->762"
1359
+ "default.handlebars->31->763"
1360
]
1361
},
1362
{
@@ -1398,7 +1398,7 @@
1398
"zh-chs": "15分钟",
1399
"zh-cht": "15分鐘",
1400
"xloc": [
1401
- "default.handlebars->31->755"
1401
+ "default.handlebars->31->756"
1402
]
1403
},
1404
{
@@ -1418,7 +1418,7 @@
1418
"zh-chs": "16小时",
1419
"zh-cht": "16小時",
1420
"xloc": [
1421
- "default.handlebars->31->763"
1421
+ "default.handlebars->31->764"
1422
]
1423
},
1424
{
@@ -1438,7 +1438,7 @@
1438
"zh-chs": "2天",
1439
"zh-cht": "2天",
1440
"xloc": [
1441
- "default.handlebars->31->765"
1441
+ "default.handlebars->31->766"
1442
]
1443
},
1444
{
@@ -1458,7 +1458,7 @@
1458
"zh-chs": "2小时",
1459
"zh-cht": "2小時",
1460
"xloc": [
1461
- "default.handlebars->31->759"
1461
+ "default.handlebars->31->760"
1462
]
1463
},
1464
{
@@ -1478,7 +1478,7 @@
1478
"zh-chs": "两步登录激活失败。",
1479
"zh-cht": "兩步登入啟用失敗。",
1480
"xloc": [
1481
- "default.handlebars->31->138"
1481
+ "default.handlebars->31->139"
1482
]
1483
},
1484
{
@@ -1498,7 +1498,7 @@
1498
"zh-chs": "两步登录激活删除失败。",
1499
"zh-cht": "兩步登入啟用刪除失敗。",
1500
"xloc": [
1501
- "default.handlebars->31->143"
1501
+ "default.handlebars->31->144"
1502
]
1503
},
1504
{
@@ -1562,7 +1562,7 @@
1562
"zh-chs": "24小时",
1563
"zh-cht": "24小時",
1564
"xloc": [
1565
- "default.handlebars->31->764"
1565
+ "default.handlebars->31->765"
1566
]
1567
},
1568
{
@@ -1624,7 +1624,7 @@
1624
"zh-chs": "2FA备份代码已清除",
1625
"zh-cht": "2FA備份代碼已清除",
1626
"xloc": [
1627
- "default.handlebars->31->1751"
1627
+ "default.handlebars->31->1752"
1628
]
1629
},
1630
{
@@ -1644,8 +1644,8 @@
1644
"zh-chs": "启用第二因素身份验证",
1645
"zh-cht": "啟用第二因素身份驗證",
1646
"xloc": [
1647
- "default.handlebars->31->1810",
1648
- "default.handlebars->31->2025"
1647
+ "default.handlebars->31->1811",
1648
+ "default.handlebars->31->2026"
1649
]
1650
},
1651
{
@@ -1681,7 +1681,7 @@
1681
"pt": "3",
1682
"ru": "3",
1683
"xloc": [
1684
- "default-mobile.handlebars->11->374"
1684
+ "default-mobile.handlebars->11->375"
1685
]
1686
},
1687
{
@@ -1764,7 +1764,7 @@
1764
"zh-chs": "30分钟",
1765
"zh-cht": "30分鐘",
1766
"xloc": [
1767
- "default.handlebars->31->756"
1767
+ "default.handlebars->31->757"
1768
]
1769
},
1770
{
@@ -1784,8 +1784,8 @@
1784
"zh-chs": "MeshAgent的32位版本",
1785
"zh-cht": "MeshAgent的32位版本",
1786
"xloc": [
1787
- "default.handlebars->31->386",
1788
- "default.handlebars->31->405"
1787
+ "default.handlebars->31->387",
1788
+ "default.handlebars->31->406"
1789
]
1790
},
1791
{
@@ -1827,7 +1827,7 @@
1827
"zh-chs": "4天",
1828
"zh-cht": "4天",
1829
"xloc": [
1830
- "default.handlebars->31->766"
1830
+ "default.handlebars->31->767"
1831
]
1832
},
1833
{
@@ -1847,7 +1847,7 @@
1847
"zh-chs": "4个小时",
1848
"zh-cht": "4個小時",
1849
"xloc": [
1850
- "default.handlebars->31->760"
1850
+ "default.handlebars->31->761"
1851
]
1852
},
1853
{
@@ -1930,7 +1930,7 @@
1930
"zh-chs": "45分钟",
1931
"zh-cht": "45分鐘",
1932
"xloc": [
1933
- "default.handlebars->31->757"
1933
+ "default.handlebars->31->758"
1934
]
1935
},
1936
{
@@ -1970,7 +1970,7 @@
1970
"zh-chs": "5分钟",
1971
"zh-cht": "5分鐘",
1972
"xloc": [
1973
- "default.handlebars->31->753"
1973
+ "default.handlebars->31->754"
1974
]
1975
},
1976
{
@@ -2096,7 +2096,7 @@
2096
"zh-chs": "60分钟",
2097
"zh-cht": "60分鐘",
2098
"xloc": [
2099
- "default.handlebars->31->758"
2099
+ "default.handlebars->31->759"
2100
]
2101
},
2102
{
@@ -2138,7 +2138,7 @@
2138
"zh-chs": "64位版本的macOS Mesh Agent",
2139
"zh-cht": "64位版本的macOS Mesh Agent",
2140
"xloc": [
2141
- "default.handlebars->31->399"
2141
+ "default.handlebars->31->400"
2142
]
2143
},
2144
{
@@ -2158,8 +2158,8 @@
2158
"zh-chs": "MeshAgent的64位版本",
2159
"zh-cht": "MeshAgent的64位版本",
2160
"xloc": [
2161
- "default.handlebars->31->390",
2162
- "default.handlebars->31->408"
2161
+ "default.handlebars->31->391",
2162
+ "default.handlebars->31->409"
2163
]
2164
},
2165
{
@@ -2216,7 +2216,7 @@
2216
"zh-chs": "7天电源状态",
2217
"zh-cht": "7天電源狀態",
2218
"xloc": [
2219
- "default.handlebars->31->797"
2219
+ "default.handlebars->31->798"
2220
]
2221
},
2222
{
@@ -2279,9 +2279,9 @@
2279
"zh-chs": "8小時",
2280
"zh-cht": "8小時",
2281
"xloc": [
2282
- "default.handlebars->31->346",
2283
- "default.handlebars->31->360",
2284
- "default.handlebars->31->761"
2282
+ "default.handlebars->31->347",
2283
+ "default.handlebars->31->361",
2284
+ "default.handlebars->31->762"
2285
]
2286
},
2287
{
@@ -2346,7 +2346,7 @@
2346
"en": "</div></div>",
2347
"nl": "</div></div>",
2348
"xloc": [
2349
- "default.handlebars->31->402"
2349
+ "default.handlebars->31->403"
2350
]
2351
},
2352
{
@@ -2386,7 +2386,7 @@
2386
"zh-chs": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密钥</a>用作辅助登录身份验证。",
2387
"zh-cht": "<a href=\\\"https://www.yubico.com/\\\" rel=\\\"noreferrer noopener\\\" target=\\\"_blank\\\">硬件密鑰</a>用作輔助登入身份驗證。",
2388
"xloc": [
2389
- "default.handlebars->31->152"
2389
+ "default.handlebars->31->153"
2390
]
2391
},
2392
{
@@ -2406,7 +2406,7 @@
2406
"zh-chs": "<b style=color:green>删除了两步登录激活</ b>。您可以随时重新激活此功能。",
2407
"zh-cht": "<b style = color:green>刪除了兩步登入啟用</ b>。你可以隨時重新啟用此功能。",
2408
"xloc": [
2409
- "default-mobile.handlebars->11->63"
2409
+ "default-mobile.handlebars->11->64"
2410
]
2411
},
2412
{
@@ -2426,7 +2426,7 @@
2426
"zh-chs": "<b style=color:green>两步登录激活成功</ b>。您现在需要一个有效的保安编码才能再次登录。",
2427
"zh-cht": "<b style = color:green>兩步登入啟用成功</ b>。你現在需要一個有效的保安編碼才能再次登入。",
2428
"xloc": [
2429
- "default-mobile.handlebars->11->60"
2429
+ "default-mobile.handlebars->11->61"
2430
]
2431
},
2432
{
@@ -2446,7 +2446,7 @@
2446
"zh-chs": "<b style=color:red>两步登录激活失败</ b>。从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
2447
"zh-cht": "<b style = color:red>兩步登入啟動失敗</ b>。從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
2448
"xloc": [
2449
- "default-mobile.handlebars->11->61"
2449
+ "default-mobile.handlebars->11->62"
2450
]
2451
},
2452
{
@@ -2466,7 +2466,7 @@
2466
"zh-chs": "<b style=color:red>两步登录激活删除失败</ b>。再试一次。",
2467
"zh-cht": "<b style = color:red>兩步登入啟動刪除失敗</ b>。再試一次。",
2468
"xloc": [
2469
- "default-mobile.handlebars->11->64"
2469
+ "default-mobile.handlebars->11->65"
2470
]
2471
},
2472
{
@@ -2506,9 +2506,9 @@
2506
"zh-chs": "ACM",
2507
"zh-cht": "ACM",
2508
"xloc": [
2509
- "default-mobile.handlebars->11->246",
2510
- "default.handlebars->31->1444",
2511
- "default.handlebars->31->587"
2509
+ "default-mobile.handlebars->11->247",
2510
+ "default.handlebars->31->1445",
2511
+ "default.handlebars->31->588"
2512
]
2513
},
2514
{
@@ -2562,8 +2562,8 @@
2562
"zh-chs": "AMT",
2563
"zh-cht": "AMT",
2564
"xloc": [
2565
- "default.handlebars->31->257",
2566
- "default.handlebars->31->446"
2565
+ "default.handlebars->31->258",
2566
+ "default.handlebars->31->447"
2567
]
2568
},
2569
{
@@ -2587,6 +2587,13 @@
2587
"default.handlebars->31->37"
2588
]
2589
},
2590
+ {
2591
+ "en": "ARMADA/CORTEX-A53/MUSL (OpenWRT)",
2592
+ "xloc": [
2593
+ "default-mobile.handlebars->11->47",
2594
+ "default.handlebars->31->54"
2595
+ ]
2596
+ },
2597
{
2598
"cs": "ARMv6l / ARMv7l",
2599
"de": "ARMv6l / ARMv7l",
@@ -2667,7 +2674,7 @@
2674
"zh-chs": "拒绝访问",
2675
"zh-cht": "拒絕存取",
2676
"xloc": [
2670
- "default.handlebars->31->1084"
2677
+ "default.handlebars->31->1085"
2678
]
2679
},
2680
{
@@ -2709,7 +2716,7 @@
2716
"zh-chs": "访问服务器档案",
2717
"zh-cht": "存取伺服器檔案",
2718
"xloc": [
2712
- "default.handlebars->31->1975"
2719
+ "default.handlebars->31->1976"
2720
]
2721
},
2722
{
@@ -2793,16 +2800,16 @@
2800
"zh-chs": "账户安全",
2801
"zh-cht": "帳號安全",
2802
"xloc": [
2796
- "default-mobile.handlebars->11->103",
2797
- "default-mobile.handlebars->11->105",
2798
- "default-mobile.handlebars->11->221",
2799
- "default-mobile.handlebars->11->223",
2803
+ "default-mobile.handlebars->11->104",
2804
+ "default-mobile.handlebars->11->106",
2805
+ "default-mobile.handlebars->11->222",
2806
+ "default-mobile.handlebars->11->224",
2807
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
2801
- "default.handlebars->31->1350",
2802
- "default.handlebars->31->1352",
2803
- "default.handlebars->31->2242",
2804
- "default.handlebars->31->556",
2805
- "default.handlebars->31->558"
2808
+ "default.handlebars->31->1351",
2809
+ "default.handlebars->31->1353",
2810
+ "default.handlebars->31->2243",
2811
+ "default.handlebars->31->557",
2812
+ "default.handlebars->31->559"
2813
]
2814
},
2815
{
@@ -2810,8 +2817,8 @@
2817
"nl": "Account instellingen",
2818
"fr": "Paramètres du compte",
2819
"xloc": [
2813
- "default-mobile.handlebars->11->525",
2814
- "default.handlebars->31->2136"
2820
+ "default-mobile.handlebars->11->526",
2821
+ "default.handlebars->31->2137"
2822
]
2823
},
2824
{
@@ -2872,7 +2879,7 @@
2879
"zh-chs": "帐户已更改:{0}",
2880
"zh-cht": "帳戶已更改:{0}",
2881
"xloc": [
2875
- "default.handlebars->31->1724"
2882
+ "default.handlebars->31->1725"
2883
]
2884
},
2885
{
@@ -2892,7 +2899,7 @@
2899
"zh-chs": "创建帐户,电子邮件为{0}",
2900
"zh-cht": "創建帳戶,電子郵件為{0}",
2901
"xloc": [
2895
- "default.handlebars->31->1723"
2902
+ "default.handlebars->31->1724"
2903
]
2904
},
2905
{
@@ -2912,7 +2919,7 @@
2919
"zh-chs": "创建帐户,用户名是{0}",
2920
"zh-cht": "帳戶已創建,用戶名是{0}",
2921
"xloc": [
2915
- "default.handlebars->31->1722"
2922
+ "default.handlebars->31->1723"
2923
]
2924
},
2925
{
@@ -2932,8 +2939,8 @@
2939
"zh-chs": "帐户已被锁定",
2940
"zh-cht": "帳戶已被鎖定",
2941
"xloc": [
2935
- "default.handlebars->31->1812",
2936
- "default.handlebars->31->1972"
2942
+ "default.handlebars->31->1813",
2943
+ "default.handlebars->31->1973"
2944
]
2945
},
2946
{
@@ -2953,8 +2960,8 @@
2960
"zh-chs": "达到帐户限制。",
2961
"zh-cht": "達到帳戶限制。",
2962
"xloc": [
2956
- "default-mobile.handlebars->11->537",
2957
- "default.handlebars->31->2148",
2963
+ "default-mobile.handlebars->11->538",
2964
+ "default.handlebars->31->2149",
2965
"login-mobile.handlebars->5->6",
2966
"login.handlebars->5->6",
2967
"login2.handlebars->7->7"
@@ -2999,7 +3006,7 @@
3006
"zh-chs": "帐号登录",
3007
"zh-cht": "帳號登錄",
3008
"xloc": [
3002
- "default.handlebars->31->1659"
3009
+ "default.handlebars->31->1660"
3010
]
3011
},
3012
{
@@ -3019,7 +3026,7 @@
3026
"zh-chs": "帐户登出",
3027
"zh-cht": "帳戶登出",
3028
"xloc": [
3022
- "default.handlebars->31->1660"
3029
+ "default.handlebars->31->1661"
3030
]
3031
},
3032
{
@@ -3061,7 +3068,7 @@
3068
"zh-chs": "帐户密码已更改:{0}",
3069
"zh-cht": "帳戶密碼已更改:{0}",
3070
"xloc": [
3064
- "default.handlebars->31->1732"
3071
+ "default.handlebars->31->1733"
3072
]
3073
},
3074
{
@@ -3081,7 +3088,7 @@
3088
"zh-chs": "帐户已删除",
3089
"zh-cht": "帳戶已刪除",
3090
"xloc": [
3084
- "default.handlebars->31->1721"
3091
+ "default.handlebars->31->1722"
3092
]
3093
},
3094
{
@@ -3121,7 +3128,7 @@
3128
"zh-chs": "指令",
3129
"zh-cht": "指令",
3130
"xloc": [
3124
- "default.handlebars->31->1089",
3131
+ "default.handlebars->31->1090",
3132
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
3133
]
3134
},
@@ -3142,8 +3149,8 @@
3149
"zh-chs": "动作档案",
3150
"zh-cht": "動作檔案",
3151
"xloc": [
3145
- "default.handlebars->31->843",
3146
- "default.handlebars->31->845"
3152
+ "default.handlebars->31->844",
3153
+ "default.handlebars->31->846"
3154
]
3155
},
3156
{
@@ -3163,10 +3170,10 @@
3170
"zh-chs": "动作",
3171
"zh-cht": "動作",
3172
"xloc": [
3166
- "default-mobile.handlebars->11->269",
3173
+ "default-mobile.handlebars->11->270",
3174
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
3175
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
3169
- "default.handlebars->31->636",
3176
+ "default.handlebars->31->637",
3177
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
3178
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
3179
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3189,7 +3196,7 @@
3196
"zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
3197
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
3198
"xloc": [
3192
- "default.handlebars->31->317"
3199
+ "default.handlebars->31->318"
3200
]
3201
},
3202
{
@@ -3249,7 +3256,7 @@
3256
"zh-chs": "如果ACM失败,则激活到CCM",
3257
"zh-cht": "如果ACM失敗,則激活到CCM",
3258
"xloc": [
3252
- "default.handlebars->31->1465"
3259
+ "default.handlebars->31->1466"
3260
]
3261
},
3262
{
@@ -3269,12 +3276,12 @@
3276
"zh-chs": "已激活",
3277
"zh-cht": "已啟動",
3278
"xloc": [
3272
- "default-mobile.handlebars->11->241",
3273
- "default-mobile.handlebars->11->243",
3274
- "default-mobile.handlebars->11->417",
3275
- "default.handlebars->31->1045",
3276
- "default.handlebars->31->580",
3277
- "default.handlebars->31->582"
3279
+ "default-mobile.handlebars->11->242",
3280
+ "default-mobile.handlebars->11->244",
3281
+ "default-mobile.handlebars->11->418",
3282
+ "default.handlebars->31->1046",
3283
+ "default.handlebars->31->581",
3284
+ "default.handlebars->31->583"
3285
]
3286
},
3287
{
@@ -3294,7 +3301,7 @@
3301
"zh-chs": "激活",
3302
"zh-cht": "啟動",
3303
"xloc": [
3297
- "default.handlebars->31->217"
3304
+ "default.handlebars->31->218"
3305
]
3306
},
3307
{
@@ -3314,7 +3321,7 @@
3321
"zh-chs": "主动设备共享",
3322
"zh-cht": "主動設備共享",
3323
"xloc": [
3317
- "default.handlebars->31->689"
3324
+ "default.handlebars->31->690"
3325
]
3326
},
3327
{
@@ -3339,8 +3346,8 @@
3346
"fr": "Ajouter",
3347
"nl": "Toevoegen",
3348
"xloc": [
3342
- "default-mobile.handlebars->11->339",
3343
- "default.handlebars->31->906"
3349
+ "default-mobile.handlebars->11->340",
3350
+ "default.handlebars->31->907"
3351
]
3352
},
3353
{
@@ -3360,8 +3367,8 @@
3367
"zh-chs": "添加代理",
3368
"zh-cht": "新增代理",
3369
"xloc": [
3363
- "default.handlebars->31->1440",
3364
- "default.handlebars->31->300"
3370
+ "default.handlebars->31->1441",
3371
+ "default.handlebars->31->301"
3372
]
3373
},
3374
{
@@ -3398,8 +3405,8 @@
3405
"zh-chs": "添加设备",
3406
"zh-cht": "新增裝置",
3407
"xloc": [
3401
- "default.handlebars->31->1949",
3402
- "default.handlebars->31->2075"
3408
+ "default.handlebars->31->1950",
3409
+ "default.handlebars->31->2076"
3410
]
3411
},
3412
{
@@ -3419,7 +3426,7 @@
3426
"zh-chs": "添加设备日志",
3427
"zh-cht": "新增裝置日誌",
3428
"xloc": [
3422
- "default.handlebars->31->738"
3429
+ "default.handlebars->31->739"
3430
]
3431
},
3432
{
@@ -3439,10 +3446,10 @@
3446
"zh-chs": "添加设备组",
3447
"zh-cht": "新增裝置群",
3448
"xloc": [
3442
- "default.handlebars->31->1539",
3443
- "default.handlebars->31->1943",
3444
- "default.handlebars->31->2063",
3445
- "default.handlebars->31->237"
3449
+ "default.handlebars->31->1540",
3450
+ "default.handlebars->31->1944",
3451
+ "default.handlebars->31->2064",
3452
+ "default.handlebars->31->238"
3453
]
3454
},
3455
{
@@ -3462,7 +3469,7 @@
3469
"zh-chs": "添加设备组权限",
3470
"zh-cht": "新增裝置群權限",
3471
"xloc": [
3465
- "default.handlebars->31->1536"
3472
+ "default.handlebars->31->1537"
3473
]
3474
},
3475
{
@@ -3482,8 +3489,8 @@
3489
"zh-chs": "添加设备权限",
3490
"zh-cht": "新增裝置權限",
3491
"xloc": [
3485
- "default.handlebars->31->1541",
3486
- "default.handlebars->31->1543"
3492
+ "default.handlebars->31->1542",
3493
+ "default.handlebars->31->1544"
3494
]
3495
},
3496
{
@@ -3520,7 +3527,7 @@
3527
"zh-chs": "添加英特尔®AMT设备",
3528
"zh-cht": "新增Intel® AMT裝置",
3529
"xloc": [
3523
- "default.handlebars->31->313"
3530
+ "default.handlebars->31->314"
3531
]
3532
},
3533
{
@@ -3540,7 +3547,7 @@
3547
"zh-chs": "新增密钥",
3548
"zh-cht": "新增密鑰",
3549
"xloc": [
3543
- "default.handlebars->31->156"
3550
+ "default.handlebars->31->157"
3551
]
3552
},
3553
{
@@ -3560,7 +3567,7 @@
3567
"zh-chs": "添加本地",
3568
"zh-cht": "新增本地",
3569
"xloc": [
3563
- "default.handlebars->31->294"
3570
+ "default.handlebars->31->295"
3571
]
3572
},
3573
{
@@ -3580,7 +3587,7 @@
3587
"zh-chs": "添加成员身份",
3588
"zh-cht": "新增成員身份",
3589
"xloc": [
3583
- "default.handlebars->31->2095"
3590
+ "default.handlebars->31->2096"
3591
]
3592
},
3593
{
@@ -3600,7 +3607,7 @@
3607
"zh-chs": "添加 Mesh Agent",
3608
"zh-cht": "新增 Mesh Agent",
3609
"xloc": [
3603
- "default.handlebars->31->417"
3610
+ "default.handlebars->31->418"
3611
]
3612
},
3613
{
@@ -3620,12 +3627,12 @@
3627
"zh-chs": "添加安全密钥",
3628
"zh-cht": "新增安全密鑰",
3629
"xloc": [
3623
- "default.handlebars->31->1117",
3630
"default.handlebars->31->1118",
3625
- "default.handlebars->31->159",
3626
- "default.handlebars->31->161",
3627
- "default.handlebars->31->164",
3628
- "default.handlebars->31->165"
3631
+ "default.handlebars->31->1119",
3632
+ "default.handlebars->31->160",
3633
+ "default.handlebars->31->162",
3634
+ "default.handlebars->31->165",
3635
+ "default.handlebars->31->166"
3636
]
3637
},
3638
{
@@ -3645,8 +3652,8 @@
3652
"zh-chs": "添加用户",
3653
"zh-cht": "新增用戶",
3654
"xloc": [
3648
- "default-mobile.handlebars->11->459",
3649
- "default.handlebars->31->681"
3655
+ "default-mobile.handlebars->11->460",
3656
+ "default.handlebars->31->682"
3657
]
3658
},
3659
{
@@ -3666,7 +3673,7 @@
3673
"zh-chs": "添加用户设备权限",
3674
"zh-cht": "新增用戶裝置權限",
3675
"xloc": [
3669
- "default.handlebars->31->1546"
3676
+ "default.handlebars->31->1547"
3677
]
3678
},
3679
{
@@ -3686,10 +3693,10 @@
3693
"zh-chs": "添加用户组",
3694
"zh-cht": "新增用戶群",
3695
"xloc": [
3689
- "default.handlebars->31->1436",
3690
- "default.handlebars->31->1538",
3691
- "default.handlebars->31->2069",
3692
- "default.handlebars->31->682"
3696
+ "default.handlebars->31->1437",
3697
+ "default.handlebars->31->1539",
3698
+ "default.handlebars->31->2070",
3699
+ "default.handlebars->31->683"
3700
]
3701
},
3702
{
@@ -3709,7 +3716,7 @@
3716
"zh-chs": "添加用户组设备权限",
3717
"zh-cht": "新增用戶群裝置權限",
3718
"xloc": [
3712
- "default.handlebars->31->1548"
3719
+ "default.handlebars->31->1549"
3720
]
3721
},
3722
{
@@ -3729,7 +3736,7 @@
3736
"zh-chs": "将用户添加到设备组",
3737
"zh-cht": "將用戶新增到裝置群",
3738
"xloc": [
3732
- "default-mobile.handlebars->11->490"
3739
+ "default-mobile.handlebars->11->491"
3740
]
3741
},
3742
{
@@ -3766,8 +3773,8 @@
3773
"zh-chs": "添加用户",
3774
"zh-cht": "新增用戶",
3775
"xloc": [
3769
- "default.handlebars->31->1435",
3770
- "default.handlebars->31->1938"
3776
+ "default.handlebars->31->1436",
3777
+ "default.handlebars->31->1939"
3778
]
3779
},
3780
{
@@ -3787,7 +3794,7 @@
3794
"zh-chs": "将用户添加到设备组",
3795
"zh-cht": "將用戶新增到裝置群",
3796
"xloc": [
3790
- "default.handlebars->31->1535"
3797
+ "default.handlebars->31->1536"
3798
]
3799
},
3800
{
@@ -3807,7 +3814,7 @@
3814
"zh-chs": "将用户添加到用户组",
3815
"zh-cht": "將用戶新增到用戶群",
3816
"xloc": [
3810
- "default.handlebars->31->1971"
3817
+ "default.handlebars->31->1972"
3818
]
3819
},
3820
{
@@ -3827,7 +3834,7 @@
3834
"zh-chs": "添加YubiKey®OTP",
3835
"zh-cht": "新增YubiKey®OTP",
3836
"xloc": [
3830
- "default.handlebars->31->157"
3837
+ "default.handlebars->31->158"
3838
]
3839
},
3840
{
@@ -3847,7 +3854,7 @@
3854
"zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。",
3855
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
3856
"xloc": [
3850
- "default.handlebars->31->295"
3857
+ "default.handlebars->31->296"
3858
]
3859
},
3860
{
@@ -3884,7 +3891,7 @@
3891
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
3892
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
3893
"xloc": [
3887
- "default.handlebars->31->293"
3894
+ "default.handlebars->31->294"
3895
]
3896
},
3897
{
@@ -3904,7 +3911,7 @@
3911
"zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。",
3912
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
3913
"xloc": [
3907
- "default.handlebars->31->303"
3914
+ "default.handlebars->31->304"
3915
]
3916
},
3917
{
@@ -3924,8 +3931,8 @@
3931
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
3932
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
3933
"xloc": [
3927
- "default.handlebars->31->1439",
3928
- "default.handlebars->31->299"
3934
+ "default.handlebars->31->1440",
3935
+ "default.handlebars->31->300"
3936
]
3937
},
3938
{
@@ -3945,7 +3952,7 @@
3952
"zh-chs": "添加标签",
3953
"zh-cht": "新增標籤",
3954
"xloc": [
3948
- "default.handlebars->31->483"
3955
+ "default.handlebars->31->484"
3956
]
3957
},
3958
{
@@ -3965,7 +3972,7 @@
3972
"zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。",
3973
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
3974
"xloc": [
3968
- "default.handlebars->31->314"
3975
+ "default.handlebars->31->315"
3976
]
3977
},
3978
{
@@ -3985,7 +3992,7 @@
3992
"zh-chs": "添加了身份验证应用程序",
3993
"zh-cht": "添加了身份驗證應用程序",
3994
"xloc": [
3988
- "default.handlebars->31->1748"
3995
+ "default.handlebars->31->1749"
3996
]
3997
},
3998
{
@@ -4005,7 +4012,7 @@
4012
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
4013
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
4014
"xloc": [
4008
- "default.handlebars->31->1759"
4015
+ "default.handlebars->31->1760"
4016
]
4017
},
4018
{
@@ -4025,8 +4032,8 @@
4032
"zh-chs": "已将设备{0}添加到设备组{1}",
4033
"zh-cht": "已將設備{0}添加到設備組{1}",
4034
"xloc": [
4028
- "default.handlebars->31->1715",
4029
- "default.handlebars->31->1742"
4035
+ "default.handlebars->31->1716",
4036
+ "default.handlebars->31->1743"
4037
]
4038
},
4039
{
@@ -4046,7 +4053,7 @@
4053
"zh-chs": "添加了安全密钥",
4054
"zh-cht": "添加了安全密鑰",
4055
"xloc": [
4049
- "default.handlebars->31->1753"
4056
+ "default.handlebars->31->1754"
4057
]
4058
},
4059
{
@@ -4066,7 +4073,7 @@
4073
"zh-chs": "已将用户组{0}添加到设备组{1}",
4074
"zh-cht": "已將用戶組{0}添加到設備組{1}",
4075
"xloc": [
4069
- "default.handlebars->31->1726"
4076
+ "default.handlebars->31->1727"
4077
]
4078
},
4079
{
@@ -4086,8 +4093,8 @@
4093
"zh-chs": "已将用户{0}添加到用户组{1}",
4094
"zh-cht": "已將用戶{0}添加到用戶組{1}",
4095
"xloc": [
4089
- "default.handlebars->31->1729",
4090
- "default.handlebars->31->1738"
4096
+ "default.handlebars->31->1730",
4097
+ "default.handlebars->31->1739"
4098
]
4099
},
4100
{
@@ -4107,7 +4114,7 @@
4114
"zh-chs": "地址",
4115
"zh-cht": "地址",
4116
"xloc": [
4110
- "default.handlebars->31->233"
4117
+ "default.handlebars->31->234"
4118
]
4119
},
4120
{
@@ -4147,8 +4154,8 @@
4154
"zh-chs": "管理员控制模式(ACM)",
4155
"zh-cht": "管理員控制模式(ACM)",
4156
"xloc": [
4150
- "default-mobile.handlebars->11->419",
4151
- "default.handlebars->31->1047"
4157
+ "default-mobile.handlebars->11->420",
4158
+ "default.handlebars->31->1048"
4159
]
4160
},
4161
{
@@ -4168,8 +4175,8 @@
4175
"zh-chs": "管理员凭证",
4176
"zh-cht": "管理員憑證",
4177
"xloc": [
4171
- "default-mobile.handlebars->11->425",
4172
- "default.handlebars->31->1053"
4178
+ "default-mobile.handlebars->11->426",
4179
+ "default.handlebars->31->1054"
4180
]
4181
},
4182
{
@@ -4210,7 +4217,7 @@
4217
"zh-chs": "管理领域",
4218
"zh-cht": "管理領域",
4219
"xloc": [
4213
- "default.handlebars->31->2007"
4220
+ "default.handlebars->31->2008"
4221
]
4222
},
4223
{
@@ -4251,7 +4258,7 @@
4258
"zh-chs": "管理领域",
4259
"zh-cht": "管理領域",
4260
"xloc": [
4254
- "default.handlebars->31->1875"
4261
+ "default.handlebars->31->1876"
4262
]
4263
},
4264
{
@@ -4271,7 +4278,7 @@
4278
"zh-chs": "管理员",
4279
"zh-cht": "管理員",
4280
"xloc": [
4274
- "default.handlebars->31->1804"
4281
+ "default.handlebars->31->1805"
4282
]
4283
},
4284
{
@@ -4291,7 +4298,7 @@
4298
"zh-chs": "南非文",
4299
"zh-cht": "南非文",
4300
"xloc": [
4294
- "default.handlebars->31->1120"
4301
+ "default.handlebars->31->1121"
4302
]
4303
},
4304
{
@@ -4312,13 +4319,13 @@
4319
"zh-cht": "代理",
4320
"xloc": [
4321
"agent-translations.json",
4315
- "default-mobile.handlebars->11->213",
4316
- "default-mobile.handlebars->11->238",
4317
- "default-mobile.handlebars->11->260",
4318
- "default.handlebars->31->1602",
4319
- "default.handlebars->31->1610",
4320
- "default.handlebars->31->253",
4321
- "default.handlebars->31->442",
4322
+ "default-mobile.handlebars->11->214",
4323
+ "default-mobile.handlebars->11->239",
4324
+ "default-mobile.handlebars->11->261",
4325
+ "default.handlebars->31->1603",
4326
+ "default.handlebars->31->1611",
4327
+ "default.handlebars->31->254",
4328
+ "default.handlebars->31->443",
4329
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
4330
]
4331
},
@@ -4339,8 +4346,8 @@
4346
"zh-chs": "代理+英特尔AMT",
4347
"zh-cht": "代理+Intel® AMT",
4348
"xloc": [
4342
- "default.handlebars->31->1604",
4343
- "default.handlebars->31->1612"
4349
+ "default.handlebars->31->1605",
4350
+ "default.handlebars->31->1613"
4351
]
4352
},
4353
{
@@ -4380,8 +4387,8 @@
4387
"zh-chs": "代理控制台",
4388
"zh-cht": "代理控制台",
4389
"xloc": [
4383
- "default-mobile.handlebars->11->496",
4384
- "default.handlebars->31->1556"
4390
+ "default-mobile.handlebars->11->497",
4391
+ "default.handlebars->31->1557"
4392
]
4393
},
4394
{
@@ -4401,7 +4408,7 @@
4408
"zh-chs": "代理错误计数器",
4409
"zh-cht": "代理錯誤計數器",
4410
"xloc": [
4404
- "default.handlebars->31->2173"
4411
+ "default.handlebars->31->2174"
4412
]
4413
},
4414
{
@@ -4441,8 +4448,8 @@
4448
"zh-chs": "代理消息",
4449
"zh-cht": "代理訊息",
4450
"xloc": [
4444
- "default-mobile.handlebars->11->191",
4445
- "default.handlebars->31->285"
4451
+ "default-mobile.handlebars->11->192",
4452
+ "default.handlebars->31->286"
4453
]
4454
},
4455
{
@@ -4462,7 +4469,7 @@
4469
"zh-chs": "代理中继",
4470
"zh-cht": "代理中繼",
4471
"xloc": [
4465
- "default-mobile.handlebars->11->263"
4472
+ "default-mobile.handlebars->11->264"
4473
]
4474
},
4475
{
@@ -4504,7 +4511,7 @@
4511
"zh-chs": "代理时段",
4512
"zh-cht": "代理時段",
4513
"xloc": [
4507
- "default.handlebars->31->2189"
4514
+ "default.handlebars->31->2190"
4515
]
4516
},
4517
{
@@ -4524,8 +4531,8 @@
4531
"zh-chs": "代理标签",
4532
"zh-cht": "代理標籤",
4533
"xloc": [
4527
- "default-mobile.handlebars->11->259",
4528
- "default.handlebars->31->603"
4534
+ "default-mobile.handlebars->11->260",
4535
+ "default.handlebars->31->604"
4536
]
4537
},
4538
{
@@ -4545,7 +4552,7 @@
4552
"zh-chs": "代理类型",
4553
"zh-cht": "代理類型",
4554
"xloc": [
4548
- "default.handlebars->31->1608",
4555
+ "default.handlebars->31->1609",
4556
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
4557
]
4558
},
@@ -4566,7 +4573,7 @@
4573
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
4574
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
4575
"xloc": [
4569
- "default.handlebars->31->1712"
4576
+ "default.handlebars->31->1713"
4577
]
4578
},
4579
{
@@ -4586,9 +4593,9 @@
4593
"zh-chs": "代理已连接",
4594
"zh-cht": "代理已連接",
4595
"xloc": [
4589
- "default.handlebars->31->173",
4590
- "default.handlebars->31->672",
4591
- "default.handlebars->31->673"
4596
+ "default.handlebars->31->174",
4597
+ "default.handlebars->31->673",
4598
+ "default.handlebars->31->674"
4599
]
4600
},
4601
{
@@ -4608,7 +4615,7 @@
4615
"zh-chs": "代理已断开连接",
4616
"zh-cht": "代理已斷開連接",
4617
"xloc": [
4611
- "default.handlebars->31->177"
4618
+ "default.handlebars->31->178"
4619
]
4620
},
4621
{
@@ -4628,7 +4635,7 @@
4635
"zh-chs": "代理离线",
4636
"zh-cht": "代理離線",
4637
"xloc": [
4631
- "default.handlebars->31->1082"
4638
+ "default.handlebars->31->1083"
4639
]
4640
},
4641
{
@@ -4648,7 +4655,7 @@
4655
"zh-chs": "代理在线",
4656
"zh-cht": "代理在線",
4657
"xloc": [
4651
- "default.handlebars->31->1081"
4658
+ "default.handlebars->31->1082"
4659
]
4660
},
4661
{
@@ -4668,8 +4675,8 @@
4675
"zh-chs": "代理在特权降低的远程设备上运行。",
4676
"zh-cht": "代理在特權降低的遠程設備上運行。",
4677
"xloc": [
4671
- "default.handlebars->31->171",
4672
- "default.handlebars->31->670"
4678
+ "default.handlebars->31->172",
4679
+ "default.handlebars->31->671"
4680
]
4681
},
4682
{
@@ -4689,7 +4696,7 @@
4696
"zh-chs": "代理",
4697
"zh-cht": "代理",
4698
"xloc": [
4692
- "default.handlebars->31->2205"
4699
+ "default.handlebars->31->2206"
4700
]
4701
},
4702
{
@@ -4709,7 +4716,7 @@
4716
"zh-chs": "阿尔巴尼亚文",
4717
"zh-cht": "阿爾巴尼亞文",
4718
"xloc": [
4712
- "default.handlebars->31->1121"
4719
+ "default.handlebars->31->1122"
4720
]
4721
},
4722
{
@@ -4729,9 +4736,9 @@
4736
"zh-chs": "所有",
4737
"zh-cht": "所有",
4738
"xloc": [
4732
- "default-mobile.handlebars->11->127",
4733
- "default-mobile.handlebars->11->349",
4734
- "default-mobile.handlebars->11->351",
4739
+ "default-mobile.handlebars->11->128",
4740
+ "default-mobile.handlebars->11->350",
4741
+ "default-mobile.handlebars->11->352",
4742
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
4743
]
4744
},
@@ -4752,7 +4759,7 @@
4759
"zh-chs": "全部可用",
4760
"zh-cht": "全部可用",
4761
"xloc": [
4755
- "default.handlebars->31->1767"
4762
+ "default.handlebars->31->1768"
4763
]
4764
},
4765
{
@@ -4789,7 +4796,7 @@
4796
"zh-chs": "所有事件",
4797
"zh-cht": "所有事件",
4798
"xloc": [
4792
- "default.handlebars->31->1765"
4799
+ "default.handlebars->31->1766"
4800
]
4801
},
4802
{
@@ -4809,9 +4816,9 @@
4816
"zh-chs": "全部聚焦",
4817
"zh-cht": "全部聚焦",
4818
"xloc": [
4812
- "default.handlebars->31->877",
4813
- "default.handlebars->31->879",
4814
- "default.handlebars->31->880"
4819
+ "default.handlebars->31->878",
4820
+ "default.handlebars->31->880",
4821
+ "default.handlebars->31->881"
4822
]
4823
},
4824
{
@@ -4831,8 +4838,8 @@
4838
"zh-chs": "允许用户管理此设备组和该组中的设备。",
4839
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
4840
"xloc": [
4834
- "default.handlebars->31->1503",
4835
- "default.handlebars->31->1968"
4841
+ "default.handlebars->31->1504",
4842
+ "default.handlebars->31->1969"
4843
]
4844
},
4845
{
@@ -4852,14 +4859,14 @@
4859
"zh-chs": "允许用户管理此设备。",
4860
"zh-cht": "允許用戶管理此裝置。",
4861
"xloc": [
4855
- "default.handlebars->31->1504"
4862
+ "default.handlebars->31->1505"
4863
]
4864
},
4865
{
4866
"en": "Allowed",
4867
"nl": "Toegestaan",
4868
"xloc": [
4862
- "default.handlebars->31->200"
4869
+ "default.handlebars->31->201"
4870
]
4871
},
4872
{
@@ -4867,10 +4874,10 @@
4874
"fr": "Alt",
4875
"nl": "Alt",
4876
"xloc": [
4870
- "default-mobile.handlebars->11->332",
4871
- "default-mobile.handlebars->11->336",
4872
- "default.handlebars->31->899",
4873
- "default.handlebars->31->903"
4877
+ "default-mobile.handlebars->11->333",
4878
+ "default-mobile.handlebars->11->337",
4879
+ "default.handlebars->31->900",
4880
+ "default.handlebars->31->904"
4881
]
4882
},
4883
{
@@ -4932,7 +4939,7 @@
4939
"zh-chs": "备用(F10 = ESC + 0)",
4940
"zh-cht": "備用(F10 = ESC + 0)",
4941
"xloc": [
4935
- "default.handlebars->31->940",
4942
+ "default.handlebars->31->941",
4943
"terminal.handlebars->3->19"
4944
]
4945
},
@@ -4974,10 +4981,10 @@
4981
"zh-chs": "一直通知",
4982
"zh-cht": "一直通知",
4983
"xloc": [
4977
- "default.handlebars->31->1415",
4978
- "default.handlebars->31->1929",
4979
- "default.handlebars->31->2016",
4980
- "default.handlebars->31->618"
4984
+ "default.handlebars->31->1416",
4985
+ "default.handlebars->31->1930",
4986
+ "default.handlebars->31->2017",
4987
+ "default.handlebars->31->619"
4988
]
4989
},
4990
{
@@ -4997,10 +5004,10 @@
5004
"zh-chs": "一直提示",
5005
"zh-cht": "一直提示",
5006
"xloc": [
5000
- "default.handlebars->31->1416",
5001
- "default.handlebars->31->1930",
5002
- "default.handlebars->31->2017",
5003
- "default.handlebars->31->619"
5007
+ "default.handlebars->31->1417",
5008
+ "default.handlebars->31->1931",
5009
+ "default.handlebars->31->2018",
5010
+ "default.handlebars->31->620"
5011
]
5012
},
5013
{
@@ -5140,7 +5147,7 @@
5147
"zh-chs": "杀毒软件",
5148
"zh-cht": "防毒軟體",
5149
"xloc": [
5143
- "default.handlebars->31->609"
5150
+ "default.handlebars->31->610"
5151
]
5152
},
5153
{
@@ -5160,7 +5167,7 @@
5167
"zh-chs": "任何可支持的",
5168
"zh-cht": "任何可支持的",
5169
"xloc": [
5163
- "default.handlebars->31->340"
5170
+ "default.handlebars->31->341"
5171
]
5172
},
5173
{
@@ -5201,7 +5208,7 @@
5208
"zh-chs": "苹果macOS",
5209
"zh-cht": "蘋果macOS",
5210
"xloc": [
5204
- "default.handlebars->31->374"
5211
+ "default.handlebars->31->375"
5212
]
5213
},
5214
{
@@ -5221,7 +5228,7 @@
5228
"zh-chs": "仅限Apple macOS",
5229
"zh-cht": "僅限Apple macOS",
5230
"xloc": [
5224
- "default.handlebars->31->342"
5231
+ "default.handlebars->31->343"
5232
]
5233
},
5234
{
@@ -5261,7 +5268,7 @@
5268
"zh-chs": "阿拉伯文(阿尔及利亚)",
5269
"zh-cht": "阿拉伯文(阿爾及利亞)",
5270
"xloc": [
5264
- "default.handlebars->31->1123"
5271
+ "default.handlebars->31->1124"
5272
]
5273
},
5274
{
@@ -5281,7 +5288,7 @@
5288
"zh-chs": "阿拉伯文(巴林)",
5289
"zh-cht": "阿拉伯文(巴林)",
5290
"xloc": [
5284
- "default.handlebars->31->1124"
5291
+ "default.handlebars->31->1125"
5292
]
5293
},
5294
{
@@ -5301,7 +5308,7 @@
5308
"zh-chs": "阿拉伯文(埃及)",
5309
"zh-cht": "阿拉伯文(埃及)",
5310
"xloc": [
5304
- "default.handlebars->31->1125"
5311
+ "default.handlebars->31->1126"
5312
]
5313
},
5314
{
@@ -5321,7 +5328,7 @@
5328
"zh-chs": "阿拉伯文(伊拉克)",
5329
"zh-cht": "阿拉伯文(伊拉克)",
5330
"xloc": [
5324
- "default.handlebars->31->1126"
5331
+ "default.handlebars->31->1127"
5332
]
5333
},
5334
{
@@ -5341,7 +5348,7 @@
5348
"zh-chs": "阿拉伯文(约旦)",
5349
"zh-cht": "阿拉伯文(約旦)",
5350
"xloc": [
5344
- "default.handlebars->31->1127"
5351
+ "default.handlebars->31->1128"
5352
]
5353
},
5354
{
@@ -5361,7 +5368,7 @@
5368
"zh-chs": "阿拉伯文(科威特)",
5369
"zh-cht": "阿拉伯文(科威特)",
5370
"xloc": [
5364
- "default.handlebars->31->1128"
5371
+ "default.handlebars->31->1129"
5372
]
5373
},
5374
{
@@ -5381,7 +5388,7 @@
5388
"zh-chs": "阿拉伯文(黎巴嫩)",
5389
"zh-cht": "阿拉伯文(黎巴嫩)",
5390
"xloc": [
5384
- "default.handlebars->31->1129"
5391
+ "default.handlebars->31->1130"
5392
]
5393
},
5394
{
@@ -5401,7 +5408,7 @@
5408
"zh-chs": "阿拉伯文(利比亚)",
5409
"zh-cht": "阿拉伯文(利比亞)",
5410
"xloc": [
5404
- "default.handlebars->31->1130"
5411
+ "default.handlebars->31->1131"
5412
]
5413
},
5414
{
@@ -5421,7 +5428,7 @@
5428
"zh-chs": "阿拉伯文(摩洛哥)",
5429
"zh-cht": "阿拉伯文(摩洛哥)",
5430
"xloc": [
5424
- "default.handlebars->31->1131"
5431
+ "default.handlebars->31->1132"
5432
]
5433
},
5434
{
@@ -5441,7 +5448,7 @@
5448
"zh-chs": "阿拉伯文(阿曼)",
5449
"zh-cht": "阿拉伯文(阿曼)",
5450
"xloc": [
5444
- "default.handlebars->31->1132"
5451
+ "default.handlebars->31->1133"
5452
]
5453
},
5454
{
@@ -5461,7 +5468,7 @@
5468
"zh-chs": "阿拉伯文(卡塔尔)",
5469
"zh-cht": "阿拉伯文(卡塔爾)",
5470
"xloc": [
5464
- "default.handlebars->31->1133"
5471
+ "default.handlebars->31->1134"
5472
]
5473
},
5474
{
@@ -5481,7 +5488,7 @@
5488
"zh-chs": "阿拉伯文(沙特阿拉伯)",
5489
"zh-cht": "阿拉伯文(沙特阿拉伯)",
5490
"xloc": [
5484
- "default.handlebars->31->1134"
5491
+ "default.handlebars->31->1135"
5492
]
5493
},
5494
{
@@ -5501,7 +5508,7 @@
5508
"zh-chs": "阿拉伯文(标准)",
5509
"zh-cht": "阿拉伯文(標準)",
5510
"xloc": [
5504
- "default.handlebars->31->1122"
5511
+ "default.handlebars->31->1123"
5512
]
5513
},
5514
{
@@ -5521,7 +5528,7 @@
5528
"zh-chs": "阿拉伯文(叙利亚)",
5529
"zh-cht": "阿拉伯文(敘利亞)",
5530
"xloc": [
5524
- "default.handlebars->31->1135"
5531
+ "default.handlebars->31->1136"
5532
]
5533
},
5534
{
@@ -5541,7 +5548,7 @@
5548
"zh-chs": "阿拉伯文(突尼斯)",
5549
"zh-cht": "阿拉伯文(突尼斯)",
5550
"xloc": [
5544
- "default.handlebars->31->1136"
5551
+ "default.handlebars->31->1137"
5552
]
5553
},
5554
{
@@ -5561,7 +5568,7 @@
5568
"zh-chs": "阿拉伯文(阿联酋)",
5569
"zh-cht": "阿拉伯文(阿聯酋)",
5570
"xloc": [
5564
- "default.handlebars->31->1137"
5571
+ "default.handlebars->31->1138"
5572
]
5573
},
5574
{
@@ -5581,7 +5588,7 @@
5588
"zh-chs": "阿拉伯文(也门)",
5589
"zh-cht": "阿拉伯文(也門)",
5590
"xloc": [
5584
- "default.handlebars->31->1138"
5591
+ "default.handlebars->31->1139"
5592
]
5593
},
5594
{
@@ -5601,7 +5608,7 @@
5608
"zh-chs": "阿拉贡文",
5609
"zh-cht": "阿拉貢文",
5610
"xloc": [
5604
- "default.handlebars->31->1139"
5611
+ "default.handlebars->31->1140"
5612
]
5613
},
5614
{
@@ -5621,8 +5628,8 @@
5628
"zh-chs": "架构",
5629
"zh-cht": "結構",
5630
"xloc": [
5624
- "default-mobile.handlebars->11->383",
5625
- "default.handlebars->31->1001"
5631
+ "default-mobile.handlebars->11->384",
5632
+ "default.handlebars->31->1002"
5633
]
5634
},
5635
{
@@ -5642,7 +5649,7 @@
5649
"zh-chs": "您确定要连接到{0}设备吗?",
5650
"zh-cht": "你確定要連接到{0}裝置嗎?",
5651
"xloc": [
5645
- "default.handlebars->31->288"
5652
+ "default.handlebars->31->289"
5653
]
5654
},
5655
{
@@ -5662,8 +5669,8 @@
5669
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
5670
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
5671
"xloc": [
5665
- "default-mobile.handlebars->11->465",
5666
- "default.handlebars->31->1479"
5672
+ "default-mobile.handlebars->11->466",
5673
+ "default.handlebars->31->1480"
5674
]
5675
},
5676
{
@@ -5683,7 +5690,7 @@
5690
"zh-chs": "您确定要删除节点{0}吗?",
5691
"zh-cht": "你確定要刪除節點{0}嗎?",
5692
"xloc": [
5686
- "default.handlebars->31->819"
5693
+ "default.handlebars->31->820"
5694
]
5695
},
5696
{
@@ -5703,7 +5710,7 @@
5710
"zh-chs": "您确定要卸载所选代理吗?",
5711
"zh-cht": "你確定要卸載所選代理嗎?",
5712
"xloc": [
5706
- "default.handlebars->31->808"
5713
+ "default.handlebars->31->809"
5714
]
5715
},
5716
{
@@ -5723,7 +5730,7 @@
5730
"zh-chs": "您确定要卸载所选的{0}代理吗?",
5731
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
5732
"xloc": [
5726
- "default.handlebars->31->807"
5733
+ "default.handlebars->31->808"
5734
]
5735
},
5736
{
@@ -5743,7 +5750,7 @@
5750
"zh-chs": "您确定要{0}插件吗:{1}",
5751
"zh-cht": "你確定要{0}外掛嗎:{1}",
5752
"xloc": [
5746
- "default.handlebars->31->2251"
5753
+ "default.handlebars->31->2252"
5754
]
5755
},
5756
{
@@ -5763,7 +5770,7 @@
5770
"zh-chs": "亚美尼亚文",
5771
"zh-cht": "亞美尼亞文",
5772
"xloc": [
5766
- "default.handlebars->31->1140"
5773
+ "default.handlebars->31->1141"
5774
]
5775
},
5776
{
@@ -5823,7 +5830,7 @@
5830
"zh-chs": "阿萨姆文",
5831
"zh-cht": "阿薩姆文",
5832
"xloc": [
5826
- "default.handlebars->31->1141"
5833
+ "default.handlebars->31->1142"
5834
]
5835
},
5836
{
@@ -5843,7 +5850,7 @@
5850
"zh-chs": "阿斯图里亚斯文",
5851
"zh-cht": "阿斯圖里亞斯文",
5852
"xloc": [
5846
- "default.handlebars->31->1142"
5853
+ "default.handlebars->31->1143"
5854
]
5855
},
5856
{
@@ -5863,7 +5870,7 @@
5870
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
5871
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
5872
"xloc": [
5866
- "default.handlebars->31->1681"
5873
+ "default.handlebars->31->1682"
5874
]
5875
},
5876
{
@@ -5883,7 +5890,7 @@
5890
"zh-chs": "认证软件",
5891
"zh-cht": "認證軟體",
5892
"xloc": [
5886
- "default.handlebars->31->2020"
5893
+ "default.handlebars->31->2021"
5894
]
5895
},
5896
{
@@ -5903,14 +5910,14 @@
5910
"zh-chs": "认证软件",
5911
"zh-cht": "認證軟體",
5912
"xloc": [
5906
- "default-mobile.handlebars->11->59",
5907
- "default-mobile.handlebars->11->62",
5908
- "default-mobile.handlebars->11->81",
5909
- "default-mobile.handlebars->11->83",
5910
- "default.handlebars->31->1106",
5911
- "default.handlebars->31->1108",
5912
- "default.handlebars->31->135",
5913
- "default.handlebars->31->140"
5913
+ "default-mobile.handlebars->11->60",
5914
+ "default-mobile.handlebars->11->63",
5915
+ "default-mobile.handlebars->11->82",
5916
+ "default-mobile.handlebars->11->84",
5917
+ "default.handlebars->31->1107",
5918
+ "default.handlebars->31->1109",
5919
+ "default.handlebars->31->136",
5920
+ "default.handlebars->31->141"
5921
]
5922
},
5923
{
@@ -5930,7 +5937,7 @@
5937
"zh-chs": "认证软件激活成功。",
5938
"zh-cht": "認證軟體啟動成功。",
5939
"xloc": [
5933
- "default.handlebars->31->136"
5940
+ "default.handlebars->31->137"
5941
]
5942
},
5943
{
@@ -5950,7 +5957,7 @@
5957
"zh-chs": "认证软件已删除。",
5958
"zh-cht": "認證軟體已刪除。",
5959
"xloc": [
5953
- "default.handlebars->31->141"
5960
+ "default.handlebars->31->142"
5961
]
5962
},
5963
{
@@ -5990,7 +5997,7 @@
5997
"zh-chs": "自动删除",
5998
"zh-cht": "自動刪除",
5999
"xloc": [
5993
- "default.handlebars->31->1402"
6000
+ "default.handlebars->31->1403"
6001
]
6002
},
6003
{
@@ -6034,7 +6041,7 @@
6041
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
6042
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
6043
"xloc": [
6037
- "default.handlebars->31->1762"
6044
+ "default.handlebars->31->1763"
6045
]
6046
},
6047
{
@@ -6074,7 +6081,7 @@
6081
"zh-chs": "可用內存",
6082
"zh-cht": "可用內存",
6083
"xloc": [
6077
- "default.handlebars->31->2198"
6084
+ "default.handlebars->31->2199"
6085
]
6086
},
6087
{
@@ -6094,7 +6101,7 @@
6101
"zh-chs": "阿塞拜疆文",
6102
"zh-cht": "阿塞拜疆文",
6103
"xloc": [
6097
- "default.handlebars->31->1143"
6104
+ "default.handlebars->31->1144"
6105
]
6106
},
6107
{
@@ -6114,8 +6121,8 @@
6121
"zh-chs": "的BIOS",
6122
"zh-cht": "的BIOS",
6123
"xloc": [
6117
- "default-mobile.handlebars->11->431",
6118
- "default.handlebars->31->1059"
6124
+ "default-mobile.handlebars->11->432",
6125
+ "default.handlebars->31->1060"
6126
]
6127
},
6128
{
@@ -6198,8 +6205,8 @@
6205
"fr": "Backspace",
6206
"nl": "BackSpace",
6207
"xloc": [
6201
- "default-mobile.handlebars->11->316",
6202
- "default.handlebars->31->883"
6208
+ "default-mobile.handlebars->11->317",
6209
+ "default.handlebars->31->884"
6210
]
6211
},
6212
{
@@ -6219,7 +6226,7 @@
6226
"zh-chs": "背景与互动",
6227
"zh-cht": "背景與互動",
6228
"xloc": [
6222
- "default.handlebars->31->381"
6229
+ "default.handlebars->31->382"
6230
]
6231
},
6232
{
@@ -6239,10 +6246,10 @@
6246
"zh-chs": "背景与互动",
6247
"zh-cht": "背景與互動",
6248
"xloc": [
6242
- "default.handlebars->31->1585",
6243
- "default.handlebars->31->1592",
6244
- "default.handlebars->31->352",
6245
- "default.handlebars->31->366"
6249
+ "default.handlebars->31->1586",
6250
+ "default.handlebars->31->1593",
6251
+ "default.handlebars->31->353",
6252
+ "default.handlebars->31->367"
6253
]
6254
},
6255
{
@@ -6262,11 +6269,11 @@
6269
"zh-chs": "仅背景",
6270
"zh-cht": "僅背景",
6271
"xloc": [
6265
- "default.handlebars->31->1586",
6266
- "default.handlebars->31->1593",
6267
- "default.handlebars->31->353",
6268
- "default.handlebars->31->367",
6269
- "default.handlebars->31->382"
6272
+ "default.handlebars->31->1587",
6273
+ "default.handlebars->31->1594",
6274
+ "default.handlebars->31->354",
6275
+ "default.handlebars->31->368",
6276
+ "default.handlebars->31->383"
6277
]
6278
},
6279
{
@@ -6307,7 +6314,7 @@
6314
"zh-chs": "备用码",
6315
"zh-cht": "備用碼",
6316
"xloc": [
6310
- "default.handlebars->31->2022"
6317
+ "default.handlebars->31->2023"
6318
]
6319
},
6320
{
@@ -6327,7 +6334,7 @@
6334
"zh-chs": "错误的签名",
6335
"zh-cht": "錯誤的簽名",
6336
"xloc": [
6330
- "default.handlebars->31->2180"
6337
+ "default.handlebars->31->2181"
6338
]
6339
},
6340
{
@@ -6347,7 +6354,7 @@
6354
"zh-chs": "错误的网络证书",
6355
"zh-cht": "錯誤的網絡憑證",
6356
"xloc": [
6350
- "default.handlebars->31->2179"
6357
+ "default.handlebars->31->2180"
6358
]
6359
},
6360
{
@@ -6367,7 +6374,7 @@
6374
"zh-chs": "巴斯克",
6375
"zh-cht": "巴斯克",
6376
"xloc": [
6370
- "default.handlebars->31->1144"
6377
+ "default.handlebars->31->1145"
6378
]
6379
},
6380
{
@@ -6387,7 +6394,7 @@
6394
"zh-chs": "批处理文件上传",
6395
"zh-cht": "批處理文件上傳",
6396
"xloc": [
6390
- "default.handlebars->31->499"
6397
+ "default.handlebars->31->500"
6398
]
6399
},
6400
{
@@ -6427,7 +6434,7 @@
6434
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
6435
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
6436
"xloc": [
6430
- "default.handlebars->31->1761"
6437
+ "default.handlebars->31->1762"
6438
]
6439
},
6440
{
@@ -6447,7 +6454,7 @@
6454
"zh-chs": "白俄罗斯文",
6455
"zh-cht": "白俄羅斯文",
6456
"xloc": [
6450
- "default.handlebars->31->1146"
6457
+ "default.handlebars->31->1147"
6458
]
6459
},
6460
{
@@ -6467,7 +6474,7 @@
6474
"zh-chs": "孟加拉",
6475
"zh-cht": "孟加拉",
6476
"xloc": [
6470
- "default.handlebars->31->1147"
6477
+ "default.handlebars->31->1148"
6478
]
6479
},
6480
{
@@ -6496,8 +6503,8 @@
6503
{
6504
"en": "Bootloader",
6505
"xloc": [
6499
- "default-mobile.handlebars->11->395",
6500
- "default.handlebars->31->1013"
6506
+ "default-mobile.handlebars->11->396",
6507
+ "default.handlebars->31->1014"
6508
]
6509
},
6510
{
@@ -6517,7 +6524,7 @@
6524
"zh-chs": "波斯尼亚文",
6525
"zh-cht": "波斯尼亞文",
6526
"xloc": [
6520
- "default.handlebars->31->1148"
6527
+ "default.handlebars->31->1149"
6528
]
6529
},
6530
{
@@ -6537,7 +6544,7 @@
6544
"zh-chs": "布列塔尼",
6545
"zh-cht": "布列塔尼",
6546
"xloc": [
6540
- "default.handlebars->31->1149"
6547
+ "default.handlebars->31->1150"
6548
]
6549
},
6550
{
@@ -6557,7 +6564,7 @@
6564
"zh-chs": "广播",
6565
"zh-cht": "廣播",
6566
"xloc": [
6560
- "default.handlebars->31->1936",
6567
+ "default.handlebars->31->1937",
6568
"default.handlebars->container->column_l->p4->3->1->0->3->1"
6569
]
6570
},
@@ -6578,7 +6585,7 @@
6585
"zh-chs": "广播消息",
6586
"zh-cht": "廣播消息",
6587
"xloc": [
6581
- "default.handlebars->31->1857"
6588
+ "default.handlebars->31->1858"
6589
]
6590
},
6591
{
@@ -6598,7 +6605,7 @@
6605
"zh-chs": "向所有连接的用户广播消息。",
6606
"zh-cht": "向所有連接的用戶廣播消息。",
6607
"xloc": [
6601
- "default.handlebars->31->1852"
6608
+ "default.handlebars->31->1853"
6609
]
6610
},
6611
{
@@ -6618,7 +6625,7 @@
6625
"zh-chs": "保加利亚文",
6626
"zh-cht": "保加利亞文",
6627
"xloc": [
6621
- "default.handlebars->31->1145"
6628
+ "default.handlebars->31->1146"
6629
]
6630
},
6631
{
@@ -6638,7 +6645,7 @@
6645
"zh-chs": "缅甸文",
6646
"zh-cht": "緬甸文",
6647
"xloc": [
6641
- "default.handlebars->31->1150"
6648
+ "default.handlebars->31->1151"
6649
]
6650
},
6651
{
@@ -6658,8 +6665,8 @@
6665
"zh-chs": "CCM",
6666
"zh-cht": "CCM",
6667
"xloc": [
6661
- "default-mobile.handlebars->11->245",
6662
- "default.handlebars->31->585"
6668
+ "default-mobile.handlebars->11->246",
6669
+ "default.handlebars->31->586"
6670
]
6671
},
6672
{
@@ -6679,7 +6686,7 @@
6686
"zh-chs": "CCM模式",
6687
"zh-cht": "CCM模式",
6688
"xloc": [
6682
- "default.handlebars->31->1462"
6689
+ "default.handlebars->31->1463"
6690
]
6691
},
6692
{
@@ -6699,9 +6706,9 @@
6706
"zh-chs": "CIRA",
6707
"zh-cht": "CIRA",
6708
"xloc": [
6702
- "default-mobile.handlebars->11->214",
6703
- "default.handlebars->31->255",
6704
- "default.handlebars->31->444"
6709
+ "default-mobile.handlebars->11->215",
6710
+ "default.handlebars->31->256",
6711
+ "default.handlebars->31->445"
6712
]
6713
},
6714
{
@@ -6721,7 +6728,7 @@
6728
"zh-chs": "CIRA服务器",
6729
"zh-cht": "CIRA伺服器",
6730
"xloc": [
6724
- "default.handlebars->31->2237"
6731
+ "default.handlebars->31->2238"
6732
]
6733
},
6734
{
@@ -6741,7 +6748,7 @@
6748
"zh-chs": "CIRA服务器命令",
6749
"zh-cht": "CIRA伺服器指令",
6750
"xloc": [
6744
- "default.handlebars->31->2238"
6751
+ "default.handlebars->31->2239"
6752
]
6753
},
6754
{
@@ -6761,7 +6768,7 @@
6768
"zh-chs": "CIRA设置",
6769
"zh-cht": "CIRA設置",
6770
"xloc": [
6764
- "default.handlebars->31->1470"
6771
+ "default.handlebars->31->1471"
6772
]
6773
},
6774
{
@@ -6781,8 +6788,8 @@
6788
"zh-chs": "CPU",
6789
"zh-cht": "CPU",
6790
"xloc": [
6784
- "default-mobile.handlebars->11->437",
6785
- "default.handlebars->31->1065"
6791
+ "default-mobile.handlebars->11->438",
6792
+ "default.handlebars->31->1066"
6793
]
6794
},
6795
{
@@ -6802,7 +6809,7 @@
6809
"zh-chs": "CPU负载",
6810
"zh-cht": "CPU負載",
6811
"xloc": [
6805
- "default.handlebars->31->2194"
6812
+ "default.handlebars->31->2195"
6813
]
6814
},
6815
{
@@ -6822,7 +6829,7 @@
6829
"zh-chs": "最近15分钟的CPU负载",
6830
"zh-cht": "最近15分鐘的CPU負載",
6831
"xloc": [
6825
- "default.handlebars->31->2197"
6832
+ "default.handlebars->31->2198"
6833
]
6834
},
6835
{
@@ -6842,7 +6849,7 @@
6849
"zh-chs": "最近5分钟的CPU负载",
6850
"zh-cht": "最近5分鐘的CPU負載",
6851
"xloc": [
6845
- "default.handlebars->31->2196"
6852
+ "default.handlebars->31->2197"
6853
]
6854
},
6855
{
@@ -6862,7 +6869,7 @@
6869
"zh-chs": "最近一分钟的CPU负载",
6870
"zh-cht": "最近一分鐘的CPU負載",
6871
"xloc": [
6865
- "default.handlebars->31->2195"
6872
+ "default.handlebars->31->2196"
6873
]
6874
},
6875
{
@@ -6882,8 +6889,8 @@
6889
"zh-chs": "CR+LF",
6890
"zh-cht": "CR+LF",
6891
"xloc": [
6885
- "default.handlebars->31->933",
6886
- "default.handlebars->31->942",
6892
+ "default.handlebars->31->934",
6893
+ "default.handlebars->31->943",
6894
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
6895
"terminal.handlebars->3->21",
6896
"terminal.handlebars->3->7",
@@ -6907,7 +6914,7 @@
6914
"zh-chs": "CSV",
6915
"zh-cht": "CSV",
6916
"xloc": [
6910
- "default.handlebars->31->1775"
6917
+ "default.handlebars->31->1776"
6918
]
6919
},
6920
{
@@ -6927,9 +6934,9 @@
6934
"zh-chs": "CSV格式",
6935
"zh-cht": "CSV格式",
6936
"xloc": [
6930
- "default.handlebars->31->1779",
6931
- "default.handlebars->31->1844",
6932
- "default.handlebars->31->501"
6937
+ "default.handlebars->31->1780",
6938
+ "default.handlebars->31->1845",
6939
+ "default.handlebars->31->502"
6940
]
6941
},
6942
{
@@ -6966,7 +6973,7 @@
6973
"zh-chs": "呼叫错误",
6974
"zh-cht": "呼叫錯誤",
6975
"xloc": [
6969
- "default.handlebars->31->2252"
6976
+ "default.handlebars->31->2253"
6977
]
6978
},
6979
{
@@ -6987,9 +6994,9 @@
6994
"zh-cht": "取消",
6995
"xloc": [
6996
"agent-translations.json",
6990
- "default-mobile.handlebars->11->92",
6997
+ "default-mobile.handlebars->11->93",
6998
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
6992
- "default.handlebars->31->1380",
6999
+ "default.handlebars->31->1381",
7000
"default.handlebars->container->dialog->idx_dlgButtonBar",
7001
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
7002
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7017,12 +7024,12 @@
7024
"zh-chs": "容量",
7025
"zh-cht": "容量",
7026
"xloc": [
7020
- "default-mobile.handlebars->11->442",
7021
- "default-mobile.handlebars->11->447",
7022
- "default-mobile.handlebars->11->449",
7023
- "default.handlebars->31->1070",
7024
- "default.handlebars->31->1075",
7025
- "default.handlebars->31->1077"
7027
+ "default-mobile.handlebars->11->443",
7028
+ "default-mobile.handlebars->11->448",
7029
+ "default-mobile.handlebars->11->450",
7030
+ "default.handlebars->31->1071",
7031
+ "default.handlebars->31->1076",
7032
+ "default.handlebars->31->1078"
7033
]
7034
},
7035
{
@@ -7042,8 +7049,8 @@
7049
"zh-chs": "容量/速度",
7050
"zh-cht": "容量/速度",
7051
"xloc": [
7045
- "default-mobile.handlebars->11->440",
7046
- "default.handlebars->31->1068"
7052
+ "default-mobile.handlebars->11->441",
7053
+ "default.handlebars->31->1069"
7054
]
7055
},
7056
{
@@ -7063,7 +7070,7 @@
7070
"zh-chs": "加泰罗尼亚文",
7071
"zh-cht": "加泰羅尼亞文",
7072
"xloc": [
7066
- "default.handlebars->31->1151"
7073
+ "default.handlebars->31->1152"
7074
]
7075
},
7076
{
@@ -7083,7 +7090,7 @@
7090
"zh-chs": "在这里为中心显示地图",
7091
"zh-cht": "在這裡為中心顯示地圖",
7092
"xloc": [
7086
- "default.handlebars->31->547"
7093
+ "default.handlebars->31->548"
7094
]
7095
},
7096
{
@@ -7103,7 +7110,7 @@
7110
"zh-chs": "查莫罗",
7111
"zh-cht": "查莫羅",
7112
"xloc": [
7106
- "default.handlebars->31->1152"
7113
+ "default.handlebars->31->1153"
7114
]
7115
},
7116
{
@@ -7145,7 +7152,7 @@
7152
"zh-chs": "更改{0}的电邮",
7153
"zh-cht": "更改{0}的電郵",
7154
"xloc": [
7148
- "default.handlebars->31->2052"
7155
+ "default.handlebars->31->2053"
7156
]
7157
},
7158
{
@@ -7165,9 +7172,9 @@
7172
"zh-chs": "更改组",
7173
"zh-cht": "更改群",
7174
"xloc": [
7168
- "default.handlebars->31->647",
7169
- "default.handlebars->31->816",
7170
- "default.handlebars->31->817"
7175
+ "default.handlebars->31->648",
7176
+ "default.handlebars->31->817",
7177
+ "default.handlebars->31->818"
7178
]
7179
},
7180
{
@@ -7187,9 +7194,9 @@
7194
"zh-chs": "更改密码",
7195
"zh-cht": "更改密碼",
7196
"xloc": [
7190
- "default-mobile.handlebars->11->100",
7191
- "default.handlebars->31->1347",
7192
- "default.handlebars->31->2039"
7197
+ "default-mobile.handlebars->11->101",
7198
+ "default.handlebars->31->1348",
7199
+ "default.handlebars->31->2040"
7200
]
7201
},
7202
{
@@ -7209,7 +7216,7 @@
7216
"zh-chs": "更改{0}的密码",
7217
"zh-cht": "更改{0}的密碼",
7218
"xloc": [
7212
- "default.handlebars->31->2059"
7219
+ "default.handlebars->31->2060"
7220
]
7221
},
7222
{
@@ -7229,7 +7236,7 @@
7236
"zh-chs": "更改{0}的真实名称",
7237
"zh-cht": "更改{0}的真實名稱",
7238
"xloc": [
7232
- "default.handlebars->31->2047"
7239
+ "default.handlebars->31->2048"
7240
]
7241
},
7242
{
@@ -7311,7 +7318,7 @@
7318
"zh-chs": "更改该用户的密码",
7319
"zh-cht": "更改該用戶的密碼",
7320
"xloc": [
7314
- "default.handlebars->31->2038"
7321
+ "default.handlebars->31->2039"
7322
]
7323
},
7324
{
@@ -7351,7 +7358,7 @@
7358
"zh-chs": "在此处更改您的帐户电邮地址。",
7359
"zh-cht": "在此處更改你的帳戶電郵地址。",
7360
"xloc": [
7354
- "default.handlebars->31->1334"
7361
+ "default.handlebars->31->1335"
7362
]
7363
},
7364
{
@@ -7371,7 +7378,7 @@
7378
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
7379
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
7380
"xloc": [
7374
- "default.handlebars->31->1340"
7381
+ "default.handlebars->31->1341"
7382
]
7383
},
7384
{
@@ -7391,7 +7398,7 @@
7398
"zh-chs": "更改帐户凭据",
7399
"zh-cht": "帳戶憑證已更改",
7400
"xloc": [
7394
- "default.handlebars->31->1733"
7401
+ "default.handlebars->31->1734"
7402
]
7403
},
7404
{
@@ -7411,7 +7418,7 @@
7418
"zh-chs": "{1}组中的设备{0}已更改:{2}",
7419
"zh-cht": "{1}組中的設備{0}已更改:{2}",
7420
"xloc": [
7414
- "default.handlebars->31->1717"
7421
+ "default.handlebars->31->1718"
7422
]
7423
},
7424
{
@@ -7431,7 +7438,7 @@
7438
"zh-chs": "语言从{1}更改为{2}",
7439
"zh-cht": "語言從{1}更改為{2}",
7440
"xloc": [
7434
- "default.handlebars->31->1661"
7441
+ "default.handlebars->31->1662"
7442
]
7443
},
7444
{
@@ -7451,8 +7458,8 @@
7458
"zh-chs": "已更改{0}的用户设备权限",
7459
"zh-cht": "已更改{0}的用戶設備權限",
7460
"xloc": [
7454
- "default.handlebars->31->1719",
7455
- "default.handlebars->31->1740"
7461
+ "default.handlebars->31->1720",
7462
+ "default.handlebars->31->1741"
7463
]
7464
},
7465
{
@@ -7472,7 +7479,7 @@
7479
"zh-chs": "更改语言将需要刷新页面。",
7480
"zh-cht": "更改語言將需要刷新頁面。",
7481
"xloc": [
7475
- "default.handlebars->31->1319"
7482
+ "default.handlebars->31->1320"
7483
]
7484
},
7485
{
@@ -7492,11 +7499,11 @@
7499
"zh-chs": "聊天",
7500
"zh-cht": "聊天",
7501
"xloc": [
7495
- "default.handlebars->31->1796",
7496
- "default.handlebars->31->2034",
7502
+ "default.handlebars->31->1797",
7503
"default.handlebars->31->2035",
7498
- "default.handlebars->31->712",
7499
- "default.handlebars->31->733"
7504
+ "default.handlebars->31->2036",
7505
+ "default.handlebars->31->713",
7506
+ "default.handlebars->31->734"
7507
]
7508
},
7509
{
@@ -7516,10 +7523,10 @@
7523
"zh-chs": "聊天并通知",
7524
"zh-cht": "聊天並通知",
7525
"xloc": [
7519
- "default-mobile.handlebars->11->486",
7520
- "default-mobile.handlebars->11->506",
7521
- "default.handlebars->31->1531",
7522
- "default.handlebars->31->1567"
7526
+ "default-mobile.handlebars->11->487",
7527
+ "default-mobile.handlebars->11->507",
7528
+ "default.handlebars->31->1532",
7529
+ "default.handlebars->31->1568"
7530
]
7531
},
7532
{
@@ -7527,8 +7534,8 @@
7534
"nl": "Chatverzoek, klik hier om te accepteren.",
7535
"fr": "Demande de chat, cliquez ici pour accepter.",
7536
"xloc": [
7530
- "default-mobile.handlebars->11->538",
7531
- "default.handlebars->31->2149"
7537
+ "default-mobile.handlebars->11->539",
7538
+ "default.handlebars->31->2150"
7539
]
7540
},
7541
{
@@ -7568,7 +7575,7 @@
7575
"zh-chs": "车臣",
7576
"zh-cht": "車臣",
7577
"xloc": [
7571
- "default.handlebars->31->1153"
7578
+ "default.handlebars->31->1154"
7579
]
7580
},
7581
{
@@ -7588,7 +7595,7 @@
7595
"zh-chs": "检查并单击确定以清除错误日志。",
7596
"zh-cht": "檢查並單擊確定以清除錯誤日誌。",
7597
"xloc": [
7591
- "default.handlebars->31->131"
7598
+ "default.handlebars->31->132"
7599
]
7600
},
7601
{
@@ -7608,7 +7615,7 @@
7615
"zh-chs": "检查并单击确定以开始服务器自我更新。",
7616
"zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
7617
"xloc": [
7611
- "default.handlebars->31->126"
7618
+ "default.handlebars->31->127"
7619
]
7620
},
7621
{
@@ -7648,7 +7655,7 @@
7655
"zh-chs": "检查您的手机并输入验证码。",
7656
"zh-cht": "檢查你的電話並輸入驗證碼。",
7657
"xloc": [
7651
- "default.handlebars->31->167"
7658
+ "default.handlebars->31->168"
7659
]
7660
},
7661
{
@@ -7668,8 +7675,8 @@
7675
"zh-chs": "检查...",
7676
"zh-cht": "檢查...",
7677
"xloc": [
7671
- "default.handlebars->31->1119",
7672
- "default.handlebars->31->2246"
7678
+ "default.handlebars->31->1120",
7679
+ "default.handlebars->31->2247"
7680
]
7681
},
7682
{
@@ -7689,7 +7696,7 @@
7696
"zh-chs": "中文",
7697
"zh-cht": "中文",
7698
"xloc": [
7692
- "default.handlebars->31->1154"
7699
+ "default.handlebars->31->1155"
7700
]
7701
},
7702
{
@@ -7709,7 +7716,7 @@
7716
"zh-chs": "中文(香港)",
7717
"zh-cht": "中文(香港)",
7718
"xloc": [
7712
- "default.handlebars->31->1155"
7719
+ "default.handlebars->31->1156"
7720
]
7721
},
7722
{
@@ -7729,7 +7736,7 @@
7736
"zh-chs": "中文(中国)",
7737
"zh-cht": "中文(中國)",
7738
"xloc": [
7732
- "default.handlebars->31->1156"
7739
+ "default.handlebars->31->1157"
7740
]
7741
},
7742
{
@@ -7749,7 +7756,7 @@
7756
"zh-chs": "简体中文",
7757
"zh-cht": "簡體中文",
7758
"xloc": [
7752
- "default.handlebars->31->1316"
7759
+ "default.handlebars->31->1317"
7760
]
7761
},
7762
{
@@ -7769,7 +7776,7 @@
7776
"zh-chs": "中文(新加坡)",
7777
"zh-cht": "中文(新加坡)",
7778
"xloc": [
7772
- "default.handlebars->31->1157"
7779
+ "default.handlebars->31->1158"
7780
]
7781
},
7782
{
@@ -7789,7 +7796,7 @@
7796
"zh-chs": "中文(台湾)",
7797
"zh-cht": "中文(台灣)",
7798
"xloc": [
7792
- "default.handlebars->31->1158"
7799
+ "default.handlebars->31->1159"
7800
]
7801
},
7802
{
@@ -7809,7 +7816,7 @@
7816
"zh-chs": "繁体中文",
7817
"zh-cht": "繁體中文",
7818
"xloc": [
7812
- "default.handlebars->31->1317"
7819
+ "default.handlebars->31->1318"
7820
]
7821
},
7822
{
@@ -7850,7 +7857,7 @@
7857
"zh-chs": "楚瓦什",
7858
"zh-cht": "楚瓦什",
7859
"xloc": [
7853
- "default.handlebars->31->1159"
7860
+ "default.handlebars->31->1160"
7861
]
7862
},
7863
{
@@ -7887,17 +7894,17 @@
7894
"zh-chs": "清除",
7895
"zh-cht": "清除",
7896
"xloc": [
7890
- "default-mobile.handlebars->11->142",
7891
- "default-mobile.handlebars->11->367",
7892
- "default-mobile.handlebars->11->369",
7893
- "default-mobile.handlebars->11->371",
7894
- "default-mobile.handlebars->11->373",
7895
- "default-mobile.handlebars->11->69",
7896
- "default.handlebars->31->1655",
7897
- "default.handlebars->31->978",
7898
- "default.handlebars->31->980",
7899
- "default.handlebars->31->982",
7900
- "default.handlebars->31->984",
7897
+ "default-mobile.handlebars->11->143",
7898
+ "default-mobile.handlebars->11->368",
7899
+ "default-mobile.handlebars->11->370",
7900
+ "default-mobile.handlebars->11->372",
7901
+ "default-mobile.handlebars->11->374",
7902
+ "default-mobile.handlebars->11->70",
7903
+ "default.handlebars->31->1656",
7904
+ "default.handlebars->31->979",
7905
+ "default.handlebars->31->981",
7906
+ "default.handlebars->31->983",
7907
+ "default.handlebars->31->985",
7908
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
7909
"default.handlebars->container->column_l->p41->3->1",
7910
"messenger.handlebars->xbottom->1->1->0->5"
@@ -7920,7 +7927,7 @@
7927
"zh-chs": "清除保安编码",
7928
"zh-cht": "清除保安編碼",
7929
"xloc": [
7923
- "default.handlebars->31->149"
7930
+ "default.handlebars->31->150"
7931
]
7932
},
7933
{
@@ -7940,8 +7947,8 @@
7947
"zh-chs": "全部清除",
7948
"zh-cht": "全部清除",
7949
"xloc": [
7943
- "default-mobile.handlebars->11->521",
7944
- "default.handlebars->31->2132"
7950
+ "default-mobile.handlebars->11->522",
7951
+ "default.handlebars->31->2133"
7952
]
7953
},
7954
{
@@ -7961,8 +7968,8 @@
7968
"zh-chs": "清除搜索过滤器",
7969
"zh-cht": "清除搜索過濾器",
7970
"xloc": [
7964
- "default-mobile.handlebars->11->164",
7965
- "default.handlebars->31->227"
7971
+ "default-mobile.handlebars->11->165",
7972
+ "default.handlebars->31->228"
7973
]
7974
},
7975
{
@@ -7982,7 +7989,7 @@
7989
"zh-chs": "清除核心",
7990
"zh-cht": "清除核心",
7991
"xloc": [
7985
- "default.handlebars->31->1091"
7992
+ "default.handlebars->31->1092"
7993
]
7994
},
7995
{
@@ -8002,7 +8009,7 @@
8009
"zh-chs": "从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
8010
"zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
8011
"xloc": [
8005
- "default.handlebars->31->139"
8012
+ "default.handlebars->31->140"
8013
]
8014
},
8015
{
@@ -8022,8 +8029,8 @@
8029
"zh-chs": "清除此通知",
8030
"zh-cht": "清除此通知",
8031
"xloc": [
8025
- "default-mobile.handlebars->11->520",
8026
- "default.handlebars->31->2131"
8032
+ "default-mobile.handlebars->11->521",
8033
+ "default.handlebars->31->2132"
8034
]
8035
},
8036
{
@@ -8083,8 +8090,8 @@
8090
"zh-chs": "单击此处编辑设备组名称",
8091
"zh-cht": "單擊此處編輯裝置群名稱",
8092
"xloc": [
8086
- "default.handlebars->31->1391",
8087
- "default.handlebars->31->1606"
8093
+ "default.handlebars->31->1392",
8094
+ "default.handlebars->31->1607"
8095
]
8096
},
8097
{
@@ -8104,7 +8111,7 @@
8111
"zh-chs": "单击此处编辑服务器端设备名称",
8112
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
8113
"xloc": [
8107
- "default.handlebars->31->563"
8114
+ "default.handlebars->31->564"
8115
]
8116
},
8117
{
@@ -8124,7 +8131,7 @@
8131
"zh-chs": "单击此处编辑用户组名称",
8132
"zh-cht": "單擊此處編輯用戶群名稱",
8133
"xloc": [
8127
- "default.handlebars->31->1913"
8134
+ "default.handlebars->31->1914"
8135
]
8136
},
8137
{
@@ -8194,8 +8201,8 @@
8201
"zh-chs": "单击确定将验证邮件发送到:",
8202
"zh-cht": "單擊確定將驗證電郵發送到:",
8203
"xloc": [
8197
- "default-mobile.handlebars->11->85",
8198
- "default.handlebars->31->1331"
8204
+ "default-mobile.handlebars->11->86",
8205
+ "default.handlebars->31->1332"
8206
]
8207
},
8208
{
@@ -8256,8 +8263,8 @@
8263
"zh-chs": "客户端控制模式(CCM)",
8264
"zh-cht": "客戶端控制模式(CCM)",
8265
"xloc": [
8259
- "default-mobile.handlebars->11->418",
8260
- "default.handlebars->31->1046"
8266
+ "default-mobile.handlebars->11->419",
8267
+ "default.handlebars->31->1047"
8268
]
8269
},
8270
{
@@ -8277,7 +8284,7 @@
8284
"zh-chs": "客户编号",
8285
"zh-cht": "客戶編號",
8286
"xloc": [
8280
- "default.handlebars->31->1373"
8287
+ "default.handlebars->31->1374"
8288
]
8289
},
8290
{
@@ -8297,7 +8304,7 @@
8304
"zh-chs": "客户端启动的远程访问",
8305
"zh-cht": "客戶端啟動的遠程訪問",
8306
"xloc": [
8300
- "default.handlebars->31->1469"
8307
+ "default.handlebars->31->1470"
8308
]
8309
},
8310
{
@@ -8317,7 +8324,7 @@
8324
"zh-chs": "客户机密",
8325
"zh-cht": "客戶機密",
8326
"xloc": [
8320
- "default.handlebars->31->1374"
8327
+ "default.handlebars->31->1375"
8328
]
8329
},
8330
{
@@ -8358,11 +8365,11 @@
8365
"zh-chs": "关",
8366
"zh-cht": "關",
8367
"xloc": [
8361
- "default-mobile.handlebars->11->67",
8362
- "default.handlebars->31->147",
8363
- "default.handlebars->31->155",
8364
- "default.handlebars->31->924",
8365
- "default.handlebars->31->955"
8368
+ "default-mobile.handlebars->11->68",
8369
+ "default.handlebars->31->148",
8370
+ "default.handlebars->31->156",
8371
+ "default.handlebars->31->925",
8372
+ "default.handlebars->31->956"
8373
]
8374
},
8375
{
@@ -8382,7 +8389,7 @@
8389
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
8390
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
8391
"xloc": [
8385
- "default.handlebars->31->1666"
8392
+ "default.handlebars->31->1667"
8393
]
8394
},
8395
{
@@ -8402,7 +8409,7 @@
8409
"zh-chs": "码",
8410
"zh-cht": "碼",
8411
"xloc": [
8405
- "default.handlebars->31->218"
8412
+ "default.handlebars->31->219"
8413
]
8414
},
8415
{
@@ -8484,7 +8491,7 @@
8491
"zh-chs": "命令",
8492
"zh-cht": "命令",
8493
"xloc": [
8487
- "default.handlebars->31->415"
8494
+ "default.handlebars->31->416"
8495
]
8496
},
8497
{
@@ -8504,10 +8511,10 @@
8511
"zh-chs": "指令",
8512
"zh-cht": "指令",
8513
"xloc": [
8507
- "default-mobile.handlebars->11->508",
8508
- "default.handlebars->31->1569",
8509
- "default.handlebars->31->714",
8510
- "default.handlebars->31->735"
8514
+ "default-mobile.handlebars->11->509",
8515
+ "default.handlebars->31->1570",
8516
+ "default.handlebars->31->715",
8517
+ "default.handlebars->31->736"
8518
]
8519
},
8520
{
@@ -8527,8 +8534,8 @@
8534
"zh-chs": "通用设备组",
8535
"zh-cht": "通用裝置群",
8536
"xloc": [
8530
- "default.handlebars->31->1944",
8531
- "default.handlebars->31->2064"
8537
+ "default.handlebars->31->1945",
8538
+ "default.handlebars->31->2065"
8539
]
8540
},
8541
{
@@ -8548,8 +8555,8 @@
8555
"zh-chs": "通用设备",
8556
"zh-cht": "通用裝置",
8557
"xloc": [
8551
- "default.handlebars->31->1950",
8552
- "default.handlebars->31->2076"
8558
+ "default.handlebars->31->1951",
8559
+ "default.handlebars->31->2077"
8560
]
8561
},
8562
{
@@ -8569,7 +8576,7 @@
8576
"zh-chs": "压缩档案...",
8577
"zh-cht": "壓縮檔案...",
8578
"xloc": [
8572
- "default.handlebars->31->950"
8579
+ "default.handlebars->31->951"
8580
]
8581
},
8582
{
@@ -8589,16 +8596,16 @@
8596
"zh-chs": "确认",
8597
"zh-cht": "確認",
8598
"xloc": [
8592
- "default-mobile.handlebars->11->300",
8593
- "default-mobile.handlebars->11->466",
8594
- "default.handlebars->31->1480",
8595
- "default.handlebars->31->1824",
8596
- "default.handlebars->31->1903",
8597
- "default.handlebars->31->1964",
8598
- "default.handlebars->31->2062",
8599
- "default.handlebars->31->471",
8600
- "default.handlebars->31->811",
8601
- "default.handlebars->31->820"
8599
+ "default-mobile.handlebars->11->301",
8600
+ "default-mobile.handlebars->11->467",
8601
+ "default.handlebars->31->1481",
8602
+ "default.handlebars->31->1825",
8603
+ "default.handlebars->31->1904",
8604
+ "default.handlebars->31->1965",
8605
+ "default.handlebars->31->2063",
8606
+ "default.handlebars->31->472",
8607
+ "default.handlebars->31->812",
8608
+ "default.handlebars->31->821"
8609
]
8610
},
8611
{
@@ -8618,8 +8625,8 @@
8625
"zh-chs": "确认将1个副本复制到此位置?",
8626
"zh-cht": "確認將1個副本複製到此位置?",
8627
"xloc": [
8621
- "default-mobile.handlebars->11->362",
8622
- "default.handlebars->31->973"
8628
+ "default-mobile.handlebars->11->363",
8629
+ "default.handlebars->31->974"
8630
]
8631
},
8632
{
@@ -8639,7 +8646,7 @@
8646
"zh-chs": "确认{0}个条目的复制到此位置?",
8647
"zh-cht": "確認{0}個條目的複製到此位置?",
8648
"xloc": [
8642
- "default.handlebars->31->972"
8649
+ "default.handlebars->31->973"
8650
]
8651
},
8652
{
@@ -8659,7 +8666,7 @@
8666
"zh-chs": "确认{0}个条目的副本到此位置?",
8667
"zh-cht": "確認{0}個條目的副本到此位置?",
8668
"xloc": [
8662
- "default-mobile.handlebars->11->361"
8669
+ "default-mobile.handlebars->11->362"
8670
]
8671
},
8672
{
@@ -8679,7 +8686,7 @@
8686
"zh-chs": "确认删除选定的帐户?",
8687
"zh-cht": "確認刪除所選帳戶?",
8688
"xloc": [
8682
- "default.handlebars->31->1823"
8689
+ "default.handlebars->31->1824"
8690
]
8691
},
8692
{
@@ -8699,7 +8706,7 @@
8706
"zh-chs": "确认删除选定的设备?",
8707
"zh-cht": "確認刪除所選裝置?",
8708
"xloc": [
8702
- "default.handlebars->31->470"
8709
+ "default.handlebars->31->471"
8710
]
8711
},
8712
{
@@ -8719,7 +8726,7 @@
8726
"zh-chs": "确认删除选定的用户组?",
8727
"zh-cht": "確認刪除所選用戶群?",
8728
"xloc": [
8722
- "default.handlebars->31->1902"
8729
+ "default.handlebars->31->1903"
8730
]
8731
},
8732
{
@@ -8739,7 +8746,7 @@
8746
"zh-chs": "确认删除用户{0}?",
8747
"zh-cht": "確認刪除用戶{0}?",
8748
"xloc": [
8742
- "default.handlebars->31->2061"
8749
+ "default.handlebars->31->2062"
8750
]
8751
},
8752
{
@@ -8759,7 +8766,7 @@
8766
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
8767
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
8768
"xloc": [
8762
- "default.handlebars->31->1967"
8769
+ "default.handlebars->31->1968"
8770
]
8771
},
8772
{
@@ -8779,7 +8786,7 @@
8786
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
8787
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
8788
"xloc": [
8782
- "default.handlebars->31->2093"
8789
+ "default.handlebars->31->2094"
8790
]
8791
},
8792
{
@@ -8799,8 +8806,8 @@
8806
"zh-chs": "确认将1个条目移动到此位置?",
8807
"zh-cht": "確認將1個條目移動到此位置?",
8808
"xloc": [
8802
- "default-mobile.handlebars->11->364",
8803
- "default.handlebars->31->975"
8809
+ "default-mobile.handlebars->11->365",
8810
+ "default.handlebars->31->976"
8811
]
8812
},
8813
{
@@ -8820,7 +8827,7 @@
8827
"zh-chs": "确认将{0}个条目移到此位置?",
8828
"zh-cht": "確認將{0}個條目移到該位置?",
8829
"xloc": [
8823
- "default.handlebars->31->974"
8830
+ "default.handlebars->31->975"
8831
]
8832
},
8833
{
@@ -8840,7 +8847,7 @@
8847
"zh-chs": "确认将{0}个条目移到该位置?",
8848
"zh-cht": "確認將{0}個條目移到該位置?",
8849
"xloc": [
8843
- "default-mobile.handlebars->11->363"
8850
+ "default-mobile.handlebars->11->364"
8851
]
8852
},
8853
{
@@ -8860,7 +8867,7 @@
8867
"zh-chs": "确认覆盖?",
8868
"zh-cht": "確認覆蓋?",
8869
"xloc": [
8863
- "default.handlebars->31->1649"
8870
+ "default.handlebars->31->1650"
8871
]
8872
},
8873
{
@@ -8880,8 +8887,8 @@
8887
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
8888
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
8889
"xloc": [
8883
- "default.handlebars->31->1957",
8884
- "default.handlebars->31->2084"
8890
+ "default.handlebars->31->1958",
8891
+ "default.handlebars->31->2085"
8892
]
8893
},
8894
{
@@ -8901,8 +8908,8 @@
8908
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
8909
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
8910
"xloc": [
8904
- "default.handlebars->31->1959",
8905
- "default.handlebars->31->2097"
8911
+ "default.handlebars->31->1960",
8912
+ "default.handlebars->31->2098"
8913
]
8914
},
8915
{
@@ -8922,7 +8929,7 @@
8929
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
8930
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
8931
"xloc": [
8925
- "default.handlebars->31->2086"
8932
+ "default.handlebars->31->2087"
8933
]
8934
},
8935
{
@@ -8942,7 +8949,7 @@
8949
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
8950
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
8951
"xloc": [
8945
- "default.handlebars->31->2089"
8952
+ "default.handlebars->31->2090"
8953
]
8954
},
8955
{
@@ -8962,8 +8969,8 @@
8969
"zh-chs": "确认删除访问权限?",
8970
"zh-cht": "確認刪除訪問權限?",
8971
"xloc": [
8965
- "default.handlebars->31->2087",
8966
- "default.handlebars->31->2090"
8972
+ "default.handlebars->31->2088",
8973
+ "default.handlebars->31->2091"
8974
]
8975
},
8976
{
@@ -8983,8 +8990,8 @@
8990
"zh-chs": "确认删除身份验证软件两步登录?",
8991
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
8992
"xloc": [
8986
- "default-mobile.handlebars->11->84",
8987
- "default.handlebars->31->1109"
8993
+ "default-mobile.handlebars->11->85",
8994
+ "default.handlebars->31->1110"
8995
]
8996
},
8997
{
@@ -9021,7 +9028,7 @@
9028
"zh-chs": "确认删除设备共享“{0}”?",
9029
"zh-cht": "確認刪除設備共享“{0}”?",
9030
"xloc": [
9024
- "default.handlebars->31->2082"
9031
+ "default.handlebars->31->2083"
9032
]
9033
},
9034
{
@@ -9075,7 +9082,7 @@
9082
"zh-chs": "确认删除用户“ {0} ”的权限?",
9083
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
9084
"xloc": [
9078
- "default.handlebars->31->1578"
9085
+ "default.handlebars->31->1579"
9086
]
9087
},
9088
{
@@ -9095,7 +9102,7 @@
9102
"zh-chs": "确认删除用户组“ {0} ”的权限?",
9103
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
9104
"xloc": [
9098
- "default.handlebars->31->1580"
9105
+ "default.handlebars->31->1581"
9106
]
9107
},
9108
{
@@ -9132,7 +9139,7 @@
9139
"zh-chs": "确认删除用户{0}?",
9140
"zh-cht": "確認刪除用戶{0}?",
9141
"xloc": [
9135
- "default-mobile.handlebars->11->517"
9142
+ "default-mobile.handlebars->11->518"
9143
]
9144
},
9145
{
@@ -9152,8 +9159,8 @@
9159
"zh-chs": "将{1}入口{2}中的{0}限制到此位置?",
9160
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
9161
"xloc": [
9155
- "default-mobile.handlebars->11->137",
9156
- "default.handlebars->31->1650"
9162
+ "default-mobile.handlebars->11->138",
9163
+ "default.handlebars->31->1651"
9164
]
9165
},
9166
{
@@ -9174,11 +9181,11 @@
9181
"zh-cht": "連接",
9182
"xloc": [
9183
"agent-translations.json",
9177
- "default-mobile.handlebars->11->344",
9184
+ "default-mobile.handlebars->11->345",
9185
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
9186
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
9180
- "default.handlebars->31->1419",
9181
- "default.handlebars->31->945",
9187
+ "default.handlebars->31->1420",
9188
+ "default.handlebars->31->946",
9189
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
9190
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
9191
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9205,7 +9212,7 @@
9212
"zh-chs": "全部连接",
9213
"zh-cht": "全部連接",
9214
"xloc": [
9208
- "default.handlebars->31->287",
9215
+ "default.handlebars->31->288",
9216
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
9217
]
9218
},
@@ -9226,7 +9233,7 @@
9233
"zh-chs": "连接到服务器",
9234
"zh-cht": "連接到伺服器",
9235
"xloc": [
9229
- "default.handlebars->31->1473"
9236
+ "default.handlebars->31->1474"
9237
]
9238
},
9239
{
@@ -9348,7 +9355,7 @@
9355
"zh-chs": "已连接的英特尔®AMT",
9356
"zh-cht": "已連接的Intel® AMT",
9357
"xloc": [
9351
- "default.handlebars->31->2185"
9358
+ "default.handlebars->31->2186"
9359
]
9360
},
9361
{
@@ -9368,7 +9375,7 @@
9375
"zh-chs": "已连接的用户",
9376
"zh-cht": "已连接的用户",
9377
"xloc": [
9371
- "default.handlebars->31->2190"
9378
+ "default.handlebars->31->2191"
9379
]
9380
},
9381
{
@@ -9388,8 +9395,8 @@
9395
"zh-chs": "现在已连接",
9396
"zh-cht": "現在已連接",
9397
"xloc": [
9391
- "default-mobile.handlebars->11->387",
9392
- "default.handlebars->31->1005"
9398
+ "default-mobile.handlebars->11->388",
9399
+ "default.handlebars->31->1006"
9400
]
9401
},
9402
{
@@ -9430,13 +9437,13 @@
9437
"zh-cht": "正在連線...",
9438
"xloc": [
9439
"default-mobile.handlebars->11->2",
9433
- "default-mobile.handlebars->11->380",
9434
- "default-mobile.handlebars->11->47",
9435
- "default.handlebars->31->243",
9436
- "default.handlebars->31->246",
9437
- "default.handlebars->31->290",
9440
+ "default-mobile.handlebars->11->381",
9441
+ "default-mobile.handlebars->11->48",
9442
+ "default.handlebars->31->244",
9443
+ "default.handlebars->31->247",
9444
+ "default.handlebars->31->291",
9445
"default.handlebars->31->9",
9439
- "default.handlebars->31->996",
9446
+ "default.handlebars->31->997",
9447
"desktop.handlebars->3->2",
9448
"terminal.handlebars->3->2",
9449
"xterm.handlebars->9->2"
@@ -9459,7 +9466,7 @@
9466
"zh-chs": "连接数量",
9467
"zh-cht": "連接數量",
9468
"xloc": [
9462
- "default.handlebars->31->2204"
9469
+ "default.handlebars->31->2205"
9470
]
9471
},
9472
{
@@ -9479,7 +9486,7 @@
9486
"zh-chs": "连接转发器",
9487
"zh-cht": "連接轉發器",
9488
"xloc": [
9482
- "default.handlebars->31->2236"
9489
+ "default.handlebars->31->2237"
9490
]
9491
},
9492
{
@@ -9539,10 +9546,10 @@
9546
"zh-chs": "连接性",
9547
"zh-cht": "連接性",
9548
"xloc": [
9542
- "default-mobile.handlebars->11->265",
9543
- "default.handlebars->31->1613",
9544
- "default.handlebars->31->234",
9545
- "default.handlebars->31->632",
9549
+ "default-mobile.handlebars->11->266",
9550
+ "default.handlebars->31->1614",
9551
+ "default.handlebars->31->235",
9552
+ "default.handlebars->31->633",
9553
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
9554
]
9555
},
@@ -9563,8 +9570,8 @@
9570
"zh-chs": "控制台",
9571
"zh-cht": "控制台",
9572
"xloc": [
9566
- "default.handlebars->31->707",
9567
- "default.handlebars->31->728",
9573
+ "default.handlebars->31->708",
9574
+ "default.handlebars->31->729",
9575
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
9576
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
9577
"default.handlebars->contextMenu->cxconsole"
@@ -9587,7 +9594,7 @@
9594
"zh-chs": "控制台 -",
9595
"zh-cht": "控制台 -",
9596
"xloc": [
9590
- "default.handlebars->31->564"
9597
+ "default.handlebars->31->565"
9598
]
9599
},
9600
{
@@ -9607,8 +9614,8 @@
9614
"zh-chs": "控制",
9615
"zh-cht": "控制",
9616
"xloc": [
9610
- "default.handlebars->31->706",
9611
- "default.handlebars->31->727",
9617
+ "default.handlebars->31->707",
9618
+ "default.handlebars->31->728",
9619
"messenger.handlebars->13->1"
9620
]
9621
},
@@ -9629,7 +9636,7 @@
9636
"zh-chs": "Cookie编码器",
9637
"zh-cht": "Cookie編碼器",
9638
"xloc": [
9632
- "default.handlebars->31->2220"
9639
+ "default.handlebars->31->2221"
9640
]
9641
},
9642
{
@@ -9672,9 +9679,9 @@
9679
"zh-chs": "将MAC地址复制到剪贴板",
9680
"zh-cht": "將MAC地址複製到剪貼板",
9681
"xloc": [
9675
- "default.handlebars->31->102",
9676
- "default.handlebars->31->91",
9677
- "default.handlebars->31->99"
9682
+ "default.handlebars->31->100",
9683
+ "default.handlebars->31->103",
9684
+ "default.handlebars->31->92"
9685
]
9686
},
9687
{
@@ -9694,7 +9701,7 @@
9701
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
9702
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
9703
"xloc": [
9697
- "default.handlebars->31->388"
9704
+ "default.handlebars->31->389"
9705
]
9706
},
9707
{
@@ -9714,7 +9721,7 @@
9721
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
9722
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
9723
"xloc": [
9717
- "default.handlebars->31->392"
9724
+ "default.handlebars->31->393"
9725
]
9726
},
9727
{
@@ -9734,18 +9741,18 @@
9741
"zh-chs": "将地址复制到剪贴板",
9742
"zh-cht": "將地址複製到剪貼板",
9743
"xloc": [
9737
- "default.handlebars->31->105",
9738
- "default.handlebars->31->107",
9739
- "default.handlebars->31->109",
9740
- "default.handlebars->31->111",
9741
- "default.handlebars->31->113",
9742
- "default.handlebars->31->115",
9743
- "default.handlebars->31->80",
9744
- "default.handlebars->31->82",
9745
- "default.handlebars->31->84",
9746
- "default.handlebars->31->93",
9747
- "default.handlebars->31->95",
9748
- "default.handlebars->31->97"
9744
+ "default.handlebars->31->106",
9745
+ "default.handlebars->31->108",
9746
+ "default.handlebars->31->110",
9747
+ "default.handlebars->31->112",
9748
+ "default.handlebars->31->114",
9749
+ "default.handlebars->31->116",
9750
+ "default.handlebars->31->81",
9751
+ "default.handlebars->31->83",
9752
+ "default.handlebars->31->85",
9753
+ "default.handlebars->31->94",
9754
+ "default.handlebars->31->96",
9755
+ "default.handlebars->31->98"
9756
]
9757
},
9758
{
@@ -9765,8 +9772,8 @@
9772
"zh-chs": "将代理URL复制到剪贴板",
9773
"zh-cht": "將代理URL複製到剪貼板",
9774
"xloc": [
9768
- "default.handlebars->31->414",
9769
- "default.handlebars->31->416"
9775
+ "default.handlebars->31->415",
9776
+ "default.handlebars->31->417"
9777
]
9778
},
9779
{
@@ -9786,10 +9793,10 @@
9793
"zh-chs": "复制连结到剪贴板",
9794
"zh-cht": "複製連結到剪貼板",
9795
"xloc": [
9789
- "default.handlebars->31->1618",
9790
- "default.handlebars->31->1637",
9791
- "default.handlebars->31->210",
9792
- "default.handlebars->31->369"
9796
+ "default.handlebars->31->1619",
9797
+ "default.handlebars->31->1638",
9798
+ "default.handlebars->31->211",
9799
+ "default.handlebars->31->370"
9800
]
9801
},
9802
{
@@ -9809,7 +9816,7 @@
9816
"zh-chs": "将macOS代理URL复制到剪贴板",
9817
"zh-cht": "將macOS代理URL複製到剪貼板",
9818
"xloc": [
9812
- "default.handlebars->31->400"
9819
+ "default.handlebars->31->401"
9820
]
9821
},
9822
{
@@ -9829,7 +9836,7 @@
9836
"zh-chs": "将名称复制到剪贴板",
9837
"zh-cht": "將名稱複製到剪貼板",
9838
"xloc": [
9832
- "default.handlebars->31->89"
9839
+ "default.handlebars->31->90"
9840
]
9841
},
9842
{
@@ -9870,7 +9877,7 @@
9877
"zh-chs": "将有效代码复制到剪贴板",
9878
"zh-cht": "將有效代碼複製到剪貼板",
9879
"xloc": [
9873
- "default.handlebars->31->150"
9880
+ "default.handlebars->31->151"
9881
]
9882
},
9883
{
@@ -9890,7 +9897,7 @@
9897
"zh-chs": "复制:“{0}”到“{1}”",
9898
"zh-cht": "複製:“{0}”到“{1}”",
9899
"xloc": [
9893
- "default.handlebars->31->1709"
9900
+ "default.handlebars->31->1710"
9901
]
9902
},
9903
{
@@ -10036,7 +10043,7 @@
10043
"zh-chs": "核心服务器",
10044
"zh-cht": "核心伺服器",
10045
"xloc": [
10039
- "default.handlebars->31->2219"
10046
+ "default.handlebars->31->2220"
10047
]
10048
},
10049
{
@@ -10056,7 +10063,7 @@
10063
"zh-chs": "科西嘉文",
10064
"zh-cht": "科西嘉文",
10065
"xloc": [
10059
- "default.handlebars->31->1160"
10066
+ "default.handlebars->31->1161"
10067
]
10068
},
10069
{
@@ -10076,7 +10083,7 @@
10083
"zh-chs": "创建帐号",
10084
"zh-cht": "創建帳號",
10085
"xloc": [
10079
- "default.handlebars->31->1871",
10086
+ "default.handlebars->31->1872",
10087
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
10088
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
10089
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10099,7 +10106,7 @@
10106
"zh-chs": "创建设备组",
10107
"zh-cht": "創建裝置群",
10108
"xloc": [
10102
- "default-mobile.handlebars->11->112"
10109
+ "default-mobile.handlebars->11->113"
10110
]
10111
},
10112
{
@@ -10119,7 +10126,7 @@
10126
"zh-chs": "创建用户组",
10127
"zh-cht": "創建用戶群",
10128
"xloc": [
10122
- "default.handlebars->31->1910"
10129
+ "default.handlebars->31->1911"
10130
]
10131
},
10132
{
@@ -10139,7 +10146,7 @@
10146
"zh-chs": "创建连结以与访客共享此设备",
10147
"zh-cht": "創建鏈結以與訪客共享此裝置",
10148
"xloc": [
10142
- "default.handlebars->31->645"
10149
+ "default.handlebars->31->646"
10150
]
10151
},
10152
{
@@ -10159,7 +10166,7 @@
10166
"zh-chs": "使用以下选项创建一个新的设备组。",
10167
"zh-cht": "使用以下選項創建一個新的裝置群。",
10168
"xloc": [
10162
- "default.handlebars->31->1354"
10169
+ "default.handlebars->31->1355"
10170
]
10171
},
10172
{
@@ -10179,7 +10186,7 @@
10186
"zh-chs": "创建一个新的设备组。",
10187
"zh-cht": "創建一個新的裝置群。",
10188
"xloc": [
10182
- "default.handlebars->31->236"
10189
+ "default.handlebars->31->237"
10190
]
10191
},
10192
{
@@ -10199,7 +10206,7 @@
10206
"zh-chs": "创建文件夹(如果不存在)?",
10207
"zh-cht": "創建文件夾(如果不存在)?",
10208
"xloc": [
10202
- "default.handlebars->31->497"
10209
+ "default.handlebars->31->498"
10210
]
10211
},
10212
{
@@ -10219,7 +10226,7 @@
10226
"zh-chs": "创建文件夹:“{0}”",
10227
"zh-cht": "創建文件夾:“{0}”",
10228
"xloc": [
10222
- "default.handlebars->31->1702"
10229
+ "default.handlebars->31->1703"
10230
]
10231
},
10232
{
@@ -10239,7 +10246,7 @@
10246
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
10247
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
10248
"xloc": [
10242
- "default.handlebars->31->1835"
10249
+ "default.handlebars->31->1836"
10250
]
10251
},
10252
{
@@ -10281,7 +10288,7 @@
10288
"zh-chs": "创建的设备组:{0}",
10289
"zh-cht": "創建的設備組:{0}",
10290
"xloc": [
10284
- "default.handlebars->31->1713"
10291
+ "default.handlebars->31->1714"
10292
]
10293
},
10294
{
@@ -10301,7 +10308,7 @@
10308
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
10309
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
10310
"xloc": [
10304
- "default.handlebars->31->746"
10311
+ "default.handlebars->31->747"
10312
]
10313
},
10314
{
@@ -10355,7 +10362,7 @@
10362
"zh-chs": "创建",
10363
"zh-cht": "創建",
10364
"xloc": [
10358
- "default.handlebars->31->1996"
10365
+ "default.handlebars->31->1997"
10366
]
10367
},
10368
{
@@ -10375,7 +10382,7 @@
10382
"zh-chs": "创建时间",
10383
"zh-cht": "創作時間",
10384
"xloc": [
10378
- "default.handlebars->31->1401"
10385
+ "default.handlebars->31->1402"
10386
]
10387
},
10388
{
@@ -10417,8 +10424,8 @@
10424
"zh-chs": "创建者",
10425
"zh-cht": "創作者",
10426
"xloc": [
10420
- "default.handlebars->31->1399",
10421
- "default.handlebars->31->1400"
10427
+ "default.handlebars->31->1400",
10428
+ "default.handlebars->31->1401"
10429
]
10430
},
10431
{
@@ -10438,7 +10445,7 @@
10445
"zh-chs": "证书",
10446
"zh-cht": "證書",
10447
"xloc": [
10441
- "default.handlebars->31->1371"
10448
+ "default.handlebars->31->1372"
10449
]
10450
},
10451
{
@@ -10458,7 +10465,7 @@
10465
"zh-chs": "克里语",
10466
"zh-cht": "克里語",
10467
"xloc": [
10461
- "default.handlebars->31->1161"
10468
+ "default.handlebars->31->1162"
10469
]
10470
},
10471
{
@@ -10478,7 +10485,7 @@
10485
"zh-chs": "克罗地亚文",
10486
"zh-cht": "克羅地亞文",
10487
"xloc": [
10481
- "default.handlebars->31->1162"
10488
+ "default.handlebars->31->1163"
10489
]
10490
},
10491
{
@@ -10540,11 +10547,11 @@
10547
"zh-chs": "Ctrl",
10548
"zh-cht": "Ctrl",
10549
"xloc": [
10543
- "default-mobile.handlebars->11->333",
10544
- "default-mobile.handlebars->11->337",
10545
- "default.handlebars->31->56",
10546
- "default.handlebars->31->900",
10547
- "default.handlebars->31->904",
10550
+ "default-mobile.handlebars->11->334",
10551
+ "default-mobile.handlebars->11->338",
10552
+ "default.handlebars->31->57",
10553
+ "default.handlebars->31->901",
10554
+ "default.handlebars->31->905",
10555
"terminal.handlebars->3->6"
10556
]
10557
},
@@ -10644,7 +10651,7 @@
10651
"zh-chs": "当前版本",
10652
"zh-cht": "當前版本",
10653
"xloc": [
10647
- "default.handlebars->31->120"
10654
+ "default.handlebars->31->121"
10655
]
10656
},
10657
{
@@ -10652,15 +10659,15 @@
10659
"nl": "Huidig wachtwoord is niet correct.",
10660
"fr": "Le mot de passe actuel n'est pas correct.",
10661
"xloc": [
10655
- "default-mobile.handlebars->11->548",
10656
- "default.handlebars->31->2159"
10662
+ "default-mobile.handlebars->11->549",
10663
+ "default.handlebars->31->2160"
10664
]
10665
},
10666
{
10667
"en": "Customize",
10668
"nl": "Aanpassen",
10669
"xloc": [
10663
- "default-mobile.handlebars->11->315"
10670
+ "default-mobile.handlebars->11->316"
10671
]
10672
},
10673
{
@@ -10711,7 +10718,7 @@
10718
"zh-chs": "捷克文",
10719
"zh-cht": "捷克文",
10720
"xloc": [
10714
- "default.handlebars->31->1163"
10721
+ "default.handlebars->31->1164"
10722
]
10723
},
10724
{
@@ -10731,7 +10738,7 @@
10738
"zh-chs": "DNS suffix",
10739
"zh-cht": "DNS suffix",
10740
"xloc": [
10734
- "default.handlebars->31->88"
10741
+ "default.handlebars->31->89"
10742
]
10743
},
10744
{
@@ -10751,7 +10758,7 @@
10758
"zh-chs": "丹麦文",
10759
"zh-cht": "丹麥文",
10760
"xloc": [
10754
- "default.handlebars->31->1164"
10761
+ "default.handlebars->31->1165"
10762
]
10763
},
10764
{
@@ -10771,7 +10778,7 @@
10778
"zh-chs": "数据通道",
10779
"zh-cht": "數據通道",
10780
"xloc": [
10774
- "default.handlebars->31->868",
10781
+ "default.handlebars->31->869",
10782
"desktop.handlebars->3->11"
10783
]
10784
},
@@ -10792,7 +10799,7 @@
10799
"zh-chs": "日期和时间",
10800
"zh-cht": "日期和時間",
10801
"xloc": [
10795
- "default.handlebars->31->1322"
10802
+ "default.handlebars->31->1323"
10803
]
10804
},
10805
{
@@ -10812,8 +10819,8 @@
10819
"zh-chs": "天",
10820
"zh-cht": "天",
10821
"xloc": [
10815
- "default-mobile.handlebars->11->290",
10816
- "default.handlebars->31->795"
10822
+ "default-mobile.handlebars->11->291",
10823
+ "default.handlebars->31->796"
10824
]
10825
},
10826
{
@@ -10833,7 +10840,7 @@
10840
"zh-chs": "停用",
10841
"zh-cht": "停用",
10842
"xloc": [
10836
- "default.handlebars->31->1452"
10843
+ "default.handlebars->31->1453"
10844
]
10845
},
10846
{
@@ -10853,7 +10860,7 @@
10860
"zh-chs": "如果设置停用CCM",
10861
"zh-cht": "如果設置停用CCM",
10862
"xloc": [
10856
- "default.handlebars->31->1464"
10863
+ "default.handlebars->31->1465"
10864
]
10865
},
10866
{
@@ -10890,8 +10897,8 @@
10897
"zh-chs": "沉睡",
10898
"zh-cht": "沉睡",
10899
"xloc": [
10893
- "default-mobile.handlebars->11->202",
10894
- "default.handlebars->31->427"
10900
+ "default-mobile.handlebars->11->203",
10901
+ "default.handlebars->31->428"
10902
]
10903
},
10904
{
@@ -10911,10 +10918,10 @@
10918
"zh-chs": "默认",
10919
"zh-cht": "默認",
10920
"xloc": [
10914
- "default.handlebars->31->1858",
10915
- "default.handlebars->31->1906",
10916
- "default.handlebars->31->1917",
10917
- "default.handlebars->31->1985"
10921
+ "default.handlebars->31->1859",
10922
+ "default.handlebars->31->1907",
10923
+ "default.handlebars->31->1918",
10924
+ "default.handlebars->31->1986"
10925
]
10926
},
10927
{
@@ -10922,8 +10929,8 @@
10929
"fr": "Suppr",
10930
"nl": "Del",
10931
"xloc": [
10925
- "default-mobile.handlebars->11->321",
10926
- "default.handlebars->31->888"
10932
+ "default-mobile.handlebars->11->322",
10933
+ "default.handlebars->31->889"
10934
]
10935
},
10936
{
@@ -10943,13 +10950,13 @@
10950
"zh-chs": "删除",
10951
"zh-cht": "刪除",
10952
"xloc": [
10946
- "default-mobile.handlebars->11->132",
10947
- "default-mobile.handlebars->11->354",
10953
+ "default-mobile.handlebars->11->133",
10954
+ "default-mobile.handlebars->11->355",
10955
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
10956
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
10950
- "default.handlebars->31->1644",
10951
- "default.handlebars->31->534",
10952
- "default.handlebars->31->964",
10957
+ "default.handlebars->31->1645",
10958
+ "default.handlebars->31->535",
10959
+ "default.handlebars->31->965",
10960
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
10961
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
10962
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10977,8 +10984,8 @@
10984
"zh-chs": "删除帐户",
10985
"zh-cht": "刪除帳戶",
10986
"xloc": [
10980
- "default-mobile.handlebars->11->94",
10981
- "default.handlebars->31->1339"
10987
+ "default-mobile.handlebars->11->95",
10988
+ "default.handlebars->31->1340"
10989
]
10990
},
10991
{
@@ -10998,7 +11005,7 @@
11005
"zh-chs": "删除帐户",
11006
"zh-cht": "刪除帳戶",
11007
"xloc": [
11001
- "default.handlebars->31->1825"
11008
+ "default.handlebars->31->1826"
11009
]
11010
},
11011
{
@@ -11018,8 +11025,8 @@
11025
"zh-chs": "删除设备",
11026
"zh-cht": "刪除裝置",
11027
"xloc": [
11021
- "default-mobile.handlebars->11->270",
11022
- "default.handlebars->31->649"
11028
+ "default-mobile.handlebars->11->271",
11029
+ "default.handlebars->31->650"
11030
]
11031
},
11032
{
@@ -11039,10 +11046,10 @@
11046
"zh-chs": "删除群组",
11047
"zh-cht": "刪除群組",
11048
"xloc": [
11042
- "default-mobile.handlebars->11->464",
11043
- "default-mobile.handlebars->11->467",
11044
- "default.handlebars->31->1448",
11045
- "default.handlebars->31->1481"
11049
+ "default-mobile.handlebars->11->465",
11050
+ "default-mobile.handlebars->11->468",
11051
+ "default.handlebars->31->1449",
11052
+ "default.handlebars->31->1482"
11053
]
11054
},
11055
{
@@ -11062,8 +11069,8 @@
11069
"zh-chs": "删除节点",
11070
"zh-cht": "刪除節點",
11071
"xloc": [
11065
- "default-mobile.handlebars->11->298",
11066
- "default.handlebars->31->821"
11072
+ "default-mobile.handlebars->11->299",
11073
+ "default.handlebars->31->822"
11074
]
11075
},
11076
{
@@ -11083,7 +11090,7 @@
11090
"zh-chs": "删除节点",
11091
"zh-cht": "刪除節點",
11092
"xloc": [
11086
- "default.handlebars->31->472"
11093
+ "default.handlebars->31->473"
11094
]
11095
},
11096
{
@@ -11103,7 +11110,7 @@
11110
"zh-chs": "删除用户",
11111
"zh-cht": "刪除用戶",
11112
"xloc": [
11106
- "default.handlebars->31->2037"
11113
+ "default.handlebars->31->2038"
11114
]
11115
},
11116
{
@@ -11123,8 +11130,8 @@
11130
"zh-chs": "删除用户群组",
11131
"zh-cht": "刪除用戶群組",
11132
"xloc": [
11126
- "default.handlebars->31->1955",
11127
- "default.handlebars->31->1965"
11133
+ "default.handlebars->31->1956",
11134
+ "default.handlebars->31->1966"
11135
]
11136
},
11137
{
@@ -11144,7 +11151,7 @@
11151
"zh-chs": "删除用户群组",
11152
"zh-cht": "刪除用戶群組",
11153
"xloc": [
11147
- "default.handlebars->31->1904"
11154
+ "default.handlebars->31->1905"
11155
]
11156
},
11157
{
@@ -11164,7 +11171,7 @@
11171
"zh-chs": "删除用户{0}",
11172
"zh-cht": "刪除用戶{0}",
11173
"xloc": [
11167
- "default.handlebars->31->2060"
11174
+ "default.handlebars->31->2061"
11175
]
11176
},
11177
{
@@ -11185,7 +11192,7 @@
11192
"zh-cht": "刪除帳戶",
11193
"xloc": [
11194
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
11188
- "default.handlebars->31->1821",
11195
+ "default.handlebars->31->1822",
11196
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
11197
]
11198
},
@@ -11206,7 +11213,7 @@
11213
"zh-chs": "删除设备",
11214
"zh-cht": "刪除裝置",
11215
"xloc": [
11209
- "default.handlebars->31->465"
11216
+ "default.handlebars->31->466"
11217
]
11218
},
11219
{
@@ -11226,7 +11233,7 @@
11233
"zh-chs": "删除群组",
11234
"zh-cht": "刪除群組",
11235
"xloc": [
11229
- "default.handlebars->31->1900"
11236
+ "default.handlebars->31->1901"
11237
]
11238
},
11239
{
@@ -11246,7 +11253,7 @@
11253
"zh-chs": "删除项目?",
11254
"zh-cht": "刪除項目?",
11255
"xloc": [
11249
- "default.handlebars->31->535"
11256
+ "default.handlebars->31->536"
11257
]
11258
},
11259
{
@@ -11266,7 +11273,7 @@
11273
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
11274
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
11275
"xloc": [
11269
- "default.handlebars->31->1704"
11276
+ "default.handlebars->31->1705"
11277
]
11278
},
11279
{
@@ -11286,10 +11293,10 @@
11293
"zh-chs": "删除所选项目?",
11294
"zh-cht": "刪除所選項目?",
11295
"xloc": [
11289
- "default-mobile.handlebars->11->134",
11290
- "default-mobile.handlebars->11->356",
11291
- "default.handlebars->31->1646",
11292
- "default.handlebars->31->966"
11296
+ "default-mobile.handlebars->11->135",
11297
+ "default-mobile.handlebars->11->357",
11298
+ "default.handlebars->31->1647",
11299
+ "default.handlebars->31->967"
11300
]
11301
},
11302
{
@@ -11309,7 +11316,7 @@
11316
"zh-chs": "删除用户群组{0}?",
11317
"zh-cht": "刪除用戶群組{0}?",
11318
"xloc": [
11312
- "default.handlebars->31->1963"
11319
+ "default.handlebars->31->1964"
11320
]
11321
},
11322
{
@@ -11329,10 +11336,10 @@
11336
"zh-chs": "删除{0}个所选项目?",
11337
"zh-cht": "刪除{0}個所選項目?",
11338
"xloc": [
11332
- "default-mobile.handlebars->11->133",
11333
- "default-mobile.handlebars->11->355",
11334
- "default.handlebars->31->1645",
11335
- "default.handlebars->31->965"
11339
+ "default-mobile.handlebars->11->134",
11340
+ "default-mobile.handlebars->11->356",
11341
+ "default.handlebars->31->1646",
11342
+ "default.handlebars->31->966"
11343
]
11344
},
11345
{
@@ -11352,7 +11359,7 @@
11359
"zh-chs": "删除{0}?",
11360
"zh-cht": "刪除{0}?",
11361
"xloc": [
11355
- "default-mobile.handlebars->11->299"
11362
+ "default-mobile.handlebars->11->300"
11363
]
11364
},
11365
{
@@ -11372,7 +11379,7 @@
11379
"zh-chs": "删除:“{0}”",
11380
"zh-cht": "刪除:“{0}”",
11381
"xloc": [
11375
- "default.handlebars->31->1703"
11382
+ "default.handlebars->31->1704"
11383
]
11384
},
11385
{
@@ -11392,7 +11399,7 @@
11399
"zh-chs": "删除:“{0}”,{1}个元素已删除",
11400
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
11401
"xloc": [
11395
- "default.handlebars->31->1705"
11402
+ "default.handlebars->31->1706"
11403
]
11404
},
11405
{
@@ -11412,8 +11419,8 @@
11419
"zh-chs": "被拒绝",
11420
"zh-cht": "被拒絕",
11421
"xloc": [
11415
- "default-mobile.handlebars->11->309",
11416
- "default.handlebars->31->864",
11422
+ "default-mobile.handlebars->11->310",
11423
+ "default.handlebars->31->865",
11424
"desktop.handlebars->3->7",
11425
"terminal.handlebars->3->11"
11426
]
@@ -11504,26 +11511,26 @@
11511
"zh-chs": "描述",
11512
"zh-cht": "描述",
11513
"xloc": [
11507
- "default-mobile.handlebars->11->111",
11508
- "default-mobile.handlebars->11->235",
11514
+ "default-mobile.handlebars->11->112",
11515
"default-mobile.handlebars->11->236",
11510
- "default-mobile.handlebars->11->304",
11511
- "default-mobile.handlebars->11->399",
11512
- "default-mobile.handlebars->11->456",
11513
- "default-mobile.handlebars->11->469",
11514
- "default.handlebars->31->1017",
11515
- "default.handlebars->31->1027",
11516
- "default.handlebars->31->1359",
11517
- "default.handlebars->31->1396",
11518
- "default.handlebars->31->1483",
11519
- "default.handlebars->31->1909",
11520
- "default.handlebars->31->1919",
11516
+ "default-mobile.handlebars->11->237",
11517
+ "default-mobile.handlebars->11->305",
11518
+ "default-mobile.handlebars->11->400",
11519
+ "default-mobile.handlebars->11->457",
11520
+ "default-mobile.handlebars->11->470",
11521
+ "default.handlebars->31->1018",
11522
+ "default.handlebars->31->1028",
11523
+ "default.handlebars->31->1360",
11524
+ "default.handlebars->31->1397",
11525
+ "default.handlebars->31->1484",
11526
+ "default.handlebars->31->1910",
11527
"default.handlebars->31->1920",
11522
- "default.handlebars->31->1961",
11523
- "default.handlebars->31->575",
11528
+ "default.handlebars->31->1921",
11529
+ "default.handlebars->31->1962",
11530
"default.handlebars->31->576",
11525
- "default.handlebars->31->859",
11526
- "default.handlebars->31->87",
11531
+ "default.handlebars->31->577",
11532
+ "default.handlebars->31->860",
11533
+ "default.handlebars->31->88",
11534
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
11535
]
11536
},
@@ -11561,13 +11568,13 @@
11568
"zh-chs": "桌面",
11569
"zh-cht": "桌面",
11570
"xloc": [
11564
- "default-mobile.handlebars->11->277",
11565
- "default.handlebars->31->1489",
11566
- "default.handlebars->31->2109",
11567
- "default.handlebars->31->540",
11568
- "default.handlebars->31->694",
11569
- "default.handlebars->31->749",
11570
- "default.handlebars->31->930",
11571
+ "default-mobile.handlebars->11->278",
11572
+ "default.handlebars->31->1490",
11573
+ "default.handlebars->31->2110",
11574
+ "default.handlebars->31->541",
11575
+ "default.handlebars->31->695",
11576
+ "default.handlebars->31->750",
11577
+ "default.handlebars->31->931",
11578
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
11579
"default.handlebars->contextMenu->cxdesktop",
11580
"desktop.handlebars->3->23"
@@ -11610,10 +11617,10 @@
11617
"zh-chs": "桌面通知",
11618
"zh-cht": "桌面通知",
11619
"xloc": [
11613
- "default.handlebars->31->1410",
11614
- "default.handlebars->31->1924",
11615
- "default.handlebars->31->2011",
11616
- "default.handlebars->31->613"
11620
+ "default.handlebars->31->1411",
11621
+ "default.handlebars->31->1925",
11622
+ "default.handlebars->31->2012",
11623
+ "default.handlebars->31->614"
11624
]
11625
},
11626
{
@@ -11633,10 +11640,10 @@
11640
"zh-chs": "桌面提示",
11641
"zh-cht": "桌面提示",
11642
"xloc": [
11636
- "default.handlebars->31->1409",
11637
- "default.handlebars->31->1923",
11638
- "default.handlebars->31->2010",
11639
- "default.handlebars->31->612"
11643
+ "default.handlebars->31->1410",
11644
+ "default.handlebars->31->1924",
11645
+ "default.handlebars->31->2011",
11646
+ "default.handlebars->31->613"
11647
]
11648
},
11649
{
@@ -11656,10 +11663,10 @@
11663
"zh-chs": "桌面提示+工具栏",
11664
"zh-cht": "桌面提示+工具欄",
11665
"xloc": [
11659
- "default.handlebars->31->1407",
11660
- "default.handlebars->31->1921",
11661
- "default.handlebars->31->2008",
11662
- "default.handlebars->31->610"
11666
+ "default.handlebars->31->1408",
11667
+ "default.handlebars->31->1922",
11668
+ "default.handlebars->31->2009",
11669
+ "default.handlebars->31->611"
11670
]
11671
},
11672
{
@@ -11721,10 +11728,10 @@
11728
"zh-chs": "桌面工具栏",
11729
"zh-cht": "桌面工具欄",
11730
"xloc": [
11724
- "default.handlebars->31->1408",
11725
- "default.handlebars->31->1922",
11726
- "default.handlebars->31->2009",
11727
- "default.handlebars->31->611"
11731
+ "default.handlebars->31->1409",
11732
+ "default.handlebars->31->1923",
11733
+ "default.handlebars->31->2010",
11734
+ "default.handlebars->31->612"
11735
]
11736
},
11737
{
@@ -11733,7 +11740,7 @@
11740
{
11741
"en": "Desktop, View only",
11742
"xloc": [
11736
- "default.handlebars->31->750"
11743
+ "default.handlebars->31->751"
11744
]
11745
},
11746
{
@@ -11753,7 +11760,7 @@
11760
"zh-chs": "桌面时段",
11761
"zh-cht": "桌面時段",
11762
"xloc": [
11756
- "default.handlebars->31->929"
11763
+ "default.handlebars->31->930"
11764
]
11765
},
11766
{
@@ -11794,7 +11801,7 @@
11801
"zh-chs": "细节",
11802
"zh-cht": "細節",
11803
"xloc": [
11797
- "default-mobile.handlebars->11->279",
11804
+ "default-mobile.handlebars->11->280",
11805
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
11806
"default.handlebars->contextMenu->cxdetails"
11807
]
@@ -11836,11 +11843,11 @@
11843
"zh-chs": "设备",
11844
"zh-cht": "裝置",
11845
"xloc": [
11839
- "default-mobile.handlebars->11->394",
11840
- "default.handlebars->31->1012",
11841
- "default.handlebars->31->1512",
11842
- "default.handlebars->31->196",
11843
- "default.handlebars->31->2079",
11846
+ "default-mobile.handlebars->11->395",
11847
+ "default.handlebars->31->1013",
11848
+ "default.handlebars->31->1513",
11849
+ "default.handlebars->31->197",
11850
+ "default.handlebars->31->2080",
11851
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
11852
]
11853
},
@@ -11861,9 +11868,9 @@
11868
"zh-chs": "设备指令",
11869
"zh-cht": "裝置指令",
11870
"xloc": [
11864
- "default-mobile.handlebars->11->287",
11871
"default-mobile.handlebars->11->288",
11866
- "default.handlebars->31->786"
11872
+ "default-mobile.handlebars->11->289",
11873
+ "default.handlebars->31->787"
11874
]
11875
},
11876
{
@@ -11904,16 +11911,16 @@
11911
"zh-cht": "裝置群",
11912
"xloc": [
11913
"agent-translations.json",
11907
- "default-mobile.handlebars->11->526",
11908
- "default.handlebars->31->1507",
11909
- "default.handlebars->31->1510",
11914
+ "default-mobile.handlebars->11->527",
11915
+ "default.handlebars->31->1508",
11916
"default.handlebars->31->1511",
11911
- "default.handlebars->31->1772",
11912
- "default.handlebars->31->1947",
11913
- "default.handlebars->31->1953",
11914
- "default.handlebars->31->2067",
11915
- "default.handlebars->31->2118",
11916
- "default.handlebars->31->2137"
11917
+ "default.handlebars->31->1512",
11918
+ "default.handlebars->31->1773",
11919
+ "default.handlebars->31->1948",
11920
+ "default.handlebars->31->1954",
11921
+ "default.handlebars->31->2068",
11922
+ "default.handlebars->31->2119",
11923
+ "default.handlebars->31->2138"
11924
]
11925
},
11926
{
@@ -11933,8 +11940,8 @@
11940
"zh-chs": "设备组用户",
11941
"zh-cht": "裝置群用戶",
11942
"xloc": [
11936
- "default-mobile.handlebars->11->515",
11937
- "default.handlebars->31->1576"
11943
+ "default-mobile.handlebars->11->516",
11944
+ "default.handlebars->31->1577"
11945
]
11946
},
11947
{
@@ -11955,11 +11962,11 @@
11962
"zh-cht": "裝置群",
11963
"xloc": [
11964
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
11958
- "default.handlebars->31->1788",
11959
- "default.handlebars->31->1894",
11960
- "default.handlebars->31->1934",
11961
- "default.handlebars->31->2005",
11962
- "default.handlebars->31->2188",
11965
+ "default.handlebars->31->1789",
11966
+ "default.handlebars->31->1895",
11967
+ "default.handlebars->31->1935",
11968
+ "default.handlebars->31->2006",
11969
+ "default.handlebars->31->2189",
11970
"default.handlebars->container->column_l->p2->p2info->7"
11971
]
11972
},
@@ -11980,7 +11987,7 @@
11987
"zh-chs": "设备信息导出",
11988
"zh-cht": "裝置訊息輸出",
11989
"xloc": [
11983
- "default.handlebars->31->505"
11990
+ "default.handlebars->31->506"
11991
]
11992
},
11993
{
@@ -12000,7 +12007,7 @@
12007
"zh-chs": "设备位置",
12008
"zh-cht": "裝置位置",
12009
"xloc": [
12003
- "default.handlebars->31->822"
12010
+ "default.handlebars->31->823"
12011
]
12012
},
12013
{
@@ -12020,7 +12027,7 @@
12027
"zh-chs": "设备消息",
12028
"zh-cht": "裝置訊息",
12029
"xloc": [
12023
- "default.handlebars->31->743"
12030
+ "default.handlebars->31->744"
12031
]
12032
},
12033
{
@@ -12040,10 +12047,10 @@
12047
"zh-chs": "设备名称",
12048
"zh-cht": "裝置名稱",
12049
"xloc": [
12043
- "default-mobile.handlebars->11->302",
12044
- "default.handlebars->31->2117",
12045
- "default.handlebars->31->304",
12046
- "default.handlebars->31->857",
12050
+ "default-mobile.handlebars->11->303",
12051
+ "default.handlebars->31->2118",
12052
+ "default.handlebars->31->305",
12053
+ "default.handlebars->31->858",
12054
"player.handlebars->3->9"
12055
]
12056
},
@@ -12064,8 +12071,8 @@
12071
"zh-chs": "设备通知",
12072
"zh-cht": "裝置通知",
12073
"xloc": [
12067
- "default.handlebars->31->493",
12068
- "default.handlebars->31->745"
12074
+ "default.handlebars->31->494",
12075
+ "default.handlebars->31->746"
12076
]
12077
},
12078
{
@@ -12102,7 +12109,7 @@
12109
"zh-chs": "设备共享链接",
12110
"zh-cht": "設備共享鏈接",
12111
"xloc": [
12105
- "default.handlebars->31->690"
12112
+ "default.handlebars->31->691"
12113
]
12114
},
12115
{
@@ -12122,7 +12129,7 @@
12129
"zh-chs": "设备提示",
12130
"zh-cht": "裝置吐司",
12131
"xloc": [
12125
- "default-mobile.handlebars->11->275"
12132
+ "default-mobile.handlebars->11->276"
12133
]
12134
},
12135
{
@@ -12142,8 +12149,8 @@
12149
"zh-chs": "设备连接。",
12150
"zh-cht": "裝置連接。",
12151
"xloc": [
12145
- "default.handlebars->31->1327",
12146
- "default.handlebars->31->1597"
12152
+ "default.handlebars->31->1328",
12153
+ "default.handlebars->31->1598"
12154
]
12155
},
12156
{
@@ -12163,8 +12170,8 @@
12170
"zh-chs": "设备断开连接。",
12171
"zh-cht": "裝置斷開連接。",
12172
"xloc": [
12166
- "default.handlebars->31->1328",
12167
- "default.handlebars->31->1598"
12173
+ "default.handlebars->31->1329",
12174
+ "default.handlebars->31->1599"
12175
]
12176
},
12177
{
@@ -12184,7 +12191,7 @@
12191
"zh-chs": "创建的设备组:{0}",
12192
"zh-cht": "設備組已創建:{0}",
12193
"xloc": [
12187
- "default.handlebars->31->1734"
12194
+ "default.handlebars->31->1735"
12195
]
12196
},
12197
{
@@ -12204,7 +12211,7 @@
12211
"zh-chs": "设备组已删除:{0}",
12212
"zh-cht": "設備組已刪除:{0}",
12213
"xloc": [
12207
- "default.handlebars->31->1735"
12214
+ "default.handlebars->31->1736"
12215
]
12216
},
12217
{
@@ -12224,7 +12231,7 @@
12231
"zh-chs": "设备组成员身份已更改:{0}",
12232
"zh-cht": "設備組成員身份已更改:{0}",
12233
"xloc": [
12227
- "default.handlebars->31->1736"
12234
+ "default.handlebars->31->1737"
12235
]
12236
},
12237
{
@@ -12244,7 +12251,7 @@
12251
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
12252
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
12253
"xloc": [
12247
- "default.handlebars->31->740"
12254
+ "default.handlebars->31->741"
12255
]
12256
},
12257
{
@@ -12264,7 +12271,7 @@
12271
"zh-chs": "设备组通知已更改",
12272
"zh-cht": "設備組通知已更改",
12273
"xloc": [
12267
- "default.handlebars->31->1731"
12274
+ "default.handlebars->31->1732"
12275
]
12276
},
12277
{
@@ -12284,7 +12291,7 @@
12291
"zh-chs": "未删除的设备组:{0}",
12292
"zh-cht": "未刪除的設備組:{0}",
12293
"xloc": [
12287
- "default.handlebars->31->1714"
12294
+ "default.handlebars->31->1715"
12295
]
12296
},
12297
{
@@ -12304,10 +12311,10 @@
12311
"zh-chs": "设备由电池供电",
12312
"zh-cht": "裝置由電池供電",
12313
"xloc": [
12307
- "default-mobile.handlebars->11->170",
12308
- "default-mobile.handlebars->11->226",
12309
- "default.handlebars->31->251",
12310
- "default.handlebars->31->561"
12314
+ "default-mobile.handlebars->11->171",
12315
+ "default-mobile.handlebars->11->227",
12316
+ "default.handlebars->31->252",
12317
+ "default.handlebars->31->562"
12318
]
12319
},
12320
{
@@ -12327,7 +12334,7 @@
12334
"zh-chs": "检测到设备,但无法获得电源状态。",
12335
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
12336
"xloc": [
12330
- "default.handlebars->31->432"
12337
+ "default.handlebars->31->433"
12338
]
12339
},
12340
{
@@ -12347,8 +12354,8 @@
12354
"zh-chs": "设备正在休眠(S4)",
12355
"zh-cht": "裝置正在休眠(S4)",
12356
"xloc": [
12350
- "default-mobile.handlebars->11->210",
12351
- "default.handlebars->31->438"
12357
+ "default-mobile.handlebars->11->211",
12358
+ "default.handlebars->31->439"
12359
]
12360
},
12361
{
@@ -12368,8 +12375,8 @@
12375
"zh-chs": "设备处于深度睡眠状态(S3)",
12376
"zh-cht": "裝置處於深度睡眠狀態(S3)",
12377
"xloc": [
12371
- "default-mobile.handlebars->11->209",
12372
- "default.handlebars->31->437"
12378
+ "default-mobile.handlebars->11->210",
12379
+ "default.handlebars->31->438"
12380
]
12381
},
12382
{
@@ -12389,7 +12396,7 @@
12396
"zh-chs": "设备处于深度睡眠状态(S3)。",
12397
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
12398
"xloc": [
12392
- "default.handlebars->31->426"
12399
+ "default.handlebars->31->427"
12400
]
12401
},
12402
{
@@ -12409,7 +12416,7 @@
12416
"zh-chs": "设备处于休眠状态(S4)。",
12417
"zh-cht": "裝置處於休眠狀態(S4)。",
12418
"xloc": [
12412
- "default.handlebars->31->428"
12419
+ "default.handlebars->31->429"
12420
]
12421
},
12422
{
@@ -12429,7 +12436,7 @@
12436
"zh-chs": "设备处于关机状态(S5)。",
12437
"zh-cht": "裝置處於關機狀態(S5)。",
12438
"xloc": [
12432
- "default.handlebars->31->430"
12439
+ "default.handlebars->31->431"
12440
]
12441
},
12442
{
@@ -12449,8 +12456,8 @@
12456
"zh-chs": "设备处于睡眠状态(S1)",
12457
"zh-cht": "裝置處於睡眠狀態(S1)",
12458
"xloc": [
12452
- "default-mobile.handlebars->11->207",
12453
- "default.handlebars->31->435"
12459
+ "default-mobile.handlebars->11->208",
12460
+ "default.handlebars->31->436"
12461
]
12462
},
12463
{
@@ -12470,7 +12477,7 @@
12477
"zh-chs": "设备处于睡眠状态(S1)。",
12478
"zh-cht": "裝置處於睡眠狀態(S1)。",
12479
"xloc": [
12473
- "default.handlebars->31->422"
12480
+ "default.handlebars->31->423"
12481
]
12482
},
12483
{
@@ -12490,8 +12497,8 @@
12497
"zh-chs": "设备处于睡眠状态(S2)",
12498
"zh-cht": "裝置處於睡眠狀態(S2)",
12499
"xloc": [
12493
- "default-mobile.handlebars->11->208",
12494
- "default.handlebars->31->436"
12500
+ "default-mobile.handlebars->11->209",
12501
+ "default.handlebars->31->437"
12502
]
12503
},
12504
{
@@ -12511,7 +12518,7 @@
12518
"zh-chs": "设备处于睡眠状态(S2)。",
12519
"zh-cht": "裝置處於睡眠狀態(S2)。",
12520
"xloc": [
12514
- "default.handlebars->31->424"
12521
+ "default.handlebars->31->425"
12522
]
12523
},
12524
{
@@ -12531,8 +12538,8 @@
12538
"zh-chs": "设备处于软关机状态(S5)",
12539
"zh-cht": "裝置處於軟關機狀態(S5)",
12540
"xloc": [
12534
- "default-mobile.handlebars->11->211",
12535
- "default.handlebars->31->439"
12541
+ "default-mobile.handlebars->11->212",
12542
+ "default.handlebars->31->440"
12543
]
12544
},
12545
{
@@ -12552,10 +12559,10 @@
12559
"zh-chs": "设备已插入",
12560
"zh-cht": "裝置已插入",
12561
"xloc": [
12555
- "default-mobile.handlebars->11->169",
12556
- "default-mobile.handlebars->11->225",
12557
- "default.handlebars->31->250",
12558
- "default.handlebars->31->560"
12562
+ "default-mobile.handlebars->11->170",
12563
+ "default-mobile.handlebars->11->226",
12564
+ "default.handlebars->31->251",
12565
+ "default.handlebars->31->561"
12566
]
12567
},
12568
{
@@ -12575,8 +12582,8 @@
12582
"zh-chs": "设备已连接电源",
12583
"zh-cht": "裝置已連接電源",
12584
"xloc": [
12578
- "default-mobile.handlebars->11->206",
12579
- "default.handlebars->31->434"
12585
+ "default-mobile.handlebars->11->207",
12586
+ "default.handlebars->31->435"
12587
]
12588
},
12589
{
@@ -12596,7 +12603,7 @@
12603
"zh-chs": "设备已连接电源。",
12604
"zh-cht": "裝置已連接電源。",
12605
"xloc": [
12599
- "default.handlebars->31->420"
12606
+ "default.handlebars->31->421"
12607
]
12608
},
12609
{
@@ -12616,8 +12623,8 @@
12623
"zh-chs": "设备存在,但无法确定电源状态",
12624
"zh-cht": "裝置存在,但無法確定電源狀態",
12625
"xloc": [
12619
- "default-mobile.handlebars->11->212",
12620
- "default.handlebars->31->440"
12626
+ "default-mobile.handlebars->11->213",
12627
+ "default.handlebars->31->441"
12628
]
12629
},
12630
{
@@ -12637,7 +12644,7 @@
12644
"zh-chs": "设备名称",
12645
"zh-cht": "裝置名稱",
12646
"xloc": [
12640
- "default.handlebars->31->552"
12647
+ "default.handlebars->31->553"
12648
]
12649
},
12650
{
@@ -12657,7 +12664,7 @@
12664
"zh-chs": "设备通知",
12665
"zh-cht": "設備通知",
12666
"xloc": [
12660
- "default.handlebars->31->462"
12667
+ "default.handlebars->31->463"
12668
]
12669
},
12670
{
@@ -12677,7 +12684,7 @@
12684
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
12685
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
12686
"xloc": [
12680
- "default.handlebars->31->1716"
12687
+ "default.handlebars->31->1717"
12688
]
12689
},
12690
{
@@ -12714,8 +12721,8 @@
12721
"zh-chs": "设备",
12722
"zh-cht": "裝置",
12723
"xloc": [
12717
- "default.handlebars->31->1895",
12718
- "default.handlebars->31->1935"
12724
+ "default.handlebars->31->1896",
12725
+ "default.handlebars->31->1936"
12726
]
12727
},
12728
{
@@ -12735,7 +12742,7 @@
12742
"zh-chs": "已禁用",
12743
"zh-cht": "已禁用",
12744
"xloc": [
12738
- "default.handlebars->31->606"
12745
+ "default.handlebars->31->607"
12746
]
12747
},
12748
{
@@ -12755,7 +12762,7 @@
12762
"zh-chs": "禁用的电子邮件两因素身份验证",
12763
"zh-cht": "禁用的電子郵件兩因素身份驗證",
12764
"xloc": [
12758
- "default.handlebars->31->1747"
12765
+ "default.handlebars->31->1748"
12766
]
12767
},
12768
{
@@ -12776,10 +12783,10 @@
12783
"zh-cht": "斷線",
12784
"xloc": [
12785
"agent-translations.json",
12779
- "default-mobile.handlebars->11->345",
12786
+ "default-mobile.handlebars->11->346",
12787
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
12781
- "default.handlebars->31->1420",
12782
- "default.handlebars->31->946",
12788
+ "default.handlebars->31->1421",
12789
+ "default.handlebars->31->947",
12790
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
12791
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
12792
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -12827,10 +12834,10 @@
12834
"default-mobile.handlebars->11->1",
12835
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
12836
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
12830
- "default.handlebars->31->242",
12831
- "default.handlebars->31->245",
12832
- "default.handlebars->31->262",
12833
- "default.handlebars->31->289",
12837
+ "default.handlebars->31->243",
12838
+ "default.handlebars->31->246",
12839
+ "default.handlebars->31->263",
12840
+ "default.handlebars->31->290",
12841
"default.handlebars->31->8",
12842
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
12843
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -12859,7 +12866,7 @@
12866
"zh-chs": "解雇",
12867
"zh-cht": "解僱",
12868
"xloc": [
12862
- "default.handlebars->31->263"
12869
+ "default.handlebars->31->264"
12870
]
12871
},
12872
{
@@ -12879,7 +12886,7 @@
12886
"zh-chs": "在远程设备上显示一个消息框。",
12887
"zh-cht": "在遠程裝置上顯示一個訊息框。",
12888
"xloc": [
12882
- "default.handlebars->31->744"
12889
+ "default.handlebars->31->745"
12890
]
12891
},
12892
{
@@ -12919,7 +12926,7 @@
12926
"zh-chs": "在远程设备上显示短信",
12927
"zh-cht": "在遠程裝置上顯示短信",
12928
"xloc": [
12922
- "default.handlebars->31->643"
12929
+ "default.handlebars->31->644"
12930
]
12931
},
12932
{
@@ -12939,7 +12946,7 @@
12946
"zh-chs": "显示设备组名称",
12947
"zh-cht": "顯示裝置群名稱",
12948
"xloc": [
12942
- "default.handlebars->31->1326"
12949
+ "default.handlebars->31->1327"
12950
]
12951
},
12952
{
@@ -12959,7 +12966,7 @@
12966
"zh-chs": "显示名称",
12967
"zh-cht": "顯示名稱",
12968
"xloc": [
12962
- "default.handlebars->31->915"
12969
+ "default.handlebars->31->916"
12970
]
12971
},
12972
{
@@ -12979,7 +12986,7 @@
12986
"zh-chs": "显示公共连结",
12987
"zh-cht": "顯示公共鏈結",
12988
"xloc": [
12982
- "default.handlebars->31->1617"
12989
+ "default.handlebars->31->1618"
12990
]
12991
},
12992
{
@@ -12999,7 +13006,7 @@
13006
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
13007
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
13008
"xloc": [
13002
- "default.handlebars->31->1676"
13009
+ "default.handlebars->31->1677"
13010
]
13011
},
13012
{
@@ -13019,7 +13026,7 @@
13026
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
13027
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
13028
"xloc": [
13022
- "default.handlebars->31->1684"
13029
+ "default.handlebars->31->1685"
13030
]
13031
},
13032
{
@@ -13039,8 +13046,8 @@
13046
"zh-chs": "什么都不做",
13047
"zh-cht": "什麼都不做",
13048
"xloc": [
13042
- "default.handlebars->31->1467",
13043
- "default.handlebars->31->1471"
13049
+ "default.handlebars->31->1468",
13050
+ "default.handlebars->31->1472"
13051
]
13052
},
13053
{
@@ -13060,10 +13067,10 @@
13067
"zh-chs": "域",
13068
"zh-cht": "域",
13069
"xloc": [
13063
- "default.handlebars->31->1859",
13064
- "default.handlebars->31->1907",
13065
- "default.handlebars->31->1916",
13066
- "default.handlebars->31->1984",
13070
+ "default.handlebars->31->1860",
13071
+ "default.handlebars->31->1908",
13072
+ "default.handlebars->31->1917",
13073
+ "default.handlebars->31->1985",
13074
"mstsc.handlebars->main->1->3->1->2->1->0",
13075
"mstsc.handlebars->main->1->3->1->2->3"
13076
]
@@ -13085,7 +13092,7 @@
13092
"zh-chs": "请勿更改,如果设置请保留CCM",
13093
"zh-cht": "請勿更改,如果設置請保留CCM",
13094
"xloc": [
13088
- "default.handlebars->31->1463"
13095
+ "default.handlebars->31->1464"
13096
]
13097
},
13098
{
@@ -13122,7 +13129,7 @@
13129
"zh-chs": "不要连接到服务器",
13130
"zh-cht": "不要連接到伺服器",
13131
"xloc": [
13125
- "default.handlebars->31->1472"
13132
+ "default.handlebars->31->1473"
13133
]
13134
},
13135
{
@@ -13186,8 +13193,8 @@
13193
"fr": "Bas",
13194
"nl": "Omlaag",
13195
"xloc": [
13189
- "default-mobile.handlebars->11->329",
13190
- "default.handlebars->31->896"
13196
+ "default-mobile.handlebars->11->330",
13197
+ "default.handlebars->31->897"
13198
]
13199
},
13200
{
@@ -13250,8 +13257,8 @@
13257
"zh-chs": "下载档案",
13258
"zh-cht": "下載檔案",
13259
"xloc": [
13253
- "default-mobile.handlebars->11->375",
13254
- "default.handlebars->31->985"
13260
+ "default-mobile.handlebars->11->376",
13261
+ "default.handlebars->31->986"
13262
]
13263
},
13264
{
@@ -13271,7 +13278,7 @@
13278
"zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。",
13279
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
13280
"xloc": [
13274
- "default.handlebars->31->240"
13281
+ "default.handlebars->31->241"
13282
]
13283
},
13284
{
@@ -13291,7 +13298,7 @@
13298
"zh-chs": "下载MeshCmd",
13299
"zh-cht": "下載MeshCmd",
13300
"xloc": [
13294
- "default.handlebars->31->847"
13301
+ "default.handlebars->31->848"
13302
]
13303
},
13304
{
@@ -13311,7 +13318,7 @@
13318
"zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。",
13319
"zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
13320
"xloc": [
13314
- "default.handlebars->31->238"
13321
+ "default.handlebars->31->239"
13322
]
13323
},
13324
{
@@ -13351,7 +13358,7 @@
13358
"zh-chs": "下载报告",
13359
"zh-cht": "下載報告",
13360
"xloc": [
13354
- "default.handlebars->31->1777",
13361
+ "default.handlebars->31->1778",
13362
"default.handlebars->container->column_l->p3->3->1->0->3"
13363
]
13364
},
@@ -13372,7 +13379,7 @@
13379
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
This file is too large to show in full.
views/default-mobile.handlebars
+1
-1
@@ -3543,7 +3543,7 @@
3543
// Construct the key command
3544
if (ks == -1) { deskCustomizeKeys(); return; } // Customize
3545
if (ks == 0x0A002E) { desktop.m.sendcad(); return; } // CTRL-ALT-DEL
3546
- if ((desktop.contype == 1) && (ks == 0x100052)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop
3546
+ //if ((desktop.contype == 1) && (ks == 0x10004C)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop, WIN + L
3547
3548
var flags = (ks & 0xFF0000) >> 16, key = (ks & 0xFFFF), keyArray = [], keyArray2 = [];
3549
var amtTranslate = {
views/default.handlebars
+9
-24
@@ -4428,33 +4428,18 @@
4428
var portStr = (serverinfo.port == 443) ? '' : (':' + serverinfo.port);
4429
new QRCode(Q('agins_qrimage'), { text: 'mc://' + servername + portStr + domainUrlNoSlash + ',' + serverinfo.agentCertHash + ',' + meshid.split('/')[2], width: 180, height: 180, colorDark: '#000000', colorLight: '#EEE', correctLevel: QRCode.CorrectLevel.M });
4430
4431
- if (serverinfo.https == true)
4431
+ if ((features & 0x2000) == 0)
4432
{
4433
- if ((features & 0x2000) == 0)
4434
- {
4435
- Q('agins_linux_area').value = '(wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-check-certificate -O ./meshinstall.sh || wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo -E ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4436
- Q('agins_linux_area_un').value = '(wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-check-certificate -O ./meshinstall.sh || wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4437
- }
4438
- else
4439
- {
4440
- // Server asked that agent be installed to preferably not use a HTTP proxy.
4441
- Q('agins_linux_area').value = 'wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4442
- Q('agins_linux_area_un').value = 'wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4443
- }
4433
+ Q('agins_linux_area').value = '(wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-check-certificate -O ./meshinstall.sh || wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo -E ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4434
+ Q('agins_linux_area_un').value = '(wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-check-certificate -O ./meshinstall.sh || wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo -E ./meshinstall.sh uninstall https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh uninstall uninstall uninstall https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4435
+ //Q('agins_linux_area_un').value = '(wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-check-certificate -O ./meshinstall.sh || wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy --no-check-certificate -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4436
}
4437
else
4438
{
4447
- if ((features & 0x2000) == 0)
4448
- {
4449
- Q('agins_linux_area').value = '(wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" -O ./meshinstall.sh || wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo -E ./meshinstall.sh http://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4450
- Q('agins_linux_area_un').value = '(wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" -O ./meshinstall.sh || wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1" --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4451
- }
4452
- else
4453
- {
4454
- // Server asked that agent be installed to preferably not use a HTTP proxy.
4455
- Q('agins_linux_area').value = 'wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh http://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4456
- Q('agins_linux_area_un').value = 'wget "http://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4457
- }
4439
+ // Server asked that agent be installed to preferably not use a HTTP proxy.
4440
+ Q('agins_linux_area').value = 'wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4441
+ Q('agins_linux_area_un').value = 'wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\' || ./meshinstall.sh uninstall https://' + servername + portStr + domainUrlNoSlash + ' \'' + meshid.split('/')[2] + '\'\r\n';
4442
+ //Q('agins_linux_area_un').value = 'wget "https://' + servername + portStr + domainUrl + 'meshagents?script=1' + (urlargs.key?('&key=' + urlargs.key):'') + '" --no-proxy --no-check-certificate -O ./meshinstall.sh && chmod 755 ./meshinstall.sh && sudo ./meshinstall.sh uninstall\r\n';
4443
}
4444
Q('aginsSelect').focus();
4445
addAgentToMeshClick();
@@ -7545,7 +7530,7 @@
7530
// Construct the key command
7531
var ks = parseInt(Q('deskkeys').value);
7532
if (ks == 0x0A002E) { desktop.m.sendcad(); return; } // CTRL-ALT-DEL
7548
- if ((desktop.contype == 1) && (ks == 0x100052)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop
7533
+ //if ((desktop.contype == 1) && (ks == 0x10004C)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop, WIN + L
7534
7535
var flags = (ks & 0xFF0000) >> 16, key = (ks & 0xFFFF), keyArray = [], keyArray2 = [];
7536
var amtTranslate = {